adds drinks from yw

This commit is contained in:
SplinterGP
2020-06-12 20:05:09 -03:00
parent 7f753cd412
commit c8b4b944ec
6 changed files with 52 additions and 7 deletions
@@ -1696,9 +1696,9 @@
glass_name = "Ent's Draught"
glass_desc = "You can almost smell the tranquility emanating from this."
/datum/reagent/drink/strawberrylovepotion //ywedit
name = "Strawberry Love Potion" //ywedit
id = "strawberrylovepotion" //ywedit
/datum/reagent/drink/lovepotion
name = "Love Potion"
id = "lovepotion"
description = "Creamy strawberries and sugar, simple and sweet."
taste_description = "strawberries and cream"
color = "#fc8a8a" // rgb(252, 138, 138)
@@ -0,0 +1,29 @@
/datum/reagent/drink/lovepotion_yw
name = "Strawberry Love Potion"
id = "strawberrylovepotion"
description = "Creamy strawberries and sugar, simple and sweet."
taste_description = "strawberries and cream"
color = "#fc8a8a" // rgb(252, 138, 138)
glass_name = "Love Potion"
glass_desc = "Love me tender, love me sweet."
/datum/reagent/ethanol/wormblood
name = "Worm Blood"
id = "wormblood"
description = "Who had the grand idea to bottle THE BLOOD OF A WORM."
taste_description = "Wriggly cave fungus"
color = "#827A00"
strength = 30
druggy = 10
glass_name = "Worm blood"
glass_desc = "Who had the grand idea to bottle THE BLOOD OF A WORM."
glass_icon_state = "wormblood"
glass_center_of_mass = list("x"=16, "y"=8)
glass_icon_file = 'icons/obj/drinks_yw.dmi'
+4 -4
View File
@@ -2240,10 +2240,10 @@
catalysts = list("enzyme" = 10) //10u enzyme so it requires more than is usually added. Stops overlap with wine recipe
result_amount = 5
/datum/chemical_reaction/drinks/strawberrylovepotion //ywedit start
name = "Strawberry Love Potion"
id = "strawberrylovepotion"
result = "strawberrylovepotion" //ywedit end
/datum/chemical_reaction/drinks/lovepotion
name = "Love Potion"
id = "lovepotion"
result = "lovepotion"
required_reagents = list("cream" = 1, "berryjuice" = 1, "sugar" = 1)
result_amount = 3
@@ -0,0 +1,14 @@
/datum/chemical_reaction/drinks/lovepotion_yw
name = "Strawberry Love Potion"
id = "strawberrylovepotion"
result = "strawberrylovepotion"
required_reagents = list("cream" = 1, "berryjuice" = 1, "sugar" = 1)
result_amount = 3
/datum/chemical_reaction/drinks/wormblood
name = "Wormblood"
id = "wormblood"
result = "wormblood"
required_reagents = list("booger" = 1, "psilocybin" = 1)
result_amount = 2