Thalassicus
Bytes and Nibblers
I've encountered an odd situation when modding Mongolia.
The trait changes work great, but the promotion changes have no effect (not even the tooltip change). The other trait and promotion changes I've done work properly. It's all in the same files so I know it's not a situation where the file fails to load. Does anyone have an idea of what might be wrong and how to fix this?
Code:
<UnitPromotions>
<Update>
<Where Type="PROMOTION_MEDIC_GENERAL" />
<Set SameTileHealChange="2" />
</Update>
</UnitPromotions>
<Traits>
<Update>
<Where Type="TRAIT_TERROR" />
<Set MinorCivCaptureBonus="30" />
</Update>
</Traits>
<Language_en_US>
<Update>
<Where Type="TXT_KEY_PROMOTION_MEDIC_GENERAL_HELP" />
<Set Text="Units within 1 tile [COLOR_POSITIVE_TEXT]Heal 2 Additional HP[ENDCOLOR] per turn." />
</Update>
<Update>
<Where Tag="TXT_KEY_TRAIT_TERROR" />
<Set Text="+30% [ICON_STRENGTH] Combat Strength and Capture Bonus vs City-States. All mounted units have +1 [ICON_MOVES] Movement." />
</Update>
</Language_en_US>
The trait changes work great, but the promotion changes have no effect (not even the tooltip change). The other trait and promotion changes I've done work properly. It's all in the same files so I know it's not a situation where the file fails to load. Does anyone have an idea of what might be wrong and how to fix this?