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

Add spicy rock pizza #30116

Merged
merged 7 commits into from
Jul 23, 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 @@ -78,5 +78,6 @@
- FoodMeatRatdoubleKebab
- FoodMeatSnakeKebab
- FoodPizzaArnoldSlice
- FoodPizzaUraniumSlice
- FoodTacoRat
rareChance: 0.05
Original file line number Diff line number Diff line change
Expand Up @@ -547,3 +547,76 @@
- ReagentId: Vitamin
Quantity: 1
# Tastes like stale crust, rancid cheese, mushroom.

- type: entity
name: spicy rock pizza
parent: FoodPizzaBase
id: FoodPizzaUranium
description: Spicy pizza covered in peppers and uranium.
components:
- type: FlavorProfile
flavors:
- spicy
- cheesy
- oily
- bread
- type: Sprite
layers:
- state: uranium-pizza
- type: SliceableFood
slice: FoodPizzaUraniumSlice
- type: Tag
tags:
- Meat
- Pizza
- type: PointLight
enabled: true
radius: 2
- type: SolutionContainerManager
solutions:
food:
maxVol: 40
reagents:
- ReagentId: Nutriment
Quantity: 20
- ReagentId: Radium
Quantity: 4
- ReagentId: Uranium
Quantity: 16

- type: entity
name: slice of spicy rock pizza
parent: FoodPizzaSliceBase
id: FoodPizzaUraniumSlice
description: A glowing slice of spicy rock pizza.
components:
- type: FlavorProfile
flavors:
- spicy
- cheesy
- oily
- bread
- type: Sprite
layers:
- state: uranium-slice
- type: Tag
tags:
- Meat
- Pizza
- Slice
- type: PointLight
enabled: true
radius: 2
- type: SolutionContainerManager
solutions:
food:
maxVol: 5
reagents:
- ReagentId: Nutriment
Quantity: 2.5
- ReagentId: Radium
Quantity: 0.5
- ReagentId: Uranium
Quantity: 2

# Tastes like crust, tomato, cheese, radiation.
11 changes: 11 additions & 0 deletions Resources/Prototypes/Recipes/Cooking/meal_recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,17 @@
FoodCheeseSlice: 1
FoodTomato: 1

- type: microwaveMealRecipe
id: RecipeUraniumPizza
name: spicy rock pizza recipe
result: FoodPizzaUranium
time: 30
solids:
FoodDoughFlat: 1
FoodChiliPepper: 2
FoodTomato: 2
SheetUranium1: 2

#Italian
- type: microwaveMealRecipe
id: RecipeBoiledSpaghetti
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa",
"copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, Spicy Rock Pizza modified from margherita pizza by mkanke",
"size": {
"x": 32,
"y": 32
Expand Down Expand Up @@ -137,6 +137,12 @@
{
"name": "box-inhand-left",
"directions": 4
},
{
"name": "uranium-pizza"
},
{
"name": "uranium-slice"
}
]
}
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.
Loading