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

FireClayKnappingRecipe

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.FireClayKnappingRecipe;

Implemented Interfaces

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

Methods

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

Add a fire clay knapping recipe

script.zs
// FireClayKnappingRecipe.addRecipe(name as string, outside_slot_required as boolean, pattern as string[], output as IItemStack)
<recipetype:tfc:fire_clay_knapping>.addRecipe("knapping_test", false, ["XXXXX", " XXX ", " XXX ", " XXX ", "XXXXX"], <item:tfc:ceramic/unfired_fire_brick>);
ParameterTypeDescription
Parameter
name
Type
string
Description
name of the recipe
Parameter
outside_slot_required
Type
boolean
Description
should the outside slot be required?
Parameter
pattern
Type
string[]
Description
the pattern
Parameter
output
Type
IItemStack
Description
the output item

Return Type: stdlib.List<T>

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

Return Type: T

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

Return Type: T[ResourceLocation]

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

Return Type: stdlib.List<T>

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