New Origin Traits (#18792)

Adds two new origin traits - small pain resistance and a minor stamina
increase. Currently Unathi from the Tza Prairie have the stamina boost
and Unathi from the Zazalai Mountains have the pain reduction.

Also adds drug & alcohol resistance to Crevan Tajara.
This commit is contained in:
RustingWithYou
2024-04-18 22:50:13 +00:00
committed by GitHub
parent ad4df4f72b
commit eb63f6998b
7 changed files with 60 additions and 0 deletions
@@ -165,6 +165,8 @@
possible_accents = list(ACCENT_CREVAN)
possible_citizenships = CITIZENSHIPS_ADHOMAI
possible_religions = RELIGIONS_ADHOMAI
origin_traits = list(TRAIT_ORIGIN_ALCOHOL_RESISTANCE, TRAIT_ORIGIN_DRUG_RESISTANCE)
origin_traits_descriptions = list("have a higher alcoholic tolerance", "have a higher tolerance to recreative drugs")
/singleton/origin_item/origin/old_nobility
name = "Pre-Contact Nobility"
@@ -39,6 +39,8 @@
possible_accents = list(ACCENT_TZA_PEASANT)
possible_citizenships = list(CITIZENSHIP_IZWESKI, CITIZENSHIP_BIESEL, CITIZENSHIP_COALITION)
possible_religions = list(RELIGION_THAKH)
origin_traits = list(TRAIT_ORIGIN_STAMINA_BONUS)
origin_traits_descriptions = list("have slightly more stamina")
/singleton/origin_item/origin/tza_upper
name = "Tza Prairie Upper Castes"
@@ -49,6 +51,8 @@
possible_accents = list(ACCENT_TZA_NOBLE)
possible_citizenships = list(CITIZENSHIP_IZWESKI)
possible_religions = list(RELIGION_THAKH)
origin_traits = list(TRAIT_ORIGIN_STAMINA_BONUS)
origin_traits_descriptions = list("have slightly more stamina")
/singleton/origin_item/origin/southlands_lower
name = "Southlands Lower Castes"
@@ -82,6 +86,8 @@
possible_accents = list(ACCENT_ZAZ_LOW)
possible_citizenships = list(CITIZENSHIP_IZWESKI, CITIZENSHIP_BIESEL, CITIZENSHIP_COALITION)
possible_religions = list(RELIGION_THAKH, RELIGION_SKAKH, RELIGION_AUTAKH, RELIGION_SIAKH, RELIGION_NONE)
origin_traits = list(TRAIT_ORIGIN_PAIN_RESISTANCE)
origin_traits_descriptions = list("are slightly more resistant to pain")
/singleton/origin_item/origin/zazalai_upper
name = "Zazalai Mountains Upper Castes"
@@ -94,3 +100,5 @@
possible_accents = list(ACCENT_ZAZ_HIGH)
possible_citizenships = list(CITIZENSHIP_IZWESKI)
possible_religions = list(RELIGION_THAKH, RELIGION_SKAKH, RELIGION_SIAKH, RELIGION_NONE)
origin_traits = list(TRAIT_ORIGIN_PAIN_RESISTANCE)
origin_traits_descriptions = list("are slightly more resistant to pain")