How to edit leader traits?

VCrakeV

Prince
Joined
Aug 22, 2014
Messages
504
So, I was trying to edit Qin's wonder trait in the xml files. I managed to lower the percentage per builder charge (from 15 to 10). However, I could not find where to edit which wonders the trait applies to. Is it defined at all in the xml files? If not, which things are defined in them? I'm looking into making a generic overhaul mod using only xml files.
 
TRAIT_BUILDER_WONDER_PERCENT applies to all wonders.

Code:
		<Row>
			<ModifierId>TRAIT_BUILDER_WONDER_PERCENT</ModifierId>
			<ModifierType>MODIFIER_PLAYER_ADJUST_UNIT_WONDER_PERCENT</ModifierType>
		</Row>
 
TRAIT_BUILDER_WONDER_PERCENT applies to all wonders.

Code:
        <Row>
            <ModifierId>TRAIT_BUILDER_WONDER_PERCENT</ModifierId>
            <ModifierType>MODIFIER_PLAYER_ADJUST_UNIT_WONDER_PERCENT</ModifierType>
        </Row>

Are you sure? That exact code is in the file, and last time I checked, Qin's trait only applied to Ancient and Classical wonders.
 
Back
Top Bottom