idk why I dont have a cursor

This commit is contained in:
Magpie490 2025-06-02 16:22:24 +01:00
parent 701d55c01f
commit cda3acdcea
349 changed files with 78627 additions and 7804 deletions

View file

@ -0,0 +1,23 @@
character_realm_neighbors_target_trigger = {
any_character_to_title_neighboring_county = {
holder = {
OR = {
this = $TARGET_CHARACTER$
target_is_liege_or_above = $TARGET_CHARACTER$
}
}
}
}
should_notify_player_about_neighboring_rulers_wars_trigger = {
NOR = {
target_is_liege_or_above = $TARGET_CHARACTER$ # We have separate toasts for this.
target_is_vassal_or_below = $TARGET_CHARACTER$ # We are probably already aware of our vassal's wars (and likely involved in them in some fashion).
}
character_realm_neighbors_target_trigger = { TARGET_CHARACTER = $TARGET_CHARACTER$ }
OR = {
$TARGET_CHARACTER$ = { is_independent_ruler = yes } # Independent rulers are always relevant.
liege = $TARGET_CHARACTER$.liege # Rulers are also relevant if we have the same direct liege (We might be able to DoW them, or at least want to stay informed as to relative power level).
top_liege = $TARGET_CHARACTER$.liege # Alternatively, if their direct liege is our top liege, we can still DoW them (If I am a Duke under a King under an Emperor, I might still want to DoW one of the Emperor's other King or Duke vassals.)
}
}