typesforbukkit
Version:
Types For Bukkit
46 lines (44 loc) • 1.53 kB
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/TreeType
namespace org.bukkit {
/** @description Tree and organic structure types */
export enum TreeType {
/** @description Acacia tree */
ACACIA,
/** @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
}
}