30 lines
815 B
Plaintext
30 lines
815 B
Plaintext
// helpers
|
|
|
|
// sources
|
|
/// Species
|
|
#define ABILITY_SOURCE_SPECIES "species"
|
|
/// Changeling
|
|
#define ABILITY_SOURCE_CHANGELING "changeling"
|
|
|
|
// abilities
|
|
/// Full customization and transformation of mutantparts/hair/sprite accessories/etc - excludes name by default
|
|
#define INNATE_ABILITY_HUMANOID_CUSTOMIZATION "humanoid_customization"
|
|
/// Slime blobform
|
|
#define INNATE_ABILITY_SLIME_BLOBFORM "slime_blobform"
|
|
/// limb regrowth
|
|
#define INNATE_ABILITY_LIMB_REGROWTH "limb_regrowth"
|
|
|
|
/// ability properties
|
|
// customization/body change
|
|
/// is this silent?
|
|
#define PROPERTY_CUSTOMIZATION_SILENT "silent"
|
|
// blobform
|
|
/// Blobform color
|
|
#define PROPERTY_BLOBFORM_COLOR "color"
|
|
// limb regrwoth
|
|
/// limb regrowth usage type
|
|
#define PROPERTY_LIMB_REGROWTH_USAGE_TYPE "cost"
|
|
/// blood
|
|
#define REGROWTH_USES_BLOOD "blood"
|
|
|