Generated all new data.
This commit is contained in:
@ -1,4 +1,24 @@
|
||||
8cb64e3801a8d717442aa39d4ba230bc762d44d5 assets/totemofreviving/models/item/diamond_charge.json
|
||||
8369d36bbe5dba40b58258caafdc6e92096709e0 assets/totemofreviving/models/item/diamond_totem.json
|
||||
d0616a5bf6dd99b6bf56d8af19273dae480b9b3d assets/totemofreviving/models/item/iron_charge.json
|
||||
096cdf824c293ef8aba92d3133ccc8717ba7220c assets/totemofreviving/models/item/iron_totem.json
|
||||
ebd87c84c4b34b81bdf803c3c3cbc929e340302e assets/totemofreviving/models/item/netherite_charge.json
|
||||
b5ebbedcd843aaf7a304ca67e9412e7765c07d59 assets/totemofreviving/models/item/netherite_totem.json
|
||||
6dfda0ccc2ea9fde90748a9fac81e6e122375b60 assets/totemofreviving/models/item/straw_charge.json
|
||||
70680f30f3471070d6d4121f0787eb7e2a9d7318 assets/totemofreviving/models/item/straw_totem.json
|
||||
0967ae8d8b0dd9161eb1a9afe0fbc73a37e6ca84 data/totemofreviving/advancements/recipes/totemofreviving/diamond_charge.json
|
||||
21dbe32fdcd5b1a827b6d647ca94cf792146a265 data/totemofreviving/advancements/recipes/totemofreviving/diamond_totem.json
|
||||
f13e9966059fd682c695611fd565a9796f4360e1 data/totemofreviving/advancements/recipes/totemofreviving/iron_charge.json
|
||||
d03047c25717cba5efd2ab89859f5ce183316498 data/totemofreviving/advancements/recipes/totemofreviving/iron_totem.json
|
||||
5e9153e9c3e8b2aeb3f8504d3425c1dcd65dfa45 data/totemofreviving/advancements/recipes/totemofreviving/netherite_charge.json
|
||||
2cc781919ec504a96437b68bdc30c8e6b9c94c4b data/totemofreviving/advancements/recipes/totemofreviving/netherite_totem.json
|
||||
24d28e7046e24e660784d535ae127004c55bbdcb data/totemofreviving/advancements/recipes/totemofreviving/straw_charge.json
|
||||
8608de575125d59605ad619c16b826cee70c478e data/totemofreviving/advancements/recipes/totemofreviving/straw_totem.json
|
||||
b0719317b7c86eab59aafc95919fe333090dd1ad data/totemofreviving/recipes/diamond_charge.json
|
||||
60b4f429ef9e39f8c4b4e597fe75fa40a801ea90 data/totemofreviving/recipes/diamond_totem.json
|
||||
cfce0a5c8a8598a994e6ba4290a8682782c095db data/totemofreviving/recipes/iron_charge.json
|
||||
042713134f03852fbcc84f50523441801591245d data/totemofreviving/recipes/iron_totem.json
|
||||
fd5884ac05c111741230992cf8491cd745b61706 data/totemofreviving/recipes/netherite_charge.json
|
||||
fd0ce554aa6b14ebe0a0c77504fe7fd966147bf7 data/totemofreviving/recipes/netherite_totem.json
|
||||
34210409c71afd345b237efd6928b387654c76f8 data/totemofreviving/recipes/straw_charge.json
|
||||
b78c2abd8ad4889226f0a534c3982ff9a9fe1880 data/totemofreviving/recipes/straw_totem.json
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/diamond_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/diamond_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/iron_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/iron_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/netherite_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "totemofreviving:item/netherite_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:diamond_charge"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "totemofreviving:diamond_totem"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:diamond_charge"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:diamond_totem"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "minecraft:totem_of_undying"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:diamond_totem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:iron_charge"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "totemofreviving:iron_totem"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:iron_charge"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:iron_totem"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "minecraft:emerald"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:iron_totem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:netherite_charge"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "totemofreviving:netherite_totem"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:netherite_charge"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:netherite_totem"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "minecraft:netherite_scrap"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:netherite_totem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"totemofreviving:straw_charge"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "totemofreviving:straw_totem"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "totemofreviving:straw_charge"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "totemofreviving:totem_recipe",
|
||||
"pattern": [
|
||||
"IDI",
|
||||
"IEI",
|
||||
"III"
|
||||
],
|
||||
"key": {
|
||||
"E": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:diamond"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:diamond_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
{
|
||||
"type": "totemofreviving:totem_recipe",
|
||||
"pattern": [
|
||||
"DDD",
|
||||
"DTD",
|
||||
"DDD"
|
||||
],
|
||||
"key": {
|
||||
"T": {
|
||||
"item": "minecraft:totem_of_undying"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:diamond"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:diamond_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "totemofreviving:charge_recipe",
|
||||
"pattern": [
|
||||
"NIN",
|
||||
"IEI",
|
||||
"NIN"
|
||||
],
|
||||
"key": {
|
||||
"E": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:iron_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "totemofreviving:totem_recipe",
|
||||
"pattern": [
|
||||
" E ",
|
||||
"IBI",
|
||||
" I "
|
||||
],
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "minecraft:iron_block"
|
||||
},
|
||||
"E": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:iron_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "totemofreviving:charge_recipe",
|
||||
"pattern": [
|
||||
"GNG",
|
||||
"NCN",
|
||||
"GNG"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "totemofreviving:diamond_charge"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:netherite_scrap"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:gold_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:netherite_charge"
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
{
|
||||
"type": "totemofreviving:totem_recipe",
|
||||
"pattern": [
|
||||
"BNB",
|
||||
"NTN",
|
||||
"BGB"
|
||||
],
|
||||
"key": {
|
||||
"T": {
|
||||
"item": "totemofreviving:diamond_totem"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:netherite_scrap"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:gold_ingot"
|
||||
},
|
||||
"B": {
|
||||
"item": "minecraft:nether_brick"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:netherite_totem"
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "totemofreviving:charge_recipe",
|
||||
"pattern": [
|
||||
"NWN",
|
||||
"WEW",
|
||||
"NWN"
|
||||
],
|
||||
"key": {
|
||||
"E": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"W": {
|
||||
"item": "minecraft:wheat"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "totemofreviving:straw_charge"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user