[MIRROR] Adds the Mississippi Queen, a new drink [MDB IGNORE] (#18922)

Adds the Mississippi Queen, a new drink (#72780)

## About The Pull Request
Adds the infamous Mississippi Queen, a drink so spicy it'll make you
start seeing things.

![palm-export](https://user-images.githubusercontent.com/66052067/213032895-476521ae-844c-446f-8478-10b76967853b.png)
## Why It's Good For The Game

![DeficientGenuineGlowworm-size_restricted](https://user-images.githubusercontent.com/66052067/213033006-bf3e1a03-779b-4afb-9948-4fc91e718298.gif)
## Changelog
🆑
add: Bartenders can now mix up the Mississippi Queen for those willing
to take the plunge.
/🆑

Co-authored-by: Wallem <66052067+Wallemations@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-01-23 17:07:15 -05:00
committed by GitHub
co-authored by Wallem
parent c3f970c0e0
commit 7a035ba355
3 changed files with 30 additions and 0 deletions
@@ -1645,3 +1645,29 @@
if(doll.getToxLoss() && DT_PROB(10, delta_time))
doll.adjustToxLoss(-0.5, FALSE, required_biotype = affected_biotype)
return ..()
/datum/reagent/consumable/mississippi_queen
name = "Mississippi Queen"
description = "If you think you're so hot, how about a victory drink?"
color = "#d4422f" // rgb: 212,66,47
taste_description = "sludge seeping down your throat"
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
/datum/glass_style/drinking_glass/mississippi_queen
required_drink_type = /datum/reagent/consumable/mississippi_queen
name = "Mississippi Queen"
desc = "Mullets and cut-up jorts not included."
icon = 'icons/obj/drinks/mixed_drinks.dmi'
icon_state = "mississippiglass"
/datum/reagent/consumable/mississippi_queen/on_mob_life(mob/living/carbon/drinker, delta_time, times_fired)
switch(current_cycle)
if(10 to 20)
drinker.adjust_dizzy(4 SECONDS * REM * delta_time)
if(20 to 30)
if(DT_PROB(15, delta_time))
drinker.adjust_confusion(4 SECONDS * REM * delta_time)
if(30 to 200)
drinker.adjust_hallucinations(60 SECONDS * REM * delta_time)
return ..()