Inital commit
This commit is contained in:
commit
b5089257c5
1005 changed files with 23476 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_packed_ice": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": "minecraft:packed_ice"
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "misc:ice"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_the_recipe",
|
||||
"has_packed_ice"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"misc:ice"
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_ice": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": "minecraft:blue_ice"
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "misc:unpacked_ice"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_the_recipe",
|
||||
"has_blue_ice"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"misc:unpacked_ice"
|
||||
]
|
||||
}
|
||||
}
|
11
datapacks/craft-refine/data/misc/recipe/ice.json
Executable file
11
datapacks/craft-refine/data/misc/recipe/ice.json
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"ingredients": [
|
||||
"minecraft:packed_ice"
|
||||
],
|
||||
"result": {
|
||||
"count": 9,
|
||||
"id": "minecraft:ice"
|
||||
}
|
||||
}
|
12
datapacks/craft-refine/data/misc/recipe/unpacked_ice.json
Executable file
12
datapacks/craft-refine/data/misc/recipe/unpacked_ice.json
Executable file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "packed_ice",
|
||||
"ingredients": [
|
||||
"minecraft:blue_ice"
|
||||
],
|
||||
"result": {
|
||||
"count": 9,
|
||||
"id": "minecraft:packed_ice"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue