Files
OFModpack/config/rangedpumps-server.toml
lucasdpt 0129d81bd4 fix eol
2026-06-14 02:07:47 +02:00

32 lines
942 B
TOML

[pump]
#The range of the pump
# Default: 64
# Range: 0 ~ 1024
range = 64
#The interval in ticks for when to move on to the next block (higher is slower)
# Default: 8
# Range: 0 ~ 1024
speed = 8
#The capacity of the internal pump tank
# Default: 32000
# Range: > 1000
tankCapacity = 32000
#The capacity of the energy storage
# Default: 32000
# Range: > 0
energyCapacity = 32000
#Energy drained when moving to the next block
# Default: 0
# Range: > 0
energyUsagePerMove = 0
#Energy drained when draining liquid
# Default: 100
# Range: > 0
energyUsagePerDrain = 100
#Whether the pump uses energy to work
useEnergy = true
#Replaces liquids that are removed with a block defined in 'blockIdToReplaceLiquidsWith' (to reduce lag)
replaceLiquidWithBlock = true
#The block that liquids are replaced with when 'replaceLiquidWithBlock' is true
blockIdToReplaceLiquidsWith = "minecraft:stone"