aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item/ModItems.java
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-26 22:15:59 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-26 22:15:59 +1000
commitcef36da8db2cf886f0720dd656eac736cba15dfc (patch)
treea5552751e3a18eece4f879d87b4b02d39e08437a /src/Java/gtPlusPlus/core/item/ModItems.java
parent9e4dcc750d9aa3c37d278aec7404a9ded134f0b6 (diff)
downloadGT5-Unofficial-cef36da8db2cf886f0720dd656eac736cba15dfc.tar.gz
GT5-Unofficial-cef36da8db2cf886f0720dd656eac736cba15dfc.tar.bz2
GT5-Unofficial-cef36da8db2cf886f0720dd656eac736cba15dfc.zip
+ Added Rope & Net block.
+ Added English localization for the Staballoy Construct. % Made the Xp Converter give of light as it cycles colours. % Formatting.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/ModItems.java')
-rw-r--r--src/Java/gtPlusPlus/core/item/ModItems.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java
index bd43da11fa..103639074f 100644
--- a/src/Java/gtPlusPlus/core/item/ModItems.java
+++ b/src/Java/gtPlusPlus/core/item/ModItems.java
@@ -268,6 +268,8 @@ public final class ModItems {
public static Item itemGrindleTablet;
+ public static Item itemRope;
+
public static final void init(){
//Default item used when recipes fail, handy for debugging.
@@ -290,20 +292,19 @@ public final class ModItems {
GT_OreDictUnificator.registerOre("ingotRubber", ItemUtils.getItemStack(CORE.MODID+":itemStickyRubber", 1));
-
-
- //Register Hydrogen Blobs first, so we can replace old helium blobs.
itemCoalCoke = new BaseItemBurnable("itemCoalCoke", "Coking Coal", tabMisc, 64, 0, "Used for metallurgy.", "fuelCoke", 3200, 0).setTextureName(CORE.MODID + ":itemCoalCoke");
//Register Hydrogen Blobs first, so we can replace old helium blobs.
itemHydrogenBlob = new CoreItem("itemHydrogenBlob", "Mysterious Hydrogen Blob", tabMisc).setTextureName(CORE.MODID + ":itemHeliumBlob");
- //GT_OreDictUnificator.registerOre("dustHydrogen", new ItemStack(ModItems.itemHydrogenBlob));
//Register Old Helium Blob, this will be replaced when held by a player.
itemHeliumBlob = new CoreItem("itemHeliumBlob", tabMisc, ItemUtils.getSimpleStack(itemHydrogenBlob)).setTextureName(CORE.MODID + ":itemHydrogenBlob");
//Register this neato device, for making some fires.
itemBasicFireMaker = new ItemBasicFirestarter();
+ //Register Rope
+ itemRope = new CoreItem("itemRope", "Rope", tabMisc);
+
//Make some backpacks
//Primary colours
backpack_Red = new BaseItemBackpack("backpackRed", Utils.rgbtoHexValue(200, 0, 0));