Skip to content
This repository has been archived by the owner on Dec 6, 2018. It is now read-only.

Commit

Permalink
updating some textures
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisblokland committed Dec 13, 2014
1 parent 308de60 commit 75434cb
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 18 deletions.
19 changes: 5 additions & 14 deletions main/java/com/baublelicious/items/ItemAmuletGrowth.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

import java.util.List;

import org.lwjgl.input.Keyboard;

import com.sun.corba.se.spi.orbutil.fsm.Input;

import scala.swing.event.Key;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
Expand Down Expand Up @@ -137,25 +142,11 @@ public void onWornTick(ItemStack stack, EntityLivingBase entity) {

}















@Override
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{


if(par2World.isRemote)
{
return par1ItemStack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ public abstract class BaubleliciousRecipe {


public static void init() {
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemAmulet), " G ", "G G", 'G', Items.gold_ingot);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemRing), " G ", "I I"," G ", 'G', Items.gold_nugget, 'I', Items.iron_ingot);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemBelt), " L ", "L L"," L ", 'L', Items.leather);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemAmulet), " L ", "L L"," I ", 'L', Items.leather, 'I', Items.iron_ingot);


GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemAmuletGrowth), " A ", "BCB", " S ",
'A' , BaubleliciousItems.ItemAmulet, 'S', Blocks.sapling, 'B', new ItemStack(Items.dye,0,15), 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 2));

GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemBelt), " L ", "L L"," L ", 'L', Items.leather);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemBeltStepAssist),"LBL"," C ", " ", 'L', Items.leather_boots, 'B', BaubleliciousItems.ItemBelt, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemBeltWaterWalking), " D ", "LBL"," C ", 'L', Items.water_bucket, 'B', BaubleliciousItems.ItemBelt, 'D', Items.diamond, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 2));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemFallingBelt), " L ", "FBF"," C ", 'L', Items.leather_boots, 'B', BaubleliciousItems.ItemBelt, 'F', Items.feather, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemFlyingRing), " C ", "FRF"," D ", 'N', Items.nether_star, 'R', BaubleliciousItems.ItemRing, 'D', Items.diamond, 'F', Items.feather, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 2));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemMagnetRing), " M ", "IRI"," C ", 'C', Items.compass, 'R', BaubleliciousItems.ItemRing, 'I', Items.iron_ingot, 'M', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 1));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemNecklesDiving), " C ", "DAD"," B ", 'B', Items.glass_bottle, 'A', BaubleliciousItems.ItemAmulet, 'D', Items.diamond, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 2));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemRing), " G ", "I I"," G ", 'G', Items.gold_nugget, 'I', Items.iron_ingot);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemSpeedBelt), " P ", "SBS"," C ", 'P', new ItemStack(Items.potionitem,1,8226), 'B', BaubleliciousItems.ItemBelt, 'S', Items.sugar, 'C', new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 1));
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemMagicCore, 1)," R ", "GDG"," R ", 'R', Items.redstone, 'G', Items.glowstone_dust, 'D', Items.diamond);
GameRegistry.addRecipe(new ItemStack(BaubleliciousItems.ItemMagicCore, 1, 1)," D ", "RGR"," D ", 'R', Items.redstone, 'G', Blocks.gold_block, 'D', Items.diamond);
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 75434cb

Please sign in to comment.