aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/item/base
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-09 16:06:59 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-09 16:06:59 +1000
commit3946a4c0287d6a8550144f042c374a910dca64ac (patch)
tree0830aa54507c6b03fb8b341d9671025c27e833e4 /src/Java/miscutil/core/item/base
parent57cb101bbfdfa7891b3165c7ad679c4cdfcc0420 (diff)
downloadGT5-Unofficial-3946a4c0287d6a8550144f042c374a910dca64ac.tar.gz
GT5-Unofficial-3946a4c0287d6a8550144f042c374a910dca64ac.tar.bz2
GT5-Unofficial-3946a4c0287d6a8550144f042c374a910dca64ac.zip
+ Added Rotor Components for the new IC2 Rotors.
Diffstat (limited to 'src/Java/miscutil/core/item/base')
-rw-r--r--src/Java/miscutil/core/item/base/CoreItem.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/item/base/CoreItem.java b/src/Java/miscutil/core/item/base/CoreItem.java
index 06f29dffaa..55a468980c 100644
--- a/src/Java/miscutil/core/item/base/CoreItem.java
+++ b/src/Java/miscutil/core/item/base/CoreItem.java
@@ -22,43 +22,67 @@ public class CoreItem extends Item
private final boolean hasEffect;
//0
+ /*
+ * Name, Tab - 64 Stack, 0 Dmg
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab)
{
this(unlocalizedName, creativeTab, 64, 0); //Calls 3
}
//1
+ /*
+ * Name, Tab, Stack - 0 Dmg
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize)
{
this(unlocalizedName, creativeTab, stackSize, 0); //Calls 3
}
//2
+ /*
+ * Name, Tab, Stack, Description - 0 Dmg
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, String description)
{
this(unlocalizedName, creativeTab, stackSize, 0, description); //Calls 4
}
//3
+ /*
+ * Name, Tab, Stack, Dmg - Description
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg)
{
this(unlocalizedName, creativeTab, stackSize, maxDmg, ""); //Calls 4
}
//4 //Not Rare + basic tooltip
+ /*
+ * Name, Tab, Stack, Dmg, Description
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg, String description)
{
this(unlocalizedName, creativeTab, stackSize, maxDmg, description, EnumRarity.common, EnumChatFormatting.GRAY, false); //Calls 4.5
}
//4.5
+ /*
+ * Name, Tab, Stack, Dmg, Description, Text Colour - Common
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg, String description, EnumChatFormatting colour)
{
this(unlocalizedName, creativeTab, stackSize, maxDmg, description, EnumRarity.common, colour, false); //Calls 5
}
//4.75
+ /*
+ * Name, Tab, Stack, Dmg, Description, Rarity - Gray text
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg, String description, EnumRarity rarity)
{
this(unlocalizedName, creativeTab, stackSize, maxDmg, description, rarity, EnumChatFormatting.GRAY, false); //Calls 5
}
//5
+ /*
+ * Name, Tab, Stack, Dmg, Description, Rarity, Text Colour, Effect
+ */
public CoreItem(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg, String description, EnumRarity regRarity, EnumChatFormatting colour, boolean Effect)
{
setUnlocalizedName(unlocalizedName);