Adds toothpaste and toothbrush (#6317)

This pr adds toothpaste tubes and toothbrushes, you can get them in the loadout and the surface bathroom. Toothpaste works like alcohol to vaurca. A couple of vaurcan drink recipes are also added at the request of their lore writer.
This commit is contained in:
Alberyk
2019-04-20 23:02:53 +03:00
committed by Erki
parent 34bcb59a65
commit e8062bf0ec
11 changed files with 215 additions and 3 deletions
@@ -140,4 +140,16 @@
/datum/gear/battlemonsters
display_name = "battlemonsters starter deck"
path = /obj/item/battle_monsters/wrapped
path = /obj/item/battle_monsters/wrapped
/datum/gear/toothpaste
display_name = "toothpaste and toothbrush"
path = /obj/item/weapon/storage/box/toothpaste
/datum/gear/toothpaste/New()
..()
var/toothpaste = list()
toothpaste["toothpaste and blue toothbrush"] = /obj/item/weapon/storage/box/toothpaste
toothpaste["toothpaste and green toothbrush"] = /obj/item/weapon/storage/box/toothpaste/green
toothpaste["toothpaste and red toothbrush"] = /obj/item/weapon/storage/box/toothpaste/red
gear_tweaks += new/datum/gear_tweak/path(toothpaste)