This commit is contained in:
2026-01-02 14:53:38 +01:00
commit 1b961c0df8
3634 changed files with 547921 additions and 0 deletions

811
config/DistantHorizons.toml Normal file
View File

@@ -0,0 +1,811 @@
_version = 2
[client]
#
# Should Distant Horizon's config button appear in the options screen next to fov slider?
optionsButton = true
[client.advanced]
[client.advanced.buffers]
#
# What method should be used to upload geometry to the GPU?
#
# AUTO: Picks the best option based on the GPU you have.
#
# BUFFER_STORAGE: Default if OpenGL 4.5 is supported.
# Fast rendering, no stuttering.
#
# SUB_DATA: Backup option for NVIDIA.
# Fast rendering but may stutter when uploading.
#
# BUFFER_MAPPING: Slow rendering but won't stutter when uploading.
# Generally the best option for integrated GPUs.
# Default option for AMD/Intel if OpenGL 4.5 isn't supported.
# May end up storing buffers in System memory.
# Fast rendering if in GPU memory, slow if in system memory,
# but won't stutter when uploading.
#
# DATA: Fast rendering but will stutter when uploading.
# Backup option for AMD/Intel.
# Fast rendering but may stutter when uploading.
#
# If you don't see any difference when changing these settings,
# or the world looks corrupted: restart your game.
gpuUploadMethod = "AUTO"
#
# How long should a buffer wait per Megabyte of data uploaded?
# Helpful resource for frame times: https://fpstoms.com
#
# Longer times may reduce stuttering but will make LODs
# transition and load slower. Change this to [0] for no timeout.
#
# NOTE:
# Before changing this config, try changing the "GPU Upload method" first.
gpuUploadPerMegabyteInMilliseconds = 0
[client.advanced.lodBuilding]
#
# How should block data be compressed when creating LOD data?
# This setting will only affect new or updated LOD data,
# any data already generated when this setting is changed will be
# unaffected until it is modified or re-loaded.
#
# MERGE_SAME_BLOCKS
# Every block/biome change is recorded in the database.
# This is what DH 2.0 and 2.0.1 all used by default and will store a lot of data.
# Expected Compression Ratio: 1.0
#
# VISUALLY_EQUAL
# Only visible block/biome changes are recorded in the database.
# Hidden blocks (IE ores) are ignored.
# Expected Compression Ratio: 0.7
worldCompression = "VISUALLY_EQUAL"
#
# If false LODs will be lit by Minecraft's lighting engine when possible
# and fall back to the DH lighting engine only when necessary.
#
# If true LODs will only be lit using Distant Horizons' lighting engine.
#
# Generally it is best to leave this disabled and should only be enabled
# if there are lighting issues or for debugging.
onlyUseDhLightingEngine = false
#
# A comma separated list of block resource locations that shouldn't be rendered
# if they are in a 0 sky light underground area.
# Note: air is always included in this list.
ignoredRenderCaveBlockCsv = "minecraft:glow_lichen,minecraft:rail,minecraft:water,minecraft:lava,minecraft:bubble_column"
#
# If true LOD generation for pre-existing chunks will attempt to pull the lighting data
# saved in Minecraft's Region files.
# If false DH will pull in chunks without lighting and re-light them.
#
# Setting this to true will result in faster LOD generation
# for already generated worlds, but is broken by most lighting mods.
#
# Set this to false if LODs are black.
pullLightingForPregeneratedChunks = false
#
# What algorithm should be used to compress new LOD data?
# This setting will only affect new or updated LOD data,
# any data already generated when this setting is changed will be
# unaffected until it needs to be re-written to the database.
#
# UNCOMPRESSED
# Should only be used for testing, is worse in every way vs [LZ4].
# Expected Compression Ratio: 1.0
# Estimated average DTO read speed: 1.64 milliseconds
# Estimated average DTO write speed: 12.44 milliseconds
#
# LZ4
# A good option if you're CPU limited and have plenty of hard drive space.
# Expected Compression Ratio: 0.36
# Estimated average DTO read speed: 1.85 ms
# Estimated average DTO write speed: 9.46 ms
#
# LZMA2
# Slow but very good compression.
# Expected Compression Ratio: 0.14
# Estimated average DTO read speed: 11.89 ms
# Estimated average DTO write speed: 192.01 ms
dataCompression = "LZMA2"
#
# A comma separated list of block resource locations that won't be rendered by DH.
# Note: air is always included in this list.
ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire"
#
# Determines how long must pass between LOD chunk updates before another.
# update can occur
#
# Increasing this value will reduce CPU load but may may cause
# LODs to become outdated more frequently or for longer.
minTimeBetweenChunkUpdatesInSeconds = 1
#
# Normally DH will attempt to skip creating LODs for chunks it's already seen
# and that haven't changed.
#
# However sometimes that logic incorrecly prevents LODs from being updated.
# Disabling this check may fix issues where LODs aren't updated after
# blocks have been changed.
disableUnchangedChunkCheck = false
[client.advanced.autoUpdater]
#
# If DH should use the nightly (provided by Gitlab), or stable (provided by Modrinth) build.
# If [AUTO] is selected DH will update to new stable releases if the current jar is a stable jar
# and will update to new nightly builds if the current jar is a nightly jar (IE the version number ends in '-dev').
updateBranch = "AUTO"
#
# Automatically check for updates on game launch?
enableAutoUpdater = true
#
# Should Distant Horizons silently, automatically download and install new versions?
enableSilentUpdates = false
[client.advanced.multiThreading]
#
# How many threads should be used when building LODs?
#
# These threads run when terrain is generated, when
# certain graphics settings are changed, and when moving around the world.
#
# Multi-threading Note:
# If the total thread count in Distant Horizon's config is more threads than your CPU has cores,
# CPU performance may suffer if Distant Horizons has a lot to load or generate.
# This can be an issue when first loading into a world, when flying, and/or when generating new terrain.
numberOfLodBuilderThreads = 3
#
# Should only be disabled if deadlock occurs and LODs refuse to update.
# This will cause CPU usage to drastically increase for the Lod Builder threads.
#
# Note that if deadlock did occur restarting MC may be necessary to stop the locked threads.
enableLodBuilderThreadLimiting = true
#
# If this value is less than 1.0, it will be treated as a percentage
# of time each thread can run before going idle.
#
# This can be used to reduce CPU usage if the thread count
# is already set to 1 for the given option, or more finely
# tune CPU performance.
runTimeRatioForWorldGenerationThreads = "0.5"
#
# If this value is less than 1.0, it will be treated as a percentage
# of time each thread can run before going idle.
#
# This can be used to reduce CPU usage if the thread count
# is already set to 1 for the given option, or more finely
# tune CPU performance.
runTimeRatioForLodBuilderThreads = "0.25"
#
# If this value is less than 1.0, it will be treated as a percentage
# of time each thread can run before going idle.
#
# This can be used to reduce CPU usage if the thread count
# is already set to 1 for the given option, or more finely
# tune CPU performance.
runTimeRatioForFileHandlerThreads = "0.5"
#
# If this value is less than 1.0, it will be treated as a percentage
# of time each thread can run before going idle.
#
# This can be used to reduce CPU usage if the thread count
# is already set to 1 for the given option, or more finely
# tune CPU performance.
runTimeRatioForUpdatePropagatorThreads = "0.25"
#
# How many threads should be used when reading/writing LOD data to/from disk?
#
# Increasing this number will cause LODs to load in faster,
# but may cause lag when loading a new world or when
# quickly flying through existing LODs.
#
# Multi-threading Note:
# If the total thread count in Distant Horizon's config is more threads than your CPU has cores,
# CPU performance may suffer if Distant Horizons has a lot to load or generate.
# This can be an issue when first loading into a world, when flying, and/or when generating new terrain.
numberOfFileHandlerThreads = 3
#
# How many threads should be used when applying LOD updates?
# An LOD update is the operation of down-sampling a high detail LOD
# into a lower detail one.
#
# This config can have a much higher number of threads
# assigned and much lower run time ratio vs other thread pools
# because the amount of time any particular thread may run is relatively low.
#
# This is because LOD updating only only partially thread safe,
# so between 40% and 60% of the time a given thread may end up
# waiting on another thread to finish updating the same LOD it also wants
# to work on.
#
# Multi-threading Note:
# If the total thread count in Distant Horizon's config is more threads than your CPU has cores,
# CPU performance may suffer if Distant Horizons has a lot to load or generate.
# This can be an issue when first loading into a world, when flying, and/or when generating new terrain.
numberOfUpdatePropagatorThreads = 3
#
# How many threads should be used when generating LOD
# chunks outside the normal render distance?
#
# If you experience stuttering when generating distant LODs,
# decrease this number.
# If you want to increase LOD
# generation speed, increase this number.
#
# Multi-threading Note:
# If the total thread count in Distant Horizon's config is more threads than your CPU has cores,
# CPU performance may suffer if Distant Horizons has a lot to load or generate.
# This can be an issue when first loading into a world, when flying, and/or when generating new terrain.
numberOfWorldGenerationThreads = 3
[client.advanced.logging]
#
# If enabled, the mod will log information about the renderer OpenGL process.
# This can be useful for debugging.
logRendererGLEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log performance about the world generation process.
# This can be useful for debugging.
logWorldGenPerformance = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log information about file sub-dimension operations.
# This can be useful for debugging.
logFileSubDimEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, a chat message will be displayed if Java doesn't have enough
# memory allocated to run DH well.
showLowMemoryWarningOnStartup = true
#
# If enabled, a chat message will be displayed when a replay is started
# giving some basic information about how DH will function.
showReplayWarningOnStartup = true
#
# If enabled, the mod will log information about file read/write operations.
# This can be useful for debugging.
logFileReadWriteEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log information about network operations.
# This can be useful for debugging.
logNetworkEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, a chat message will be displayed when a potentially problematic
# mod is installed alongside DH.
showModCompatibilityWarningsOnStartup = true
#
# If enabled, the mod will log information about the renderer buffer process.
# This can be useful for debugging.
logRendererBufferEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log information about the LOD generation process.
# This can be useful for debugging.
logLodBuilderEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log information about the world generation process.
# This can be useful for debugging.
logWorldGenEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
#
# If enabled, the mod will log information about the world generation process.
# This can be useful for debugging.
logWorldGenLoadEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE"
[client.advanced.debugging]
#
# If enabled this will disable (most) vanilla Minecraft rendering.
#
# NOTE: Do not report any issues when this mode is on!
# This setting is only for fun and debugging.
# Mod compatibility is not guaranteed.
lodOnlyMode = false
#
# Stops vertex colors from being passed.
# Useful for debugging shaders
enableWhiteWorld = false
#
# What renderer is active?
#
# DEFAULT: Default lod renderer
# DEBUG: Debug testing renderer
# DISABLED: Disable rendering
rendererMode = "DEFAULT"
#
# If enabled the LODs will render as wireframe.
renderWireframe = false
#
# If true the F8 key can be used to cycle through the different debug modes.
# and the F6 key can be used to enable and disable LOD rendering.
enableDebugKeybindings = false
#
# If true overlapping quads will be rendered as bright red for easy identification.
# If false the quads will be rendered normally.
showOverlappingQuadErrors = false
#
# Should specialized colors/rendering modes be used?
#
# OFF: LODs will be drawn with their normal colors.
# SHOW_DETAIL: LODs' color will be based on their detail level.
# SHOW_BLOCK_MATERIAL: LODs' color will be based on their material.
# SHOW_OVERLAPPING_QUADS: LODs will be drawn with total white, but overlapping quads will be drawn with red.
debugRendering = "OFF"
#
# If true OpenGL Buffer garbage collection will be logged
# this also includes the number of live buffers.
logBufferGarbageCollection = false
[client.advanced.debugging.debugWireframe]
#
# Render LOD section status?
showRenderSectionStatus = false
#
# Render full data update/lock status?
showFullDataUpdateStatus = false
#
# Render queued world gen tasks?
showWorldGenQueue = false
#
# Render Quad Tree Rendering status?
showQuadTreeRenderStatus = false
#
# If enabled, various wireframes for debugging internal functions will be drawn.
#
# NOTE: There WILL be performance hit!
# Additionally, only stuff that's loaded after you enable this
# will render their debug wireframes.
enableRendering = false
[client.advanced.debugging.openGl]
#
# Requires a reboot to change.
overrideVanillaGLLogger = false
#
# Can be changed if you experience crashing when loading into a world.
#
# Defines the OpenGL context type Distant Horizon's will create.
# Generally this should be left as [CORE] unless there is an issue with your GPU driver.
# Possible values: [CORE],[COMPAT],[ANY]
glProfileMode = "CORE"
#
# Defines how OpenGL errors are handled.
# May incorrectly catch OpenGL errors thrown by other mods.
#
# IGNORE: Do nothing.
# LOG: write an error to the log.
# LOG_THROW: write to the log and throw an exception.
# Warning: this should only be enabled when debugging the LOD renderer
# as it may break Minecraft's renderer when an exception is thrown.
glErrorHandlingMode = "IGNORE"
#
# Can be changed if you experience crashing when loading into a world.
#
# If true Distant Horizon's OpenGL contexts will be created with legacy OpenGL methods disabled.
# Distant Horizons doesn't use any legacy OpenGL methods so normally this should be disabled.
enableGlForwardCompatibilityMode = true
#
# Can be changed if you experience crashing when loading into a world.
# Note: setting to an invalid version may also cause the game to crash.
#
# Leaving this value at causes DH to try all supported GL versions.
#
# Defines the requested OpenGL context major version Distant Horizons will create.
# Possible values (DH requires 3.2 or higher at minimum):
# 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0
# 3.3, 3.2
glContextMajorVersion = 0
#
# Can be changed if you experience crashing when loading into a world.
#
# If true Distant Horizon's OpenGL contexts will be created with debugging enabled.
# This allows for enhanced debugging but may throw warnings for other mods or active overlay software.
enableGlDebugContext = false
#
# Can be changed if you experience crashing when loading into a world.
# Note: setting to an invalid version may also cause the game to crash.
#
# Defines the requested OpenGL context major version Distant Horizons will create.
# Possible values (DH requires 3.2 or higher at minimum):
# 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0
# 3.3, 3.2
glContextMinorVersion = 0
[client.advanced.debugging.exampleConfigScreen]
shortTest = "69"
mapTest = "{}"
byteTest = "8"
longTest = "42069"
listTest = ["option 1", "option 2", "option 3"]
boolTest = false
doubleTest = "420.69"
floatTest = "0.42069"
linkableTest = 420
intTest = 69420
stringTest = "Test input box"
[client.advanced.graphics]
[client.advanced.graphics.ssao]
#
# Determines how many points in space are sampled for the occlusion test.
# Higher numbers will improve quality and reduce banding, but will increase GPU load.
sampleCount = 6
#
# Determines how dark the Screen Space Ambient Occlusion effect will be.
strength = "0.2"
#
# The radius, measured in pixels, that blurring is calculated for the SSAO.
# Higher numbers will reduce banding at the cost of GPU performance.
blurRadius = 2
#
# Increasing the value can reduce banding at the cost of reducing the strength of the effect.
bias = "0.02"
#
# Determines how dark the occlusion shadows can be.
# 0 = totally black at the corners
# 1 = no shadow
minLight = "0.25"
#
# Determines the radius Screen Space Ambient Occlusion is applied, measured in blocks.
radius = "4.0"
#
# Enable Screen Space Ambient Occlusion
enabled = true
[client.advanced.graphics.advancedGraphics]
#
# If true all beacons near the camera won't be drawn to prevent vanilla overdraw.
# If false all beacons will be rendered.
#
# Generally this should be left as false. It's main purpose is for debugging
# beacon updating/rendering.
disableBeaconDistanceCulling = false
#
# What the value should vanilla Minecraft's texture LodBias be?
# If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0)
lodBias = "0.0"
#
# How should the sides and bottom of grass block LODs render?
#
# AS_GRASS: all sides of dirt LOD's render using the top (green) color.
# FADE_TO_DIRT: sides fade from grass to dirt.
# AS_DIRT: sides render entirely as dirt.
grassSideRendering = "FADE_TO_DIRT"
#
# Determines how far from the camera Distant Horizons will start rendering.
# Measured as a percentage of the vanilla render distance.
#
# Higher values will prevent LODs from rendering behind vanilla blocks at a higher distance,
# but may cause holes to appear in the LODs.
# Holes are most likely to appear when flying through unloaded terrain.
#
# Increasing the vanilla render distance increases the effectiveness of this setting.
overdrawPrevention = "0.4"
#
# How bright LOD colors are.
#
# 0 = black
# 1 = normal
# 2 = near white
brightnessMultiplier = "1.0"
#
# If enabled caves will be culled
#
# NOTE: This feature is under development and
# it is VERY experimental! Please don't report
# any issues related to this feature.
#
# Additional Info: Currently this cull all faces
# with skylight value of 0 in dimensions that
# does not have a ceiling.
enableCaveCulling = true
#
# Identical to the other frustum culling option
# only used when a shader mod is present using the DH API
# and the shadow pass is being rendered.
#
# Disable this if shadows render incorrectly.
disableShadowPassFrustumCulling = false
#
# At what Y value should cave culling start?
caveCullingHeight = 60
#
# How should LODs be shaded?
#
# AUTO: Uses the same side shading as vanilla Minecraft blocks.
# ENABLED: Simulates Minecraft's block shading for LODs.
# Can be used to force LOD shading when using some shaders.
# DISABLED: All LOD sides will be rendered with the same brightness.
lodShading = "AUTO"
#
# How saturated LOD colors are.
#
# 0 = black and white
# 1 = normal
# 2 = very saturated
saturationMultiplier = "1.0"
#
# This is the earth size ratio when applying the curvature shader effect.
# Note: Enabling this feature may cause rendering bugs.
#
# 0 = flat/disabled
# 1 = 1 to 1 (6,371,000 blocks)
# 100 = 1 to 100 (63,710 blocks)
# 10000 = 1 to 10000 (637.1 blocks)
#
# Note: Due to current limitations, the min value is 50
# and the max value is 5000. Any values outside this range
# will be set to 0 (disabled).
earthCurveRatio = 0
#
# If false LODs outside the player's camera
# aren't drawn, increasing GPU performance.
#
# If true all LODs are drawn, even those behind
# the player's camera, decreasing GPU performance.
#
# Disable this if you see LODs disappearing at the corners of your vision.
disableFrustumCulling = false
[client.advanced.graphics.genericRendering]
#
# If true LOD clouds will be rendered.
enableCloudRendering = true
#
# If true LOD beacon beams will be rendered.
enableBeaconRendering = true
#
# If true non terrain objects will be rendered in DH's terrain.
# This includes beacon beams and clouds.
enableRendering = true
[client.advanced.graphics.quality]
#
# What is the maximum detail LODs should be drawn at?
# Higher settings will increase memory and GPU usage.
#
# CHUNK: render 1 LOD for each Chunk.
# HALF_CHUNK: render 4 LODs for each Chunk.
# FOUR_BLOCKS: render 16 LODs for each Chunk.
# TWO_BLOCKS: render 64 LODs for each Chunk.
# BLOCK: render 256 LODs for each Chunk (width of one block).
#
# Lowest Quality: CHUNK
# Highest Quality: BLOCK
maxHorizontalResolution = "BLOCK"
#
# The radius of the mod's render distance. (measured in chunks)
lodChunkRenderDistanceRadius = 128
#
# Should the blocks underneath avoided blocks gain the color of the avoided block?
#
# True: a red flower will tint the grass below it red.
# False: skipped blocks will not change color of surface below them.
tintWithAvoidedBlocks = true
#
# This indicates how quickly LODs decrease in quality the further away they are.
# Higher settings will render higher quality fake chunks farther away,
# but will increase memory and GPU usage.
horizontalQuality = "MEDIUM"
#
# How should LOD transparency be handled.
#
# COMPLETE: LODs will render transparent.
# FAKE: LODs will be opaque, but shaded to match the blocks underneath.
# DISABLED: LODs will be opaque.
transparency = "COMPLETE"
#
# This indicates how well LODs will represent
# overhangs, caves, floating islands, etc.
# Higher options will make the world more accurate, butwill increase memory and GPU usage.
#
# Lowest Quality: HEIGHT_MAP
# Highest Quality: EXTREME
verticalQuality = "MEDIUM"
#
# What blocks shouldn't be rendered as LODs?
#
# NONE: Represent all blocks in the LODs
# NON_COLLIDING: Only represent solid blocks in the LODs (tall grass, torches, etc. won't count for a LOD's height)
blocksToIgnore = "NON_COLLIDING"
[client.advanced.graphics.fog]
#
# When should fog be drawn?
#
# USE_OPTIFINE_SETTING: Use whatever Fog setting Optifine is using.
# If Optifine isn't installed this defaults to FOG_ENABLED.
# FOG_ENABLED: Never draw fog on the LODs
# FOG_DISABLED: Always draw fast fog on the LODs
#
# Disabling fog will improve GPU performance.
drawMode = "FOG_ENABLED"
#
# What color should fog use?
#
# USE_WORLD_FOG_COLOR: Use the world's fog color.
# USE_SKY_COLOR: Use the sky's color.
colorMode = "USE_WORLD_FOG_COLOR"
#
# Should Minecraft's fog be disabled?
#
# Note: Other mods may conflict with this setting.
disableVanillaFog = true
[client.advanced.graphics.fog.advancedFog]
#
# What is the maximum fog thickness?
#
# 0.0: No fog.
# 1.0: Fully opaque fog.
farFogMax = "1.0"
#
# At what distance should the far fog start?
#
# 0.0: Fog starts at the player's position.
# 1.0: Fog starts at the closest edge of the vanilla render distance.
# 1.414: Fog starts at the corner of the vanilla render distance.
farFogStart = "0.4"
#
# What is the minimum fog thickness?
#
# 0.0: No fog.
# 1.0: Fully opaque fog.
farFogMin = "0.0"
#
# How should the fog thickness should be calculated?
#
# LINEAR: Linear based on distance (will ignore 'density')
# EXPONENTIAL: 1/(e^(distance*density))
# EXPONENTIAL_SQUARED: 1/(e^((distance*density)^2)
farFogFalloff = "EXPONENTIAL_SQUARED"
#
# Used in conjunction with the Fog Falloff.
farFogDensity = "2.5"
#
# Where should the far fog end?
#
# 0.0: Fog ends at player's position.
# 1.0: Fog ends at the closest edge of the vanilla render distance.
# 1.414: Fog ends at the corner of the vanilla render distance.
farFogEnd = "1.0"
[client.advanced.graphics.fog.advancedFog.heightFog]
#
# What is the minimum fog thickness?
#
# 0.0: No fog.
# 1.0: Fully opaque fog.
heightFogMin = "0.0"
#
# Where should the height fog start?
#
# ABOVE_CAMERA: Height fog starts at the camera and goes towards the sky
# BELOW_CAMERA: Height fog starts at the camera and goes towards the void
# ABOVE_AND_BELOW_CAMERA: Height fog starts from the camera to goes towards both the sky and void
# ABOVE_SET_HEIGHT: Height fog starts from a set height and goes towards the sky
# BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards the void
# ABOVE_AND_BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards both the sky and void
heightFogMode = "ABOVE_AND_BELOW_CAMERA"
#
# If the height fog is calculated around a set height, what is that height position?
heightFogBaseHeight = "70.0"
#
# What is the maximum fog thickness?
#
# 0.0: No fog.
# 1.0: Fully opaque fog.
heightFogMax = "1.0"
#
# How should the height fog thickness should be calculated?
#
# LINEAR: Linear based on height (will ignore 'density')
# EXPONENTIAL: 1/(e^(height*density))
# EXPONENTIAL_SQUARED: 1/(e^((height*density)^2)
heightFogFalloff = "EXPONENTIAL_SQUARED"
#
# What is the height fog's density?
heightFogDensity = "2.5"
#
# How should height effect the fog thickness?
# Note: height fog is combined with the other fog settings.
#
# BASIC: No special height fog effect. Fog is calculated based on camera distance
# IGNORE_HEIGHT: Ignore height completely. Fog is only calculated with horizontal distance
# ADDITION: heightFog + farFog
# MAX: max(heightFog, farFog)
# MULTIPLY: heightFog * farFog
# INVERSE_MULTIPLY: 1 - (1-heightFog) * (1-farFog)
# LIMITED_ADDITION: farFog + max(farFog, heightFog)
# MULTIPLY_ADDITION: farFog + farFog * heightFog
# INVERSE_MULTIPLY_ADDITION: farFog + 1 - (1-heightFog) * (1-farFog)
# AVERAGE: farFog*0.5 + heightFog*0.5
#
# Note: height fog settings are ignored if 'BASIC' or 'IGNORE_HEIGHT' are selected.
heightFogMixMode = "BASIC"
#
# Should the start of the height fog be offset?
#
# 0.0: Fog start with no offset.
# 1.0: Fog start with offset of the entire world's height. (Includes depth)
heightFogStart = "0.0"
#
# Should the end of the height fog be offset?
#
# 0.0: Fog end with no offset.
# 1.0: Fog end with offset of the entire world's height. (Include depth)
heightFogEnd = "1.0"
[client.advanced.graphics.noiseTextureSettings]
#
# Defines how far should the noise texture render before it fades away. (in blocks)
# Set to 0 to disable noise from fading away
noiseDropoff = 1024
#
# How many steps of noise should be applied to LODs?
noiseSteps = 4
#
# Should a noise texture be applied to LODs?
#
# This is done to simulate textures and make the LODs appear more detailed.
noiseEnabled = true
#
# How intense should the noise should be?
noiseIntensity = "5.0"
[client.advanced.worldGenerator]
#
# How detailed should LODs be generated outside the vanilla render distance?
#
# PRE_EXISTING_ONLY
# Only create LOD data for already generated chunks.
#
#
# SURFACE
# Generate the world surface,
# this does NOT include trees,
# or structures.
#
# FEATURES
# Generate everything except structures.
# WARNING: This may cause world generator bugs or instability when paired with certain world generator mods.
distantGeneratorMode = "FEATURES"
#
# How long should a world generator thread run for before timing out?
# Note: If you are experiencing timeout errors it is better to lower your CPU usage first
# via the thread config before changing this value.
worldGenerationTimeoutLengthInSeconds = 180
#
# Should Distant Horizons slowly generate LODs
# outside the vanilla render distance?
#
# Note: when on a server, distant generation isn't supported
# and will always be disabled.
enableDistantGeneration = true
[client.advanced.multiplayer]
#
# AKA: Multiverse support.
#
# When matching levels (dimensions) of the same type (overworld, nether, etc.) the
# loaded chunks must be at least this percent the same
# in order to be considered the same world.
#
# Note: If you use portals to enter a dimension at two
# different locations the system will think the dimension
# it is two different levels.
#
# 1.0 (100%) the chunks must be identical.
# 0.5 (50%) the chunks must be half the same.
# 0.0 (0%) disables multi-dimension support,
# only one world will be used per dimension.
#
# If multiverse support is needed start with a value of 0.2
# and tweak the sensitivity from there.Lower values mean the matching is less strict.
# Higher values mean the matching is more strict.
multiverseSimilarityRequiredPercent = "0.0"
#
# How should multiplayer save folders should be named?
#
# NAME_ONLY: Example: "Minecraft Server"
# IP_ONLY: Example: "192.168.1.40"
# NAME_IP: Example: "Minecraft Server IP 192.168.1.40"
# NAME_IP_PORT: Example: "Minecraft Server IP 192.168.1.40:25565"NAME_IP_PORT_MC_VERSION: Example: "Minecraft Server IP 192.168.1.40:25565 GameVersion 1.16.5"
serverFolderNameMode = "NAME_ONLY"

