- 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
16 lines
229 B
JSON
16 lines
229 B
JSON
{
|
|
"type": "minecraft:crafting_shaped",
|
|
"pattern": [
|
|
"III",
|
|
"ISI",
|
|
"III"
|
|
],
|
|
"key": {
|
|
"I": "minecraft:iron_ingot",
|
|
"S": "ironchest:copper_chest"
|
|
},
|
|
"result": {
|
|
"id": "ironchest:iron_chest"
|
|
}
|
|
}
|