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

CokeOven

Allows you to add or remove Coke Oven recipes.

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

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

Implemented Interfaces

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

Methods

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

Adds a coke oven recipe

script.zs
// 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);
ParameterTypeDescriptionOptionalDefault Value
Parameter
recipePath
Type
string
Description
RecipePath The recipe name, without the resource location
Optional
false
Default Value
Parameter
ingredient
Type
IIngredientWithAmount
Description
The recipe’s input
Optional
false
Default Value
Parameter
time
Type
int
Description
The time the recipe requires, in ticks
Optional
false
Default Value
Parameter
output
Type
IItemStack
Description
The produced item
Optional
false
Default Value
Parameter
creosoteProduced
Type
int
Description
The amount of creosote produced
Optional
true
Default Value
0

Return Type: stdlib.List<T>

script.zs
// CokeOven.getAllRecipes() as stdlib.List<T>
<recipetype:immersiveengineering:coke_oven>.getAllRecipes();

Return Type: T

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

Return Type: T[ResourceLocation]

script.zs
// CokeOven.getRecipeMap() as T[ResourceLocation]
<recipetype:immersiveengineering:coke_oven>.getRecipeMap();

Return Type: stdlib.List<T>

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