Allows you to add or remove Coke Oven recipes.

Coke Oven recipes consist of an input, an output and the amount of creosote produced

Importare la Classe

Link to importare-la-classe

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.immersiveengineering.CokeOven;

Interfacce Implementate

Link to interfacce-implementate

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

Name: addJsonRecipe

ZenScript
Copy
CokeOven.addJsonRecipe(name as string, mapData as MapData)
ParametroTipo
Parametro
nome
Tipo
string
Parametro
mapData
Tipo
MapData

Name: addRecipe

Adds a coke oven recipe

ZenScript
Copy
// CokeOven.addRecipe(recipePath as string, ingredient as IIngredientWithAmount, time as int, output as IItemStack, creosoteProduced as int)

<recipetype:immersiveengineering:coke_oven>.addRecipe("burn_a_stick", <item:minecraft:stick>, 100, <item:immersiveengineering:stick_treated>, 1);
ParametroTipoDescrizioneOptionalDefault Value
Parametro
recipePath
Tipo
string
Descrizione
RecipePath The recipe name, without the resource location
Optional
no
Default Value
Parametro
ingredient
Tipo
IIngredientWithAmount
Descrizione
The recipe's input
Optional
no
Default Value
Parametro
time
Tipo
int
Descrizione
The time the recipe requires, in ticks
Optional
no
Default Value
Parametro
output
Tipo
IItemStack
Descrizione
The produced item
Optional
no
Default Value
Parametro
creosoteProduced
Tipo
int
Descrizione
The amount of creosote produced
Optional
Default Value
0

Name: getAllRecipes

Return Type: stdlib.List<T>

ZenScript
Copy
// CokeOven.getAllRecipes() as stdlib.List<T>

<recipetype:immersiveengineering:coke_oven>.getAllRecipes();

Name: getRecipeByName

Return Type: T

ZenScript
Copy
CokeOven.getRecipeByName(name as string) as T
ParametroTipo
Parametro
nome
Tipo
string

Name: getRecipeMap

Return Type: T[ResourceLocation]

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

<recipetype:immersiveengineering:coke_oven>.getRecipeMap();

Link to getRecipesByOutput

Name: getRecipesByOutput

Return Type: stdlib.List<T>

ZenScript
Copy
CokeOven.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
ParametroTipo
Parametro
output
Tipo
IIngredient

Name: remove

ZenScript
Copy
CokeOven.remove(output as IIngredient)
ParametroTipo
Parametro
output
Tipo
IIngredient

Name: removeAll

ZenScript
Copy
// CokeOven.removeAll()

<recipetype:immersiveengineering:coke_oven>.removeAll();

Name: removeByInput

ZenScript
Copy
CokeOven.removeByInput(input as IItemStack)
ParametroTipo
Parametro
input
Tipo
IItemStack

Name: removeByModid

ZenScript
Copy
CokeOven.removeByModid(modid as string, exclude as Predicate<string>)
ParametroTipoOptionalDefault Value
Parametro
modid
Tipo
string
Optional
no
Default Value
Parametro
esclude
Tipo
Predicate<string>
Optional
Default Value
(name as string) as bool => false

Name: removeByName

ZenScript
Copy
CokeOven.removeByName(names as string[])
ParametroTipo
Parametro
names
Tipo
string[]

Name: removeByRegex

ZenScript
Copy
CokeOven.removeByRegex(regex as string, exclude as Predicate<string>)
ParametroTipoOptionalDefault Value
Parametro
regex
Tipo
string
Optional
no
Default Value
Parametro
esclude
Tipo
Predicate<string>
Optional
Default Value
(name as string) as bool => false
NomeTipoHa GetterHa Setter
Nome
allRecipes
Tipo
stdlib.List<T>
Ha Getter
Ha Setter
no
Nome
recipeMap
Tipo
T[ResourceLocation]
Ha Getter
Ha Setter
no