There was a scripting issue in birth events where it was not modified for polygamy. So if the secondary wife in a polygamous marriage engaged in hanky panky and spawned a bastard, the husband was pissed at the blameless first wife.
Basically the reference to event 304 needs to be taken out and the following events need to be changed.
Basically the reference to event 304 needs to be taken out and the following events need to be changed.
Code:
# The child gets the father's dynasty
character_event = {
id = 302
is_triggered_only = yes
desc = "EVTDESC302"
picture = "GFX_evt_birth"
option = {
name = "OK"
dynasty = FROM
remove_trait = bastard
add_trait = legit_bastard
father = {
spouse = {
character_event = { id = 305 tooltip = "EVTTOOLTIP305" } # The father's wife is enraged
}
}
mother = {
spouse = {
character_event = { id = 304 tooltip = "EVTTOOLTIP304" } # The child's mother's husband is pissed off
}
}
}
}
# The child's mother's husband is pissed off
character_event = {
id = 304
picture = "GFX_evt_quarrel"
desc = "EVTDESC304"
is_triggered_only = yes
option = {
name = "EVTOPTA304"
FROM = {
mother = {
reverse_opinion = {
who = ROOT
modifier = unfaithful
years = 10
}
}
}
FROM = {
father = {
reverse_opinion = {
who = ROOT
modifier = cuckolded
years = 10
}
}
}
}
}
# The child founds a new "bastard" dynasty
character_event = {
id = 306
is_triggered_only = yes
desc = "EVTDESC306"
picture = "GFX_evt_birth"
option = {
name = "OK"
dynasty = FROM
add_trait = bastard
father = {
spouse = {
character_event = { id = 308 tooltip = "EVTTOOLTIP308" } # The father's wife is angered
}
}
mother = {
spouse = {
character_event = { id = 304 tooltip = "EVTTOOLTIP304" } # The child's mother's husband is pissed off
}
}
}
}
# The child is denounced
character_event = {
id = 309
is_triggered_only = yes
desc = "EVTDESC309"
picture = "GFX_evt_birth"
option = {
name = "OK"
father = {
spouse = {
character_event = { id = 311 } # The father's wife is displeased
}
}
mother = {
spouse = {
character_event = { id = 304 tooltip = "EVTTOOLTIP304" } # The child's mother's husband is pissed off
}
}
}
}