How do I change the amount of attacks per turn for a unit?

sandperson

Chieftain
Joined
Jul 24, 2016
Messages
2
Location
Antarctica
I'd like to start by saying sorry if I put this in the wrong sub forum.

As the title suggests, I would like to change the amount of attacks per turn for my late game units. I know that there is a free promotion (PROMOTION_BLITZ) that gives you one extra attack per turn, but I would like to add more attacks per turn (three to be exact). Is there anyway to do so? Any and all answers are appreciated. Thank you all in advance.

Moderator Action: Welcome to CivFanatics. Moved your thread to the Main C&C forum as that is where questions are posted. Good luck with your modding.
 
Nevermind, I figured out a way. If anyone happens to find this, here's how you increase the attacks per turn. You create a new promotion, I just named mine "PROMOTION_A".
<UnitPromotions>
<Row>
<Type>PROMOTION_A</Type>
<Description>TXT_KEY_PROMOTION_BLITZ</Description>
<Help>TXT_KEY_PROMOTION_BLITZ_HELP</Help>
<Sound>AS2D_IF_LEVELUP</Sound>
<PromotionPrereqOr1>PROMOTION_SHOCK_3</PromotionPrereqOr1>
<PromotionPrereqOr2>PROMOTION_DRILL_3</PromotionPrereqOr2>
<OrderPriority>7</OrderPriority>
<CanMoveAfterAttacking>true</CanMoveAfterAttacking>
<ExtraAttacks>3</ExtraAttacks>
<PortraitIndex>9</PortraitIndex>
<IconAtlas>PROMOTION_ATLAS</IconAtlas>
<PediaType>PEDIA_MELEE</PediaType>
<PediaEntry>TXT_KEY_PROMOTION_BLITZ</PediaEntry>
</Row>
</UnitPromotions>
I increased the <ExtraAttacks> from <ExtraAttacks>1</ExtraAttacks> to <ExtraAttacks>3</ExtraAttacks>. Be sure to increase the amount of moves for your units so that this shows (No :) :) :) :):) :) :) :):) :) :) :):) :) :) :)).
 
Top Bottom