UNPKG

typesforbukkit

Version:

Types For Bukkit

39 lines (37 loc) 2.05 kB
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/Instrument namespace org.bukkit { export enum Instrument { /** @description Banjo is normally played when a note block is on top of a hay block */ BANJO, /** @description Bass drum is normally played when a note block is on top of a stone-like block */ BASS_DRUM, /** @description Bass guitar is normally played when a note block is on top of a wooden block */ BASS_GUITAR, /** @description Bell is normally played when a note block is on top of a gold block */ BELL, /** @description Bit is normally played when a note block is on top of a emerald block */ BIT, /** @description Chime is normally played when a note block is on top of a packed ice block */ CHIME, /** @description Cow Bell is normally played when a note block is on top of a soul sand block */ COW_BELL, /** @description Didgeridoo is normally played when a note block is on top of a pumpkin block */ DIDGERIDOO, /** @description Flute is normally played when a note block is on top of a clay block */ FLUTE, /** @description Guitar is normally played when a note block is on top of a woolen block */ GUITAR, /** @description Iron Xylophone is normally played when a note block is on top of a iron block */ IRON_XYLOPHONE, /** @description Piano is the standard instrument for a note block */ PIANO, /** @description Pling is normally played when a note block is on top of a glowstone block */ PLING, /** @description Snare drum is normally played when a note block is on top of a sandy block */ SNARE_DRUM, /** @description Sticks are normally played when a note block is on top of a glass block */ STICKS, /** @description Xylophone is normally played when a note block is on top of a bone block */ XYLOPHONE } }