Powered Thingies :: Fluid Burner :: Fuel
Link to powered-thingies--fluid-burner--fuel
Importing
Link to importing
ZenScript Copyimport mods.poweredthingies.Tweaker.fluidBurnerFuelTweaker as fuel;
Listing Keys, Removing Recipes by Key, Clearing
Link to listing-keys-removing-recipes-by-key-clearing
ZenScript Copyfuel().logKeys()
fuel().removeRecipe('liquid:fluid_lava') // check <logKeys> output for valid keys
fuel().clear()
Adding Recipe
Link to adding-recipe
Signature
Link to signature
ZenScript CopyaddFuel(fluid: ILiquidStack, ticks: Int)
ticks
represents the number of ticks the specified fuel will burn for.
Пример
Link to пример
ZenScript Copyfuel().addFuel(<liquid:tf-sewage> * 50, 100);
Notes
Link to notes
All of these actions will get cached and ran after the default registry for this machine has finished registering all recipes (including the ones from the custom jsons).