From fdf9e8f447bc02b3a62d86dc4d0a3dfb2281926d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 17 Mar 2024 03:47:24 +0100 Subject: [PATCH] [MIRROR] You can now buy double barrel shotgun from the goodie section (#26893) * You can now buy double barrel shotgun from the goodie section (#81897) For the absurd price of 1,800 credits, and a weapon permit, the double barrel shotgun can be yours! * You can now buy double barrel shotgun from the goodie section --------- Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> --- code/modules/cargo/goodies.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/cargo/goodies.dm b/code/modules/cargo/goodies.dm index fd30973d241..c39fa59c200 100644 --- a/code/modules/cargo/goodies.dm +++ b/code/modules/cargo/goodies.dm @@ -308,3 +308,10 @@ desc = "A less cheap imported climbing hook. Absolutely no use outside of planetary stations." cost = PAYCHECK_CREW * 5 contains = list(/obj/item/climbing_hook) + +/datum/supply_pack/goody/double_barrel + name = "Double Barrel Shotgun" + desc = "Lost your beloved bunny to a demonic invasion? Clown broke in and stole your beloved gun? No worries! Get a new gun so long as you can pay the absurd fees." + cost = PAYCHECK_COMMAND * 18 + access_view = ACCESS_WEAPONS + contains = list(/obj/item/gun/ballistic/shotgun/doublebarrel)