feat: initial commit

This commit is contained in:
lucasdpt
2026-06-14 01:24:29 +02:00
commit 0d40f88ab2
5815 changed files with 703860 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[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"