Skip to content

Commit

Permalink
Fix All Datas Of EDT For 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyoncle committed Nov 27, 2024
1 parent 1511427 commit 9961e48
Show file tree
Hide file tree
Showing 16 changed files with 170 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"result": {
"id": "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": {
"id": "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": {
"id": "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": {
"id": "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"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"result": {
"item": "netherite_horse_armor:netherite_horse_armor"
"id": "netherite_horse_armor:netherite_horse_armor"
},
"pattern": [
" M",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"result": {
"item": "minecraft:podzol"
"id": "minecraft:podzol"
},
"pattern": [
"XW",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"type": "minecraft:smoking",
"ingredient": {
"item": "minecraft:rotten_flesh"
},
"result": {
"id": "minecraft:leather"
},
"experience": 1.0,
"cookingtime": 250
}
22 changes: 22 additions & 0 deletions src/main/resources/data/elysium-days-tweaks/recipe/saddle.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"result": {
"id": "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
@@ -1,6 +1,6 @@
{
"result": {
"item": "minecraft:sponge"
"id": "minecraft:sponge"
},
"pattern": [
"WWW",
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"parent": "minecraft:story/enter_the_nether",
"criteria": {
"in_lostcastle": {
"in_lostcastle_or_stronghold": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"location": {
"structure": "tlc:lost_castle"
"structures": ["tlc:lost_castle", "minecraft:stronghold"]
}
}
}
]
},
"trigger": "minecraft:location"
}
}
},
"display": {
Expand All @@ -26,7 +26,7 @@
"frame": "task",
"hidden": false,
"icon": {
"item": "minecraft:ender_eye"
"id": "minecraft:ender_eye"
},
"show_toast": true,
"title": {
Expand All @@ -35,7 +35,8 @@
},
"requirements": [
[
"in_lostcastle"
"in_lostcastle_or_stronghold"
]
]
}
],
"replace": true
}
25 changes: 25 additions & 0 deletions src/main/resources/data/minecraft/recipe/leather_horse_armor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"result": {
"id": "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 9961e48

Please sign in to comment.