From 6bac90f8de8f04b7d1ec9a15d0adb0a8f63f2908 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Mon, 22 Mar 2021 21:23:00 -0500 Subject: [PATCH] uhh initial commit ig --- .../projectiles/boxes_magazines/internal/shotgun.dm | 6 ++++++ code/modules/projectiles/guns/ballistic/shotgun.dm | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/code/modules/projectiles/boxes_magazines/internal/shotgun.dm b/code/modules/projectiles/boxes_magazines/internal/shotgun.dm index 246260dbf8..3a107924e0 100644 --- a/code/modules/projectiles/boxes_magazines/internal/shotgun.dm +++ b/code/modules/projectiles/boxes_magazines/internal/shotgun.dm @@ -55,3 +55,9 @@ name = "triple-barrel shotgun internal magazine" ammo_type = /obj/item/ammo_casing/shotgun/incapacitate max_ammo = 3 + +/obj/item/ammo_box/magazine/internal/shot/levergun + name = "levergun internal magazine" + ammo_type = /obj/item/ammo_casing/c38 // they're rubber by default, i guess + caliber = ".38" + max_ammo = 7 diff --git a/code/modules/projectiles/guns/ballistic/shotgun.dm b/code/modules/projectiles/guns/ballistic/shotgun.dm index 8035440906..713dca062d 100644 --- a/code/modules/projectiles/guns/ballistic/shotgun.dm +++ b/code/modules/projectiles/guns/ballistic/shotgun.dm @@ -335,3 +335,12 @@ //our hook gun! var/obj/item/gun/magic/hook/bounty/hook var/toggled = FALSE + +// hey you kids like +// LEVER GUNS? + +/obj/item/gun/ballistic/shotgun/leveraction + name = "lever-action rifle" + desc = "While lever-actions have been horribly out of date for hundreds of years now, \ + the reported potential versatility of .38 Special is worth paying attention to." + mag_type = /obj/item/ammo_box/magazine/internal/shot/levergun