Files
Aurora.3/code/__DEFINES/origin_traits.dm
RustingWithYou eb63f6998b 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.
2024-04-18 22:50:13 +00:00

16 lines
776 B
Plaintext

// A set of traits used to determine which origin quirks to apply to characters.
#define TRAIT_ORIGIN_IGNORE_CAPSAICIN "ignore_capsaicin"
#define TRAIT_ORIGIN_ALCOHOL_RESISTANCE "alcohol_resistance"
#define TRAIT_ORIGIN_DRUG_RESISTANCE "drug_resistance"
#define TRAIT_ORIGIN_DARK_AFRAID "dark_sensitivity"
#define TRAIT_ORIGIN_TOX_RESISTANCE "toxin_resistance"
#define TRAIT_ORIGIN_COLD_RESISTANCE "cold_resistance"
#define TRAIT_ORIGIN_HOT_RESISTANCE "hot_resistance"
#define TRAIT_ORIGIN_NO_ANIMAL_PROTEIN "no_animal_protein"
#define TRAIT_ORIGIN_LIGHT_SENSITIVE "light_sensitive"
#define TRAIT_ORIGIN_STAMINA_BONUS "stamina_bonus"
#define TRAIT_ORIGIN_PAIN_RESISTANCE "pain_resistance"
//Vaurca-specific traits
#define TRAIT_ORIGIN_ELECTRONIC_WARFARE "electronic_warfare"