From c2b572f341708c568f2a886e1f4444e7507bc75c Mon Sep 17 00:00:00 2001 From: Tractor Mann <69653259+Noot-Toot@users.noreply.github.com> Date: Mon, 9 Oct 2023 10:53:24 -0700 Subject: [PATCH] add jukebox beacon cargo order adds a jukebox beacon to order from cargo for 4000cr (CARGO_CRATE_VALUE * 20), the most expensive service crate for order from cargo now. --- monkestation/code/modules/cargo/crates/service.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/monkestation/code/modules/cargo/crates/service.dm b/monkestation/code/modules/cargo/crates/service.dm index 362ec9bc289a..467d3470cd20 100644 --- a/monkestation/code/modules/cargo/crates/service.dm +++ b/monkestation/code/modules/cargo/crates/service.dm @@ -28,3 +28,10 @@ /obj/item/plate/small = 5, /obj/item/a_gift/anything) crate_name = "Birthday Crate" + +/datum/supply_pack/service/jukebox + name = "Jukebox Beacon Crate" + desc = "Last one stolen? Broken? Burnt down in an insurance scam? then this crate is for you. Contains one Jukebox Beacon." + cost = CARGO_CRATE_VALUE * 20 //the crew shouldnt be able to just buy 15 jukeboxes all playing among us at the same time + contains = list(/obj/item/choice_beacon/jukebox) + crate_name = "jukebox beacon crate"