Files
meatballcraft/config/cells.cfg
T
sainagh 6e24b21e79 0.18.4
2026-03-25 15:28:45 -05:00

100 lines
3.4 KiB
INI

# Configuration file
##########################################################################################################
# enabled_cells
#--------------------------------------------------------------------------------------------------------#
# Enable or disable specific cell types. Disabled cells will not be registered.
##########################################################################################################
enabled_cells {
# Enable compacting storage cells
B:enableCompactingCells=true
# Enable configurable storage cells
B:enableConfigurableCells=true
# Enable fluid hyper-density storage cells
B:enableFluidHDCells=true
# Enable hyper-density storage cells
B:enableHDCells=true
# Enable hyper-density compacting storage cells
B:enableHDCompactingCells=true
}
##########################################################################################################
# general
#--------------------------------------------------------------------------------------------------------#
# General settings for cell behavior
##########################################################################################################
general {
# Number of upgrade slots for compacting cells (1-16)
I:compactingCellUpgradeSlots=4
# Maximum essentia types for configurable essentia storage cells (1-16384)
I:configurableCellEssentiaMaxTypes=63
# Maximum fluid types for configurable fluid storage cells (1-16384)
I:configurableCellFluidMaxTypes=63
# Maximum gas types for configurable gas storage cells (1-16384)
I:configurableCellGasMaxTypes=63
# Maximum item types for configurable item storage cells (1-16384)
I:configurableCellItemMaxTypes=63
I:configurableCellMaxTypes=63
# Number of upgrade slots for configurable cells (1-16)
I:configurableCellUpgradeSlots=4
# Enable NBT size computation and display in cell tooltips. Disable for performance.
B:enableNbtSizeTooltip=true
# Number of upgrade slots for hyper-density compacting cells (1-16)
I:hdCompactingCellUpgradeSlots=4
# Number of upgrade slots for hyper-density fluid cells (1-16)
I:hdFluidCellUpgradeSlots=4
# Maximum item types for hyper-density fluid storage cells (1-16384)
I:hdFluidMaxTypes=63
# Number of upgrade slots for hyper-density item cells (1-16)
I:hdItemCellUpgradeSlots=4
# Maximum item types for hyper-density item storage cells (1-16384)
I:hdItemMaxTypes=63
# NBT size warning threshold in KB. Tooltip shows warning when cell NBT exceeds this.
I:nbtSizeWarningThresholdKB=100
}
##########################################################################################################
# idle_drain
#--------------------------------------------------------------------------------------------------------#
# Idle power drain settings (AE power per tick). Higher values = more power consumption.
##########################################################################################################
idle_drain {
# Idle drain for compacting cells
D:compactingIdleDrain=6.0
# Idle drain for configurable cells
D:configurableCellIdleDrain=3.0
# Idle drain for fluid hyper-density cells
D:fluidHdIdleDrain=10.0
# Idle drain for hyper-density compacting cells
D:hdCompactingIdleDrain=20.0
# Idle drain for hyper-density cells
D:hdIdleDrain=10.0
}