130
config/Mekanism/client.toml Normal file
View File

@@ -0,0 +1,130 @@
#Client Config. This config only exists on the client
[client]
#Play sounds for Jetpack/Gas Mask/Flamethrower/Radiation (all players).
enablePlayerSounds = true
#If enabled machines play their sounds while running.
enableMachineSounds = true
#If enabled tries to force all radial menu text to be white.
whiteRadialText = false
#Should holiday greetings and easter eggs play for holidays (ex: Christmas and New Years).
holidays = true
#Adjust Mekanism sounds' base volume. < 1 is softer, higher is louder.
#Range: 0.0 ~ 10.0
baseSoundVolume = 1.0
#If true, don't render Cables/Pipes/Tubes as transparent and don't render their contents.
opaqueTransmitters = false
#Allow sneak + scroll to change item modes.
allowModeScroll = true
#If true will move HUD text alignment and compass rendering to the right side of the screen, and move the MekaSuit module rendering to the left side.
reverseHUD = false
#Scale of the text displayed on the HUD.
#Range: 0.25 ~ 1.0
hudScale = 0.6
#Enable item information HUD during gameplay
enableHUD = true
#Color of energy in item durability display.
energyColor = 3997338
#Range at which Tile Entity Renderer's added by Mekanism can render at, for example the contents of multiblocks. Vanilla defaults the rendering range for TERs to 64 for most blocks, but uses a range of 256 for beacons and end gateways.
#Range: 1 ~ 1024
terRange = 256
#Particle Config
[client.particle]
#Set to false to prevent particle spam when loading multiblocks (notification message will display instead).
enableMultiblockFormationParticles = true
#Show particles when machines active.
machineEffects = true
#How far (in blocks) from the player radiation particles can spawn.
#Range: 2 ~ 64
radiationParticleRadius = 30
#How many particles spawn when rendering radiation effects (scaled by radiation level).
#Range: 0 ~ 1000
radiationParticleCount = 100
#Show bolts when the Magnetic Attraction Unit is pulling items.
magneticAttraction = true
#Show bolts for various AOE tool behaviors such as tilling, debarking, and vein mining.
toolAOE = true
#GUI Config
[client.gui]
#Opacity of HUD used by MekaSuit.
#Range: 0.0 ~ 1.0
hudOpacity = 0.4000000059604645
#Color (RGB) of HUD used by MekaSuit.
#Range: 0 ~ 16777215
hudColor = 4257264
#Color (RGB) of warning HUD elements used by MekaSuit.
#Range: 0 ~ 16777215
hudWarningColor = 16768335
#Color (RGB) of danger HUD elements used by MekaSuit.
#Range: 0 ~ 16777215
hudDangerColor = 16726076
#Visual jitter of MekaSuit HUD, seen when moving the player's head. Bigger value = more jitter.
#Range: 1.0 ~ 100.0
hudJitter = 6.0
#Display a fancy compass when the MekaSuit is worn.
mekaSuitHelmetCompass = true
#Last Window Positions. In general these values should not be modified manually.
[client.gui.window]
[client.gui.window.color]
x = 2147483647
y = 2147483647
[client.gui.window.confirmation]
x = 2147483647
y = 2147483647
[client.gui.window.crafting0]
x = 2147483647
y = 2147483647
[client.gui.window.crafting1]
x = 2147483647
y = 2147483647
[client.gui.window.crafting2]
x = 2147483647
y = 2147483647
[client.gui.window.mekaSuitHelmet]
x = 2147483647
y = 2147483647
[client.gui.window.rename]
x = 2147483647
y = 2147483647
[client.gui.window.skinSelect]
x = 2147483647
y = 2147483647
[client.gui.window.sideConfig]
x = 10
y = 15
[client.gui.window.transporterConfig]
x = 10
y = 15
[client.gui.window.upgrade]
x = 10
y = 15
#QIO Config
[client.qio]
#Sorting strategy when viewing items in a QIO Item Viewer.
#Allowed Values: NAME, SIZE, MOD
itemViewerSortType = "NAME"
#Sorting direction when viewing items in a QIO Item Viewer.
#Allowed Values: ASCENDING, DESCENDING
itemViewerSortDirection = "ASCENDING"
#Number of slots to view horizontally on a QIO Item Viewer.
#Range: 8 ~ 16
itemViewerSlotsX = 8
#Number of slots to view vertically on a QIO Item Viewer.
#Range: 2 ~ 48
itemViewerSlotsY = 4

View File

@@ -0,0 +1,12 @@
#Mekanism Common Config. This config is not synced between server and client.
[common]
#Displayed energy type in Mekanism GUIs and network reader readings.
#Allowed Values: JOULES, FORGE_ENERGY, ELECTRICAL_UNITS
energyType = "FORGE_ENERGY"
#Displayed temperature unit in Mekanism GUIs and network reader readings.
#Allowed Values: KELVIN, CELSIUS, RANKINE, FAHRENHEIT, AMBIENT
temperatureUnit = "KELVIN"
#Show time to decay radiation when readings are above safe levels. Set to false on the client side to disable MekaSuit Geiger and Dosimeter Unit timers. Set to false on the server side to disable handheld Geiger Counter and Dosimeter timers.
enableDecayTimers = true

284
config/Mekanism/gear.toml Normal file
View File

@@ -0,0 +1,284 @@
#Gear Config. This config is synced from server to client.
[gear]
#Atomic Disassembler Settings
[gear.atomic_disassembler]
#Base Energy (Joules) usage of the Atomic Disassembler. (Gets multiplied by speed factor)
energyUsage = "10"
#Cost in Joules of using the Atomic Disassembler as a weapon.
energyUsageWeapon = "2000"
#The max Atomic Disassembler Vein Mining Block Count.
#Range: 2 ~ 1000000
miningCount = 128
#Enable the 'Slow' mode for the Atomic Disassembler.
slowMode = true
#Enable the 'Fast' mode for the Atomic Disassembler.
fastMode = true
#Enable the 'Vein Mining' mode for the Atomic Disassembler.
veinMining = false
#The bonus attack damage of the Atomic Disassembler when it is out of power. (Value is in number of half hearts)
#Range: 0 ~ 1000
minDamage = 4
#The bonus attack damage of the Atomic Disassembler when it has at least energyUsageWeapon power stored. (Value is in number of half hearts)
#Range: 1 ~ 10000
maxDamage = 20
#Attack speed of the Atomic Disassembler.
#Range: -4.0 ~ 100.0
attackSpeed = -2.4
#Maximum amount (joules) of energy the Atomic Disassembler can contain.
maxEnergy = "1000000"
#Amount (joules) of energy the Atomic Disassembler can accept per tick.
chargeRate = "5000"
#Configurator Settings
[gear.configurator]
#Maximum amount (joules) of energy the Configurator can contain.
maxEnergy = "60000"
#Amount (joules) of energy the Configurator can accept per tick.
chargeRate = "300"
#Energy usage in joules of using the configurator to configure machines.
energyPerConfigure = "400"
#Energy cost in joules for each item the configurator ejects from a machine on empty mode.
energyPerItem = "8"
#Electric Bow Settings
[gear.electric_bow]
#Maximum amount (joules) of energy the Electric Bow can contain.
maxEnergy = "120000"
#Amount (joules) of energy the Electric Bow can accept per tick.
chargeRate = "600"
#Cost in Joules of using the Electric Bow.
energyUsage = "120"
#Cost in Joules of using the Electric Bow with flame mode active.
energyUsageFire = "1200"
#Energy Tablet Settings
[gear.energy_tablet]
#Maximum amount (joules) of energy the Energy Tablet can contain.
maxEnergy = "1000000"
#Amount (joules) of energy the Energy Tablet can accept per tick.
chargeRate = "5000"
#Flamethrower Settings
[gear.flamethrower]
#Flamethrower Gas Tank capacity in mB.
#Range: 1 ~ 9223372036854775807
maxGas = 24000
#Amount of hydrogen the Flamethrower can accept per tick.
#Range: 1 ~ 9223372036854775807
fillRate = 16
#Determines whether or not the Flamethrower can destroy items if it fails to smelt them.
destroyItems = true
#Free Runner Settings
[gear.free_runner]
#Energy cost/multiplier in Joules for reducing fall damage with free runners. Energy cost is: FallDamage * freeRunnerFallEnergyCost. (1 FallDamage is 1 half heart)
fallEnergyCost = "50"
#Percent of damage taken from falling that can be absorbed by Free Runners when they have enough power.
#Range: 0.0 ~ 1.0
fallDamageReductionRatio = 1.0
#Maximum amount (joules) of energy Free Runners can contain.
maxEnergy = "64000"
#Amount (joules) of energy the Free Runners can accept per tick.
chargeRate = "320"
#Armored Free Runner Settings
[gear.free_runner.armored]
#Armor value of the Armored Free Runners
#Range: > 0
armor = 3
#Toughness value of the Armored Free Runners.
#Range: 0.0 ~ 3.4028234663852886E38
toughness = 2.0
#Knockback resistance value of the Armored Free Runners.
#Range: 0.0 ~ 3.4028234663852886E38
knockbackResistance = 0.0
#Jetpack Settings
[gear.jetpack]
#Jetpack Gas Tank capacity in mB.
#Range: 1 ~ 9223372036854775807
maxGas = 24000
#Amount of hydrogen the Jetpack can accept per tick.
#Range: 1 ~ 9223372036854775807
fillRate = 16
#Armored Jetpack Settings
[gear.jetpack.armored]
#Armor value of the Armored Jetpack.
#Range: > 0
armor = 8
#Toughness value of the Armored Jetpack.
#Range: 0.0 ~ 3.4028234663852886E38
toughness = 2.0
#Knockback resistance value of the Armored Jetpack.
#Range: 0.0 ~ 3.4028234663852886E38
knockbackResistance = 0.0
#Network Reader Settings
[gear.network_reader]
#Maximum amount (joules) of energy the Network Reader can contain.
maxEnergy = "60000"
#Amount (joules) of energy the Network Reader can accept per tick.
chargeRate = "300"
#Energy usage in joules for each network reading.
energyUsage = "400"
#Portable Teleporter Settings
[gear.portable_teleporter]
#Maximum amount (joules) of energy the Portable Teleporter can contain.
maxEnergy = "1000000"
#Amount (joules) of energy the Portable Teleporter can accept per tick.
chargeRate = "5000"
#Delay in ticks before a player is teleported after clicking the Teleport button in the portable teleporter.
#Range: 0 ~ 6000
delay = 0
#Scuba Tank Settings
[gear.scuba_tank]
#Scuba Tank Gas Tank capacity in mB.
#Range: 1 ~ 9223372036854775807
maxGas = 24000
#Amount of oxygen the Scuba Tank Gas Tank can accept per tick.
#Range: 1 ~ 9223372036854775807
fillRate = 16
#Seismic Reader Settings
[gear.seismic_reader]
#Maximum amount (joules) of energy the Seismic Reader can contain.
maxEnergy = "12000"
#Amount (joules) of energy the Seismic Reader can accept per tick.
chargeRate = "60"
#Energy usage in joules required to use the Seismic Reader.
energyUsage = "250"
#Canteen Settings
[gear.canteen]
#Maximum amount of Nutritional Paste storable by the Canteen.
#Range: > 1
maxStorage = 64000
#Rate at which Nutritional Paste can be transferred into a Canteen.
#Range: > 1
transferRate = 128
#Meka-Tool Settings
[gear.mekatool]
#Base energy (Joules) usage of the Meka-Tool. (Gets multiplied by speed factor)
energyUsage = "10"
#Silk touch energy (Joules) usage of the Meka-Tool. (Gets multiplied by speed factor)
energyUsageSilk = "100"
#Cost in Joules of using the Meka-Tool to deal 4 units of damage.
energyUsageWeapon = "2000"
#Cost in Joules of using the Meka-Tool to teleport 10 blocks.
energyUsageTeleport = "1000"
#Maximum distance a player can teleport with the Meka-Tool.
#Range: 3 ~ 1024
maxTeleportReach = 100
#Base bonus damage applied by the Meka-Tool without using any energy.
#Range: 0 ~ 100000
baseDamage = 4
#Attack speed of the Meka-Tool.
#Range: -4.0 ~ 100.0
attackSpeed = -2.4
#Efficiency of the Meka-Tool with energy but without any upgrades.
#Range: 0.1 ~ 100.0
baseEfficiency = 4.0
#Energy capacity (Joules) of the Meka-Tool without any installed upgrades. Quadratically scaled by upgrades.
baseEnergyCapacity = "16000000"
#Amount (joules) of energy the Meka-Tool can accept per tick. Quadratically scaled by upgrades.
chargeRate = "100000"
#Cost in Joules of using the Meka-Tool as a hoe.
energyUsageHoe = "10"
#Cost in Joules of using the Meka-Tool as a shovel for making paths and dowsing campfires.
energyUsageShovel = "10"
#Cost in Joules of using the Meka-Tool as an axe for stripping logs, scraping, or removing wax.
energyUsageAxe = "10"
#Cost in Joules of using the Meka-Tool to shear entities.
energyUsageShearEntity = "10"
#Enable the 'Extended Vein Mining' mode for the Meka-Tool. (Allows vein mining everything not just ores/logs)
extendedMining = true
#MekaSuit Settings
[gear.mekasuit]
#Energy capacity (Joules) of MekaSuit items without any installed upgrades. Quadratically scaled by upgrades.
baseEnergyCapacity = "16000000"
#Amount (joules) of energy the MekaSuit can accept per tick. Quadratically scaled by upgrades.
chargeRate = "100000"
#Energy usage (Joules) of MekaSuit when adding 0.1 to jump motion.
baseJumpEnergyUsage = "1000"
#Energy usage (Joules) per second of the MekaSuit when flying with the Elytra Unit.
elytraEnergyUsage = "32000"
#Energy usage (Joules) of MekaSuit when lessening a potion effect.
energyUsagePotionTick = "40000"
#Energy cost/multiplier in Joules for reducing magic damage via the inhalation purification unit. Energy cost is: MagicDamage * energyUsageMagicPrevent. (1 MagicDamage is 1 half heart).
energyUsageMagicReduce = "1000"
#Energy cost/multiplier in Joules for reducing fall damage with MekaSuit Boots. Energy cost is: FallDamage * freeRunnerFallEnergyCost. (1 FallDamage is 1 half heart)
energyUsageFall = "50"
#Energy usage (Joules) of MekaSuit when adding 0.1 to sprint motion.
energyUsageSprintBoost = "100"
#Energy usage (Joules) of MekaSuit per tick when flying via Gravitational Modulation.
energyUsageGravitationalModulation = "1000"
#Charge rate of inventory items (Joules) per tick.
inventoryChargeRate = "10000"
#Solar recharging rate (Joules) of helmet per tick, per upgrade installed.
solarRechargingRate = "500"
#Energy usage (Joules) of MekaSuit per tick of using vision enhancement.
energyUsageVisionEnhancement = "500"
#Energy usage (Joules) of MekaSuit per tick of using hydrostatic repulsion.
energyUsageHydrostaticRepulsion = "500"
#Energy usage (Joules) of MekaSuit per half-food of nutritional injection.
energyUsageNutritionalInjection = "20000"
#Energy usage (Joules) of MekaSuit per unit of damage applied.
energyUsageDamage = "100000"
#Energy usage (Joules) of MekaSuit per tick of attracting a single item.
energyUsageItemAttraction = "250"
#Should the Gravitational Modulation unit give off vibrations when in use.
gravitationalVibrations = true
#Maximum amount of Nutritional Paste storable by the nutritional injection unit.
#Range: > 1
nutritionalMaxStorage = 128000
#Rate at which Nutritional Paste can be transferred into the nutritional injection unit.
#Range: > 1
nutritionalTransferRate = 256
#Maximum amount of Hydrogen storable in the jetpack unit.
#Range: 1 ~ 9223372036854775807
jetpackMaxStorage = 48000
#Rate at which Hydrogen can be transferred into the jetpack unit.
#Range: 1 ~ 9223372036854775807
jetpackTransferRate = 256
#Armor value of MekaSuit Helmets.
#Range: > 0
helmetArmor = 3
#Armor value of MekaSuit BodyArmor.
#Range: > 0
bodyArmorArmor = 8
#Armor value of MekaSuit Pants.
#Range: > 0
pantsArmor = 6
#Armor value of MekaSuit Boots.
#Range: > 0
bootsArmor = 3
#Toughness value of the MekaSuit.
#Range: 0.0 ~ 3.4028234663852886E38
toughness = 3.0
#Knockback resistance value of the MekaSuit.
#Range: 0.0 ~ 3.4028234663852886E38
knockbackResistance = 0.10000000149011612
[gear.mekasuit.damage_absorption]
#Percent of damage taken from falling that can be absorbed by MekaSuit Boots when they have enough power.
#Range: 0.0 ~ 1.0
fallDamageReductionRatio = 1.0
#Percent of damage taken from magic damage that can be absorbed by MekaSuit Helmet with Purification unit when it has enough power.
#Range: 0.0 ~ 1.0
magicDamageReductionRatio = 1.0
#Percent of damage taken from other non explicitly supported damage types that don't bypass armor when the MekaSuit has enough power and a full suit is equipped.
#Note: Support for specific damage types can be added by adding an entry for the damage type in the damageReductionRatio config.
#Range: 0.0 ~ 1.0
unspecifiedDamageReductionRatio = 1.0
#Map representing the percent of damage from different damage types that can be absorbed by the MekaSuit when there is enough power and a full suit is equipped.
#Values may be in the range [0.0, 1.0].
#See the #mekainsm:mekasuit_always_supported damage type tag for allowing damage that bypasses armor to be blocked.
damageReductionRatio = ["minecraft:cactus,1.0", "minecraft:cramming,1.0", "minecraft:dragon_breath,1.0", "minecraft:dry_out,1.0", "minecraft:fall,1.0", "minecraft:falling_anvil,1.0", "minecraft:falling_block,1.0", "minecraft:falling_stalactite,1.0", "minecraft:fly_into_wall,1.0", "minecraft:freeze,1.0", "minecraft:generic,1.0", "minecraft:hot_floor,1.0", "minecraft:in_fire,1.0", "minecraft:in_wall,1.0", "minecraft:lava,1.0", "minecraft:lightning_bolt,1.0", "minecraft:on_fire,1.0", "minecraft:sonic_boom,0.75", "minecraft:stalagmite,1.0", "minecraft:sweet_berry_bush,1.0", "minecraft:wither,1.0"]

