
Originally Posted by
Artuss
I'll add that all the first leader's sons has a surname "Bastard". I don't know why - i have bad luck?
bad mother or unfaithful father:
Code:
;------------------------------------------Trigger HorridWifeNotMother1
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsHorrid = 1
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 20
;------------------------------------------
Trigger HorridWifeNotMother2
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsHorrid = 2
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 40
;------------------------------------------
Trigger HorridWifeNotMother3
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsHorrid = 3
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 60
;------------------------------------------
Trigger BitchWifeNotMother1
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBitch = 1
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 15
;------------------------------------------
Trigger BitchWifeNotMother2
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBitch = 2
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 30
;------------------------------------------
Trigger BitchWifeNotMother3
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBitch = 3
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 45
;------------------------------------------
Trigger BarrenWifeNotMother1
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBarren = 1
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 30
;------------------------------------------
Trigger BarrenWifeNotMother2
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBarren = 2
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 40
;------------------------------------------
Trigger BarrenWifeNotMother3
WhenToTest CharacterComesOfAge
Condition FatherTrait WifeIsBarren = 3
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 66
;------------------------------------------
Trigger UnfaithfulFather1
WhenToTest CharacterComesOfAge
Condition FatherTrait Girls >= 1
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 10
;------------------------------------------
Trigger UnfaithfulFather2
WhenToTest CharacterComesOfAge
Condition FatherTrait Girls > 2
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 33
;------------------------------------------
Trigger Father_Interested_InFunLife
WhenToTest CharacterComesOfAge
Condition FatherTrait Epicurean > 0
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 10
;------------------------------------------
Trigger Father_Interested_InArts
WhenToTest CharacterComesOfAge
Condition FatherTrait Cultured > 0
and not FactionType papal_states
and IsGeneral
Affects BastardSon 1 Chance 10
but it may be also removed for a new FactionLeader:
Code:
;------------------------------------------
Trigger bastardbecomesheir ; bastard that has proven themself (remember that other trigger?) is made heir, is legitimised
WhenToTest BecomesFactionHeir
Condition Trait BastardSon = 1
and Trait Factionleader = 1
Affects Factionleader 1 Chance 100
Affects BastardSon -1 Chance 100
;------------------------------------------
Trigger bastardbecomesbastardheir ; bastard lucks into succession, gains unique trait
WhenToTest BecomesFactionHeir
Condition Trait BastardSon = 1
and Trait Factionleader = 0
Affects BastardHeir 1 Chance 100
Affects BastardSon -1 Chance 100
;------------------------------------------
Trigger bastardbecomesusurper ; bastard heir was already plotting, becomes usurper
WhenToTest BecomesFactionHeir
Condition Trait BastardSon = 1
and Trait Factionleader = 0
and Trait Usurper = 1
Affects Usurper 1 Chance 100
Affects BastardSon -1 Chance 100
;------------------------------------------
Trigger bastardbecomesfactionleader ; worthy bastard becomes FL, legitimises himself
WhenToTest BecomesFactionLeader
Condition Trait BastardSon = 1
and Trait Factionleader = 1
Affects Factionleader 2 Chance 100
Affects BastardSon -1 Chance 100
;------------------------------------------
Trigger bastardbecomesfactionregent ; not worthy bastard becomes regent, legitimises himself
WhenToTest BecomesFactionLeader
Condition Trait BastardSon = 1
and Trait Factionleader = 0
and not CharFactionType slave
and not CharFactionType papal_states
Affects FactionRegent 2 Chance 100
Affects BastardSon -1 Chance 100
;------------------------------------------
Trigger bastardbecomesusurperleader ; bastard usurper legitimises himself
WhenToTest BecomesFactionLeader
Condition Trait BastardSon = 1
and Trait Factionleader = 0
and Trait Usurper = 1
Affects Usurper 2 Chance 100
Affects BastardSon -1 Chance 100
Alcazar: highest level
Code:
;------------------------------------------- 0->1 Trigger Crown_spain_Fit
WhenToTest CharacterTurnEndInSettlement
Condition FactionIsLocal
and FactionType spain
and IsFactionLeader
and SettlementName Toledo
and SettlementBuildingExists = alcazar5_toledo ; coronation in Toledo
and not IsUnderSiege
and GovernorLoyaltyLevel > loyalty_disillusioned
and Treasury > 20000
and Trait Crownholder > 1
and Trait Crownholder < 4
Affects Fit_Crown_spain 1 Chance 100