Fixed ore dict registration and missing items
This commit is contained in:
parent
f8cec1f21c
commit
e8fc6d5a07
9 changed files with 465 additions and 132 deletions
|
@ -8,7 +8,7 @@ import net.minecraft.item.EnumRarity;
|
|||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.IIcon;
|
||||
import techreborn.client.TechRebornCreativeTabMisc;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
|
||||
public class ItemCells extends ItemTR {
|
||||
public static final String[] types = new String[]
|
||||
|
@ -26,7 +26,7 @@ public class ItemCells extends ItemTR {
|
|||
{
|
||||
setUnlocalizedName("techreborn.cell");
|
||||
setHasSubtypes(true);
|
||||
setCreativeTab(TechRebornCreativeTabMisc.instance);
|
||||
setCreativeTab(TechRebornCreativeTab.instance);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -12,7 +12,7 @@ import techreborn.client.TechRebornCreativeTabMisc;
|
|||
|
||||
public class ItemCrushedOre extends Item {
|
||||
public static final String[] types = new String[]
|
||||
{ "Ardite", "Bauxite", "Cadmium", "Cinnabar", "Cobalt", "DarkIron",
|
||||
{ "Aluminum", "Ardite", "Bauxite", "Cadmium", "Cinnabar", "Cobalt", "DarkIron",
|
||||
"Indium", "Iridium", "Nickel", "Osmium", "Platinum",
|
||||
"Pyrite", "Sphalerite", "Tetrahedrite", "Tungsten" };
|
||||
|
||||
|
|
|
@ -18,12 +18,12 @@ public class ItemDustTiny extends ItemTR {
|
|||
"Cinnabar", "Clay", "Coal", "Cobalt", "Copper", "Cupronickel",
|
||||
"DarkAshes", "DarkIron", "Diamond", "Electrum", "Emerald",
|
||||
"EnderEye", "EnderPearl", "Endstone", "Flint", "Glowstone", "Gold", "Graphite",
|
||||
"Grossular", "Gunpowder", "Indium", "Invar", "Iridium", "Iron", "Lapis", "Lazurite",
|
||||
"Grossular", "Gunpowder", "Indium", "Invar", "Iridium", "Iron", "Kanthal", "Lapis", "Lazurite",
|
||||
"Lead", "Limestone", "Lodestone", "Magnesium", "Magnetite", "Manganese",
|
||||
"Manyullyn", "Marble", "Mithril", "Netherrack", "Nichrome", "Nickel",
|
||||
"Obsidian", "Osmium", "Peridot", "Phosphorous", "Platinum", "PotassiumFeldspar",
|
||||
"Pyrite", "Pyrope", "RedGarnet", "Redrock", "Redstone", "Ruby", "Saltpeter",
|
||||
"Sapphire", "Silicon", "Sodalite", "Spessartine", "Sphalerite",
|
||||
"Sapphire", "Silicon", "Silver", "Sodalite", "Spessartine", "Sphalerite",
|
||||
"Steel", "Sulfur", "Tellurium", "Teslatite", "Tetrahedrite", "Tin",
|
||||
"Titanium", "Tungsten", "Uvarovite", "Vinteum", "Voidstone", "YellowGarnet",
|
||||
"Zinc" };
|
||||
|
|
|
@ -23,7 +23,7 @@ public class ItemDusts extends ItemTR {
|
|||
"manyullyn", "marble", "mithril", "netherrack", "nichrome", "nickel",
|
||||
"obsidian", "osmium", "peridot", "phosphorous", "platinum", "potassiumFeldspar",
|
||||
"pyrite", "pyrope", "redGarnet", "redrock", "ruby", "saltpeter",
|
||||
"sapphire", "silicon", "sodalite", "spessartine", "sphalerite",
|
||||
"sapphire", "silicon", "silver", "sodalite", "spessartine", "sphalerite",
|
||||
"steel", "sulfur", "tellurium", "teslatite", "tetrahedrite", "tin",
|
||||
"titanium", "tungsten", "uvarovite", "vinteum", "voidstone", "yellowGarnet",
|
||||
"zinc" };
|
||||
|
|
|
@ -18,12 +18,12 @@ public class ItemDustsSmall extends ItemTR {
|
|||
"Cinnabar", "Clay", "Coal", "Cobalt", "Copper", "Cupronickel",
|
||||
"DarkAshes", "DarkIron", "Diamond", "Electrum", "Emerald",
|
||||
"EnderEye", "EnderPearl", "Endstone", "Flint", "Glowstone", "Gold", "Graphite",
|
||||
"Grossular", "Gunpowder", "Indium", "Invar", "Iridium", "Iron", "Lapis", "Lazurite",
|
||||
"Grossular", "Gunpowder", "Indium", "Invar", "Iridium", "Iron", "Kanthal", "Lapis", "Lazurite",
|
||||
"Lead", "Limestone", "Lodestone", "Magnesium", "Magnetite", "Manganese",
|
||||
"Manyullyn", "Marble", "Mithril", "Netherrack", "Nichrome", "Nickel",
|
||||
"Obsidian", "Osmium", "Peridot", "Phosphorous", "Platinum", "PotassiumFeldspar",
|
||||
"Pyrite", "Pyrope", "RedGarnet", "Redrock", "Redstone", "Ruby", "Saltpeter",
|
||||
"Sapphire", "Silicon", "Sodalite", "Spessartine", "Sphalerite",
|
||||
"Sapphire", "Silicon", "Silver", "Sodalite", "Spessartine", "Sphalerite",
|
||||
"Steel", "Sulfur", "Tellurium", "Teslatite", "Tetrahedrite", "Tin",
|
||||
"Titanium", "Tungsten", "Uvarovite", "Vinteum", "Voidstone", "YellowGarnet",
|
||||
"Zinc" };
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.item.EnumRarity;
|
|||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.IIcon;
|
||||
import techreborn.client.TechRebornCreativeTabMisc;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
|
||||
public class ItemParts extends Item {
|
||||
public static final String[] types = new String[]
|
||||
|
@ -18,7 +18,7 @@ public class ItemParts extends Item {
|
|||
"heliumCoolantSimple", "heliumCoolantTriple", "heliumCoolantSix",
|
||||
"NaKCoolantSimple", "NaKCoolantTriple", "NaKCoolantSix",
|
||||
"cupronickelHeatingCoil", "nichromeHeatingCoil", "kanthalHeatingCoil",
|
||||
"bronzeGear", "ironGear", "titaniumGear", "steelGear", "tungstenGear",
|
||||
"bronzeGear", "ironGear", "titaniumGear", "steelGear", "tungstensteelGear",
|
||||
"laserFocus", "ductTape", "lazuriteChunk", "iridiumAlloyIngot", "rockCutterBlade",
|
||||
"thoriumCell", "doubleThoriumCell", "quadThoriumCell", "plutoniumCell", "doublePlutoniumCell",
|
||||
"quadPlutoniumCell", "destructoPack", "iridiumNeutronReflector" };
|
||||
|
@ -27,7 +27,7 @@ public class ItemParts extends Item {
|
|||
|
||||
public ItemParts()
|
||||
{
|
||||
setCreativeTab(TechRebornCreativeTabMisc.instance);
|
||||
setCreativeTab(TechRebornCreativeTab.instance);
|
||||
setHasSubtypes(true);
|
||||
setUnlocalizedName("techreborn.part");
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ public class ItemPlates extends ItemTR {
|
|||
"magnalium", "nickel", "obsidian", "osmium",
|
||||
"peridot", "platinum", "redGarnet", "redstone",
|
||||
"ruby", "sapphire", "silicon", "silver", "steel",
|
||||
"teslatite", "titanium", "tungsten", "tungstensteel",
|
||||
"teslatite", "tin", "titanium", "tungsten", "tungstensteel",
|
||||
"yellowGarnet", "zinc" };
|
||||
|
||||
private IIcon[] textures;
|
||||
|
|
|
@ -12,8 +12,8 @@ import techreborn.client.TechRebornCreativeTabMisc;
|
|||
|
||||
public class ItemPurifiedCrushedOre extends Item {
|
||||
public static final String[] types = new String[]
|
||||
{ "Ardite", "Bauxite", "Cadmium", "Cinnabar", "Cobalt", "DarkIron",
|
||||
"Indium", "Nickel", "Osmium", "Platinum", "Pyrite", "Sphalerite",
|
||||
{ "Aluminum", "Ardite", "Bauxite", "Cadmium", "Cinnabar", "Cobalt", "DarkIron",
|
||||
"Indium", "Iridium", "Nickel", "Osmium", "Platinum", "Pyrite", "Sphalerite",
|
||||
"Tetrahedrite", "Tungsten" };
|
||||
|
||||
private IIcon[] textures;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue