mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
// Bitflags for mutations.
|
|
#define STRUCDNASIZE 27
|
|
#define UNIDNASIZE 13
|
|
|
|
// Generic mutations:
|
|
#define TK 1
|
|
#define COLD_RESISTANCE 2
|
|
#define XRAY 3
|
|
#define HULK 4
|
|
#define CLUMSY 5
|
|
#define FAT 6
|
|
#define HUSK 7
|
|
#define NOCLONE 8
|
|
#define LASER 9 // Harm intent - click anywhere to shoot lasers from eyes.
|
|
#define HEAL 10 // Healing people with hands.
|
|
|
|
#define SKELETON 29
|
|
#define PLANT 30
|
|
|
|
// Other Mutations:
|
|
#define mNobreath 100 // No need to breathe.
|
|
#define mRemote 101 // Remote viewing.
|
|
#define mRegen 102 // Health regeneration.
|
|
#define mRun 103 // No slowdown.
|
|
#define mRemotetalk 104 // Remote talking.
|
|
#define mMorph 105 // Hanging appearance.
|
|
#define mBlend 106 // Nothing. (seriously nothing)
|
|
#define mHallucination 107 // Hallucinations.
|
|
#define mFingerprints 108 // No fingerprints.
|
|
#define mShock 109 // Insulated hands.
|
|
#define mSmallsize 110 // Table climbing.
|
|
|
|
// disabilities
|
|
#define NEARSIGHTED 1
|
|
#define EPILEPSY 2
|
|
#define COUGHING 4
|
|
#define TOURETTES 8
|
|
#define NERVOUS 16
|
|
|
|
// sdisabilities
|
|
#define BLIND 1
|
|
#define MUTE 2
|
|
#define DEAF 4 |