Skip to content

Instantly share code, notes, and snippets.

Created March 27, 2014 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9796968 to your computer and use it in GitHub Desktop.
Save anonymous/9796968 to your computer and use it in GitHub Desktop.
package recipeplus.items;
import recipeplus.RecipePlus;
import recipeplus.items.RecipeItemSeedFood;
import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
public class ItemBlueberry extends RecipeItemSeedFood {
// Constructors
public ItemBlueberry() {
super(1, 0.3F, RecipePlus.blockBlueberry, Blocks.farmland);
this.setUnlocalizedName("blueberry");
this.setTextureName("recipeplus:blueberry");
this.setCreativeTab(CreativeTabs.tabFood);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment