diff --git a/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java b/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java deleted file mode 100644 index beabb2942..000000000 --- a/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java +++ /dev/null @@ -1,7 +0,0 @@ -package ellpeck.gemification.items; - -/** - * Created by Ellpeck on 27.12.2014. - */ -public class ItemInfusedIron{ -} diff --git a/src/main/java/ellpeck/gemification/items/tools/ItemAxeG.java b/src/main/java/ellpeck/gemification/items/tools/ItemAxeG.java deleted file mode 100644 index cfb94b8c7..000000000 --- a/src/main/java/ellpeck/gemification/items/tools/ItemAxeG.java +++ /dev/null @@ -1,7 +0,0 @@ -package ellpeck.gemification.items.tools; - -/** - * Created by Ellpeck on 27.12.2014. - */ -public class ItemAxeG{ -} diff --git a/src/main/java/ellpeck/gemification/items/tools/ItemHoeG.java b/src/main/java/ellpeck/gemification/items/tools/ItemHoeG.java deleted file mode 100644 index a1f32dc09..000000000 --- a/src/main/java/ellpeck/gemification/items/tools/ItemHoeG.java +++ /dev/null @@ -1,7 +0,0 @@ -package ellpeck.gemification.items.tools; - -/** - * Created by Ellpeck on 27.12.2014. - */ -public class ItemHoeG{ -} diff --git a/src/main/java/ellpeck/gemification/items/tools/ItemShovelG.java b/src/main/java/ellpeck/gemification/items/tools/ItemShovelG.java deleted file mode 100644 index 16d2fc231..000000000 --- a/src/main/java/ellpeck/gemification/items/tools/ItemShovelG.java +++ /dev/null @@ -1,7 +0,0 @@ -package ellpeck.gemification.items.tools; - -/** - * Created by Ellpeck on 27.12.2014. - */ -public class ItemShovelG{ -} diff --git a/src/main/java/ellpeck/someprettyrandomstuff/inventory/SlotOredict.java b/src/main/java/ellpeck/someprettyrandomstuff/inventory/SlotOredict.java deleted file mode 100644 index 953f15499..000000000 --- a/src/main/java/ellpeck/someprettyrandomstuff/inventory/SlotOredict.java +++ /dev/null @@ -1,7 +0,0 @@ -package ellpeck.someprettyrandomstuff.inventory; - -/** - * Created by Ellpeck on 19.02.2015. - */ -public class SlotOredict{ -} diff --git a/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheFoods.java b/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheFoods.java deleted file mode 100644 index e7e8060f1..000000000 --- a/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheFoods.java +++ /dev/null @@ -1,40 +0,0 @@ -package ellpeck.someprettytechystuff.items.metalists; - -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; -import net.minecraft.util.IIcon; - -public enum TheFoods{ - - PUMPKIN_STEW("PumpkinStew", 10, 0.4F, true, 30), - CARROT_JUICE("CarrotJuice", 6, 0.2F, true, 20), - FISH_N_CHIPS("FishNChips", 20, 1F, false, 40), - FRENCH_FRIES("FrenchFries", 16, 0.7F, false, 32), - FRENCH_FRY("FrenchFry", 1, 0.01F, false, 3), - SPAGHETTI("Spaghetti", 18, 0.8F, false, 38), - NOODLE("Noodle", 1, 0.01F, false, 3), - CHOCOLATE_CAKE("ChocolateCake", 16, 0.45F, false, 45), - CHOCOLATE("Chocolate", 5, 0.05F, false, 15), - TOAST("Toast", 7, 0.4F, false, 25), - SUBMARINE_SANDWICH("SubmarineSandwich", 10, 0.7F, false, 40), - BIG_COOKIE("BigCookie", 6, 0.1F, false, 20), - HAMBURGER("Hamburger", 14, 0.9F, false, 40), - PIZZA("Pizza", 20, 1F, false, 45), - BAGUETTE("Baguette", 7, 0.2F, false, 25); - - public final String name; - public final int healAmount; - public final float saturation; - public final boolean getsDrunken; - public final int useDuration; - @SideOnly(Side.CLIENT) - public IIcon theIcon; - - private TheFoods(String name, int healAmount, float saturation, boolean getsDrunken, int useDuration){ - this.name = name; - this.getsDrunken = getsDrunken; - this.healAmount = healAmount; - this.saturation = saturation; - this.useDuration = useDuration; - } -} \ No newline at end of file diff --git a/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheMiscItems.java b/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheMiscItems.java deleted file mode 100644 index f1d6c48b4..000000000 --- a/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheMiscItems.java +++ /dev/null @@ -1,23 +0,0 @@ -package ellpeck.someprettytechystuff.items.metalists; - -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; -import net.minecraft.util.IIcon; - -public enum TheMiscItems{ - - MASHED_FOOD("MashedFood"), - REFINED_IRON("RefinedIron"), - REFINED_REDSTONE("RefinedRedstone"), - COMPRESSED_IRON("CompressedIron"), - STEEL("Steel"), - DOUGH("Dough"); - - public final String name; - @SideOnly(Side.CLIENT) - public IIcon theIcon; - - private TheMiscItems(String name){ - this.name = name; - } -} \ No newline at end of file