Files
Cameron LennoxandGitHub 20a0443b8e Clears unused research var (#19355)
* Removes stack_origin_tech

* Goodbye

* I HATE MAP EDITS
2026-04-14 20:02:43 -04:00

45 lines
1.4 KiB
Plaintext

#ifdef T_BOARD_MICRO_MECHA
#error T_BOARD_MICRO_MECHA already defined elsewhere, we can't use it.
#endif
#define T_BOARD_MICRO_MECHA(name) "exosuit module circuit board (" + (name) + ")"
/obj/item/circuitboard/mecha/gopher
/obj/item/circuitboard/mecha/gopher/peripherals
name = T_BOARD_MICRO_MECHA("Gopher peripherals control")
icon_state = "mcontroller"
/obj/item/circuitboard/mecha/gopher/main
name = T_BOARD_MICRO_MECHA("Gopher central control")
icon_state = "mainboard"
/obj/item/circuitboard/mecha/polecat
/obj/item/circuitboard/mecha/polecat/peripherals
name = T_BOARD_MICRO_MECHA("Polecat peripherals control")
icon_state = "mcontroller"
/obj/item/circuitboard/mecha/polecat/targeting
name = T_BOARD_MICRO_MECHA("Polecat weapon control and targeting")
icon_state = "mcontroller"
/obj/item/circuitboard/mecha/polecat/main
name = T_BOARD_MICRO_MECHA("Polecat central control")
icon_state = "mainboard"
/obj/item/circuitboard/mecha/weasel
/obj/item/circuitboard/mecha/weasel/peripherals
name = T_BOARD_MICRO_MECHA("Weasel peripherals control")
icon_state = "mcontroller"
/obj/item/circuitboard/mecha/weasel/targeting
name = T_BOARD_MICRO_MECHA("Weasel weapon control and targeting")
icon_state = "mcontroller"
/obj/item/circuitboard/mecha/weasel/main
name = T_BOARD_MICRO_MECHA("Weasel central control")
icon_state = "mainboard"
#undef T_BOARD_MICRO_MECHA