mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
Implements the long-promised modular RnD energy weapon system I embarked upon in the ancient days of August 2016. Currently just a basic framework based heavily on Printer's recent work. Relevant thread: https://forums.aurorastation.org/viewtopic.php?f=18&t=9755
11 lines
419 B
Plaintext
11 lines
419 B
Plaintext
#define CHASSIS_SMALL 2
|
|
#define CHASSIS_MEDIUM 3
|
|
#define CHASSIS_LARGE 4
|
|
|
|
#define MOD_SILENCE 1
|
|
#define MOD_NUCLEAR_CHARGE 2
|
|
|
|
#define islasercapacitor(A) istype(A, /obj/item/laser_components/capacitor)
|
|
#define ismodifier(A) istype(A, /obj/item/laser_components/modifier)
|
|
#define ismodulator(A) istype(A, /obj/item/laser_components/modulator)
|
|
#define isfocusinglens(A) istype(A, /obj/item/laser_components/focusing_lens) |