Hey guys,
I've noticed that my Romani sons coming of age all seem to be Sharp/Uncharismatic/Languorous. So I checked my family tree:
It's literally every single one, except for one who is D/U/L, and I'm on turn 193. Adoptees (clearly marked thanks to the "Adopted into gens...") are whatever ones I vetted as good, but every single coming-of-age son has S/U/L except maybe that one that is D/U/L and this is across several different fathers.
It looks like the random birth triggers use NaturalIntelligence, NaturalCharisma, and NaturalEnergy to assign states (lines 25416 - 25493):
Since it's working for OfferedForMarriage, OfferedForAdoption, and LesserGeneralOfferedForAdoption, I suspect that the Natural* variables for CharacterComesOfAge aren't generous enough compared to OfferedFor*.
Natural* is on a 5 point scale, where the cutoff is 3 points for S/C/V.
The initialization is a little weird:
The +1 to NaturalCharisma in the first trigger at 100% makes the second trigger never activate, so you're stuck with an average of 3 points of intelligence (explaining the Sharp) (100% + 4x 50% = 300%). Then you only get 1 point of Charisma and 1 point of Energy from the first trigger, thus always U and L. My one guy who was dull must have failed some of his 50s.Code:; Section 1.1.1 - Primary Triggers - ICE Rating - CharacterComesOfAge ;------------------------------------------ Trigger random_birth_ICE_Trigger_Initialize1 WhenToTest CharacterComesOfAge Condition Trait NaturalIntelligence < 1 Affects NaturalIntelligence 1 Chance 100 Affects NaturalCharisma 1 Chance 100 Affects NaturalEnergy 1 Chance 100 Affects NaturalIntelligence 1 Chance 50 Affects NaturalIntelligence 1 Chance 50 Affects NaturalIntelligence 1 Chance 50 Affects NaturalIntelligence 1 Chance 50 ;------------------------------------------ Trigger random_birth_ICE_Trigger_Initialize2 WhenToTest CharacterComesOfAge Condition Trait NaturalCharisma < 1 Affects NaturalCharisma 1 Chance 100 Affects NaturalCharisma 1 Chance 50 Affects NaturalCharisma 1 Chance 50 Affects NaturalCharisma 1 Chance 50 Affects NaturalCharisma 1 Chance 50 Affects NaturalEnergy 1 Chance 50 Affects NaturalEnergy 1 Chance 50 Affects NaturalEnergy 1 Chance 50 Affects NaturalEnergy 1 Chance 50
These values are added to by father traits, but not enough to compensate for losing the firing of the Charisma and Energy trigger.
So I guess what I would do is split it into three triggers, one each for Intelligence, Charisma, and Energy with a < 1 check and the 100 base and 4x 50 rolls.




Reply With Quote

...................................................






