forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xedra Evolved] Fix Oneiric Hammer Segfault (CleverRaven#65113)
* Update ethereal_items.json * Update data/mods/Xedra_Evolved/items/ethereal_items.json * Update data/mods/Xedra_Evolved/items/ethereal_items.json * Update ethereal_items.json * Update data/mods/Xedra_Evolved/items/ethereal_items.json * Create blacksmithing.json * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Fixes * Update data/mods/Xedra_Evolved/items/ammo_type.json * Update data/mods/Xedra_Evolved/items/ammo.json * Update data/mods/Xedra_Evolved/items/ammo.json * Fixes * Update data/mods/Xedra_Evolved/recipes/blacksmithing.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update data/mods/Xedra_Evolved/items/resources.json * Update ammo.json * Update blacksmithing.json * Update data/mods/Xedra_Evolved/items/ethereal_items.json --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ce7781e
commit 2b55182
Showing
5 changed files
with
115 additions
and
1 deletion.
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
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,69 @@ | ||
[ | ||
{ | ||
"type": "recipe", | ||
"activity_level": "BRISK_EXERCISE", | ||
"result": "moon_tear_chain_link", | ||
"id_suffix": "fabrication", | ||
"category": "CC_OTHER", | ||
"subcategory": "CSC_OTHER_MATERIALS", | ||
"skill_used": "fabrication", | ||
"difficulty": 2, | ||
"time": "5 m", | ||
"book_learn": [ [ "textbook_armwest", 1 ], [ "textbook_fabrication", 1 ], [ "recipe_melee", 1 ] ], | ||
"qualities": [ { "id": "WRENCH", "level": 1 } ], | ||
"tools": [ [ [ "boltcutters", -1 ], [ "toolset", -1 ] ], [ [ "cu_pipe", -1 ] ] ], | ||
"components": [ [ [ "moon_tear_wire", 1 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"activity_level": "MODERATE_EXERCISE", | ||
"result": "moon_tears_fasteners", | ||
"category": "CC_OTHER", | ||
"subcategory": "CSC_OTHER_MATERIALS", | ||
"skill_used": "fabrication", | ||
"difficulty": 1, | ||
"time": "3 h", | ||
"autolearn": true, | ||
"using": [ [ "blacksmithing_standard", 1 ] ], | ||
"proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], | ||
"components": [ [ [ "moon_tear_ingot", 1 ] ], [ [ "scrap_dreamdross", 1 ] ] ], | ||
"tools": [ [ [ "hotcut", -1 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"activity_level": "MODERATE_EXERCISE", | ||
"result": "moon_tear_wire", | ||
"category": "CC_OTHER", | ||
"subcategory": "CSC_OTHER_MATERIALS", | ||
"skill_used": "fabrication", | ||
"difficulty": 3, | ||
"time": "3 h", | ||
"result_mult": 6, | ||
"autolearn": true, | ||
"using": [ [ "blacksmithing_standard", 2 ] ], | ||
"proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], | ||
"components": [ [ [ "moon_tear_ingot", 1 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"result": "moon_tear_wire", | ||
"id_suffix": "wire_draw_machine", | ||
"category": "CC_OTHER", | ||
"subcategory": "CSC_OTHER_MATERIALS", | ||
"skill_used": "fabrication", | ||
"difficulty": 3, | ||
"time": "1 h 30 m", | ||
"result_mult": 6, | ||
"autolearn": true, | ||
"qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], | ||
"proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], | ||
"tools": [ | ||
[ [ "tongs", -1 ] ], | ||
[ [ "hotcut", -1 ] ], | ||
[ [ "forge", 40 ], [ "oxy_torch", 40 ] ], | ||
[ [ "wire_draw_machine", 100 ] ] | ||
], | ||
"components": [ [ [ "moon_tear_ingot", 1 ] ] ] | ||
} | ||
] |