Merge pull request #14650 from WanderingFox95/WanderingFox95-LavalandWine
Lavaland Wine: Pinot Mort (Ready)
This commit is contained in:
@@ -604,6 +604,14 @@
|
||||
mix_message = "You hear faint sounds of gears turning as it mixes."
|
||||
mix_sound = 'sound/machines/clockcult/steam_whoosh.ogg'
|
||||
|
||||
/datum/chemical_reaction/pinotmort
|
||||
name = "Pinot Mort"
|
||||
id = /datum/reagent/consumable/ethanol/pinotmort
|
||||
results = list(/datum/reagent/consumable/ethanol/pinotmort = 4)
|
||||
required_reagents = list(/datum/reagent/ash = 2, /datum/reagent/consumable/ethanol/lizardwine = 1, /datum/reagent/consumable/vitfro = 1)
|
||||
mix_message = "You hear an undescribable scream as it mixes... You're not sure how to feel about this."
|
||||
mix_sound = 'sound/effects/tendril_destroyed.ogg'
|
||||
|
||||
/datum/chemical_reaction/quadruplesec
|
||||
name = "Quadruple Sec"
|
||||
id = /datum/reagent/consumable/ethanol/quadruple_sec
|
||||
|
||||
@@ -1490,6 +1490,25 @@ All effects don't start immediately, but rather get worse over time; the rate is
|
||||
M.stuttering = min(M.stuttering + 3, 3)
|
||||
..()
|
||||
|
||||
/datum/reagent/consumable/ethanol/pinotmort
|
||||
name = "Pinot Mort"
|
||||
description = "If you just can't get enough of lavaland."
|
||||
color = rgb(167, 36, 36)
|
||||
boozepwr = 20
|
||||
quality = DRINK_FANTASTIC
|
||||
taste_description = "death, ash and lizards"
|
||||
glass_icon_state = "pinotmort"
|
||||
glass_name = "Pinot Mort"
|
||||
glass_desc = "The taste of Lavaland served in a legion skull. You feel like you might regret drinking this."
|
||||
value = REAGENT_VALUE_UNCOMMON
|
||||
|
||||
/datum/reagent/consumable/ethanol/pinotmort/on_mob_life(mob/living/carbon/M)
|
||||
if((islizard(M) && M.mind.assigned_role == "Ash Walker") || ispodperson(M) && M.mind.assigned_role == "Lifebringer" || isgolem(M))
|
||||
M.heal_bodypart_damage(1, 1)
|
||||
M.adjustBruteLoss(-2,0)
|
||||
. = 1
|
||||
return ..()
|
||||
|
||||
/datum/reagent/consumable/ethanol/triple_sec
|
||||
name = "Triple Sec"
|
||||
description = "A sweet and vibrant orange liqueur."
|
||||
|
||||
Reference in New Issue
Block a user