From b68e881eb60e1ba8ff4c964bbbe461afe32879dc Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Tue, 8 Apr 2025 09:03:50 -0400 Subject: [PATCH] update raw meat examine text to explain making meatballs/patties (#28879) --- code/modules/food_and_drinks/food/foods/meat.dm | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/foods/meat.dm b/code/modules/food_and_drinks/food/foods/meat.dm index 95626d4c7d0..845051c82f2 100644 --- a/code/modules/food_and_drinks/food/foods/meat.dm +++ b/code/modules/food_and_drinks/food/foods/meat.dm @@ -269,10 +269,14 @@ bitesize = 3 list_reagents = list("protein" = 2) +/obj/item/food/meat/patty_raw/examine(mob/user) + . = ..() + . += "Use it in hand to shape it into a raw meatball." + /obj/item/food/meat/patty_raw/attack_self__legacy__attackchain(mob/user) user.visible_message( - "[user] shapes [src] into a ball.", - "You shape [src] into a ball." + "[user] shapes [src] into a raw meatball.", + "You shape [src] into a raw meatball." ) playsound(user, 'sound/effects/blobattack.ogg', 50, 1) var/obj/item/food/meat/raw_meatball/M = new(get_turf(user)) @@ -290,6 +294,11 @@ list_reagents = list("protein" = 4, "vitamin" = 1) tastes = list("raw meat" = 1) +/obj/item/food/ground_meat/examine(mob/user) + . = ..() + . += "Use it in hand to shape it into a raw meatball." + . += "Use it in hand again to flatten it into a raw patty." + /obj/item/food/ground_meat/attack_self__legacy__attackchain(mob/living/user) user.visible_message( "[user] shapes [src] into a ball.", @@ -311,6 +320,10 @@ list_reagents = list("protein" = 4, "vitamin" = 1) tastes = list("raw meat" = 1) +/obj/item/food/meat/raw_meatball/examine(mob/user) + . = ..() + . += "Use it in hand to flatten it into a raw patty." + /obj/item/food/meat/raw_meatball/attack_self__legacy__attackchain(mob/user) user.visible_message( "[user] flattens [src] into a patty.",