Grapes, wine, mint, tea, coffee (#12485)

This commit is contained in:
Xxxxyobdab
2021-09-22 22:47:11 +02:00
committed by GitHub
parent 25209a31e3
commit 3dac12ad68
14 changed files with 260 additions and 3 deletions
@@ -370,6 +370,54 @@
taste_description = "bitterness"
taste_mult = 1.3
/decl/reagent/nutriment/coffeegrounds
name = "Coffee Grounds"
description = "Enjoy the great taste of coffee."
reagent_state = SOLID
nutriment_factor = 1
color = "#5c4a11"
taste_description = "earthy gritty coffee"
taste_mult = 0.4
condiment_name = "ground coffee"
condiment_icon_state = "coffee"
condiment_center_of_mass = list("x"=16, "y"=8)
/decl/reagent/nutriment/coffeegrounds/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed, var/datum/reagents/holder)
..()
if(alien != IS_DIONA)
M.dizziness = max(0, M.dizziness - 5)
M.drowsiness = max(0, M.drowsiness - 3)
M.sleeping = max(0, M.sleeping - 2)
M.intoxication = max(0, (M.intoxication - (removed*0.25)))
//copied from coffee
/decl/reagent/nutriment/coffeegrounds/overdose(var/mob/living/carbon/M, var/alien, var/datum/reagents/holder)
if(alien != IS_DIONA)
M.make_jittery(5)
//copied from coffee
/decl/reagent/nutriment/teagrounds
name = "Tea Grounds"
description = "Enjoy the great taste of tea."
reagent_state = SOLID
nutriment_factor = 1
color = "#4fd24d"
taste_description = "potent gritty tea"
taste_mult = 0.4
condiment_name = "ground tea"
condiment_icon_state = "tea"
condiment_center_of_mass = list("x"=16, "y"=8)
var/last_taste_time = -100
/decl/reagent/nutriment/teagrounds/affect_blood(var/mob/living/carbon/M, var/alien, var/removed, var/datum/reagents/holder)
if(alien == IS_DIONA)
if(last_taste_time + 800 < world.time) // Not to spam message
to_chat(M, "<span class='danger'>Your body withers as you feel slight pain throughout.</span>")
last_taste_time = world.time
metabolism = REM * 0.33
M.adjustToxLoss(1.5 * removed)
//Copied from tea. though i feel it should be stronger as its not diluted with water
/decl/reagent/nutriment/soysauce
name = "Soy Sauce"
description = "A salty sauce made from the soy plant."
@@ -787,6 +835,15 @@
glass_name = "glass of grape juice"
glass_desc = "It's grrrrrape!"
/decl/reagent/drink/whitegrapejuice
name = "White Grape Juice"
description = "It's tart grape!"
color = "#863333"
taste_description = "tarty grapes"
glass_icon_state = "glass_clear"
glass_name = "glass of white grape juice"
glass_desc = "It's tart grape!"
/decl/reagent/drink/lemonjuice
name = "Lemon Juice"
description = "This juice is VERY sour."
@@ -4064,6 +4121,28 @@
glass_desc = "A very classy looking drink."
glass_center_of_mass = list("x"=15, "y"=7)
/decl/reagent/alcohol/blushwine
name = "Blush Wine"
description = "A premium alchoholic beverage made from distilled grape juice."
color = "#e5d272"
strength = 10
taste_description = "delightful sweetness"
glass_icon_state = "blushwineglass"
glass_name = "glass of blush wine"
glass_desc = "A very classy looking drink."
glass_center_of_mass = list("x"=15, "y"=7)
/decl/reagent/alcohol/melonwine
name = "Melon Wine"
description = "A fruity alchoholic beverage made from wine and melon liquor."
color = "#11cf39" // rgb: 126, 64, 67
strength = 20
taste_description = "mouth watering fruity sweetness"
glass_icon_state = "melonwine"
glass_name = "glass of Melon-Wine"
glass_desc = "A very classy looking drink."
glass_center_of_mass = list("x"=15, "y"=7)
/decl/reagent/alcohol/messa_mead
name = "Messa's Mead"
description = "A sweet alcoholic adhomian drink. Produced with Messa's tears and earthen-root."
@@ -4784,7 +4863,7 @@
strength = 30
color = "#FFF1B2"
taste_description = "pineapple, coconut, and a hint of the ocean"
glass_icon_state = "pina_colada"
glass_name = "glass of pina colada"
glass_desc = "Prepared just like in Silversun."
@@ -4809,7 +4888,7 @@
glass_icon_state = "spacecola"
glass_name = "glass of diet cola"
glass_desc = "Space Cola! Now in diet!"
glass_desc = "Space Cola! Now in diet!"
/decl/reagent/drink/milk/chocolate
name = "Chocolate milk"
@@ -1747,6 +1747,28 @@
catalysts = list(/decl/reagent/enzyme = 5)
result_amount = 10
/datum/chemical_reaction/whitewine
name = "White Wine"
id = "whitewine"
result = /decl/reagent/alcohol/whitewine
required_reagents = list(/decl/reagent/drink/whitegrapejuice = 5)
catalysts = list(/decl/reagent/enzyme = 5)
result_amount = 5
/datum/chemical_reaction/blushwine
name = "Blush Wine"
id = "blushwine"
result = /decl/reagent/alcohol/blushwine
required_reagents = list(/decl/reagent/alcohol/whitewine = 1, /decl/reagent/alcohol/wine = 1)
result_amount = 2
/datum/chemical_reaction/melonwine
name = "Melon Wine"
id = "melonwine"
result = /decl/reagent/alcohol/melonwine
required_reagents = list(/decl/reagent/alcohol/wine = 1, /decl/reagent/alcohol/melonliquor = 1)
result_amount = 2
/datum/chemical_reaction/pwine
name = "Poison Wine"
id = "pwine"
@@ -3347,6 +3369,20 @@
//Coffee expansion
//=======================
/datum/chemical_reaction/drink/coffee
name = "Latte"
id = "latte"
result = /decl/reagent/drink/coffee
required_reagents = list(/decl/reagent/drink/coffee/espresso = 5, /decl/reagent/water = 5)
result_amount = 10
/datum/chemical_reaction/drink/espresso
name = "Latte"
id = "latte"
result = /decl/reagent/drink/coffee/espresso
required_reagents = list(/decl/reagent/nutriment/coffeegrounds = 1, /decl/reagent/water = 5)
result_amount = 5
/datum/chemical_reaction/caramelisation
name = "Caramelised Sugar"
result = /decl/reagent/nutriment/caramel
@@ -3398,6 +3434,13 @@
result_amount = 5
mix_message = "The solution takes on an orange hue and the aroma of pumpkin spice."
/datum/chemical_reaction/mintsyrup
name = "Mint Syrup"
id = "mintsyrup"
result = /decl/reagent/drink/mintsyrup
required_reagents = list(/decl/reagent/nutriment/mint = 2, /decl/reagent/drink/syrup_simple = 3)
result_amount = 5
/datum/chemical_reaction/drink/cuba_libre
name = "Cuba Libre"
id = "cubalibre"