typesforbukkit
Version:
Types For Bukkit
24 lines (22 loc) • 624 B
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/CropState
namespace org.bukkit {
/** @description Represents the different growth states of crops */
export enum CropState {
/** @description First growth stage */
GERMINATED,
/** @description Fourth growth stage */
MEDIUM,
/** @description Ripe stage */
RIPE,
/** @description State when first seeded */
SEEDED,
/** @description Third growth stage */
SMALL,
/** @description Fifth growth stage */
TALL,
/** @description Second growth stage */
VERY_SMALL,
/** @description Almost ripe stage */
VERY_TALL
}
}