mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com> Co-authored-by: Kashargul <KashL@t-online.de>
15 lines
912 B
Plaintext
15 lines
912 B
Plaintext
// This file should contain every single global trait in the game in a type-based list, as well as any additional trait-related information that's useful to have on a global basis.
|
|
// This file is used in linting, so make sure to add everything alphabetically and what-not.
|
|
// Do consider adding your trait entry to the similar list in `admin_tooling.dm` if you want it to be accessible to admins (which is probably the case for 75% of traits).
|
|
|
|
// Please do note that there is absolutely no bearing on what traits are added to what subtype of `/datum`, this is just an easily referenceable list sorted by type.
|
|
// The only thing that truly matters about traits is the code that is built to handle the traits, and where that code is located. Nothing else.
|
|
|
|
/* CHOMPRemove, see traits.dm
|
|
GLOBAL_LIST_INIT(traits_by_type, list(
|
|
/mob = list(
|
|
"TRAIT_THINKING_IN_CHARACTER" = TRAIT_THINKING_IN_CHARACTER,
|
|
)
|
|
))
|
|
*/
|