Examples of CrucibleRecipe


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

Examples of thaumcraft.api.crafting.CrucibleRecipe

     * @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

Examples of thaumcraft.api.crafting.CrucibleRecipe

     * @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
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.