mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
Gives the Psychologist some pills. (#50211)
* Creates pill and pill bottle types for the psych, puts them in their backpack. * Update code/game/objects/items/storage/firstaid.dm Co-Authored-By: trollbreeder <trollbreeder@users.noreply.github.com> * Update code/game/objects/items/storage/firstaid.dm Co-Authored-By: trollbreeder <trollbreeder@users.noreply.github.com> * Update code/modules/reagents/reagent_containers/pill.dm Co-Authored-By: trollbreeder <trollbreeder@users.noreply.github.com> * Update pill.dm Removes an unneeded blank line. * Cleans up a needless comma and space. * wording change for happiness bottle Co-authored-by: trollbreeder <trollbreeder@users.noreply.github.com>
This commit is contained in:
@@ -468,3 +468,28 @@
|
||||
/obj/item/storage/pill_bottle/floorpill/full/PopulateContents()
|
||||
for(var/i in 1 to 7)
|
||||
new /obj/item/reagent_containers/pill/floorpill(src)
|
||||
|
||||
///////////////////////////////////////// Psychologist inventory pillbottles
|
||||
/obj/item/storage/pill_bottle/happinesspsych
|
||||
name = "happiness pills"
|
||||
desc = "Contains pills used as a last resort means to temporarily stabilize depression and anxiety. WARNING: side effects may include slurred speech, drooling, and severe addiction."
|
||||
|
||||
/obj/item/storage/pill_bottle/happinesspsych/PopulateContents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/reagent_containers/pill/happinesspsych(src)
|
||||
|
||||
/obj/item/storage/pill_bottle/lsdpsych
|
||||
name = "mindbreaker toxin pills"
|
||||
desc = "!FOR THERAPEUTIC USE ONLY! Contains pills used to alleviate the symptoms of Reality Dissociation Syndrome."
|
||||
|
||||
/obj/item/storage/pill_bottle/lsdpsych/PopulateContents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/reagent_containers/pill/lsdpsych(src)
|
||||
|
||||
/obj/item/storage/pill_bottle/paxpsych
|
||||
name = "pax pills"
|
||||
desc = "Contains pills used to temporarily pacify patients that are deemed a harm to themselves or others."
|
||||
|
||||
/obj/item/storage/pill_bottle/paxpsych/PopulateContents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/reagent_containers/pill/paxpsych(src)
|
||||
|
||||
Reference in New Issue
Block a user