Skip to content

Commit

Permalink
feat(balance): add uncrafts to several more vehiclepart items (#4731)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosvolt authored Jun 8, 2024
1 parent 7d363dd commit 938d30b
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/json/items/vehicle/wheel.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"price_postapoc": "750 cent",
"bashing": 17,
"to_hit": -1,
"material": [ "hardsteel", "ceramic" ],
"material": [ "hardsteel", "rubber", "kevlar" ],
"symbol": "]",
"color": "green",
"diameter": 32,
Expand Down Expand Up @@ -283,7 +283,7 @@
"price_postapoc": "1 USD",
"bashing": 10,
"to_hit": -1,
"material": [ "steel", "plastic" ],
"material": [ "steel", "rubber" ],
"symbol": "]",
"color": "dark_gray",
"diameter": 10,
Expand Down
24 changes: 24 additions & 0 deletions data/json/uncraft/generic.json
Original file line number Diff line number Diff line change
Expand Up @@ -1893,6 +1893,12 @@
"time": "2 m",
"components": [ [ [ "glass_shard", 18 ] ] ]
},
{
"result": "reinforced_glass_pane",
"type": "uncraft",
"time": "2 m",
"components": [ [ [ "glass_shard", 18 ] ], [ [ "wire", 8 ] ] ]
},
{
"result": "bottle_glass",
"type": "uncraft",
Expand Down Expand Up @@ -4783,5 +4789,23 @@
"time": "1 m",
"qualities": [ { "id": "CUT", "level": 1 } ],
"components": [ [ [ "felt_patch", 4 ] ], [ [ "yarn", 130 ] ] ]
},
{
"result": "headlight_reinforced",
"type": "uncraft",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "car_headlight", 1 ] ], [ [ "wire", 2 ] ] ]
},
{
"result": "wide_headlight_reinforced",
"type": "uncraft",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "car_wide_headlight", 1 ] ], [ [ "wire", 3 ] ] ]
}
]
36 changes: 36 additions & 0 deletions data/json/uncraft/vehicle/wheels.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "steel_lump", 15 ] ], [ [ "chunk_rubber", 15 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_armor",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "steel_lump", 15 ] ], [ [ "chunk_rubber", 15 ] ], [ [ "kevlar_plate", 5 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_slick",
Expand Down Expand Up @@ -62,6 +71,33 @@
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "steel_chunk", 8 ] ], [ [ "chunk_rubber", 6 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_small",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "steel_chunk", 4 ] ], [ [ "chunk_rubber", 3 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_barrow",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "steel_chunk", 4 ] ], [ [ "chunk_rubber", 3 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_tricycle",
"skill_used": "fabrication",
"difficulty": 1,
"time": "48 s",
"qualities": [ { "id": "CUT", "level": 1 } ],
"components": [ [ [ "plastic_chunk", 15 ] ] ]
},
{
"type": "uncraft",
"result": "wheel_motorbike",
Expand Down
3 changes: 2 additions & 1 deletion data/json/vehicleparts/wheel.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@
{ "item": "steel_lump", "count": [ 2, 3 ] },
{ "item": "steel_chunk", "count": [ 2, 3 ] },
{ "item": "scrap", "count": [ 2, 3 ] },
{ "item": "chunk_rubber", "count": [ 2, 3 ] }
{ "item": "chunk_rubber", "count": [ 2, 3 ] },
{ "item": "kevlar_plate", "prob": 50 }
],
"rolling_resistance": 0.6,
"wheel_type": "off-road",
Expand Down

0 comments on commit 938d30b

Please sign in to comment.