View File

@@ -0,0 +1,232 @@
#General Config. This config is synced from server to client.
[general]
#Log Mekanism packet names. Debug setting.
logPackets = false
#Disable to make the anchor upgrade not do anything.
allowChunkloading = true
#Enable this to allow dragging items from JEI into the target slot of Digital Miner filters.
easyMinerFilters = false
#How many ticks must pass until a block's active state is synced with the client, if it has been rapidly changing.
#Range: 0 ~ 1200
blockDeactivationDelay = 60
#Any mod ids added to this list will not be able to have any of their blocks, picked up by the cardboard box. For example: ["mekanism"]
cardboardModBlacklist = []
#Allow right clicking on Cables/Pipes/Tubes with alloys to upgrade the tier.
transmitterAlloyUpgrade = true
#Base factor for working out machine performance with upgrades - UpgradeModifier * (UpgradesInstalled/UpgradesPossible).
#Range: > 1
maxUpgradeMultiplier = 10
#How much Boiler heat is immediately usable to convert water to steam.
#Range: 0.01 ~ 1.0
boilerWaterConductivity = 0.7
#Amount of heat produced per fuel tick of a fuel's burn time in the Fuelwood Heater.
#Range: 0.1 ~ 4000000.0
heatPerFuelTick = 400.0
#Number of ticks to burn an item at in a Fuelwood Heater. Use this config option to effectively make Fuelwood Heater's burn faster but produce the same amount of heat per item.
#Range: 1 ~ 1000
fuelwoodTickMultiplier = 1
#How much heat energy is created from one Joule of regular energy in the Resistive Heater.
#Range: 0.0 ~ 1.0
resistiveHeaterEfficiency = 0.6
#Amount of heat each Boiler heating element produces.
#Range: 0.1 ~ 1.024E9
superheatingHeatTransfer = 1.6E7
#Peak processing rate for the Solar Neutron Activator. Note: It can go higher than this value in some extreme environments.
#Range: 1 ~ 1024
maxSolarNeutronActivatorRate = 64
#Dynamic Tank Settings
[general.dynamic_tank]
#Amount of fluid (mB) that each block of the dynamic tank contributes to the volume. Max = volume * fluidPerTank
#Range: 1 ~ 368224
fluidPerTank = 350000
#Amount of chemical (mB) that each block of the dynamic tank contributes to the volume. Max = volume * chemicalPerTank
#Range: 1 ~ 1581510980256305
chemicalPerTank = 16000000
#Auto Eject Settings
[general.auto_eject]
#Rate at which fluid gets auto ejected from tiles.
#Range: > 1
fluid = 1024
#Rate at which chemicals gets auto ejected from tiles.
#Range: 1 ~ 9223372036854775807
chemical = 1024
#The percentage of a tank's capacity to leave contents in when set to dumping excess.
#Range: 0.001 ~ 1.0
dumpExcessKeepRatio = 0.9
#Prefilled Tanks
[general.prefilled]
#Add filled creative fluid tanks to creative/JEI.
fluidTanks = true
#Add filled creative gas tanks to creative/JEI.
gasTanks = true
#Add filled creative infusion tanks to creative/JEI.
infusionTanks = true
#Add filled creative pigment tanks to creative/JEI.
pigmentTanks = true
#Add filled creative slurry tanks to creative/JEI.
slurryTanks = true
#Energy Conversion Rate Settings
[general.energy_conversion]
#Disables IC2 power integration. Requires world restart (server-side option in SMP).
blacklistIC2 = false
#Conversion multiplier from EU to Joules (EU * euConversionRate = Joules)
euConversionRate = "10"
#Disables Forge Energy (FE,RF,IF,uF,CF) power integration. Requires world restart (server-side option in SMP).
blacklistForge = false
#Conversion multiplier from Forge Energy to Joules (FE * feConversionRate = Joules)
feConversionRate = "2.5000"
#Disables Flux Networks higher throughput Forge Energy (FE,RF,IF,uF,CF) power integration. Requires world restart (server-side option in SMP). Note: Disabling Forge Energy integration also disables this.
blacklistFluxNetworks = false
#How much energy is produced per mB of Hydrogen, also affects Electrolytic Separator usage, Ethylene burn rate and Gas generator energy capacity.
HydrogenEnergyDensity = "200"
#Maximum Joules per mB of Steam. Also affects Thermoelectric Boiler.
maxEnergyPerSteam = "10"
#Radiation Settings
[general.radiation]
#Enable worldwide radiation effects. Don't be a downer and disable this.
radiationEnabled = true
#The radius of chunks checked when running radiation calculations. The algorithm is efficient, but don't abuse it by making this crazy high.
#Range: 1 ~ 100
chunkCheckRadius = 5
#Radiation sources are multiplied by this constant roughly once per second to represent their emission decay. At the default rate, it takes roughly 10 hours to remove a 1,000 Sv/h (crazy high) source.
#Range: 0.0 ~ 1.0
sourceDecayRate = 0.9995
#Radiated objects and entities are multiplied by this constant roughly once per second to represent their dosage decay.
#Range: 0.0 ~ 1.0
targetDecayRate = 0.9995
#Defines the minimum severity radiation dosage severity (scale of 0 to 1) for which negative effects can take place. Set to 1 to disable negative effects completely.
#Range: 0.0 ~ 1.0
negativeEffectsMinSeverity = 0.1
#Amount of gas (mB) that can be stored in a Radioactive Waste Barrel.
#Range: 1 ~ 9223372036854775807
radioactiveWasteBarrelMaxGas = 512000
#Number of ticks required for radioactive gas stored in a Radioactive Waste Barrel to decay radioactiveWasteBarrelDecayAmount mB.
#Range: > 1
radioactiveWasteBarrelProcessTicks = 20
#Number of mB of gas that decay every radioactiveWasteBarrelProcessTicks ticks when stored in a Radioactive Waste Barrel. Set to zero to disable decay all together. (Gases in the mekanism:waste_barrel_decay_blacklist tag will not decay).
#Range: 0 ~ 9223372036854775807
radioactiveWasteBarrelDecayAmount = 1
#Digital Miner Settings
[general.digital_miner]
#Energy multiplier for using silk touch mode with the Digital Miner.
#Range: > 1
silkMultiplier = 12
#Maximum radius in blocks that the Digital Miner can reach. (Increasing this may have negative effects on stability and/or performance. We strongly recommend you leave it at the default value).
#Range: > 1
maxRadius = 32
#Number of ticks required to mine a single block with a Digital Miner (without any upgrades).
#Range: > 1
ticksPerMine = 80
#Laser Settings
[general.laser]
#If enabled, lasers can break blocks and the flamethrower starts fires.
aestheticWorldDamage = true
#How far (in blocks) a laser can travel.
#Range: 1 ~ 1024
range = 64
#Energy needed to destroy or attract blocks with a Laser (per block hardness level).
energyNeededPerHardness = "100000"
#Energy used per half heart of damage being transferred to entities.
energyPerDamage = "2500"
#Oredictionificator Settings
[general.oredictionificator]
#The list of valid tag prefixes for the Oredictionificator. Note: It is highly recommended to only include well known/defined tag prefixes otherwise it is very easy to potentially add in accidental conversions of things that are not actually equivalent.
validItemFilters = ["forge:dusts/", "forge:ingots/", "forge:nuggets/", "forge:ores/", "forge:raw_materials/", "forge:storage_blocks/"]
#Pump Settings
[general.pump]
#Maximum block distance to pull fluid from for the Electric Pump.
#Range: 1 ~ 512
maxPumpRange = 80
#If enabled makes Water and Heavy Water blocks be removed from the world on pump.
pumpWaterSources = false
#mB of Heavy Water that is extracted per block of Water by the Electric Pump with a Filter Upgrade.
#Range: 1 ~ 1000
pumpHeavyWaterAmount = 10
#Fluidic Plenisher stops after this many blocks.
#Range: 1 ~ 1000000
maxPlenisherNodes = 4000
#Quantum Entangloporter Settings
[general.quantum_entangloporter]
#Maximum energy buffer (Mekanism Joules) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier energy cube capacity.
energyBuffer = "256000000"
#Maximum fluid buffer (mb) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier tank capacity.
#Range: > 1
fluidBuffer = 256000
#Maximum chemical buffer (mb) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier tank capacity.
#Range: 1 ~ 9223372036854775807
chemicalBuffer = 8192000
#Block security/protection Settings
[general.security]
#Enable the security system for players to prevent others from accessing their machines. Does NOT affect Frequencies.
allowProtection = true
#If this is enabled then players with the 'mekanism.bypass_security' permission (default ops) can bypass the block and item security restrictions.
opsBypassRestrictions = false
#Nutritional Paste Settings
[general.nutritional_paste]
#Saturation level of Nutritional Paste when eaten.
#Range: 0.0 ~ 100.0
saturation = 0.8
#How much mB of Nutritional Paste equates to one 'half-food.'
#Range: > 1
mbPerFood = 50
#Boiler Settings
[general.boiler]
#Amount of fluid (mB) that each block of the boiler's water portion contributes to the volume. Max = volume * waterPerTank
#Range: 1 ~ 368224
waterPerTank = 16000
#Amount of steam (mB) that each block of the boiler's steam portion contributes to the volume. Max = volume * steamPerTank
#Range: 10 ~ 1581510980256305
steamPerTank = 160000
#Amount of steam (mB) that each block of the boiler's heated coolant portion contributes to the volume. Max = volume * heatedCoolantPerTank
#Range: 1 ~ 1581510980256305
heatedCoolantPerTank = 256000
#Amount of steam (mB) that each block of the boiler's cooled coolant portion contributes to the volume. Max = volume * cooledCoolantPerTank
#Range: 1 ~ 1581510980256305
cooledCoolantPerTank = 256000
#Thermal Evaporation Plant Settings
[general.thermal_evaporation]
#Thermal Evaporation Tower heat loss per tick.
#Range: 0.001 ~ 1000.0
heatDissipation = 0.02
#Temperature to amount produced ratio for Thermal Evaporation Tower.
#Range: 0.001 ~ 1000000.0
tempMultiplier = 0.4
#Heat to absorb per Solar Panel array of Thermal Evaporation Tower.
#Range: 0.001 ~ 1000000.0
solarMultiplier = 0.2
#Heat capacity of Thermal Evaporation Tower layers (increases amount of energy needed to increase temperature).
#Range: 1.0 ~ 1000000.0
heatCapacity = 100.0
#Amount of fluid (mB) that each block of the evaporation plant contributes to the input tank capacity. Max = volume * fluidPerTank
#Range: 1 ~ 29826161
fluidPerTank = 64000
#Amount of output fluid (mB) that the evaporation plant can store.
#Range: > 1
outputTankCapacity = 10000
#SPS Settings
[general.sps]
#How much input gas (polonium) in mB must be processed to make 1 mB of antimatter. Input tank capacity is 2x this value.
#Range: > 1
inputPerAntimatter = 1000
#Amount of output gas (mB, antimatter) that the SPS can store.
#Range: 1 ~ 9223372036854775807
outputTankCapacity = 1000
#Energy needed to process 1 mB of input (inputPerAntimatter * energyPerInput = energy to produce 1 mB of antimatter).
energyPerInput = "1000000"

View File

@@ -0,0 +1,14 @@
#Generator Energy Storage Config. This config is synced from server to client.
[storage]
#Base energy storage (Joules).
heatGenerator = "160000"
#Base energy storage (Joules).
bioGenerator = "160000"
#Base energy storage (Joules).
solarGenerator = "96000"
#Base energy storage (Joules).
advancedSolarGenerator = "200000"
#Base energy storage (Joules).
windGenerator = "200000"

View File

@@ -0,0 +1,14 @@
#Mekanism Generators Gear Config. This config is synced from server to client.
[generators-gear]
#MekaSuit Settings
[generators-gear.mekasuit]
#Geothermal charging rate (Joules) of pants per tick, per degree above ambient, per upgrade installed. This value scales down based on how much of the MekaSuit Pants is submerged. Fire is treated as having a temperature of ~200K above ambient, lava has a temperature of 1,000K above ambient.
geothermalChargingRate = "10.5000"
[generators-gear.mekasuit.damage_absorption]
#Percent of heat damage negated by MekaSuit Pants with maximum geothermal generator units installed. This number scales down linearly based on how many units are actually installed.
#Range: 0.0 ~ 1.0
heatDamageReductionRatio = 0.8

View File

