Enervation Dynamo
Link to enervation-dynamo
Import the package
Link to import-the-package
To shorten method calls you can import the package like so:
ZenScript Copyimport mods.thermalexpansion.EnervationDynamo;
Add Fuel
Link to add-fuel
ZenScript Copy//mods.thermalexpansion.EnervationDynamo.addFuel(IItemStack stack, int energy);
mods.thermalexpansion.EnervationDynamo.addFuel(<minecraft:stick>, 20000);
Note: The energy
parameter needs to be a value between 2000
and 200000000
.
Remove Fuel
Link to remove-fuel
ZenScript Copy//mods.thermalexpansion.EnervationDynamo.removeFuel(IItemStack stack);
mods.thermalexpansion.EnervationDynamo.removeFuel(<minecraft:stick>);