Files
minecraft-aiworld/smart-crafting-addon/smart_crafting_BP/blocks/smart_crafting_table.json
SysAdmin d6bafb9d16
All checks were successful
Deploy Addons / deploy (push) Successful in 14s
feat(smart-crafting): add smart crafting table using private chest inventory
Adds an upgraded crafting block that scans the player's owned private chests
and aggregates their contents with the personal inventory when deciding which
recipes are craftable. Ingredients are consumed from the player first then
from chests; the result goes to the player (or drops at their feet).

Also redraws the post_office and mailbox block textures via a new
scripts/build-textures.py generator.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 11:16:19 +01:00

28 lines
649 B
JSON

{
"format_version": "1.21.0",
"minecraft:block": {
"description": {
"identifier": "silverlabs:smart_crafting_table",
"menu_category": {
"category": "items",
"group": "itemGroup.name.crafting"
}
},
"components": {
"minecraft:destructible_by_mining": {
"seconds_to_destroy": 2.5
},
"minecraft:destructible_by_explosion": {
"explosion_resistance": 20.0
},
"minecraft:map_color": "#D4AF37",
"minecraft:material_instances": {
"*": {
"texture": "smart_crafting_table",
"render_method": "opaque"
}
}
}
}
}