UNPKG

typesforbukkit

Version:

Types For Bukkit

48 lines (46 loc) 1.62 kB
// API Link: https://tfb.neocities.org/1.17/org/bukkit/TreeType namespace org.bukkit { /** @description Tree and organic structure types */ export enum TreeType { /** @description Acacia tree */ ACACIA, /** @description Tree with large roots which grows above lush caves */ AZALEA, /** @description Regular tree, extra tall with branches */ BIG_TREE, /** @description Birch tree */ BIRCH, /** @description Big brown mushroom; tall and umbrella-like */ BROWN_MUSHROOM, /** @description Large plant native to The End */ CHORUS_PLANT, /** @description Jungle tree with cocoa plants; 1 block wide */ COCOA_TREE, /** @description Large crimson fungus native to the nether */ CRIMSON_FUNGUS, /** @description Dark Oak tree */ DARK_OAK, /** @description Standard jungle tree; 4 blocks wide and tall */ JUNGLE, /** @description Small bush that grows in the jungle */ JUNGLE_BUSH, /** @description Mega redwood tree; 4 blocks wide and tall */ MEGA_REDWOOD, /** @description Big red mushroom; short and fat */ RED_MUSHROOM, /** @description Redwood tree, shaped like a pine tree */ REDWOOD, /** @description Smaller jungle tree; 1 block wide */ SMALL_JUNGLE, /** @description Swamp tree (regular with vines on the side) */ SWAMP, /** @description Tall birch tree */ TALL_BIRCH, /** @description Tall redwood tree with just a few leaves at the top */ TALL_REDWOOD, /** @description Regular tree, no branches */ TREE, /** @description Large warped fungus native to the nether */ WARPED_FUNGUS } }