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
Copy
import 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

Name: addJsonRecipe

ZenScript
Copy
AnvilRecipe.addJsonRecipe(name as string, mapData as MapData)
ParameterType
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>));
ParameterTypeDescription
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
Copy
AnvilRecipe.getRecipeByName(name as string) as T
ParameterType
Parameter
name
Type
string

Name: getRecipeMap

Return Type: T[ResourceLocation]

ZenScript
Copy
// AnvilRecipe.getRecipeMap() as T[ResourceLocation]

<recipetype:tfc:anvil>.getRecipeMap();

Link to getRecipesByOutput

Name: getRecipesByOutput

Return Type: stdlib.List<T>

ZenScript
Copy
AnvilRecipe.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
ParameterType
Parameter
output
Type
IIngredient

Name: remove

ZenScript
Copy
AnvilRecipe.remove(output as IIngredient)
ParameterType
Parameter
output
Type
IIngredient

Name: removeAll

ZenScript
Copy
// AnvilRecipe.removeAll()

<recipetype:tfc:anvil>.removeAll();

Name: removeByInput

ZenScript
Copy
AnvilRecipe.removeByInput(input as IItemStack)
ParameterType
Parameter
input
Type
IItemStack

Name: removeByModid

ZenScript
Copy
AnvilRecipe.removeByModid(modid as string, exclude as Predicate<string>)
ParameterTypeOptionalDefault 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
Copy
AnvilRecipe.removeByName(names as string[])
ParameterType
Parameter
names
Type
string[]

Name: removeByRegex

ZenScript
Copy
AnvilRecipe.removeByRegex(regex as string, exclude as Predicate<string>)
ParameterTypeOptionalDefault Value
Parameter
regex
Type
string
Optional
false
Default Value
Parameter
exclude
Type
Predicate<string>
Optional
true
Default Value
(name as string) as bool => false
NameTypeHas GetterHas Setter
Name
allRecipes
Type
stdlib.List<T>
Has Getter
true
Has Setter
false
Name
recipeMap
Type
T[ResourceLocation]
Has Getter
true
Has Setter
false