How do you increase the Russia Trait?

deathmage4985

Chieftain
Joined
Sep 2, 2011
Messages
1
How do you increase the Russian resource trait?

Also I want to add the Russian Resource trait to England, how do I do this?

also on another note, can a civilization have more than one trait?

I added the russian and India trait to england in the xml file associated with traits.xml but its not registering. What the heck am I missing. I know how to code, I just don't know what pattern it needed to accomplish this task.
 
1> Questions go in the main C&C forum. These subfora are for completed mods, full tutorials, and so on. I'll notify the moderators to move it.

2> You can't alter the specific effects of many of the traits; some of those are hard-set in the XML, where you'd need DLL access to modify them. But in the case of Russia's trait, the components can be easily modified:
> In Trait_YieldChangesStrategicResources, it adds +1 Production to all strategics. This'd be trivial to change to whatever value you want. (Horribly unbalanced, but you can do it.)
> In Trait_ResourceQuantityModifiers, it adds a 100 modifier (meaning x2) for Horses, Iron, and Uranium through three different entries. Changing these to a 200, for instance, would mean x3.

If you don't know how to do an Update, go read Kael's modding guide (stickied at the top of the Reference forum).

3> It'd be a simple mod to give the Russia trait to England, by editing Elizabeth's entry in the Leader_Traits table to use TRAIT_STRATEGIC_RICHES (the Russia trait). That's just a basic Update. But no, you can't give multiple traits to one leader, as far as I can tell.
 
Back
Top Bottom