From 1fc25c097b9ffe0fd736f528303519740c062ff9 Mon Sep 17 00:00:00 2001 From: Gristlebee <56049844+Gristlebee@users.noreply.github.com> Date: Sat, 1 Jun 2024 08:55:45 -0700 Subject: [PATCH] Granularizes defib crate at the outpost (#3040) ## About The Pull Request Defib crates now contain a single defib, and desc and price changed accordingly. ## Why It's Good For The Game Fine control over your orders are good, and you can always buy that second defib anyways if you really need it. ## Changelog :cl: tweak: Defib crate now contains a single defib, priced 750 /:cl: --- code/modules/cargo/packs/medical.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/cargo/packs/medical.dm b/code/modules/cargo/packs/medical.dm index d49e9760da814..08b576937138c 100644 --- a/code/modules/cargo/packs/medical.dm +++ b/code/modules/cargo/packs/medical.dm @@ -61,10 +61,9 @@ /datum/supply_pack/medical/defibs name = "Defibrillator Crate" - desc = "Contains two defibrillators for bringing the recently deceased back to life." - cost = 1500 - contains = list(/obj/item/defibrillator/loaded, - /obj/item/defibrillator/loaded) + desc = "Contains a defibrillator for bringing the recently deceased back to life." + cost = 750 + contains = list(/obj/item/defibrillator/loaded) crate_name = "defibrillator crate" /datum/supply_pack/medical/surgery