From d8a8e895039769ee14e251b98cbbfaa4c2ce1c47 Mon Sep 17 00:00:00 2001 From: Jamie D <993128+JamieD1@users.noreply.github.com> Date: Thu, 16 Jun 2022 00:39:24 +0100 Subject: [PATCH] Balances Stimulants --- code/modules/uplink/uplink_items.dm | 2 +- .../code/modules/reagents/reagent_containers/hypospray.dm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/uplink/uplink_items.dm b/code/modules/uplink/uplink_items.dm index d797a6424a19..742060b4a433 100644 --- a/code/modules/uplink/uplink_items.dm +++ b/code/modules/uplink/uplink_items.dm @@ -1584,7 +1584,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) desc = "Stimpacks, the tool of many great heroes, make you nearly immune to stuns and knockdowns for about \ 5 minutes after injection." item = /obj/item/reagent_containers/hypospray/medipen/stimpack/large // Yogs -- Stimpack change - cost = 5 + cost = 8 surplus = 90 /datum/uplink_item/device_tools/medkit diff --git a/yogstation/code/modules/reagents/reagent_containers/hypospray.dm b/yogstation/code/modules/reagents/reagent_containers/hypospray.dm index 4dfcd25b1e8a..a3f7fa0ef8de 100644 --- a/yogstation/code/modules/reagents/reagent_containers/hypospray.dm +++ b/yogstation/code/modules/reagents/reagent_containers/hypospray.dm @@ -16,12 +16,12 @@ /obj/item/reagent_containers/hypospray/medipen/stimpack/large name = "stimpack injector" - desc = "Contains two heavy doses of stimulants." + desc = "Contains three heavy doses of stimulants." icon = 'yogstation/icons/obj/syringe.dmi' icon_state = "stimpakpen" - volume = 50 + volume = 75 amount_per_transfer_from_this = 25 - list_reagents = list(/datum/reagent/medicine/stimulants = 50) + list_reagents = list(/datum/reagent/medicine/stimulants = 75) /obj/item/reagent_containers/hypospray/medipen/stimpack/large/update_icon() if(reagents.total_volume > 25)