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
87
common/scripted_triggers/00_terrain_triggers.txt
Normal file
87
common/scripted_triggers/00_terrain_triggers.txt
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
|
||||
#########################
|
||||
# Triggers for Province Terrain
|
||||
#########################
|
||||
is_wooded_trigger = {
|
||||
OR = {
|
||||
terrain = forest
|
||||
terrain = jungle
|
||||
terrain = taiga
|
||||
}
|
||||
}
|
||||
|
||||
is_mountainous_trigger = {
|
||||
OR = {
|
||||
terrain = mountains
|
||||
terrain = desert_mountains
|
||||
}
|
||||
}
|
||||
|
||||
is_mountainous_or_hilly_trigger = {
|
||||
OR = {
|
||||
terrain = mountains
|
||||
terrain = desert_mountains
|
||||
terrain = hills
|
||||
}
|
||||
}
|
||||
|
||||
is_drylands_trigger = {
|
||||
OR = {
|
||||
terrain = drylands
|
||||
terrain = steppe
|
||||
}
|
||||
}
|
||||
|
||||
is_desert_trigger = {
|
||||
OR = {
|
||||
terrain = desert
|
||||
terrain = desert_mountains
|
||||
terrain = oasis
|
||||
}
|
||||
}
|
||||
|
||||
is_drylands_or_desert_trigger = {
|
||||
OR = {
|
||||
terrain = drylands
|
||||
terrain = steppe
|
||||
terrain = desert
|
||||
terrain = desert_mountains
|
||||
terrain = oasis
|
||||
}
|
||||
}
|
||||
|
||||
is_wetland_trigger = {
|
||||
OR = {
|
||||
terrain = wetlands
|
||||
terrain = floodplains
|
||||
terrain = oasis
|
||||
}
|
||||
}
|
||||
|
||||
is_flatlands_trigger = {
|
||||
OR = {
|
||||
terrain = steppe
|
||||
terrain = plains
|
||||
terrain = farmlands
|
||||
}
|
||||
}
|
||||
|
||||
is_likely_to_contain_trees_trigger = {
|
||||
OR = {
|
||||
is_wooded_trigger = yes
|
||||
is_wetland_trigger = yes
|
||||
is_flatlands_trigger = yes
|
||||
terrain = hills
|
||||
}
|
||||
}
|
||||
|
||||
holds_county_with_water_trigger = {
|
||||
any_held_county = {
|
||||
any_county_province = {
|
||||
NOR = {
|
||||
terrain = desert
|
||||
terrain = desert_mountains
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue