mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-23 05:08:54 +01:00
* Port estrous quirks from SPLURT This commit ports quirks related to the animal breeding cycle from the downstream server SPLURT. * Add null check for ashwalker round_season Adds a null value check for round_id in ashwalker estrous code to prevent possible runtime issues.
14 lines
740 B
Plaintext
14 lines
740 B
Plaintext
/// Painkiller trait, used for self-surgeries.
|
|
#define TRAIT_PAINKILLER "painkiller"
|
|
/// Prevents the player from getting thirsty at all, usually paired with TRAIT_NOHUNGER.
|
|
#define TRAIT_NOTHIRST "no_thirst"
|
|
/// Define for the quirk "sheltered", the player does not start with Galactic Common language.
|
|
#define TRAIT_SHELTERED "sheltered"
|
|
/// Define for the quirk "infertile", self explanatory. Please make this a preference on the Content Preferences Tab.
|
|
#define TRAIT_INFERTILE "infertile"
|
|
/// DNC trait, used to prevent cloning
|
|
#define TRAIT_DNC_ORDER "dnc_order"
|
|
/// Estrous traits, used for mammalian seasonal arousal systems
|
|
#define TRAIT_ESTROUS_ACTIVE "estrous_active"
|
|
#define TRAIT_ESTROUS_DETECT "estrous_detect"
|