Skip to content

Instantly share code, notes, and snippets.

@Propucani2
Created July 20, 2014 06:16
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 Propucani2/ae8fa3d30dff9535e1a7 to your computer and use it in GitHub Desktop.
Save Propucani2/ae8fa3d30dff9535e1a7 to your computer and use it in GitHub Desktop.
package com.mods.itemsmod.item;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import com.mods.itemsmod.MainClass;
import com.mods.itemsmod.plants.ItemSeedFood;
public class CucumberItemClass extends ItemSeedFood {
public CucumberItemClass()
{
super(1, 0.3F, MainClass.BlockCucumber, Blocks.farmland);
setUnlocalizedName("Cucumber");
setTextureName(MainClass.MODID + ":Cucumber");
setCreativeTab(MainClass.ItemsFoodTab);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment