-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/code/roads-to-power-update' of https://github.com/…
…Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2 into feat/code/roads-to-power-update
- Loading branch information
Showing
8 changed files
with
204 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
### HEALTH BALANCING TRIGGERS ### | ||
# Along with the health balancing effects, these triggers are only used to get data output used for balancing diseases. | ||
|
||
|
||
# For activating data output on the number of victims (total, dead and surviving) for contagious disease outbreaks. Combine with a run file like this to quickly collect data: | ||
|
||
#every_independent_ruler = { | ||
# random_courtier = { | ||
# trigger_event = health.1011 #1011 is plague, 1010 is smallpox | ||
# } | ||
#} | ||
|
||
|
||
debug_activate_contagious_disease_outbreak_data_trigger = { | ||
always = no | ||
} | ||
|
||
# Warcraft - use our own age values | ||
is_very_young_character = { | ||
OR = { | ||
age <= age_20_value | ||
AND = { | ||
OR = { | ||
has_trait = whole_of_body | ||
has_trait = fecund | ||
} | ||
age <= age_25_value | ||
} | ||
} | ||
} | ||
|
||
is_young_character = { | ||
OR = { | ||
age <= age_30_value | ||
AND = { | ||
OR = { | ||
has_trait = whole_of_body | ||
has_trait = fecund | ||
} | ||
age <= age_35_value | ||
} | ||
} | ||
} | ||
|
||
is_aging_character = { | ||
OR = { | ||
age >= age_50_value # increased from 40 to reflect longer Warcraft lifespans - SS 1.13 | ||
AND = { | ||
OR = { | ||
has_trait = whole_of_body | ||
has_trait = fecund | ||
} | ||
age >= age_55_value # increased from 45 to reflect longer Warcraft lifespans - SS 1.13 | ||
} | ||
} | ||
} | ||
|
||
is_old_character = { # note that this is also 10 years higher than vanilla - SS 1.13 | ||
trigger_if = { | ||
limit = { | ||
is_male = yes | ||
} | ||
age >= age_elderly_male_define_value | ||
} | ||
trigger_else = { | ||
age >= age_elderly_female_define_value | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters