diff --git a/code/modules/food_and_drinks/food/snacks/meat.dm b/code/modules/food_and_drinks/food/snacks/meat.dm index bfb0ced2757..1b75c56eea4 100644 --- a/code/modules/food_and_drinks/food/snacks/meat.dm +++ b/code/modules/food_and_drinks/food/snacks/meat.dm @@ -88,6 +88,7 @@ /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard icon_state = "lizardmeat" desc = "Delicious dino damage." + cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/plain/human/lizard filling_color = "#6B8E23" tastes = list("meat" = 4, "scales" = 1) foodtype = MEAT | RAW @@ -157,12 +158,17 @@ /obj/item/reagent_containers/food/snacks/meat/slab/synthmeat name = "synthmeat" + icon_state = "meat_old" + cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/synth desc = "A synthetic slab of meat." foodtype = RAW | MEAT //hurr durr chemicals we're harmed in the production of this meat thus its non-vegan. /obj/item/reagent_containers/food/snacks/meat/slab/meatproduct name = "meat product" + icon_state = "meatproduct" desc = "A slab of station reclaimed and chemically processed meat product." + cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/meatproduct + tastes = list("meat flavoring" = 2, "modified starches" = 2, "natural & artificial dyes" = 1, "butyric acid" = 1) foodtype = RAW | MEAT /obj/item/reagent_containers/food/snacks/meat/slab/monkey @@ -308,6 +314,7 @@ /obj/item/reagent_containers/food/snacks/meat/slab/penguin name = "penguin meat" + icon_state = "birdmeat" desc = "A slab of penguin meat." list_reagents = list(/datum/reagent/consumable/nutriment/protein = 4, /datum/reagent/consumable/cooking_oil = 3) cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/penguin @@ -338,6 +345,7 @@ /obj/item/reagent_containers/food/snacks/meat/slab/chicken name = "chicken meat" + icon_state = "birdmeat" desc = "A slab of raw chicken. Remember to wash your hands!" list_reagents = list(/datum/reagent/consumable/nutriment/protein = 6) //low fat cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/chicken @@ -400,12 +408,31 @@ /obj/item/reagent_containers/food/snacks/meat/steak/penguin name = "penguin steak" + icon_state = "birdsteak" tastes = list("beef" = 1, "cod fish" = 1) /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. + icon_state = "birdsteak" tastes = list("chicken" = 1) +/obj/item/reagent_containers/food/snacks/meat/steak/plain/human/lizard + name = "lizard steak" + icon_state = "birdsteak" + tastes = list("juicy chicken" = 3, "scales" = 1) + foodtype = MEAT + +/obj/item/reagent_containers/food/snacks/meat/steak/meatproduct + name = "thermally processed meat product" + icon_state = "meatproductsteak" + tastes = list("enhanced char" = 2, "suspicious tenderness" = 2, "natural & artificial dyes" = 2, "emulsifying agents" = 1) + +/obj/item/reagent_containers/food/snacks/meat/steak/synth + name = "synthsteak" + desc = "A synthetic meat steak. It doesn't look quite right, now does it?" + icon_state = "meatsteak_old" + tastes = list("meat" = 4, "cryoxandone" = 1) + //////////////////////////////// MEAT CUTLETS /////////////////////////////////////////////////////// //Raw cutlets diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi index be504c95f39..8e064a3228f 100644 Binary files a/icons/obj/food/food.dmi and b/icons/obj/food/food.dmi differ