diff --git a/code/game/objects/items/food/pastries.dm b/code/game/objects/items/food/pastries.dm index 041dc116bcf..aedcbdf7c47 100644 --- a/code/game/objects/items/food/pastries.dm +++ b/code/game/objects/items/food/pastries.dm @@ -599,3 +599,18 @@ food_flags = FOOD_FINGER_FOOD w_class = WEIGHT_CLASS_SMALL crafting_complexity = FOOD_COMPLEXITY_3 + +/obj/item/food/apple_fritter + name = "apple fritter" + desc = "For something that looks like a pile of glazed dirt, it's suprisingly tart. It smells sweet enough to knock you unconscious." + icon_state = "apple_fritter" + food_reagents = list( + /datum/reagent/consumable/nutriment = 3, + /datum/reagent/consumable/nutriment/vitamin = 1, + /datum/reagent/consumable/sugar = 1, + /datum/reagent/consumable/applejuice = 1, + ) + tastes = list("apple" = 1, "glaze" = 1) + foodtypes = GRAIN|FRUIT|FRIED|DAIRY|BREAKFAST + w_class = WEIGHT_CLASS_SMALL + crafting_complexity = FOOD_COMPLEXITY_3 diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 47b0b834a1a..4d9f358a6f6 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -760,3 +760,14 @@ ) result = /obj/item/food/cookie/macaron dish_category = DISH_COOKIE + +/datum/crafting_recipe/food/apple_fritter + name = "Apple fritter" + reqs = list( + /obj/item/food/pastrybase = 1, + /obj/item/food/appleslice = 1, + ) + result = /obj/item/food/apple_fritter + added_foodtypes = GRAIN|FRUIT|FRIED|BREAKFAST + dish_category = DISH_PASTRY + meal_category = MEAL_BREAKFAST diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi index 84c9248a364..0ed1aaae4b9 100644 Binary files a/icons/obj/food/food.dmi and b/icons/obj/food/food.dmi differ