-
Notifications
You must be signed in to change notification settings - Fork 17
Fuel Requirement
Fuel Requirement is used to make the recipe need a fuel to be processed (like a furnace).
The fuel item must be provided with an Item Component with the "variant": "custommachinery:fuel"
property.
This requirement will only check if the machine is burning fuel. The check occurs every tick so if the machine run out of fuel during a process it will stop and wait for the player to add some fuel.
The Requirement type of Fuel Requirement is : "type": "custommachinery:fuel"
Put this in the requirement json to define a Fuel Requirement.
The fuel requirement have 2 optional property.
Description : A positive integer that define the amount of fuel burn each tick of the recipe process. If the machine don't have enough burn time remaining a fuel item will be consumed and it's corresponding burntime will be added. If no fuel item is found the machine will stop and error.
Default : 1 The requirement will consume 1 burn time each recipe process tick (same as the vanilla furnace).
Example : "amount": 2
The requirement will consume 2 burn time each tick, meaning the fuel will be consumed 2 times faster than in a vanilla furnace.
Description : A boolean, if false the requirement will not display in jei, if true it will display as a little green "+" below the recipe.
Default : true (The requirement will display)
Example : "jei": false
(The requirement will not display)
How to define a Fuel Requirement:
{
"type": "custommachinery:fuel"
}
3. Machine GUI
- Dump Element
- Energy Element
- Fluid Element
- Fuel Element
- Player Inventory Element
- Progress Bar Element
- Reset Element
- Slot Element
- Status Element
- Text Element
- Texture Element
5. Catalysts
- Biome Requirement
- Block Requirement
- Command Requirement
- Dimension Requirement
- Drop Requirement
- Durability Requirement
- Effect Requirement
- Energy Requirement
- Energy Per Tick Requirement
- Entity Requirement
- Fluid Requirement
- Fluid Per Tick Requirement
- Fuel Requirement
- Item Requirement
- Light Requirement
- Loot Table Requirement
- Position Requirement
- Structure Requirement
- Redstone Requirement
- Time Requirement
- Weather Requirement