-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/wizards/master'
- Loading branch information
Showing
11 changed files
with
127 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_baked_whole.yml & food_baked_single.yml | ||
# Base | ||
|
||
- type: entity | ||
id: FoodBagelBase | ||
parent: FoodInjectableBase | ||
abstract: true | ||
description: A delicious bagel. | ||
components: | ||
- type: FlavorProfile | ||
flavors: | ||
- bread | ||
- type: Sprite | ||
sprite: Objects/Consumable/Food/Baked/bagel.rsi | ||
state: bagel | ||
- type: SolutionContainerManager | ||
solutions: | ||
food: | ||
maxVol: 7 | ||
reagents: | ||
- ReagentId: Nutriment | ||
Quantity: 5 | ||
|
||
- type: entity | ||
id: FoodBagel | ||
name: bagel | ||
parent: FoodBagelBase | ||
|
||
- type: entity | ||
id: FoodBagelPoppy | ||
parent: FoodBagelBase | ||
name: poppy seed bagel | ||
description: A delicious bagel topped with bicaridine-infused poppy seeds. | ||
components: | ||
- type: FlavorProfile | ||
flavors: | ||
- bread | ||
- medicine | ||
- type: Sprite | ||
state: bagel-poppy | ||
- type: SolutionContainerManager | ||
solutions: | ||
food: | ||
maxVol: 12 | ||
reagents: | ||
- ReagentId: Bicaridine | ||
Quantity: 5 | ||
- ReagentId: Nutriment | ||
Quantity: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
- type: constructionGraph | ||
id: DoughRope | ||
start: start | ||
graph: | ||
- node: start | ||
entity: FoodDoughSlice | ||
edges: | ||
- to: rolled | ||
steps: | ||
- tool: Rolling | ||
doAfter: 1 | ||
- node: rolled | ||
entity: FoodDoughRope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+389 Bytes
Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-poppy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+468 Bytes
Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions
17
Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Bagel and BagelPoppy were created by DrEnzyme", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "bagel" | ||
}, | ||
{ | ||
"name": "bagel-poppy" | ||
} | ||
] | ||
} |
Binary file added
BIN
+386 Bytes
Resources/Textures/Objects/Consumable/Food/ingredients.rsi/dough-rope.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,9 @@ | |
{ | ||
"name": "dough-pie" | ||
}, | ||
{ | ||
"name": "dough-rope" | ||
}, | ||
{ | ||
"name": "dough-flat" | ||
}, | ||
|