package net.uomc.mineshaft.farm; import net.uomc.mineshaft.MineshaftItem; public enum Crop { CANE(new String[]{ "<:cane_crop1:1426729699455012995>", "<:cane_crop2:1426729697999327242>", " <:cane_crop3:1426729696812601524>" }), POTATO(new String[]{"<:potato_crop1:1426727443837878374>", "<:potato_crop2:1426727441816358983>", "<:potato_crop3:1426727440641953944>"}), CARROT(new String[]{"<:carrot_crop1:1426727275511939174>", "<:carrot_crop2:1426727274270687382>", "<:carrot_crop3:1426727272471068888>"}) ; private String[] emoji; Crop(String[] emoji) { this.emoji = emoji; MineshaftItem.valueOf(this.toString()); } String[] getEmoji() { return emoji; } }