Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions yogstation/code/datums/mutations/alcohol.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "Alcohol Tolerance"
desc = "A hyperactive liver improves the patient's ability to metabolize alcohol."
quality = POSITIVE
text_gain_indication = span_danger("Your liver hurts.")
text_gain_indication = span_danger("Your liver feels amazing.")
text_lose_indication = span_danger("Your liver feels sad.")

/datum/mutation/human/alcohol_tolerance/on_acquiring(mob/living/carbon/human/owner)
Expand All @@ -19,8 +19,8 @@
name = "Auto-brewery Syndrome"
desc = "The patient's body now naturally produces alcohol into their bloodstream."
quality = MINOR_NEGATIVE
text_gain_indication = span_danger("Your liver feels amazing.")
text_lose_indication = span_danger("Your liver feels sad.")
text_gain_indication = span_danger("Your liver hurts.")
text_lose_indication = span_danger("Your liver feels better.")

/datum/mutation/human/alcohol_generate/on_life()
if(prob(15))
Expand Down