diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-03-23 19:01:47 +0200 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-03-23 19:01:47 +0200 |
| commit | 5fce447142b3c0f4a214ca7eb208d9e5c25e6377 (patch) | |
| tree | 2b29a935e47c8ba65d753b4161cfc51d053a23e6 /common/darkknight/jewelrycraft/util/JewelrycraftUtil.java | |
| parent | 3e0556ee7aadfbb7695f87063662a9ca0d28175f (diff) | |
Added necklaces, Altar Block, new stuff, better Shadow Ingot texture
Diffstat (limited to 'common/darkknight/jewelrycraft/util/JewelrycraftUtil.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/util/JewelrycraftUtil.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/common/darkknight/jewelrycraft/util/JewelrycraftUtil.java b/common/darkknight/jewelrycraft/util/JewelrycraftUtil.java index 4247175..4fabc21 100644 --- a/common/darkknight/jewelrycraft/util/JewelrycraftUtil.java +++ b/common/darkknight/jewelrycraft/util/JewelrycraftUtil.java @@ -3,6 +3,7 @@ package darkknight.jewelrycraft.util; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; +import java.util.Random; import net.minecraft.block.Block; import net.minecraft.item.Item; @@ -18,6 +19,7 @@ public class JewelrycraftUtil public static ArrayList<ItemStack> metal = new ArrayList<ItemStack>(); public static ArrayList<String> jamcraftPlayers = new ArrayList<String>(); public static HashMap<ItemStack, ItemStack> combinations = new HashMap<ItemStack, ItemStack>(); + public static Random rand = new Random(); public static void addStuff() { @@ -25,10 +27,14 @@ public class JewelrycraftUtil modifiers.add(new ItemStack(Block.chest)); modifiers.add(new ItemStack(Block.torchWood)); modifiers.add(new ItemStack(Item.book)); + modifiers.add(new ItemStack(Item.dyePowder, 1, 15)); + modifiers.add(new ItemStack(Item.bone)); modifiers.add(new ItemStack(Item.sugar)); modifiers.add(new ItemStack(Item.feather)); modifiers.add(new ItemStack(Item.bed)); modifiers.add(new ItemStack(Item.pickaxeIron)); + modifiers.add(new ItemStack(Item.redstone)); + modifiers.add(new ItemStack(Item.pickaxeDiamond)); modifiers.add(new ItemStack(Item.blazePowder)); modifiers.add(new ItemStack(Item.eyeOfEnder)); modifiers.add(new ItemStack(Item.potion, 1, 8270)); @@ -36,9 +42,7 @@ public class JewelrycraftUtil //Jewels for(int i=0; i <= 16; i++) jewel.add(new ItemStack(ItemList.crystal, 1, i)); - jewel.add(new ItemStack(Item.redstone)); jewel.add(new ItemStack(Block.blockRedstone)); - jewel.add(new ItemStack(Item.dyePowder, 1, 4)); jewel.add(new ItemStack(Block.blockLapis)); jewel.add(new ItemStack(Block.obsidian)); jewel.add(new ItemStack(Item.diamond)); @@ -48,6 +52,7 @@ public class JewelrycraftUtil //Jewelry jewelry.add(new ItemStack(ItemList.ring)); + jewelry.add(new ItemStack(ItemList.necklace)); } public static void addSpecialCombinations() |
