diff --git a/data/mc_rebalance/recipes/diamond_horse_armor.json b/data/mc_rebalance/recipes/diamond_horse_armor.json new file mode 100644 index 0000000..46dd99b --- /dev/null +++ b/data/mc_rebalance/recipes/diamond_horse_armor.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "X": { + "item": "minecraft:diamond" + } + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "item": "minecraft:diamond_horse_armor" + }, + "show_notification": true +} diff --git a/data/mc_rebalance/recipes/gold_horse_armor.json b/data/mc_rebalance/recipes/gold_horse_armor.json new file mode 100644 index 0000000..b3eade0 --- /dev/null +++ b/data/mc_rebalance/recipes/gold_horse_armor.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "X": { + "item": "minecraft:gold_ingot" + } + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "item": "minecraft:golden_horse_armor" + }, + "show_notification": true +} diff --git a/data/mc_rebalance/recipes/iron_horse_armor.json b/data/mc_rebalance/recipes/iron_horse_armor.json new file mode 100644 index 0000000..ddb5eaf --- /dev/null +++ b/data/mc_rebalance/recipes/iron_horse_armor.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "X": { + "item": "minecraft:iron_ingot" + } + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "item": "minecraft:iron_horse_armor" + }, + "show_notification": true +}