Skip to content

Commit

Permalink
muffin...
Browse files Browse the repository at this point in the history
  • Loading branch information
MrEmre12 committed Nov 27, 2024
1 parent e7e6d3e commit f0c53c0
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 0 deletions.
50 changes: 50 additions & 0 deletions code/game/objects/items/food/pastries.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
50 changes: 50 additions & 0 deletions code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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////////////////////////////////////////////


Expand Down
Binary file added icons/psychonaut/obj/food/food.dmi
Binary file not shown.

0 comments on commit f0c53c0

Please sign in to comment.