mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-26 18:12:40 +00:00
Adds prescription to loadout (#11651)
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user