From 0d74f590c9b7e812f6f8e82f9c6abf711953d930 Mon Sep 17 00:00:00 2001 From: Majrusz Date: Wed, 21 Apr 2021 15:03:16 +0200 Subject: [PATCH] Added crafting recipes for Undead Army leather armor --- .../recipes/undead_army_boots.json | 27 ++++++++++++++++++ .../recipes/undead_army_chestplate.json | 28 +++++++++++++++++++ .../recipes/undead_army_helmet.json | 27 ++++++++++++++++++ .../recipes/undead_army_leggings.json | 28 +++++++++++++++++++ 4 files changed, 110 insertions(+) create mode 100644 src/main/resources/data/majruszs_difficulty/recipes/undead_army_boots.json create mode 100644 src/main/resources/data/majruszs_difficulty/recipes/undead_army_chestplate.json create mode 100644 src/main/resources/data/majruszs_difficulty/recipes/undead_army_helmet.json create mode 100644 src/main/resources/data/majruszs_difficulty/recipes/undead_army_leggings.json diff --git a/src/main/resources/data/majruszs_difficulty/recipes/undead_army_boots.json b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_boots.json new file mode 100644 index 000000000..6bf802b68 --- /dev/null +++ b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_boots.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "tattered_cloth", + "pattern": + [ + "c c", + "c c" + ], + "key": + { + "c": + { + "item": "majruszs_difficulty:tattered_cloth" + } + }, + "result": + { + "item": "minecraft:leather_boots", + "count": 1, + "nbt": { + "display": { + "color": 9595003, + "Name": "{\"translate\":\"majruszs_difficulty.items.undead_boots\",\"italic\":false}" + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/majruszs_difficulty/recipes/undead_army_chestplate.json b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_chestplate.json new file mode 100644 index 000000000..36c6869b4 --- /dev/null +++ b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_chestplate.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "tattered_cloth", + "pattern": + [ + "c c", + "ccc", + "ccc" + ], + "key": + { + "c": + { + "item": "majruszs_difficulty:tattered_cloth" + } + }, + "result": + { + "item": "minecraft:leather_chestplate", + "count": 1, + "nbt": { + "display": { + "color": 9595003, + "Name": "{\"translate\":\"majruszs_difficulty.items.undead_chestplate\",\"italic\":false}" + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/majruszs_difficulty/recipes/undead_army_helmet.json b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_helmet.json new file mode 100644 index 000000000..84a8a619d --- /dev/null +++ b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_helmet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "tattered_cloth", + "pattern": + [ + "ccc", + "c c" + ], + "key": + { + "c": + { + "item": "majruszs_difficulty:tattered_cloth" + } + }, + "result": + { + "item": "minecraft:leather_helmet", + "count": 1, + "nbt": { + "display": { + "color": 9595003, + "Name": "{\"translate\":\"majruszs_difficulty.items.undead_helmet\",\"italic\":false}" + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/majruszs_difficulty/recipes/undead_army_leggings.json b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_leggings.json new file mode 100644 index 000000000..eec856fef --- /dev/null +++ b/src/main/resources/data/majruszs_difficulty/recipes/undead_army_leggings.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "tattered_cloth", + "pattern": + [ + "ccc", + "c c", + "c c" + ], + "key": + { + "c": + { + "item": "majruszs_difficulty:tattered_cloth" + } + }, + "result": + { + "item": "minecraft:leather_leggings", + "count": 1, + "nbt": { + "display": { + "color": 9595003, + "Name": "{\"translate\":\"majruszs_difficulty.items.undead_leggings\",\"italic\":false}" + } + } + } +} \ No newline at end of file