From 8c3f2bdf64323909d084262370dbf1ea5e88a28a Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:46:06 -0700 Subject: [PATCH] Hypospray & hypokit added to the cargo company listings. (#632) ## About The Pull Request Adds hypospray kits and hyposprays to cargo. ## Why It's Good For The Game While looking at the cargo offerings, I just had a thought. Why the heck aren't hyposprays buyable but you can get a full set of surgical tools for 200 credits. Anyway, adds something else for medical to spend money on that isn't a gun. Also flavor. ## Changelog :cl: add: Hyposprays and empty Hypospray kits can now be bought from Deforest. /:cl: --------- Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> --- .../code/armament_datums/deforest_medical.dm | 11 +++++++++++ .../modules/hyposprays/code/hypospray_kits.dm | 1 + 2 files changed, 12 insertions(+) diff --git a/modular_skyrat/modules/company_imports/code/armament_datums/deforest_medical.dm b/modular_skyrat/modules/company_imports/code/armament_datums/deforest_medical.dm index d6e5be0049e..7fb8c498183 100644 --- a/modular_skyrat/modules/company_imports/code/armament_datums/deforest_medical.dm +++ b/modular_skyrat/modules/company_imports/code/armament_datums/deforest_medical.dm @@ -152,6 +152,17 @@ item_type = /obj/item/gun/medbeam/afad cost = PAYCHECK_COMMAND * 5 +//Bubber Changes +/datum/armament_entry/company_import/deforest/equipment/hypospray_case + item_type = /obj/item/storage/hypospraykit + cost = PAYCHECK_LOWER * 2 + +/datum/armament_entry/company_import/deforest/equipment/hypospray + item_type = /obj/item/hypospray/mkii + cost = PAYCHECK_LOWER * 2 + +//End Bubber Changes + // Modsuit Modules from the medical category, here instead of in Nakamura because nobody buys from this company /datum/armament_entry/company_import/deforest/medical_modules diff --git a/modular_skyrat/modules/hyposprays/code/hypospray_kits.dm b/modular_skyrat/modules/hyposprays/code/hypospray_kits.dm index 25565fc7e57..1f5c3d37d3f 100644 --- a/modular_skyrat/modules/hyposprays/code/hypospray_kits.dm +++ b/modular_skyrat/modules/hyposprays/code/hypospray_kits.dm @@ -121,3 +121,4 @@ /obj/item/storage/box/hypospray/PopulateContents() for(var/i in 1 to 4) new /obj/item/storage/hypospraykit/empty(src) +