mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* Updated interactions * Update interaction_menu.dm * Colors * Update interaction_menu.dm * Update interaction_menu.dm * Update interaction_menu.dm * Better code for all. * Update interaction_component.dm * Removes support for TARGET SPEAK and USER SPEAK due to instability. * Update interactions.dm * Update interaction_component.dm * Enables you to interact from a distance again.
17 lines
605 B
Plaintext
17 lines
605 B
Plaintext
#define INTERACTION_JSON_FOLDER "config/skyrat/interactions/"
|
|
|
|
// Special values
|
|
#define INTERACTION_MAX_CHAR 255
|
|
#define INTERACTION_COOLDOWN 1 SECONDS
|
|
|
|
// If an interaction has this category it will not be shown to players
|
|
#define INTERACTION_CAT_HIDE "hide"
|
|
|
|
// If you add a new requirement you also need to implement its checking. See /datum/interaction/proc/allow_act
|
|
#define INTERACTION_REQUIRE_SELF_HAND "self_hand"
|
|
#define INTERACTION_REQUIRE_TARGET_HAND "target_hand"
|
|
|
|
// Interaction Types: Do we do it to ourself or someone else
|
|
#define INTERACTION_SELF "self"
|
|
#define INTERACTION_OTHER "other"
|