Skip to content

Commit

Permalink
adds the flaming moe a new animated bar drink (#8630)
Browse files Browse the repository at this point in the history
* New flaming moe drink which is totally going to be used for powergaming
  • Loading branch information
boodaliboo committed Jun 12, 2020
1 parent b9b1870 commit e864398
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/modules/food_and_drinks/recipes/drinks_recipes.dm
Expand Up @@ -807,4 +807,11 @@
name = "Catsip"
results = list(/datum/reagent/consumable/ethanol/catsip = 4)
required_reagents = list(/datum/reagent/consumable/ethanol/sake = 2, /datum/reagent/consumable/soymilk = 2, /datum/reagent/consumable/corn_syrup = 1, /datum/reagent/consumable/grenadine = 1)

/datum/chemical_reaction/flaming_moe
name = "Flaming Moe"
required_temp = 500
id = /datum/reagent/consumable/ethanol/flaming_moe
results = list(/datum/reagent/consumable/ethanol/flaming_moe = 3)
required_reagents = list(/datum/reagent/consumable/ethanol/tequila = 1, /datum/reagent/consumable/ethanol/creme_de_menthe, /datum/reagent/medicine/synaptizine)

25 changes: 25 additions & 0 deletions code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
Expand Up @@ -2153,3 +2153,28 @@ All effects don't start immediately, but rather get worse over time; the rate is
glass_name = "Pina Colada"
glass_desc = "If you like pina coladas, and getting caught in the rain... well, you'll like this drink."

/datum/reagent/consumable/ethanol/flaming_moe
name = "Flaming Moe"
description = "The drink that always keeps you coming back for Moe."
boozepwr = 38
color = "#FFF1B2"
quality = DRINK_FANTASTIC
taste_description = "tequila, creme de menthe, and a hint of medicine?"
glass_icon_state = "Flaming_moe2"
glass_name = "Flaming Moe"
glass_desc = "an amazing concoction of various different bar drinks and a secret ingredient"

/datum/reagent/consumable/ethanol/flaming_moe/on_mob_life(mob/living/carbon/M)
M.drowsyness = max(M.drowsyness-5, 0)
M.AdjustStun(-20, FALSE)
M.AdjustKnockdown(-20, FALSE)
M.AdjustUnconscious(-20, FALSE)
M.AdjustImmobilized(-20, FALSE)
M.AdjustParalyzed(-20, FALSE)
if(holder.has_reagent(/datum/reagent/toxin/mindbreaker))
holder.remove_reagent(/datum/reagent/toxin/mindbreaker, 5)
M.hallucination = max(0, M.hallucination - 10)
if(prob(30))
M.adjustToxLoss(1, 0)
. = 1
M.adjust_bodytemperature(5 * TEMPERATURE_DAMAGE_COEFFICIENT, 0, BODYTEMP_NORMAL)
Binary file modified icons/obj/drinks.dmi
Binary file not shown.

0 comments on commit e864398

Please sign in to comment.