Skip to content

Commit

Permalink
Gnome Cocktails
Browse files Browse the repository at this point in the history
Part 1 of the Gnome Cooking + Cocktail Project
  • Loading branch information
AshTheDerg committed Mar 17, 2024
1 parent fe63883 commit 19c1fad
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,3 +347,80 @@
/datum/reagent/consumable/sugar = 1,
/datum/reagent/consumable/sodawater = 15
)

//Gnome Cocktails
/datum/chemical_reaction/fruitblast
name = "Fruit Blast"
id = /datum/reagent/consumable/fruitblast
results = list(/datum/reagent/consumable/fruitblast = 3)
required_reagents = list(
/datum/reagent/consumable/pineapplejuice = 1,
/datum/reagent/consumable/lemonjuice = 1,
/datum/reagent/consumable/orangejuice = 1
)

/datum/chemical_reaction/pinepunch
name = "Pineapple Punch"
id = /datum/reagent/consumable/pinepunch
results = list(/datum/reagent/consumable/pinepunch = 1)
required_reagents = list(
/datum/reagent/consumable/fruitblast = 1,
/datum/reagent/consumable/pineapplejuice = 1,
/datum/reagent/consumable/limejuice = 1
)

/datum/chemical_reaction/wizbliz
name = "Wizard Blizzard"
id = /datum/reagent/consumable/ethanol/wizbliz
results = list(/datum/reagent/consumable/ethanol/wizbliz = 2)
required_reagents = list(
/datum/reagent/consumable/ethanol/vodka = 2,
/datum/reagent/consumable/ethanol/gin = 1,
/datum/reagent/consumable/triple_citrus =1
)

/datum/chemical_reaction/sgg
name = "Short Green Guy"
id = /datum/reagent/consumable/ethanol/sgg
results = list(/datum/reagent/consumable/ethanol/sgg = 5)
required_reagents = list(
/datum/reagent/consumable/ethanol/vodka = 1,
/datum/reagent/consumable/ethanol/creme_de_menthe = 1,
/datum/reagent/consumable/limejuice = 3
)

/datum/chemical_reaction/drunkdrag
name = "Drunken Dragon"
id = /datum/reagent/consumable/ethanol/drunkdrag
results = list(/datum/reagent/consumable/ethanol/drunkdrag = 5)
required_reagents = list(
/datum/reagent/consumable/ethanol/vodka = 1,
/datum/reagent/consumable/ethanol/gin = 1,
/datum/reagent/consumable/berryjuice = 1,
/datum/reagent/consumable/cream = 1
)
required_temp = 315 //Gotta get it nice and warm

/datum/chemical_reaction/chocsat
name = "Chocolate Saturday"
id = /datum/reagent/consumable/ethanol/chocsat
results = list(/datum/reagent/consumable/ethanol/chocsat = 5)
required_reagents = list(
/datum/reagent/consumable/ethanol/whiskey = 1,
/datum/reagent/consumable/ethanol/creme_de_cacao = 1,
/datum/reagent/consumable/ethanol/creme_de_menthe = 1,
/datum/reagent/consumable/milk = 1
)
required_temp = 315 //Gotta get it nice and warm

/datum/chemical_reaction/blurbspec
name = "Blurberry Special"
id = /datum/reagent/consumable/ethanol/blurbspec
results = list(/datum/reagent/consumable/ethanol/blurbspec = 10)
required_reagents = list(
/datum/reagent/consumable/ethanol/gin = 1,
/datum/reagent/consumable/ethanol/cognac = 1,
/datum/reagent/consumable/ethanol/vodka = 1,
/datum/reagent/consumable/ethanol/creme_de_menthe = 1,
/datum/reagent/consumable/triple_citrus = 1
)
Original file line number Diff line number Diff line change
Expand Up @@ -490,3 +490,54 @@
/obj/item/reagent_containers/food/drinks/drinkingglass/filled/midnight_tears
name = "Midnight Tears"
list_reagents = list(/datum/reagent/consumable/ethanol/midnight_tears = 50)

// Gnome Cocktails
/datum/reagent/consumable/ethanol/wizbliz
name = "Wizard Blizzard"
description = "Wizard Blizzard, it's magical!"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "wizbliz"
glass_name = "glass of Wizard Blizzard"
taste_description = "fizzy magic"
color = "#63e7a9"
glass_desc = "A glass of fizzy, magical cocktail"

/datum/reagent/consumable/ethanol/sgg
name = "Short Green Guy"
description = "It smells like lime, and a gnomeball field"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "sgg"
glass_name = "glass of Short Green Guy"
taste_description = "a lot of limes"
color = "#1dee16"
glass_desc = "A bright green drink that smells of lime"

/datum/reagent/consumable/ethanol/drunkdrag
name = "Drunken Dragon"
description = "A Drunken Dragon cocktail, does not contain actual dragons"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "drunkdragon"
glass_name = "glass of Drunken Ddragon"
taste_description = "a belly full of fire"
color = "#77baf1"
glass_desc = "A warm, blue cocktail that smells of dragon"

/datum/reagent/consumable/ethanol/chocsat
name = "Chocolate Saturday"
description = "Whiskey and Mint Chocolate Milk, served warm"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "chocsat"
glass_name = "glass of Chocolate Saturday"
taste_description = "warm mint chocolate milk"
color = "#724b18"
glass_desc = "A warm, chocolatey cocktail that smells faintly of whiskey"

/datum/reagent/consumable/ethanol/blurbspec
name = "Blurberry Special"
description = "You don't know who Blurberry is, but he makes a great cocktail"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "blurbspec"
glass_name = "glass of Blurberry Special"
taste_description = "booze and citrus, with a hint of mint"
color = "#e7a412"
glass_desc = "A bright orange cocktail made only by the best mixologist"
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,24 @@
glass_icon_state = "melonshake"
glass_name = "glass of Watermelon Milkshake"
glass_desc = "A Watermelon milkshake, it's like summer all over again!"

//Gnome Mocktails
/datum/reagent/consumable/fruitblast
name = "Fruit Blast"
description = "A non-alcoholic tropical cocktail"
color = "#f7ba38"
taste_description = "citrus and tropical breeze"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "fruitblast"
glass_name = "glass of Fruit Blast"
glass_desc = "A Fruit Blast cocktail"

/datum/reagent/consumable/pinepunch
name = "Pineapple Punch"
description = "A non-alcoholic pineapple cocktail"
color = "#d6e73e"
taste_description = "pineapples and citrus"
glass_icon = 'modular_splurt/icons/obj/drinks.dmi'
glass_icon_state = "pinepunch"
glass_name = "glass of Pineapple Punch"
glass_desc = "A Pineapple Punch cocktail"
Binary file modified modular_splurt/icons/obj/drinks.dmi
Binary file not shown.
Binary file modified modular_splurt/icons/obj/food/food.dmi
Binary file not shown.

0 comments on commit 19c1fad

Please sign in to comment.