Files
Aurora.3/code/__defines/modular_guns.dm
LordFowl 6dd5c2dbfd Unapologetic Scientist Buffs (#3957)
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
2018-01-20 23:39:14 +02:00

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)