City capture by ships

PvtHudson

Chieftain
Joined
Apr 18, 2016
Messages
16
Hello all!
Is there a mod which forbids ships to capture land cities? If no, how difficult is it to implement?
 
Any mellee unit can take cities ... soo only thing you can do is give it a debuff vs. cities just like leashed aliens get for example ... but they would still be able to take cities if ranged take HP to zero first. Try this:

<UnitPromotions>
<Row>
<Type>PROMOTION_NAVAL_WEAKVSCITY</Type
<CannotBeChosen>true</CannotBeChosen>
<CityAttack>-100</CityAttack>
</Row>​
</UnitPromotions>

Fill in other text as needed for description and help text etc (see other similar files)

<UnitPromotions_UnitCombats>
<Row>
<PromotionType>PROMOTION_NAVAL_WEAKVSCITY</PromotionType>
<UnitCombatType>UNITCOMBAT_NAVALMELEE</UnitCombatType>
</Row>​
</UnitPromotions_UnitCombats>

<Unit_FreePromotions>
<Row>
<UnitType>UNIT_NAVAL_MELEE</UnitType>
<PromotionType>PROMOTION_NAVAL_WEAKVSCITY</PromotionType>
</Row>​
</Unit_FreePromotions>
 
Top Bottom