diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index e33a42d2c7..51881bcd50 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -168,19 +168,19 @@ if (fullness > 150 && fullness <= 350) to_chat(M, span_notice("You take a bite of [src].")) 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) 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) to_chat(M, span_notice("You stuff yourself with the [src]. Your stomach feels very heavy.")) 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) - 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) - 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. - 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 else if(user.a_intent == I_HURT)