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,43 @@
#would_follow_social_distancing_trigger
#realm_has_any_epidemic
#notified_of_plague_trigger
would_follow_social_distancing_trigger = {
would_follow_social_distancing_value >= 0
}
realm_has_any_epidemic = {
any_sub_realm_county = {
count >= $SIZE$
any_county_province = {
any_province_epidemic = {
outbreak_intensity >= $INTENSITY$
}
}
}
}
realm_has_any_nearby_epidemic = {
any_sub_realm_county = {
count >= $SIZE$
any_county_province = {
OR = {
county.holder = root
squared_distance = {
target = root.capital_province
value <= squared_distance_medium #250 map-pixels. Roughly one Ireland away (top to bottom).
}
}
any_province_epidemic = {
outbreak_intensity >= $INTENSITY$
}
}
}
}
notified_of_plague_trigger = {
is_target_in_variable_list = {
name = plagues_notified
target = scope:epidemic
}
}