IncubatorFuelManager

Link to incubatorfuelmanager

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
Copy
import mods.aether.IncubatorFuelManager;

Name: addFuel

Adds this item as fuel for the Incubator with the given burn time.

ZenScript
Copy
// IncubatorFuelManager.addFuel(ingredient as IIngredient, burnTime as int)
mods.aether.IncubatorFuelManager.addFuel(<item:minecraft:coal>, 250);
mods.aether.IncubatorFuelManager.addFuel(<tag:items:minecraft:planks>, 250);
ParameterTypeDescriptionOptional
Parameter
item
Type
IIngredient
Description
fuel IIngredient
Optional
false
Parameter
burnTime
Type
int
Description
the fuel's burn time
Optional
false

Name: removeFuel

Removes this fuel item from the Incubator.

ZenScript
Copy
// IncubatorFuelManager.removeFuel(ingredient as IIngredient)
mods.aether.IncubatorFuelManager.removeFuel(<item:minecraft:coal>);
mods.aether.IncubatorFuelManager.removeFuel(<tag:items:minecraft:planks>);
ParameterTypeDescriptionOptional
Parameter
item
Type
IIngredient
Description
fuel IIngredient
Optional
false