Adds high capacity water tanks. (#6649)

This commit is contained in:
Lamrr
2022-02-20 12:07:08 +11:00
committed by GitHub
parent f4448547c2
commit 3d46d2fccf
3 changed files with 30 additions and 12 deletions

View File

@@ -64,3 +64,26 @@
reagents: reagents:
- ReagentId: Water - ReagentId: Water
Quantity: 1500 Quantity: 1500
- type: entity
parent: StorageTank
id: WaterTankHighCapacity
name: high-capacity water tank
suffix: Full
description: A highly pressurized water tank made to hold gargantuan amounts of water.
components:
- type: Sprite
sprite: Structures/Storage/tanks.rsi
state: highwatertank
- type: SolutionContainerManager
solutions:
tank:
reagents:
- ReagentId: Water
# This is *100, 000* on /tg/
Quantity: 10000
maxVol: 10000
# It is pressurized...
- type: ReagentTank
transferAmount: 100

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -1,25 +1,20 @@
{ {
"version": 1, "version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/8442af39ee82b813194f71db82edd2923d97818d",
"size": { "size": {
"x": 32, "x": 32,
"y": 32 "y": 32
}, },
"states": [ "states": [
{ {
"name": "watertank", "name": "watertank"
"delays": [
[
1
]
]
}, },
{ {
"name": "fueltank", "name": "fueltank"
"delays": [ },
[ {
1 "name": "highwatertank"
]
]
} }
] ]
} }