mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-03-24 05:01:20 +00:00
20 lines
842 B
Plaintext
20 lines
842 B
Plaintext
// This file contains all of the "static" define strings that tie to a trait.
|
|
// WARNING: The sections here actually matter in this file as it's tested by CI. Please do not toy with the sections."
|
|
|
|
// BEGIN TRAIT DEFINES
|
|
|
|
/*
|
|
Remember to update _globalvars/traits.dm if you're adding/removing/renaming traits.
|
|
*/
|
|
|
|
/// Trait given to a mob that is currently thinking (giving off the "thinking" icon), used in an IC context
|
|
#define TRAIT_THINKING_IN_CHARACTER "currently_thinking_IC"
|
|
|
|
/// Climbable trait, given and taken by the climbable element when added or removed. Exists to be easily checked via HAS_TRAIT().
|
|
#define TRAIT_CLIMBABLE "trait_climbable"
|
|
|
|
/// Prevents the affected object from opening a loot window via alt click. See atom/AltClick()
|
|
#define TRAIT_ALT_CLICK_BLOCKER "no_alt_click"
|
|
|
|
#define TRAIT_INCAPACITATED "incapacitated"
|