[MIRROR] Updates eating text to be more neutral (#10937)

Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-05-19 23:12:36 -07:00
committed by GitHub
parent c8567b9758
commit cbc509ce77

View File

@@ -168,19 +168,19 @@
if (fullness > 150 && fullness <= 350) if (fullness > 150 && fullness <= 350)
to_chat(M, span_notice("You take a bite of [src].")) to_chat(M, span_notice("You take a bite of [src]."))
if (fullness > 350 && fullness <= 550) if (fullness > 350 && fullness <= 550)
to_chat(M, span_notice("You unwillingly chew a bit of [src].")) to_chat(M, span_notice("You chew a bit of [src], despite feeling rather full."))
if (fullness > 550 && fullness <= 650) if (fullness > 550 && fullness <= 650)
to_chat(M, span_notice("You swallow some more of the [src], causing your belly to swell out a little.")) to_chat(M, span_notice("You swallow some more of the [src], causing your belly to swell out a little."))
if (fullness > 650 && fullness <= 1000) if (fullness > 650 && fullness <= 1000)
to_chat(M, span_notice("You stuff yourself with the [src]. Your stomach feels very heavy.")) to_chat(M, span_notice("You stuff yourself with the [src]. Your stomach feels very heavy."))
if (fullness > 1000 && fullness <= 3000) if (fullness > 1000 && fullness <= 3000)
to_chat(M, span_notice("You gluttonously swallow down the hunk of [src]. You're so gorged, it's hard to stand.")) to_chat(M, span_notice("You swallow down the hunk of [src]. Surely you have to have some limits?"))
if (fullness > 3000 && fullness <= 5500) if (fullness > 3000 && fullness <= 5500)
to_chat(M, span_danger("You force the piece of [src] down your throat. You can feel your stomach getting firm as it reaches its limits.")) to_chat(M, span_danger("You force the piece of [src] down. You can feel your stomach getting firm as it reaches its limits."))
if (fullness > 5500 && fullness <= 6000) if (fullness > 5500 && fullness <= 6000)
to_chat(M, span_danger("You barely glug down the bite of [src], causing undigested food to force into your intestines. You can't take much more of this!")) to_chat(M, span_danger("You glug down the bite of [src], you are reaching the very limits of what you can eat, but maybe a few more bites could be managed..."))
if (fullness > 6000) // There has to be a limit eventually. if (fullness > 6000) // There has to be a limit eventually.
to_chat(M, span_danger("Your stomach blorts and aches, prompting you to stop. You literally cannot force any more of [src] to go down your throat.")) to_chat(M, span_danger("Nope. That's it. You literally cannot force any more of [src] to go down your throat. It's fair to say you're full."))
return 0 return 0
else if(user.a_intent == I_HURT) else if(user.a_intent == I_HURT)