From 91a71ea2b88ffe77242865fb52aa8d0e0033a2d2 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 26 Sep 2023 21:48:20 +0200 Subject: [PATCH] [MIRROR] Adds a candle box crate [MDB IGNORE] (#23933) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Adds a candle box crate (#78593) ## About The Pull Request Adds a candle box crate that you can order. 🕯️ ## Why It's Good For The Game The chaplain only starts with a few boxes with a RNG way (scouring maintenance) to acquire any more ## Changelog :cl: add: Added a candle box crate for all your candle needs! /:cl: * Adds a candle box crate --------- Co-authored-by: admeeer --- code/modules/cargo/packs/general.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/cargo/packs/general.dm b/code/modules/cargo/packs/general.dm index 5ebdd5087a8..fa7a3bfa374 100644 --- a/code/modules/cargo/packs/general.dm +++ b/code/modules/cargo/packs/general.dm @@ -221,6 +221,13 @@ /obj/item/clothing/under/misc/burial = 2, ) crate_name = "religious supplies crate" + +/datum/supply_pack/misc/candles_bulk + name = "Candle Box Crate" + desc = "Keep your local chapel lit with three candle boxes!" + cost = CARGO_CRATE_VALUE * 1.5 + contains = list(/obj/item/storage/fancy/candle_box = 3) + crate_name = "candle box crate" /datum/supply_pack/misc/toner name = "Toner Crate"