-
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.
[MoM] Differentiate XEDRA lab-made and makeshift inferno grenades, ad…
…d `pyrokinetic matrix crystal bomb` (#79304) * Initial commit * Kick tests * Increase explosive power * Explosion is mostly silent
- Loading branch information
1 parent
d4bf6c9
commit 3f9ffd7
Showing
7 changed files
with
177 additions
and
13 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
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 |
---|---|---|
@@ -1,25 +1,43 @@ | ||
[ | ||
{ | ||
"result": "grenade_inferno", | ||
"result": "grenade_inferno_makeshift", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_PSIONIC", | ||
"subcategory": "CSC_PSIONIC_WEAPONS", | ||
"skill_used": "fabrication", | ||
"skills_required": [ "metaphysics", 3 ], | ||
"difficulty": 5, | ||
"time": "60 m", | ||
"skills_required": [ "metaphysics", 2 ], | ||
"difficulty": 3, | ||
"time": "15 m", | ||
"reversible": false, | ||
"autolearn": false, | ||
"book_learn": [ [ "schematics_grenade_inferno", 5 ] ], | ||
"proficiencies": [ { "proficiency": "prof_matrix_technology_beginner", "required": false } ], | ||
"qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "MATRIX_CHANNEL", "level": 1 } ], | ||
"using": [ [ "volatile_explosive", 20, "LIST" ], [ "explosives_casting_standard", 1 ] ], | ||
"book_learn": [ [ "schematics_grenade_inferno", 3 ] ], | ||
"proficiencies": [ { "proficiency": "prof_matrix_technology_beginner", "required": false }, { "proficiency": "prof_handloading" } ], | ||
"qualities": [ { "id": "SAW_M", "level": 1 } ], | ||
"using": [ [ "volatile_explosive", 20, "LIST" ] ], | ||
"components": [ | ||
[ [ "fuse", 1 ] ], | ||
[ [ "super_glue", 4 ], [ "duct_tape", 75 ], [ "cordage", 1, "LIST" ] ], | ||
[ [ "small_grenade_case", 1, "LIST" ] ], | ||
[ [ "matrix_crystal_pyrokin_dust", 5 ], [ "matrix_crystal_pyrokin_dust_refined", 1 ] ] | ||
] | ||
}, | ||
{ | ||
"result": "pyrokinetic_matrix_crystal_bomb", | ||
"type": "recipe", | ||
"activity_level": "LIGHT_EXERCISE", | ||
"category": "CC_PSIONIC", | ||
"subcategory": "CSC_PSIONIC_WEAPONS", | ||
"skill_used": "metaphysics", | ||
"difficulty": 6, | ||
"time": "30 m", | ||
"reversible": true, | ||
"autolearn": false, | ||
"book_learn": [ [ "schematics_grenade_inferno", 6 ] ], | ||
"proficiencies": [ | ||
{ "proficiency": "prof_psionic_minimum_requirements", "required": true }, | ||
{ "proficiency": "prof_psionic_minimum_requirements_pyrokinesis", "required": true } | ||
], | ||
"components": [ [ [ "matrix_crystal_pyrokinesis", 1 ] ] ] | ||
} | ||
] |