Armors - Andreas-W/GeneralsGameCode_Modding GitHub Wiki

Armor.ini

ArmorExtend

Allows to inherit an Armor set from another one. The parent must be defined before

Syntax:

ArmorExtend newArmorName ParentArmor

this will copy all values from Parent before parsing the new values. Do not use Armor = DEFAULT as this will set all damage types to this value and overrides inherited values.

Coding example:

ArmorExtend TruckArmorExtended TruckArmor ; creates new TruckArmorExtended which inherits all values from TruckArmor
  Armor = SMALL_ARMS 5000% ; set a new value to SMALL_ARMS
End