diff --git a/data/json/items/armor/jewelry.json b/data/json/items/armor/jewelry.json index f4610d49b7e26..8f53b942dd477 100644 --- a/data/json/items/armor/jewelry.json +++ b/data/json/items/armor/jewelry.json @@ -4821,5 +4821,27 @@ "symbol": ".", "color": "white", "flags": [ "FANCY", "NO_WEAR_EFFECT" ] + }, + { + "id": "necklace_teeth", + "type": "ARMOR", + "name": { "str": "teeth necklace" }, + "description": "A simple teeth necklace, this is sure to add some bite to an outfit.", + "symbol": "u", + "color": "white", + "price": "10 USD", + "price_postapoc": "10 USD", + "weight": "42 g", + "volume": "30 ml", + "material": "bone", + "flags": [ "NO_WEAR_EFFECT", "BELTED" ], + "variants": [ + { + "id": "necklace_teeth_monster", + "name": { "str": "monster teeth necklace" }, + "description": "The teeth hanging from this one look alien, with a hypnotizing, iridescent shine.", + "append": true + } + ] } ] diff --git a/data/json/recipes/armor/jewelry.json b/data/json/recipes/armor/jewelry.json index 63efaf19718a2..c0704eca99e6a 100644 --- a/data/json/recipes/armor/jewelry.json +++ b/data/json/recipes/armor/jewelry.json @@ -121,5 +121,25 @@ "qualities": [ { "id": "DRILL", "level": 1 }, { "id": "FILE", "level": 1 }, { "id": "SAW_M", "level": 1 } ], "//3": "Metal sawing for removing the base, rim, and primer, and filing for smoothing down the resulting edges.", "components": [ [ [ "wire", 1 ] ] ] + }, + { + "type": "recipe", + "activity_level": "NO_EXERCISE", + "result": "necklace_teeth", + "variant": "necklace_teeth_monster", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_OTHER", + "skill_used": "fabrication", + "difficulty": 1, + "skills_required": [ [ "fabrication", 1 ] ], + "time": "15 m", + "autolearn": true, + "proficiencies": [ { "proficiency": "prof_gem_setting" } ], + "//": "Pliers to cut and manipulate the wire.", + "tools": [ [ [ "pliers", -1 ] ] ], + "using": [ [ "cordage_short", 1 ] ], + "//2": "The filing quality is only there to blunt the 'impossibly-sharp' monster teeth, probably not needed for other teeth.", + "qualities": [ { "id": "FILE", "level": 1 } ], + "components": [ [ [ "wire", 1 ] ], [ [ "nm_teeth", 1 ] ] ] } ]