mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-28 02:52:28 +00:00
* Medicine Tweaks Mostly, these are based off of notes I have been collecting over the past year or so, and I just got the motivation to actually act on those notes. - Adminordrazine buffed again - Myelamine buffed slightly, to reduce the chances of a standard clotting injector failing to treat IB - Bicaridine Overdose slightly more effective at treating IB - Inaprovaline metabolizes slower, to make it more useful in its role of patient stabilization - Bone repair autoinjector changed to a 5u autoinjector with 5u of osteodaxon. Considering how osteodaxon works, 10u is overkill and leaves the patient feeling the side effects for longer than they should. - Clone loss autoinjector added, patterned off the new bone repair autoinjector. 5u of Rezadone to deal with clone loss. Added to uplink as well as random unknown autoinjector spawners. * Adjusted percentages and comments * More Tweaks
94 lines
2.9 KiB
Plaintext
94 lines
2.9 KiB
Plaintext
/**********
|
|
* Medical *
|
|
**********/
|
|
/datum/uplink_item/item/medical
|
|
category = /datum/uplink_category/medical
|
|
|
|
/datum/uplink_item/item/medical/onegativeblood
|
|
name = "O- Blood Pack"
|
|
item_cost = 5
|
|
path = /obj/item/weapon/reagent_containers/blood/OMinus
|
|
|
|
/datum/uplink_item/item/medical/sinpockets
|
|
name = "Box of Sin-Pockets"
|
|
item_cost = 5
|
|
path = /obj/item/weapon/storage/box/sinpockets
|
|
|
|
/datum/uplink_item/item/medical/ambrosiaseeds
|
|
name = "Box of 7x ambrosia seed packets"
|
|
item_cost = 5
|
|
path = /obj/item/weapon/storage/box/ambrosia
|
|
|
|
/datum/uplink_item/item/medical/clotting
|
|
name = "Clotting Medicine injector"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting
|
|
|
|
/datum/uplink_item/item/medical/clotting_case
|
|
name = "Clotting Medicine case"
|
|
item_cost = 20
|
|
desc = "A case of three myelamine injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/weapon/storage/quickdraw/syringe_case/clotting
|
|
|
|
/datum/uplink_item/item/medical/bonemeds
|
|
name = "Bone Repair injector"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/bonemed
|
|
|
|
/datum/uplink_item/item/medical/clonemeds
|
|
name = "Clone injector"
|
|
item_cost = 15
|
|
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/clonemed
|
|
|
|
/datum/uplink_item/item/medical/bonemeds_case
|
|
name = "Bone Repair case"
|
|
item_cost = 20
|
|
desc = "A case of three osteodaxon injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/weapon/storage/quickdraw/syringe_case/bonemed
|
|
|
|
/datum/uplink_item/item/medical/clonemeds_case
|
|
name = "Clone case"
|
|
item_cost = 30
|
|
desc = "A case of three rezadone injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/weapon/storage/quickdraw/syringe_case/clonemed
|
|
|
|
/datum/uplink_item/item/medical/ambrosiadeusseeds
|
|
name = "Box of 7x ambrosia deus seed packets"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/ambrosiadeus
|
|
|
|
/datum/uplink_item/item/medical/freezer
|
|
name = "Portable Freezer"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/freezer
|
|
|
|
/datum/uplink_item/item/medical/monkeycubes
|
|
name = "Box, Monkey Cubes"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/monkeycubes
|
|
|
|
/datum/uplink_item/item/medical/farwacubes
|
|
name = "Box, Farwa Cubes"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/monkeycubes
|
|
|
|
/datum/uplink_item/item/medical/neaeracubes
|
|
name = "Box, Neaera Cubes"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/monkeycubes/neaeracubes
|
|
|
|
/datum/uplink_item/item/medical/stokcubes
|
|
name = "Box, Stok Cubes"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/monkeycubes/stokcubes
|
|
|
|
/datum/uplink_item/item/medical/surgery
|
|
name = "Surgery kit"
|
|
item_cost = 45
|
|
path = /obj/item/weapon/storage/firstaid/surgery
|
|
|
|
/datum/uplink_item/item/medical/combat
|
|
name = "Combat medical kit"
|
|
item_cost = 60
|
|
path = /obj/item/weapon/storage/firstaid/combat
|