-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to audit power costs of welding (#60660)
- Loading branch information
1 parent
1866f16
commit ce1081a
Showing
6 changed files
with
54 additions
and
35 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
[ | ||
{ | ||
"id": "tinyweldtank", | ||
"//": "Hot Max 24012 Acetylene Cylinder", | ||
"looks_like": "pressurized_tank", | ||
"type": "MAGAZINE", | ||
"name": { "str": "small welding tank" }, | ||
"description": "A compact steel cylinder designed for holding pressurized welding gases. It is marked with several faded and now unreadable symbols.", | ||
"weight": "1500 g", | ||
"volume": "1 L", | ||
"price": 5600, | ||
"description": "A compact MC size acetylene tank. It can pressurize up to 10 cubic feet of welding gas.", | ||
"weight": "3640 g", | ||
"volume": "3 L", | ||
"longest_side": "39 cm", | ||
"price": 15790, | ||
"price_postapoc": 100, | ||
"material": [ "steel" ], | ||
"symbol": "#", | ||
"color": "brown", | ||
"ammo_type": [ "weldgas" ], | ||
"capacity": 60, | ||
"count": 60, | ||
"capacity": 350, | ||
"count": 350, | ||
"flags": [ "NO_UNLOAD", "NO_RELOAD" ], | ||
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "weldgas": 60 }, "watertight": true } ] | ||
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "weldgas": 350 }, "watertight": true } ] | ||
}, | ||
{ | ||
"id": "weldtank", | ||
"//": "Lemorele B Steel Acetylene Cylinder", | ||
"looks_like": "pressurized_tank", | ||
"type": "MAGAZINE", | ||
"name": { "str": "welding tank" }, | ||
"description": "A large steel cylinder designed for holding pressurized welding gases. It is marked with several faded and now unreadable symbols.", | ||
"weight": "6000 g", | ||
"volume": "3 L", | ||
"price": 5600, | ||
"description": "A bulky B size acetylene tank. It can pressurize up to 40 cubic feet of welding gas.", | ||
"weight": "11360 g", | ||
"volume": "18 L", | ||
"longest_side": "60 cm", | ||
"price": 16990, | ||
"price_postapoc": 100, | ||
"material": [ "steel" ], | ||
"symbol": "#", | ||
"color": "brown", | ||
"ammo_type": [ "weldgas" ], | ||
"capacity": 240, | ||
"count": 240, | ||
"capacity": 1400, | ||
"count": 1400, | ||
"flags": [ "NO_UNLOAD", "NO_RELOAD" ], | ||
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "weldgas": 240 }, "watertight": true } ] | ||
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "weldgas": 1400 }, "watertight": true } ] | ||
} | ||
] |
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
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