Package uristqwerty.CraftGuide.api

Examples of uristqwerty.CraftGuide.api.RecipeTemplate


        }
    }

    @Override
    public void generateRecipes(RecipeGenerator generator) {
        RecipeTemplate template = generator.createRecipeTemplate(slots, null, "/gui/CraftGuideRecipe.png", 1, 1, 82, 1);

        // Rotor Repair
        if (EnumMachineAlpha.TURBINE.isAvaliable()) {
            ItemStack[] rotorRepair = new ItemStack[10];
            rotorRepair[0] = RailcraftPartItems.getTurbineRotor();
View Full Code Here


    @Override
    public void generateRecipes(RecipeGenerator generator) {
        ItemStack furnace = EnumMachineAlpha.BLAST_FURNACE.getItem();
        if(furnace != null) {
            RecipeTemplate template = generator.createRecipeTemplate(slots, furnace, "/gui/CraftGuideRecipe.png", 1, 181, 82, 181);

            for(IBlastFurnaceRecipe recipe : RailcraftCraftingManager.blastFurnace.getRecipes()) {
                ItemStack[] items = new ItemStack[4];
                items[0] = recipe.getInput();
                items[1] = recipe.getOutput();
View Full Code Here

    @Override
    public void generateRecipes(RecipeGenerator generator) {
        ItemStack crafter = EnumMachineAlpha.ROCK_CRUSHER.getItem();
        if (crafter != null) {
            RecipeTemplate template = generator.createRecipeTemplate(slots, crafter, RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_craft_guide.png", 1, 61, 82, 61);

            for (IRockCrusherRecipe recipe : RailcraftCraftingManager.rockCrusher.getRecipes()) {
                Object[] items = new Object[11];
                items[0] = recipe.getInput();
                List<Map.Entry<ItemStack, Float>> output = recipe.getOutputs();
View Full Code Here

TOP

Related Classes of uristqwerty.CraftGuide.api.RecipeTemplate

Copyright © 2018 www.massapicom. 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.