WoL.50 is as follows:
The ROOT for the event is the seduction target, but the random_courtier scope works thusly, according to the wiki:
As a side note, there doesn't appear to be a similar event chain to allow to defend your daughter's honor.
Code:
# Target: Scandal check after Tumble
character_event = {
id = WoL.50
hide_window = yes
is_triggered_only = yes
immediate = {
random_courtier = {
limit = {
prisoner = no
has_regent = no
in_command = no
is_adult = yes
NOT = { character = FROM }
NOT = { character = ROOT }
OR = {
is_close_relative = ROOT
is_close_relative = FROM
is_liege_of = ROOT
is_rival = FROM
is_rival = ROOT
is_lover = FROM
is_lover = ROOT
any_spouse = {
OR = {
character = FROM
character = ROOT
}
}
any_consort = {
OR = {
character = FROM
character = ROOT
}
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_friend
}
}
OR = {
AND = {
attribute_diff = {
attribute = intrigue
character = ROOT
value = 0
}
attribute_diff = {
attribute = intrigue
character = FROM
value = 0
}
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_friend
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_child
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_spouse
}
}
}
if = {
limit = {
OR = {
AND = {
attribute_diff = {
attribute = intrigue
character = ROOT
value = 3
}
attribute_diff = {
attribute = intrigue
character = FROM
value = 3
}
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_friend
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_child
}
has_opinion_modifier = {
who = FROM
modifier = opinion_chasing_spouse
}
}
}
random = {
chance = 50
character_event = { id = WoL.55 days = 4 random = 7 }
}
break = yes
}
random = {
chance = 25
character_event = { id = WoL.55 days = 4 random = 7 }
}
}
}
}
The ROOT for the event is the seduction target, but the random_courtier scope works thusly, according to the wiki:
If the seduction target isn't landed, they logically wouldn't have any courtiers for the event to select from. This in turn would mean that the event chain cannot continue, and the purpose of the chain, potentially applying the opinion_cuckolded modifier at the time of the tumble, will not happen. Logically, there should be a liege = { scope prior to the random_courtier scope.Scopes to a random courtier of the character, including prisoners. Cannot be used as a trigger
As a side note, there doesn't appear to be a similar event chain to allow to defend your daughter's honor.
Upvote
0