idk why I dont have a cursor
This commit is contained in:
parent
701d55c01f
commit
cda3acdcea
349 changed files with 78627 additions and 7804 deletions
43
common/scripted_triggers/06_ce1_epidemic_triggers.txt
Normal file
43
common/scripted_triggers/06_ce1_epidemic_triggers.txt
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue