-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Innawood] More items repairable (#54278)
* Safety Glasses are made out of glass * Add x-acto knife recipe Recipe copied from the paring knife. I figure these are similar enough that this makes sense. * [Innawood] Make safety glasses weaker Also update description. * Add blacksmith repair kit Powered by charcoal, acts like a makeshift arc welder to repair metal items. * Update data/mods/innawood/items/tool_workshop.json * json style * Change blacksmith repair kit qualities Metal fileset gives filing 2, grinding 2, not chiseling 2 and wood chiseling 2. * json spacing fix (fingers crossed) Co-authored-by: Kevin Granade <kevin.granade@gmail.com>
- Loading branch information
1 parent
78cf21e
commit 600018f
Showing
3 changed files
with
104 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"id": "glasses_safety", | ||
"type": "ARMOR", | ||
"name": { "str": "pair of safety glasses", "str_pl": "pairs of safety glasses" }, | ||
"description": "A pair of glasses, used in workshops, sports, chemistry labs, and many other places.", | ||
"weight": "60 g", | ||
"volume": "250 ml", | ||
"price": 1000, | ||
"price_postapoc": 250, | ||
"to_hit": -2, | ||
"material": [ "glass" ], | ||
"symbol": "[", | ||
"looks_like": "glasses_eye", | ||
"color": "light_gray", | ||
"warmth": 5, | ||
"material_thickness": 1, | ||
"environmental_protection": 1, | ||
"flags": [ "WATER_FRIENDLY", "OUTER", "FRAGILE" ], | ||
"armor": [ { "encumbrance": 5, "coverage": 95, "covers": [ "eyes" ] } ] | ||
} | ||
] |
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,43 @@ | ||
[ | ||
{ | ||
"id": "blacksmith_kit", | ||
"type": "TOOL", | ||
"name": { "str": "blacksmith repair kit" }, | ||
"description": "This is a set of tools to repair damaged metal tools and armor. It uses charcoal, contained in a small clay vessel, to heat the part and make it easier to work.", | ||
"weight": "1600 g", | ||
"volume": "1400 ml", | ||
"longest_side": "25 cm", | ||
"price": 5000, | ||
"price_postapoc": 1000, | ||
"to_hit": -2, | ||
"bashing": 9, | ||
"material": [ "steel", "clay" ], | ||
"symbol": ";", | ||
"color": "dark_gray", | ||
"ammo": [ "charcoal" ], | ||
"charges_per_use": 5, | ||
"qualities": [ | ||
[ "HAMMER_FINE", 1 ], | ||
[ "HAMMER", 3 ], | ||
[ "PRY", 1 ], | ||
[ "COOK", 1 ], | ||
[ "GRIND", 2 ], | ||
[ "FILE", 2 ], | ||
[ "PRYING_NAIL", 1 ] | ||
], | ||
"use_action": [ | ||
[ "CROWBAR", 0 ], | ||
{ | ||
"type": "repair_item", | ||
"item_action_type": "repair_metal", | ||
"materials": [ "iron", "steel", "hardsteel", "aluminum", "copper", "bronze", "silver", "gold", "platinum", "superalloy" ], | ||
"skill": "fabrication", | ||
"tool_quality": 5, | ||
"cost_scaling": 0.1, | ||
"move_cost": 2000 | ||
} | ||
], | ||
"flags": [ "ALLOWS_REMOTE_USE" ], | ||
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "charcoal": 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