mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 14:32:52 +00:00
* yeet * goddamn fucking trailing newline * edit: I reread the bounty * leftover from: I reread the bounty * *more* leftover from: I reread the bounty * speedup * here too * empty commit for linter reruns * there * remembered the newline this time * okay I forgot that
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
// All of these must be matched in StripMenu.js.
|
|
#define STRIPPABLE_ITEM_HEAD "head"
|
|
#define STRIPPABLE_ITEM_BACK "back"
|
|
#define STRIPPABLE_ITEM_MASK "mask"
|
|
#define STRIPPABLE_ITEM_NECK "neck"
|
|
#define STRIPPABLE_ITEM_EYES "eyes"
|
|
#define STRIPPABLE_ITEM_EARS "ears"
|
|
#define STRIPPABLE_ITEM_JUMPSUIT "jumpsuit"
|
|
#define STRIPPABLE_ITEM_SUIT "suit"
|
|
#define STRIPPABLE_ITEM_GLOVES "gloves"
|
|
#define STRIPPABLE_ITEM_FEET "shoes"
|
|
#define STRIPPABLE_ITEM_SUIT_STORAGE "suit_storage"
|
|
#define STRIPPABLE_ITEM_ID "id"
|
|
#define STRIPPABLE_ITEM_BELT "belt"
|
|
#define STRIPPABLE_ITEM_LPOCKET "left_pocket"
|
|
#define STRIPPABLE_ITEM_RPOCKET "right_pocket"
|
|
#define STRIPPABLE_ITEM_LHAND "left_hand"
|
|
#define STRIPPABLE_ITEM_RHAND "right_hand"
|
|
#define STRIPPABLE_ITEM_HANDCUFFS "handcuffs"
|
|
#define STRIPPABLE_ITEM_LEGCUFFS "legcuffs"
|
|
#define STRIPPABLE_ITEM_CORGI_COLLAR "corgi_collar"
|
|
#define STRIPPABLE_ITEM_PARROT_HEADSET "parrot_headset"
|
|
|
|
/// This slot is not obscured.
|
|
#define STRIPPABLE_OBSCURING_NONE 0
|
|
|
|
/// This slot is completely obscured, and cannot be accessed.
|
|
#define STRIPPABLE_OBSCURING_COMPLETELY 1
|
|
|
|
/// This slot can't be seen, but can be accessed.
|
|
#define STRIPPABLE_OBSCURING_HIDDEN 2
|
|
|
|
//SKYRAT EDIT ADDITION BEGIN - THIEVING GLOVES
|
|
#define THIEVING_GLOVES_STRIP_SLOWDOWN 0.5 //a multiplier for the amount of time it takes to strip someone
|
|
#define NORMAL_STRIP_SLOWDOWN 1
|
|
//SKYRAT EDIT END
|