From 21bdadb117c1bf04516fdb258a6ebaf44ea42e65 Mon Sep 17 00:00:00 2001 From: courierbravo <73250577+courierbravo@users.noreply.github.com> Date: Sat, 24 Aug 2024 04:17:04 -0700 Subject: [PATCH] Janitorial buff - omnivendor tweaks (#19806) Doubled the amount of canisters on tap for the omni vendor. Changed the name of the omni vendor to the omni restocker. Omnivendor doesnt really get across what its for, I think this change will make that sliiiightly more clear. --- code/game/machinery/vending_types.dm | 32 +++++----- .../courierbravo-shamelessjanitorbuff.yml | 59 +++++++++++++++++++ 2 files changed, 75 insertions(+), 16 deletions(-) create mode 100644 html/changelogs/courierbravo-shamelessjanitorbuff.yml diff --git a/code/game/machinery/vending_types.dm b/code/game/machinery/vending_types.dm index d73f02afd73..74d97c4d65c 100644 --- a/code/game/machinery/vending_types.dm +++ b/code/game/machinery/vending_types.dm @@ -19,28 +19,28 @@ //RECURSION /obj/machinery/vending/vendors - name = "Omni-Vendor" + name = "Omni-Restocker" desc = "The mother of all vendors, from which vending itself comes!" icon_state = "engivend" icon_vend = "engivend-vend" vend_id = "admin" req_access = list(ACCESS_JANITOR) products = list( - /obj/item/device/vending_refill/booze = 1, - /obj/item/device/vending_refill/tools = 1, - /obj/item/device/vending_refill/coffee = 1, - /obj/item/device/vending_refill/snack = 1, - /obj/item/device/vending_refill/cola = 1, - /obj/item/device/vending_refill/zora = 1, - /obj/item/device/vending_refill/frontiervend = 1, - /obj/item/device/vending_refill/smokes = 1, - /obj/item/device/vending_refill/meds = 1, - /obj/item/device/vending_refill/robust = 1, - /obj/item/device/vending_refill/hydro = 1, - /obj/item/device/vending_refill/cutlery = 1, - /obj/item/device/vending_refill/robo = 1, - /obj/item/device/vending_refill/battlemonsters = 1, - /obj/item/device/vending_refill/encryption = 1 + /obj/item/device/vending_refill/booze = 2, + /obj/item/device/vending_refill/tools = 2, + /obj/item/device/vending_refill/coffee = 2, + /obj/item/device/vending_refill/snack = 2, + /obj/item/device/vending_refill/cola = 2, + /obj/item/device/vending_refill/zora = 2, + /obj/item/device/vending_refill/frontiervend = 2, + /obj/item/device/vending_refill/smokes = 2, + /obj/item/device/vending_refill/meds = 2, + /obj/item/device/vending_refill/robust = 2, + /obj/item/device/vending_refill/hydro = 2, + /obj/item/device/vending_refill/cutlery = 2, + /obj/item/device/vending_refill/robo = 2, + /obj/item/device/vending_refill/battlemonsters = 2, + /obj/item/device/vending_refill/encryption = 2 ) random_itemcount = 0 light_color = COLOR_GOLD diff --git a/html/changelogs/courierbravo-shamelessjanitorbuff.yml b/html/changelogs/courierbravo-shamelessjanitorbuff.yml new file mode 100644 index 00000000000..da2259aa891 --- /dev/null +++ b/html/changelogs/courierbravo-shamelessjanitorbuff.yml @@ -0,0 +1,59 @@ +################################ +# 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: CourierBravo + +# 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: + - balance: "Doubled the refill canisters in the janitorial omni-vender" + - qol: "Renamed the omni-vender to omni-restocker, which should make it more clear as to what its for."