diff --git a/code/modules/cooking/recipes/cutting_board_recipes.dm b/code/modules/cooking/recipes/cutting_board_recipes.dm index 6aba4b3386d..04c7660d5af 100644 --- a/code/modules/cooking/recipes/cutting_board_recipes.dm +++ b/code/modules/cooking/recipes/cutting_board_recipes.dm @@ -670,3 +670,12 @@ steps = list( PCWJ_ADD_ITEM(/obj/item/food/tapiocadough) ) + +/datum/cooking/recipe/nothingburger + container_type = /obj/item/reagent_containers/cooking/board + product_type = /obj/item/food/burger/nothing + catalog_category = COOKBOOK_CATEGORY_BURGS + steps = list( + PCWJ_ADD_ITEM(/obj/item/food/bun), + PCWJ_ADD_REAGENT("nothing", 10), + ) diff --git a/code/modules/food_and_drinks/food/foods/sandwiches.dm b/code/modules/food_and_drinks/food/foods/sandwiches.dm index a95f9e67bf7..a9320c37fee 100644 --- a/code/modules/food_and_drinks/food/foods/sandwiches.dm +++ b/code/modules/food_and_drinks/food/foods/sandwiches.dm @@ -338,6 +338,13 @@ list_reagents = list("nutriment" = 6, "cherryjelly" = 5, "vitamin" = 1) goal_difficulty = FOOD_GOAL_NORMAL +/obj/item/food/burger/nothing + name = "nothingburger" + desc = "You really expected more out of this." + icon_state = "nothingburger1" + bitesize = 5 + list_reagents = list("nothing" = 10) + tastes = list("nothing" = 4, "absolutely nothing" = 1, "ambient temperature" = 2) ////////////////////// // Sandwiches // diff --git a/icons/obj/food/burgerbread.dmi b/icons/obj/food/burgerbread.dmi index e8204d85815..a3a8675daaf 100644 Binary files a/icons/obj/food/burgerbread.dmi and b/icons/obj/food/burgerbread.dmi differ