mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
* Adds an Indebted negative quirk to the game. * skyrat edits * Update sol_fed.dm --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
17 lines
764 B
Plaintext
17 lines
764 B
Plaintext
//Medical Categories for quirks
|
|
#define CAT_QUIRK_ALL 0
|
|
#define CAT_QUIRK_NOTES 1
|
|
#define CAT_QUIRK_MINOR_DISABILITY 2
|
|
#define CAT_QUIRK_MAJOR_DISABILITY 3
|
|
|
|
/// This quirk can only be applied to humans
|
|
#define QUIRK_HUMAN_ONLY (1<<0)
|
|
/// This quirk processes on SSquirks (and should implement quirk process)
|
|
#define QUIRK_PROCESSES (1<<1)
|
|
/// This quirk is has a visual aspect in that it changes how the player looks. Used in generating dummies.
|
|
#define QUIRK_CHANGES_APPEARANCE (1<<2)
|
|
/// The only thing this quirk effects is mood so it should be disabled if mood is
|
|
#define QUIRK_MOODLET_BASED (1<<3)
|
|
/// This quirk shouldn't be shown by health analyzers and hud, perhaps as considering it medical condition is a far stretch.
|
|
#define QUIRK_HIDE_FROM_SCAN (1<<4)
|