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

@@ -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)