mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
24 lines
645 B
Plaintext
24 lines
645 B
Plaintext
|
|
/*
|
|
|
|
Contents:
|
|
- Definitions, because the original Ninja code has so much magic.
|
|
|
|
*/
|
|
|
|
|
|
//ninjacost() specificCheck defines
|
|
#define N_STEALTH_CANCEL 1
|
|
#define N_SMOKE_BOMB 2
|
|
#define N_ADRENALINE 3
|
|
|
|
//ninjaDrainAct() defines for non numerical returns
|
|
//While not strictly needed, it's nicer than them just returning "twat"
|
|
//Which was my original intention.
|
|
|
|
#define INVALID_DRAIN "INVALID" //This one is if the drain proc needs to cancel, eg missing variables, etc, it's important.
|
|
|
|
#define DRAIN_RD_HACKED "RDHACK"
|
|
#define DRAIN_RD_HACK_FAILED "RDHACKFAIL"
|
|
#define DRAIN_MOB_SHOCK "MOBSHOCK"
|
|
#define DRAIN_MOB_SHOCK_FAILED "MOBSHOCKFAIL" |