Package thaumcraft.api.crafting

Examples of thaumcraft.api.crafting.ShapedArcaneRecipe


    this.stuff = stuff;
  }

  @Override
  public void registerRecipe() {
    ShapedArcaneRecipe recipe = ThaumcraftApi.addArcaneCraftingRecipe(research, output, aspects, stuff);
    ConfigResearch.recipes.put(name, recipe);
  }
View Full Code Here


   * @param aspects the vis cost per aspect.
   * @param recipe The recipe. Format is exactly the same as vanilla recipes. Input itemstacks are NBT sensitive.
   */
  public static ShapedArcaneRecipe addArcaneCraftingRecipe(String research, ItemStack result, AspectList aspects, Object ... recipe)
    {
    ShapedArcaneRecipe r= new ShapedArcaneRecipe(research, result, aspects, recipe);
        craftingRecipes.add(r);
    return r;
    }
View Full Code Here

   * @param aspects the vis cost per aspect.
   * @param recipe The recipe. Format is exactly the same as vanilla recipes. Input itemstacks are NBT sensitive.
   */
  public static ShapedArcaneRecipe addArcaneCraftingRecipe(String research, ItemStack result, AspectList aspects, Object ... recipe)
    {
    ShapedArcaneRecipe r= new ShapedArcaneRecipe(research, result, aspects, recipe);
        craftingRecipes.add(r);
    return r;
    }
View Full Code Here

TOP

Related Classes of thaumcraft.api.crafting.ShapedArcaneRecipe

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.