This component requires to be installed.
This component is used to make the machine to hold Botania mana.
It is compatible with Botania mana spreaders and other mod stuff that uses the same system.
Basically adding this component to the machine json will add a mana tank to the machine.
"type": "custommachinery:mana" //Mandatory to define a mana component.
Capacity
Name: capacity
Description:
A positive integer value that define the amount of mana that can be stored in the tank (Volume in Botania mana)
Example:
Max output
Name : maxOutput
Description :
A positive integer that represent the max mana that can be output from the tank during a single tick.
Default :
The capacity
of the tank.
Example :
"maxOutput": 1000 //The machine can give 1000 mana/tick
Mode
Name : mode
Description :
The IO mode of the tank(can be change ingame with wand of the forest).
Available modes are (input/output/both/none).
Default : both
Example :
"mode": "input" //Set the tank as an input tank.
An example of a mana component that stores 100000 mana, send 1000 mana/tick and receive 666 mana/tick.
{
"type": "custommachinery:mana",
"capacity": 100000,
"maxInput": 1000,
"maxOutput": 666
}