feat(datapacks): add ironchest recipes and datapack sync automation
- Add crafting recipes for copper, iron, gold, and diamond chests using IronChest mod - Remove vanilla copper chest recipe to prevent conflicts - Introduce `.env.example` for local world configuration - Add `bash/sync-datapacks-to-world.sh` script to mirror datapacks to Minecraft world saves - Supports one-time sync and watch mode for real-time updates - Uses `rsync` for efficient file synchronization
This commit is contained in:
15
datapacks/m2621/data/ironchest/recipe/copper_chest.json
Normal file
15
datapacks/m2621/data/ironchest/recipe/copper_chest.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"III",
|
||||
"ISI",
|
||||
"III"
|
||||
],
|
||||
"key": {
|
||||
"I": "minecraft:copper_ingot",
|
||||
"S": "minecraft:chest"
|
||||
},
|
||||
"result": {
|
||||
"id": "ironchest:copper_chest"
|
||||
}
|
||||
}
|
||||
15
datapacks/m2621/data/ironchest/recipe/diamond_chest.json
Normal file
15
datapacks/m2621/data/ironchest/recipe/diamond_chest.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"III",
|
||||
"ISI",
|
||||
"III"
|
||||
],
|
||||
"key": {
|
||||
"I": "minecraft:diamond",
|
||||
"S": "ironchest:gold_chest"
|
||||
},
|
||||
"result": {
|
||||
"id": "ironchest:diamond_chest"
|
||||
}
|
||||
}
|
||||
15
datapacks/m2621/data/ironchest/recipe/gold_chest.json
Normal file
15
datapacks/m2621/data/ironchest/recipe/gold_chest.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"III",
|
||||
"ISI",
|
||||
"III"
|
||||
],
|
||||
"key": {
|
||||
"I": "minecraft:gold_ingot",
|
||||
"S": "ironchest:iron_chest"
|
||||
},
|
||||
"result": {
|
||||
"id": "ironchest:gold_chest"
|
||||
}
|
||||
}
|
||||
15
datapacks/m2621/data/ironchest/recipe/iron_chest.json
Normal file
15
datapacks/m2621/data/ironchest/recipe/iron_chest.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"III",
|
||||
"ISI",
|
||||
"III"
|
||||
],
|
||||
"key": {
|
||||
"I": "minecraft:iron_ingot",
|
||||
"S": "ironchest:copper_chest"
|
||||
},
|
||||
"result": {
|
||||
"id": "ironchest:iron_chest"
|
||||
}
|
||||
}
|
||||
@ -1,7 +1,5 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
"minecraft:copper_ingot"
|
||||
],
|
||||
"result": {"id": "minecraft:copper_chest", "count": 0}
|
||||
}
|
||||
"ingredients": [],
|
||||
"result": {"item": "minecraft:air", "count": 0}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user