This mod condenses a set of blocks (block, slab, stairs, door, etc.) into a single tool. This removes the need to do any more annoying crafting and uncrafting, and instead lets you place and break any of them directly. After crafting the respective block pack, drop the respective materials on the ground, and by default they'll go into your block pack. Each block pack can hold 4 stacks of the base block.
Place - Place a block
Use - Breaks a block instantly, if it's one in your block pack
Crouch + Scroll - Select a block
Crouch + Place - Opens the GUI, which makes it as if the block pack was your hotbar
Drop - Drops the selected item out of your block pack
Pick block - Pick block from the block pack
This mod also currently has support for:
It also adds new block packs for blocks in the following mods:
Various textures from unused-textures.
// in startup_scripts
BuildingPacks.register(event => {
event.create("kubejs:woah", 64) // pack id, max material
.put("minecraft:tnt", 3) // block id, material cost
.put("minecraft:sand", 5);
})