-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
Resources/Prototypes/DeltaV/Entities/Objects/Misc/fire_extinguisher.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,32 @@ | ||
- type: entity | ||
name: bluespace fire extinguisher | ||
parent: FireExtinguisher | ||
id: FireExtinguisherBluespace | ||
description: An experimental fire extinguisher that uses bluespace technology to gradually refill itself. The faint blue glow is only slightly disconcerting. | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Misc/fire_extinguisher_bluespace.rsi | ||
layers: | ||
- state: fire_extinguisher_closed | ||
map: [ "enum.ToggleVisuals.Layer" ] | ||
- type: Item | ||
sprite: DeltaV/Objects/Misc/fire_extinguisher_bluespace.rsi | ||
size: Normal | ||
- type: SolutionContainerManager | ||
solutions: | ||
spray: | ||
maxVol: 200 | ||
reagents: | ||
- ReagentId: Water | ||
Quantity: 200 | ||
- type: PhysicalComposition | ||
materialComposition: | ||
Steel: 80 | ||
Bluespace: 20 | ||
- type: SolutionRegeneration | ||
solution: spray | ||
generated: | ||
reagents: | ||
- ReagentId: Water | ||
Quantity: 10 | ||
duration: 10 |
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,10 @@ | ||
- type: latheRecipe | ||
parent: BaseToolRecipe | ||
id: FireExtinguisherBluespace | ||
result: FireExtinguisherBluespace | ||
completetime: 6 | ||
materials: | ||
Steel: 1000 | ||
Silver: 250 | ||
Plasma: 500 | ||
Bluespace: 200 |
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
Binary file added
BIN
+422 Bytes
...eltaV/Objects/Misc/fire_extinguisher_bluespace.rsi/fire_extinguisher_closed.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
+475 Bytes
.../DeltaV/Objects/Misc/fire_extinguisher_bluespace.rsi/fire_extinguisher_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
+467 Bytes
...es/Textures/DeltaV/Objects/Misc/fire_extinguisher_bluespace.rsi/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
+453 Bytes
...s/Textures/DeltaV/Objects/Misc/fire_extinguisher_bluespace.rsi/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.
37 changes: 37 additions & 0 deletions
37
Resources/Textures/DeltaV/Objects/Misc/fire_extinguisher_bluespace.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,37 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-4.0", | ||
"copyright": "Made by .catshark (Discord) based on the fire extinguisher sprite", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "fire_extinguisher_open", | ||
"delays": [ | ||
[ | ||
0.1, | ||
0.1 | ||
] | ||
] | ||
}, | ||
{ | ||
"name": "fire_extinguisher_closed", | ||
"delays": [ | ||
[ | ||
0.1, | ||
0.1 | ||
] | ||
] | ||
}, | ||
{ | ||
"name": "inhand-right", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "inhand-left", | ||
"directions": 4 | ||
} | ||
] | ||
} |