Skip to content

Commit efc2da3

Browse files
committed
Trait adjustments
Adjust prices and effects to be more uniform for "Enemy:" traits and specialist traits
1 parent e84320b commit efc2da3

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

objects/obj_creation/Create_0.gml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -662,25 +662,25 @@ var all_advantages = [
662662
{
663663
name : "Enemy: Eldar",
664664
description : "Eldar are particularly hated by your chapter. When fighting Eldar damage is increased.",
665-
value : 10,
665+
value : 20,
666666
meta : ["Main Enemy"],
667667
},
668668
{
669669
name : "Enemy: Fallen",
670670
description : "Chaos Marines are particularly hated by your chapter. When fighting the traitors damage is increased.",
671-
value : 15,
671+
value : 20,
672672
meta : ["Main Enemy"],
673673
},
674674
{
675675
name : "Enemy: Necrons",
676676
description : "Necrons are particularly hated by your chapter. When fighting Necrons damage is increased.",
677-
value : 15,
677+
value : 20,
678678
meta : ["Main Enemy"],
679679
},
680680
{
681681
name : "Enemy: Orks",
682682
description : "Orks are particularly hated by your chapter. When fighting Orks damage is increased.",
683-
value : 35,
683+
value : 20,
684684
meta : ["Main Enemy"]
685685
},
686686
{
@@ -717,19 +717,19 @@ var all_advantages = [
717717
name : "Psyker Abundance",
718718
description : "The Psyker mutation runs rampant in your chapter. Librarians train in 60% the normal time and receive bonus experience.",
719719
value : 30,
720-
meta : ["Psyker Views","Specialists"],
720+
meta : ["Psyker Views","Librarians"],
721721
},
722722
{
723723
name : "Reverent Guardians",
724724
description : "Your chapter places great faith in the Imperial Cult; you start with more Chaplains and any Ecclesiarchy disposition increases are enhanced.",
725-
value : 10,
726-
meta : ["Faith","Imperium Trust","Specialists"],
725+
value : 25,
726+
meta : ["Faith","Imperium Trust"],
727727
},
728728
{
729729
name : "Tech-Brothers",
730730
description : "Your chapter has better ties to the mechanicus; you have more techmarines and higher mechanicus disposition.",
731731
value : 25,
732-
meta : ["Mechanicus Faith","Specialists"],
732+
meta : ["Mechanicus Faith"],
733733
},
734734
{
735735
name : "Tech-Scavengers",
@@ -763,7 +763,7 @@ var all_advantages = [
763763
name : "Medicae Primacy",
764764
description : "Your chapter reveres its Apothecarion above all of it's specialist; You start with more Apothecaries.",
765765
value : 25,
766-
meta : ["Specialists"]
766+
meta : ["Apothecaries"]
767767
},
768768
{
769769
name : "Ryzan Patronage",
@@ -844,7 +844,7 @@ var all_disadvantages = [
844844
{
845845
name : "Tech-Heresy",
846846
description : "Your chapter does things that makes the Mechanicus upset. Mechanicus disposition is lowered and you have less Tech Marines. You start as a tech heretic tolerant chapter",
847-
value : 15,
847+
value : 30,
848848
meta : ["Mechanicus Faith"],
849849
},
850850
{

scripts/scr_initialize_custom/scr_initialize_custom.gml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -863,8 +863,8 @@ function scr_initialize_custom() {
863863

864864
var chapter_option, o;
865865
if scr_has_adv("Tech-Brothers") {
866-
techmarines += 6;
867-
tenth -= 6;
866+
techmarines += 5;
867+
tenth -= 5;
868868
}
869869
if scr_has_adv("Assault Doctrine") {
870870
assault += 10;
@@ -883,9 +883,9 @@ function scr_initialize_custom() {
883883
tenth -= 5;
884884
}
885885
if scr_has_adv("Psyker Abundance") {
886-
tenth -= 4;
886+
tenth -= 5;
887887
epistolary += 1;
888-
codiciery += 1;
888+
codiciery += 2;
889889
lexicanum += 2;
890890
}
891891
if scr_has_disadv("Psyker Intolerant") {
@@ -959,16 +959,16 @@ function scr_initialize_custom() {
959959
}
960960

961961
if scr_has_disadv ("Tech-Heresy") {
962-
techmarines -= 4;
963-
tenth += 4;
962+
techmarines -= 5;
963+
tenth += 5;
964964
}
965965
if scr_has_adv ("Reverent Guardians") {
966-
chaplains += 4;
967-
tenth -= 4;
966+
chaplains += 5;
967+
tenth -= 5;
968968
}
969969
if scr_has_adv("Medicae Primacy") {
970970
apothecary_per_company += 1;
971-
apothecary += 7;
971+
apothecary += 5;
972972
}
973973

974974
// Strength ratings are made up for founding chapters

0 commit comments

Comments
 (0)