mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-06 07:22:42 +00:00
Major reduction on the cost of all medical items. Reason being traitors tend not to buy medical items since they're so expensive but they also don't have access to the same kind of medical care as the crew. Also added the basic medical kits to the uplink. Costs will be adjusted if need be in the future.
114 lines
3.2 KiB
Plaintext
114 lines
3.2 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 = 1
|
|
path = /obj/item/reagent_containers/blood/OMinus
|
|
|
|
/datum/uplink_item/item/medical/sinpockets
|
|
name = "Box of Sin-Pockets"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/sinpockets
|
|
|
|
/datum/uplink_item/item/medical/ambrosiaseeds
|
|
name = "Box of 7x ambrosia seed packets"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/ambrosia
|
|
|
|
/datum/uplink_item/item/medical/clotting
|
|
name = "Clotting Medicine injector"
|
|
item_cost = 5
|
|
path = /obj/item/reagent_containers/hypospray/autoinjector/biginjector/clotting
|
|
|
|
/datum/uplink_item/item/medical/clotting_case
|
|
name = "Clotting Medicine case"
|
|
item_cost = 10
|
|
desc = "A case of three myelamine injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/storage/quickdraw/syringe_case/clotting
|
|
|
|
/datum/uplink_item/item/medical/bonemeds
|
|
name = "Bone Repair injector"
|
|
item_cost = 5
|
|
path = /obj/item/reagent_containers/hypospray/autoinjector/bonemed
|
|
|
|
/datum/uplink_item/item/medical/clonemeds
|
|
name = "Clone injector"
|
|
item_cost = 5
|
|
path = /obj/item/reagent_containers/hypospray/autoinjector/clonemed
|
|
|
|
/datum/uplink_item/item/medical/bonemeds_case
|
|
name = "Bone Repair case"
|
|
item_cost = 10
|
|
desc = "A case of three osteodaxon injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/storage/quickdraw/syringe_case/bonemed
|
|
|
|
/datum/uplink_item/item/medical/clonemeds_case
|
|
name = "Clone case"
|
|
item_cost = 10
|
|
desc = "A case of three rezadone injectors. Can rapidly remove and stow up to six injectors."
|
|
path = /obj/item/storage/quickdraw/syringe_case/clonemed
|
|
|
|
/datum/uplink_item/item/medical/ambrosiadeusseeds
|
|
name = "Box of 7x ambrosia deus seed packets"
|
|
item_cost = 5
|
|
path = /obj/item/storage/box/ambrosiadeus
|
|
|
|
/datum/uplink_item/item/medical/freezer
|
|
name = "Portable Freezer"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/freezer
|
|
|
|
/datum/uplink_item/item/medical/monkeycubes
|
|
name = "Box, Monkey Cubes"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/monkeycubes
|
|
|
|
/datum/uplink_item/item/medical/farwacubes
|
|
name = "Box, Farwa Cubes"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/monkeycubes
|
|
|
|
/datum/uplink_item/item/medical/neaeracubes
|
|
name = "Box, Neaera Cubes"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/monkeycubes/neaeracubes
|
|
|
|
/datum/uplink_item/item/medical/stokcubes
|
|
name = "Box, Stok Cubes"
|
|
item_cost = 1
|
|
path = /obj/item/storage/box/monkeycubes/stokcubes
|
|
|
|
/datum/uplink_item/item/medical/surgery
|
|
name = "Surgery kit"
|
|
item_cost = 5
|
|
path = /obj/item/storage/firstaid/surgery
|
|
|
|
/datum/uplink_item/item/medical/toxins
|
|
name = "Anti-toxins medical kit"
|
|
item_cost = 5
|
|
path = /obj/item/storage/firstaid/toxin
|
|
|
|
/datum/uplink_item/item/medical/o2
|
|
name = "oxygen deprivation medical kit"
|
|
item_cost = 5
|
|
path = /obj/item/storage/firstaid/o2
|
|
|
|
/datum/uplink_item/item/medical/fire
|
|
name = "fire medical kit"
|
|
item_cost = 5
|
|
path = /obj/item/storage/firstaid/fire
|
|
|
|
/datum/uplink_item/item/medical/adv
|
|
name = "advanced medical kit"
|
|
item_cost = 10
|
|
path = /obj/item/storage/firstaid/adv
|
|
|
|
/datum/uplink_item/item/medical/combat
|
|
name = "Combat medical kit"
|
|
item_cost = 20
|
|
path = /obj/item/storage/firstaid/combat
|