-
-
Notifications
You must be signed in to change notification settings - Fork 80
Fuel Types
You can require your Movecraft to use fuel in a furnace to move, there are some default fuels to get started quick, all you need is to set fuelBurnRate: 1.0
in your Craft file to enable crafts requiring fuel.
The default items are coal_block
, coal
& charcoal
that can be used, these have their own burn rates.
You can set specific fuel and their burn rates by adding fuelTypes:
to your craft file.
For example, I have added the defaults plus a stick! The stick will burn extreamly fast!
fuelTypes:
coal_block: 80.0
coal: 8.0
charcoal: 8.0
stick: 0.5
To extend fuels, you can require an engine be required too! These work like flyblocks
by adding blocks to moveblocks:
with their values required.
In the example below, exactly 1 redstone block will be required for an engine, otherwise your craft will be "Disabled".
moveblocks:
redstone_block: # redstone represents engines
- N1
- 100.0
You can use the same above with a percentage required of the block for an engine, the example below required 5% of the craft be redstone_block as an "engine".
moveblocks:
redstone_block: # redstone represents engines
- 5.0
- 100.0