diff --git a/code/game/objects/items/food/sandwichtoast.dm b/code/game/objects/items/food/sandwichtoast.dm index bf94cc39c77..ba6df4da230 100644 --- a/code/game/objects/items/food/sandwichtoast.dm +++ b/code/game/objects/items/food/sandwichtoast.dm @@ -121,3 +121,15 @@ /obj/item/food/hotdog/debug eat_time = 0 + +/obj/item/food/blt + name = "\improper BLT" + desc = "A classic bacon, lettuce, and tomato sandwich." + icon = 'icons/obj/food/burgerbread.dmi' + icon_state = "blt" + bite_consumption = 4 + food_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/protein = 5, /datum/reagent/consumable/nutriment/vitamin = 3) + tastes = list("bacon" = 3, "lettuce" = 2, "tomato" = 2, "bread" = 2) + foodtypes = GRAIN | MEAT | VEGETABLES | BREAKFAST + food_flags = FOOD_FINGER_FOOD + w_class = WEIGHT_CLASS_SMALL diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm index a3c4b193d0b..45535ec8ab0 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm @@ -62,3 +62,13 @@ result = /obj/item/food/hotdog subcategory = CAT_SANDWICH +/datum/crafting_recipe/food/blt + name = "BLT" + reqs = list( + /obj/item/food/breadslice/plain = 2, + /obj/item/food/meat/bacon = 2, + /obj/item/food/grown/cabbage = 1, + /obj/item/food/grown/tomato = 1 + ) + result = /obj/item/food/blt + subcategory = CAT_SANDWICH diff --git a/icons/obj/food/burgerbread.dmi b/icons/obj/food/burgerbread.dmi index 60044cdc6d0..bcee4de90f2 100644 Binary files a/icons/obj/food/burgerbread.dmi and b/icons/obj/food/burgerbread.dmi differ