Event 3378, in the traits_effects_events.txt file, is the end of a short event chain involving pushing a courtier to be more ambitious. The code for this event is as follows:
This event has a 20% of giving the liege the ambitious trait (giving the courtier the ambitious trait is handled in event 3376, and has a 20% chance as well, leading me to believe this is a copy/paste issue). This makes little sense, as one of the required triggers for starting the event chain is the liege having the ambitious trait.
Code:
#Ambitious Pos: ROOT
character_event = {
id = 3378
desc = EVTDESC3378
picture = GFX_evt_courtiers_talking
is_triggered_only = yes
option = {
name = EVTOPTA3378
FROM = {
opinion = {
modifier = ambitious_pos
who = ROOT
years = 2
}
}
random = {
chance = 20
add_trait = ambitious
}
}
}
Upvote
0