Skip to content

Commit ea512d8

Browse files
authored
Add uncraft recipes to knife and stone spears to remove nonsensical time and tool requirements (#83323)
* Create piercing.json Add uncrafts to stone and knife spears * remove reversible.time for stone spears remove reversible.time so it doesn't get added to our uncraft time and cause confusion * adjust knife uncraft time to 10m * Update piercing.json Add comments
1 parent ce2e4d2 commit ea512d8

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

data/json/recipes/weapon/piercing.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@
217217
"skills_required": [ "fabrication", 2 ],
218218
"difficulty": 6,
219219
"time": "3 h",
220-
"reversible": { "time": "5 m" },
220+
"reversible": true,
221+
"//": "Item disassembly based on reversible craft and manually defined uncraft integration. Read ITEM_CRAFT_AND_DISASSEMBLY.md for more info.",
221222
"autolearn": true,
222223
"qualities": [
223224
{ "id": "PUNCH", "level": 1 },
@@ -242,7 +243,8 @@
242243
"skills_required": [ "fabrication", 2 ],
243244
"difficulty": 6,
244245
"time": "3 h",
245-
"reversible": { "time": "5 m" },
246+
"reversible": true,
247+
"//": "Item disassembly based on reversible craft and manually defined uncraft integration. Read ITEM_CRAFT_AND_DISASSEMBLY.md for more info.",
246248
"autolearn": true,
247249
"qualities": [
248250
{ "id": "PUNCH", "level": 1 },
@@ -986,6 +988,7 @@
986988
"difficulty": 1,
987989
"time": "2 h",
988990
"reversible": true,
991+
"//": "Item disassembly based on reversible craft and manually defined uncraft integration. Read ITEM_CRAFT_AND_DISASSEMBLY.md for more info.",
989992
"autolearn": true,
990993
"qualities": [ { "id": "CUT", "level": 2 }, { "id": "HAMMER", "level": 1 }, { "id": "DRILL", "level": 1 } ],
991994
"proficiencies": [ { "proficiency": "prof_carving", "time_multiplier": 1.5, "skill_penalty": 0.15 } ],
@@ -1023,6 +1026,7 @@
10231026
"difficulty": 1,
10241027
"time": "30 m",
10251028
"reversible": true,
1029+
"//": "Item disassembly based on reversible craft and manually defined uncraft integration. Read ITEM_CRAFT_AND_DISASSEMBLY.md for more info.",
10261030
"autolearn": true,
10271031
"proficiencies": [ { "proficiency": "prof_carving", "time_multiplier": 1.5, "skill_penalty": 0.15 } ],
10281032
"qualities": [ { "id": "CUT", "level": 2 }, { "id": "HAMMER", "level": 1 }, { "id": "DRILL", "level": 1 } ],
@@ -1042,6 +1046,7 @@
10421046
"difficulty": 1,
10431047
"time": "30 m",
10441048
"reversible": true,
1049+
"//": "Item disassembly based on reversible craft and manually defined uncraft integration. Read ITEM_CRAFT_AND_DISASSEMBLY.md for more info.",
10451050
"autolearn": true,
10461051
"proficiencies": [ { "proficiency": "prof_carving", "time_multiplier": 1.5, "skill_penalty": 0.15 } ],
10471052
"qualities": [ { "id": "CUT", "level": 2 }, { "id": "HAMMER", "level": 1 }, { "id": "DRILL", "level": 1 } ],
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[
2+
{
3+
"result": "spear_stone_simple",
4+
"type": "uncraft",
5+
"activity_level": "MODERATE_EXERCISE",
6+
"time": "5 m",
7+
"qualities": [ { "id": "CUT", "level": 1 } ],
8+
"components": [ [ [ "stick_long", 1 ] ], [ [ "sharp_rock", 1 ] ], [ [ "cordage_6", 1 ] ] ]
9+
},
10+
{
11+
"result": "spear_stone",
12+
"type": "uncraft",
13+
"activity_level": "MODERATE_EXERCISE",
14+
"time": "5 m",
15+
"qualities": [ { "id": "CUT", "level": 1 } ],
16+
"components": [ [ [ "spear_shaft", 1 ] ], [ [ "sharp_rock", 1 ] ], [ [ "cordage_6", 1 ] ] ]
17+
},
18+
{
19+
"result": "spear_knife_superior",
20+
"type": "uncraft",
21+
"activity_level": "MODERATE_EXERCISE",
22+
"time": "10 m",
23+
"qualities": [ { "id": "CUT", "level": 1 }, { "id": "PRYING_NAIL", "level": 1 } ],
24+
"components": [ [ [ "stick_long", 1 ] ], [ [ "knife_huge", 1 ] ], [ [ "nail", 2 ] ], [ [ "string_36", 2 ] ] ]
25+
},
26+
{
27+
"result": "spear_knife_proper",
28+
"type": "uncraft",
29+
"activity_level": "MODERATE_EXERCISE",
30+
"time": "10 m",
31+
"qualities": [ { "id": "CUT", "level": 1 }, { "id": "PRYING_NAIL", "level": 1 } ],
32+
"components": [ [ [ "spear_shaft", 1 ] ], [ [ "knife_huge", 1 ] ], [ [ "nail", 2 ] ], [ [ "string_36", 2 ] ] ]
33+
}
34+
]

0 commit comments

Comments
 (0)