diff --git a/code/game/objects/items/food/pastries.dm b/code/game/objects/items/food/pastries.dm index 0b96101a99d..b94b45b6d46 100644 --- a/code/game/objects/items/food/pastries.dm +++ b/code/game/objects/items/food/pastries.dm @@ -61,6 +61,56 @@ else . += span_warning("You're not too sure what's on top though...") +/obj/item/food/muffin/banana + name = "banana muffin" + icon = 'icons/psychonaut/obj/food/food.dmi' + icon_state = "banana_muffin" + desc = "A delicious and spongy little cake, with banana." + tastes = list("muffin" = 3, "banana" = 1) + foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST + venue_value = FOOD_PRICE_NORMAL + crafting_complexity = FOOD_COMPLEXITY_3 + +/obj/item/food/muffin/carrot + name = "banana muffin" + icon = 'icons/psychonaut/obj/food/food.dmi' + icon_state = "carrot_muffin" + desc = "A delicious and spongy little cake, with carrot." + tastes = list("muffin" = 3, "carrot" = 1) + foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST + venue_value = FOOD_PRICE_NORMAL + crafting_complexity = FOOD_COMPLEXITY_3 + +/obj/item/food/muffin/watermelon + name = "watermelon muffin" + icon = 'icons/psychonaut/obj/food/food.dmi' + icon_state = "watermelon_muffin" + desc = "A delicious and spongy little cake, with watermelon." + tastes = list("muffin" = 3, "watermelonslice" = 1) + foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST + venue_value = FOOD_PRICE_NORMAL + crafting_complexity = FOOD_COMPLEXITY_3 + +/obj/item/food/muffin/pineapple + name = "pineapple muffin" + icon = 'icons/psychonaut/obj/food/food.dmi' + icon_state = "pineapple_muffin" + desc = "A delicious and spongy little cake, with pineapple." + tastes = list("muffin" = 3, "grape" = 1) + foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST + venue_value = FOOD_PRICE_NORMAL + crafting_complexity = FOOD_COMPLEXITY_3 + +/obj/item/food/muffin/grapes + name = "Grapes muffin" + icon = 'icons/psychonaut/obj/food/food.dmi' + icon_state = "grapes_muffin" + desc = "A delicious and spongy little cake, with grapes" + tastes = list("muffin" = 3, "grapes" = 1) + foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST + venue_value = FOOD_PRICE_NORMAL + crafting_complexity = FOOD_COMPLEXITY_3 + ////////////////////////////////////////////WAFFLES//////////////////////////////////////////// /obj/item/food/waffles 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 522f6e9f695..0bd5ab4b592 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -476,6 +476,56 @@ result = /obj/item/food/muffin/booberry category = CAT_PASTRY +/datum/crafting_recipe/food/bananamuffin + name = "Banana muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/food/pastrybase = 1, + /obj/item/food/grown/banana = 1 + ) + result = /obj/item/food/muffin/banana + category = CAT_PASTRY + +/datum/crafting_recipe/food/watermelonmuffin + name = "Watermelon muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/food/pastrybase = 1, + /obj/item/food/watermelonslice = 2, + ) + result = /obj/item/food/muffin/watermelon + category = CAT_PASTRY + +/datum/crafting_recipe/food/pineapplemuffin + name = "Pineapple muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/food/pastrybase = 1, + /obj/item/food/grown/pineapple = 1, + ) + result = /obj/item/food/muffin/pineapple + category = CAT_PASTRY + +/datum/crafting_recipe/food/grapesmuffin + name = "Grapes muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/food/pastrybase = 1, + /obj/item/food/grown/grapes = 1, + ) + result = /obj/item/food/muffin/grapes + category = CAT_PASTRY + +/datum/crafting_recipe/food/carrotmuffin + name = "Carrot muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/food/pastrybase = 1, + /obj/item/food/grown/carrot = 1, + ) + result = /obj/item/food/muffin/carrot + category = CAT_PASTRY + ////////////////////////////////////////////OTHER//////////////////////////////////////////// diff --git a/icons/psychonaut/obj/food/food.dmi b/icons/psychonaut/obj/food/food.dmi new file mode 100644 index 00000000000..c7e42f1754f Binary files /dev/null and b/icons/psychonaut/obj/food/food.dmi differ