Adds Apple Fritters, a classic breakfast staple, to the kitchen roster (#96240)

## About The Pull Request

This adds apple fritters, a breakfast food that is strikingly absent
considering we already have banana and pineapple fritters.

I decided to make them terran food (unlike the other 2 fritter types)
since they don't really fit with the martian theming.

Sprite provided by Dendydoom.

I kind of sort of updated the PR body to say I was using ArcaneMusic's
sprite but they mentioned the sprite being used was ILLEGAL and STOLEN
so I'm just going with the old one. Oops

## Why It's Good For The Game

They're a staple of pastries. Now you can consume and absorb the
nutrients of one.
## Changelog
🆑 Rhials, Dendydoom
add: Apple Fritters have been added to your local chef's cookbook!
/🆑
This commit is contained in:
Rhials
2026-06-06 18:53:10 +02:00
committed by GitHub
parent edee1caaf6
commit 98b50f9e6f
3 changed files with 26 additions and 0 deletions
+15
View File
@@ -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