PoundedChicken
Warlord
- Joined
- Nov 4, 2016
- Messages
- 126
Just making simple Pantheon belief that grants a governor title/point. Have used the devs example religion mod as base. Below doesn't actually grant the title/point though when selected. Any help appreciated.
Code:
<GameInfo>
<Types>
<Row Type="BELIEF_FAITH_IN_POLITICS" Kind="KIND_BELIEF"/>
</Types>
<Beliefs>
<Row BeliefType="BELIEF_FAITH_IN_POLITICS" Name="LOC_FAITH_IN_POLITICS_NAME" Description="LOC_FAITH_IN_POLITICS_DESCRIPTION" BeliefClassType="BELIEF_CLASS_PANTHEON"/>
</Beliefs>
<BeliefModifiers>
<Row BeliefType="BELIEF_FAITH_IN_POLITICS">
<ModifierId>PANTHEON_GRANT_GOVERNOR_TITLE</ModifierId>
</Row>
</BeliefModifiers>
<Modifiers>
<Row>
<ModifierId>PANTHEON_GRANT_GOVERNOR_TITLE</ModifierId>
<ModifierType>MODIFIER_PLAYER_ADJUST_GOVERNOR_POINTS</ModifierType>
<RunOnce>true</RunOnce>
<Permanent>true</Permanent>
</Row>
</Modifiers>
<ModifierArguments>
<Row>
<ModifierId>PANTHEON_GRANT_GOVERNOR_TITLE</ModifierId>
<Name>Delta</Name>
<Value>1</Value>
</Row>
</ModifierArguments>
</GameInfo>