mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Updated License.
This commit is contained in:
parent
d006665e77
commit
03d6c4081b
8 changed files with 98 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
package ellpeck.gemification.items;
|
||||
|
||||
/**
|
||||
* Created by Ellpeck on 27.12.2014.
|
||||
*/
|
||||
public class ItemInfusedIron{
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package ellpeck.gemification.items.tools;
|
||||
|
||||
/**
|
||||
* Created by Ellpeck on 27.12.2014.
|
||||
*/
|
||||
public class ItemAxeG{
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package ellpeck.gemification.items.tools;
|
||||
|
||||
/**
|
||||
* Created by Ellpeck on 27.12.2014.
|
||||
*/
|
||||
public class ItemHoeG{
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package ellpeck.gemification.items.tools;
|
||||
|
||||
/**
|
||||
* Created by Ellpeck on 27.12.2014.
|
||||
*/
|
||||
public class ItemShovelG{
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package ellpeck.someprettyrandomstuff.inventory;
|
||||
|
||||
/**
|
||||
* Created by Ellpeck on 19.02.2015.
|
||||
*/
|
||||
public class SlotOredict{
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue