-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds ice sink * buckets of fun * Making sure the recipe isn't a steel * Update service.yml * Update drinks_special.yml * Update drinks_special.yml * Update service.yml --------- Co-authored-by: Dvir <[email protected]>
- Loading branch information
Showing
7 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_special.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,17 @@ | ||
- type: entity | ||
parent: [BaseItem, BartenderMixer] | ||
id: DrinkIceBucketEmpty | ||
name: ice bucket | ||
suffix: empty | ||
description: A special bucket that was specifically designed to hold ice. | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
maxVol: 200 | ||
- type: Sprite | ||
sprite: Objects/Consumable/Drinks/icebucket.rsi | ||
state: icon | ||
- type: PhysicalComposition | ||
materialComposition: | ||
Steel: 50 |
39 changes: 39 additions & 0 deletions
39
Resources/Prototypes/_NF/Entities/Structures/Furniture/icebox.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,39 @@ | ||
- type: entity | ||
name: ice box | ||
description: This delightful machine is slowly filling with ice! | ||
id: IceboxEmpty | ||
parent: SinkEmpty | ||
components: | ||
- type: Sprite | ||
sprite: _NF/Structures/Furniture/icebox.rsi | ||
layers: | ||
- state: icebox | ||
- map: [ "enum.SolutionContainerLayers.Fill" ] | ||
state: icebox_fill-1 | ||
visible: false | ||
- type: Appearance | ||
- type: SolutionContainerVisuals | ||
maxFillLevels: 1 | ||
fillBaseName: icebox_fill- | ||
solutionName: drainBuffer | ||
- type: SolutionRegeneration | ||
solution: tank | ||
generated: | ||
reagents: | ||
- ReagentId: Ice | ||
Quantity: 1 | ||
|
||
- type: entity | ||
name: ice box | ||
id: Icebox | ||
parent: IceboxEmpty | ||
suffix: Ice | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drainBuffer: | ||
maxVol: 100 | ||
tank: | ||
reagents: | ||
- ReagentId: Ice | ||
Quantity: 500 |
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
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
+585 Bytes
Resources/Textures/_NF/Structures/Furniture/icebox.rsi/icebox_fill-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions
19
Resources/Textures/_NF/Structures/Furniture/icebox.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,19 @@ | ||
{ | ||
"version": 1, | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Icebox based on sink-fill-1 and sink_wide-fill-1 made by Topy for SS14, edited by DustyLens", | ||
"states": [ | ||
{ | ||
"name": "icebox", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "icebox_fill-1", | ||
"directions": 4 | ||
} | ||
] | ||
} |