AnvilRecipe
Link to anvilrecipe
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport mods.tfc.AnvilRecipe;
Implemented Interfaces
Link to implemented-interfaces
AnvilRecipe implements the following interfaces. That means all methods defined in these interfaces are also available in AnvilRecipe
Methods
Link to methods
Name: addJsonRecipe
ZenScript CopyAnvilRecipe.addJsonRecipe(name as string, mapData as MapData)
Parameter | Type |
---|---|
Parameter name | Type string |
Parameter mapData | Type MapData |
Name: addRecipe
Add an anvil recipe
ZenScript Copy// AnvilRecipe.addRecipe(name as string, input as IIngredient, minTier as int, rules as ForgeRule[], applyForgingBonus as boolean, output as ItemStackProvider)
<recipetype:tfc:anvil>.addRecipe("anvil_test", <tfc:metal/ingot/copper>, 1, [<constant:tfc:forge_rule:hit_any>, <constant:tfc:forge_rule:draw_not_last>, <constant:tfc:forge_rule:hit_any>], true, ItemStackProvider.none(<tfc:metal/chisel_head/copper>));
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description recipe name |
Parameter input | Type IIngredient | Description input ingredient |
Parameter minTier | Type int | Description min anvil tier required for the recipe |
Parameter rules | Type ForgeRule[] | Description rules used to forge the item |
Parameter applyForgingBonus | Type boolean | Description should forging bonus be applied |
Parameter output | Type ItemStackProvider | Description the output item |
Name: getAllRecipes
Return Type: stdlib.List<T>
ZenScript Copy// AnvilRecipe.getAllRecipes() as stdlib.List<T>
<recipetype:tfc:anvil>.getAllRecipes();
Name: getRecipeByName
Return Type: T
ZenScript CopyAnvilRecipe.getRecipeByName(name as string) as T
Parameter | Type |
---|---|
Parameter name | Type string |
Name: getRecipeMap
Return Type: T[ResourceLocation]
ZenScript Copy// AnvilRecipe.getRecipeMap() as T[ResourceLocation]
<recipetype:tfc:anvil>.getRecipeMap();
Name: getRecipesByOutput
Return Type: stdlib.List<T>
ZenScript CopyAnvilRecipe.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
Parameter | Type |
---|---|
Parameter output | Type IIngredient |
Name: remove
ZenScript CopyAnvilRecipe.remove(output as IIngredient)
Parameter | Type |
---|---|
Parameter output | Type IIngredient |
Name: removeAll
ZenScript Copy// AnvilRecipe.removeAll()
<recipetype:tfc:anvil>.removeAll();
Name: removeByInput
ZenScript CopyAnvilRecipe.removeByInput(input as IItemStack)
Parameter | Type |
---|---|
Parameter input | Type IItemStack |
Name: removeByModid
ZenScript CopyAnvilRecipe.removeByModid(modid as string, exclude as Predicate<string>)
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter modid | Type string | Optional false | Default Value |
Parameter exclude | Type Predicate<string> | Optional true | Default Value (name as string) as bool => false |
Name: removeByName
ZenScript CopyAnvilRecipe.removeByName(names as string[])
Parameter | Type |
---|---|
Parameter names | Type string[] |
Name: removeByRegex
ZenScript CopyAnvilRecipe.removeByRegex(regex as string, exclude as Predicate<string>)
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter regex | Type string | Optional false | Default Value |
Parameter exclude | Type Predicate<string> | Optional true | Default Value (name as string) as bool => false |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name allRecipes | Type stdlib.List<T> | Has Getter true | Has Setter false |
Name recipeMap | Type T[ResourceLocation] | Has Getter true | Has Setter false |