created abstract scripts for machine, drone, suit and mech

This commit is contained in:
2026-02-23 15:40:52 +01:00
parent 13dbb551c8
commit 969c004153
31 changed files with 316 additions and 41 deletions

View File

@@ -0,0 +1,42 @@
enum drone_body_slots{
BRAIN,
LEGS,
BODY,
FUELTANK,
HEAD
}
enum suit_body_slots{
ARMS,
LEGS,
BODY,
HELMET,
FUELTANK,
BACKPACK
}
enum mech_body_slots{
COCKPIT,
LEFT_ARM,
RIGHT_ARM,
RIGHT_LEG,
LEFT_LEG,
CHEST,
BACK,
FUELTANK,
TRUNK
}
enum regular_states{
IDLING,
WALKING,
DASHING,
INTERACTING
}
enum irregular_states{
INVULNERABLE,
OVERCLOCKED,
STUNNED,
SNARRED
}