
Originally Posted by
Pannonius
I think that every general gets that trait when he gets enough experience. So, practice with your generals...:-)
The trait you are looking for is NightBattleCapable. It gets added to any general with 4+ command stars. It also gets added to any general with 1+ command stars who wins a night battle, which implies that they are attacked by an enemy general who has the triat.
These are the complete triggers:
Code:
Trigger diet_of_carrots_1
WhenToTest CharacterTurnStart
Condition Trait NightBattleCapable = 0
and IsGeneral
and Attribute Command >= 4
Affects NightBattleCapable 6 Chance 100
;------------------------------------------
Trigger diet_of_carrots_2
WhenToTest PostBattle
Condition IsGeneral
and Attribute Command >= 1
and IsNightBattle
and Trait NightBattleCapable = 0
and WonBattle
Affects NightBattleCapable 6 Chance 100