Home Commands Examples Getting Started With Scripts Global Keywords
Generic JSON Recipes

AnvilRecipe

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.

script.zs
import mods.tfc.AnvilRecipe;

Implemented Interfaces

AnvilRecipe implements the following interfaces. That means all methods defined in these interfaces are also available in AnvilRecipe

Methods

script.zs
AnvilRecipe.addJsonRecipe(name as string, mapData as MapData)
ParameterType
Parameter
name
Type
string
Parameter
mapData
Type
MapData

Add an anvil recipe

script.zs
// 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

Return Type: stdlib.List<T>

script.zs
// AnvilRecipe.getAllRecipes() as stdlib.List<T>
<recipetype:tfc:anvil>.getAllRecipes();

Return Type: T

script.zs
AnvilRecipe.getRecipeByName(name as string) as T
ParameterType
Parameter
name
Type
string

Return Type: T[ResourceLocation]

script.zs
// AnvilRecipe.getRecipeMap() as T[ResourceLocation]
<recipetype:tfc:anvil>.getRecipeMap();

Return Type: stdlib.List<T>

script.zs
AnvilRecipe.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
ParameterType
Parameter
output
Type
IIngredient
script.zs
AnvilRecipe.remove(output as IIngredient)
ParameterType
Parameter
output
Type
IIngredient
script.zs
// AnvilRecipe.removeAll()
<recipetype:tfc:anvil>.removeAll();
script.zs
AnvilRecipe.removeByInput(input as IItemStack)
ParameterType
Parameter
input
Type
IItemStack
script.zs
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
script.zs
AnvilRecipe.removeByName(names as string[])
ParameterType
Parameter
names
Type
string[]
script.zs
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

Properties

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