e83d72219d
* Soft crit, except a little bit harder.
* tweak
* 👌
* why was this even in here
* no radios in critical
* fix that too
* keep to original logic
* not very smart, really
* tip: do nothing tgui-side that you can do code-side, because we can't do defines in tgui
* blood trail
* can't do blood trails
* how does this even work
* harsher slowdown and more obscured vision
* it really puts it into perspective; you're fucking dying.
* stat_attack
* stop fuckin whispering into radios or whatever it is you're doing
* more fixes
* fix
* fix
* fix the radio shit
* bikeshed?
33 lines
670 B
Plaintext
33 lines
670 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 DEAD 3
|
|
|
|
//mob disabilities stat
|
|
|
|
#define BLIND 1
|
|
#define MUTE 2
|
|
#define DEAF 4
|
|
#define NEARSIGHT 8
|
|
#define FAT 32
|
|
#define HUSK 64
|
|
#define NOCLONE 128
|
|
#define CLUMSY 256
|
|
|
|
// bitflags for machine stat variable
|
|
#define BROKEN 1
|
|
#define NOPOWER 2
|
|
#define POWEROFF 4 // tbd
|
|
#define MAINT 8 // under maintaince
|
|
#define EMPED 16 // temporary broken by EMP pulse
|
|
|
|
//ai power requirement defines
|
|
#define POWER_REQ_NONE 0
|
|
#define POWER_REQ_ALL 1
|
|
#define POWER_REQ_CLOCKCULT 2
|