Skip to content

Commit

Permalink
Backport 1.21.1 Recipes & Eye Spy Advancement Obtaining Condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyoncle committed Nov 27, 2024
1 parent d0869d8 commit 12c1d15
Show file tree
Hide file tree
Showing 7 changed files with 168 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
22 changes: 22 additions & 0 deletions src/main/resources/data/elysium-days-tweaks/recipes/saddle.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"parent": "minecraft:story/enter_the_nether",
"criteria": {
"in_lostcastle": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
Expand All @@ -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": {
Expand All @@ -34,8 +50,7 @@
}
},
"requirements": [
[
"in_lostcastle"
]
]
["in_lostcastle", "in_stronghold"]
],
"replace": true
}
25 changes: 25 additions & 0 deletions src/main/resources/data/minecraft/recipes/leather_horse_armor.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit 12c1d15

Please sign in to comment.