Tree Tweaker
Tree Tweaker is a powerful add-on for CraftTweaker that opens up limitless possibilities for creating unique trees in the Minecraft world. With this tool, you can fully control the vegetation generation process in your world.
Main Features
You get complete control over all aspects of trees: from their shape and height to foliage type and wood. Configure spawn frequency, select suitable biomes, and create truly unique landscapes. The system supports using blocks from other mods, allowing you to create trees with completely non-standard materials.
Example Tree Creation
import mods.treetweaker.TreeFactory;
var jungle = TreeFactory.createTree("jungle");
jungle.setTreeType("JUNGLE");
jungle.setLog("minecraft:bone_block");
jungle.setLeaf("minecraft:brown_mushroom_block");
jungle.setGenFrequency(7);
jungle.setMinHeight(10);
jungle.register();


For more detailed information and additional examples, refer to the project's official documentation.