So I am modifying the effect of a virtue (Liberation Army), but the text is only linked to the virtue by the effect as far as I can tell. Using the "Help" element does only work on the pedia page, but leaves the mouseover tooltip of the virtue blank.
Here is what I tried:
This only adds the text to the "Game Info" part of the Pedia page.
This has no effect whatsoever.
PS: While we're at it: How could I change it to grant a free colonizer unit instead of capturing the outpost ?
Here is what I tried:
Code:
<Policies>
<Update>
<Set CaptureOutpostsForSelf="false" CultureFromKills="100" Help="TXT_KEY_POLICY_MIGHT_5_HELP"/>
<Where Type="POLICY_MIGHT_5"/>
</Update>
</Policies>
<Language_en_US>
<Row Tag="TXT_KEY_POLICY_MIGHT_5_HELP">
<Text>Earn 100% of any unit's strength as [ICON_CULTURE] Culture after killing it</Text>
</Row>
</Language_en_US>
This only adds the text to the "Game Info" part of the Pedia page.
Code:
<Policies>
<Update>
<Set CaptureOutpostsForSelf="false" CultureFromKills="100"/>
<Where Type="POLICY_MIGHT_5"/>
</Update>
</Policies>
<Language_en_US>
<Row Tag="TXT_KEY_POLICY_EFFECT_CULTURE_FROM_KILLS">
<Text>Earn 100% of any unit's strength as [ICON_CULTURE] Culture after killing it</Text>
</Row>
</Language_en_US>
This has no effect whatsoever.
PS: While we're at it: How could I change it to grant a free colonizer unit instead of capturing the outpost ?