Soul Manipulator textures, recipes and added the Ghastly Soul Manipulator
This commit is contained in:
parent
2c588e3021
commit
c47aabe912
6 changed files with 13 additions and 1 deletions
|
@ -195,6 +195,11 @@ public class BOPCrafting
|
|||
GameRegistry.addShapelessRecipe(new ItemStack(Items.ancientStaff.get(), 1, 0), new ItemStack(Items.ancientStaff.get(), 1, 4), new ItemStack(Item.netherStar, 1));
|
||||
GameRegistry.addRecipe(new ItemStack(Items.enderporter.get(), 1, 0), new Object[] {"IOI", "OAO", "IOI", 'I', Item.eyeOfEnder, 'O', Block.obsidian, 'A', new ItemStack(Blocks.amethystOre.get(), 1, 1)});
|
||||
GameRegistry.addRecipe(new ItemStack(Items.bopDiscMud.get(), 1), new Object[] {" M ", "MDM", " M ", 'M', Items.mudball.get(), 'D', Items.bopDisc.get()});
|
||||
|
||||
GameRegistry.addRecipe(new ItemStack(Items.miscItems.get(), 1, 16), new Object[] {"SBS", "GKG", "SBS", 'S', Block.slowSand, 'B', Item.blazePowder, 'G', Item.ghastTear, 'K', new ItemStack(Item.skull, 1, 1)});
|
||||
|
||||
GameRegistry.addRecipe(new ItemStack(Items.soulManipulator.get(), 1, 0), new Object[] {"G", "T", "B", 'G', Block.glass, 'T', Item.ghastTear, 'B', Item.blazeRod});
|
||||
GameRegistry.addRecipe(new ItemStack(Items.soulManipulator.get(), 1, 1), new Object[] {"TSA", "PMS", "APT", 'S', new ItemStack(Items.miscItems.get(), 1, 16), 'A', Block.slowSand, 'T', Item.ghastTear, 'P', Item.blazePowder, 'M', new ItemStack(Items.soulManipulator.get(), 1, 0)});
|
||||
|
||||
//Dart Blower
|
||||
GameRegistry.addRecipe(new ItemStack(Items.dartBlower.get(), 1), new Object[] {"R R", "R R", "R R", Character.valueOf('R'), new ItemStack(Blocks.plants.get(), 1, 8)});
|
||||
|
|
|
@ -19,7 +19,7 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
|
||||
public class ItemSoulManipulator extends Item
|
||||
{
|
||||
private static String[] manipulatorTypes = {"soulmanipulator_empty"};
|
||||
private static String[] manipulatorTypes = {"soulmanipulator_empty", "soulmanipulator_ghastlysoul"};
|
||||
@SideOnly(Side.CLIENT)
|
||||
private Icon[] textures;
|
||||
|
||||
|
@ -29,6 +29,12 @@ public class ItemSoulManipulator extends Item
|
|||
maxStackSize = 1;
|
||||
setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFull3D()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
|
|
|
@ -315,6 +315,7 @@
|
|||
<entry key="item.bop.ancientStaff.ancientstaffbroken.name">Depleted Ancient Staff</entry>
|
||||
|
||||
<entry key="item.bop.soulManipulator.soulmanipulator_empty.name">Soul Manipulator</entry>
|
||||
<entry key="item.bop.soulManipulator.soulmanipulator_ghastlysoul.name">Ghastly Soul Manipulator</entry>
|
||||
|
||||
<entry key="item.bop.enderporter.name">Enderporter</entry>
|
||||
|
||||
|
|
BIN
src/minecraft/mods/BiomesOPlenty/textures/items/ghastlysoul.png
Normal file
BIN
src/minecraft/mods/BiomesOPlenty/textures/items/ghastlysoul.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 295 B |
Binary file not shown.
After Width: | Height: | Size: 351 B |
Binary file not shown.
After Width: | Height: | Size: 345 B |
Loading…
Reference in a new issue