@@ -0,0 +1,149 @@
#Mekanism Generators Config. This config is synced between server and client.
[generators]
#Affects the Injection Rate, Max Temp, and Ignition Temp.
energyPerFusionFuel = "10000000"
#Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments.
solarGeneration = "50"
#Peak output for the Advanced Solar Generator. Note: It can go higher than this value in some extreme environments.
advancedSolarGeneration = "300"
#Bio Generator Settings
[generators.bio_generator]
#Amount of energy in Joules the Bio Generator produces per tick.
bioGeneration = "350"
#The capacity in mB of the fluid tank in the Bio Generator.
#Range: > 1
tankCapacity = 24000
#Heat Generator Settings
[generators.heat_generator]
#Amount of energy in Joules the Heat Generator produces per tick. heatGeneration + heatGenerationLava * lavaSides + heatGenerationNether. Note: lavaSides is how many sides are adjacent to lava, this includes the block itself if it is lava logged allowing for a max of 7 "sides".
heatGeneration = "200"
#Multiplier of effectiveness of Lava that is adjacent to the Heat Generator.
heatGenerationLava = "30"
#Add this amount of Joules to the energy produced by a heat generator if it is in an 'ultrawarm' dimension, in vanilla this is just the Nether.
heatGenerationNether = "100"
#The capacity in mB of the fluid tank in the Heat Generator.
#Range: > 1
tankCapacity = 24000
#The amount of lava in mB that gets consumed to transfer heatGeneration Joules to the Heat Generator.
heatGenerationFluidRate = 10
#Gas-Burning Generator Settings
[generators.gas_generator]
#The capacity in mB of the gas tank in the Gas-Burning Generator.
#Range: 1 ~ 9223372036854775807
tankCapacity = 18000
#The number of ticks each mB of Ethylene burns for in the Gas-Burning Generator.
#Range: > 1
ethyleneBurnTicks = 5
#Multiplier for calculating the energy density of Ethylene (1 mB Hydrogen + 2 * bioGeneration * densityMultiplier).
ethyleneDensityMultiplier = "5"
#Turbine Settings
[generators.turbine]
#The number of blades on each turbine coil per blade applied.
#Range: 1 ~ 12
turbineBladesPerCoil = 4
#The rate at which steam is vented into the turbine.
#Range: 0.1 ~ 1024000.0
turbineVentGasFlow = 32000.0
#The rate at which steam is dispersed into the turbine.
#Range: 0.1 ~ 1024000.0
turbineDisperserGasFlow = 1280.0
#Amount of energy (J) that each block of the turbine contributes to the total energy capacity. Max = volume * energyCapacityPerVolume
energyCapacityPerVolume = "16000000"
#Amount of gas (mB) that each block of the turbine's steam cavity contributes to the volume. Max = volume * gasPerTank
#Range: 1 ~ 1773043451913643
gasPerTank = 64000
#The rate at which steam is condensed in the turbine.
#Range: 1 ~ 2000000
condenserRate = 64000
#Wind Generator Settings
[generators.wind_generator]
#Minimum base generation value of the Wind Generator.
windGenerationMin = "60"
#Maximum base generation value of the Wind Generator.
generationMax = "480"
#The minimum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's min height.
#Range: -2032 ~ 2030
minY = 24
#The maximum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's logical height.
maxY = 2031
#The list of dimension ids that the Wind Generator will not generate power in.
windGenerationDimBlacklist = []
#Fusion Settings
[generators.fusion_reactor]
#The fraction of the heat dissipated from the case that is converted to Joules.
#Range: 0.0 ~ 1.0
thermocoupleEfficiency = 0.05
#The fraction fraction of heat from the casing that can be transferred to all sources that are not water. Will impact max heat, heat transfer to thermodynamic conductors, and power generation.
#Range: 0.001 ~ 1.0
casingThermalConductivity = 0.1
#The fraction of the heat from the casing that is dissipated to water when water cooling is in use. Will impact max heat, and steam generation.
#Range: 0.0 ~ 1.0
waterHeatingRatio = 0.3
#Amount of fuel (mB) that the fusion reactor can store.
#Range: 2 ~ 1000000
fuelCapacity = 1000
#Amount of energy (J) the fusion reactor can store.
energyCapacity = "1000000000"
#Amount of water (mB) per injection rate that the fusion reactor can store. Max = injectionRate * waterPerInjection
#Range: 1 ~ 21913098
waterPerInjection = 1000000
#Amount of steam (mB) per injection rate that the fusion reactor can store. Max = injectionRate * steamPerInjection
#Range: 1 ~ 94116041192395671
steamPerInjection = 100000000
#Hohlraum Settings
[generators.hohlraum]
#Hohlraum capacity in mB.
#Range: 1 ~ 9223372036854775807
maxGas = 10
#Amount of DT-Fuel Hohlraum can accept per tick.
#Range: 1 ~ 9223372036854775807
fillRate = 1
#Fission Reactor Settings
[generators.fission_reactor]
#Amount of energy created (in heat) from each whole mB of fission fuel.
energyPerFissionFuel = "1000000"
#The heat capacity added to a Fission Reactor by a single casing block. Increase to require more energy to raise the reactor temperature.
#Range: 1.0 ~ 1000000.0
casingHeatCapacity = 1000.0
#The average surface area of a Fission Reactor's fuel assemblies to reach 100% boil efficiency. Higher values make it harder to cool the reactor.
#Range: 1.0 ~ 1.7976931348623157E308
surfaceAreaTarget = 4.0
#Whether catastrophic meltdowns can occur from Fission Reactors. If disabled instead of melting down the reactor will turn off and not be able to be turned back on until the damage level decreases.
meltdownsEnabled = true
#The radius of the explosion that occurs from a meltdown.
#Range: 1.0 ~ 500.0
meltdownRadius = 8.0
#The chance of a meltdown occurring once damage passes 100%. Will linearly scale as damage continues increasing.
#Range: 0.0 ~ 1.0
meltdownChance = 0.001
#How much radioactivity of fuel/waste contents are multiplied during a meltdown.
#Range: 0.1 ~ 1000000.0
meltdownRadiationMultiplier = 50.0
#Damage to reset the reactor to after a meltdown.
#Range: 0.0 ~ 100.0
postMeltdownDamage = 75.0
#The default burn rate of the fission reactor.
#Range: 0.001 ~ 1.0
defaultBurnRate = 0.1
#The burn rate increase each fuel assembly provides. Max Burn Rate = fuelAssemblies * burnPerAssembly
#Range: 1 ~ 1000000
burnPerAssembly = 1
#Amount of fuel (mB) that each assembly contributes to the fuel and waste capacity. Max = fuelAssemblies * maxFuelPerAssembly
#Range: 1 ~ 2251799813685247
maxFuelPerAssembly = 8000
#Amount of cooled coolant (mB) that each block of the fission reactor contributes to the volume. Max = volume * cooledCoolantPerTank
#Range: 1 ~ 368224
cooledCoolantPerTank = 100000
#Amount of heated coolant (mB) that each block of the fission reactor contributes to the volume. Max = volume * heatedCoolantPerTank
#Range: 1000 ~ 1581510980256305
heatedCoolantPerTank = 1000000

View File

@@ -0,0 +1,76 @@
#Machine Energy Storage Config. This config is synced from server to client.
[storage]
#Base energy storage (Joules).
enrichmentChamber = "20000"
#Base energy storage (Joules).
osmiumCompressor = "80000"
#Base energy storage (Joules).
combiner = "40000"
#Base energy storage (Joules).
crusher = "20000"
#Base energy storage (Joules).
metallurgicInfuser = "20000"
#Base energy storage (Joules).
purificationChamber = "80000"
#Base energy storage (Joules).
energizedSmelter = "20000"
#Base energy storage (Joules).
digitalMiner = "50000"
#Base energy storage (Joules).
electricPump = "40000"
#Base energy storage (Joules).
chargePad = "2048000"
#Base energy storage (Joules).
rotaryCondensentrator = "20000"
#Base energy storage (Joules).
oxidationChamber = "80000"
#Base energy storage (Joules).
chemicalInfuser = "80000"
#Base energy storage (Joules).
chemicalInjectionChamber = "160000"
#Base energy storage (Joules).
electrolyticSeparator = "160000"
#Base energy storage (Joules).
precisionSawmill = "20000"
#Base energy storage (Joules).
chemicalDissolutionChamber = "160000"
#Base energy storage (Joules).
chemicalWasher = "80000"
#Base energy storage (Joules).
chemicalCrystallizer = "160000"
#Base energy storage (Joules).
seismicVibrator = "20000"
#Base energy storage (Joules).
pressurizedReactionBase = "2000"
#Base energy storage (Joules).
fluidicPlenisher = "40000"
#Base energy storage (Joules).
laser = "2000000"
#Base energy storage (Joules).
laserAmplifier = "5000000000"
#Base energy storage (Joules).
laserTractorBeam = "5000000000"
#Base energy storage (Joules).
formulaicAssemblicator = "40000"
#Base energy storage (Joules).
teleporter = "5000000"
#Base energy storage (Joules).
modificationStation = "40000"
#Base energy storage (Joules).
isotopicCentrifuge = "80000"
#Base energy storage (Joules).
nutritionalLiquifier = "40000"
#Base energy storage (Joules). Also defines max process rate.
antiprotonicNucleosynthesizer = "1000000000"
#Base energy storage (Joules).
pigmentExtractor = "40000"
#Base energy storage (Joules).
pigmentMixer = "80000"
#Base energy storage (Joules).
paintingMachine = "40000"
#Base energy storage (Joules). Also defines max output rate.
spsPort = "1000000000"
#Base energy storage (Joules).
dimensionalStabilizer = "40000"

View File

@@ -0,0 +1,75 @@
#Machine Energy Usage Config. This config is synced from server to client.
[usage]
#Energy per operation tick (Joules).
enrichmentChamber = "50"
#Energy per operation tick (Joules).
osmiumCompressor = "100"
#Energy per operation tick (Joules).
combiner = "50"
#Energy per operation tick (Joules).
crusher = "50"
#Energy per operation tick (Joules).
metallurgicInfuser = "50"
#Energy per operation tick (Joules).
purificationChamber = "200"
#Energy per operation tick (Joules).
energizedSmelter = "50"
#Energy per operation tick (Joules).
digitalMiner = "1000"
#Energy per operation tick (Joules).
electricPump = "100"
#Energy that can be transferred at once per charge operation (Joules).
chargePad = "1024000"
#Energy per operation tick (Joules).
rotaryCondensentrator = "50"
#Energy per operation tick (Joules).
oxidationChamber = "200"
#Energy per operation tick (Joules).
chemicalInfuser = "200"
#Energy per operation tick (Joules).
chemicalInjectionChamber = "400"
#Energy per operation tick (Joules).
precisionSawmill = "50"
#Energy per operation tick (Joules).
chemicalDissolutionChamber = "400"
#Energy per operation tick (Joules).
chemicalWasher = "200"
#Energy per operation tick (Joules).
chemicalCrystallizer = "400"
#Energy per operation tick (Joules).
seismicVibrator = "50"
#Energy per operation tick (Joules).
pressurizedReactionBase = "5"
#Energy per operation tick (Joules).
fluidicPlenisher = "100"
#Energy per operation tick (Joules).
laser = "10000"
#Energy per operation tick (Joules).
formulaicAssemblicator = "100"
#Energy per operation tick (Joules).
modificationStation = "100"
#Energy per operation tick (Joules).
isotopicCentrifuge = "200"
#Energy per operation tick (Joules).
nutritionalLiquifier = "200"
#Energy per operation tick (Joules).
antiprotonicNucleosynthesizer = "100000"
#Energy per operation tick (Joules).
pigmentExtractor = "200"
#Energy per operation tick (Joules).
pigmentMixer = "200"
#Energy per operation tick (Joules).
paintingMachine = "100"
#Energy per chunk per tick (Joules).
dimensionalStabilizer = "5000"
#Teleporter
[usage.teleporter]
#Base Joules cost for a teleportation.
teleporterBase = "1000"
#Joules per unit of distance travelled during teleportation - sqrt(xDiff^2 + yDiff^2 + zDiff^2).
teleporterDistance = "10"
#Flat additional cost for interdimensional teleportation. Distance is still taken into account minimizing energy cost based on dimension scales.
teleporterDimensionPenalty = "10000"

264
config/Mekanism/tiers.toml Normal file
View File

@@ -0,0 +1,264 @@
#Tier Config. This config is synced from server to client.
[tier]
#Energy Cubes
[tier.energy_cubes]
#Maximum number of Joules Basic energy cubes can store.
basicStorage = "4000000"
#Output rate in Joules of Basic energy cubes.
basicOutput = "4000"
#Maximum number of Joules Advanced energy cubes can store.
advancedStorage = "16000000"
#Output rate in Joules of Advanced energy cubes.
advancedOutput = "16000"
#Maximum number of Joules Elite energy cubes can store.
eliteStorage = "64000000"
#Output rate in Joules of Elite energy cubes.
eliteOutput = "64000"
#Maximum number of Joules Ultimate energy cubes can store.
ultimateStorage = "256000000"
#Output rate in Joules of Ultimate energy cubes.
ultimateOutput = "256000"
#Maximum number of Joules Creative energy cubes can store.
creativeStorage = "18446744073709551615.9999"
#Output rate in Joules of Creative energy cubes.
creativeOutput = "18446744073709551615.9999"
#Fluid Tanks
[tier.fluid_tanks]
#Storage size of Basic fluid tanks in mB.
#Range: > 1
basicStorage = 32000
#Output rate of Basic fluid tanks in mB.
#Range: > 1
basicOutput = 1000
#Storage size of Advanced fluid tanks in mB.
#Range: > 1
advancedStorage = 64000
#Output rate of Advanced fluid tanks in mB.
#Range: > 1
advancedOutput = 4000
#Storage size of Elite fluid tanks in mB.
#Range: > 1
eliteStorage = 128000
#Output rate of Elite fluid tanks in mB.
#Range: > 1
eliteOutput = 16000
#Storage size of Ultimate fluid tanks in mB.
#Range: > 1
ultimateStorage = 256000
#Output rate of Ultimate fluid tanks in mB.
#Range: > 1
ultimateOutput = 64000
#Storage size of Creative fluid tanks in mB.
#Range: > 1
creativeStorage = 2147483647
#Output rate of Creative fluid tanks in mB.
#Range: > 1
creativeOutput = 1073741823
#Chemical Tanks
[tier.chemical_tanks]
#Storage size of Basic chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
basicStorage = 64000
#Output rate of Basic chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
basicOutput = 1000
#Storage size of Advanced chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
advancedStorage = 256000
#Output rate of Advanced chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
advancedOutput = 16000
#Storage size of Elite chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
eliteStorage = 1024000
#Output rate of Elite chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
eliteOutput = 128000
#Storage size of Ultimate chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
ultimateStorage = 8192000
#Output rate of Ultimate chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
ultimateOutput = 512000
#Storage size of Creative chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
creativeStorage = 9223372036854775807
#Output rate of Creative chemical tanks in mB.
#Range: 1 ~ 9223372036854775807
creativeOutput = 4611686018427387903
#Bins
[tier.bins]
#The number of items Basic bins can store.
#Range: > 1
basicStorage = 4096
#The number of items Advanced bins can store.
#Range: > 1
advancedStorage = 8192
#The number of items Elite bins can store.
#Range: > 1
eliteStorage = 32768
#The number of items Ultimate bins can store.
#Range: > 1
ultimateStorage = 262144
#The number of items Creative bins can store.
#Range: > 1
creativeStorage = 2147483647
#Induction
[tier.induction]
#Maximum number of Joules Basic induction cells can store.
basicStorage = "8000000000"
#Maximum number of Joules Advanced induction cells can store.
advancedStorage = "64000000000"
#Maximum number of Joules Elite induction cells can store.
eliteStorage = "512000000000"
#Maximum number of Joules Ultimate induction cells can store.
ultimateStorage = "4000000000000"
#Maximum number of Joules Basic induction providers can output or accept.
basicOutput = "256000"
#Maximum number of Joules Advanced induction providers can output or accept.
advancedOutput = "2048000"
#Maximum number of Joules Elite induction providers can output or accept.
eliteOutput = "16384000"
#Maximum number of Joules Ultimate induction providers can output or accept.
ultimateOutput = "131072000"
#Transmitters
[tier.transmitters]
#Universal Cables
[tier.transmitters.energy]
#Internal buffer in Joules of each Basic universal cable.
basicCapacity = "8000"
#Internal buffer in Joules of each Advanced universal cable.
advancedCapacity = "128000"
#Internal buffer in Joules of each Elite universal cable.
eliteCapacity = "1024000"
#Internal buffer in Joules of each Ultimate universal cable.
ultimateCapacity = "8192000"
#Mechanical Pipes
[tier.transmitters.fluid]
#Capacity of Basic mechanical pipes in mB.
#Range: > 1
basicCapacity = 2000
#Pump rate of Basic mechanical pipes in mB/t.
#Range: > 1
basicPullAmount = 250
#Capacity of Advanced mechanical pipes in mB.
#Range: > 1
advancedCapacity = 8000
#Pump rate of Advanced mechanical pipes in mB/t.
#Range: > 1
advancedPullAmount = 1000
#Capacity of Elite mechanical pipes in mB.
#Range: > 1
eliteCapacity = 32000
#Pump rate of Elite mechanical pipes in mB/t.
#Range: > 1
elitePullAmount = 8000
#Capacity of Ultimate mechanical pipes in mB.
#Range: > 1
ultimateCapacity = 128000
#Pump rate of Ultimate mechanical pipes in mB/t.
#Range: > 1
ultimatePullAmount = 32000
#Pressurized Tubes
[tier.transmitters.chemical]
#Capacity of Basic pressurized tubes in mB.
#Range: 1 ~ 9223372036854775807
basicCapacity = 4000
#Pump rate of Basic pressurized tubes in mB/t.
#Range: 1 ~ 9223372036854775807
basicPullAmount = 750
#Capacity of Advanced pressurized tubes in mB.
#Range: 1 ~ 9223372036854775807
advancedCapacity = 16000
#Pump rate of Advanced pressurized tubes in mB/t.
#Range: 1 ~ 9223372036854775807
advancedPullAmount = 2000
#Capacity of Elite pressurized tubes in mB.
#Range: 1 ~ 9223372036854775807
eliteCapacity = 256000
#Pump rate of Elite pressurized tubes in mB/t.
#Range: 1 ~ 9223372036854775807
elitePullAmount = 64000
#Capacity of Ultimate pressurized tubes in mB.
#Range: 1 ~ 9223372036854775807
ultimateCapacity = 1024000
#Pump rate of Ultimate pressurized tubes in mB/t.
#Range: 1 ~ 9223372036854775807
ultimatePullAmount = 256000
#Logistical Transporters
[tier.transmitters.items]
#Item throughput rate of Basic logistical transporters in items/half second.
#Range: > 1
basicPullAmount = 1
#Five times the travel speed in m/s of Basic logistical transporter.
#Range: > 1
basicSpeed = 5
#Item throughput rate of Advanced logistical transporters in items/half second.
#Range: > 1
advancedPullAmount = 16
#Five times the travel speed in m/s of Advanced logistical transporter.
#Range: > 1
advancedSpeed = 10
#Item throughput rate of Elite logistical transporters in items/half second.
#Range: > 1
elitePullAmount = 32
#Five times the travel speed in m/s of Elite logistical transporter.
#Range: > 1
eliteSpeed = 20
#Item throughput rate of Ultimate logistical transporters in items/half second.
#Range: > 1
ultimatePullAmount = 64
#Five times the travel speed in m/s of Ultimate logistical transporter.
#Range: > 1
ultimateSpeed = 50
#Thermodynamic Conductors
[tier.transmitters.heat]
#Conduction value of Basic thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
basicInverseConduction = 5.0
#Heat capacity of Basic thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
basicHeatCapacity = 1.0
#Insulation value of Basic thermodynamic conductor.
#Range: 0.0 ~ 1.7976931348623157E308
basicInsulation = 10.0
#Conduction value of Advanced thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
advancedInverseConduction = 5.0
#Heat capacity of Advanced thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
advancedHeatCapacity = 1.0
#Insulation value of Advanced thermodynamic conductor.
#Range: 0.0 ~ 1.7976931348623157E308
advancedInsulation = 400.0
#Conduction value of Elite thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
eliteInverseConduction = 5.0
#Heat capacity of Elite thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
eliteHeatCapacity = 1.0
#Insulation value of Elite thermodynamic conductor.
#Range: 0.0 ~ 1.7976931348623157E308
eliteInsulation = 8000.0
#Conduction value of Ultimate thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
ultimateInverseConduction = 5.0
#Heat capacity of Ultimate thermodynamic conductors.
#Range: 1.0 ~ 1.7976931348623157E308
ultimateHeatCapacity = 1.0
#Insulation value of Ultimate thermodynamic conductor.
#Range: 0.0 ~ 1.7976931348623157E308
ultimateInsulation = 100000.0

View File

@@ -0,0 +1,6 @@
#Mekanism Tools Client Config. This config only exists on the client
[tools-client]
#Enable durability tooltips for Mekanism Tools gear.
displayDurabilityTooltips = true

771
config/Mekanism/tools.toml Normal file
View File

