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

Port ingredient containers from frontier #2504

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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 @@ -21,3 +21,6 @@
FoodCheese: 1
FoodMeat: 6
LunchboxGenericFilledRandom: 5 # Delta-V Adds Lunchbox
ReagentContainerSalt: 1 # DeltaV adds big containers
ReagentContainerPepper: 1 # DeltaV adds big containers
ReagentContainerChocolate: 1 # DeltaV adds big containers
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
- type: entity
parent: ReagentPacketBase
id: ReagentContainerSalt
name: salt container
description: A big container of salt. Good for cooking!
components:
- type: Sprite
sprite: DeltaV/Objects/Consumable/Food/ingredients.rsi
state: salt-big
- type: SolutionContainerManager
solutions:
food:
maxVol: 50
reagents:
- ReagentId: TableSalt
Quantity: 50
- type: Drink
solution: food
useSound:
path: /Audio/Items/eating_1.ogg

- type: entity
parent: ReagentPacketBase
id: ReagentContainerPepper
name: pepper container
description: A big container of pepper. Good for cooking!
components:
- type: Sprite
sprite: DeltaV/Objects/Consumable/Food/ingredients.rsi
state: pepper-big
- type: SolutionContainerManager
solutions:
food:
maxVol: 50
reagents:
- ReagentId: Blackpepper
Quantity: 50

- type: entity
parent: ReagentPacketBase
id: ReagentContainerChocolate
name: cocoa powder bag
description: A big bag of cocoa powder. Good for cooking!
components:
- type: Sprite
sprite: DeltaV/Objects/Consumable/Food/ingredients.rsi
state: cocoa-chip-big
- type: SolutionContainerManager
solutions:
food:
reagents:
- ReagentId: CocoaPowder
Quantity: 50
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
- id: FoodContainerEgg
- id: FoodCondimentBottleEnzyme
- id: DrinkSodaWaterBottleFull
- id: FoodShakerSalt
- id: FoodShakerPepper
- id: ReagentContainerSalt # DeltaV - Replaced salt and pepper shakers with bulk versions
- id: ReagentContainerPepper
- !type:GroupSelector
children:
- id: ReagentContainerFlour
Expand All @@ -50,6 +50,7 @@
- id: ReagentContainerCornmealSmall
- id: ReagentContainerRiceSmall
- id: ReagentContainerSugarSmall
- id: ReagentContainerChocolate # DeltaV - Adds bulk chocolate container
- !type:GroupSelector
children:
- id: DrinkMilkCarton
Expand Down
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": "Frontier - ghostprince & gentlebutter",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "salt-big"
},
{
"name": "pepper-big"
},
{
"name": "cocoa-chip-big"
}
]
}
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