Cleaned up src, Consolidated redundent class files.
This commit is contained in:
18
src/divine_equipment/items/tainted/TaintedAxe.java
Normal file
18
src/divine_equipment/items/tainted/TaintedAxe.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package items.tainted;
|
||||
|
||||
import divine_equipment.Divine_Equipment;
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedAxe extends ItemAxe
|
||||
{
|
||||
public TaintedAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedDiamondAxe extends ItemAxe {
|
||||
public TaintedDiamondAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemHoe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedDiamondHoe extends ItemHoe {
|
||||
public TaintedDiamondHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedDiamondPickaxe extends ItemPickaxe {
|
||||
public TaintedDiamondPickaxe(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSpade;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedDiamondShovel extends ItemSpade {
|
||||
public TaintedDiamondShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/29/13
|
||||
*/
|
||||
public class TaintedDiamondSword extends ItemSword {
|
||||
public TaintedDiamondSword(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabCombat);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedGold {
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedGoldAxe extends ItemAxe {
|
||||
public TaintedGoldAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemHoe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedGoldHoe extends ItemHoe {
|
||||
public TaintedGoldHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedGoldPickaxe extends ItemPickaxe {
|
||||
public TaintedGoldPickaxe(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSpade;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedGoldShovel extends ItemSpade {
|
||||
public TaintedGoldShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -8,8 +8,8 @@ import net.minecraft.item.ItemHoe;
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedIronHoe extends ItemHoe {
|
||||
public TaintedIronHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
public class TaintedHoe extends ItemHoe {
|
||||
public TaintedHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedIron {
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedIronAxe extends ItemAxe {
|
||||
public TaintedIronAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedIronSword extends ItemSword {
|
||||
public TaintedIronSword(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabCombat);
|
||||
}
|
||||
}
|
||||
@@ -8,8 +8,8 @@ import net.minecraft.item.ItemPickaxe;
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedIronPickaxe extends ItemPickaxe {
|
||||
public TaintedIronPickaxe(int id, EnumToolMaterial material){
|
||||
public class TaintedPickaxe extends ItemPickaxe {
|
||||
public TaintedPickaxe(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
@@ -8,8 +8,8 @@ import net.minecraft.item.ItemSpade;
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedIronShovel extends ItemSpade {
|
||||
public TaintedIronShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
public class TaintedShovel extends ItemSpade {
|
||||
public TaintedShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/4/13
|
||||
*/
|
||||
public class TaintedSigil extends Item {
|
||||
public TaintedSigil(int id){
|
||||
super(id);
|
||||
setCreativeTab(CreativeTabs.tabMaterials);
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedStone {
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedStoneAxe extends ItemAxe {
|
||||
public TaintedStoneAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemHoe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedStoneHoe extends ItemHoe {
|
||||
public TaintedStoneHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedStonePickaxe extends ItemPickaxe {
|
||||
public TaintedStonePickaxe(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSpade;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedStoneShovel extends ItemSpade {
|
||||
public TaintedStoneShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedStoneSword extends ItemSword {
|
||||
public TaintedStoneSword(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabCombat);
|
||||
}
|
||||
}
|
||||
@@ -8,9 +8,10 @@ import net.minecraft.item.ItemSword;
|
||||
* User: Orthus
|
||||
* Date: 9/29/13
|
||||
*/
|
||||
public class TaintedGoldSword extends ItemSword {
|
||||
public TaintedGoldSword(int id, EnumToolMaterial material){
|
||||
public class TaintedSword extends ItemSword {
|
||||
public TaintedSword(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabCombat);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedWoodAxe extends ItemAxe {
|
||||
public TaintedWoodAxe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemHoe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedWoodHoe extends ItemHoe {
|
||||
public TaintedWoodHoe(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedWoodPickaxe extends ItemPickaxe {
|
||||
public TaintedWoodPickaxe(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSpade;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/8/13
|
||||
*/
|
||||
public class TaintedWoodShovel extends ItemSpade {
|
||||
public TaintedWoodShovel(int par1, EnumToolMaterial par2EnumToolMaterial) {
|
||||
super(par1, par2EnumToolMaterial);
|
||||
setCreativeTab(CreativeTabs.tabTools);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package items.tainted;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedWoodSword extends ItemSword {
|
||||
public TaintedWoodSword(int id, EnumToolMaterial material){
|
||||
super(id, material);
|
||||
setCreativeTab(CreativeTabs.tabCombat);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user