@@ -0,0 +1,771 @@
#Mekanism Tools Config. This config is synced from server to client.
[tools]
[tools.mobArmorSpawnRate]
#The chance that Mekanism Armor can spawn on mobs. This is multiplied modified by the chunk's difficulty modifier. Vanilla uses 0.15 for its armor spawns, we use 0.1 as default to lower chances of mobs getting some vanilla and some mek armor.
#Range: 0.0 ~ 1.0
general = 0.1
#The chance that Mekanism Weapons can spawn in a zombie's hand.
#Range: 0.0 ~ 1.0
weapon = 0.01
#The chance that Mekanism Weapons can spawn in a zombie's hand when on hard difficulty.
#Range: 0.0 ~ 1.0
weaponHard = 0.05000000074505806
#Spawn chances for pieces of Bronze gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.bronze]
#Whether mobs can spawn with Bronze Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Bronze Swords rather than Bronze Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Bronze Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Bronze Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Bronze Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Bronze Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Bronze Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Bronze Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Bronze Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Bronze Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Spawn chances for pieces of Lapis Lazuli gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.lapis_lazuli]
#Whether mobs can spawn with Lapis Lazuli Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Lapis Lazuli Swords rather than Lapis Lazuli Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Lapis Lazuli Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Lapis Lazuli Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Lapis Lazuli Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Lapis Lazuli Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Lapis Lazuli Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Lapis Lazuli Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Lapis Lazuli Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Lapis Lazuli Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Spawn chances for pieces of Osmium gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.osmium]
#Whether mobs can spawn with Osmium Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Osmium Swords rather than Osmium Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Osmium Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Osmium Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Osmium Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Osmium Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Osmium Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Osmium Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Osmium Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Osmium Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Spawn chances for pieces of Refined Glowstone gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.refined_glowstone]
#Whether mobs can spawn with Refined Glowstone Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Refined Glowstone Swords rather than Refined Glowstone Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Refined Glowstone Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Refined Glowstone Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Refined Glowstone Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Refined Glowstone Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Refined Glowstone Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Refined Glowstone Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Refined Glowstone Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Refined Glowstone Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Spawn chances for pieces of Refined Obsidian gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.refined_obsidian]
#Whether mobs can spawn with Refined Obsidian Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Refined Obsidian Swords rather than Refined Obsidian Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Refined Obsidian Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Refined Obsidian Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Refined Obsidian Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Refined Obsidian Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Refined Obsidian Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Refined Obsidian Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Refined Obsidian Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Refined Obsidian Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Spawn chances for pieces of Steel gear. Note: These values are after the general mobArmorSpawnRate (or corresponding weapon rate) has been checked, and after an even split between material types has been done.
[tools.mobArmorSpawnRate.steel]
#Whether mobs can spawn with Steel Weapons.
canSpawnWeapon = true
#The chance that mobs will spawn with Steel Swords rather than Steel Shovels.
#Range: 0.0 ~ 1.0
swordWeight = 0.33
#The chance that mobs can spawn with Steel Helmets.
#Range: 0.0 ~ 1.0
helmetChance = 1.0
#The chance that mobs can spawn with Steel Chestplates.
#Range: 0.0 ~ 1.0
chestplateChance = 1.0
#The chance that mobs can spawn with Steel Leggings.
#Range: 0.0 ~ 1.0
leggingsChance = 1.0
#The chance that mobs can spawn with Steel Boots.
#Range: 0.0 ~ 1.0
bootsChance = 1.0
#The chance that after each piece of Steel Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChance = 0.25
#The chance on hard mode that after each piece of Steel Armor a mob spawns with that no more pieces will be added. Order of pieces tried is boots, leggings, chestplate, helmet.
#Range: 0.0 ~ 1.0
multiplePieceChanceHard = 0.1
#The chance that if a mob spawns with Steel Weapons that it will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
weaponEnchantmentChance = 0.25
#The chance that if a mob spawns with Steel Armor that they will be enchanted. This is multiplied modified by the chunk's difficulty modifier.
#Range: 0.0 ~ 1.0
armorEnchantmentChance = 0.5
#Vanilla Material Paxel Settings for Wood
[tools.wood]
#Attack damage modifier of Wood paxels.
woodPaxelDamage = 7.0
#Attack speed of Wood paxels.
woodPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Wood paxels.
woodPaxelEfficiency = 2.0
#Natural enchantability factor of Wood paxels.
#Range: > 0
woodPaxelEnchantability = 15
#Maximum durability of Wood paxels.
#Range: > 1
woodPaxelMaxUses = 118
#Vanilla Material Paxel Settings for Stone
[tools.stone]
#Attack damage modifier of Stone paxels.
stonePaxelDamage = 8.0
#Attack speed of Stone paxels.
stonePaxelAtkSpeed = -2.4000000953674316
#Efficiency of Stone paxels.
stonePaxelEfficiency = 4.0
#Natural enchantability factor of Stone paxels.
#Range: > 0
stonePaxelEnchantability = 5
#Maximum durability of Stone paxels.
#Range: > 1
stonePaxelMaxUses = 262
#Vanilla Material Paxel Settings for Iron
[tools.iron]
#Attack damage modifier of Iron paxels.
ironPaxelDamage = 7.0
#Attack speed of Iron paxels.
ironPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Iron paxels.
ironPaxelEfficiency = 6.0
#Natural enchantability factor of Iron paxels.
#Range: > 0
ironPaxelEnchantability = 14
#Maximum durability of Iron paxels.
#Range: > 1
ironPaxelMaxUses = 500
#Vanilla Material Paxel Settings for Diamond
[tools.diamond]
#Attack damage modifier of Diamond paxels.
diamondPaxelDamage = 6.0
#Attack speed of Diamond paxels.
diamondPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Diamond paxels.
diamondPaxelEfficiency = 8.0
#Natural enchantability factor of Diamond paxels.
#Range: > 0
diamondPaxelEnchantability = 10
#Maximum durability of Diamond paxels.
#Range: > 1
diamondPaxelMaxUses = 3122
#Vanilla Material Paxel Settings for Gold
[tools.gold]
#Attack damage modifier of Gold paxels.
goldPaxelDamage = 7.0
#Attack speed of Gold paxels.
goldPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Gold paxels.
goldPaxelEfficiency = 12.0
#Natural enchantability factor of Gold paxels.
#Range: > 0
goldPaxelEnchantability = 22
#Maximum durability of Gold paxels.
#Range: > 1
goldPaxelMaxUses = 64
#Vanilla Material Paxel Settings for Netherite
[tools.netherite]
#Attack damage modifier of Netherite paxels.
netheritePaxelDamage = 6.0
#Attack speed of Netherite paxels.
netheritePaxelAtkSpeed = -2.4000000953674316
#Efficiency of Netherite paxels.
netheritePaxelEfficiency = 9.0
#Natural enchantability factor of Netherite paxels.
#Range: > 0
netheritePaxelEnchantability = 15
#Maximum durability of Netherite paxels.
#Range: > 1
netheritePaxelMaxUses = 4062
#Material Settings for Bronze
[tools.bronze]
#Base attack damage of Bronze items.
#Range: 0.0 ~ 3.4028234663852886E38
bronzeAttackDamage = 2.0
#Maximum durability of Bronze shields.
#Range: > 0
bronzeShieldDurability = 403
#Attack damage modifier of Bronze swords.
bronzeSwordDamage = 3.0
#Attack speed of Bronze swords.
bronzeSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Bronze shovels.
bronzeShovelDamage = 1.5
#Attack speed of Bronze shovels.
bronzeShovelAtkSpeed = -3.0
#Attack damage modifier of Bronze axes.
bronzeAxeDamage = 7.0
#Attack speed of Bronze axes.
bronzeAxeAtkSpeed = -3.0
#Attack damage modifier of Bronze pickaxes.
bronzePickaxeDamage = 1.0
#Attack speed of Bronze pickaxes.
bronzePickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Bronze hoes.
bronzeHoeDamage = -2.0
#Attack speed of Bronze hoes.
bronzeHoeAtkSpeed = -1.0
#Maximum durability of Bronze tools.
#Range: > 1
bronzeToolMaxUses = 375
#Efficiency of Bronze tools.
bronzeEfficiency = 7.0
#Attack damage modifier of Bronze paxels.
bronzePaxelDamage = 8.0
#Attack speed of Bronze paxels.
bronzePaxelAtkSpeed = -2.4000000953674316
#Efficiency of Bronze paxels.
bronzePaxelEfficiency = 7.0
#Natural enchantability factor of Bronze paxels.
#Range: > 0
bronzePaxelEnchantability = 10
#Maximum durability of Bronze paxels.
#Range: > 1
bronzePaxelMaxUses = 750
#Natural enchantability factor of Bronze items.
#Range: > 0
bronzeEnchantability = 10
#Base armor toughness value of Bronze armor.
#Range: 0.0 ~ 3.4028234663852886E38
bronzeToughness = 1.0
#Base armor knockback resistance value of Bronze armor.
#Range: 0.0 ~ 3.4028234663852886E38
bronzeKnockbackResistance = 0.0
#Maximum durability of Bronze boots.
#Range: > 1
bronzeBootDurability = 234
#Maximum durability of Bronze leggings.
#Range: > 1
bronzeLeggingDurability = 270
#Maximum durability of Bronze chestplates.
#Range: > 1
bronzeChestplateDurability = 288
#Maximum durability of Bronze helmets.
#Range: > 1
bronzeHelmetDurability = 198
#Protection value of Bronze boots.
#Range: > 0
bronzeBootArmor = 2
#Protection value of Bronze leggings.
#Range: > 0
bronzeLeggingArmor = 6
#Protection value of Bronze chestplates.
#Range: > 0
bronzeChestplateArmor = 7
#Protection value of Bronze helmets.
#Range: > 0
bronzeHelmetArmor = 3
#Material Settings for Lapis Lazuli
[tools.lapis_lazuli]
#Base attack damage of Lapis Lazuli items.
#Range: 0.0 ~ 3.4028234663852886E38
lapis_lazuliAttackDamage = 1.0
#Maximum durability of Lapis Lazuli shields.
#Range: > 0
lapis_lazuliShieldDurability = 224
#Attack damage modifier of Lapis Lazuli swords.
lapis_lazuliSwordDamage = 3.0
#Attack speed of Lapis Lazuli swords.
lapis_lazuliSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Lapis Lazuli shovels.
lapis_lazuliShovelDamage = 1.5
#Attack speed of Lapis Lazuli shovels.
lapis_lazuliShovelAtkSpeed = -3.0
#Attack damage modifier of Lapis Lazuli axes.
lapis_lazuliAxeDamage = 4.0
#Attack speed of Lapis Lazuli axes.
lapis_lazuliAxeAtkSpeed = -2.9000000953674316
#Attack damage modifier of Lapis Lazuli pickaxes.
lapis_lazuliPickaxeDamage = 1.0
#Attack speed of Lapis Lazuli pickaxes.
lapis_lazuliPickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Lapis Lazuli hoes.
lapis_lazuliHoeDamage = -1.0
#Attack speed of Lapis Lazuli hoes.
lapis_lazuliHoeAtkSpeed = -2.0
#Maximum durability of Lapis Lazuli tools.
#Range: > 1
lapis_lazuliToolMaxUses = 128
#Efficiency of Lapis Lazuli tools.
lapis_lazuliEfficiency = 9.0
#Attack damage modifier of Lapis Lazuli paxels.
lapis_lazuliPaxelDamage = 5.0
#Attack speed of Lapis Lazuli paxels.
lapis_lazuliPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Lapis Lazuli paxels.
lapis_lazuliPaxelEfficiency = 9.0
#Natural enchantability factor of Lapis Lazuli paxels.
#Range: > 0
lapis_lazuliPaxelEnchantability = 32
#Maximum durability of Lapis Lazuli paxels.
#Range: > 1
lapis_lazuliPaxelMaxUses = 256
#Natural enchantability factor of Lapis Lazuli items.
#Range: > 0
lapis_lazuliEnchantability = 32
#Base armor toughness value of Lapis Lazuli armor.
#Range: 0.0 ~ 3.4028234663852886E38
lapis_lazuliToughness = 0.0
#Base armor knockback resistance value of Lapis Lazuli armor.
#Range: 0.0 ~ 3.4028234663852886E38
lapis_lazuliKnockbackResistance = 0.0
#Maximum durability of Lapis Lazuli boots.
#Range: > 1
lapis_lazuliBootDurability = 130
#Maximum durability of Lapis Lazuli leggings.
#Range: > 1
lapis_lazuliLeggingDurability = 150
#Maximum durability of Lapis Lazuli chestplates.
#Range: > 1
lapis_lazuliChestplateDurability = 160
#Maximum durability of Lapis Lazuli helmets.
#Range: > 1
lapis_lazuliHelmetDurability = 110
#Protection value of Lapis Lazuli boots.
#Range: > 0
lapis_lazuliBootArmor = 1
#Protection value of Lapis Lazuli leggings.
#Range: > 0
lapis_lazuliLeggingArmor = 3
#Protection value of Lapis Lazuli chestplates.
#Range: > 0
lapis_lazuliChestplateArmor = 4
#Protection value of Lapis Lazuli helmets.
#Range: > 0
lapis_lazuliHelmetArmor = 1
#Material Settings for Osmium
[tools.osmium]
#Base attack damage of Osmium items.
#Range: 0.0 ~ 3.4028234663852886E38
osmiumAttackDamage = 4.0
#Maximum durability of Osmium shields.
#Range: > 0
osmiumShieldDurability = 672
#Attack damage modifier of Osmium swords.
osmiumSwordDamage = 3.0
#Attack speed of Osmium swords.
osmiumSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Osmium shovels.
osmiumShovelDamage = 1.5
#Attack speed of Osmium shovels.
osmiumShovelAtkSpeed = -3.0
#Attack damage modifier of Osmium axes.
osmiumAxeDamage = 8.0
#Attack speed of Osmium axes.
osmiumAxeAtkSpeed = -3.299999952316284
#Attack damage modifier of Osmium pickaxes.
osmiumPickaxeDamage = 1.0
#Attack speed of Osmium pickaxes.
osmiumPickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Osmium hoes.
osmiumHoeDamage = -4.0
#Attack speed of Osmium hoes.
osmiumHoeAtkSpeed = 1.0
#Maximum durability of Osmium tools.
#Range: > 1
osmiumToolMaxUses = 1024
#Efficiency of Osmium tools.
osmiumEfficiency = 4.0
#Attack damage modifier of Osmium paxels.
osmiumPaxelDamage = 9.0
#Attack speed of Osmium paxels.
osmiumPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Osmium paxels.
osmiumPaxelEfficiency = 4.0
#Natural enchantability factor of Osmium paxels.
#Range: > 0
osmiumPaxelEnchantability = 14
#Maximum durability of Osmium paxels.
#Range: > 1
osmiumPaxelMaxUses = 2048
#Natural enchantability factor of Osmium items.
#Range: > 0
osmiumEnchantability = 14
#Base armor toughness value of Osmium armor.
#Range: 0.0 ~ 3.4028234663852886E38
osmiumToughness = 3.0
#Base armor knockback resistance value of Osmium armor.
#Range: 0.0 ~ 3.4028234663852886E38
osmiumKnockbackResistance = 0.10000000149011612
#Maximum durability of Osmium boots.
#Range: > 1
osmiumBootDurability = 390
#Maximum durability of Osmium leggings.
#Range: > 1
osmiumLeggingDurability = 450
#Maximum durability of Osmium chestplates.
#Range: > 1
osmiumChestplateDurability = 480
#Maximum durability of Osmium helmets.
#Range: > 1
osmiumHelmetDurability = 330
#Protection value of Osmium boots.
#Range: > 0
osmiumBootArmor = 3
#Protection value of Osmium leggings.
#Range: > 0
osmiumLeggingArmor = 6
#Protection value of Osmium chestplates.
#Range: > 0
osmiumChestplateArmor = 8
#Protection value of Osmium helmets.
#Range: > 0
osmiumHelmetArmor = 4
#Material Settings for Refined Glowstone
[tools.refined_glowstone]
#Base attack damage of Refined Glowstone items.
#Range: 0.0 ~ 3.4028234663852886E38
refined_glowstoneAttackDamage = 2.0
#Maximum durability of Refined Glowstone shields.
#Range: > 0
refined_glowstoneShieldDurability = 381
#Attack damage modifier of Refined Glowstone swords.
refined_glowstoneSwordDamage = 3.0
#Attack speed of Refined Glowstone swords.
refined_glowstoneSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Refined Glowstone shovels.
refined_glowstoneShovelDamage = 1.5
#Attack speed of Refined Glowstone shovels.
refined_glowstoneShovelAtkSpeed = -3.0
#Attack damage modifier of Refined Glowstone axes.
refined_glowstoneAxeDamage = 6.0
#Attack speed of Refined Glowstone axes.
refined_glowstoneAxeAtkSpeed = -2.9000000953674316
#Attack damage modifier of Refined Glowstone pickaxes.
refined_glowstonePickaxeDamage = 1.0
#Attack speed of Refined Glowstone pickaxes.
refined_glowstonePickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Refined Glowstone hoes.
refined_glowstoneHoeDamage = -2.0
#Attack speed of Refined Glowstone hoes.
refined_glowstoneHoeAtkSpeed = -1.0
#Maximum durability of Refined Glowstone tools.
#Range: > 1
refined_glowstoneToolMaxUses = 384
#Efficiency of Refined Glowstone tools.
refined_glowstoneEfficiency = 15.0
#Attack damage modifier of Refined Glowstone paxels.
refined_glowstonePaxelDamage = 7.0
#Attack speed of Refined Glowstone paxels.
refined_glowstonePaxelAtkSpeed = -2.4000000953674316
#Efficiency of Refined Glowstone paxels.
refined_glowstonePaxelEfficiency = 15.0
#Natural enchantability factor of Refined Glowstone paxels.
#Range: > 0
refined_glowstonePaxelEnchantability = 20
#Maximum durability of Refined Glowstone paxels.
#Range: > 1
refined_glowstonePaxelMaxUses = 768
#Natural enchantability factor of Refined Glowstone items.
#Range: > 0
refined_glowstoneEnchantability = 20
#Base armor toughness value of Refined Glowstone armor.
#Range: 0.0 ~ 3.4028234663852886E38
refined_glowstoneToughness = 0.0
#Base armor knockback resistance value of Refined Glowstone armor.
#Range: 0.0 ~ 3.4028234663852886E38
refined_glowstoneKnockbackResistance = 0.0
#Maximum durability of Refined Glowstone boots.
#Range: > 1
refined_glowstoneBootDurability = 221
#Maximum durability of Refined Glowstone leggings.
#Range: > 1
refined_glowstoneLeggingDurability = 255
#Maximum durability of Refined Glowstone chestplates.
#Range: > 1
refined_glowstoneChestplateDurability = 272
#Maximum durability of Refined Glowstone helmets.
#Range: > 1
refined_glowstoneHelmetDurability = 187
#Protection value of Refined Glowstone boots.
#Range: > 0
refined_glowstoneBootArmor = 3
#Protection value of Refined Glowstone leggings.
#Range: > 0
refined_glowstoneLeggingArmor = 6
#Protection value of Refined Glowstone chestplates.
#Range: > 0
refined_glowstoneChestplateArmor = 8
#Protection value of Refined Glowstone helmets.
#Range: > 0
refined_glowstoneHelmetArmor = 3
#Material Settings for Refined Obsidian
[tools.refined_obsidian]
#Base attack damage of Refined Obsidian items.
#Range: 0.0 ~ 3.4028234663852886E38
refined_obsidianAttackDamage = 8.0
#Maximum durability of Refined Obsidian shields.
#Range: > 0
refined_obsidianShieldDurability = 1680
#Attack damage modifier of Refined Obsidian swords.
refined_obsidianSwordDamage = 3.0
#Attack speed of Refined Obsidian swords.
refined_obsidianSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Refined Obsidian shovels.
refined_obsidianShovelDamage = 1.5
#Attack speed of Refined Obsidian shovels.
refined_obsidianShovelAtkSpeed = -3.0
#Attack damage modifier of Refined Obsidian axes.
refined_obsidianAxeDamage = 7.0
#Attack speed of Refined Obsidian axes.
refined_obsidianAxeAtkSpeed = -2.9000000953674316
#Attack damage modifier of Refined Obsidian pickaxes.
refined_obsidianPickaxeDamage = 1.0
#Attack speed of Refined Obsidian pickaxes.
refined_obsidianPickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Refined Obsidian hoes.
refined_obsidianHoeDamage = -8.0
#Attack speed of Refined Obsidian hoes.
refined_obsidianHoeAtkSpeed = 5.0
#Maximum durability of Refined Obsidian tools.
#Range: > 1
refined_obsidianToolMaxUses = 4096
#Efficiency of Refined Obsidian tools.
refined_obsidianEfficiency = 12.0
#Attack damage modifier of Refined Obsidian paxels.
refined_obsidianPaxelDamage = 8.0
#Attack speed of Refined Obsidian paxels.
refined_obsidianPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Refined Obsidian paxels.
refined_obsidianPaxelEfficiency = 12.0
#Natural enchantability factor of Refined Obsidian paxels.
#Range: > 0
refined_obsidianPaxelEnchantability = 18
#Maximum durability of Refined Obsidian paxels.
#Range: > 1
refined_obsidianPaxelMaxUses = 8192
#Natural enchantability factor of Refined Obsidian items.
#Range: > 0
refined_obsidianEnchantability = 18
#Base armor toughness value of Refined Obsidian armor.
#Range: 0.0 ~ 3.4028234663852886E38
refined_obsidianToughness = 5.0
#Base armor knockback resistance value of Refined Obsidian armor.
#Range: 0.0 ~ 3.4028234663852886E38
refined_obsidianKnockbackResistance = 0.20000000298023224
#Maximum durability of Refined Obsidian boots.
#Range: > 1
refined_obsidianBootDurability = 975
#Maximum durability of Refined Obsidian leggings.
#Range: > 1
refined_obsidianLeggingDurability = 1125
#Maximum durability of Refined Obsidian chestplates.
#Range: > 1
refined_obsidianChestplateDurability = 1200
#Maximum durability of Refined Obsidian helmets.
#Range: > 1
refined_obsidianHelmetDurability = 825
#Protection value of Refined Obsidian boots.
#Range: > 0
refined_obsidianBootArmor = 5
#Protection value of Refined Obsidian leggings.
#Range: > 0
refined_obsidianLeggingArmor = 8
#Protection value of Refined Obsidian chestplates.
#Range: > 0
refined_obsidianChestplateArmor = 12
#Protection value of Refined Obsidian helmets.
#Range: > 0
refined_obsidianHelmetArmor = 6
#Material Settings for Steel
[tools.steel]
#Base attack damage of Steel items.
#Range: 0.0 ~ 3.4028234663852886E38
steelAttackDamage = 3.0
#Maximum durability of Steel shields.
#Range: > 0
steelShieldDurability = 448
#Attack damage modifier of Steel swords.
steelSwordDamage = 3.0
#Attack speed of Steel swords.
steelSwordAtkSpeed = -2.4000000953674316
#Attack damage modifier of Steel shovels.
steelShovelDamage = 1.5
#Attack speed of Steel shovels.
steelShovelAtkSpeed = -3.0
#Attack damage modifier of Steel axes.
steelAxeDamage = 7.0
#Attack speed of Steel axes.
steelAxeAtkSpeed = -3.0
#Attack damage modifier of Steel pickaxes.
steelPickaxeDamage = 1.0
#Attack speed of Steel pickaxes.
steelPickaxeAtkSpeed = -2.799999952316284
#Attack damage modifier of Steel hoes.
steelHoeDamage = -3.0
#Attack speed of Steel hoes.
steelHoeAtkSpeed = 0.0
#Maximum durability of Steel tools.
#Range: > 1
steelToolMaxUses = 500
#Efficiency of Steel tools.
steelEfficiency = 8.0
#Attack damage modifier of Steel paxels.
steelPaxelDamage = 8.0
#Attack speed of Steel paxels.
steelPaxelAtkSpeed = -2.4000000953674316
#Efficiency of Steel paxels.
steelPaxelEfficiency = 8.0
#Natural enchantability factor of Steel paxels.
#Range: > 0
steelPaxelEnchantability = 16
#Maximum durability of Steel paxels.
#Range: > 1
steelPaxelMaxUses = 1000
#Natural enchantability factor of Steel items.
#Range: > 0
steelEnchantability = 16
#Base armor toughness value of Steel armor.
#Range: 0.0 ~ 3.4028234663852886E38
steelToughness = 2.0
#Base armor knockback resistance value of Steel armor.
#Range: 0.0 ~ 3.4028234663852886E38
steelKnockbackResistance = 0.0
#Maximum durability of Steel boots.
#Range: > 1
steelBootDurability = 260
#Maximum durability of Steel leggings.
#Range: > 1
steelLeggingDurability = 300
#Maximum durability of Steel chestplates.
#Range: > 1
steelChestplateDurability = 320
#Maximum durability of Steel helmets.
#Range: > 1
steelHelmetDurability = 220
#Protection value of Steel boots.
#Range: > 0
steelBootArmor = 3
#Protection value of Steel leggings.
#Range: > 0
steelLeggingArmor = 6
#Protection value of Steel chestplates.
#Range: > 0
steelChestplateArmor = 8
#Protection value of Steel helmets.
#Range: > 0
steelHelmetArmor = 3

