// Cocoa Plants: SMALL, MEDIUM, LARGE
// Pumpkin stem, melon stem, carrot, potato: 0-7
// -->
if (attribute.startsWith("plant_growth")) {
if (item.getItemStack().getData() instanceof Crops)
return new Element(((Crops)item.getItemStack().getData()).getState().name())
.getAttribute(attribute.fulfill(1));
else if (item.getItemStack().getData() instanceof NetherWarts)
return new Element(((NetherWarts)item.getItemStack().getData()).getState().name())
.getAttribute(attribute.fulfill(1));
else if (item.getItemStack().getData() instanceof CocoaPlant)
return new Element(((CocoaPlant)item.getItemStack().getData()).getSize().name())
.getAttribute(attribute.fulfill(1));
else
return new Element(item.getItemStack().getData().getData())
.getAttribute(attribute.fulfill(1));
}
return null;
}