OSDN Git Service

ts
[chemicraft/chemicraft.git] / src / ItemGasCollectingBottle.java
diff --git a/src/ItemGasCollectingBottle.java b/src/ItemGasCollectingBottle.java
deleted file mode 100644 (file)
index 9fd8d53..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-package net.minecraft.src.ChemiCraft;
-
-import java.util.Random;
-
-import net.minecraft.src.*;
-
-public class ItemGasCollectingBottle extends Item {
-
-       protected ItemGasCollectingBottle(int id) {
-               super(id);
-               this.setMaxStackSize(1);
-               this.setMaxDamage(2);
-               this.setCreativeTab(CreativeTabs.tabMaterials);
-       }
-
-       @Override
-       public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer){
-
-               par1ItemStack.damageItem(1, par3EntityPlayer);
-               AtomInfo AtomInfo = new AtomInfo(par2World, par3EntityPlayer);
-               AtomInfo.aboveY(par3EntityPlayer, 128, null, null, 0, 7);
-               return par1ItemStack;
-       }
-
-       @Override
-    public String getTextureFile()
-    {
-        this.isDefaultTexture = false;
-        return "/ChemiCraft/items.png";
-    }
-
-}