-
Notifications
You must be signed in to change notification settings - Fork 146
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
Various Lunchboxes #13
Closed
DangerRevolution
wants to merge
10
commits into
Simple-Station:master
from
DangerRevolution:lunchbox
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
00ba1ef
locale
DangerRevolution cb157be
.yml
DangerRevolution 83936f5
sprites and .json's
DangerRevolution c80b352
held prefix
DangerRevolution b11e34f
Merge branch 'Simple-Station:master' into lunchbox
DangerRevolution f87515b
new lunchbox
DangerRevolution d3c22e4
Merge branch 'lunchbox' of https://github.com/DangerRevolution/Einste…
DangerRevolution acf5d84
Merge branch 'master' into lunchbox
DangerRevolution 3a744a3
Merge branch 'master' into lunchbox
DangerRevolution d3365a1
fix the linter
DangerRevolution File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ | |
DrinkMugOne: 1 | ||
DrinkMugRainbow: 2 | ||
DrinkMugRed: 2 | ||
LunchboxGeneric: 10 |
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 |
313 changes: 313 additions & 0 deletions
313
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,313 @@ | ||
- 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.rsi | ||
layers: | ||
- state: generic | ||
- state: generic-open | ||
map: ["openLayer"] | ||
- type: Item | ||
size: Normal | ||
shape: null | ||
sprite: DeltaV/Objects/Storage/lunchbox.rsi | ||
heldPrefix: generic | ||
- 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 | ||
layers: | ||
- state: command | ||
- state: command-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: command | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxCommandFilledRandom | ||
suffix: Command, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: command | ||
- state: command-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: command | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxSecurity | ||
suffix: Security | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: security | ||
- state: security-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: security | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxSecurityFilledRandom | ||
suffix: Security, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: security | ||
- state: security-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: security | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxMedical | ||
suffix: Medical | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: medical | ||
- state: medical-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: medical | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxMedicalFilledRandom | ||
suffix: Medical, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: medical | ||
- state: medical-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: medical | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxLogistics | ||
suffix: Logistics | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: logistics | ||
- state: logistics-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: logistics | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxLogisticsFilledRandom | ||
suffix: Logistics, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: logistics | ||
- state: logistics-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: logistics | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxEngineering | ||
suffix: Engineering | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: engineering | ||
- state: engineering-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: engineering | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxEngineeringFilledRandom | ||
suffix: Engineering, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: engineering | ||
- state: engineering-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: engineering | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxEpistemics | ||
suffix: Epistemics | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: epistemics | ||
- state: epistemics-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: epistemics | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxEpistemicsFilledRandom | ||
suffix: Epistemics, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: epistemics | ||
- state: epistemics-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: epistemics | ||
|
||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxService | ||
suffix: Service | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: service | ||
- state: service-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: service | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxServiceFilledRandom | ||
suffix: Service, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: service | ||
- state: service-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: service | ||
|
||
- type: entity | ||
parent: LunchboxGeneric | ||
id: LunchboxSyndicate | ||
suffix: Syndicate | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: syndicate | ||
- state: syndicate-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: syndicate | ||
|
||
- type: entity | ||
parent: LunchboxGenericFilledRandom | ||
id: LunchboxSyndicateFilledRandom | ||
suffix: Syndicate, Filled, Random | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: syndicate | ||
- state: syndicate-open | ||
map: [ "openLayer" ] | ||
- type: Item | ||
heldPrefix: syndicate |
Binary file added
BIN
+437 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/command-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
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/command-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.rsi/command-open.png
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.
Binary file added
BIN
+450 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/engineering-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
...urces/Textures/DeltaV/Objects/Storage/lunchbox.rsi/engineering-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.rsi/engineering-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.rsi/engineering.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
+447 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/epistemics-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
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/epistemics-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.rsi/epistemics-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.rsi/epistemics.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
+426 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/generic-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
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/generic-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.rsi/generic-open.png
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.
Binary file added
BIN
+443 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/logistics-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
+489 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/logistics-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
+308 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/logistics-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
+346 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/logistics.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
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/medical-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
+503 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/medical-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
+309 Bytes
Resources/Textures/DeltaV/Objects/Storage/lunchbox.rsi/medical-open.png
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.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as resolved.
Sorry, something went wrong.