Examples of shape()


Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_1_1);
       
        //Artefakt Stufe 2
      ItemStack result_2_1 = new SpoutItemStack(ConflictPlugin.art_2_1, 1);
        SpoutShapedRecipe recipe_2_1 = new SpoutShapedRecipe(result_2_1);
        recipe_2_1.shape("   ", "GTC", "A A");
        recipe_2_1.setIngredient('C', MaterialData.cake);
        recipe_2_1.setIngredient('T', MaterialData.tnt);
        recipe_2_1.setIngredient('G', MaterialData.goldenApple);
        recipe_2_1.setIngredient('A', ConflictPlugin.art_1_5);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_2_1);
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_2_1);
       
       //Artefakt Stufe 3
      ItemStack result_3_1 = new SpoutItemStack(ConflictPlugin.art_3_1, 1);
        SpoutShapedRecipe recipe_3_1 = new SpoutShapedRecipe(result_3_1);
        recipe_3_1.shape("LGL", "ODO", "A A");
        recipe_3_1.setIngredient('G', MaterialData.ghastTear);
        recipe_3_1.setIngredient('L', MaterialData.lapisBlock);
        recipe_3_1.setIngredient('D', MaterialData.diamondBlock);
        recipe_3_1.setIngredient('O', MaterialData.goldBlock);
        recipe_3_1.setIngredient('A', ConflictPlugin.art_2_5);
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_3_1);
       
        //VuduBrick
        ItemStack result_VuduBrick = new SpoutItemStack(ConflictPlugin.vuduBrick, 4);
        SpoutShapedRecipe recipe_VB = new SpoutShapedRecipe(result_VuduBrick);
        recipe_VB.shape("S S", " I ", "S S");
        recipe_VB.setIngredient('S', MaterialData.stone);
        recipe_VB.setIngredient('I', MaterialData.brick);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_VB);
       
        //DamageTowerBlock
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_VB);
       
        //DamageTowerBlock
        ItemStack result_DamageTower = new SpoutItemStack(ConflictPlugin.damageTower, 1);
        SpoutShapedRecipe recipe_DT = new SpoutShapedRecipe(result_DamageTower);
        recipe_DT.shape("GGG", "DED", " A ");
        recipe_DT.setIngredient('G', MaterialData.goldSword);
        recipe_DT.setIngredient('D', MaterialData.dispenser);
        recipe_DT.setIngredient('E', MaterialData.enderPearl);
        recipe_DT.setIngredient('A', ConflictPlugin.art_1_5);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_DT);
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_DT);
       
        //DefenseTowerBlock
        ItemStack result_DefenseTower = new SpoutItemStack(ConflictPlugin.defenseTower, 1);
        SpoutShapedRecipe recipe_DeT = new SpoutShapedRecipe(result_DefenseTower);
        recipe_DeT.shape(" G ", "RER", " A ");
        recipe_DeT.setIngredient('G', MaterialData.goldHelmet);
        recipe_DeT.setIngredient('R', MaterialData.redstoneRepeater);
        recipe_DeT.setIngredient('E', MaterialData.enderPearl);
        recipe_DeT.setIngredient('A', ConflictPlugin.art_1_5);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_DeT);
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_DeT);
     
        //RadarTowerBlock
        ItemStack result_RadarTower = new SpoutItemStack(ConflictPlugin.radarTower, 1);
        SpoutShapedRecipe recipe_RT = new SpoutShapedRecipe(result_RadarTower);
        recipe_RT.shape(" C ", " E ", " A ");
        recipe_RT.setIngredient('C', MaterialData.compass);
        recipe_RT.setIngredient('E', MaterialData.enderPearl);
        recipe_RT.setIngredient('A', ConflictPlugin.art_1_5);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_RT);
       
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

       
        //ChainMail
        //Helm
        ItemStack result_chainHelm = new SpoutItemStack(302);
        SpoutShapedRecipe recipe_chainHelm = new SpoutShapedRecipe(result_chainHelm);
        recipe_chainHelm.shape("RRR", "RLR", "   ");
        recipe_chainHelm.setIngredient('R', MaterialData.redstone);
        recipe_chainHelm.setIngredient('L', MaterialData.lavaBucket);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_chainHelm);
       
        //Plate
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_chainHelm);
       
        //Plate
        ItemStack result_chainPlate = new SpoutItemStack(303);
        SpoutShapedRecipe recipe_chainPlate= new SpoutShapedRecipe(result_chainPlate);
        recipe_chainPlate.shape("RLR", "RLR", "RRR");
        recipe_chainPlate.setIngredient('R', MaterialData.redstone);
        recipe_chainPlate.setIngredient('L', MaterialData.lavaBucket);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_chainPlate);

       
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

       
        //Leggins
        ItemStack result_chainLeggins = new SpoutItemStack(304);
        SpoutShapedRecipe recipe_chainLeggins = new SpoutShapedRecipe(result_chainLeggins);
        recipe_chainLeggins.shape("RRR", "RLR", "R R");
        recipe_chainLeggins.setIngredient('R', MaterialData.redstone);
        recipe_chainLeggins.setIngredient('L', MaterialData.lavaBucket);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_chainLeggins);

       
View Full Code Here

Examples of org.getspout.spoutapi.inventory.SpoutShapedRecipe.shape()

       
        //Shoes
        ItemStack result_chainShoes = new SpoutItemStack(305);
        SpoutShapedRecipe recipe_chainShoes = new SpoutShapedRecipe(result_chainShoes);
        recipe_chainShoes.shape("   ", "RLR", "R R");
        recipe_chainShoes.setIngredient('R', MaterialData.redstone);
        recipe_chainShoes.setIngredient('L', MaterialData.lavaBucket);
        SpoutManager.getMaterialManager().registerSpoutRecipe(recipe_chainShoes);

       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.