From 5f4e2eb6846f1ca48dd32be1506c659c91da5eb6 Mon Sep 17 00:00:00 2001 From: RobbieNeko <30732426+RobbieNeko@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:33:35 -0400 Subject: [PATCH] Mainline Stone Chisel (#3279) * Mainline Stone Chisel * Oops, can't have difficulty 0 explicity --- data/json/items/tool/woodworking.json | 18 ++++++++++++++++++ data/json/recipes/other/tools.json | 11 +++++++++++ 2 files changed, 29 insertions(+) diff --git a/data/json/items/tool/woodworking.json b/data/json/items/tool/woodworking.json index fe589b95fca5..3ba6fccfa26a 100644 --- a/data/json/items/tool/woodworking.json +++ b/data/json/items/tool/woodworking.json @@ -250,5 +250,23 @@ "color": "brown", "qualities": [ [ "AXE", 1 ], [ "SAW_W", 2 ], [ "BUTCHER", -90 ] ], "flags": [ "NONCONDUCTIVE", "BELT_CLIP" ] + }, + { + "id": "stone_chisel", + "type": "TOOL", + "name": { "str": "stone chisel" }, + "looks_like": "chisel", + "description": "This is a short stone chisel. It can be used to engrave on stone, wood, or soft metals.", + "weight": "660 g", + "volume": "250 ml", + "price": 1600, + "to_hit": 2, + "bashing": 2, + "cutting": 1, + "material": "stone", + "symbol": ";", + "color": "light_gray", + "qualities": [ [ "CHISEL", 1 ] ], + "flags": [ "BELT_CLIP" ] } ] diff --git a/data/json/recipes/other/tools.json b/data/json/recipes/other/tools.json index 9455dee7df29..12e79ac677af 100644 --- a/data/json/recipes/other/tools.json +++ b/data/json/recipes/other/tools.json @@ -2721,5 +2721,16 @@ "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "HAMMER_FINE", "level": 1 } ], "components": [ [ [ "pipe", 1 ] ], [ [ "nail", 1 ], [ "screwdriver", 1 ] ], [ [ "2x4", 1 ], [ "stick", 1 ], [ "splinter", 3 ] ] ] + }, + { + "type": "recipe", + "result": "stone_chisel", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_TOOLS", + "skill_used": "fabrication", + "time": "20 m", + "autolearn": true, + "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 1 } ], + "components": [ [ [ "rock", 1 ], [ "sharp_rock", 1 ] ], [ [ "stick", 1 ], [ "2x4", 1 ] ] ] } ]