A question about modding with the latest OXCE
On a ruleset for a megamod there are a lot of soldiers defined. by example
- type: STR_SOLDIER_1
race: STR_SECTOID
rank: STR_LIVE_SOLDIER
stats:
tu: 54
stamina: 90
health: 30
bravery: 80
reactions: 63
firing: 52
throwing: 58
strength: 30
psiStrength: 40
psiSkill: 0
melee: 76
armor: SECTOID_ARMOR0
standHeight: 16
kneelHeight: 12
value: 10
deathSound: 10
intelligence: 3
aggression: 2
- type: STR_SOLDIER_2
blablabla, lots of lines
- type: STR_SOLDIER_3
blablabla, lots of lines
But i want to make a minimod for such megamod that just change a line for each of those units, can my minimod do the following :
units:
- type: STR_SOLDIER_1
aggression: 6
- type: STR_SOLDIER_2
aggression: 6
- type: STR_SOLDIER_3
aggression: 6
- type: STR_SOLDIER_4
aggression: 6
- type: STR_SOLDIER_5
aggression: 6
Or am forced to copy the complete soldiers definitions (with all their lines of code) in the minimod, not just the changed line ?