forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
5e9e7b2
commit fdb6831
Showing
10 changed files
with
207 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"id": "paper_hat", | ||
"type": "ARMOR", | ||
"category": "armor", | ||
"name": { "str": "paper hat" }, | ||
"description": "A simple hat folded from paper. You can wear it but it's not particularly useful for anything.", | ||
"weight": "18 g", | ||
"volume": "36 ml", | ||
"price": 0, | ||
"price_postapoc": 0, | ||
"material": [ "paper" ], | ||
"symbol": "[", | ||
"warmth": 2, | ||
"looks_like": "tinfoil_hat", | ||
"material_thickness": 0.1, | ||
"color": "white", | ||
"armor": [ { "encumbrance_modifiers": [ "NONE" ], "coverage": 40, "covers": [ "head" ] } ] | ||
} | ||
] |
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,3 +1,13 @@ | ||
[ | ||
|
||
{ | ||
"id": "hood_rain_plastic", | ||
"copy-from": "hood_rain", | ||
"type": "ARMOR", | ||
"name": { "str": "plastic rain hood" }, | ||
"description": "A cheap plastic hood, meant to be used together with a rain coat to provide protection from rain.", | ||
"material": [ "plastic" ], | ||
"warmth": 2, | ||
"material_thickness": 0.1, | ||
"proportional": { "weight": 0.8, "volume": 0.8, "price": 0.8 } | ||
} | ||
] |
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,87 @@ | ||
[ | ||
{ | ||
"id": "jerrypack_big", | ||
"type": "ARMOR", | ||
"name": { "str": "steel jerrypack" }, | ||
"description": "A big steel jerrycan with two straps attached, for wearing it on back.", | ||
"weight": "4732 g", | ||
"volume": "27470 ml", | ||
"longest_side": "47 cm", | ||
"price": 5720, | ||
"price_postapoc": 120, | ||
"to_hit": -3, | ||
"bashing": 4, | ||
"material": [ "steel" ], | ||
"symbol": "[", | ||
"looks_like": "jerrypack", | ||
"color": "green", | ||
"material_thickness": 2, | ||
"pocket_data": [ | ||
{ | ||
"max_contains_volume": "20 L", | ||
"max_contains_weight": "25 kg", | ||
"max_item_volume": "32 ml", | ||
"watertight": true, | ||
"rigid": true | ||
} | ||
], | ||
"qualities": [ [ "BOIL", 1 ] ], | ||
"flags": [ "OVERSIZE", "BELTED", "WATER_FRIENDLY" ], | ||
"armor": [ { "encumbrance": 32, "coverage": 85, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ] | ||
}, | ||
{ | ||
"id": "jerrypack_clay", | ||
"type": "ARMOR", | ||
"name": { "str": "clay hydria with straps", "str_pl": "clay hydriai with straps" }, | ||
"description": "A 15-liter clay pot with two straps attached, for wearing it on back. Can carry solid items as well as liquids, but it's fragile.", | ||
"weight": "2387 g", | ||
"volume": "18132 ml", | ||
"price": 2720, | ||
"price_postapoc": 70, | ||
"to_hit": -1, | ||
"bashing": 1, | ||
"material": [ "clay" ], | ||
"symbol": "[", | ||
"looks_like": "jerrypack", | ||
"color": "green", | ||
"material_thickness": 2, | ||
"pocket_data": [ | ||
{ | ||
"max_contains_volume": "15 L", | ||
"max_contains_weight": "25 kg", | ||
"watertight": true, | ||
"rigid": true | ||
} | ||
], | ||
"qualities": [ [ "BOIL", 2 ], [ "CONTAIN", 1 ] ], | ||
"flags": [ "OVERSIZE", "BELTED", "WATER_FRIENDLY", "FRAGILE" ], | ||
"armor": [ { "encumbrance": 24, "coverage": 70, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ] | ||
}, | ||
{ | ||
"id": "jerrypack_gallon", | ||
"type": "ARMOR", | ||
"name": { "str": "gallon jug with strap", "str_pl": "gallon jugs with straps" }, | ||
"description": "A standard plastic jug used for milk and household cleaning chemicals with a strap attached, for wearing it on back.", | ||
"weight": "226 g", | ||
"volume": "3885 ml", | ||
"price": 60, | ||
"price_postapoc": 20, | ||
"to_hit": 1, | ||
"material": [ "plastic" ], | ||
"symbol": "[", | ||
"looks_like": "jerrypack", | ||
"color": "green", | ||
"material_thickness": 1, | ||
"pocket_data": [ | ||
{ | ||
"max_contains_volume": "3750 ml", | ||
"max_contains_weight": "8 kg", | ||
"max_item_volume": "32 ml", | ||
"watertight": true, | ||
"rigid": true | ||
} | ||
], | ||
"flags": [ "OVERSIZE", "BELTED", "WATER_FRIENDLY" ], | ||
"armor": [ { "encumbrance": 6, "coverage": 40, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ] | ||
} | ||
] |
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,30 @@ | ||
[ | ||
{ | ||
"result": "hood_rain_plastic", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_ARMOR", | ||
"subcategory": "CSC_ARMOR_HEAD", | ||
"skill_used": "tailor", | ||
"difficulty": 1, | ||
"time": "10 m", | ||
"autolearn": true, | ||
"proficiencies": [ { "proficiency": "prof_closures_waterproofing" } ], | ||
"using": [ [ "waterproofing_plastic_sheets", 2 ] ], | ||
"qualities": [ { "id": "SEW", "level": 1 } ], | ||
"components": [ [ [ "filament", 1, "LIST" ] ] ] | ||
}, | ||
{ | ||
"result": "paper_hat", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_ARMOR", | ||
"subcategory": "CSC_ARMOR_STORAGE", | ||
"skill_used": "fabrication", | ||
"time": "1 m 30 s", | ||
"autolearn": true, | ||
"reversible": true, | ||
"components": [ [ [ "paper", 6 ] ] ], | ||
"flags": [ "BLIND_HARD" ] | ||
} | ||
] |
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,41 @@ | ||
[ | ||
{ | ||
"result": "jerrypack_big", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_ARMOR", | ||
"subcategory": "CSC_ARMOR_STORAGE", | ||
"skill_used": "fabrication", | ||
"time": "1 m 30 s", | ||
"autolearn": true, | ||
"reversible": true, | ||
"components": [ [ [ "jerrycan_big", 1 ] ], [ [ "rope_natural_short", 2, "LIST" ] ] ], | ||
"flags": [ "BLIND_HARD" ] | ||
}, | ||
{ | ||
"result": "jerrypack_clay", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_ARMOR", | ||
"subcategory": "CSC_ARMOR_STORAGE", | ||
"skill_used": "fabrication", | ||
"time": "1 m 30 s", | ||
"autolearn": true, | ||
"reversible": true, | ||
"components": [ [ [ "clay_hydria", 1 ] ], [ [ "rope_natural_short", 2, "LIST" ] ] ], | ||
"flags": [ "BLIND_HARD" ] | ||
}, | ||
{ | ||
"result": "jerrypack_gallon", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_ARMOR", | ||
"subcategory": "CSC_ARMOR_STORAGE", | ||
"skill_used": "fabrication", | ||
"time": "1 m 30 s", | ||
"autolearn": true, | ||
"reversible": true, | ||
"components": [ [ [ "jug_plastic", 1 ] ], [ [ "cordage", 1, "LIST" ] ] ], | ||
"flags": [ "BLIND_HARD" ] | ||
} | ||
] |
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
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