From 5f191c1f7c10386bcf93c6815097f8787cdaf072 Mon Sep 17 00:00:00 2001 From: MrSky12 Date: Sun, 9 Jan 2022 02:30:52 +0100 Subject: [PATCH] Fat ray code --- GainStation13/code/obj/fatray.dm | 9 +++++++++ GainStation13/code/obj/item/item/gun/fatray.dm | 9 +++++++++ tgstation.dme | 1 + 3 files changed, 19 insertions(+) create mode 100644 GainStation13/code/obj/fatray.dm create mode 100644 GainStation13/code/obj/item/item/gun/fatray.dm diff --git a/GainStation13/code/obj/fatray.dm b/GainStation13/code/obj/fatray.dm new file mode 100644 index 00000000..e8fabf78 --- /dev/null +++ b/GainStation13/code/obj/fatray.dm @@ -0,0 +1,9 @@ +/obj/item/gun/energy/laser/captain + name = "Fat Ray Gun" + icon_state = "fatray" + item_state = "caplaser" + desc = "This is an antique laser gun. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. On the item is an image of Space Station 13. The station is exploding." + force = 10 + ammo_x_offset = 3 + selfcharge = EGUN_SELFCHARGE + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF diff --git a/GainStation13/code/obj/item/item/gun/fatray.dm b/GainStation13/code/obj/item/item/gun/fatray.dm new file mode 100644 index 00000000..81e5f2db --- /dev/null +++ b/GainStation13/code/obj/item/item/gun/fatray.dm @@ -0,0 +1,9 @@ +/obj/item/gun/energy/laser/captain + name = "Fat Ray Gun" + icon_state = "fatray" + item_state = "caplaser" + desc = "" + force = 10 + ammo_x_offset = 3 + selfcharge = EGUN_SELFCHARGE + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF diff --git a/tgstation.dme b/tgstation.dme index 9debda01..5649ee38 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3067,6 +3067,7 @@ #include "code\modules\zombie\organs.dm" #include "GainStation13\code\modules\mob\living\emote.dm" #include "GainStation13\code\modules\vending\mealdor.dm" +#include "GainStation13\code\obj\fatray.dm" #include "hyperstation\code\__DEFINES\economy.dm" #include "hyperstation\code\__DEFINES\wendigo.dm" #include "hyperstation\code\controllers\subsystem\economy.dm"