Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/uplink/uplink_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down