/* SevTech: Ages Bonsai Trees Script This script handles custom integration control to a mod. Note: These scripts are created and for the usage in SevTech: Ages and other modpacks curated by DarkPacks. You can use these scripts for reference and for learning but not for copying and pasting and claiming as your own. */ import mods.bonsaitrees.TreeDrops; function init() { TreeDrops.addTreeDrop("twilightforest:canopy", , 0.1); TreeDrops.addTreeDrop("twilightforest:darkcanopy", , 0.1); TreeDrops.addTreeDrop("twilightforest:mangrove", , 0.1); TreeDrops.addTreeDrop("twilightforest:minerstree", , 0.1); TreeDrops.addTreeDrop("twilightforest:oak", , 0.1); TreeDrops.addTreeDrop("twilightforest:rainbow_oak", , 0.1); TreeDrops.addTreeDrop("twilightforest:sortingtree", , 0.1); TreeDrops.addTreeDrop("twilightforest:treeoftime", , 0.1); TreeDrops.addTreeDrop("twilightforest:treeoftransformation", , 0.1); }