diff --git a/src/main/resources/data/elysium-days-tweaks/recipes/diamond_horse_armor.json b/src/main/resources/data/elysium-days-tweaks/recipes/diamond_horse_armor.json new file mode 100644 index 0000000..a87df8f --- /dev/null +++ b/src/main/resources/data/elysium-days-tweaks/recipes/diamond_horse_armor.json @@ -0,0 +1,25 @@ +{ + "result": { + "item": "minecraft:diamond_horse_armor" + }, + "pattern": [ + " M", + "XWX", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "W": { + "item": "minecraft:white_wool" + }, + "X": { + "item": "minecraft:diamond" + }, + "I": { + "item": "minecraft:diamond_leggings" + }, + "M": { + "item": "minecraft:diamond_helmet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/elysium-days-tweaks/recipes/golden_horse_armor.json b/src/main/resources/data/elysium-days-tweaks/recipes/golden_horse_armor.json new file mode 100644 index 0000000..e9ee824 --- /dev/null +++ b/src/main/resources/data/elysium-days-tweaks/recipes/golden_horse_armor.json @@ -0,0 +1,25 @@ +{ + "result": { + "item": "minecraft:golden_horse_armor" + }, + "pattern": [ + " M", + "XWX", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "W": { + "item": "minecraft:white_wool" + }, + "X": { + "item": "minecraft:gold_ingot" + }, + "I": { + "item": "minecraft:golden_leggings" + }, + "M": { + "item": "minecraft:golden_helmet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/elysium-days-tweaks/recipes/iron_horse_armor.json b/src/main/resources/data/elysium-days-tweaks/recipes/iron_horse_armor.json new file mode 100644 index 0000000..5d5fb4f --- /dev/null +++ b/src/main/resources/data/elysium-days-tweaks/recipes/iron_horse_armor.json @@ -0,0 +1,25 @@ +{ + "result": { + "item": "minecraft:iron_horse_armor" + }, + "pattern": [ + " M", + "XWX", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "W": { + "item": "minecraft:white_wool" + }, + "X": { + "item": "minecraft:iron_ingot" + }, + "I": { + "item": "minecraft:iron_leggings" + }, + "M": { + "item": "minecraft:iron_helmet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/elysium-days-tweaks/recipes/leather_horse_armor.json b/src/main/resources/data/elysium-days-tweaks/recipes/leather_horse_armor.json new file mode 100644 index 0000000..dbf2b17 --- /dev/null +++ b/src/main/resources/data/elysium-days-tweaks/recipes/leather_horse_armor.json @@ -0,0 +1,25 @@ +{ + "result": { + "item": "minecraft:leather_horse_armor" + }, + "pattern": [ + " M", + "XWX", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "W": { + "item": "minecraft:white_wool" + }, + "X": { + "item": "minecraft:leather" + }, + "I": { + "item": "minecraft:leather_leggings" + }, + "M": { + "item": "minecraft:leather_helmet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/elysium-days-tweaks/recipes/saddle.json b/src/main/resources/data/elysium-days-tweaks/recipes/saddle.json new file mode 100644 index 0000000..052a482 --- /dev/null +++ b/src/main/resources/data/elysium-days-tweaks/recipes/saddle.json @@ -0,0 +1,22 @@ +{ + "result": { + "item": "minecraft:saddle" + }, + "pattern": [ + "XXX", + "O O", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "X": { + "item": "minecraft:leather" + }, + "I": { + "item": "minecraft:iron_ingot" + }, + "O": { + "item": "minecraft:string" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/advancements/story/follow_ender_eye.json b/src/main/resources/data/minecraft/advancements/story/follow_ender_eye.json index e5d67bc..60f5148 100644 --- a/src/main/resources/data/minecraft/advancements/story/follow_ender_eye.json +++ b/src/main/resources/data/minecraft/advancements/story/follow_ender_eye.json @@ -2,6 +2,7 @@ "parent": "minecraft:story/enter_the_nether", "criteria": { "in_lostcastle": { + "trigger": "minecraft:location", "conditions": { "player": [ { @@ -14,8 +15,23 @@ } } ] - }, - "trigger": "minecraft:location" + } + }, + "in_stronghold": { + "trigger": "minecraft:location", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structure": "minecraft:stronghold" + } + } + } + ] + } } }, "display": { @@ -34,8 +50,7 @@ } }, "requirements": [ - [ - "in_lostcastle" - ] - ] + ["in_lostcastle", "in_stronghold"] + ], + "replace": true } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/leather_horse_armor.json b/src/main/resources/data/minecraft/recipes/leather_horse_armor.json new file mode 100644 index 0000000..dbf2b17 --- /dev/null +++ b/src/main/resources/data/minecraft/recipes/leather_horse_armor.json @@ -0,0 +1,25 @@ +{ + "result": { + "item": "minecraft:leather_horse_armor" + }, + "pattern": [ + " M", + "XWX", + "I I" + ], + "type": "minecraft:crafting_shaped", + "key": { + "W": { + "item": "minecraft:white_wool" + }, + "X": { + "item": "minecraft:leather" + }, + "I": { + "item": "minecraft:leather_leggings" + }, + "M": { + "item": "minecraft:leather_helmet" + } + } +} \ No newline at end of file