From 9df22b61478f40182557555a3383e2f8236bbeea Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:08:41 +0200 Subject: [PATCH] Adds the organ cooler to the list of orderable items from operations (#21298) Usually medical hand over their organ cooler to operations when there is an organ bounty. The price might need some adjustment, but for now it was mainly just set to be lower than the bounty, crate and handling fee aside. --- code/modules/cargo/items/medical.dm | 14 ++++++++++++++ html/changelogs/cargoorgancooler.yml | 6 ++++++ 2 files changed, 20 insertions(+) create mode 100644 html/changelogs/cargoorgancooler.yml diff --git a/code/modules/cargo/items/medical.dm b/code/modules/cargo/items/medical.dm index 413c9788002..050c6dcc042 100644 --- a/code/modules/cargo/items/medical.dm +++ b/code/modules/cargo/items/medical.dm @@ -745,3 +745,17 @@ container_type = "crate" groupable = TRUE spawn_amount = 1 + +/singleton/cargo_item/organcooler + category = "medical" + name = "organ cooler" + supplier = "zeng_hu" + description = "A sealed, cooled container to keep organs from decaying." + price = 300 + items = list( + /obj/item/storage/box/freezer/organcooler + ) + access = ACCESS_MEDICAL + container_type = "crate" + groupable = TRUE + spawn_amount = 1 diff --git a/html/changelogs/cargoorgancooler.yml b/html/changelogs/cargoorgancooler.yml new file mode 100644 index 00000000000..f2ae7334d23 --- /dev/null +++ b/html/changelogs/cargoorgancooler.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added the option to order an organ cooler through the cargo program."