diff --git a/code/modules/food_and_drinks/food/snacks/meat.dm b/code/modules/food_and_drinks/food/snacks/meat.dm index 4d287fdb86..446eb41f36 100644 --- a/code/modules/food_and_drinks/food/snacks/meat.dm +++ b/code/modules/food_and_drinks/food/snacks/meat.dm @@ -269,7 +269,6 @@ /obj/item/reagent_containers/food/snacks/meat/slab/goliath name = "goliath meat" desc = "A slab of goliath meat. It's not very edible now, but it cooks great in lava." - list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/toxin = 5, /datum/reagent/consumable/cooking_oil = 3) icon_state = "goliathmeat" tastes = list("meat" = 1) foodtype = RAW | MEAT | TOXIC @@ -278,6 +277,19 @@ visible_message("[src] finishes cooking!") new /obj/item/reagent_containers/food/snacks/meat/steak/goliath(loc) qdel(src) + +/obj/item/reagent_containers/food/snacks/meat/slab/dragon + name = "ash drake meat" + desc = "Meat from an ash drake. It's probably not a good idea to eat this raw." + list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/toxin = 5, /datum/reagent/consumable/cooking_oil = 3) + icon_state = "goliathmeat" + tastes = list("meat" = 1) + foodtype = RAW | MEAT | TOXIC + +/obj/item/reagent_containers/food/snacks/meat/slab/dragon/burn() + visible_message("[src] finishes cooking!") + new /obj/item/reagent_containers/food/snacks/meat/steak/dragon(loc) + qdel(src) /obj/item/reagent_containers/food/snacks/meat/slab/meatwheat name = "meatwheat clump" @@ -395,6 +407,16 @@ trash = null tastes = list("meat" = 1, "rock" = 1) foodtype = MEAT + +/obj/item/reagent_containers/food/snacks/meat/steak/dragon + name = "dragon steak" + desc = "Spicy." + resistance_flags = LAVA_PROOF | FIRE_PROOF + icon_state = "goliathsteak" + list_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/capsaicin = 3) + trash = null + tastes = list("meat" = 1, "fire" = 1) + foodtype = MEAT /obj/item/reagent_containers/food/snacks/meat/steak/gondola name = "gondola steak"