Mimosas and Lemon Drops (#34957)

* Adds Mimosas and Lemon Drops

f

* g

* f
This commit is contained in:
falcon2346
2023-08-29 16:06:24 -05:00
committed by GitHub
parent 84fe3ec17b
commit d558c1c479
4 changed files with 36 additions and 0 deletions

View File

@@ -513,6 +513,8 @@
#define TOMATO_SOUP "tomato_soup"
#define LUMINOL "luminol"
#define CAFFEINE "caffeine"
#define MIMOSA "mimosa"
#define LEMONDROP "lemondrop"
// How many units of reagent are consumed per tick, by default.
#define REAGENTS_METABOLISM 0.2

View File

@@ -8634,6 +8634,26 @@ var/procizine_tolerance = 0
glass_name = "\improper festive eggnog"
glass_desc = "Eggnog, complete with booze and a dusting of cinnamon for that winter warmth."
/datum/reagent/ethanol/drink/mimosa
name = "Mimosa"
id = MIMOSA
description = "Champagne and orange juice."
reagent_state = REAGENT_STATE_LIQUID
color = "#FFCA24" //rgb: 255, 202, 36
glass_icon_state = "mimosa"
glass_name = "\improper mimosa"
glass_desc = "Tangy and light. Perfect for brunch."
/datum/reagent/ethanol/drink/lemondrop
name = "Lemon Drop"
id = LEMONDROP
description = "Vodka, lemon juice, and triple sec."
reagent_state = REAGENT_STATE_LIQUID
color = "#FFF353" //rgb: 255, 243, 83
glass_icon_state = "lemondrop"
glass_name = "\improper lemon drop"
glass_desc = "A strong and sour drink, served with a sugar coated rim."
//Eventually there will be a way of making vinegar.
/datum/reagent/vinegar
name = "Vinegar"

View File

@@ -3015,6 +3015,20 @@
required_reagents = list(GIN = 3, CHERRYJELLY = 1)
result_amount = 4
/datum/chemical_reaction/mimosa
name = "Mimosa"
id = MIMOSA
result = MIMOSA
required_reagents = list(CHAMPAGNE = 1, ORANGEJUICE = 1)
result_amount = 2
/datum/chemical_reaction/lemondrop
name = "Lemon Drop"
id = LEMONDROP
result = LEMONDROP
required_reagents = list(LEMONJUICE = 1, TRIPLESEC = 1, VODKA = 1)
result_amount = 3
////DRINKS THAT REQUIRED IMPROVED SPRITES BELOW:: -Agouri/////
/datum/chemical_reaction/sbiten

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 KiB

After

Width:  |  Height:  |  Size: 115 KiB