Adds Strawberry Daiquiri and Miami Vice. (#32069)

* Adds Strawberry Daiquiri and Miami Vice.

* Fixes the amout returned in the Miami Vice to equal the sum of its parts, and increases the alcohol percentage.

* Adds Strawberry Daiquiri and Miami Vice to the drinks manual.

* Corrects the formatting and alphabetization of manuals.dm entries.
This commit is contained in:
AurouraPlays
2026-06-13 15:18:52 -07:00
committed by GitHub
parent fe5bfa24ff
commit 5657dcdb89
4 changed files with 44 additions and 0 deletions
@@ -401,6 +401,30 @@
yuck_description = "stickiness in your tubes"
goal_difficulty = REAGENT_GOAL_EASY
/datum/reagent/consumable/ethanol/strawberry_daiquiri
name = "Strawberry Daiquiri"
id = "strawberry_daiquiri"
description = "Berry juice and sugar mixed with rum. A fruity and refreshing mix."
color = "#ff8091"
alcohol_perc = 0.4
drink_icon = "strawberrydaiquiriglass"
drink_name = "Strawberry Daiquiri"
drink_desc = "A sweeter alternative to the standard daiquiri."
taste_description = "sweetened berry juice and rum"
goal_difficulty = REAGENT_GOAL_EASY
/datum/reagent/consumable/ethanol/miami_vice
name = "Miami Vice"
id = "miami_vice"
description = "A pina colada on top of a strawberry daiquiri. A fruity and tart mix."
color = "#ffc3cb"
alcohol_perc = 0.6
drink_icon = "miamiviceglass"
drink_name = "Miami Vice"
drink_desc = "A pina colada on top of a strawberry daiquiri. You're filled with a longing for an ancient city..."
taste_description = "sweet berries and tangy pineapples"
goal_difficulty = REAGENT_GOAL_EASY
/datum/reagent/consumable/ethanol/martini
name = "Classic Martini"
id = "martini"
@@ -468,6 +468,22 @@
result_amount = 4
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
/datum/chemical_reaction/strawberry_daiquiri
name = "Strawberry Daiquiri"
id = "strawberry_daiquiri"
result = "strawberry_daiquiri"
required_reagents = list("berryjuice" = 1, "sugar" = 1, "rum" = 2, "ice" = 1)
result_amount = 4
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
/datum/chemical_reaction/miami_vice
name = "Miami Vice"
id = "miami_vice"
result = "miami_vice"
required_reagents = list("pinacolada" = 1, "strawberry_daiquiri" = 1)
result_amount = 2
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
/datum/chemical_reaction/sbiten
name = "Sbiten"
id = "sbiten"