Package thaumcraft.api.crafting

Examples of thaumcraft.api.crafting.CrucibleRecipe


    this.aspects = aspects;
  }

  @Override
  public void registerRecipe() {
    CrucibleRecipe recipe = ThaumcraftApi.addCrucibleRecipe(name, output, input, aspects);
    ConfigResearch.recipes.put(name, recipe);
  }
View Full Code Here


     * @param catalyst an itemstack of the catalyst or a string if it is an ore dictionary item
     * @param cost the vis cost
     * @param tags the aspects required to craft this
     */
    public static CrucibleRecipe addCrucibleRecipe(String key, ItemStack result, Object catalyst, AspectList tags) {
      CrucibleRecipe rc = new CrucibleRecipe(key, result, catalyst, tags);
      getCraftingRecipes().add(rc);
    return rc;
  }
View Full Code Here

     * @param catalyst an itemstack of the catalyst or a string if it is an ore dictionary item
     * @param cost the vis cost
     * @param tags the aspects required to craft this
     */
    public static CrucibleRecipe addCrucibleRecipe(String key, ItemStack result, Object catalyst, AspectList tags) {
      CrucibleRecipe rc = new CrucibleRecipe(key, result, catalyst, tags);
      getCraftingRecipes().add(rc);
    return rc;
  }
View Full Code Here

TOP

Related Classes of thaumcraft.api.crafting.CrucibleRecipe

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.