mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
update raw meat examine text to explain making meatballs/patties (#28879)
This commit is contained in:
committed by
GitHub
parent
4daf4151bd
commit
b68e881eb6
@@ -269,10 +269,14 @@
|
||||
bitesize = 3
|
||||
list_reagents = list("protein" = 2)
|
||||
|
||||
/obj/item/food/meat/patty_raw/examine(mob/user)
|
||||
. = ..()
|
||||
. += "<span class='notice'>Use it in hand to shape it into a raw meatball.</span>"
|
||||
|
||||
/obj/item/food/meat/patty_raw/attack_self__legacy__attackchain(mob/user)
|
||||
user.visible_message(
|
||||
"<span class='notice'>[user] shapes [src] into a ball.</span>",
|
||||
"<span class='notice'>You shape [src] into a ball.</span>"
|
||||
"<span class='notice'>[user] shapes [src] into a raw meatball.</span>",
|
||||
"<span class='notice'>You shape [src] into a raw meatball.</span>"
|
||||
)
|
||||
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)
|
||||
. = ..()
|
||||
. += "<span class='notice'>Use it in hand to shape it into a raw meatball.</span>"
|
||||
. += "<span class='notice'>Use it in hand again to flatten it into a raw patty.</span>"
|
||||
|
||||
/obj/item/food/ground_meat/attack_self__legacy__attackchain(mob/living/user)
|
||||
user.visible_message(
|
||||
"<span class='notice'>[user] shapes [src] into a ball.</span>",
|
||||
@@ -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)
|
||||
. = ..()
|
||||
. += "<span class='notice'>Use it in hand to flatten it into a raw patty.</span>"
|
||||
|
||||
/obj/item/food/meat/raw_meatball/attack_self__legacy__attackchain(mob/user)
|
||||
user.visible_message(
|
||||
"<span class='notice'>[user] flattens [src] into a patty.</span>",
|
||||
|
||||
Reference in New Issue
Block a user