Block Packs
This modification consolidates entire block sets (main block, slab, stairs, doors, and other elements) into a single multifunctional tool. This completely eliminates the need for tedious crafting and unpacking of individual components, providing the ability to instantly place and destroy any elements of the set directly.
After creating the corresponding block set, simply drop the necessary materials on the ground - they will automatically be added to your set by default. Each such set can hold up to 4 stacks of the base block.
Controls
- Place Block - installation of selected element
- Use - instant destruction of block if it's present in your set
- Shift + Scroll - selection of specific block from available options
- Shift + Place - opens interface that temporarily replaces your quick access panel with the contents of the block set
- Drop - removal of selected item from the set
- Copy Block - selection of block directly from the set
Mod Compatibility
The mod integrates with popular additions:
- Effortless Building - allows placing and destroying blocks directly from the set
- Additional Placements - vertical slabs and stairs are processed similarly to regular variants
- KubeJS - provides API for creating custom block sets
Also included are ready-made sets for blocks from the following mods:
- Tinkers' Construct
- Create
- Ars Nouveau
- Biomes o' Plenty
Example KubeJS Script
// in startup_scripts
BuildingPacks.register(event => {
event.create("kubejs:woah", 64) // set identifier, maximum material amount
.put("minecraft:tnt", 3) // block identifier, material cost
.put("minecraft:sand", 5);
})