-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
7a27e18
commit 88f3744
Showing
17 changed files
with
324 additions
and
17 deletions.
There are no files selected for viewing
123 changes: 123 additions & 0 deletions
123
Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Drinks/drinks-cartons.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,123 @@ | ||
- type: entity | ||
parent: DrinkBase | ||
id: DrinkJuiceBoxBaseFull | ||
abstract: true | ||
components: | ||
- type: Openable | ||
sound: | ||
collection: bottleOpenSounds #Could use a new sound someday ¯\_(ツ)_/¯ | ||
- type: Sealable | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
maxVol: 20 | ||
- type: Item | ||
size: Small | ||
- type: MeleeWeapon | ||
soundNoDamage: | ||
path: "/Audio/Effects/Fluids/splat.ogg" | ||
damage: | ||
types: | ||
Blunt: 0 | ||
- type: Damageable | ||
damageContainer: Inorganic | ||
- type: Destructible | ||
thresholds: | ||
- trigger: | ||
!type:DamageTrigger | ||
damage: 10 | ||
behaviors: | ||
- !type:SpillBehavior { } | ||
- !type:DoActsBehavior | ||
acts: [ "Destruction" ] | ||
#In future maybe add generic plastic scrap trash/debris | ||
- type: TrashOnSolutionEmpty | ||
solution: drink | ||
- type: Appearance | ||
- type: GenericVisualizer | ||
visuals: | ||
enum.OpenableVisuals.Opened: | ||
enum.OpenableVisuals.Layer: | ||
True: {state: "icon_open"} | ||
False: {state: "icon"} | ||
- type: Sprite | ||
layers: | ||
- state: icon | ||
map: ["enum.OpenableVisuals.Layer"] | ||
|
||
- type: entity | ||
parent: DrinkJuiceBoxBaseFull | ||
id: DrinkJuiceOrangeJuicebox | ||
name: orange juice box | ||
description: A great source of vitamins. Stay healthy! | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
reagents: | ||
- ReagentId: JuiceOrange | ||
Quantity: 20 | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Consumable/Drinks/juiceboxorange.rsi | ||
|
||
- type: entity | ||
parent: DrinkJuiceBoxBaseFull | ||
id: DrinkJuicePineappleJuicebox | ||
name: pineapple juice box | ||
description: Everyone's favourite juice. | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
reagents: | ||
- ReagentId: JuicePineapple | ||
Quantity: 20 | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Consumable/Drinks/juiceboxpineapple.rsi | ||
|
||
- type: entity | ||
parent: DrinkJuiceBoxBaseFull | ||
id: DrinkJuiceAppleJuicebox | ||
name: apple juice box | ||
description: Sweet apple juice. Don't be late for school! | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
reagents: | ||
- ReagentId: JuiceApple | ||
Quantity: 20 | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Consumable/Drinks/juiceboxapple.rsi | ||
|
||
- type: entity | ||
parent: DrinkJuiceBoxBaseFull | ||
id: DrinkJuiceGrapeJuicebox | ||
name: grape juice box | ||
description: Tasty grape juice in a fun little container. Non-alcoholic! | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
reagents: | ||
- ReagentId: JuiceGrape | ||
Quantity: 20 | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Consumable/Drinks/juiceboxgrape.rsi | ||
|
||
- type: entity | ||
parent: DrinkJuiceBoxBaseFull | ||
id: DrinkChocolateJuicebox | ||
name: chocolate milk juice box | ||
description: Tasty chocolate juice and milk in a small box. Contains Theobromine. | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
reagents: | ||
- ReagentId: HotCocoa | ||
Quantity: 10 | ||
- ReagentId: Milk # The milk of chocolate milk | ||
Quantity: 10 | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Consumable/Drinks/juiceboxchocolate.rsi |
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
+1.54 KB
Resources/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxapple.rsi/icon.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
...urces/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxapple.rsi/icon_open.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/DeltaV/Objects/Consumable/Drinks/juiceboxapple.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": "Taken from from tgstation at https://github.com/tgstation/tgstation/commit/cbb527fcec6fb1a79dce98f7e8b093307a63980e", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon_open" | ||
} | ||
] | ||
} |
Binary file added
BIN
+1.55 KB
Resources/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxchocolate.rsi/icon.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
+1.65 KB
...s/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxchocolate.rsi/icon_open.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/DeltaV/Objects/Consumable/Drinks/juiceboxchocolate.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": "Taken from from tgstation at https://github.com/tgstation/tgstation/commit/cbb527fcec6fb1a79dce98f7e8b093307a63980e and modified by Floofers", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon_open" | ||
} | ||
] | ||
} |
Binary file added
BIN
+1.52 KB
Resources/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxgrape.rsi/icon.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
+323 Bytes
...urces/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxgrape.rsi/icon_open.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/DeltaV/Objects/Consumable/Drinks/juiceboxgrape.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": "Taken from from tgstation at https://github.com/tgstation/tgstation/commit/cbb527fcec6fb1a79dce98f7e8b093307a63980e", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon_open" | ||
} | ||
] | ||
} |
Binary file added
BIN
+1.55 KB
Resources/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxorange.rsi/icon.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
+364 Bytes
...rces/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxorange.rsi/icon_open.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/DeltaV/Objects/Consumable/Drinks/juiceboxorange.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": "Taken from from tgstation at https://github.com/tgstation/tgstation/commit/cbb527fcec6fb1a79dce98f7e8b093307a63980e", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon_open" | ||
} | ||
] | ||
} |
Binary file added
BIN
+1.52 KB
Resources/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxpineapple.rsi/icon.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
+365 Bytes
...s/Textures/DeltaV/Objects/Consumable/Drinks/juiceboxpineapple.rsi/icon_open.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/DeltaV/Objects/Consumable/Drinks/juiceboxpineapple.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": "Taken from from tgstation at https://github.com/tgstation/tgstation/commit/cbb527fcec6fb1a79dce98f7e8b093307a63980e", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon_open" | ||
} | ||
] | ||
} |