blob: 7418fee5e3720a943d921f65fd3e29b88a528010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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;
}
}
|