mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-30 11:32:20 +00:00
* Remove hideous inline tab indentation, and bans it in contributing guidelines * a Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
23 lines
485 B
Plaintext
23 lines
485 B
Plaintext
/*
|
|
Used with the various stat variables (mob, machines)
|
|
*/
|
|
|
|
//mob/var/stat things
|
|
#define CONSCIOUS 0
|
|
#define SOFT_CRIT 1
|
|
#define UNCONSCIOUS 2
|
|
#define HARD_CRIT 3
|
|
#define DEAD 4
|
|
|
|
//Maximum healthiness an individual can have
|
|
#define MAX_SATIETY 600
|
|
|
|
// bitflags for machine stat variable
|
|
#define BROKEN (1<<0)
|
|
#define NOPOWER (1<<1)
|
|
#define MAINT (1<<2) // under maintaince
|
|
#define EMPED (1<<3) // temporary broken by EMP pulse
|
|
|
|
//ai power requirement defines
|
|
#define POWER_REQ_ALL 1
|