Code:
;------------------------------------------
Trigger achievement_destroyed_france
WhenToTest LeaderDestroyedFaction
Condition I_NumberOfSettlements france = 0
and Trait VanquisherFrench = 1
Affects VanquisherFrench 10 Chance 100
Shouldn't it be and Trait VanquisherFrench >= 1? or even 10 to be added only to those who actually dedicated his life to kill French.
Code:
;------------------------------------------
Trigger achievement_son_destroyed_france
WhenToTest CharacterTurnEnd
Condition FatherTrait VanquisherFrench = 2
and Trait BiologicalSon = 1
Affects SonVanquisherFrench 1 Chance 100
;------------------------------------------
Trigger achievement_bastardson_destroyed_france
WhenToTest CharacterTurnEnd
Condition FatherTrait VanquisherFrench = 2
and Trait BastardSon = 1
Affects SonVanquisherFrench 1 Chance 100
;------------------------------------------
Trigger achievement_unborn_destroyed_france
WhenToTest CharacterComesOfAge
Condition FatherTrait VanquisherFrench = 2
Affects SonVanquisherFrench 1 Chance 100
Shouldn't it be FatherTrait VanquisherFrench = 30 (which is the last Vanquisher threshold)?
Those are the same in all vanquisher line of triggers.
Code:
;------------------------------------------
Trigger papalmission2
WhenToTest LeaderMissionSuccess
Condition PaybackID pope_rome_min_penalty_major_reward
Affects AdoredByPope 1 Chance 5
;------------------------------------------
Trigger papalmission3
WhenToTest LeaderMissionSuccess
Condition PaybackID pope_rome_min_penalty_major_reward
Affects AdoredByPope 1 Chance 5
;------------------------------------------
Trigger papalmission4
WhenToTest LeaderMissionSuccess
Condition PaybackID pope_rome_min_penalty_major_reward
Affects AdoredByPope 1 Chance 5
The 3 missions has the same condition PaybackID pope_rome_min_penalty_major_reward shouldn't they be:
payback_id pope_rome_min_penalty_min_reward
payback_id pope_rome_min_penalty_mod_reward
payback_id pope_rome_min_penalty_major_reward
respectively.
Code:
;------------------------------------------
Trigger Battle_General_Took_Hits
WhenToTest PostBattle
Condition GeneralHPLostRatioinBattle > 0.3
Affects BattleScarred 1 Chance 17
Affects Brave 1 Chance 15
;------------------------------------------
Trigger battle1
WhenToTest PostBattle
Condition GeneralHPLostRatioinBattle > 0.3
Affects BattleScarred 1 Chance 17
Affects Brave 1 Chance 15
Those two triggers are exactly the same. Also Trigger battle5 and Trigger battle9 plus Trigger battle7 and Trigger battle10