diff --git a/code/modules/food_and_drinks/food/snacks/meat.dm b/code/modules/food_and_drinks/food/snacks/meat.dm index a62ab42d..2e340838 100644 --- a/code/modules/food_and_drinks/food/snacks/meat.dm +++ b/code/modules/food_and_drinks/food/snacks/meat.dm @@ -84,6 +84,7 @@ cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/chicken slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/chicken tastes = list("chicken" = 1) + icon_state = "bird" /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime icon_state = "slimemeat" @@ -165,8 +166,10 @@ /obj/item/reagent_containers/food/snacks/meat/slab/synthmeat name = "synthmeat" - desc = "A synthetic slab of meat." + desc = "A synthetic chunk of meat." + icon_state = "meatproduct" //growing meat will make it look like a lumpo foodtype = RAW | MEAT //hurr durr chemicals we're harmed in the production of this meat thus its non-vegan. + cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/meatproduct /obj/item/reagent_containers/food/snacks/meat/slab/meatproduct name = "meat product" @@ -255,6 +258,7 @@ bitesize = 4 tastes = list("meat" = 1, "wheat" = 1) foodtype = GRAIN + cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/meatproduct /obj/item/reagent_containers/food/snacks/meat/slab/gorilla name = "gorilla meat" @@ -309,10 +313,15 @@ /obj/item/reagent_containers/food/snacks/meat/steak/chicken name = "chicken steak" //Can you have chicken steaks? Maybe this should be renamed once it gets new sprites. tastes = list("chicken" = 1) + icon_state = "bird_steak" /obj/item/reagent_containers/food/snacks/meat/steak/plain foodtype = MEAT +/obj/item/reagent_containers/food/snacks/meat/steak/meatproduct + foodtype = MEAT + icon_state = "meatproduct_steak" + /obj/item/reagent_containers/food/snacks/meat/steak/plain/human tastes = list("tender meat" = 1) foodtype = MEAT | GROSS @@ -391,6 +400,7 @@ name = "raw chicken cutlet" cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/chicken tastes = list("chicken" = 1) + icon_state = "bird_cutlet" /obj/item/reagent_containers/food/snacks/meat/rawcutlet/killertomato name = "raw killer tomato cutlet" @@ -465,3 +475,4 @@ /obj/item/reagent_containers/food/snacks/meat/cutlet/chicken name = "chicken cutlet" tastes = list("chicken" = 1) + icon_state = "bird_cutlet_cooked" \ No newline at end of file diff --git a/icons/obj/food/burgerbread.dmi b/icons/obj/food/burgerbread.dmi index 3b13f8a0..a5c3e7df 100644 Binary files a/icons/obj/food/burgerbread.dmi and b/icons/obj/food/burgerbread.dmi differ diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi index b6a62e8e..ba0bfeec 100644 Binary files a/icons/obj/food/food.dmi and b/icons/obj/food/food.dmi differ diff --git a/icons/obj/food/food_ingredients.dmi b/icons/obj/food/food_ingredients.dmi index b761943d..385203d9 100644 Binary files a/icons/obj/food/food_ingredients.dmi and b/icons/obj/food/food_ingredients.dmi differ