Skip to content

Commit

Permalink
Add missing nacho recipes (space-wizards#33637)
Browse files Browse the repository at this point in the history
* Nacho recipes, nutrition, and trash

In meal_recipes.yml: Add recipes for Nachos, Cheesy Nachos, and Cuban Nachos.

In meals.yml: Add a solutions container to regular nachos so it lines up with the others, and add a small plate as trash to each one.

* Volumes, nutritional tweaks, and flavor

In meals.yml: Lowered maxVol on nachos to leave 5 units of space. Nachos nutriment and vitamin lowered for costing so little. A cheese wedge is 3.75 nutriment, so cheesy having 4 more total nutritional value lines up nicely to me.

Cuban nachos had too little volume to fit its reagents in the first place, so increased maxVol by 10. Chili peppers are 4 nutri / 4 vitamin and ketchup has a touch of tomato, so bumped to 8 and 5. Capsaicin lowered partly to make it an even 20u. Ketchup dilutes I guess. Also they don't have cheese so I changed the flavor profile to tomato instead.

In meal_recipes.yml: Cuban Nachos recipe tweaked to require one less pepper. Given above numbers, this fits the nutritional value imo.
  • Loading branch information
CheddaCheez authored Dec 3, 2024
1 parent 029b037 commit e50c98c
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 5 deletions.
30 changes: 25 additions & 5 deletions Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,25 @@
id: FoodMealNachos
description: Chips from Space Mexico.
components:
- type: Food
trash:
- FoodPlateSmall
- type: FlavorProfile
flavors:
- nachos
- type: Sprite
state: nachos
- type: SolutionContainerManager
solutions:
food:
maxVol: 11
reagents:
- ReagentId: Nutriment
Quantity: 4
- ReagentId: Vitamin
Quantity: 1
- ReagentId: TableSalt
Quantity: 1
# Tastes like nachos.

- type: entity
Expand All @@ -111,6 +125,9 @@
id: FoodMealNachosCheesy
description: The delicious combination of nachos and melting cheese.
components:
- type: Food
trash:
- FoodPlateSmall
- type: FlavorProfile
flavors:
- nachos
Expand All @@ -136,24 +153,27 @@
id: FoodMealNachosCuban
description: That's some dangerously spicy nachos.
components:
- type: Food
trash:
- FoodPlateSmall
- type: FlavorProfile
flavors:
- nachos
- cheesy
- tomato
- spicy
- type: Sprite
state: nachos-cuban
- type: SolutionContainerManager
solutions:
food:
maxVol: 15
maxVol: 25
reagents:
- ReagentId: Nutriment
Quantity: 7
- ReagentId: CapsaicinOil
Quantity: 8
- ReagentId: CapsaicinOil
Quantity: 7
- ReagentId: Vitamin
Quantity: 4
Quantity: 5
# Tastes like nachos, hot pepper.

- type: entity
Expand Down
35 changes: 35 additions & 0 deletions Resources/Prototypes/Recipes/Cooking/meal_recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1220,6 +1220,41 @@
solids:
FoodCarrot: 1

- type: microwaveMealRecipe
id: RecipeNachos
name: nachos recipe
result: FoodMealNachos
time: 10
reagents:
TableSalt: 1
solids:
FoodDoughTortillaFlat: 1
FoodPlateSmall: 1

- type: microwaveMealRecipe
id: RecipeNachosCheesy
name: cheesy nachos recipe
result: FoodMealNachosCheesy
time: 10
reagents:
TableSalt: 1
solids:
FoodCheeseSlice: 1
FoodDoughTortillaFlat: 1
FoodPlateSmall: 1

- type: microwaveMealRecipe
id: RecipeNachosCuban
name: cuban nachos recipe
result: FoodMealNachosCuban
time: 10
reagents:
Ketchup: 5
solids:
FoodChiliPepper: 1
FoodDoughTortillaFlat: 1
FoodPlateSmall: 1

- type: microwaveMealRecipe
id: RecipePopcorn
name: popcorn recipe
Expand Down

0 comments on commit e50c98c

Please sign in to comment.