ArcFurnace
Link to arcfurnace
Allows you to add or remove arc furnace smelter recipes.
Arc Furnace recipes consist of one base ingredident, a list of additives, and a list of outputs. Optionally, they can also have an item as slag output.
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.immersiveengineering.ArcFurnace;
Implemented Interfaces
Link to implemented-interfaces
ArcFurnace implements the following interfaces. That means all methods defined in these interfaces are also available in ArcFurnace
Methods
Link to methods
Name: addJsonRecipe
ZenScript CopyArcFurnace.addJsonRecipe(name as string, mapData as MapData)
Parameter | Type |
---|---|
Parameter name | Type string |
Parameter mapData | Type MapData |
Name: addRecipe
Adds a recipe to the Arc Furnace
ZenScript Copy// ArcFurnace.addRecipe(recipePath as string, mainIngredient as IIngredientWithAmount, additives as IIngredientWithAmount[], time as int, energy as int, outputs as IItemStack[], slag as IItemStack)
<recipetype:immersiveengineering:arc_furnace>.addRecipe("coal_to_bedrock", <item:minecraft:coal_block> * 2, [<item:minecraft:diamond> * 1, <tag:minecraft:wool>], 2000, 100000, [<item:minecraft:bedrock>], <item:minecraft:gold_nugget>);
Parameter | Type | Description | Optional | Default Value |
---|---|---|---|---|
Parameter recipePath | Type string | Description The recipe name, without the resource location | Optional false | Default Value |
Parameter mainIngredient | Type IIngredientWithAmount | Description The main ingredient | Optional false | Default Value |
Parameter additives | Type IIngredientWithAmount[] | Description The additives | Optional false | Default Value |
Parameter time | Type int | Description The time the recipe takes, in ticks | Optional false | Default Value |
Parameter energy | Type int | Description The total energy the recipe requires | Optional false | Default Value |
Parameter outputs | Type IItemStack[] | Description The recipe result(s) | Optional false | Default Value |
Parameter slag | Type IItemStack | Description The item that should appear as slag | Optional true | Default Value item:minecraft:air |
Name: getAllRecipes
Return Type: stdlib.List<T>
ZenScript Copy// ArcFurnace.getAllRecipes() as stdlib.List<T>
<recipetype:immersiveengineering:arc_furnace>.getAllRecipes();
Name: getRecipeByName
Return Type: T
ZenScript CopyArcFurnace.getRecipeByName(name as string) as T
Parameter | Type |
---|---|
Parameter name | Type string |
Name: getRecipeMap
Return Type: T[ResourceLocation]
ZenScript Copy// ArcFurnace.getRecipeMap() as T[ResourceLocation]
<recipetype:immersiveengineering:arc_furnace>.getRecipeMap();
Name: getRecipesByOutput
Return Type: stdlib.List<T>
ZenScript CopyArcFurnace.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
Parameter | Type |
---|---|
Parameter output | Type IIngredient |
Name: remove
Removes a recipe based on its outputs. Removes the recipe as long as one of the recipe's outputs matches the ingredient given.
ZenScript Copy// ArcFurnace.remove(output as IIngredient, checkSlag as boolean)
<recipetype:immersiveengineering:arc_furnace>.remove(<item:minecraft:iron_ore>, true);
Parameter | Type | Description |
---|---|---|
Parameter output | Type IIngredient | Description The recipe result |
Parameter checkSlag | Type boolean | Description If the slag output should be included in the check or not |
Name: removeAll
ZenScript Copy// ArcFurnace.removeAll()
<recipetype:immersiveengineering:arc_furnace>.removeAll();
Name: removeByInput
ZenScript CopyArcFurnace.removeByInput(input as IItemStack)
Parameter | Type |
---|---|
Parameter input | Type IItemStack |
Name: removeByModid
ZenScript CopyArcFurnace.removeByModid(modid as string, exclude as Predicate<string>)
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter modid - mod que lo añade | Type string | Optional false | Default Value |
Parameter excluir | Type Predicate<string> | Optional true | Default Value (name as string) as bool => false |
Name: removeByName
ZenScript CopyArcFurnace.removeByName(names as string[])
Parameter | Type |
---|---|
Parameter names | Type string[] |
Name: removeByRegex
ZenScript CopyArcFurnace.removeByRegex(regex as string, exclude as Predicate<string>)
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter regex | Type string | Optional false | Default Value |
Parameter excluir | Type Predicate<string> | Optional true | Default Value (name as string) as bool => false |
Properties
Link to properties
Nombre | Type | Has Getter | Has Setter |
---|---|---|---|
Nombre allRecipes | Type stdlib.List<T> | Has Getter true | Has Setter false |
Nombre recipeMap | Type T[ResourceLocation] | Has Getter true | Has Setter false |