mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-25 08:06:36 +01:00
all defibs now defib synths and jumper kits/cables are removed. ## why why would we make a niche item require two different types for organics/non organics? synths shouldn't even need a defib in the first place do you need a massive capacitor to restart your computer? just plug in the power? lol?
23 lines
555 B
Plaintext
23 lines
555 B
Plaintext
//* /atom/proc/inducer_act returns *//
|
|
|
|
/// continue without using charge
|
|
#define INDUCER_ACT_CONTINUE "continue"
|
|
/// immediately stop
|
|
#define INDUCER_ACT_STOP "stop"
|
|
|
|
//* /inducer_scan returns *//
|
|
|
|
/// normal - use list
|
|
#define INDUCER_SCAN_NORMAL 0
|
|
/// ignore scan result, silent fail
|
|
#define INDUCER_SCAN_BLOCK 1
|
|
/// say something is interfering, loud fail
|
|
#define INDUCER_SCAN_INTERFERE 2
|
|
/// say something is full
|
|
#define INDUCER_SCAN_FULL 3
|
|
|
|
//* /obj/item/inducer/var/inducer_flags *//
|
|
|
|
/// no using on guns
|
|
#define INDUCER_NO_GUNS (1<<0)
|