GoodInfantryGeneral (Skilled_Infantry_Commander and Infantry_Commander_of_Genius)
I'm wondering if anyone has had their general acquire the GoodInfantryGeneral
trait after birth. In my Roman campaign, I have a general with an army containing 2 family members and the rest infantry of one sort or another. He's now won 4 heroic victories defending against the Greeks (each a massacre to the point that the remnant of the enemy army vanished afterwards) without getting that trait.
THere's the appropriate trigger:
Code:
Trigger V0210_Standard_Battle_Crushing_Victory_Infantry_Commander_VnV_Trigger
WhenToTest PostBattle
Condition IsGeneral
and WonBattle
and BattleSuccess = crushing
and PercentageUnitCategory infantry > 80
and PercentageEnemyKilled > 25
and not Trait Bug = 1
Affects GoodInfantryGeneral 2 Chance 100
Here's the trait itself:
Code:
Trait GoodInfantryGeneral
Characters family
NoGoingBackLevel 3
AntiTraits BadInfantryGeneral
Level Skilled_Infantry_Commander
Description Skilled_Infantry_Commander_desc
EffectsDescription Skilled_Infantry_Commander_effects_desc
Threshold 6
Effect InfantryCommand 1
Level Infantry_Commander_of_Genius
Description Infantry_Commander_of_Genius_desc
EffectsDescription Infantry_Commander_of_Genius_effects_desc
GainMessage Infantry_Commander_of_Genius_gain_desc
Epithet Infantry_Commander_of_Genius_epithet_desc
Threshold 12
Effect InfantryCommand 2
This seems pretty straightforward to me. My only question is whether crushing is the correct value for a heroic victory. I'm wondering if maybe a >= is the proper test there. Can anyone who knows more about triggers provide feedback?