mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
Several months worth of updates. --------- Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com> Co-authored-by: Pepsilawn <reisenrui@gmail.com> Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com> Co-authored-by: Cure221 <106662180+Cure221@users.noreply.github.com>
17 lines
917 B
Plaintext
17 lines
917 B
Plaintext
///electrified_buckle requires a shock kit attached to it in order to shock
|
|
#define SHOCK_REQUIREMENT_ITEM (1<<0)
|
|
///electrified_buckle requires a live cable to work, and draws power from it
|
|
#define SHOCK_REQUIREMENT_LIVE_CABLE (1<<1)
|
|
///electrified_buckle requires to be turned on with a signal in order to shock the buckled mob
|
|
#define SHOCK_REQUIREMENT_ON_SIGNAL_RECEIVED (1<<2)
|
|
///electrified_buckle requires the parent to be alive in order to shock (if parent is a mob)
|
|
#define SHOCK_REQUIREMENT_PARENT_MOB_ISALIVE (1<<3)
|
|
///a signal can toggle the ability to shock on a timer
|
|
#define SHOCK_REQUIREMENT_SIGNAL_RECEIVED_TOGGLE (1<<4)
|
|
///electrified buckle requires the area to be powered but not necessarily connected by cable
|
|
#define SHOCK_REQUIREMENT_AREA_POWER (1<<5)
|
|
|
|
|
|
///This trait signifies that the object can be used to electrify things buckled to it
|
|
#define TRAIT_ELECTRIFIED_BUCKLE "electrified buckle"
|