Skip to content

Commit

Permalink
[MIRROR] adds the cringe weaver (#5040)
Browse files Browse the repository at this point in the history
* adds the cringe weaver (#4405)

* nice

* Update modular_nova/modules/customization/modules/reagents/chemistry/reagents/alcohol_reagents.dm

Co-authored-by: Bloop <[email protected]>

* let's add some words

* Update alcohol_reagents.dm

* i forgot a period

---------

Co-authored-by: Bloop <[email protected]>

* [MIRROR] adds the cringe weaver

---------

Co-authored-by: zeroisthebiggay <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Sep 18, 2024
1 parent faf2799 commit 9268cab
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
Binary file modified modular_nova/master_files/icons/obj/drinks.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@
results = list(/datum/reagent/consumable/ethanol/quadruple_sec/cityofsin = 4)
required_reagents = list(/datum/reagent/consumable/ethanol/vodka = 2, /datum/reagent/consumable/ethanol/champagne = 1, /datum/reagent/consumable/berryjuice = 1)

/datum/chemical_reaction/drink/cringe_weaver
results = list(/datum/reagent/consumable/ethanol/cringe_weaver = 10)
required_reagents = list(/datum/reagent/toxin/formaldehyde = 6, /datum/reagent/consumable/ethanol/fringe_weaver = 3, /datum/reagent/consumable/ice = 1) //9 'form'adelhyde, ice
mix_message = "The mix swells and turns a sickeningly pungent green, filling the air with a tangible miasma of cringe."
mix_sound = 'sound/effects/wounds/sizzle2.ogg'

/datum/chemical_reaction/drink/blizzard_brew
results = list(/datum/reagent/consumable/ethanol/blizzard_brew = 3)
required_reagents = list(/datum/reagent/consumable/ethanol/iced_beer = 1, /datum/reagent/consumable/ice = 1, /datum/reagent/inverse/cryostylane = 1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,30 @@
name = "glass of city of sin"
desc = "Looking at it makes you recall every mistake you've made."

/datum/reagent/consumable/ethanol/cringe_weaver
name = "Cringe Weaver"
description = "An infrangibly awful-tasting drink that 'smart' people inexplicably covet. For when they ask for a Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
color = "#2BFE3C"
boozepwr = -20 //spicy. sobering. burning. cringe.
taste_description = "cringe and latin"
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED

/datum/reagent/consumable/ethanol/cringe_weaver/on_mob_life(mob/living/carbon/drinker, seconds_per_tick, times_fired)
. = ..()
var/obj/item/organ/internal/liver/liver = drinker.get_organ_slot(ORGAN_SLOT_LIVER)
if(liver && HAS_TRAIT(liver, TRAIT_CORONER_METABOLISM))
if(drinker.heal_bodypart_damage(1 * REM * seconds_per_tick, 1 * REM * seconds_per_tick)) //coroners love drinking formaldehyde
return UPDATE_MOB_HEALTH
else
drinker.adjust_disgust(1 * REM * seconds_per_tick)

/datum/glass_style/drinking_glass/cringe_weaver
required_drink_type = /datum/reagent/consumable/ethanol/cringe_weaver
name = "Cringe Weaver"
desc = "Spicy, sobering, burning, and of course - irrefutably cringe. Enjoyed by patrons who ask for a plum in a man's hat."
icon = 'modular_nova/master_files/icons/obj/drinks.dmi'
icon_state = "cringe_weaver"

/datum/reagent/consumable/ethanol/shakiri
name = "Shakiri"
description = "A sweet, fragrant red drink made from fermented kiri fruits. It seems to gently sparkle when exposed to light."
Expand Down

0 comments on commit 9268cab

Please sign in to comment.