The Blast Furnace package can be used to add/remove recipes/fuels to/from the Immersive Engineering Blast Furnace.

Hinzufügen des Packages

Link to hinzufügen-des-packages

You can call the BlastFurnace package using mods.immersiveengineering.BlastFurnace.

Rezept hinzufügen:

Link to rezept-hinzufügen

RequiredTypeDatentyp
Required
Required
Type
Output
Datentyp
IItemstack
Required
Required
Type
Input
Datentyp
IIngredient
Required
Required
Type
Time
Datentyp
Integer
Required
Optional
Type
Slag
Datentyp
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.BlastFurnace.addRecipe(IItemStack output, IIngredient input, int time, @Optional IItemStack slag);
mods.immersiveengineering.BlastFurnace.addRecipe(<minecraft:diamond>, <ore:logWood>, 2000);
mods.immersiveengineering.BlastFurnace.addRecipe(<minecraft:diamond>, <ore:logWood>, 2000, <minecraft:dirt>);

Rezept entfernen

Link to rezept-entfernen

TypeDatentyp
Type
Output
Datentyp
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.BlastFurnace.removeRecipe(IItemStack output);
mods.immersiveengineering.BlastFurnace.removeRecipe(<minecraft:diamond>);
RequiredTypeDatentyp
Required
Required
Type
Input
Datentyp
IIngredient
Required
Required
Type
Time
Datentyp
Integer
ZenScript
Copy
//Example:
mods.immersiveengineering.BlastFurnace.addFuel(IIngredient input, int time);
mods.immersiveengineering.BlastFurnace.addFuel(<ore:plankWood>, 2000);
RequiredTypeDatentyp
Required
Required
Type
Output
Datentyp
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.BlastFurnace.removeFuel(IItemStack output);
mods.immersiveengineering.BlastFurnace.removeFuel(<minecraft:planks>);