Skip to content

Instantly share code, notes, and snippets.

@Propucani2
Created July 17, 2014 09:28
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/0a80e0bac3e8565ac103 to your computer and use it in GitHub Desktop.
Save Propucani2/0a80e0bac3e8565ac103 to your computer and use it in GitHub Desktop.
package com.itemsplusmod.Items;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import com.itemsplusmod.itemsplusmod;
import com.itemsplusmod.Plants.ItemsplusmodSeedFood;
public class ItemCucumber extends ItemsplusmodSeedFood
{
public ItemCucumber()
{
super(1, 0.3F, itemsplusmod.blockCucumber, Blocks.farmland);
setUnlocalizedName("Cucumber");
setTextureName("itemsplusmod:Cucumber");
setCreativeTab(CreativeTabs.tabFood);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment