From 0b577daa9fd38290dd4b4b53e98645350f839504 Mon Sep 17 00:00:00 2001 From: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> Date: Sat, 8 Jun 2024 21:08:13 +0200 Subject: [PATCH] Added a sawn-off shotgun to the uplink (#19342) Added a sawn-off shotgun to the uplink, box with some ammo and a holster, 4TC. --------- Signed-off-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> --- .../stealthy and inconspicuous weapons.dm | 6 ++ .../objects/items/weapons/storage/boxes.dm | 7 +++ .../fluffyghost-sawnoffshotgunuplink.yml | 58 +++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 html/changelogs/fluffyghost-sawnoffshotgunuplink.yml diff --git a/code/datums/uplink/stealthy and inconspicuous weapons.dm b/code/datums/uplink/stealthy and inconspicuous weapons.dm index 784ba8ec07a..5b1811cc83e 100644 --- a/code/datums/uplink/stealthy and inconspicuous weapons.dm +++ b/code/datums/uplink/stealthy and inconspicuous weapons.dm @@ -80,3 +80,9 @@ desc = "A 9mm pistol concealed within the shell of a camera, which has to be deployed before it can be fired. Closer inspection will reveal its true nature, but when in its concealed form it will look totally harmless." telecrystal_cost = 3 path = /obj/item/gun/projectile/shotgun/foldable/cameragun + +/datum/uplink_item/item/stealthy_weapons/sawn_doublebarrel_shotgun + name = "Sawn-off Double-Barrel Shotgun" + desc = "A box for a sidearm double barrel shotgun, containing a sawn-off double barrel shotgun, a holster and some ammo." + telecrystal_cost = 4 + path = /obj/item/storage/box/sawn_doublebarrel_shotgun diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 2f1fe7e05ce..5374cc278bb 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -1348,6 +1348,13 @@ new /obj/item/stack/cable_coil(src, 6) new /obj/item/stack/material/steel(src, 2) +/obj/item/storage/box/sawn_doublebarrel_shotgun + name = "sawn-off Dduble-barrel shotgun kit" + desc = "A box containing a sawn-off double-barrel shotgun, an holster and some ammo." + starts_with = list(/obj/item/gun/projectile/shotgun/doublebarrel/sawn = 1, + /obj/item/ammo_casing/shotgun/pellet = 6, + /obj/item/clothing/accessory/holster/thigh = 1) + /obj/item/storage/box/stressball name = "box of stress balls" desc = "A box containing a number of randomly-coloured stress balls." diff --git a/html/changelogs/fluffyghost-sawnoffshotgunuplink.yml b/html/changelogs/fluffyghost-sawnoffshotgunuplink.yml new file mode 100644 index 00000000000..f1375ea4ce5 --- /dev/null +++ b/html/changelogs/fluffyghost-sawnoffshotgunuplink.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: FluffyGhost + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a sawn-off shotgun to the uplink, box with some ammo and a holster, 4TC."