Easy Way To Give ALL Scout Units Native Tongue Promotion?

Dtony

Chieftain
Joined
Aug 23, 2021
Messages
43
I want to give the native tongue promotion (Ability to choose goody gut reward) to all scouts in all civilizations, is there an easy way to do this?

I don't want to have to do this for all leaders

Code:
        <Row>
            <TraitType>TRAIT_SLAYER_OF_TIAMAT</TraitType>
            <UnitCombatType>UNITCOMBAT_RECON</UnitCombatType>
            <PromotionType>PROMOTION_GOODY_HUT_PICKER</PromotionType>
        </Row>

maybe in lua or something?
 
Last edited:
Code:
<GameData>
    <Unit_FreePromotions>
        <Row>
            <UnitType>UNIT_SCOUT</UnitType>
            <PromotionType>PROMOTION_GOODY_HUT_PICKER</PromotionType>
        </Row>
    </Unit_FreePromotions>
</GameData>
 
Code:
<GameData>
    <Unit_FreePromotions>
        <Row>
            <UnitType>UNIT_SCOUT</UnitType>
            <PromotionType>PROMOTION_GOODY_HUT_PICKER</PromotionType>
        </Row>
    </Unit_FreePromotions>
</GameData>


Thank you, you are awesome
 
Top Bottom