liege = { has_law = female_council_law_4 }
[...]
has_game_rule = {
name = gender
value = plus
}
I commented out that stuff because I didn't want to add too much stuff outside of the ambitions. If you wish, I'll implement for example the traits, but not any events/decisions to actually receive the trait (which would make it unnecessary to implement the traits yet, but I'm not sure how you want to handle it)
And, as mentioned on discord, changed is_pagan_religion = yes to religion_group = pagan_group, but i mentioned it in the code as comment
From testing, the events and the ambition itself seems to work just fine
Commented out code that had to do with factions, I'm not familiar with them and they do not seem to be implemented yet. (Seems about recalculating the faction mood for the prosperity faction?)
Refactored some event_modifier which have not been implemented up to this point (added a 'plus' in front, so it's more recognizable what's from the mod)
Same for certain triggers
Only bastard events that had to do with the ambition were implemented. Others, like about making a claim, not.
Changed real_father to true_father_even_if_dead, because the scope did not seem to work correctly otherwise. Shouldn't make a difference because the events are anyway only fired if the character has the ambition, which is only available if the true_father is alive.
TODO list
[ ] Add martial_lady, martial_pagan, martial_tengri (commented out)
[ ] Add numerous faction-mood-related code (commented out)
[ ] Add gamerule -> Gender Plus (commented out)
[ ] Change
religion_group = pagan_group
back tois_pagan_religion
[ ] Icons overhaul(?)
[ ] Refactor some event-triggers for the
befriend_liege
ambition[ ] make namespaces shorter (seems to give an error)
Added
adopt_a_lifestyle
ambitionWorth to mention:
trait = martial_lady
(trait not implemented yet)trait = martial_lady_pagan
(trait not implemented yet)trait = martial_lady_tengri
(trait not implemented yet)Also commented out:
and
I commented out that stuff because I didn't want to add too much stuff outside of the ambitions. If you wish, I'll implement for example the traits, but not any events/decisions to actually receive the trait (which would make it unnecessary to implement the traits yet, but I'm not sure how you want to handle it)
And, as mentioned on discord, changed
is_pagan_religion = yes
toreligion_group = pagan_group
, but i mentioned it in the code as commentFrom testing, the events and the ambition itself seems to work just fine