|
|
|
@@ -3,6 +3,8 @@
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/////////////////////// DRINKS BELOW, Beer is up there though, along with cola. Cap'n Pete's Cuban Spiced Rum////////////////////////////////
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/datum/reagent/water/
|
|
|
|
|
hydration = 10 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/orangejuice
|
|
|
|
|
name = "Orange Juice"
|
|
|
|
@@ -12,6 +14,7 @@
|
|
|
|
|
glass_icon_state = "glass_orange"
|
|
|
|
|
glass_name = "glass of orange juice"
|
|
|
|
|
glass_desc = "Vitamins! Yay!"
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
pH = 3.3
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/orangejuice/on_mob_life(mob/living/carbon/M)
|
|
|
|
@@ -28,6 +31,7 @@
|
|
|
|
|
glass_icon_state = "glass_red"
|
|
|
|
|
glass_name = "glass of tomato juice"
|
|
|
|
|
glass_desc = "Are you sure this is tomato juice?"
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tomatojuice/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(M.getFireLoss() && prob(20))
|
|
|
|
@@ -44,6 +48,7 @@
|
|
|
|
|
glass_name = "glass of lime juice"
|
|
|
|
|
glass_desc = "A glass of sweet-sour lime juice."
|
|
|
|
|
pH = 2.2
|
|
|
|
|
hydration = 3 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/limejuice/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(M.getToxLoss() && prob(20))
|
|
|
|
@@ -59,6 +64,7 @@
|
|
|
|
|
glass_icon_state = "carrotjuice"
|
|
|
|
|
glass_name = "glass of carrot juice"
|
|
|
|
|
glass_desc = "It's just like a carrot but without crunching."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/carrotjuice/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_blurriness(-1)
|
|
|
|
@@ -80,6 +86,7 @@
|
|
|
|
|
glass_icon_state = "berryjuice"
|
|
|
|
|
glass_name = "glass of berry juice"
|
|
|
|
|
glass_desc = "Berry juice. Or maybe it's jam. Who cares?"
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/applejuice
|
|
|
|
|
name = "Apple Juice"
|
|
|
|
@@ -87,6 +94,7 @@
|
|
|
|
|
color = "#ECFF56" // rgb: 236, 255, 86
|
|
|
|
|
taste_description = "apples"
|
|
|
|
|
pH = 3.2 // ~ 2.7 -> 3.7
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/poisonberryjuice
|
|
|
|
|
name = "Poison Berry Juice"
|
|
|
|
@@ -96,6 +104,7 @@
|
|
|
|
|
glass_icon_state = "poisonberryjuice"
|
|
|
|
|
glass_name = "glass of berry juice"
|
|
|
|
|
glass_desc = "Berry juice. Or maybe it's poison. Who cares?"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/poisonberryjuice/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjustToxLoss(1, 0)
|
|
|
|
@@ -110,6 +119,7 @@
|
|
|
|
|
glass_icon_state = "glass_red"
|
|
|
|
|
glass_name = "glass of watermelon juice"
|
|
|
|
|
glass_desc = "A glass of watermelon juice."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/lemonjuice
|
|
|
|
|
name = "Lemon Juice"
|
|
|
|
@@ -120,6 +130,7 @@
|
|
|
|
|
glass_name = "glass of lemon juice"
|
|
|
|
|
glass_desc = "Sour..."
|
|
|
|
|
pH = 2
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/strawberryjuice
|
|
|
|
|
name = "Strawberry Juice"
|
|
|
|
@@ -128,6 +139,7 @@
|
|
|
|
|
taste_description = "strawberry"
|
|
|
|
|
glass_name = "glass of strawberry juice"
|
|
|
|
|
glass_desc = "Refreshing seasonal summer drink."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/banana
|
|
|
|
|
name = "Banana Juice"
|
|
|
|
@@ -137,6 +149,7 @@
|
|
|
|
|
glass_icon_state = "banana"
|
|
|
|
|
glass_name = "glass of banana juice"
|
|
|
|
|
glass_desc = "The raw essence of a banana. HONK."
|
|
|
|
|
hydration = 1 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/banana/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if((ishuman(M) && M.job == "Clown") || ismonkey(M))
|
|
|
|
@@ -200,6 +213,7 @@
|
|
|
|
|
description = "The juice of a bunch of grapes. Guaranteed non-alcoholic."
|
|
|
|
|
color = "#290029" // dark purple
|
|
|
|
|
taste_description = "grape soda"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/milk
|
|
|
|
|
name = "Milk"
|
|
|
|
@@ -210,6 +224,7 @@
|
|
|
|
|
glass_name = "milk drum"
|
|
|
|
|
glass_desc = "White and nutritious goodness!"
|
|
|
|
|
pH = 6.5
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/milk/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(HAS_TRAIT(M, TRAIT_CALCIUM_HEALER))
|
|
|
|
@@ -231,6 +246,7 @@
|
|
|
|
|
glass_icon_state = "glass_white"
|
|
|
|
|
glass_name = "glass of soy milk"
|
|
|
|
|
glass_desc = "White and nutritious soy goodness!"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/soymilk/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(M.getBruteLoss() && prob(20))
|
|
|
|
@@ -247,6 +263,7 @@
|
|
|
|
|
glass_icon_state = "glass_white"
|
|
|
|
|
glass_name = "glass of coconut milk"
|
|
|
|
|
glass_desc = "White and nutritious goodness!"
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/coconutmilk/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(M.getBruteLoss() && prob(20))
|
|
|
|
@@ -262,6 +279,7 @@
|
|
|
|
|
glass_icon_state = "glass_white"
|
|
|
|
|
glass_name = "glass of cream"
|
|
|
|
|
glass_desc = "Ewwww..."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/cream/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(M.getBruteLoss() && prob(20))
|
|
|
|
@@ -279,6 +297,7 @@
|
|
|
|
|
glass_icon_state = "glass_brown"
|
|
|
|
|
glass_name = "glass of coffee"
|
|
|
|
|
glass_desc = "Don't drop it, or you'll send scalding liquid and glass shards everywhere."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/coffee/overdose_process(mob/living/M)
|
|
|
|
|
M.Jitter(5)
|
|
|
|
@@ -304,6 +323,7 @@
|
|
|
|
|
glass_icon_state = "teaglass"
|
|
|
|
|
glass_name = "glass of tea"
|
|
|
|
|
glass_desc = "Drinking it from here would not seem right."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tea/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-2)
|
|
|
|
@@ -324,6 +344,7 @@
|
|
|
|
|
glass_icon_state = "lemonpitcher"
|
|
|
|
|
glass_name = "pitcher of lemonade"
|
|
|
|
|
glass_desc = "This drink leaves you feeling nostalgic for some reason."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tea/arnold_palmer
|
|
|
|
|
name = "Arnold Palmer"
|
|
|
|
@@ -335,6 +356,7 @@
|
|
|
|
|
glass_icon_state = "arnold_palmer"
|
|
|
|
|
glass_name = "Arnold Palmer"
|
|
|
|
|
glass_desc = "You feel like taking a few golf swings after a few swigs of this."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tea/arnold_palmer/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(prob(5))
|
|
|
|
@@ -351,6 +373,7 @@
|
|
|
|
|
glass_icon_state = "icedcoffeeglass"
|
|
|
|
|
glass_name = "iced coffee"
|
|
|
|
|
glass_desc = "A drink to perk you up and refresh you!"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/icecoffee/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-5)
|
|
|
|
@@ -370,6 +393,7 @@
|
|
|
|
|
glass_icon_state = "icedteaglass"
|
|
|
|
|
glass_name = "iced tea"
|
|
|
|
|
glass_desc = "All natural, antioxidant-rich flavour sensation."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/icetea/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-2)
|
|
|
|
@@ -389,6 +413,7 @@
|
|
|
|
|
glass_icon_state = "glass_brown"
|
|
|
|
|
glass_name = "glass of Space Cola"
|
|
|
|
|
glass_desc = "A glass of refreshing Space Cola."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/space_cola/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.drowsyness = max(0,M.drowsyness-5)
|
|
|
|
@@ -404,6 +429,7 @@
|
|
|
|
|
glass_icon_state = "nuka_colaglass"
|
|
|
|
|
glass_name = "glass of Nuka Cola"
|
|
|
|
|
glass_desc = "Don't cry, Don't raise your eye, It's only nuclear wasteland."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/nuka_cola/on_mob_metabolize(mob/living/L)
|
|
|
|
|
..()
|
|
|
|
@@ -448,6 +474,7 @@
|
|
|
|
|
glass_icon_state = "dr_gibb_glass"
|
|
|
|
|
glass_name = "glass of Dr. Gibb"
|
|
|
|
|
glass_desc = "Dr. Gibb. Not as dangerous as the glass_name might imply."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/dr_gibb/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.drowsyness = max(0,M.drowsyness-6)
|
|
|
|
@@ -462,7 +489,7 @@
|
|
|
|
|
glass_icon_state = "space-up_glass"
|
|
|
|
|
glass_name = "glass of Space-Up"
|
|
|
|
|
glass_desc = "Space-up. It helps you keep your cool."
|
|
|
|
|
|
|
|
|
|
hydration = 5 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/space_up/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-8 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -476,7 +503,7 @@
|
|
|
|
|
glass_icon_state = "glass_yellow"
|
|
|
|
|
glass_name = "glass of lemon-lime"
|
|
|
|
|
glass_desc = "You're pretty certain a real fruit has never actually touched this."
|
|
|
|
|
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/lemon_lime/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-8 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -490,6 +517,7 @@
|
|
|
|
|
glass_icon_state = "glass_red"
|
|
|
|
|
glass_name = "glass of Pwr Game"
|
|
|
|
|
glass_desc = "Goes well with a Vlad's salad."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/pwr_game/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-8 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -503,6 +531,7 @@
|
|
|
|
|
glass_icon_state = "glass_red"
|
|
|
|
|
glass_name = "glass of Shambler's juice"
|
|
|
|
|
glass_desc = "Mmm mm, shambly."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/shamblers/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-8 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -517,6 +546,7 @@
|
|
|
|
|
glass_icon_state = "grey_bull_glass"
|
|
|
|
|
glass_name = "glass of Grey Bull"
|
|
|
|
|
glass_desc = "Surprisingly it isnt grey."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/grey_bull/on_mob_metabolize(mob/living/L)
|
|
|
|
|
..()
|
|
|
|
@@ -542,6 +572,7 @@
|
|
|
|
|
glass_icon_state = "glass_clear"
|
|
|
|
|
glass_name = "glass of soda water"
|
|
|
|
|
glass_desc = "Soda water. Why not make a scotch and soda?"
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/sodawater/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-5)
|
|
|
|
@@ -557,6 +588,7 @@
|
|
|
|
|
glass_icon_state = "glass_clear"
|
|
|
|
|
glass_name = "glass of tonic water"
|
|
|
|
|
glass_desc = "Quinine tastes funny, but at least it'll keep that Space Malaria away."
|
|
|
|
|
hydration = 4 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tonic/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-5)
|
|
|
|
@@ -575,6 +607,7 @@
|
|
|
|
|
glass_icon_state = "iceglass"
|
|
|
|
|
glass_name = "glass of ice"
|
|
|
|
|
glass_desc = "Generally, you're supposed to put something else in there too..."
|
|
|
|
|
hydration = 5 * REAGENTS_METABOLISM //ice is water dummy, just as good.
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/ice/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-5 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -589,6 +622,7 @@
|
|
|
|
|
glass_icon_state = "soy_latte"
|
|
|
|
|
glass_name = "soy latte"
|
|
|
|
|
glass_desc = "A nice and refreshing beverage while you're reading."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/soy_latte/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-5)
|
|
|
|
@@ -610,6 +644,7 @@
|
|
|
|
|
glass_icon_state = "cafe_latte"
|
|
|
|
|
glass_name = "cafe latte"
|
|
|
|
|
glass_desc = "A nice, strong and refreshing beverage while you're reading."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/cafe_latte/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.dizziness = max(0,M.dizziness-5)
|
|
|
|
@@ -631,6 +666,7 @@
|
|
|
|
|
glass_icon_state = "doctorsdelightglass"
|
|
|
|
|
glass_name = "Doctor's Delight"
|
|
|
|
|
glass_desc = "The space doctor's favorite. Guaranteed to restore bodily injury; side effects include cravings and hunger."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/doctor_delight/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjustBruteLoss(-0.5, 0)
|
|
|
|
@@ -697,6 +733,7 @@
|
|
|
|
|
glass_icon_state = "pumpkin_latte"
|
|
|
|
|
glass_name = "pumpkin latte"
|
|
|
|
|
glass_desc = "A mix of coffee and pumpkin juice."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/gibbfloats
|
|
|
|
|
name = "Gibb Floats"
|
|
|
|
@@ -708,12 +745,14 @@
|
|
|
|
|
glass_icon_state = "gibbfloats"
|
|
|
|
|
glass_name = "Gibbfloat"
|
|
|
|
|
glass_desc = "Dr. Gibb with ice cream on top."
|
|
|
|
|
hydration = 3 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/pumpkinjuice
|
|
|
|
|
name = "Pumpkin Juice"
|
|
|
|
|
description = "Juiced from real pumpkin."
|
|
|
|
|
color = "#FFA500"
|
|
|
|
|
taste_description = "pumpkin"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/blumpkinjuice
|
|
|
|
|
name = "Blumpkin Juice"
|
|
|
|
@@ -730,6 +769,7 @@
|
|
|
|
|
glass_icon_state = "triplecitrus" //needs own sprite mine are trash
|
|
|
|
|
glass_name = "glass of triple citrus"
|
|
|
|
|
glass_desc = "A mixture of citrus juices. Tangy, yet smooth."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/grape_soda
|
|
|
|
|
name = "Grape soda"
|
|
|
|
@@ -738,6 +778,7 @@
|
|
|
|
|
taste_description = "grape soda"
|
|
|
|
|
glass_name = "glass of grape juice"
|
|
|
|
|
glass_desc = "It's grape (soda)!"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/grape_soda/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-5 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -750,6 +791,7 @@
|
|
|
|
|
color = "#7D4E29"
|
|
|
|
|
quality = DRINK_NICE
|
|
|
|
|
taste_description = "chocolate milk"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/menthol
|
|
|
|
|
name = "Menthol"
|
|
|
|
@@ -771,6 +813,7 @@
|
|
|
|
|
taste_description = "sweet pomegranates"
|
|
|
|
|
glass_name = "glass of grenadine"
|
|
|
|
|
glass_desc = "Delicious flavored syrup."
|
|
|
|
|
hydration = 1 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/parsnipjuice
|
|
|
|
|
name = "Parsnip Juice"
|
|
|
|
@@ -778,6 +821,7 @@
|
|
|
|
|
color = "#FFA500"
|
|
|
|
|
taste_description = "parsnip"
|
|
|
|
|
glass_name = "glass of parsnip juice"
|
|
|
|
|
hydration = 1 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/pineapplejuice
|
|
|
|
|
name = "Pineapple Juice"
|
|
|
|
@@ -786,6 +830,7 @@
|
|
|
|
|
taste_description = "pineapple"
|
|
|
|
|
glass_name = "glass of pineapple juice"
|
|
|
|
|
glass_desc = "Tart, tropical, and hotly debated."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/peachjuice //Intended to be extremely rare due to being the limiting ingredients in the blazaam drink
|
|
|
|
|
name = "Peach Juice"
|
|
|
|
@@ -793,6 +838,7 @@
|
|
|
|
|
color = "#E78108"
|
|
|
|
|
taste_description = "peaches"
|
|
|
|
|
glass_name = "glass of peach juice"
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/cream_soda
|
|
|
|
|
name = "Cream Soda"
|
|
|
|
@@ -803,6 +849,7 @@
|
|
|
|
|
glass_icon_state = "cream_soda"
|
|
|
|
|
glass_name = "Cream Soda"
|
|
|
|
|
glass_desc = "A classic space-American vanilla flavored soft drink."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/cream_soda/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.adjust_bodytemperature(-5 * TEMPERATURE_DAMAGE_COEFFICIENT, BODYTEMP_NORMAL)
|
|
|
|
@@ -844,6 +891,7 @@
|
|
|
|
|
taste_description = "sweet strawberry and milk cream"
|
|
|
|
|
glass_name = "tall glass of strawberry milk"
|
|
|
|
|
glass_desc = "Delicious flavored strawberry syrup mixed with milk."
|
|
|
|
|
hydration = 3 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/pinkmilk/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(prob(15))
|
|
|
|
@@ -860,6 +908,7 @@
|
|
|
|
|
taste_description = "sweet tea with a hint of strawberry"
|
|
|
|
|
glass_name = "mug of strawberry tea"
|
|
|
|
|
glass_desc = "Delicious traditional tea flavored with strawberries."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/tea/pinktea/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
if(prob(10))
|
|
|
|
@@ -875,6 +924,7 @@
|
|
|
|
|
glass_icon_state = "monkey_energy_glass"
|
|
|
|
|
glass_name = "glass of Monkey Energy"
|
|
|
|
|
glass_desc = "You can unleash the ape, but without the pop of the can?"
|
|
|
|
|
hydration = 1 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/monkey_energy/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.Jitter(20)
|
|
|
|
@@ -892,6 +942,7 @@
|
|
|
|
|
glass_icon_state = "glass_yellow"
|
|
|
|
|
glass_name = "glass of bungo juice"
|
|
|
|
|
glass_desc = "Exotic! You feel like you are on vacation already."
|
|
|
|
|
hydration = 1 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/aloejuice
|
|
|
|
|
name = "Aloe Juice"
|
|
|
|
@@ -901,14 +952,14 @@
|
|
|
|
|
glass_icon_state = "glass_yellow"
|
|
|
|
|
glass_name = "glass of aloe juice"
|
|
|
|
|
glass_desc = "A healthy and refreshing juice."
|
|
|
|
|
hydration = 2 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/aloejuice/on_mob_life(mob/living/M)
|
|
|
|
|
if(M.getToxLoss() && prob(30))
|
|
|
|
|
if(prob(30))
|
|
|
|
|
M.adjustToxLoss(-1, 0)
|
|
|
|
|
..()
|
|
|
|
|
. = 1
|
|
|
|
|
|
|
|
|
|
// i googled "natural coagulant" and a couple of results came up for banana peels, so after precisely 30 more seconds of research, i now dub grinding banana peels good for your blood
|
|
|
|
|
/datum/reagent/consumable/banana_peel
|
|
|
|
|
name = "Pulped Banana Peel"
|
|
|
|
|
description = "Okay, so you put a banana peel in a grinder... Why, exactly?"
|
|
|
|
@@ -926,3 +977,20 @@
|
|
|
|
|
taste_description = "bitter powder"
|
|
|
|
|
glass_name = "glass of banana peel powder"
|
|
|
|
|
description = "You took a banana peel... pulped it... baked it... Where are you going with this?"
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/wockyslush
|
|
|
|
|
name = "Wocky Slush"
|
|
|
|
|
description = "That thang bleedin' to the-... ya know I mean?"
|
|
|
|
|
color = "#7b60c4" // rgb(123, 96, 196)
|
|
|
|
|
quality = DRINK_VERYGOOD
|
|
|
|
|
taste_description = "cold rainbows"
|
|
|
|
|
glass_icon_state = "wockyslush"
|
|
|
|
|
glass_name = "Wocky Slush"
|
|
|
|
|
glass_desc = "That thang bleedin' to the-... ya know I mean?"
|
|
|
|
|
hydration = 3 * REAGENTS_METABOLISM
|
|
|
|
|
|
|
|
|
|
/datum/reagent/consumable/wockyslush/on_mob_life(mob/living/carbon/M)
|
|
|
|
|
M.emote(pick("twitch","giggle","stare"))
|
|
|
|
|
M.set_drugginess(75)
|
|
|
|
|
M.apply_status_effect(/datum/status_effect/throat_soothed)
|
|
|
|
|
..()
|
|
|
|
|