460
config/Mekanism/world.toml Normal file
View File

@@ -0,0 +1,460 @@
#World generation settings for Mekanism. This config is synced from server to client
[world_generation]
#Allows chunks to retrogen Mekanism ore blocks.
enableRegeneration = false
#Change this value to cause Mekanism to regen its ore in all loaded chunks.
#Range: > 0
userWorldGenVersion = 0
#Generation Settings for tin ore.
[world_generation.tin]
#Determines if tin ore should be added to world generation.
shouldGenerate = true
#small tin vein Generation Settings.
[world_generation.tin.small]
#Determines if small tin veins should be added to world generation. Note: Requires generating tin ore to be enabled.
shouldGenerate = true
#Chance that small tin veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 14
#Maximum number of blocks in a small tin vein.
#Range: 1 ~ 64
maxVeinSize = 4
#Chance that blocks that are directly exposed to air in a small tin vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing small tin veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for small tin veins.
[world_generation.tin.small.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = -20
#Maximum (inclusive) height anchor for small tin veins.
[world_generation.tin.small.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 94
#large tin vein Generation Settings.
[world_generation.tin.large]
#Determines if large tin veins should be added to world generation. Note: Requires generating tin ore to be enabled.
shouldGenerate = true
#Chance that large tin veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 12
#Maximum number of blocks in a large tin vein.
#Range: 1 ~ 64
maxVeinSize = 9
#Chance that blocks that are directly exposed to air in a large tin vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing large tin veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for large tin veins.
[world_generation.tin.large.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = -32
#Maximum (inclusive) height anchor for large tin veins.
[world_generation.tin.large.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 72
#Generation Settings for osmium ore.
[world_generation.osmium]
#Determines if osmium ore should be added to world generation.
shouldGenerate = true
#upper osmium vein Generation Settings.
[world_generation.osmium.upper]
#Determines if upper osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
shouldGenerate = true
#Chance that upper osmium veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 65
#Maximum number of blocks in a upper osmium vein.
#Range: 1 ~ 64
maxVeinSize = 7
#Chance that blocks that are directly exposed to air in a upper osmium vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing upper osmium veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 8
#Minimum (inclusive) height anchor for upper osmium veins.
[world_generation.osmium.upper.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 72
#Maximum (inclusive) height anchor for upper osmium veins.
[world_generation.osmium.upper.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "BELOW_TOP"
#Value used for calculating y for the anchor based on the type.
value = -24
#middle osmium vein Generation Settings.
[world_generation.osmium.middle]
#Determines if middle osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
shouldGenerate = true
#Chance that middle osmium veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 6
#Maximum number of blocks in a middle osmium vein.
#Range: 1 ~ 64
maxVeinSize = 9
#Chance that blocks that are directly exposed to air in a middle osmium vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing middle osmium veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for middle osmium veins.
[world_generation.osmium.middle.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = -32
#Maximum (inclusive) height anchor for middle osmium veins.
[world_generation.osmium.middle.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 56
#small osmium vein Generation Settings.
[world_generation.osmium.small]
#Determines if small osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
shouldGenerate = true
#Chance that small osmium veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 8
#Maximum number of blocks in a small osmium vein.
#Range: 1 ~ 64
maxVeinSize = 4
#Chance that blocks that are directly exposed to air in a small osmium vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing small osmium veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "UNIFORM"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for small osmium veins.
[world_generation.osmium.small.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = 0
#Maximum (inclusive) height anchor for small osmium veins.
[world_generation.osmium.small.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 64
#Generation Settings for uranium ore.
[world_generation.uranium]
#Determines if uranium ore should be added to world generation.
shouldGenerate = true
#small uranium vein Generation Settings.
[world_generation.uranium.small]
#Determines if small uranium veins should be added to world generation. Note: Requires generating uranium ore to be enabled.
shouldGenerate = true
#Chance that small uranium veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 4
#Maximum number of blocks in a small uranium vein.
#Range: 1 ~ 64
maxVeinSize = 4
#Chance that blocks that are directly exposed to air in a small uranium vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing small uranium veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for small uranium veins.
[world_generation.uranium.small.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = 0
#Maximum (inclusive) height anchor for small uranium veins.
[world_generation.uranium.small.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 8
#buried uranium vein Generation Settings.
[world_generation.uranium.buried]
#Determines if buried uranium veins should be added to world generation. Note: Requires generating uranium ore to be enabled.
shouldGenerate = true
#Chance that buried uranium veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 7
#Maximum number of blocks in a buried uranium vein.
#Range: 1 ~ 64
maxVeinSize = 9
#Chance that blocks that are directly exposed to air in a buried uranium vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.75
#Distribution shape for placing buried uranium veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 16
#Minimum (inclusive) height anchor for buried uranium veins.
[world_generation.uranium.buried.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = -24
#Maximum (inclusive) height anchor for buried uranium veins.
[world_generation.uranium.buried.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = 56
#Generation Settings for fluorite ore.
[world_generation.fluorite]
#Determines if fluorite ore should be added to world generation.
shouldGenerate = true
#normal fluorite vein Generation Settings.
[world_generation.fluorite.normal]
#Determines if normal fluorite veins should be added to world generation. Note: Requires generating fluorite ore to be enabled.
shouldGenerate = true
#Chance that normal fluorite veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 5
#Maximum number of blocks in a normal fluorite vein.
#Range: 1 ~ 64
maxVeinSize = 5
#Chance that blocks that are directly exposed to air in a normal fluorite vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.0
#Distribution shape for placing normal fluorite veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "UNIFORM"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for normal fluorite veins.
[world_generation.fluorite.normal.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = 0
#Maximum (inclusive) height anchor for normal fluorite veins.
[world_generation.fluorite.normal.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 23
#buried fluorite vein Generation Settings.
[world_generation.fluorite.buried]
#Determines if buried fluorite veins should be added to world generation. Note: Requires generating fluorite ore to be enabled.
shouldGenerate = true
#Chance that buried fluorite veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 3
#Maximum number of blocks in a buried fluorite vein.
#Range: 1 ~ 64
maxVeinSize = 13
#Chance that blocks that are directly exposed to air in a buried fluorite vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 1.0
#Distribution shape for placing buried fluorite veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for buried fluorite veins.
[world_generation.fluorite.buried.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = 0
#Maximum (inclusive) height anchor for buried fluorite veins.
[world_generation.fluorite.buried.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 4
#Generation Settings for lead ore.
[world_generation.lead]
#Determines if lead ore should be added to world generation.
shouldGenerate = true
#normal lead vein Generation Settings.
[world_generation.lead.normal]
#Determines if normal lead veins should be added to world generation. Note: Requires generating lead ore to be enabled.
shouldGenerate = true
#Chance that normal lead veins generates in a chunk.
#Range: 1 ~ 256
perChunk = 8
#Maximum number of blocks in a normal lead vein.
#Range: 1 ~ 64
maxVeinSize = 9
#Chance that blocks that are directly exposed to air in a normal lead vein are not placed.
#Range: 0.0 ~ 1.0
discardChanceOnAirExposure = 0.25
#Distribution shape for placing normal lead veins.
#Allowed Values: TRAPEZOID, UNIFORM
shape = "TRAPEZOID"
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
plateau = 0
#Minimum (inclusive) height anchor for normal lead veins.
[world_generation.lead.normal.minInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABOVE_BOTTOM"
#Value used for calculating y for the anchor based on the type.
value = -24
#Maximum (inclusive) height anchor for normal lead veins.
[world_generation.lead.normal.maxInclusive]
#Type of anchor.
#Absolute -> y = value
#Above Bottom -> y = minY + value
#Below Top -> y = depth - 1 + minY - value
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
type = "ABSOLUTE"
#Value used for calculating y for the anchor based on the type.
value = 64
#Generation Settings for salt.
[world_generation.salt]
#Determines if salt should be added to world generation.
shouldGenerate = true
#Chance that salt generates in a chunk.
#Range: 1 ~ 256
perChunk = 2
#Base radius of a vein of salt.
#Range: 1 ~ 4
minRadius = 2
#Extended variability (spread) for the radius in a vein of salt.
maxRadius = 3
#Number of blocks to extend up and down when placing a vein of salt.
#Range: 0 ~ 2031
halfHeight = 1

8
config/MouseTweaks.cfg Normal file
View File

@@ -0,0 +1,8 @@
RMBTweak=1
LMBTweakWithItem=1
LMBTweakWithoutItem=1
WheelTweak=1
WheelSearchOrder=1
WheelScrollDirection=0
ScrollItemScaling=0
Debug=0

View File

@@ -0,0 +1,20 @@
{
"defaultSigningMode": "PROMPT",
"enableMod": true,
"showNCRButton": true,
"showReloadButton": true,
"verifiedIconEnabled": true,
"showServerSafety": true,
"hideInsecureMessageIndicators": true,
"hideModifiedMessageIndicators": true,
"hideSystemMessageIndicators": true,
"hideWarningToast": true,
"hideSigningRequestMessage": false,
"alwaysHideReportButton": false,
"skipRealmsWarning": false,
"disableTelemetry": true,
"removeTelemetryButton": true,
"demandOnServer": false,
"verifiedIconOffsetX": 0,
"verifiedIconOffsetY": 0
}

View File

@@ -0,0 +1,7 @@
{
"demandOnClientMessage": "You do not have No Chat Reports, and this server is configured to require it on client!",
"demandOnClient": false,
"convertToGameMessage": true,
"addQueryData": true,
"enableDebugLog": false
}

View File

@@ -0,0 +1,28 @@
{
"skipWarning": false,
"enableEncryption": false,
"encryptPublic": true,
"showEncryptionButton": true,
"showEncryptionIndicators": true,
"encryptionKey": "blfrngArk3chG6wzncOZ5A\u003d\u003d",
"encryptionPassphrase": "",
"algorithmName": "AES/CFB8+Base64",
"encryptableCommands": [
"msg:1",
"w:1",
"whisper:1",
"tell:1",
"r:0",
"dm:1",
"me:0",
"m:1",
"t:1",
"pm:1",
"emsg:1",
"epm:1",
"etell:1",
"ewhisper:1",
"message:1",
"reply:0"
]
}

View File

@@ -0,0 +1,3 @@
{
"signingModes": {}
}

View File

@@ -0,0 +1,3 @@
# No Chat Reports
You can find updated documentation of configuration files on the wiki:
https://github.com/Aizistral-Studios/No-Chat-Reports/wiki/Configuration-Files

View File

@@ -0,0 +1,17 @@
[client]
#Show item tags in tooltips (useful for custom EMC registration)
tagToolTips = false
#Show the EMC value as a tooltip on items and blocks
emcToolTips = false
#Requires holding shift to display the EMC value as a tooltip on items and blocks. Note: this does nothing if emcToolTips is disabled.
shiftEmcToolTips = false
#Requires holding shift to display the learned/unlearned text as a tooltip on items and blocks. Note: this does nothing if emcToolTips is disabled.
shiftLearnedToolTips = true
#Show stats as tooltips for various ProjectE blocks
statToolTips = true
#Show DM pedestal functions in item tooltips
pedestalToolTips = true
#The Philosopher's Stone overlay softly pulsates
pulsatingOverlay = false

View File

@@ -0,0 +1,10 @@
#Note: The majority of config options are in the server config file. If you do not see the server config file, try opening up a single player world. ProjectE uses one "server" config file for all worlds, for convenience in going from one world to another, but makes it be a "server" config file so that forge will automatically sync it when we connect to a multiplayer server.
[common]
#Enable more verbose debug logging
debugLogging = false
#The Tome of Knowledge can be crafted.
craftableTome = false
#Require full omega klein stars in the tome of knowledge and gem armor recipes. This is the same behavior that EE2 had.
fullKleinStars = false

View File

@@ -0,0 +1,8 @@
{
"entries": [
{
"item": "kubejs:dried_earth",
"emc": 1
}
]
}

View File

@@ -0,0 +1,121 @@
[general]
#When the next EMC mapping occurs write the results to config/ProjectE/pregenerated_emc.json and only ever run the mapping again when that file does not exist, this setting is set to false, or an error occurred parsing that file.
pregenerate = false
#Want to take a look at the internals of EMC Calculation? Enable this to write all the conversions and setValue-Commands to config/ProjectE/mappingdump.json
dumpEverythingToFile = false
#Log known EMC Exploits. This can not and will not find all possible exploits. This will only find exploits that result in fixed/custom emc values that the algorithm did not overwrite. Exploits that derive from conversions that are unknown to ProjectE will not be found.
logEMCExploits = true
[CraftingMapper]
[CraftingMapper.MekRotary]
#Maps Mekanism rotary condensentrator recipes.
enabled = true
[CraftingMapper.MekItemStackToPigment]
#Maps Mekanism item stack to pigment recipes. (Pigment Extracting)
enabled = true
[CraftingMapper.MekElectrolysis]
#Maps Mekanism electrolytic separator recipes.
enabled = true
[CraftingMapper.MekPaintingMachine]
#Maps Mekanism painting machine recipes.
enabled = true
[CraftingMapper.MekItemStackGasToItemStack]
#Maps Mekanism Machine recipes that go from item, gas to item. (Compressing, Purifying, Injecting)
enabled = true
[CraftingMapper.MekDissolution]
#Maps Mekanism dissolution recipes.
enabled = true
[CraftingMapper.MekGasToGas]
#Maps Mekanism activating and centrifuging recipes.
enabled = true
[CraftingMapper.MekFluidSlurryToSlurry]
#Maps Mekanism washing recipes.
enabled = true
[CraftingMapper.MekItemStackToItemStack]
#Maps Mekanism Machine recipes that go from item to item. (Crushing, Enriching, Smelting)
enabled = true
[CraftingMapper.MekSawmill]
#Maps Mekanism sawmill recipes. (Disabled by default, due to causing various EMC values to be removed pertaining to charcoal/wood)
enabled = false
[CraftingMapper.MekChemicalInfuser]
#Maps Mekanism chemical infuser recipes.
enabled = true
[CraftingMapper.MekCombiner]
#Maps Mekanism combiner recipes.
enabled = true
[CraftingMapper.MekPressurizedReaction]
#Maps Mekanism pressurized reaction recipes.
enabled = false
[CraftingMapper.MekFluidToFluid]
#Maps Mekanism evaporating recipes.
enabled = true
[CraftingMapper.MekChemicalCrystallizer]
#Maps Mekanism crystallizing recipes.
enabled = true
[CraftingMapper.Smithing]
#Maps smithing recipes.
enabled = true
[CraftingMapper.MekMetallurgicInfuser]
#Maps Mekanism metallurgic infuser recipes.
enabled = true
[CraftingMapper.MekPigmentMixer]
#Maps Mekanism pigment mixer recipes.
enabled = true
[CraftingMapper.MekItemStackToGas]
#Maps Mekanism item stack to gas recipes. (Gas conversion, Oxidizing)
enabled = true
[CraftingMapper.FallbackRecipeType]
#Fallback for default handling of recipes that extend ICraftingRecipe, AbstractCookingRecipe, SingleItemRecipe, or SmithingRecipe. This will catch modded extensions of the vanilla recipe classes, and if the VanillaRecipeTypes mapper is disabled, this mapper will still catch the vanilla recipes.
enabled = true
[CraftingMapper.VanillaRecipeTypes]
#Maps the different vanilla recipe types.
enabled = true
[CraftingMapper.MekItemStackToInfuseType]
#Maps Mekanism item stack to infuse type conversion recipes.
enabled = true
[enabledMappers]
#Set EMC=0 for everything in the forge:raw_materials tag
RawOresBlacklistMapper = true
#Set EMC=0 for everything in the forge:ores tag
OresBlacklistMapper = true
#Add Conversions for Crafting Recipes gathered from net.minecraft.item.crafting.RecipeManager
CraftingMapper = true
#Add Conversions for all lingering potions to arrow recipes
TippedArrowMapper = true
#Adds back and forth conversions of objects and their Tag variant. (EMC values assigned to tags will not behave properly if this mapper is disabled)
TagMapper = true
#Add Conversions for all weathered copper variants
WeatheredCopperMapper = true
#Add Conversions for Brewing Recipes
BrewingMapper = true
#Uses the `custom_emc.json` File to add EMC values.
CustomEMCMapper = true
#Loads json files within datapacks (data/<domain>/pe_custom_conversions/*.json) to add values and conversions
CustomConversionMapper = true
#Allows other mods to easily set EMC values using the ProjectEAPI
APICustomEMCMapper = true

View File

@@ -0,0 +1,34 @@
#This config is used to control which NBT Processors get used, and which ones actually contribute to the persistent NBT data that gets saved to knowledge/copied in a condenser.
#To disable an NBT Processor set the 'enabled' option for it to false.
#To disable an NBT Processor from contributing to the persistent data set the 'persistent' option for it to false. Note: that if there is no persistent' config option, the NBT Processor never has any persistent data.
#The config options in this file are synced from server to client, as the processors get used dynamically to calculate/preview EMC values for items and are not included in the synced EMC mappings.
[processors]
#Reduces the EMC value the more damaged an item is.
[processors.DamageProcessor]
enabled = true
#Increases the EMC value of the item to take into account any EMC the item has stored.
[processors.StoredEMCProcessor]
enabled = true
#Increases the EMC value to take into account any enchantments on an item.
[processors.EnchantmentProcessor]
enabled = false
persistent = false
#Takes the different sherds into account for each decorated pot.
[processors.DecoratedPotProcessor]
enabled = true
persistent = true
#Calculates EMC value of trimmed armor.
[processors.ArmorTrimProcessor]
enabled = true
persistent = true
#Increases the EMC value of any Mekanism items by the value of the stored or installed contents.
[processors.MekanismContentsProcessor]
enabled = true

104
config/ProjectE/server.toml Normal file
View File

@@ -0,0 +1,104 @@
#All of the config options in this file are server side and will be synced from server to client. ProjectE uses one "server" config file for all worlds, for convenience in going from one world to another, but makes it be a "server" config file so that forge will automatically sync it when we connect to a multiplayer server.
[server]
[server.difficulty]
#Set to false to disable Gem Armor offensive abilities (helmet zap and chestplate explosion)
offensiveAbilities = false
#Amount of damage Katar 'C' key deals
#Range: 0.0 ~ 2.147483647E9
katarDeathAura = 1000.0
#Adjusting this ratio changes how much EMC is received when burning a item. For example setting this to 0.5 will return half of the EMC cost.
#Range: 0.1 ~ 1.0
covalenceLoss = 1.0
#How rounding occurs when Covalence Loss results in a burn value less than 1 EMC. If true the value will be rounded up to 1. If false the value will be rounded down to 0.
covalenceLossRounding = true
[server.items]
#Instead of vein mining the ore you right click with your Dark/Red Matter Pick/Star it vein mines all ores in an AOE around you like it did in ProjectE before version 1.4.4.
pickaxeAoeVeinMining = false
#Allows the Harvest Goddess Band to passively grow tall grass, flowers, etc, on top of grass blocks.
harvBandGrass = false
#If set to true, disables all radius-based mining functionality (right click of tools)
disableAllRadiusMining = false
#Enable Watch of Flowing Time
enableTimeWatch = true
#Allow the Evertide amulet to place water in dimensions that water evaporates. For example: The Nether.
opEvertide = false
[server.effects]
#Bonus ticks given by the Watch of Flowing Time while in the pedestal. 0 = effectively no bonus.
#Range: 0 ~ 256
timePedBonus = 18
#Factor the Watch of Flowing Time slows down mobs by while in the pedestal. Set to 1.0 for no slowdown.
#Range: 0.0 ~ 1.0
timePedMobSlowness = 0.1
#If true the Interdiction Torch only affects hostile mobs and projectiles. If false it affects all non blacklisted living entities.
interdictionMode = true
[server.misc]
#False requires your hand be empty for Gem Armor Offensive Abilities to be readied or triggered
unsafeKeyBinds = false
#Shows the EMC value of blocks when looking at them in Hwyla or TOP
hwylaTOPDisplay = false
[server.cooldown]
#Cooldown (in ticks) for various features in ProjectE. A cooldown of -1 will disable the functionality.
#A cooldown of 0 will allow the actions to happen every tick. Use caution as a very low value on features that run automatically could cause TPS issues.
[server.cooldown.cooldown]
#Cooldown for various items within the pedestal.
[server.cooldown.cooldown.pedestal]
#Delay between Archangel Smite shooting arrows while in the pedestal.
#Range: > -1
archangel = 40
#Delay between Body Stone healing 0.5 shanks while in the pedestal.
#Range: > -1
body = 10
#Delay between Evertide Amulet trying to start rain while in the pedestal.
#Range: > -1
evertide = 20
#Delay between Harvest Goddess trying to grow and harvest while in the pedestal.
#Range: > -1
harvest = 10
#Delay between Ignition Ring trying to light entities on fire while in the pedestal.
#Range: > -1
ignition = 40
#Delay between Life Stone healing both food and hunger by 0.5 shank/heart while in the pedestal.
#Range: > -1
life = 5
#Delay between Talisman of Repair trying to repair player items while in the pedestal.
#Range: > -1
repair = 20
#Delay between SWRG trying to smite mobs while in the pedestal.
#Range: > -1
swrg = 70
#Delay between Soul Stone healing 0.5 hearts while in the pedestal.
#Range: > -1
soul = 10
#Delay between Volcanite Amulet trying to stop rain while in the pedestal.
#Range: > -1
volcanite = 20
#Delay between Zero Ring trying to extinguish entities and freezing ground while in the pedestal.
#Range: > -1
zero = 40
#Cooldown for various items in regards to a player.
[server.cooldown.cooldown.player]
#A cooldown for firing projectiles
#Range: > -1
projectile = 0
#A cooldown for Gem Chestplate explosion
#Range: > -1
gemChest = 0
#Delay between Talisman of Repair trying to repair player items while in a player's inventory.
#Range: > -1
repair = 20
#Delay between heal attempts while in a player's inventory. (Soul Stone, Life Stone, Gem Helmet)
#Range: > -1
heal = 20
#Delay between feed attempts while in a player's inventory. (Body Stone, Life Stone, Gem Helmet)
#Range: > -1
feed = 20

View File

@@ -0,0 +1,5 @@
["reaction chamber"]
#Enable/disable reaction chamber's item rendering. Saves on performance if there are a considerable amount of them running at the same time.
enableEffects = true

View File

@@ -0,0 +1,73 @@
["quantum computer"]
#Define the maximum dimensions of the Quantum Computer Multiblock.
#Range: 5 ~ 12
quantumComputerMaxSize = 7
#Define the amount of Threads per Quantum Computer Accelerator.
#Range: 4 ~ 16
quantumComputerAcceleratorThreads = 8
#Define the maximum amount of multi threaders per Quantum Computer Multiblock.
#Range: 1 ~ 2
quantumComputerMaxMultiThreaders = 1
#Define the maximum amount of Data Entanglers per Quantum Computer Multiblock.
#Range: 1 ~ 2
quantumComputermaxDataEntanglers = 1
#Define the multiplication factor of the multi threaders.
#Range: 2 ~ 8
quantumComputerMultiThreaderMultiplication = 4
#Define the multiplication factor of the data entanglers.
#Range: 2 ~ 8
quantumComputerDataEntanglerMultiplication = 4
["quantum armor"]
#Define the maximum walk speed increase. Values are divided by 10 before use.
#Range: 10 ~ 100
quantumArmorMaxWalkSpeed = 60
#Define the maximum sprint speed increase. Values are divided by 10 before use.
#Range: 10 ~ 150
quantumArmorMaxSprintSpeed = 80
#Define the maximum increase in step height.
#Range: 1 ~ 5
quantumArmorMaxStepHeight = 3
#Define the maximum increase in jump height.
#Range: 1 ~ 5
quantumArmorMaxJumpHeight = 3
#Define the maximum swim speed increase. Values are divided by 10 before use.
#Range: 10 ~ 150
quantumArmorSwimSpeedBoost = 80
#Define the HP increased of the HP Buffer card.
#Range: 5 ~ 50
quantumArmorHpBuffer = 20
#Define the maximum speed boost of the Flight Card.
#Range: 1 ~ 15
quantumArmorMaxFlightSpeed = 10
#Define the evasion % chance of the evasion card.
#Range: 0 ~ 100
quantumArmorEvasionChance = 30
#Define the max range of the magnet card.
#Range: 5 ~ 15
quantumArmorMagnetRange = 12
#Define the Attack Damage boost of the Strength Card.
#Range: 5 ~ 50
quantumArmorStrengthBoost = 10
#Define the Attack Speed Damage boost of the Attack Speed Card.
#Range: 1 ~ 10
quantumArmorAttackSpeedBoost = 5
#Define the luck boost of the Luck Card.
#Range: 1 ~ 5
quantumArmorLuckBoost = 2
#Define the max additional reach of the Reach Card.
#Range: 1 ~ 8
quantumArmorMaxReachBoost = 5
#Define the amount of hearts regenerated per tick with the Regeneration Card. Value will be divided by 10 before use.
#Range: 1 ~ 20
quantumArmorRenegerationPerTick = 10
#Define the maximum percentage of incoming damage absorbed by the Quantum Armor. This value is still limited by the energy buffer in the equipment.
#Range: 5 ~ 100
quantumArmorPercentageDamageAbsorption = 30
[Miscellaneous]
#Define the size of the cache for the Throughput Monitor. Only affects "Per minute" and "Per 10 minutes" configurations. Higher values will increase precison, but will make the monitor react slower to changes.
#Range: 40 ~ 400
throughputMonitorCacheSize = 80

55
config/ae2/client.json Normal file
View File

@@ -0,0 +1,55 @@
{
"client": {
"disableColoredCableRecipesInJEI": true,
"enableFacadesInJEI_comment": "Show facades in JEI ingredient list",
"enableFacadesInJEI": true,
"enableFacadeRecipesInJEI_comment": "Show facade recipes in JEI for supported blocks",
"enableFacadeRecipesInJEI": true,
"exposeInventoryToEmi_comment": "Expose the full network inventory to EMI, which might cause performance problems.",
"exposeInventoryToEmi": false,
"enableEffects": true,
"useTerminalUseLargeFont": false,
"useColoredCraftingStatus": true,
"PowerUnit_comment": "Power unit shown in AE UIs",
"PowerUnit": "ae",
"showDebugGuiOverlays_comment": "Show debugging GUI overlays",
"showDebugGuiOverlays": false,
"showPlacementPreview_comment": "Show a preview of part and facade placement",
"showPlacementPreview": true,
"notifyForFinishedCraftingJobs_comment": "Show toast when long-running crafting jobs finish.",
"notifyForFinishedCraftingJobs": true,
"clearGridOnClose_comment": "Automatically clear the crafting/encoding grid when closing the terminal",
"clearGridOnClose": false,
"terminalMargin_comment": "The vertical margin to apply when sizing terminals. Used to make room for centered item mod search bars",
"terminalMargin": 25
},
"terminals": {
"terminalStyle": "full",
"pinAutoCraftedItems_comment": "Pin items that the player auto-crafts to the top of the terminal",
"pinAutoCraftedItems": true
},
"search": {
"searchModNameInTooltips_comment": "Should the mod name be included when searching in tooltips.",
"searchModNameInTooltips": false,
"useExternalSearch_comment": "Replaces AEs own search with the search of REI or JEI",
"useExternalSearch": false,
"clearExternalSearchOnOpen_comment": "When using useExternalSearch, clears the search when the terminal opens",
"clearExternalSearchOnOpen": true,
"syncWithExternalSearch_comment": "When REI/JEI is installed, automatically set the AE or REI/JEI search text when either is changed while the terminal is open",
"syncWithExternalSearch": true,
"rememberLastSearch_comment": "Remembers the last search term and restores it when the terminal opens",
"rememberLastSearch": true,
"autoFocusSearch_comment": "Automatically focuses the search field when the terminal opens",
"autoFocusSearch": false
},
"tooltips": {
"showCellUpgrades_comment": "Show installed upgrades in the tooltips of storage cells, color applicators and matter cannons",
"showCellUpgrades": true,
"showCellContent_comment": "Show a preview of the content in the tooltips of storage cells, color applicators and matter cannons",
"showCellContent": true,
"maxCellContentShown_comment": "The maximum number of content entries to show in the tooltip of storage cells, color applicators and matter cannons",
"maxCellContentShown": 5,
"enableGuideHotkey_comment": "Enables the \u0027hold key to show guide\u0027 functionality in tooltips",
"enableGuideHotkey": true
}
}

123
config/ae2/common.json Normal file
View File

@@ -0,0 +1,123 @@
{
"general": {
"unsupportedDeveloperTools": false,
"matterCannonBlockDamage_comment": "Enables the ability of the Matter Cannon to break blocks.",
"matterCannonBlockDamage": true,
"tinyTntBlockDamage_comment": "Enables the ability of Tiny TNT to break blocks.",
"tinyTntBlockDamage": true,
"channels_comment": "Changes the channel capacity that cables provide in AE2.",
"channels": "default",
"spatialAnchorEnableRandomTicks_comment": "Whether Spatial Anchors should force random chunk ticks and entity spawning.",
"spatialAnchorEnableRandomTicks": true
},
"automation": {
"formationPlaneEntityLimit": 128
},
"facades": {
"allowBlockEntities_comment": "Unsupported: Allows whitelisting block entities as facades. Could work, have render issues, or corrupt your world. USE AT YOUR OWN RISK.",
"allowBlockEntities": false
},
"craftingCPU": {
"craftingCalculationTimePerTick": 5,
"craftingSimulatedExtraction_comment": "When true: simulate extraction of all the network\u0027s contents when starting a crafting job calculation. When false: use the cached available content list (same as terminals). Enabling might work a bit better, but it will significantly reduce performance.",
"craftingSimulatedExtraction": false
},
"crafting": {
"disassemblyCrafting_comment": "Enable shift-clicking with the crafting units in hand to disassemble them.",
"disassemblyCrafting": true,
"growthAccelerator_comment": "Number of ticks between two crystal growth accelerator ticks",
"growthAccelerator": 10
},
"spatialio": {
"spatialPowerMultiplier": 1250.0,
"spatialPowerExponent": 1.35
},
"logging": {
"blockUpdateLog": false,
"packetLog": false,
"craftingLog": false,
"debugLog": false,
"gridLog": false,
"chunkLoggerTrace_comment": "Enable stack trace logging for the chunk loading debug command",
"chunkLoggerTrace": false
},
"battery": {
"chargerChargeRate_comment": "The chargers charging rate factor, which is applied to the charged items charge rate. 2 means it charges everything twice as fast. 0.5 half as fast.",
"chargerChargeRate": 1.0,
"wirelessTerminal": 1600000,
"chargedStaff": 8000,
"entropyManipulator": 200000,
"portableCell": 20000,
"colorApplicator": 20000,
"matterCannon": 200000
},
"worldGen": {
"spawnPressesInMeteorites": true,
"spawnFlawlessOnly": false
},
"wireless": {
"wirelessBaseCost": 8.0,
"wirelessCostMultiplier": 1.0,
"wirelessBaseRange": 16.0,
"wirelessBoosterRangeMultiplier": 1.0,
"wirelessBoosterExp": 1.5,
"wirelessHighWirelessCount": 64.0,
"wirelessTerminalDrainMultiplier": 1.0
},
"PortableCells": {
"allowDisassembly_comment": "Allow disassembly of portable cells into the recipe ingredients using shift+right-click",
"allowDisassembly": true
},
"PowerRatios": {
"ForgeEnergy": 0.5,
"UsageMultiplier": 1.0,
"GridEnergyStoragePerNode_comment": "How much energy can the internal grid buffer storage per node attached to the grid.",
"GridEnergyStoragePerNode": 25.0,
"CrystalResonanceGeneratorRate_comment": "How much energy a crystal resonance generator generates per tick.",
"CrystalResonanceGeneratorRate": 20.0,
"p2pTunnelEnergyTax_comment": "The cost to transport energy through an energy P2P tunnel expressed as a factor of the transported energy.",
"p2pTunnelEnergyTax": 0.025,
"p2pTunnelTransportTax_comment": "The cost to transport items/fluids/etc. through P2P tunnels, expressed in AE energy per equivalent I/O bus operation for the transported object type (i.e. items\u003dper 1 item, fluids\u003dper 125mb).",
"p2pTunnelTransportTax": 0.025
},
"Condenser": {
"MatterBalls": 256,
"Singularity": 256000
},
"tickRates": {
"_comment": " Min / Max Tickrates for dynamic ticking, most of these components also use sleeping, to prevent constant ticking, adjust with care, non standard rates are not supported or tested.",
"InterfaceMin": 5,
"InterfaceMax": 120,
"ImportBusMin": 5,
"ImportBusMax": 40,
"ExportBusMin": 5,
"ExportBusMax": 60,
"AnnihilationPlaneMin": 2,
"AnnihilationPlaneMax": 120,
"METunnelMin": 5,
"METunnelMax": 20,
"InscriberMin": 1,
"InscriberMax": 20,
"ChargerMin": 10,
"ChargerMax": 10,
"IOPortMin": 1,
"IOPortMax": 5,
"VibrationChamberMin": 10,
"VibrationChamberMax": 40,
"StorageBusMin": 5,
"StorageBusMax": 60,
"ItemTunnelMin": 5,
"ItemTunnelMax": 60,
"LightTunnelMin": 5,
"LightTunnelMax": 60
},
"vibrationChamber": {
"_comment": "Settings for the Vibration Chamber",
"baseEnergyPerFuelTick_comment": "AE energy produced per fuel burn tick (reminder: coal \u003d 1600, block of coal \u003d 16000, lava bucket \u003d 20000 burn ticks)",
"baseEnergyPerFuelTick": 5.0,
"minEnergyPerGameTick_comment": "Minimum amount of AE/t the vibration chamber can slow down to when energy is being wasted.",
"minEnergyPerGameTick": 4,
"baseMaxEnergyPerGameTick_comment": "Maximum amount of AE/t the vibration chamber can speed up to when generated energy is being fully consumed.",
"baseMaxEnergyPerGameTick": 40
}
}

132
config/agricraft.jsonc Normal file
View File

@@ -0,0 +1,132 @@
{
"core": {
// Set to false to prevent AgriCraft from enabling its mod compatibility datapacks / resourcepacks by default
"register_packs_by_default": false,
// Set to false to disable planting of (agricraft) seeds outside crop sticks
"plant_off_crop_sticks": true,
// Set to false to disable collision boxes on crop sticks
"crop_sticks_collide": false,
// Set to true to allow only fertile plants to be able to cause, participate in, or contribute to a spreading / mutation action (note that this may cause issues with obtaining some specific plants)
"only_fertile_crops_spread": false,
// Set to false if to disable triggering of mutations by using fertilizers on a cross crop.
"allow_fertilizer_mutation": true,
// Set to true to allow mutations on clone events (spreading from single crop).
"clone_mutations": false,
// Set to true to override vanilla farming, meaning vanilla seeds will be converted to agricraft seeds on planting.
"override_vanilla_farming": true,
// Set to true to convert seeds only in the analyzer. Has no effect if "Override vanilla farming" is set to false.
"converts_seed_only_in_analyzer": false,
/*
* Global growth rate multiplier for crops.
* Range: 0.0 - 3.0
*/
"growth_multiplier": 1.0,
// Set this to true to make only mature crops drop seeds (to encourage trowel usage).
"only_mature_seed_drops": false,
// Set to true to completely disable the spawning of weeds
"disable_weeds": true,
// Set to false to disable mature weeds killing plants
"mature_weeds_kill_plants": false,
// Set to false to disable the spreading of weeds
"weeds_spreading": false,
// Set this to true to have weeds destroy the crop sticks when they are broken with weeds (to encourage rake usage).
"weeds_destroy_crop_sticks": false,
// Set to false if you wish to disable drops from raking weeds.
"raking_drops_items": false,
/*
* Defines the seed compost value, if set to zero, seeds will not be compostable
* Range: 0.0 - 1.0
*/
"seed_compost_value": 0.3,
/*
* The amount of seeds one seed bag can hold.
* Range: 8 - 256
*/
"seed_bag_capactity": 64,
/*
* Enchantment cost in player levels to enchant the seed bag.
* Range: 0 - 30
*/
"seed_bag_enchant_cost": 10
},
"stats": {
/*
* Minimum allowed value of the Gain stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"gain_min": 1,
/*
* Maximum allowed value of the Gain stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"gain_max": 10,
// Set to true to hide the Gain stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"gain_hidden": false,
/*
* Minimum allowed value of the Growth stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"growth_min": 1,
/*
* Maximum allowed value of the Growth stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"growth_max": 10,
// Set to true to hide the Growth stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"growth_hidden": false,
/*
* Minimum allowed value of the Strength stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"strength_min": 1,
/*
* Maximum allowed value of the Strength stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"strength_max": 10,
// Set to true to hide the Strength stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"strength_hidden": false,
/*
* Minimum allowed value of the Resistance stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"resistance_min": 10,
/*
* Maximum allowed value of the Resistance stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"resistance_max": 10,
// Set to true to hide the Resistance stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"resistance_hidden": true,
/*
* Minimum allowed value of the Fertility stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"fertility_min": 1,
/*
* Maximum allowed value of the Fertility stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"fertility_max": 10,
// Set to true to hide the Fertility stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"fertility_hidden": false,
/*
* Minimum allowed value of the Mutativity stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"mutativity_min": 1,
/*
* Maximum allowed value of the Mutativity stat (setting min and max equal will freeze the stat to that value in crop breeding)
* Range: 1 - 10
*/
"mutativity_max": 10,
// Set to true to hide the Mutativity stat (hidden stats will not show up in tooltips or seed analysis). Setting min and max equal and hiding a stat effectively disables it, with its behaviour at the defined value for min and max.
"mutativity_hidden": false
},
"compat": {
// Set to false to disable compatibility with Botania (in case things break)
"botania": true,
// Set to false to disable compatibility with Mystical Agriculture (in case things break)
"mysticalagriculture": true
}
}

View File

@@ -0,0 +1,7 @@
"Allow all items to be added" = false
"Whitelisted Items" = ["roots:runedtablet", "opencomputers:tool:4", "immersiveengineering:tool:3", "integrateddynamics:on_the_dynamics_of_integration", "theoneprobe:probenote", "evilcraft:origins_of_darkness", "draconicevolution:info_tablet", "charset:tablet", "antiqueatlas:antique_atlas", "theurgy:grimiore", "tconstruct:materials_and_you", "tconstruct:puny_smelting", "tconstruct:mighty_smelting", "tconstruct:tinkers_gadgetry", "tconstruct:fantastic_foundry", "tetra:holo", "occultism:dictionary_of_spirits"]
"Whitelisted Names" = ["book", "tome", "lexicon", "nomicon", "manual", "knowledge", "pedia", "compendium", "guide", "codex", "dictionary", "journal"]
"Blacklisted Mods" = []
"Mod Aliases" = ["nautralpledge=botania", "thermalexpansion=thermalfoundation", "thermaldynamics=thermalfoundation", "thermalcultivation=thermalfoundation", "redstonearsenal=thermalfoundation", "rftoolsdim=rftools", "rftoolspower=rftools", "rftoolscontrol=rftools", "ae2stuff=appliedenergistics2", "animus=bloodmagic", "integrateddynamics=integratedtunnels", "mekanismgenerators=mekanism", "mekanismtools=mekanism", "deepresonance=rftools", "xnet=rftools", "buildcrafttransport=buildcraft", "buildcraftfactory=buildcraft", "buildcraftsilicon=buildcraft"]
"Hide Book Render" = false

View File

@@ -0,0 +1,24 @@
[client]
#If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding
showFoodValuesHudOverlay = true
#If true, shows your food exhaustion as a progress bar behind the hunger bars
showFoodExhaustionHudUnderlay = true
#Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent)
#Range: 0.0 ~ 1.0
maxHudOverlayFlashAlpha = 0.65
#If true, health/hunger overlay will shake to match Minecraft's icon animations
showVanillaAnimationsOverlay = true
#If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay
showFoodStatsInDebugOverlay = true
#If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT
showFoodValuesInTooltip = true
#If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT)
showFoodValuesInTooltipAlways = true
#If true, shows estimated health restored by food on the health bar
showFoodHealthHudOverlay = true
#If true, shows your current saturation level overlayed on the hunger bar
showSaturationHudOverlay = true
#If true, enables the hunger/saturation/health overlays for food in your off-hand
showFoodValuesHudOverlayWhenOffhand = true

View File

@@ -0,0 +1,23 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Damage threshold, in half-hearts
#Range: > 1
threshold = 6
#Damage threshold step, in half-hearts
#Range: > 1
step = 2

View File

@@ -0,0 +1,23 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Default fall distance to trigger from, in blocks
#Range: > 1
distance = 5
#Distance change step, in blocks
#Range: > 1
step = 1

View File

@@ -0,0 +1,23 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Interval, in seconds
#Range: > 1
interval = 10
#Interval change step, in seconds
#Range: > 1
step = 1

View File

@@ -0,0 +1,23 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Default distance fall to trigger from, in blocks
#Range: > 0
distance = 0
#Distance increase, in blocks
#Range: > 1
step = 1

View File

@@ -0,0 +1,10 @@
#Base speed of the wheel
#Range: > 0
wheelBaseSpeed = 16
#Speed of the wheel with a gold block in front
#Range: > 0
wheelMaxSpeed = 24
#Stress capacity of the wheel
#Range: 0.0 ~ 1.7976931348623157E308
wheelStressCapacity = 16.0

View File

@@ -0,0 +1,7 @@
["Visual Configs"]
#Enables the rendering of the spell focus while equipped
"Enable SpellFocusRender" = true
#Enables the black texture of the spell book while upgraded
"Enable BlackBookTexture" = true

View File

@@ -0,0 +1,90 @@
#Adjust this value to define how much the matching spell cost gets discounted by the greater focus
#Range: 0.0 ~ 0.99
"Elemental Focus discount" = 0.25
#Adjust these values to balance how much a spell gets amplified by the matching spell focus, doubled for major foci.
["Elemental Spell Foci - Amplify"]
"Fire Focus buff" = 1.0
"Water Focus buff" = 1.0
"Air Focus buff" = 1.0
"Earth Focus buff" = 1.0
#Adjust these values to balance how much an elemental spell gets dampened by a not-matching lesser spell focus
["Elemental Spell Foci - Dampening"]
"Fire Focus debuff" = -1.0
"Water Focus debuff" = -1.0
"Air Focus debuff" = -1.0
"Earth Focus debuff" = -1.0
#Enable or disable the passive bonus of the foci
["Elemental Spell Foci - Abilities"]
"Enable glyph empowering" = true
"Enable regen bonus under special conditions" = true
"Enable iframe skip combos" = true
#Adjust Elemental Armor Mana Buffs
["Elemental Armors"]
#Max mana bonus for each elemental armor piece
#Range: 0 ~ 10000
armorMaxMana = 100
#Mana regen bonus for each elemental armor piece
#Range: 0 ~ 100
armorManaRegen = 4
["Mermaid Fishing"]
#How much source mermaids consume per generation
#Range: 0 ~ 10000
mermaidManaCost = 1000
#How many channels must occur before a siren produces loot.
#Range: 0 ~ 300
mermaidMaxProgress = 30
#Max number of extra item rolls a shrine produces if the mood is high.
#Range: 0 ~ 10
mermaidScoreBonus = 2
#Chance multiplier to produce a treasure relative to the siren shrine score.
#Range: 0.0 ~ 1.0
mermaidTreasureBonus = 0.002
#Base number of items rolls a shrine produces per cycle.
#Range: 0 ~ 300
mermaidBaseItems = 1
#Max number of items a siren shrine can produce per cycle.
#Range: 0 ~ 300
mermaidQuantityCap = 5
["Source cost"]
#How much source does the water urn consume.
#Range: 0 ~ 10000
waterUrnCost = 100
#How much source does the slipstream elevator consume.
#Range: 0 ~ 1000
airElevatorCost = 10
#How much source does the bubble elevator consume.
#Range: 0 ~ 1000
waterElevatorCost = 0
#How much source does the magmatic elevator consume.
#Range: 0 ~ 1000
lavaElevatorCost = 0
[Misc]
#If enabled, flarecannons will simply die and drop the charm, instead of deactivating, if killed by their owner
flarecannon_owner_kill = true
#Set over 0 to enable archwood forests with specific trees
#Range: 0 ~ 100
extra_biomes = 0
#Set to false to disable the lightning crashing often on flashing archwood biome(s).
always_thunder = true
#If enabled, homing will be able to target mobs only if they're glowing
homing_nerf = false
#Define the refresh rate of the Squirrel Ritual buff, in ticks.
#Range: > 1
squirrelRefreshRate = 600
#If enabled, soulbound enchantment can appear in randomly enchanted loot chests.
soulbound_loot = true
#Define the maximum number of pierce that a lens can apply to a spell.
#Range: > 1
pierceLensLimit = 10
[Mobs-Disabled]
#If true, the wandering mages will target players too, unless they wear the focus of the same school.
magesAggro = true

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 10
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Max lifespan of the projectile, in seconds.
#Range: > 0
max_lifespan = 60

View File

@@ -0,0 +1,35 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 400
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 30
#Extend time duration, in seconds
#Range: > 0
extend_time = 8
#Set how much mana is depleted every time a damage is mitigated by the Mana Bubble.
#Range: > 0
absorption_cost = 350

View File

@@ -0,0 +1,35 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 30
#Extend time duration, in seconds
#Range: > 0
extend_time = 8
#Set the max hp limit for Charm, mobs with more max hp will be immune.
#Range: > 0
charm_hp_limit = 150

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 20
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,36 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 40
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 7.0
#Range: 0.0 ~ 2.147483647E9
amplify = 3.0
#Potion duration, in seconds
#Range: > 0
potion_time = 15
#Extend time duration, in ticks
#Range: > 0
extend_time = 100

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 20
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 5
#Extend time duration, in ticks
#Range: > 0
extend_time = 100

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 75
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_pierce=1"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Max lifespan of the projectile, in seconds.
#Range: > 0
max_lifespan = 30

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 30
#Extend time duration, in seconds
#Range: > 0
extend_time = 8

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,31 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=3"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Base heal amount
#Range: 0.0 ~ 1.7976931348623157E308
base_heal = 3.0
#Range: 0.0 ~ 2.147483647E9
amplify = 3.0

View File

@@ -0,0 +1,36 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 6.0
#Range: 0.0 ~ 2.147483647E9
amplify = 2.5
#Potion duration, in seconds
#Range: > 0
potion_time = 10
#Extend time duration, in ticks
#Range: > 0
extend_time = 60

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 200
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 400
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,36 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 15
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 3.0
#Range: 0.0 ~ 2.147483647E9
amplify = 1.5
#Potion duration, in seconds
#Range: > 0
potion_time = 15
#Extend time duration, in ticks
#Range: > 0
extend_time = 100

View File

@@ -0,0 +1,30 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 8.0
#Range: 0.0 ~ 2.147483647E9
amplify = 2.5

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,36 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 25
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 30
#Extend time duration, in seconds
#Range: > 0
extend_time = 8
#Range: 0.0 ~ 2.147483647E9
damage = 5.0
#Range: 0.0 ~ 2.147483647E9
amplify = 2.0

View File

@@ -0,0 +1,54 @@
#Lighting
[lights]
#Show the supporter message. This is set to false after the first time.
showSupporterMessage = true
#If dynamic lights are enabled
lightsEnabled = true
#How bright the touch light is
#Range: 0 ~ 15
touchLightLuminance = 8
#How long the touch light lasts in ticks
#Range: 0 ~ 40
touchLightDuration = 8
#Light level an entity should emit when dynamic lights are on
#Example entry: minecraft:blaze=15
entity_lights = ["minecraft:blaze=10", "ars_nouveau:orbit=15", "ars_nouveau:linger=15", "ars_nouveau:spell_proj=15", "minecraft:magma_cube=8", "ars_nouveau:flying_item=10", "minecraft:spectral_arrow=8", "ars_nouveau:follow_proj=10"]
#Light level an item should emit when held when dynamic lights are on
#Example entry: minecraft:stick=15
item_lights = ["minecraft:redstone_torch=10", "minecraft:soul_lantern=12", "minecraft:glow_ink_sac=10", "minecraft:verdant_froglight=15", "minecraft:blaze_rod=10", "minecraft:shroomlight=10", "minecraft:lantern=14", "minecraft:soul_torch=10", "minecraft:glow_berries=8", "minecraft:glowstone_dust=8", "minecraft:pearlescent_froglight=15", "minecraft:nether_star=14", "minecraft:glowstone=15", "minecraft:torch=14", "minecraft:ochre_froglight=15", "minecraft:lava_bucket=15"]
#Overlay
[overlays]
#X offset for the tooltip
#Range: > -2147483648
xTooltip = 20
#Y offset for the tooltip
#Range: > -2147483648
yTooltip = 0
#X offset for the Mana Bar
#Range: > -2147483648
xManaBar = 0
#Y offset for the Mana Bar
#Range: > -2147483648
yManaBar = 0
#If the Storage Lectern should show the recipe book icon
showRecipeBook = true
#Inform the player of Dynamic lights once.
informLights = false
#Whether the Selection HUD is toggled or held
toggleSelectionHUD = true
#Misc
[misc]
#Use simplified renderer for Warp Portals
no_end_portal_render = false
#Disables the skyweave renderer. Disable if your sky is broken with shaders.
disable_skyweave = false
#Show spell tooltips with glyphs instead of plain text
glyphTooltips = true
#Enables transparent/opaque rendering of elements in the book GUI. Disable if it leads to crash with Sodium derivatives
gui_transparency = true
#Disables translucent particles. Disable if your particles are invisible with shaders.
opaque_particles = false

View File

@@ -0,0 +1,74 @@
#General settings
[general]
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
dimensionBlacklist = []
#Spawn a book in the players inventory on login
spawnBook = true
#How much mana whirlisprigs consume per generation
#Range: 0 ~ 10000
sylphManaCost = 250
#How much progress whirlisprigs must accumulate before creating resources
#Range: 0 ~ 10000
whirlisprigProgress = 250
#Should the Wilden Hunter attack animals?
hunterHuntsAnimals = false
#Should the Wilden Stalker attack animals?
stalkerHuntsAnimals = false
#Should the Wilden Defender attack animals?
defenderHuntsAnimals = false
#Should the Wilden Chimera dive bomb destroy blocks?
destructiveDiveBomb = true
#Archwood forest spawn weight
#Range: > 0
archwoodForest = 2
#How many inventories can lectern support per bookwyrm
#Range: > 1
bookwyrmLimit = 8
[drygmy_production]
#How much source drygmys consume per generation
#Range: 0 ~ 10000
drygmyManaCost = 1000
#How many channels must occur before a drygmy produces loot
#Range: 0 ~ 300
drygmyMaxProgress = 20
#Bonus number of items a drygmy produces per unique mob
#Range: 0 ~ 300
drygmyUniqueBonus = 2
#Base number of items a drygmy produces per cycle before bonuses.
#Range: > -2147483648
drygmyBaseItems = 1
#Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item.
#Range: 0 ~ 300
drygmyQuantityCap = 5
#Items
[item]
#Spawn Caster Tomes in Dungeon Loot?
spawnTomes = true
#How much mana the Ring of Jumping consumes per jump
#Range: 0 ~ 10000
jumpRingCost = 30
#Blocks
[block]
#How much potion a melder takes from each input jar. 100 = 1 potion
#Range: > 100
melderInputCost = 200
#How much potion a melder outputs per cycle. 100 = 1 potion
#Range: > 100
melderOutput = 100
#How much source a melder takes per cycle
#Range: > 0
melderSourceCost = 300
#The max potion level the enchanted flask can grant. This isnt needed unless you have an infinite potion leveling exploit.
#Range: > 2
enchantedFlaskCap = 255
#Debug
[debug]
#Max number of log events to keep on entities. Lowering this number may make it difficult to debug why your entities are stuck.
#Range: > 0
maxLogEvents = 100

View File

@@ -0,0 +1,57 @@
#Mana
[mana]
#Base mana regen in seconds
#Range: > 0
baseRegen = 5
#Base max mana
#Range: > 0
baseMax = 100
#How often max and regen will be calculated, in ticks. NOTE: Having the base mana regen AT LEAST this value is recommended.
#Range: 1 ~ 20
updateInterval = 5
#Max mana bonus per glyph
#Range: > 0
glyphmax = 15
#Max mana bonus for tier of book
#Range: > 0
tierMax = 50
#Mana regen bonus for tier of book
#Range: > 0
tierRegen = 1
#Mana Boost value per level
#Range: > 0
manaBoost = 25
#(enchantment) Mana regen per second per level
#Range: > 0
manaRegenEnchantment = 2
#Regen bonus per glyph
#Range: 0.0 ~ 2.147483647E9
glyphRegen = 0.33
#Regen bonus per potion level
#Range: > 0
potionRegen = 10
[spell_casting]
#Enforce augment cap on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
enforceCapOnCast = true
#Enforce glyph per spell limit on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
enforceGlyphLimitOnCast = true
[item]
#Cost per glyph in a codex
#Range: > 0
codexCost = 10
[warp_portals]
#Enable warp portals?
enableWarpPortals = true
#Beta Features
[beta]
#Allow crafting infinite spells. This is a beta feature and may cause crashes.
infiniteSpells = false
#Limits the crafting infinite spells beta, set a cap to the number of additional glyphs. This is a beta feature and may cause crashes.
#Range: 10 ~ 1000
infiniteSpellLimit = 30

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 500
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: 1 ~ 1
per_spell_limit = 1
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = ["ars_nouveau:glyph_wall", "ars_nouveau:glyph_linger"]

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 10
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 20
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 200
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Base duration in seconds
#Range: > 0
duration = 60
#Extend time duration, in seconds
#Range: > 0
extend_time = 60

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 35
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,31 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Base teleport distance
#Range: > 0
distance = 8
#Range: 0.0 ~ 2.147483647E9
amplify = 3.0

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 30
#Extend time duration, in seconds
#Range: > 0
extend_time = 8

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 10
#Is Starter Glyph?
starter = true
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_fortune=4"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,36 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2", "ars_nouveau:glyph_aoe=1"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 6.0
#Range: 0.0 ~ 2.147483647E9
amplify = 2.5
#Potion duration, in seconds
#Range: > 0
potion_time = 5
#Extend time duration, in seconds
#Range: > 0
extend_time = 1

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 80
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 20
#Extend time duration, in seconds
#Range: > 0
extend_time = 10

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,30 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 3.0
#Range: 0.0 ~ 2.147483647E9
amplify = 1.0

View File

@@ -0,0 +1,30 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 1.0
#Range: 0.0 ~ 2.147483647E9
amplify = 1.0

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 5
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 0
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Randomize chance, in percentage (0-1 = 0% - 100%)
#Range: 0.0 ~ 2.147483647E9
extend_time = 0.25
#The base duration of the delay effect in ticks.
#Range: > 0
base_duration = 20

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 15
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,39 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 200
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
amplify = 0.5
#Explosion base intensity
#Range: 0.0 ~ 100.0
base = 0.75
#AOE intensity bonus
#Range: 0.0 ~ 100.0
aoe_bonus = 1.5
#Range: 0.0 ~ 2.147483647E9
damage = 6.0
#Additional damage per amplify
#Range: 0.0 ~ 2.147483647E9
amp_damage = 2.5

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 10
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 30
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,30 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 35
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 3
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 6.0
#Range: 0.0 ~ 2.147483647E9
amplify = 3.0

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 150
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = []
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Base amount of harvested blocks
#Range: > 0
base_harvest = 50
#Additional max blocks per AOE
#Range: > 0
aoe_bonus = 50

View File

@@ -0,0 +1,26 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 50
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []

View File

@@ -0,0 +1,33 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 40
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_amplify=2"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Range: 0.0 ~ 2.147483647E9
damage = 7.0
#Range: 0.0 ~ 2.147483647E9
amplify = 3.0
#Extend time duration, in seconds
#Range: > 0
extend_time = 1

View File

@@ -0,0 +1,17 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 80
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 2

View File

@@ -0,0 +1,32 @@
#General settings
[general]
#Is Enabled?
enabled = true
#Cost
#Range: > -2147483648
cost = 15
#Is Starter Glyph?
starter = false
#The maximum number of times this glyph may appear in a single spell
#Range: > 1
per_spell_limit = 2147483647
#The tier of the glyph
#Range: 1 ~ 99
glyph_tier = 1
#Limits the number of times a given augment may be applied to a given effect
#Example entry: "glyph_amplify=5"
augment_limits = ["ars_nouveau:glyph_sensitive=1"]
#How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config.
#Example entry: "glyph_amplify=50"
augment_cost_overrides = []
#Prevents the given glyph from being used in the same spell as the given glyph
#Example entry: "glyph_burst"
invalid_combos = []
#Potion duration, in seconds
#Range: > 0
potion_time = 10
#Extend time duration, in seconds
#Range: > 0
extend_time = 5

Some files were not shown because too many files have changed in this diff Show More