Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: blue and purple tomato soup #1781

Merged
4 commits merged into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,65 @@
sprite: DeltaV/Objects/Consumable/Food/scrambledeggs.rsi
state: scrambled-eggs
# Tastes like eggs, butter and salt

- type: entity
name: blue tomato soup
parent: FoodBowlBase
id: FoodSoupTomatoBlue
description: It's hard to avoid spilling this tomato soup...
components:
- type: FlavorProfile
flavors:
- funny
- tomato
- type: Sprite
sprite: DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi
layers:
- state: bowl
- state: blue-tomato
- type: SolutionContainerManager
solutions:
food:
maxVol: 12
reagents:
- ReagentId: Nutriment
Quantity: 3
- ReagentId: SpaceLube
Quantity: 6
- ReagentId: Water
Quantity: 3
- type: Tag
tags:
- Fruit
- Soup

- type: entity
name: purple tomato soup
parent: FoodBowlBase
id: FoodSoupTomatoPurple
description: Do they make purple tomatoes?
components:
- type: FlavorProfile
flavors:
- tingly
- tomato
- type: Sprite
sprite: DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi
layers:
- state: bowl
- state: purple-tomato
- type: SolutionContainerManager
solutions:
food:
maxVol: 12
reagents:
- ReagentId: Nutriment
Quantity: 3
- ReagentId: SpaceLube
Quantity: 3
- ReagentId: Water
Quantity: 6
- type: Tag
tags:
- Fruit
- Soup
23 changes: 23 additions & 0 deletions Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,26 @@
FoodDoughPie: 1
FoodPumpkin: 1
FoodPlateTin: 1

- type: microwaveMealRecipe
id: RecipeBlueTomatoSoup
name: blue tomato soup recipe
result: FoodSoupTomatoBlue
time: 10
reagents:
Water: 10
solids:
FoodBowlBig: 1
FoodBlueTomato: 2

- type: microwaveMealRecipe
id: RecipePurpleTomatoSoup
name: purple tomato soup recipe
result: FoodSoupTomatoPurple
time: 10
reagents:
Water: 10
solids:
FoodBowlBig: 1
FoodBlueTomato: 1
FoodTomato: 1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Bowl taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, Tomato texture created by potato1234_x and recolored by DisposableCrewmember42",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "bowl"
},
{
"name": "blue-tomato"
},
{
"name": "purple-tomato"
}
]
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading