mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-11 07:03:30 +01:00
ccf5ef4fc4
* Nanopaste now can repair mecha * Update nanopaste.dm * refactor mech code * fix * Update code/game/objects/items/stacks/nanopaste.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update nanopaste.dm * Update nanopaste.dm * Update nanopaste.dm * Update nanopaste.dm * Update code/game/objects/items/stacks/nanopaste.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update nanopaste.dm * Update code/game/objects/items/stacks/nanopaste.dm Co-authored-by: Matt <116982774+Burzah@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update code/game/mecha/mecha.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update code/game/objects/items/stacks/nanopaste.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> --------- Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Matt <116982774+Burzah@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
23 lines
609 B
Plaintext
23 lines
609 B
Plaintext
#define MECHA_INT_FIRE (1<<0)
|
|
#define MECHA_INT_TEMP_CONTROL (1<<1)
|
|
#define MECHA_INT_SHORT_CIRCUIT (1<<2)
|
|
#define MECHA_INT_TANK_BREACH (1<<3)
|
|
#define MECHA_INT_CONTROL_LOST (1<<4)
|
|
|
|
#define MECHA_MELEE (1<<0)
|
|
#define MECHA_RANGED (1<<1)
|
|
|
|
#define MECHAMOVE_RAND (1<<0)
|
|
#define MECHAMOVE_TURN (1<<1)
|
|
#define MECHAMOVE_STEP (1<<2)
|
|
|
|
#define MECHA_FRONT_ARMOUR 1
|
|
#define MECHA_SIDE_ARMOUR 2
|
|
#define MECHA_BACK_ARMOUR 3
|
|
|
|
#define MECHA_MAINT_OFF 0
|
|
#define MECHA_MAINT_ON 1
|
|
#define MECHA_BOLTS_UP 2
|
|
#define MECHA_OPEN_HATCH 3
|
|
#define MECHA_BATTERY_UNSCREW 4
|