Adds Skrell Drinks (#5963)

Adds Grape juice to the boozeomat and 5 new mixable Skrell drinks.
This commit is contained in:
Conspiir
2019-01-28 11:29:49 +01:00
committed by Werner
parent 0563f2ec6a
commit 488c7fe8d8
5 changed files with 147 additions and 0 deletions
@@ -3477,6 +3477,72 @@
glass_name = "glass of Winter Offensive"
glass_desc = "Proven to be more successful than the campaign."
// Skrellian drinks
//====================
// Some are alocholic, some are not
/datum/reagent/alcohol/ethanol/thirdincident
name = "The Third Incident"
id = "thirdincident"
color = "#1936a0"
strength = 10
description = "A controversial drink popular with the punk youth of the Jargon Federation. Represents blood, eggs, and tears."
taste_description = "genophage sadness"
glass_icon_state = "thirdincident"
glass_name = "glass of the Third Incident"
glass_desc = "A controversial drink popular with the punk youth of the Jargon Federation. Represents blood, eggs, and tears."
/datum/reagent/drink/upsidedowncup
name = "Upside-Down Cup"
id = "upsidedowncup"
color = "#B2110A"
description = "An age-old part of Skrell culture. Even children know of the humor."
taste_description = "esoteric humor"
glass_icon_state = "upsidedowncup"
glass_name = "glass of Upside-Down Cup"
glass_desc = "An age-old part of Skrell culture. Even children know of the humor. It's not actually upside down."
/datum/reagent/drink/smokinglizard
name = "Cigarette Lizard"
id = "cigarettelizard"
color = "#80C274"
description = "The amusement of Cigarette Lizard, now in a cup!"
taste_description = "minty sass"
glass_icon_state = "cigarettelizard"
glass_name = "glass of Cigarette Lizard"
glass_desc = "The amusement of Cigarette Lizard, now in a cup!"
/datum/reagent/drink/coffee/sromshine
name = "Sromshine"
id = "sromshine"
color = "#A14702"
description = "The best part of waking up."
taste_description = "bitter citrus"
glass_icon_state = "sromshine"
glass_name = "cup of Sromshine"
glass_desc = "The best part of waking up."
/datum/reagent/alcohol/ethanol/cbsc
name = "Complex Bluespace Calculation"
id = "cbsc"
color = "#000000"
strength = 25
description = "A loud bang. No, really, that's the joke. Skrell get a kick out of it."
taste_description = "fizzling spatiotemporal instability"
glass_icon_state = "cbsc"
glass_name = "glass of Complex Bluespace Calculation"
glass_desc = "A loud bang. No, really, that's the joke. Skrell get a kick out of it."
/datum/reagent/alcohol/ethanol/cbsc/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
..()
if(alien != IS_DIONA)
M.make_jittery(10)
// Butanol-based alcoholic drinks
//=====================================
@@ -2899,6 +2899,44 @@
required_reagents = list("coffee" = 6, "pumpkinspice" = 2, "cream" = 2)
result_amount = 10
//Skrell drinks. Bring forth the culture.
//===========================================
/datum/chemical_reaction/thirdincident
name = "The Third Incident"
id = "thirdincident"
result = "thirdincident"
required_reagents = list("egg" = 3, "bluecuracao" = 10, "grapejuice" = 10)
result_amount = 20
/datum/chemical_reaction/upsidedowncup
name = "Upside-Down Cup"
id = "upsidedowncup"
result = "upsidedowncup"
required_reagents = list("dr_gibb" = 3, "ice" = 1, "lemonjuice" = 1)
result_amount = 5
/datum/chemical_reaction/cigarettelizard
name = "Cigarette Lizard"
id = "cigarettelizard"
result = "cigarettelizard"
required_reagents = list("limejuice" = 2, "sodawater" = 2, "mintsyrup" = 1, "ice" = 1)
result_amount = 6
/datum/chemical_reaction/sromshine
name = "Sromshine"
id = "sromshine"
result = "sromshine"
required_reagents = list("coffee" = 2, "orangejuice" = 1)
result_amount = 3
/datum/chemical_reaction/cbsc
name = "Complex Bluespace Calculation"
id = "cbsc"
result = "cbsc"
required_reagents = list("wine" = 4, "vodka" = 2, "sodawater" = 3, "radium" = 1 )
result_amount = 10
//transmutation
/datum/chemical_reaction/transmutation_silver