-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fork/lunchboxes' into 2024/03/19-Lunchboxes
- Loading branch information
Showing
50 changed files
with
530 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
book-text-lunchbox-generic = Hello Honey! | ||
I've packed your lunch for this shift, I hope you enjoy it!! | ||
Love you so so much, | ||
- Mum. | ||
book-text-lunchbox-healthy = Hello Honey! | ||
I've packed you something healthy for this shift! I hope you enjoy it!! | ||
Love you so so much, | ||
- Mum. | ||
book-text-lunchbox-unhealthy = Hello Honey! | ||
I've packed you something fun for this shift! I hope you enjoy it!! | ||
Love you so so much, | ||
- Mum. |
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
FoodButter: 4 | ||
FoodCheese: 1 | ||
FoodMeat: 6 | ||
|
||
LunchboxGenericFilledRandom: 5 # Delta-V Adds Lunchbox |
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ | |
DrinkMugOne: 1 | ||
DrinkMugRainbow: 2 | ||
DrinkMugRed: 2 | ||
LunchboxGeneric: 10 # Delta-V Adds Lunchbox |
26 changes: 26 additions & 0 deletions
26
Resources/Prototypes/DeltaV/Catalog/Fills/Paper/manuals.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,26 @@ | ||
- type: entity | ||
parent: Paper | ||
id: PaperWrittenNoteFromMumGeneric | ||
name: note from mom | ||
suffix: Lunchbox, Generic | ||
components: | ||
- type: Paper | ||
content: book-text-lunchbox-generic | ||
|
||
- type: entity | ||
parent: PaperWrittenNoteFromMumGeneric | ||
id: PaperWrittenNoteFromMumHealthy | ||
name: note from mom | ||
suffix: Lunchbox, Healthy | ||
components: | ||
- type: Paper | ||
content: book-text-lunchbox-healthy | ||
|
||
- type: entity | ||
parent: PaperWrittenNoteFromMumGeneric | ||
id: PaperWrittenNoteFromMumUnhealthy | ||
name: note from mom | ||
suffix: Lunchbox, Unhealthy | ||
components: | ||
- type: Paper | ||
content: book-text-lunchbox-unhealthy |
265 changes: 265 additions & 0 deletions
265
Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/Containers/lunchbox.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,265 @@ | ||
- type: entity | ||
id: LunchboxGeneric | ||
parent: [ BoxCardboard, BaseBagOpenClose ] | ||
name: lunchbox | ||
description: For on-the-go meal carrying needs. | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/generic.rsi | ||
layers: | ||
- state: box | ||
- state: box-open | ||
map: ["openLayer"] | ||
- type: Item | ||
size: Normal | ||
shape: null | ||
sprite: DeltaV/Objects/Storage/Lunchbox/generic.rsi | ||
heldPrefix: box | ||
- type: Storage | ||
maxItemSize: Normal | ||
grid: | ||
- 0,0,1,1 | ||
- 3,0,1,1 | ||
- 4,0,4,2 | ||
- type: PhysicalComposition | ||
materialComposition: | ||
Plastic: 100 | ||
- type: MeleeWeapon | ||
damage: | ||
types: | ||
Blunt: 2 | ||
soundHit: | ||
path: "/Audio/Weapons/click.ogg" | ||
- type: StaticPrice | ||
price: 10 | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxGenericFilledRandom | ||
suffix: Filled, Random | ||
name: pre-packed lunchbox | ||
description: Packed with love. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: FoodPizzaArnoldSlice | ||
orGroup: HealthyOrUnhealthyMain | ||
prob: 0.5 | ||
amount: 2 | ||
- id: FoodApple | ||
orGroup: HealthyOrUnhealthyMain | ||
prob: 0.5 | ||
- id: DrinkWaterBottleFull | ||
orGroup: HealthyOrUnhealthyDrink | ||
prob: 0.5 | ||
- id: DrinkCartonOrange | ||
orGroup: HealthyOrUnhealthyDrink | ||
prob: 0.5 | ||
- id: FoodSnackCheesie | ||
orGroup: HealthyOrUnhealthySnack | ||
prob: 0.25 | ||
- id: FoodSnackChocolate | ||
orGroup: HealthyOrUnhealthySnack | ||
prob: 0.25 | ||
- id: FoodCarrot | ||
orGroup: HealthyOrUnhealthySnack | ||
prob: 0.5 | ||
- id: PaperWrittenNoteFromMumGeneric | ||
prob: 0.1 | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxGenericFilledHealthy | ||
suffix: Filled, Healthy | ||
name: pre-packed lunchbox | ||
description: Packed with healthy love. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: FoodApple | ||
- id: DrinkWaterBottleFull | ||
- id: FoodCarrot | ||
- id: PaperWrittenNoteFromMumHealthy | ||
prob: 0.1 | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxGenericFilledUnhealthy | ||
suffix: Filled, Unhealthy | ||
name: pre-packed lunchbox | ||
description: Packed with love. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: FoodPizzaArnoldSlice | ||
amount: 2 | ||
- id: DrinkCartonOrange | ||
- id: FoodSnackCheesie | ||
orGroup: UnhealthySnack | ||
prob: 0.25 | ||
- id: FoodSnackChocolate | ||
orGroup: UnhealthySnack | ||
prob: 0.25 | ||
- id: PaperWrittenNoteFromMumUnhealthy | ||
prob: 0.1 | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxCommand | ||
suffix: Command | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/command.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/command.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxCommandFilledRandom | ||
suffix: Command, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/command.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/command.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxSecurity | ||
suffix: Security | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/security.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/security.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxSecurityFilledRandom | ||
suffix: Security, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/security.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/security.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxMedical | ||
suffix: Medical | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/medical.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/medical.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxMedicalFilledRandom | ||
suffix: Medical, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/medical.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/medical.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxLogistics | ||
suffix: Logistics | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/logistics.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/logistics.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxLogisticsFilledRandom | ||
suffix: Logistics, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/logistics.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/logistics.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxEngineering | ||
suffix: Engineering | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/engineering.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/engineering.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxEngineeringFilledRandom | ||
suffix: Engineering, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/engineering.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/engineering.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxEpistemics | ||
suffix: Epistemics | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/epistemics.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/epistemics.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxEpistemicsFilledRandom | ||
suffix: Epistemics, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/epistemics.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/epistemics.rsi | ||
|
||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxService | ||
suffix: Service | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/service.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/service.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxServiceFilledRandom | ||
suffix: Service, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/service.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/service.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxSyndicate | ||
suffix: Syndicate | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/syndicate.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/syndicate.rsi | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxSyndicateFilledRandom | ||
suffix: Syndicate, Filled, Random | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Storage/Lunchbox/syndicate.rsi | ||
- type: Item | ||
sprite: DeltaV/Objects/Storage/Lunchbox/syndicate.rsi |
Binary file added
BIN
+437 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/command.rsi/box-inhand-left.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
+478 Bytes
...urces/Textures/DeltaV/Objects/Storage/Lunchbox/command.rsi/box-inhand-right.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
+356 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/command.rsi/box-open.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
+399 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/command.rsi/box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/command.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,25 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "made by noctyrnal (github) from the honkbox sprite made by brainfood1183 (github)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "box" | ||
}, | ||
{ | ||
"name": "box-open" | ||
}, | ||
{ | ||
"name": "box-inhand-left", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "box-inhand-right", | ||
"directions": 4 | ||
} | ||
] | ||
} |
Binary file added
BIN
+450 Bytes
...es/Textures/DeltaV/Objects/Storage/Lunchbox/engineering.rsi/box-inhand-left.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
+492 Bytes
...s/Textures/DeltaV/Objects/Storage/Lunchbox/engineering.rsi/box-inhand-right.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
+331 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/engineering.rsi/box-open.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
+372 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/engineering.rsi/box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/engineering.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,25 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "made by noctyrnal (github) from the honkbox sprite made by brainfood1183 (github)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "box" | ||
}, | ||
{ | ||
"name": "box-open" | ||
}, | ||
{ | ||
"name": "box-inhand-left", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "box-inhand-right", | ||
"directions": 4 | ||
} | ||
] | ||
} |
Binary file added
BIN
+447 Bytes
...ces/Textures/DeltaV/Objects/Storage/Lunchbox/epistemics.rsi/box-inhand-left.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
+492 Bytes
...es/Textures/DeltaV/Objects/Storage/Lunchbox/epistemics.rsi/box-inhand-right.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
+349 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/epistemics.rsi/box-open.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
+388 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/epistemics.rsi/box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/epistemics.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,25 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "made by noctyrnal (github) from the honkbox sprite made by brainfood1183 (github)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "box" | ||
}, | ||
{ | ||
"name": "box-open" | ||
}, | ||
{ | ||
"name": "box-inhand-left", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "box-inhand-right", | ||
"directions": 4 | ||
} | ||
] | ||
} |
Binary file added
BIN
+426 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/generic.rsi/box-inhand-left.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
+466 Bytes
...urces/Textures/DeltaV/Objects/Storage/Lunchbox/generic.rsi/box-inhand-right.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
+246 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/generic.rsi/box-open.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
+293 Bytes
Resources/Textures/DeltaV/Objects/Storage/Lunchbox/generic.rsi/box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.