Adds prescription to loadout (#11651)

This commit is contained in:
Casper3667
2021-04-21 12:24:37 +02:00
committed by GitHub
parent 53386dc1c8
commit fde83931df
4 changed files with 101 additions and 6 deletions

View File

@@ -241,7 +241,7 @@ obj/item/storage/pill_bottle/butazoline
starts_with = list(/obj/item/reagent_containers/pill/perconol = 7)
/obj/item/storage/pill_bottle/minaphobin
name = "bottle of 5u Minaphobin pills"
name = "bottle of 2u Minaphobin pills"
desc = "Contains pills used to treat anxiety disorders and depression."
starts_with = list(/obj/item/reagent_containers/pill/minaphobin = 7)
@@ -249,3 +249,41 @@ obj/item/storage/pill_bottle/butazoline
name = "bottle of 15u RMT pills"
desc = "Contains pills used to remedy the effects of prolonged zero-gravity adaptations. Do not exceed 30u dosage."
starts_with = list(/obj/item/reagent_containers/pill/rmt = 10) // 10x 15u RMT pills will last 4 hours.
/obj/item/storage/pill_bottle/corophenidate
name = "bottle of 2u Corophenidate pills"
desc = "Contains pills used to improve the ability to concentrate."
starts_with = list(/obj/item/reagent_containers/pill/corophenidate = 3)
/obj/item/storage/pill_bottle/emoxanyl
name = "bottle of 2u Emoxanyl pills"
desc = "Contains pills used to treat anxiety disorders, depression and epilepsy."
starts_with = list(/obj/item/reagent_containers/pill/emoxanyl = 3)
/obj/item/storage/pill_bottle/minaphobin/small
starts_with = list(/obj/item/reagent_containers/pill/minaphobin = 3)
/obj/item/storage/pill_bottle/nerospectan
name = "bottle of 2u Nerospectan pills"
desc = "Contains pills used to treat a large variety of disorders including tourette, depression, anxiety and psychoses."
starts_with = list(/obj/item/reagent_containers/pill/nerospectan = 3)
/obj/item/storage/pill_bottle/neurapan
name = "bottle of 2u Neurapan pills"
desc = "Contains pills used to treat large variety of disorders including tourette, depression, anxiety and psychoses."
starts_with = list(/obj/item/reagent_containers/pill/neurapan= 3)
/obj/item/storage/pill_bottle/neurostabin
name = "bottle of 2u Neurostabin pills"
desc = "Contains pills used to treat psychoses and muscle weakness."
starts_with = list(/obj/item/reagent_containers/pill/neurostabin = 3)
/obj/item/storage/pill_bottle/orastabin
name = "bottle of 2u Orastabin pills"
desc = "Contains pills used to treat anxiety disorders and speech impediments."
starts_with = list(/obj/item/reagent_containers/pill/orastabin = 3)
/obj/item/storage/pill_bottle/parvosil
name = "bottle of 2u Parvosil pills"
desc = "Contains pills used to treat anxiety disorders such as phobias and social anxiety."
starts_with = list(/obj/item/reagent_containers/pill/parvosil = 3)

View File

@@ -112,4 +112,19 @@
cards["business card, rounded"] = /obj/item/paper/business_card/rounded
cards["business card, glass"] = /obj/item/paper/business_card/glass
gear_tweaks += new /datum/gear_tweak/path(cards)
gear_tweaks += new /datum/gear_tweak/paper_data()
gear_tweaks += new /datum/gear_tweak/paper_data()
/datum/gear/utility/pills
display_name = "pill bottle selection"
description = "A selection of prescription pill. NOTICE: most of these are considered contraband if possessed without the relevant prescription noted in the medical records."
path = /obj/item/reagent_containers/pill
/datum/gear/utility/pills/New()
..()
var/list/pills = list()
pills["Emoxanyl"] = /obj/item/storage/pill_bottle/emoxanyl
pills["Minaphobin"] = /obj/item/storage/pill_bottle/minaphobin/small
pills["Neurostabin "] = /obj/item/storage/pill_bottle/neurostabin
pills["Orastabin"] = /obj/item/storage/pill_bottle/orastabin
pills["Parvosil"] = /obj/item/storage/pill_bottle/parvosil
gear_tweaks += new /datum/gear_tweak/path(pills)

View File

@@ -134,16 +134,52 @@
reagents_to_add = list(/decl/reagent/mortaphenyl = 10)
/obj/item/reagent_containers/pill/corophenidate
name = "5u Corophenidate Pill"
name = "2u Corophenidate Pill"
desc = "Improves the ability to concentrate."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/corophenidate = 5)
reagents_to_add = list(/decl/reagent/mental/corophenidate = 2)
/obj/item/reagent_containers/pill/emoxanyl
name = "2u Emoxanyl Pill"
desc = "Used to treat anxiety disorders, depression and epilepsy."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/emoxanyl = 2)
/obj/item/reagent_containers/pill/minaphobin
name = "5u Minaphobin Pill"
name = "2u Minaphobin Pill"
desc = "Used to treat anxiety disorders and depression."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/minaphobin = 5)
reagents_to_add = list(/decl/reagent/mental/minaphobin = 2)
/obj/item/reagent_containers/pill/nerospectan
name = "2u Nerospectan Pill"
desc = "Used to treat a large variety of disorders including tourettes, depression, anxiety and psychosis."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/nerospectan = 2)
/obj/item/reagent_containers/pill/neurapan
name = "2u Neurapan Pill"
desc = "Used to treat a large variety of disorders including tourettes, depression, anxiety and psychosis."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/neurapan = 2)
/obj/item/reagent_containers/pill/neurostabin
name = "2u Neurostabin Pill"
desc = "Used to treat psychosis and muscle weakness."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/neurostabin = 2)
/obj/item/reagent_containers/pill/orastabin
name = "2u Orastabin Pill"
desc = "Used to treat anxiety disorders and speech impediments."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/orastabin = 2)
/obj/item/reagent_containers/pill/parvosil
name = "2u Parvosil Pill"
desc = "Used to treat anxiety disorders such as phobias and social anxiety."
icon_state = "pill8"
reagents_to_add = list(/decl/reagent/mental/parvosil = 2)
/obj/item/reagent_containers/pill/inaprovaline
name = "10u Inaprovaline Pill"