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.
Low-tech crafting expansion and overhaul
- Loading branch information
1 parent
fdb6831
commit 1b81215
Showing
33 changed files
with
2,825 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[ | ||
{ | ||
"type": "item_group", | ||
"id": "ores", | ||
"//": "All ores, with probability based on overall commonness of certain ores on Earth.", | ||
"items": [ | ||
{ "item": "bog_ore", "prob": 200 }, | ||
{ "item": "chunk_hematite", "prob": 500 }, | ||
{ "item": "chunk_copper", "prob": 100 }, | ||
{ "item": "chunk_silver", "prob": 50 }, | ||
{ "item": "chunk_gold", "prob": 10 }, | ||
{ "item": "chunk_platinum", "prob": 5 }, | ||
{ "item": "chunk_aluminum", "prob": 1 }, | ||
{ "item": "chunk_cassiterite", "prob": 200 }, | ||
{ "item": "chunk_galena", "prob": 200 }, | ||
{ "item": "chunk_bismite", "prob": 100 }, | ||
{ "item": "chunk_cinnabar", "prob": 50 }, | ||
{ "item": "chunk_nickeline", "prob": 100 } | ||
] | ||
} | ||
] |
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,14 @@ | ||
[ | ||
{ | ||
"id": "minerals_swamp", | ||
"type": "item_group", | ||
"//": "For ore veins.", | ||
"items": [ [ "bog_ore", 10 ] ] | ||
}, | ||
{ | ||
"id": "rubble_fake", | ||
"type": "item_group", | ||
"//": "Unable to both randomly placed rubble and ensure rocks spawn underneath. For ore veins.", | ||
"items": [ { "item": "rock", "prob": 100, "count-min": 1, "count-max": 3 } ] | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
[ | ||
{ | ||
"type": "GENERIC", | ||
"id": "bellows", | ||
"name": { "str": "pair of bellows", "str_pl": "pairs of bellows" }, | ||
"description": "A device constructed from wood and leather, built to furnish a strong blast of air. Useful for metalworking and some other applications.", | ||
"category": "tools", | ||
"weight": "2 kg", | ||
"volume": "3 L", | ||
"longest_side": "30 cm", | ||
"symbol": ";", | ||
"color": "brown", | ||
"price": 700, | ||
"price_postapoc": 100, | ||
"material": [ "wood", "leather" ], | ||
"qualities": [ [ "AIR_BLOW", 2 ] ] | ||
}, | ||
{ | ||
"type": "GENERIC", | ||
"id": "bellows_primitive", | ||
"name": { "str": "primitive air blower" }, | ||
"description": "A round clay container with a lid which has one hole in it to let the air in and another one to blow it out, along with a primitive impeller made from cordage and sticks, which is spun around to provide a blast of air. Useful for metalworking and some other applications, but really can't replace proper bellows.", | ||
"category": "tools", | ||
"weight": "4 kg", | ||
"volume": "6 L", | ||
"longest_side": "35 cm", | ||
"symbol": ";", | ||
"color": "brown", | ||
"price": 0, | ||
"price_postapoc": 10, | ||
"material": [ "clay", "wood" ], | ||
"qualities": [ [ "AIR_BLOW", 1 ] ] | ||
}, | ||
{ | ||
"id": "bloomery", | ||
"type": "GENERIC", | ||
"category": "tools", | ||
"name": { "str": "portable bloomery", "str_pl": "portable bloomeries" }, | ||
"description": "A relatively small portable bloomery made from bricks, outfitted with tuyere for blowing air into it, and an external steel frame to prevent it from falling apart during transportation. It's intended for smelting iron from its oxides.", | ||
"weight": "18 kg", | ||
"volume": "40 L", | ||
"price": 52500, | ||
"price_postapoc": 2500, | ||
"to_hit": -2, | ||
"bashing": 8, | ||
"material": [ "clay", "steel" ], | ||
"symbol": ";", | ||
"color": "brown" | ||
}, | ||
{ | ||
"id": "wooden_brick_mold", | ||
"type": "GENERIC", | ||
"category": "tools", | ||
"name": { "str": "wooden brick mold" }, | ||
"description": "A crude wooden rectangular mold for shaping bricks, held together by some cordage.", | ||
"weight": "1 kg", | ||
"volume": "2 L", | ||
"price": 0, | ||
"price_postapoc": 10, | ||
"to_hit": -2, | ||
"bashing": 8, | ||
"material": [ "wood" ], | ||
"symbol": ";", | ||
"color": "brown" | ||
} | ||
] |
Oops, something went wrong.