diff --git a/README.md b/README.md index 748eea50c..6ec4b0264 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ What that means? I can decide what I want to do with the License myself. YOU MAY - Fork and modify the Code Submit Pull Requests Copy Parts of the Code for other Projects @@ -19,13 +18,11 @@ Make a Review/Spotlight of the Mod or use it in a Modpack YOU CAN NOT - Copy the entire Code or claim it is yours. Reupload the Code or Mod to another website or claim you made it. YOU HAVE TO - Always credit me. Don't be a jerk and copy entire portions of the code and claim they're yours. When it comes to the code, always link back to this Repository. When it comes to the Mod, always link back to the the Forum Thread linked above. diff --git a/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java b/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java new file mode 100644 index 000000000..beabb2942 --- /dev/null +++ b/src/main/java/ellpeck/gemification/items/ItemInfusedIron.java @@ -0,0 +1,7 @@ +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 new file mode 100644 index 000000000..cfb94b8c7 --- /dev/null +++ b/src/main/java/ellpeck/gemification/items/tools/ItemAxeG.java @@ -0,0 +1,7 @@ +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 new file mode 100644 index 000000000..a1f32dc09 --- /dev/null +++ b/src/main/java/ellpeck/gemification/items/tools/ItemHoeG.java @@ -0,0 +1,7 @@ +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 new file mode 100644 index 000000000..16d2fc231 --- /dev/null +++ b/src/main/java/ellpeck/gemification/items/tools/ItemShovelG.java @@ -0,0 +1,7 @@ +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 new file mode 100644 index 000000000..953f15499 --- /dev/null +++ b/src/main/java/ellpeck/someprettyrandomstuff/inventory/SlotOredict.java @@ -0,0 +1,7 @@ +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 new file mode 100644 index 000000000..e7e8060f1 --- /dev/null +++ b/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheFoods.java @@ -0,0 +1,40 @@ +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 new file mode 100644 index 000000000..f1d6c48b4 --- /dev/null +++ b/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheMiscItems.java @@ -0,0 +1,23 @@ +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