diff --git a/config/AdvancedBackups-client.properties b/config/AdvancedBackups-client.properties new file mode 100644 index 0000000..852c579 --- /dev/null +++ b/config/AdvancedBackups-client.properties @@ -0,0 +1,77 @@ +#Whether to show backup progress when a backup is being made. +#Options : true, false #Default : true +config.advancedbackups.showProgress=true + + + +#-------------------------------------------------------------------------------------------------------------------- +##The below options are all irrelevant to 1.7.10 - it lacks toasts, and cannot customise text in the way others do. +#-------------------------------------------------------------------------------------------------------------------- + + +#-------------------------------------------------------------------------------------------------------------------- +##The below options control the colour of the text showing backup progress. +#-------------------------------------------------------------------------------------------------------------------- + +#The RED value of the backup progress text. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.progress.red=82 + +#The GREEN value of the backup progress text. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.progress.green=255 + +#The BLUE value of the backup progress text. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.progress.blue=82 + +#-------------------------------------------------------------------------------------------------------------------- +##The below options control the colour of the text displayed in the event of a backup failure. +#-------------------------------------------------------------------------------------------------------------------- + +#The RED value of the backup error text. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.error.red=255 + +#The GREEN value of the backup error text. +#Range : 0-255 #Default: 50 +config.advancedbackups.colours.error.green=50 + +#The BLUE value of the backup error text. +#Range : 0-255 #Default: 50 +config.advancedbackups.colours.error.blue=50 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control non-text toast related options. +#-------------------------------------------------------------------------------------------------------------------- + +#Whether to use a dark version of the toast prompt. +#Options : true, false #Default : true +config.advancedbackups.darkToasts=true + + +#The RED value of the progess bar. +#Range : 0-255 #Default: 88 +config.advancedbackups.colours.bar.red=88 + +#The GREEN value of the progess bar. +#Range : 0-255 #Default: 242 +config.advancedbackups.colours.bar.green=242 + +#The BLUE value of the progess bar. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.bar.blue=82 + + +#The RED value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.red=255 + +#The GREEN value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.green=255 + +#The BLUE value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.blue=255 \ No newline at end of file diff --git a/config/AdvancedBackups.properties b/config/AdvancedBackups.properties new file mode 100644 index 0000000..62327cb --- /dev/null +++ b/config/AdvancedBackups.properties @@ -0,0 +1,164 @@ +#Enable or disable automatic backups. +#Options : true, false #Default : true +config.advancedbackups.enabled=true + +#Whether to save before making a backup. +#Options : true, false #Default : true +config.advancedbackups.save=true + +#Whether to disable autosave before making a backup, and whether to re-enable saving afterwards. +#Don't edit this unless you know what you're doing. Saving mid-backup can cause issues! +#Options : true, false #Default: true +config.advancedbackups.togglesave=true + +#Buffer size, in bytes, to use when reading / writing files. Higher will improve speeds, but increase memory usage. +#Too high can cause an OOM. I'd advise against editing this unless you experience issues. +#Range : 1-2147483647 #Default : 1048576 +config.advancedbackups.buffer=1048576 + +#Whether to flush when making the aforementioned save. Can cause a lag spike, and is usually not required. +#Unused prior to minecraft 1.16. +#Options : true, false #Default : false +config.advancedbackups.flush=false + +#Whether to require player activity between backups. +#Options : true, false #Default : true +config.advancedbackups.activity=true + +#The type of backups to use. +#Options : zip, differential, incremental #Default : differential +config.advancedbackups.type=differential + +#A list of files, relative paths within the world directory, to skip backing up. +#Comma separated, * is a wildcard, and backslashes are replaced with forward slashes. +#Default : session.lock,*.dat_old +config.advancedbackups.blacklist=session.lock,*_old + +#The absolute or relative path to the backup location. +#Options : any file path. Default : ./backups +config.advancedbackups.path=./backups + +#Minimum time between backups, in hours. This can prevent a shutdown backup from triggering immediately after a scheduled backup or similar situations. +#Set to 0 to disable. +#5 minutes = ~ 0.083 hours. +#Range : 0 - 500 #Default : 0.5 +config.advancedbackups.frequency.min=0.25 + +#Triggers a backup if none has already happened within this time. Can be combined with an uptime-based schedule. +#Range : 0.5 - 500 #Default : 24 +config.advancedbackups.frequency.max=24.0 + +#Whether the schedule below uses uptime (true) or real-world time (false). +#Default : true +config.advancedbackups.frequency.uptime=true + +#When using server uptime: + #A looping comma-separated backup schedule, based off of server uptime, hours:minutes. Examples: + #4:00 - Makes a backup every four hours. + #4:00,7:00 - Makes a backup after four hours, then three, then four, and so on. + #1:00 - Makes a backup every hour. + #4:00,8:00,12:00,16:00,17:00,18:00,19:00,20:00,21:00,24:00 - Makes a backup following a strict schedule. + +#When using real-world time: + #A strict schedule, using hours:minutes to follow real-world time. Examples: + #4:00 - Makes a backup at 4am each day. + #4:00,8:00,12:00,16:00,17:00,18:00,19:00,20:00,21:00,24:00 - Makes a backup at specific times of day. + #Note : use 24:00 instead of 0:00 to represent midnight. + +#Default : 1:00 +config.advancedbackups.frequency.schedule=1:00 + +#Whether to force a backup on server shutdown. Respects min frequency. +#Options : true, false #Default : false +config.advancedbackups.frequency.shutdown=false + +#Whether to force a backup on server startup. Respects min frequency. +#Options : true, false #Default : false +config.advancedbackups.frequency.startup=false + +#Delay to use after startup, in seconds. Is always at least 5 seconds. +#Range : 5-1000 #Default : 30 +config.advancedbackups.frequency.delay=30 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control logging of backup progress, including which clients to contact. +##Backup start and end are always logged to console. The rest is configurable. +#-------------------------------------------------------------------------------------------------------------------- + +#Which clients to send progress updates to. Behaviour before this was added was `ops` +#Options : ops, all, none #Default : ops +config.advancedbackups.logging.clients=ops + +#How often to send progress info to clients, measured in milliseconds. Old behaviour was `0`, not recommended for servers due to network load. +#Range : 0 - ~infinite #Default : 500 +config.advancedbackups.logging.clientfrequency=500 + +#Whether to log backup progress to console. Start / finish are always logged. Old behaviour was `false`. +#Options : true, false #Default : true +config.advancedbackups.logging.console=true + +#How often to send log progress info in the console, measured in milliseconds. +#Range : 0 - ~infinite #Default : 5000 +config.advancedbackups.logging.consolefrequency=5000 + + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control deletion of old backups, meeting a criteria. A backup only needs to meet ONE of the below criteria to be purged. +##The oldest backups are always purged first, or oldest differnetial partial if the oldest differential backup is being depended on. +#-------------------------------------------------------------------------------------------------------------------- +#The maximum size to keep, in GB. Keep relatively high for zips, tighter space requirements should instead use differential or incremental backups. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 50 +config.advancedbackups.purge.size=50.0 + +#The maximum days to keep backups for. Higher amounts will keep a longer "history" but take up more space in return. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 0 +config.advancedbackups.purge.days=0 + +#The maximum amount of backups to keep. Older backups will be purged if this is exceeded. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 0 +config.advancedbackups.purge.count=0 + +#Whether to delete incremental backup chains if max size is exceeded. If not, incremental backups do not respect the above options and never delete. +#This is because you can't delete part of an incremental backup chain without breaking the links. Differentials do not have this downside. +#Options : true, false #Default : true +config.advancedbackups.purge.incrementals=true + +#The minimum number of incremental chains to keep before purging any that meet the criteria. Only relevant if the above option is set to true. +#Range : 1 - 9999 #Default : 1 +config.advancedbackups.purge.incrementalchains=1 + + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options only affect zip files, whether that's for zip backups, export commands or some other option. +#-------------------------------------------------------------------------------------------------------------------- + +#The compression level to use for zip files. Higher numbers space usage, but decrease performance. +#Range : 1-9 #Default : 4 +config.advancedbackups.zips.compression=4 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options only affect differential and incremental backups. +#-------------------------------------------------------------------------------------------------------------------- + +#The maximum 'chain' length to keep. +#Range : 5-500 #Default : 50 +config.advancedbackups.chains.length=50 + +#Whether to compress 'chains'. This compresses the base backup and all sequential backups. Reduces space usage, but decreases performance. +#Options : true, false #Default : true +config.advancedbackups.chains.compress=true + +#Whether to enable "smart" reset for chains - if every file is being backed up, mark the backup as complete and reset chain length regardless of intended backup type. +#Options : true, false #Default : true +config.advancedbackups.chains.smart=true + +#What % of a full backup is allowed to be contained in a partial before forcing it into a full backup. Useful for reducing partial backup size. +#Range : 1-100 #Default : 50 +config.advancedbackups.chains.maxpercent=50.0 \ No newline at end of file diff --git a/config/CustomNpcs.cfg b/config/CustomNpcs.cfg new file mode 100644 index 0000000..5b9b99c --- /dev/null +++ b/config/CustomNpcs.cfg @@ -0,0 +1,81 @@ +#Whether scripting is enabled or not +EnableScripting=true + +#Arguments given to the Nashorn scripting library +NashorArguments=-strict + +#Disable Chat Bubbles +EnableChatBubbles=true + +#Navigation search range for NPCs. Not recommended to increase if you have a slow pc or on a server +NpcNavRange=32 + +#Limit too how many npcs can be in one chunk for natural spawning +NpcNaturalSpawningChunkLimit=4 + +#Set to true if you want the dialog command option to be able to use op commands like tp etc +NpcUseOpCommands=false + +#If set to true only opped people can use the /noppes command +NoppesCommandOpOnly=false + +InventoryGuiEnabled=true + +#If you are running sponge and you want to disable the permissions set this to true +DisablePermissions=false + +SceneButtonsEnabled=true + +#Enables CustomNpcs startup update message +EnableUpdateChecker=false + +#Only ops can create and edit npcs +OpsOnly=false + +#Default interact line. Leave empty to not have one +DefaultInteractLine=Hello @p + +#Number of chunk loading npcs that can be active at the same time +ChuckLoaders=20 + +#Enables leaves decay +LeavesDecayEnabled=true + +#Enables Vine Growth +VineGrowthEnabled=true + +#Enables Ice Melting +IceMeltsEnabled=true + +#Normal players can use soulstone on animals +SoulStoneAnimals=true + +#Normal players can use soulstone on all npcs +SoulStoneNPCs=false + +#Type 0 = Normal, Type 1 = Solid +HeadWearType=1 + +#When set to Minecraft it will use minecrafts font, when Default it will use OpenSans. Can only use fonts installed on your PC +FontType=Default + +#Font size for custom fonts (doesn't work with minecrafts font) +FontSize=18 + +#On some servers or with certain plugins, it doesnt work, so you can disable it here +EnableInvisibleNpcs=true + +#Type 0 = standard CNPC (client side despawn), type 1 = old CNPC (disable renderer only), type 2 = modern (disable rendering, hitboxes and interactions) +InvisibilityAlgorithm=2 + +NpcSpeachTriggersChatEvent=false + +#Enable it if you want all your global data (quests and dialogs) to be saved externally (not per world, but per .minecraft folder) +EnableExternalSaving=false + +#The lifetime for the projectiles, after which they get despawned (used for removing stuck projectiles) +ProjectileLifespan=1200 + +#Enable new dialog and quest GUI which allow accepting and rejecting quests +EnableNewDialogSystem=false + diff --git a/config/DistantHorizons.toml b/config/DistantHorizons.toml new file mode 100644 index 0000000..37e3c8d --- /dev/null +++ b/config/DistantHorizons.toml @@ -0,0 +1,943 @@ +_version = 4 + +[server] + # + # Defines the distance the player will receive updates around. + realTimeUpdateDistanceRadiusInChunks = 256 + # + # Prefix of the level keys sent to the clients. + # If the mod is running behind a proxy, each backend should use a unique value. + # If this value is empty, level key will be based on the server's seed hash. + levelKeyPrefix = "" + # + # Defines the distance allowed to be synchronized around the player. + # Should be the same or larger than maxGenerationRequestDistance in most cases. + maxSyncOnLoadRequestDistance = 4096 + # + # If true, clients will receive updated LODs when joining or loading new LODs. + synchronizeOnLoad = true + # + # Custom server key used which can be used to always reuse the same LOD data folder, + # for cases when the server doesn't have a static IP for some reason. + # If this value is empty, the client itself decides which folder name to use. + # Requires rejoining the server to apply after changing. + serverKey = "" + # + # Defines the distance allowed to generate around the player. + maxGenerationRequestDistance = 4096 + # + # When enabled, Distant Horizons will attempt to download missing LODs from the server. + # + # Note: the server must have Distant Generation enabled for it to work. + enableServerGeneration = true + # + # Makes the server send level keys for each world. + # Disable this if you use alternative ways to send level keys. + sendLevelKeys = true + # + # DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING. + # Autogenerated ID used to prevent multiple independent servers from accidentally + # writing over each other's LODs when the same serverKey is set on both. + serverId = -1136222490 + # + # How many LOD generation requests per second should a client send? + # Also limits the number of client requests allowed to stay in the server's queue. + generationRequestRateLimit = 20 + # + # How many LOD sync requests per second should a client send? + # Also limits the amount of player's requests allowed to stay in the server's queue. + syncOnLoadRateLimit = 50 + # + # If true, clients will receive real-time LOD updates for chunks outside the client's render distance. + enableRealTimeUpdates = true + # + # Maximum global speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + globalBandwidthLimit = 0 + # + # Maximum per-player speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + playerBandwidthLimit = 500 + # + # Enables adaptive transfer speed based on client performance. + # If true, DH will automatically adjust transfer rate to minimize connection lag. + # If false, transfer speed will remain fixed. + enableAdaptiveTransferSpeed = true + + [server.experimental] + # + # When enabled on the client, this allows loading lower detail levels as needed to speed up terrain generation. + # This must also be enabled on the server; otherwise, it will have no effect. + # For better performance when switching LOD detail levels, enabling [upsampleLowerDetailLodsToFillHoles] is recommended. + enableNSizedGeneration = false + + [common.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" + dataCompression = "Z_STD_BLOCK" + # + # Enabling this will drastically increase chunk processing time + # and you may need to increase your CPU load to handle it. + # + # Normally DH will attempt to skip creating LODs for chunks it's already seen + # and that haven't changed. + # + # However sometimes that logic incorrectly prevents LODs from being updated. + # Disabling this check may fix issues where LODs aren't updated after + # blocks have been changed. + disableUnchangedChunkCheck = false + + [common.lodBuilding.experimental] + # + # When active DH will attempt to fill missing LOD data + # with any data that is present in the tree, preventing holes when moving + # when a N-sized generator (or server) is active. + # + # This is only used when N-sized world generation is available + # and/or when on a server where [generateOnlyInHighestDetail] is false. + # + # Experimental: + # Enabling this option will increase CPU and harddrive use + # and may cause rendering bugs. + upsampleLowerDetailLodsToFillHoles = false + + [common.multiThreading] + # + # How many threads should be used by Distant Horizons? + numberOfThreads = 8 + # + # A value between 1.0 and 0.0 that represents the 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. + threadRunTimeRatio = "0.75" + # + # What Java thread priority should DH's primary thread pools run with? + # + # You probably don't need to change this unless you are also + # running C2ME and are seeing thread starvation in either C2ME or DH. + threadPriority = 5 + + [common.logging] + # + # If enabled, the mod will log information about the renderer setup, cleanup, and any issues it may encounter. + # This can be useful for debugging. + logRendererEventToFile = "ERROR" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenEventToFile = "ERROR" + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEventToChat = "ERROR" + # + # + globalChatMaxLevel = "ERROR" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenChunkLoadEventToFile = "ERROR" + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEventToFile = "ERROR" + # + # If enabled, the mod will log information about network operations. + # This can be useful for debugging. + logNetworkEventToFile = "ERROR" + # + # If enabled, config changes sent by the server will be logged. + logConnectionConfigChangesToFile = "ERROR" + # + # + globalFileMaxLevel = "ERROR" + + [common.logging.warning] + # + # If enabled, a message will be displayed in chat if explicit garbage collection + # is disabled. + # This is known to cause out-of-memory issues + # and is better solved with a concurrent garbage collector. + showExplicitGcDisabledWarning = false + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showSlowWorldGenSettingWarnings = true + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showUpdateQueueOverloadedChatWarning = false + # + # If enabled, a message will be logged if explicit garbage collection + # is disabled. + # This is known to cause out-of-memory issues + # and is better solved with a concurrent garbage collector. + logExplicitGcDisabledWarning = false + # + # 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, a chat message will be displayed when a potentially problematic + # mod is installed alongside DH. + showModCompatibilityWarningsOnStartup = true + # + # If enabled, a chat message will be displayed when DH is using + # a deprecated renderer. + showDeprecatedRendererWarningOnStartup = true + # + # If enabled, a chat message will be displayed if vanilla MC's + # render distance is higher than the recommended amount. + showHighVanillaRenderDistanceWarning = false + # + # If enabled, a chat message will be displayed if DH detects + # that any pooled objects have been garbage collected. + showPoolInsufficientMemoryWarning = true + # + # If enabled, a message will be logged if the garbage + # collector Java is currently using is known + # to cause frame stuttering and/or other issues. + logGarbageCollectorWarning = false + # + # If enabled, a chat message will be displayed in chat if the garbage + # collector Java is currently using is known + # to cause frame stuttering and/or other issues. + showGarbageCollectorWarning = false + + [common.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. + # + # INTERNAL_SERVER + # Ask the local server to generate/load each chunk. + # This is the most compatible and will generate structures correctly, + # but may cause server/simulation lag. + # Note: unlike other modes this option DOES save generated chunks to + # Minecraft's region files. + distantGeneratorMode = "INTERNAL_SERVER" + # + # How should distant generator progress be displayed? + # + # OVERLAY: may be the same as CHAT for some Minecraft versions + # CHAT + # LOG + # DISABLED + showGenerationProgress = "OVERLAY" + # + # The max radius in chunks around the central point where world generation is allowed. + # If this value is set to 0, generation bounds are disabled and the render distance will be used. + # + # This should only be set if you have a pre-generated world that has a very limited size. + # Setting this on a normal MC world will prevent the world generator from filling + # out your render distance. + generationMaxChunkRadius = 0 + # + # How often should the distant generator progress be displayed? + generationProgressDisplayIntervalInSeconds = 2 + # + # When logging generation progress also include the rate at which chunks + # are being generated. + # This can be useful for troubleshooting performance. + generationProgressIncludeChunksPerSecond = true + # + # For how many seconds should instructions for disabling the distant generator progress be displayed? + # Setting this to 0 hides the instructional message so the world gen progress is shown immediately when it starts. + generationProgressDisableMessageDisplayTimeInSeconds = 20 + # + # The center Z chunk position that the world gen max radius is centered around. + generationCenterChunkZ = 0 + # + # Should Distant Horizons slowly generate LODs + # outside the vanilla render distance? + # Depending on the generator mode, this will import existing chunks + # and/or generating missing chunks. + enableDistantGeneration = false + # + # The center X chunk position that the world gen max radius is centered around. + generationCenterChunkX = 0 + +[client] + # + # Should Distant Horizon's config button appear in Minecraft's options screen next to the fov slider? + showDhOptionsButtonInMinecraftUi = true + + [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? + # This setting is force disabled on dedicated servers for stability reasons. + enableSilentUpdates = false + + [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 + # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG_TRIANGLE: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DEFAULT" + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + # + # If true OpenGL Buffer garbage collection will be logged + # this also includes the number of live buffers. + logBufferGarbageCollection = 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. + debugRenderingColors = "OFF" + # + # Stops vertex colors from being passed. + # Useful for debugging shaders + enableWhiteWorld = false + # + # If enabled the LODs will render as wireframe. + renderWireframe = false + # + # If true several keys can be used to toggle debug states. + # F6 - enable/disable LOD rendering + # F7 - enable/disable LOD only rendering + # F8 - cycle through the different debug rendering modes + enableDebugKeybindings = false + + [client.advanced.debugging.debugWireframe] + # + # Render LOD section status? + showRenderSectionStatus = false + # + # Render queued network sync on load tasks? + showNetworkSyncOnLoadQueue = 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] + # + # Defines how OpenGL errors are handled. + # Requires rebooting Minecraft to change. + # Will catch OpenGL errors thrown by other mods. + overrideVanillaGLLogger = true + # + # 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" + # + # If true each Open GL error will only be logged once. + # Enabling this may cause some error logs to be missed. + # Does nothing if overrideVanillaGLLogger is set to false. + # + # Generally this can be kept as 'true' to prevent log spam. + # However, Please set this to 'false' if a developer needs your log to debug a GL issue. + onlyLogGlErrorsOnce = true + + [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.debugging.f3Screen] + # + # Shows info about the render thread tasks. + showRenderThreadTasks = false + # + # Shows how many chunks are queued for processing and the max count that can be queued. + showQueuedChunkUpdateCount = true + # + # Shows the memory use and array counts for each DH object pool. + showSeparatedObjectPools = false + # + # Shows the player's LOD position. + showPlayerPos = true + # + # Shows the combined memory use and array counts for all DH pooled objects. + showCombinedObjectPools = false + # + # Defines what internal detail level the player position will be shown as. + # Internal detail level means: 6 = 1x1 block, 7 = 2x2 blocks, etc. + playerPosSectionDetailLevel = 6 + # + # Only show levels that DH is actively rendering. + onlyShowRenderingLevels = true + # + # Shows info about each thread pool. + showThreadPools = true + # + # Shows what levels are loaded and world gen/rendering info about those levels. + showLevelStatus = true + + [client.advanced.debugging.positionFinderDebugging] + positionFinderEnable = false + positionFinderMinBlockY = -64 + positionFinderZPos = 0 + positionFinderXPos = 0 + positionFinderMaxBlockY = 125 + positionFinderDetailLevel = 6 + positionFinderMarginPercent = "0.0" + + [client.advanced.graphics] + # + # Enable Screen Space Ambient Occlusion + enableSsao = true + # + # If true some vanilla graphics settings will be automatically changed + # during DH setup to provide a better experience. + # + # IE disabling vanilla clouds (which render on top of DH LODs), + # and chunk fading (DH already fades MC chunks) + overrideVanillaGraphicsSettings = false + + [client.advanced.graphics.culling] + # + # Determines how far from the camera Distant Horizons will start rendering. + # Measured as a percentage of the vanilla render distance. + # + # -1 = auto, overdraw will change based on the vanilla render distance. + # + # Higher values will prevent LODs from rendering behind vanilla blocks at a higher distance, + # but may cause holes in the world. + # Holes are most likely to appear when flying through unloaded terrain. + # + # Increasing the vanilla render distance increases the effectiveness of this setting. + overdrawPrevention = "-1.0" + # + # 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 = true + # + # A comma separated list of block resource locations that will be replaced by water + # if they're visible on the water's surface. + waterSubSurfaceBlockReplacementCsv = "minecraft:kelp,minecraft:tall_seagrass,minecraft:seagrass" + # + # A comma separated list of block resource locations that won't be rendered by DH. + # Air is always included in this list. + # + # Note: + # If you see gaps, or holes you may have to change + # worldCompression to [MERGE_SAME_BLOCKS] and re-generate the LODs. + ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # + # A comma separated list of block resource locations that will be removed + # when on top of water. + waterSurfaceBlockReplacementCsv = "minecraft:lily_pad" + # + # Defines what blocks should be rendered as LODs. + # + # NONE: Include all blocks in the LODs + # NON_COLLIDING: Only render solid blocks in the LODs (tall grass, torches, etc. will be ignored) + blocksToIgnore = "NON_COLLIDING" + # + # If true LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If false 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 + # + # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. + # If true all beacons will be rendered. + # + # Generally this should be left as true. It's main purpose is for debugging + # beacon updating/rendering. + disableBeaconDistanceCulling = true + # + # 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 + # + # If enabled caves won't be rendered. + # + # Note: for some world types this can cause + # overhangs or walls for floating objects. + # Tweaking the caveCullingHeight, can resolve some + # of those issues. + enableCaveCulling = true + # + # At what Y value should cave culling start? + # Lower this value if you get walls for areas with 0 light. + caveCullingHeight = 60 + # + # A comma separated list of block resource locations that shouldn't be rendered + # if they are in a 0 sky light underground area. + # Air is always included in this list. + # + # Defaults to an empty list since most cave blocks will be automatically ignored due to being: + # transparent, non-solid, or liquids, but new blocks can be added here if needed. + ignoredRenderCaveBlockCsv = "" + # + # If set to true the overdraw prevention radius will get closer + # to the camera when flying/moving quickly. + # + # This helps reduce issues where Minecraft can't load or + # generate chunks fast enough to keep up with DH. + reduceOverdrawWithFastMovement = true + + [client.advanced.graphics.texture] + # + # A comma separated list of block resource locations + # that DH will render their sides using the bottom texture. + # Partial matches/incomplete resource locations will also match. + # + # Example: "minecraft:grass_block,nylium" + # + # Changes require a restart. + blocksDontUseSideTextureCsv = "grass_block,mycelium,nylium,dirt_path" + # + # The highest detail level number that can render with block textures. + # At higher detail levels each LOD covers multiple blocks, + # which can essentially make textures smaller than a pixel and therefore invisible. + # + # Larger numbers texture more distant LODs + # but increase memory usage. + maxTexturedLodDetailLevel = 2 + # + # If true nearby and zoomed-in LODs will render with their block's + # actual texture instead of a single flat color. + # + # Only applies to high detail LODs where the texture is actually visible, + # distant LODs always use flat colors. + # Some shader packs nay not have an affect. + enableTexturedLods = false + # + # A comma separated list of block resource locations + # that DH won't render textures on. + # Partial matches/incomplete resource locations will also match. + # + # Example: "minecraft:grass_block,nylium" + # + # Changes require a restart. + blocksDontRenderTextureCsv = "minecraft:bamboo" + # + # A comma separated list of tag names + # that DH will render their sides using the bottom texture. + # + # Example: "grass_blocks,nylium" + # + # Changes require a restart. + blockTagsDontUseSideTextureCsv = "grass_blocks,nylium" + # + # A comma separated list of block resource locations + # that DH will use rasterization to determine + # the face textures. + # + # Can be used to fix issues with mods/blocks where + # a side uses just part of a modeled block's texture. + # + # Example: "minecraft:beacon" + # + # Changes require a restart. + blocksAlwaysRasterizeTextureCsv = "minecraft:beacon" + + [client.advanced.graphics.noiseTexture] + # + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + enableNoiseTexture = true + # + # 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 + # + # How intense should the noise should be? + noiseIntensity = "0.05" + + [client.advanced.graphics.experimental] + # + # A comma separated list of dimension resource locations where DH won't render. + # + # Example: "minecraft:the_nether,minecraft:the_end" + # + # Note: + # Some DH settings will be disabled and/or changed to improve + # visuals when DH rendering is disabled. + ignoredDimensionCsv = "" + # + # Requires a restart to change. + # + # Options: + # AUTO - changes based on the most likely API for that MC version + # OPEN_GL - The Default for MC 1.21.11 and older (supports Iris shaders) + # BLAZE_3D - The Default for MC 26.1.2 and newer (supports Vulkan) + renderingEngine = "AUTO" + # + # 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 + + [client.advanced.graphics.genericRendering] + # + # A comma separated separated list of dimension resource locations where DH clouds will render. + # + # Example: "minecraft:overworld,minecraft:the_end" + # + # Changes require a world re-load. + dimensionEnabledCloudRenderingCsv = "minecraft:overworld" + # + # If true LOD clouds will be rendered. + enableCloudRendering = false + # + # If true LOD beacon beams will be rendered wider at extreme distances, + # making them easier to see. + # If false all LOD beacon beams will only ever be 1 block wide. + expandDistantBeacons = true + # + # Sets the maximum height beacons will render up to. + # + # Requires a world re-load to take affect. + beaconRenderHeight = 6000 + # + # If true LOD beacon beams will be rendered. + enableBeaconRendering = true + # + # If true non terrain objects will be rendered by DH. + # i.e. beacon beams and clouds. + enableGenericRendering = true + # + # False = DH will render a single layer of clouds, like vanilla Minecraft. + # True = DH will render 3 layers of clouds at different heights. + enableMultiLayerClouds = true + + [client.advanced.graphics.quality] + # + # What is the maximum detail LODs can render 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). + # + # Fastest: CHUNK + # Fanciest: BLOCK + maxHorizontalResolution = "BLOCK" + # + # If true LODs will fade away as you get closer to them. + # If false LODs will cut off abruptly at a set distance from the camera. + # This setting is affected by the vanilla overdraw prevention config. + ditherDhFade = true + # + # Should DH fade out before reaching the far clip plane? + # This is helpful to prevent DH clouds from cutting off in the distance. + dhFadeFarClipPlane = true + # + # If true DH will try to use the camera position when + # determining LOD quality drop-off. + # If false DH will use the player's position. + # + # Enabling helps free-cam mods render correctly. + # Disabling helps multi-camera mods render correctly (ie Immersive Portals or camera mods). + useCameraPositionForQualityDropOff = false + # + # How bright LOD colors are. + # + # 0 = black + # 1 = normal + # 2 = near white + brightnessMultiplier = "1.0" + # + # How many detail levels zooming in can increase LOD quality by. + # Higher numbers allow stronger zooms to render crisper terrain, + # but will increase memory and GPU usage while zoomed in. + # + # A vanilla spyglass needs 4 detail levels to reach its full quality. + maxZoomQualityIncrease = 4 + # + # 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 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: PIXEL_ART + verticalQuality = "MEDIUM" + # + # The radius of the mod's render distance. (measured in chunks) + # + # Note: this is a best effort number. + # The actual render distance may be above or below this number + # depending on your other graphic settings. + lodChunkRenderDistanceRadius = 32 + # + # 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" + # + # This indicates how far apart drops in LOD quality are. + # + # Higher settings will increase the distance between drops + # but will increase memory and GPU usage. + horizontalQuality = "MEDIUM" + # + # How should LOD transparency be handled. + # + # COMPLETE: LODs will render transparent. + # DISABLED: LODs will be opaque. + transparency = "COMPLETE" + # + # This is the same as vanilla Biome Blending settings for Lod area. + # Note: anything above '0' will slow down LOD loading time. + # + # '0' equals to Vanilla Biome Blending of '1x1' or 'OFF', + # '1' equals to Vanilla Biome Blending of '3x3', + # '2' equals to Vanilla Biome Blending of '5x5'... + lodBiomeBlending = 3 + # + # How should vanilla Minecraft fade into Distant Horizons LODs? + # + # NONE: Fastest, there will be a pronounced border between DH and MC rendering. + # SINGLE_PASS: Fades after MC's transparent pass, opaque blocks underwater won't be faded. + # DOUBLE_PASS: Slowest, fades after both MC's opaque and transparent passes, provides the smoothest transition. + vanillaFadeMode = "NONE" + # + # If true LOD quality will increase when the camera is zoomed in, + # IE when using a spyglass or zoom mod. + # + # Only LODs visible through the camera view are affected. + # + # When zoomed in LODs will load to the same detail level + # they would have if you were close to them. + increaseQualityWhenZoomedIn = false + + [client.advanced.graphics.fog] + # + # Should Minecraft's fog render? + # Note: Other mods may conflict with this setting. + enableVanillaFog = false + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMax = "1.0" + # + # Determines if fog is drawn on DH LODs. + enableDhFog = true + # + # 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" + # + # 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" + # + # 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.heightFog] + # + # 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 + heightFogDirection = "BELOW_SET_HEIGHT" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMin = "0.0" + # + # If the height fog is calculated around a set height, what is that height position? + heightFogBaseHeight = "80.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 = "20.0" + # + # How should height effect the fog thickness? + # Note: height fog is combined with the other fog settings. + # + # SPHERICAL: Fog is calculated based on camera distance. + # CYLINDRICAL: Ignore height, fog is calculated based on horizontal distance. + # + # MAX: max(heightFog, farFog) + # ADDITION: 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 + heightFogMixMode = "SPHERICAL" + # + # 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 = "0.6" + + [client.advanced.multiplayer] + # + # 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" diff --git a/config/EnderStorage.cfg b/config/EnderStorage.cfg new file mode 100644 index 0000000..4e4ba4e --- /dev/null +++ b/config/EnderStorage.cfg @@ -0,0 +1,14 @@ +# The RegistryName for the Item to lock EnderChests and Tanks. +S:"personalItem"="minecraft:diamond" + +# Causes chests to lose personal settings and drop the diamond on break. +B:"anarchyMode"=false + +# The size of each inventory of EnderStorage, 0 = 3x3, 1 = 3x9, 2 = 6x9, default = 1 +I:"item_storage_size"=1 + +# Disables the tank on top of creators heads. +B:"disableCreatorVisuals"=false + +# Enable this to make EnderStorage use vanilla's EnderChest sounds instead of the standard chest. +B:"useVanillaEnderChestsSounds"=false diff --git a/config/Hexerei-client.toml b/config/Hexerei-client.toml new file mode 100644 index 0000000..afa387c --- /dev/null +++ b/config/Hexerei-client.toml @@ -0,0 +1,13 @@ +#Dynamic light toggle +dynamic_light_toggle = false +#Light level an entity should emit when dynamic lights are on +#Example entry: minecraft:blaze=15 +entity_lights = ["minecraft:blaze=10", "minecraft:magma_cube=8", "minecraft:spectral_arrow=8"] +#Light level an item should emit when held when dynamic lights are on +#Example entry: minecraft:stick=15 +item_lights = ["hexerei:moon_dust=8", "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"] + +["List of Extra Fonts"] + #list of fonts that can be used, mainly for the book of shadows + font_list = ["minecraft:default", "hexerei:fancy", "hexerei:bloody", "hexerei:earth", "hexerei:seattle", "hexerei:medieval", "hexerei:augusta"] + diff --git a/config/Hexerei-common.toml b/config/Hexerei-common.toml new file mode 100644 index 0000000..250772e --- /dev/null +++ b/config/Hexerei-common.toml @@ -0,0 +1,50 @@ + +["Herb Jar Settings"] + #Disabling allows jars to hold any item + jars_only_hold_herbs = true + +["Sage Burning Plate Settings"] + #Range of the Sage Burning Plate, setting to 0 will disable completely + spawn_disable_range = 48 + +["Crow Pickpocket Cooldown"] + #time (in ticks) for crow being able to pickpocket again (base 1 minute 30 seconds) + crow_pickpocket_cooldown = 1800 + +["Broom Brush Durability"] + #broom brush durability + broom_brush_durability = 100 + +["Herb Enhanced Brush Durability"] + #Herb Enhanced brush durability + herb_enhanced_brush_durability = 200 + +["Moon Dust Brush Durability"] + #Moon Dust brush durability + moon_dust_brush_durability = 200 + +["Thruster Brush Durability"] + #thruster brush durability + thruster_brush_durability = 400 + +["Broom Waterproof Tip Durability"] + #Broom Waterproof Tip Durability + broom_waterproof_tip_durability = 800 + +["Broom Netherite Tip Durability"] + #Broom Netherite Tip Durability + broom_netherite_tip_durability = 200 + +["Sage Bundle Durability"] + #time (in ticks) for the sage bundle to burn out (default 3600 - 1 hour) + sage_bundle_durability = 3600 + +["Coffer Item Blacklist"] + #blacklists items from being placed inside of coffers + coffer_blacklist = ["minecraft:shulker_box", "minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box", "hexerei:coffer"] + +["Biome Generation"] + #rarity of the willow swamp biome, 0 to disable + #Range: > 0 + willow_swamp_rarity = 2 + diff --git a/config/LibertyVillagers.json b/config/LibertyVillagers.json new file mode 100644 index 0000000..9343fb7 --- /dev/null +++ b/config/LibertyVillagers.json @@ -0,0 +1,97 @@ +{ + "villagersGeneralConfig": { + "healOnWake": true, + "villagersDontBreed": false, + "villagerBabiesRequireWorkstationAndBed": false, + "villagersDontLookForWorkstationsAtNight": true, + "villagersEatMelons": true, + "villagersEatPumpkinPie": true, + "villagersEatCookedFish": true, + "villagersDontTrampleCrops": true, + "noNitwitVillagers": false, + "allNitwitVillagers": false, + "growUpTime": 24000, + "allBabyVillagers": false, + "foreverYoung": false + }, + "villagerPathfindingConfig": { + "findPOIRange": 128, + "pathfindingMaxRange": 256, + "minimumPOISearchDistance": 3, + "villagersAvoidCactus": true, + "villagersAvoidWater": true, + "villagersAvoidRail": true, + "villagersAvoidTrapdoor": true, + "villagersAvoidPowderedSnow": true, + "villagersAvoidGlassPanes": true, + "villagerWanderingFix": true, + "walkTowardsTaskMaxRunTime": 2400, + "villagersDontClimb": true, + "villagerSafeFallDistance": 2 + }, + "villagersProfessionConfig": { + "armorerHealsGolems": true, + "armorerHealsGolemsRange": 32, + "clericThrowsPotionsAtPlayers": true, + "clericThrowsPotionsAtVillagers": true, + "clericThrowsPotionsAtRange": 32, + "findCropRangeHorizontal": 10, + "findCropRangeVertical": 3, + "preferPlantSameCrop": true, + "farmersHarvestMelons": true, + "farmersHarvestPumpkins": true, + "butchersFeedChickens": true, + "butchersFeedCows": true, + "butchersFeedPigs": true, + "butchersFeedRabbits": true, + "butchersFeedSheep": false, + "fletchersFeedChickens": true, + "leatherworkersFeedCows": true, + "shepherdsFeedSheep": false, + "feedAnimalsRange": 20, + "feedMaxAnimals": 30, + "fishermanFish": true, + "fishermanFindWaterRange": 10, + "fishermanFishingWaterRange": 5, + "librariansLookAtBooks": true + }, + "golemsConfig": { + "golemAggroRange": 48, + "golemsAvoidCactus": true, + "golemsAvoidWater": true, + "golemsAvoidRail": true, + "golemsAvoidTrapdoor": true, + "golemsAvoidPowderedSnow": true, + "golemsDontAttackPlayer": true, + "golemsDontTrampleCrops": true, + "villagersDontSummonGolems": false, + "golemSpawnLimit": false, + "golemSpawnLimitCount": 10, + "golemSpawnLimitRange": 128, + "golemStayNearBell": true, + "golemMaxBellRange": 128, + "golemMoveToShore": true, + "golemPathfindToShoreRange": 10, + "golemsDontClimb": true + }, + "catsConfig": { + "catsSpawnLimit": false, + "catsSpawnLimitCount": 10, + "catsSpawnLimitRange": 128, + "villageCatsDontDespawn": false, + "blackCatsAtAnyTime": false, + "allBlackCats": false, + "catsStayNearBell": true, + "catsMaxBellRange": 128, + "catsDontClimb": true + }, + "animalsConfig": { + "beesAvoidTrapdoors": true + }, + "debugConfig": { + "villagerStatRange": 256, + "enableVillagerInfoOverlay": false, + "villagerInfoShowsPath": false, + "enableVillagerBrainDebug": false + } +} \ No newline at end of file diff --git a/config/MouseTweaks.cfg b/config/MouseTweaks.cfg new file mode 100644 index 0000000..81190ac --- /dev/null +++ b/config/MouseTweaks.cfg @@ -0,0 +1,8 @@ +RMBTweak=1 +LMBTweakWithItem=1 +LMBTweakWithoutItem=1 +WheelTweak=1 +WheelSearchOrder=1 +WheelScrollDirection=0 +ScrollItemScaling=0 +Debug=0 diff --git a/config/NoChatReports/NCR-Client.json b/config/NoChatReports/NCR-Client.json new file mode 100644 index 0000000..ab19344 --- /dev/null +++ b/config/NoChatReports/NCR-Client.json @@ -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 +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Common.json b/config/NoChatReports/NCR-Common.json new file mode 100644 index 0000000..f79a76a --- /dev/null +++ b/config/NoChatReports/NCR-Common.json @@ -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 +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Encryption.json b/config/NoChatReports/NCR-Encryption.json new file mode 100644 index 0000000..2e93864 --- /dev/null +++ b/config/NoChatReports/NCR-Encryption.json @@ -0,0 +1,28 @@ +{ + "skipWarning": true, + "enableEncryption": true, + "encryptPublic": true, + "showEncryptionButton": true, + "showEncryptionIndicators": true, + "encryptionKey": "wiXUhznxiUJ+Zy+U68nMqg\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" + ] +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-ServerPreferences.json b/config/NoChatReports/NCR-ServerPreferences.json new file mode 100644 index 0000000..ac62f4f --- /dev/null +++ b/config/NoChatReports/NCR-ServerPreferences.json @@ -0,0 +1,5 @@ +{ + "signingModes": { + "mc.zombiebytes.net:25565": "ALWAYS" + } +} \ No newline at end of file diff --git a/config/NoChatReports/README.md b/config/NoChatReports/README.md new file mode 100644 index 0000000..33141b5 --- /dev/null +++ b/config/NoChatReports/README.md @@ -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 diff --git a/config/Plushie_Buddies-Common.toml b/config/Plushie_Buddies-Common.toml new file mode 100644 index 0000000..7922223 --- /dev/null +++ b/config/Plushie_Buddies-Common.toml @@ -0,0 +1,11 @@ + +["Configs for Plushie Buddies Mod"] + #How many emeralds do plushies cost + #Range: 1 ~ 128 + "Emerald count" = 10 + #What trader level sells plushies + #Range: 1 ~ 5 + "Trader level" = 5 + #'true' or 'false' for plushies being sold by traders + "If enableded" = true + diff --git a/config/ProjectRed.cfg b/config/ProjectRed.cfg new file mode 100644 index 0000000..beb8136 --- /dev/null +++ b/config/ProjectRed.cfg @@ -0,0 +1,70 @@ +# General settings +"general" { + # If set to false, logic gates will not make sounds + B:"gate_sounds"=true + + # If set to false, logic gates will not emit light + B:"gate_lights"=true + + # Minimum amount of ticks the timer gates can be set to (min 4) + I:"gate_min_timer_ticks"=4 + + # If set to true, the basic screwdriver will not take damage + B:"infinite_screwdriver"=false +} + +# Settings related to machines and devices +"machines" { + # Allow the Diamond Block Breaker to be crafted + B:"diamond_block_breaker"=false + + # Max blocks in a moving frame structure + I:"frame_move_limit"=1024 +} + +# Client render settings +"rendering" { + # If set to false, flat wire textures will be used for logic gates. Significant performance improvement + B:"gate_3d_wires"=true + + # If set to false, wires will be rendered in the TESR rather than the WorldRenderer + B:"static_wire_renderer"=true + + # If set to false, gates will be rendered in the TESR rather than the WorldRenderer + B:"static_gate_renderer"=true + + # Max lights on screen at a time, -1 for unlimited + I:"max_lights"=-1 + + # Use fabulous shader pipeline for lights when on Fabulous Graphics mode + B:"fabulous_lights"=true +} + +# World gen settings +"world_gen" { + B:"ruby_ore"=true + + B:"sapphire_ore"=true + + B:"peridot_ore"=true + + B:"tin_ore"=true + + B:"silver_ore"=true + + B:"electrotine_ore"=true + + B:"marble_cave"=true +} + +# Control the loading of various compatibility hooks. These settings are ignored unless the Compatibility module is installed. +"compatibility" { + # This allows computers to connect to bundled cables with the RS API. + B:"computercraft"=true +} + +# Settings for Fabrication circuit compilation +"fabrication" { + # Tile count before auto-compile becomes disallowed (-1 to always allow, 0 to never allow). Recommended to keep this very low on servers. + I:"auto_compile_tile_limit"=20 +} diff --git a/config/RPG-HUD b/config/RPG-HUD new file mode 100644 index 0000000..f3b2ad8 --- /dev/null +++ b/config/RPG-HUD @@ -0,0 +1,100 @@ +Version=1.0 +H:hud_type=vanilla +B:enable_button_tooltip=true +B:enable_config_button=false +B:reduce_size=false +B:show_armor=true +B:show_arrow_count=false +B:show_item_durability=false +B:show_block_count=false +B:show_durability_bar=true +P:armor_det_position=0_60 +P:arrow_det_position=0_0 +P:item_det_position=0_0 +B:show_numbers_health=true +B:health_percentage=false +C:color_health=12648448 +C:color_absorption=16745472 +C:color_poison=10748144 +C:color_wither=2697513 +P:health_position=0_0 +B:show_numbers_food=true +B:hunger_percentage=false +B:show_hunger_preview=true +C:color_food=3916288 +C:color_hunger=10199143 +P:hunger_position=0_0 +B:show_numbers_experience=true +B:experience_percentage=false +C:color_experience=15658496 +P:experience_position=0_0 +B:mount_health_percentage=false +B:enable_clock=false +B:enable_clock_color=true +B:enable_immersive_clock=false +S:clock_time_format=time.24 +P:clock_position=0_0 +B:enable_compass=false +B:enable_compass_color=true +B:enable_immersive_compass=true +B:enable_compass_coordinates=false +B:invert_compass=false +P:compass_position=0_269 +B:render_player_face=true +P:widget_position=0_0 +P:face_position=0_0 +B:enable_fps=false +P:fps_position=0_0 +C:color_fps=9079434 +D:fps_scale=0.5 +B:enable_system_time=false +B:enable_system_time_background=true +P:system_time_position=0_0 +C:color_system_time=9079434 +D:system_time_scale=0.5 +B:limit_jump_bar=true +C:color_jump_bar=9079434 +P:jump_bar_position=0_0 +B:enable_entity_inspect=false +B:show_entity_armor=true +P:inspector_position=0_0 +C:color_air=23490 +P:air_position=0_0 +B:status_vertical=false +B:status_time=true +P:pickup_position=0_0 +D:status_scale=1.0 +P:mount_health_position=0_0 +P:hotbar_position=0_6 +P:level_position=0_0 +P:armor_position=0_-2 +B:render_vanilla_armor=false +B:prevent_event_armor=false +B:prevent_element_render_armor=false +B:render_vanilla_hotbar=false +B:prevent_event_hotbar=false +B:prevent_element_render_hotbar=false +B:render_vanilla_air=false +B:prevent_event_air=false +B:prevent_element_render_air=false +B:render_vanilla_health=false +B:prevent_event_health=false +B:prevent_element_render_health=false +B:render_vanilla_food=false +B:prevent_event_food=false +B:prevent_element_render_food=false +B:render_vanilla_experience=true +B:prevent_event_experience=false +B:prevent_element_render_experience=false +B:render_vanilla_level=false +B:prevent_event_level=false +B:prevent_element_render_level=false +B:render_vanilla_health_mount=false +B:prevent_event_health_mount=false +B:prevent_element_render_health_mount=false +B:render_vanilla_jump_bar=false +B:prevent_event_jump_bar=false +B:prevent_element_render_jump_bar=false +B:render_vanilla_status_effects=false +B:prevent_event_status_effects=false +B:prevent_element_render_status_effects=false diff --git a/config/Signal_Flares_Server.toml b/config/Signal_Flares_Server.toml new file mode 100644 index 0000000..6ca3c2c --- /dev/null +++ b/config/Signal_Flares_Server.toml @@ -0,0 +1,32 @@ + +[chat] + #Sends out a massage containing players coordinates + "Chat Massage" = false + +[flares] + #Keep in mind the damage scales with speed (speed x damage) + "Flare Speed" = 2.0 + #Keep in mind the damage scales with speed (speed x damage) + "Flare Damage" = 0.0 + "Flare Knockback" = 1.0 + "Flare Piercing" = 0.0 + #Sets targets on fire + "Flare Fire" = false + "Flare No Gravity Ticks" = 25.0 + +[glow_sticks] + #Duration is measured in ticks + "Green Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Pink Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Cyan Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Sticky Green Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Sticky Pink Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Sticky Cyan Glow Stick Duration" = 900.0 + #Duration is measured in ticks + "Echo Glow Stick Duration" = 140.0 + diff --git a/config/Undead_mobs.toml b/config/Undead_mobs.toml new file mode 100644 index 0000000..8ad92b6 --- /dev/null +++ b/config/Undead_mobs.toml @@ -0,0 +1,95 @@ + +[pregnantbabies] + #Maximum number of babies a pregnant could spawn + "Maximum numbers of summonings pregnant can spawn" = 10.0 + #disable the ability entirely + "Disable spawning of summonings" = false + #Example: 80 meaning 20 percent of sucker spawing and 80 of bidys. (by setting to 100 no sucker willl spawn) + "Bidy spawning percentage pool" = 80.0 + +[hunter] + #Can also be turned off with griefing gamemode + "Allows hunter to destroy fence or doors" = true + "Allows hunter to hunt animals" = true + "Allows hunter to life steal" = true + #Hunters will usaully eat any dropped meat they find + "Allows hunter to eat dropped food" = true + #hunter will usaully fly and despawn from sunlight + "Hunter soar off from sunlight" = true + +[bomber] + #bomber explosion radius + "Bomber explosion in block area" = 9.0 + #bomber explosion damage + "Explosion impact damage" = 1.0 + #bomber explosion goo effect duration (In ticks: 20 ticks = 1 second) + "Explosion goo duration" = 400.0 + +[clogger] + #Clogger will usaully not tolererate player cheesing in a fight + "Will clogger dig away(despawn) from cowardice enemy?" = true + +[suckers] + #To disable/enable this machanic + "allow chances for sucker to spawn with something riding on them" = true + #Per sucker, what at what percentage it would spawn with something + "chances for sucker to have mob spawn riding on them, upon spawning" = 15.0 + #Example: 80 meaning 20 percent of baby zombie spawning and 80 of bidys. (by setting to 100 no baby zombie will spawn) + "Bidy spawning percentage pool" = 80.0 + +["Big sucker"] + #default at 5 + "How many suckers spawn per Big Sucker?" = 5.0 + +["The Wolf"] + #They usaully spawn blade like mobs to attack target + "Can the wolf spawn stroms" = true + #Somehow it cant be chnaged via attributes so here it is. (exclusively for this mob) + "The wolf swinging attack Damage" = 4.0 + +["The Lechery"] + #This has to do with world ore generation + "Do Lechery spawn as ore blocks" = true + +["The Dungeon"] + #Can The Dungeon mob and its structures spawn in thiss world? + "Enable or Disabling dungeons" = true + +[bidy] + #bidy explosion damage + "Explosion impact damage" = 4.5 + #bidy explosion radius. + "Explosion radius" = 4.0 + #bidy goo explosion effect durarion (In ticks: 20 ticks = 1 second) + "Explosion goo duration" = 80.0 + +["The Possesive"] + #Can The Posessive mob and its structures spawn in thiss world? + "Enable or Disabling Ocean banks" = true + +["The Rabidus"] + #Per hit + "Change of inflicting rabies" = 0.12 + +[wheezer] + #amount of hit to pop it's pore rendering its ability useless + "Wheezer spores hitpoints" = 15.0 + #how long the fumes stay in taget's body (in ticks) + "Wheezer spore duration" = 300.0 + +["The Ordure"] + #explosion + "Ordure death explosion damage" = 30.0 + +["Skeeper/Somnolence"] + #(In ticks: 20 ticks = 1 second) + "how long typnomiasis last in ticks?" = 100.0 + #(In ticks: 20 ticks = 1 second) + "how long sleepi walking last in ticks?" = 100.0 + #Self explanatory + "how much Somnolences spawns on projectile?" = 8.0 + +[advancements] + #Turn thsi false if you have Advancement... No More !!! mod installed + "enable advancements" = true + diff --git a/config/VinURLConfig.json5 b/config/VinURLConfig.json5 new file mode 100644 index 0000000..9b46f61 --- /dev/null +++ b/config/VinURLConfig.json5 @@ -0,0 +1,10 @@ +{ + "downloadEnabled": true, + "updatesOnStartup": true, + "showDescription": true, + "urlWhitelist": [ + "https://www.youtube.com", + "https://soundcloud.com" + ], + "audioBitrate": "MEDIUM" +} \ No newline at end of file diff --git a/config/Wardrobe.toml b/config/Wardrobe.toml new file mode 100644 index 0000000..bfec9d0 --- /dev/null +++ b/config/Wardrobe.toml @@ -0,0 +1,5 @@ + +[Mobs] + "Spawn With Clothes" = true + "Clothes Chance" = 0.1 + diff --git a/config/YungsCaveBiomes-forge-1_20_1.toml b/config/YungsCaveBiomes-forge-1_20_1.toml new file mode 100644 index 0000000..9919292 --- /dev/null +++ b/config/YungsCaveBiomes-forge-1_20_1.toml @@ -0,0 +1,101 @@ + +["YUNG's Cave Biomes"] + + ["YUNG's Cave Biomes"."Lost Caves"] + "Enable Sandstorms" = true + "Min Sandstorm Duration (seconds)" = 120 + "Max Sandstorm Duration (seconds)" = 600 + "Min Time Between Sandstorms (seconds)" = 1200 + "Max Time Between Sandstorms (seconds)" = 2400 + "Render Extra Particles During Sandstorms" = true + + ["YUNG's Cave Biomes"."Lost Caves"."Biome Noise Parameters"] + #Range: -1.0 ~ 1.0 + "Temperature Min" = 0.55 + #Range: -1.0 ~ 1.0 + "Temperature Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Humidity Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Humidity Max" = 0.6 + #Range: -1.0 ~ 1.0 + "Continentalness Min" = 0.3 + #Range: -1.0 ~ 1.0 + "Continentalness Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Erosion Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Erosion Max" = 1.0 + #Range: 0.0 ~ 1.0 + "Depth Min" = 0.2 + #Range: 0.0 ~ 1.0 + "Depth Max" = 0.9 + #Range: -1.0 ~ 1.0 + "Weirdness Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Weirdness Max" = 1.0 + #Range: -1.0 ~ 1.0 + Offset = 0.0 + + ["YUNG's Cave Biomes"."Frosted Caves"] + + ["YUNG's Cave Biomes"."Frosted Caves"."Biome Noise Parameters"] + #Range: -1.0 ~ 1.0 + "Temperature Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Temperature Max" = -0.7 + #Range: -1.0 ~ 1.0 + "Humidity Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Humidity Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Continentalness Min" = -0.19 + #Range: -1.0 ~ 1.0 + "Continentalness Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Erosion Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Erosion Max" = 1.0 + #Range: 0.0 ~ 1.0 + "Depth Min" = 0.2 + #Range: 0.0 ~ 1.0 + "Depth Max" = 0.9 + #Range: -1.0 ~ 1.0 + "Weirdness Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Weirdness Max" = 1.0 + #Range: -1.0 ~ 1.0 + Offset = 0.0 + + ["YUNG's Cave Biomes".Other] + + ["YUNG's Cave Biomes".Other."Vanilla Biome Modifications"] + + ["YUNG's Cave Biomes".Other."Vanilla Biome Modifications"."Dripstone Caves"] + #Range: -1.0 ~ 1.0 + "Temperature Min" = -0.7 + #Range: -1.0 ~ 1.0 + "Temperature Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Humidity Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Humidity Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Continentalness Min" = 0.8 + #Range: -1.0 ~ 1.0 + "Continentalness Max" = 1.0 + #Range: -1.0 ~ 1.0 + "Erosion Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Erosion Max" = 1.0 + #Range: 0.0 ~ 1.0 + "Depth Min" = 0.2 + #Range: 0.0 ~ 1.0 + "Depth Max" = 0.9 + #Range: -1.0 ~ 1.0 + "Weirdness Min" = -1.0 + #Range: -1.0 ~ 1.0 + "Weirdness Max" = 1.0 + #Range: -1.0 ~ 1.0 + Offset = 0.0 + diff --git a/config/accessories.json5 b/config/accessories.json5 new file mode 100644 index 0000000..aac80eb --- /dev/null +++ b/config/accessories.json5 @@ -0,0 +1,31 @@ +{ + "clientData": { + "showGroupTabs": true, + "showUniqueRendering": false, + "inventoryButtonXOffset": 66, + "inventoryButtonYOffset": 9, + "creativeInventoryButtonXOffset": 96, + "creativeInventoryButtonYOffset": 7, + "forceNullRenderReplacement": false, + "disableEmptySlotScreenError": false, + "allowSlotScrolling": true, + "showUnusedSlots": false, + "equipControl": "MUST_NOT_CROUCH", + "hoverOptions": { + "hoveredOptions": { + "brightenHovered": true, + "cycleBrightness": true, + "line": false, + "clickbait": false + }, + "unHoveredOptions": { + "renderUnHovered": true, + "darkenUnHovered": true, + "darkenedBrightness": 0.5, + "darkenedOpacity": 1.0 + } + }, + "disabledDefaultRenders": [] + }, + "modifiers": [] +} \ No newline at end of file diff --git a/config/actuallyadditions-common.toml b/config/actuallyadditions-common.toml new file mode 100644 index 0000000..09d75b0 --- /dev/null +++ b/config/actuallyadditions-common.toml @@ -0,0 +1,90 @@ + +#Everything else +[other] + #If true, Solidified Experience will always spawn orbs, even for regular players. + solidXPOrbs = false + #If true, Actually Additions Checks for updates on World Load. + doUpdateCheck = true + #If true, Actually Additions' Update Checker searches for updates for the Minecraft Version you currently play on. + versionSpecificUpdateChecker = true + #If true, Mobs will randomly drop solidified XP occasionally. + doXpDrops = true + #If true, Cats drop Hairy Balls Occasionally. + doCatDrops = true + #Should Bat wings drop from Bats? + doBatDrops = true + #Should seeds (coffee beans, rice, flax, canola) drop from breaking grss? + doSeedsDrops = true + #The 1/n drop chance, per tick, for a fur ball to be dropped. + #Range: > 1 + furDropChance = 5000 + #If true, worms will drop from tilling the soil. + tillingWorms = true + #The amount of ticks it takes for a worm to die. When at 0 ticks, it will not die. + #Range: 0 ~ 10000000 + wormDeathTime = 0 + #Show Advanced Item Info when holding Control on every Item. + advancedInfo = true + #Show the 'Press Control for more Info'-Text on Item Tooltips + advancedInfoTooltips = true + #If true, the booklet should be given to the player when he first crafts something from the Mod + giveBookletOnFirstCraft = true + #Should Actually Additions Loot generate in dungeons? + villageAndDungeonLoot = true + #Should right-clicking a bowl on water blocks create a water bowl? + waterBowl = true + #Should the water bowl spill if you don't sneak while using it? + waterBowlSpilling = true + #Should Tiny Coal and Tiny Charcoal be craftable + tinyCoal = true + #Turn this on to make recipes for items from the mod really hard. (This is a joke feature poking fun at the whole FTB Infinity Expert Mode style of playing. You shouldn't really turn this on as it makes the mod completely unplayable.) + superDuperHardRecipes = false + #If you want to be really boring and lame, you can turn on this setting to disable colored names on Actually Additions items. Because why would you want things to look pretty anyways, right? + noColoredItemNames = false + #define the item used to configure Redstone Mode + redstoneConfigurator = "minecraft:redstone_torch" + #define the item used to configure Direction in laser relays + relayConfigurator = "minecraft:compass" + +#Machine Settings +[machineSettings] + #The size of the farmer's farming area. Default is 9x9, must be an odd number. + #Range: > 1 + farmerArea = 9 + #The amount of power the atomic reconstructor can store. + #Range: > 300000 + reconstructorPower = 300000 + #The amount of power the oil generator can transfer per tick. + #Range: > 100 + oilGeneratorTransfer = 500 + #The energy use of the Atomic Reconstructor's Mining Lens. + #Range: > 1 + minerLensEnergy = 60000 + #If Energy Laser Relays should have energy loss. + laserRelayLoss = true + #The cooldown between two generation cycles of the Leaf Generator, in ticks + #Range: > 1 + leafGeneratorCooldown = 5 + #The Leaf Generator's Energy Production in CF/Leaf + #Range: > 1 + leafGeneratorCPPerLeaf = 300 + #The size of the Leaf Generator's harvesting area. Default is 7x7x7, must be an odd number. + #Range: > 1 + leafGeneratorArea = 7 + #By default, the Vertical Digger mines everything that is in the 'forge:ores' block/item tags. If there is one that it can't mine, but should be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. This Config Option only applies if the miner is in Ores Only Mode. + "Vertical Digger Extra Whitelist" = [] + #By default, the Vertical Digger mines everything that is in the 'forge:ores' block/item tags. If there is one that it can mine, but shouldn't be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. This Config Option will apply in both modes. + "Vertical Digger Blacklist" = [] + +#Worldgen Settings +[worldgenSettings] + #Should Black Quartz generate in the world? + blackQuartzGeneration = true + #Should engineer houses be generated in villages? + engineerHouseGeneration = true + +#Item settings +[itemsSettings] + #By default, the Drill can mine certain blocks. If there is one that it can't mine, but should be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. + "Drill Extra Whitelist" = ["TConstruct:GravelOre"] + diff --git a/config/ad_astra-client.jsonc b/config/ad_astra-client.jsonc new file mode 100644 index 0000000..a94ee99 --- /dev/null +++ b/config/ad_astra-client.jsonc @@ -0,0 +1,23 @@ +{ + "showOxygenDistributorArea": false, + "showGravityNormalizerArea": false, + "jetSuitEnabled": true, + // Type: Integer + "oxygenBarX": 5, + // Type: Integer + "oxygenBarY": 25, + // Type: Float + "oxygenBarScale": 1.0, + // Type: Integer + "energyBarX": 11, + // Type: Integer + "energyBarY": 95, + // Type: Float + "energyBarScale": 1.0, + "spaceMuffler": true, + "radio": { + // Range: 0 - 100 + "volume": 50, + "favorites": [] + } +} \ No newline at end of file diff --git a/config/ad_astra.jsonc b/config/ad_astra.jsonc new file mode 100644 index 0000000..8b84b68 --- /dev/null +++ b/config/ad_astra.jsonc @@ -0,0 +1,77 @@ +{ + // Allow players to set custom flag images for their rockets. + "allowFlagImages": true, + // Allow rockets to be launched from any dimension, even if it's not considered a planet. + "launchAnywhere": false, + /* + * The random tick speed for breaking plants, torches, freezing water, etc. on planets. + * Type: Integer + */ + "planetRandomTickSpeed": 20, + // Always tick every planet chunk for things like freezing water, breaking plants, etc., regardless of whether the chunk can tick randomly or not. This has a small performance impact. + "forcePlanetTick": false, + /* + * The y level where rockets should leave the dimension and enter space. + * Type: Integer + */ + "atmosphereLeave": 600, + // A comma-separated list of planet IDs that should be hidden from the planets screen. e.g. minecraft:overworld,ad_astra:moon,ad_astra:mars,ad_astra:venus,ad_astra:mercury,ad_astra:glacio + "disabledPlanets": "", + // Disables oxygen damage. + "disableOxygen": false, + // Disables temperature damage. + "disableTemperature": false, + // Uses normal gravity for all planets. + "disableGravity": false, + // An Air Vortex is created when an oxygenated structure breaks its seal, causing every entity inside to rapidly get sucked out. This setting disables that. + "disableAirVortexes": false, + "cryoFreezer": { + // Type: Long + "ironTierMaxEnergyInOut": 100, + // Type: Long + "steelTierMaxEnergyInOut": 150, + // Type: Long + "deshTierMaxEnergyInOut": 250, + // Type: Long + "ostrumTierMaxEnergyInOut": 500, + // Type: Long + "ironTierEnergyCapacity": 10000, + // Type: Long + "steelTierEnergyCapacity": 20000, + // Type: Long + "deshTierEnergyCapacity": 50000, + // Type: Long + "ostrumTierEnergyCapacity": 100000, + // Type: Long + "steelTierFluidCapacity": 3000, + // Type: Long + "deshTierFluidCapacity": 5000, + // Type: Long + "ostrumTierFluidCapacity": 10000, + // Type: Long + "coalGeneratorEnergyGenerationPerTick": 20, + // Type: Long + "etrionicBlastFurnaceBlastingEnergyPerItem": 10, + // Type: Long + "waterPumpEnergyPerTick": 20, + // Type: Long + "waterPumpFluidGenerationPerTick": 50, + // Type: Long + "energizerEnergyCapacity": 2000000, + /* + * The maximum number of blocks that an oxygen distributor and gravity normalizer can distribute to. + * Type: Integer + */ + "maxDistributionBlocks": 6000, + /* + * The tick rate (20 ticks = 1 second) at which the oxygen distributor and gravity normalizer will recalculate the distribution area. + * Type: Integer + */ + "distributionRefreshRate": 100, + /* + * The tick rate (20 ticks = 1 second) at which cables and fluid pipes will recalculate their connections. + * Type: Integer + */ + "pipeRefreshRate": 50 + } +} \ No newline at end of file diff --git a/config/additional-additions-config.json b/config/additional-additions-config.json new file mode 100644 index 0000000..d0c6a52 --- /dev/null +++ b/config/additional-additions-config.json @@ -0,0 +1,43 @@ +{ + "version": 8, + "FoodItems": { + "FriedEgg": true, + "BerryPie": true, + "HoneyedApple": true + }, + "WateringCan": true, + "RoseGold": true, + "Ropes": true, + "EnchantmentPrecision": true, + "EnchantmentSpeed": true, + "Wrench": true, + "CopperPatina": true, + "AmethystLamp": { + "enabled": true, + "despawnChance": 0.5 + }, + "Crossbows": true, + "TridentShard": true, + "GlowStick": true, + "GildedNetherite": { + "enabled": true, + "fireResistancePerPiece": 2.5 + }, + "DepthMeter": { + "enabled": true, + "displayElevationAlways": false + }, + "MysteriousBundle": true, + "CompostableRottenFlesh": true, + "MusicDiscs": true, + "NoteBlockAmethystSounds": true, + "ShipwreckSpyglassLoot": true, + "PocketJukebox": true, + "ChickenNugget": true, + "PoweredRailsCopperRecipe": true, + "GlowBerryEatGlow": { + "enabled": true, + "duration": 5 + }, + "HastePotions": true +} \ No newline at end of file diff --git a/config/additional_attributes-client.toml b/config/additional_attributes-client.toml new file mode 100644 index 0000000..58e3477 --- /dev/null +++ b/config/additional_attributes-client.toml @@ -0,0 +1,3 @@ +#If enabled innate spells won't be added to the selection if an equally or more powerful spell of the same type is already present +skip_innate = false + diff --git a/config/additionalstructures-client.toml b/config/additionalstructures-client.toml new file mode 100644 index 0000000..267011b --- /dev/null +++ b/config/additionalstructures-client.toml @@ -0,0 +1,6 @@ + +#General +[general] + #Activate the Update-Checker + update-checker = true + diff --git a/config/addonslib-common.toml b/config/addonslib-common.toml new file mode 100644 index 0000000..4127559 --- /dev/null +++ b/config/addonslib-common.toml @@ -0,0 +1,5 @@ + +["AddonsLib Config !"] + #Filter the logs error for blockstate and model + "Define log filter" = true + diff --git a/config/advanced_ae-client.toml b/config/advanced_ae-client.toml new file mode 100644 index 0000000..5281ac5 --- /dev/null +++ b/config/advanced_ae-client.toml @@ -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 + diff --git a/config/advanced_ae-common.toml b/config/advanced_ae-common.toml new file mode 100644 index 0000000..3c23380 --- /dev/null +++ b/config/advanced_ae-common.toml @@ -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 + diff --git a/config/advancementplaques-common.toml b/config/advancementplaques-common.toml new file mode 100644 index 0000000..cb2ac47 --- /dev/null +++ b/config/advancementplaques-common.toml @@ -0,0 +1,75 @@ + +#Client Configuration +[client] + + [client.visual_options] + # If plaques should show on the top of the screen. + on_top = true + # The distance from the top or bottom of the screen, in pixels. + #Range: 8 ~ 256 + distance = 16 + # The horizontal offset from the center, in pixels. + #Range: -256 ~ 256 + horizontal_offset = 0 + # Hide waila/hwyla/jade popups while plaques are showing. + hide_waila = false + # If plaques should show for task advancements (normal advancements). + tasks = true + # If plaques should show for goal advancements (medium-difficulty advancements). + goals = true + # If plaques should show for challenge advancements (high-difficulty advancements). + challenges = true + # Text color to use for plaque titles (like "Advancement made!"). Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported. + title_color = "#FF332200" + # Text color to use for advancement names on plaques. Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported. + name_color = "#FFFFFFFF" + + [client.duration_options] + # Duration of the shiny effect fade in for tasks. + #Range: 0.1 ~ 3.0 + task_effect_fadein = 0.5 + # Duration of the shiny effect fade out for tasks. + #Range: 0.1 ~ 3.0 + task_effect_fadeout = 1.5 + # Duration of the plaques for tasks (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + task_duration = 7.0 + # Duration of the shiny effect fade in for goals. + #Range: 0.1 ~ 3.0 + goal_effect_fadein = 0.5 + # Duration of the shiny effect fade out for goals. + #Range: 0.1 ~ 3.0 + goal_effect_fadeout = 1.5 + # Duration of the plaques for goals (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + goal_duration = 7.0 + # Duration of the shiny effect fade in for challenges. + #Range: 0.1 ~ 3.0 + challenge_effect_fadein = 1.25 + # Duration of the shiny effect fade out for challenges. + #Range: 0.1 ~ 3.0 + challenge_effect_fadeout = 1.5 + # Duration of the plaques for challenges (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + challenge_duration = 7.0 + + [client.functionality_options] + # Blacklist of advancements to never show plaques for. Takes precedence over whitelist if they conflict. + # Options: + # Advancement ID (eg. "minecraft:adventure/adventuring_time") + # Mod ID (Omit the colon, eg. "minecraft") + # Advancement Category (End with a /, eg. "minecraft:story/") + blacklist = [] + # Whitelist of advancements to show plaques for. Leave empty to display for all. + # Same options available as blacklist. + whitelist = [] + # Volume of task sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + task_volume = 1.0 + # Volume of goal sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + goal_volume = 1.0 + # Volume of challenge sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + challenge_volume = 1.0 + diff --git a/config/ae2/client.json b/config/ae2/client.json new file mode 100644 index 0000000..4bde5de --- /dev/null +++ b/config/ae2/client.json @@ -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": "tall", + "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 + } +} \ No newline at end of file diff --git a/config/ae2/common.json b/config/ae2/common.json new file mode 100644 index 0000000..b2f2d17 --- /dev/null +++ b/config/ae2/common.json @@ -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": 10, + "InterfaceMax": 120, + "ImportBusMin": 10, + "ImportBusMax": 40, + "ExportBusMin": 10, + "ExportBusMax": 60, + "AnnihilationPlaneMin": 5, + "AnnihilationPlaneMax": 120, + "METunnelMin": 10, + "METunnelMax": 20, + "InscriberMin": 2, + "InscriberMax": 20, + "ChargerMin": 10, + "ChargerMax": 10, + "IOPortMin": 1, + "IOPortMax": 5, + "VibrationChamberMin": 10, + "VibrationChamberMax": 40, + "StorageBusMin": 10, + "StorageBusMax": 60, + "ItemTunnelMin": 10, + "ItemTunnelMax": 60, + "LightTunnelMin": 10, + "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 + } +} \ No newline at end of file diff --git a/config/ae2additions-common.toml b/config/ae2additions-common.toml new file mode 100644 index 0000000..cde936d --- /dev/null +++ b/config/ae2additions-common.toml @@ -0,0 +1,5 @@ + +[meWirelessTransceiver] + basePower = 10 + distanceMultiplier = 1.0 + diff --git a/config/aeroblender-common.toml b/config/aeroblender-common.toml new file mode 100644 index 0000000..2c89e5d --- /dev/null +++ b/config/aeroblender-common.toml @@ -0,0 +1,7 @@ + +[general] + #The size of aether biome regions from each mod that uses AeroBlender. + "Aether Region Size" = 2 + #The weighting of vanilla biome regions in the aether. + "Aether Region Weight" = 0 + diff --git a/config/aestheticstairs-common.toml b/config/aestheticstairs-common.toml new file mode 100644 index 0000000..56eb2e1 --- /dev/null +++ b/config/aestheticstairs-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/aether-client.toml b/config/aether-client.toml new file mode 100644 index 0000000..eba7d30 --- /dev/null +++ b/config/aether-client.toml @@ -0,0 +1,77 @@ + +[Rendering] + #Changes Zephyr and Aerwhale rendering to use their old models from the b1.7.3 version of the mod + "Switches to legacy mob models" = false + #Disables the Aether's custom skybox in case you have a shader that is incompatible with custom skyboxes + "Disables Aether custom skybox" = true + #Removes warm-tinting of the lightmap in the Aether, giving the lighting a colder feel + "Makes lightmap colder" = true + #Enables a green-tinted sunrise and sunset in the Aether, similar to the original mod + "Enables green sunrise/sunset" = false + +[Gui] + #Adds a button to the top right of the main menu screen to toggle between the Aether and vanilla menu + "Enables Aether menu button" = false + #Changes the background panorama into a preview of the latest played world + "Enables world preview" = false + #Adds a button to the top right of the main menu screen to toggle between the panorama and world preview + "Enables toggle world button" = true + #Adds a button to the top right of the main menu screen to allow quick loading into a world if the world preview is enabled + "Enables quick load button" = true + #Determines that menu elements will align left if the menu's world preview is active, if true, this overrides 'Align menu elements left' + "Align menu elements left with world preview" = false + #Determines the default Aether menu style to switch to with the menu theme button + "Default Aether menu style" = "aether:the_aether_left" + #Determines the default Minecraft menu style to switch to with the menu theme button + "Default Minecraft menu style" = "cumulus_menus:minecraft" + #Adds random trivia and tips to the bottom of loading screens + "Enables random trivia" = true + #Makes the extra hearts given by life shards display as silver colored + "Enables silver life shard hearts" = true + #Disables the Aether's accessories button from appearing in GUIs + "Disables the accessories button" = false + #The y-coordinate of the Ascending to the Aether and Descending from the Aether text in loading screens + "Portal text y-coordinate in loading screens" = 50 + #The x-coordinate of the accessories button in the inventory and curios menus + "Button x-coordinate in inventory menus" = 27 + #The y-coordinate of the accessories button in the inventory and curios menus + "Button y-coordinate in inventory menus" = 68 + #The x-coordinate of the accessories button in the creative menu + "Button x-coordinate in creative menu" = 74 + #The y-coordinate of the accessories button in the creative menu + "Button y-coordinate in creative menu" = 40 + #The x-coordinate of the accessories button in the accessories menu + "Button x-coordinate in accessories menu" = 9 + #The y-coordinate of the accessories button in the accessories menu + "Button y-coordinate in accessories menu" = 68 + #The x-coordinate of the perks button layout when in the pause menu + "Layout x-coordinate in pause menu" = -116 + #The y-coordinate of the perks button layout when in the pause menu + "Layout y-coordinate in pause menu" = 0 + #Enables the overlay at the top of the screen for the Hammer of Kingbdogz' cooldown + "Enables Hammer of Kingbdogz' cooldown overlay" = true + +[Audio] + #Makes Blue Aerclouds have their wobbly sounds that play when bouncing on them + "Blue Aercloud bouncing sounds" = true + #Sets the minimum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup minimum music delay" = 12000 + #Sets the maximum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup maximum music delay" = 24000 + #Disables the Aether's internal music manager, if true, this overrides all other audio configs + "Disables Aether music manager" = false + #Disables the Aether's boss fight music, only works if 'Disables Aether music manager' is false + "Disables Aether boss music" = false + #Disables the Aether's menu music in case another mod implements its own, only works if 'Disables Aether music manager' is false + "Disables Aether menu music" = false + #Disables the menu music on the vanilla world preview menu, only works if 'Disables Aether music manager' is false + "Disables vanilla world preview menu music" = false + #Disables the menu music on the Aether world preview menu, only works if 'Disables Aether music manager' is false + "Disables Aether world preview menu music" = false + +[Miscellaneous] + #Disables the Cumulus menu selection screen button on launch + "Disable Cumulus button" = false + #Enables a direct join button for the official server + "Enables server button" = false + diff --git a/config/aether-common.toml b/config/aether-common.toml new file mode 100644 index 0000000..2f1b472 --- /dev/null +++ b/config/aether-common.toml @@ -0,0 +1,25 @@ + +[Gameplay] + #Use the default Curios menu instead of the Aether's Accessories Menu. WARNING: Do not enable this without emptying your equipped accessories + "Use default Curios' menu" = false + #On world creation, the player is given an Aether Portal Frame item to automatically go to the Aether with + "Gives player Aether Portal Frame item" = false + #When the player enters the Aether, they are given a Book of Lore and Golden Parachutes as starting loot + "Gives starting loot on entry" = true + #Moves the message for when a player attacks the Slider with an incorrect item to be above the hotbar instead of in chat + "Reposition attack message above hotbar" = false + #Determines whether the Sun Spirit's dialogue when meeting him should play through every time you meet him + "Repeat Sun Spirit's battle dialogue" = true + #Determines if a message that links The Aether mod's Patreon should show + "Show Patreon message" = true + +["Data Pack"] + #Sets the Aether Temporary Freezing data pack to be added to new worlds automatically + "Add Temporary Freezing automatically" = false + #Sets the Aether Ruined Portals data pack to be added to new worlds automatically + "Add Ruined Portals automatically" = false + +[Modpack] + #Determines whether bosses should display a randomized name above their boss bar + "Randomize boss names" = true + diff --git a/config/aether_redux_client.toml b/config/aether_redux_client.toml new file mode 100644 index 0000000..16adfe7 --- /dev/null +++ b/config/aether_redux_client.toml @@ -0,0 +1,62 @@ + +[Rendering] + + [Rendering."Mob Model Upgrades"] + #Makes Moas resemble their Mutation models + "Moa Model Upgrade" = true + #Determines which model variation to use for the Moa. Refreshed is sort of a preview for a future design that will be used, the two legacy ones are from the old Moa Foot Type config to change between peaceful-appearing toes and menacing talons for the feet. + #Allowed Values: refreshed, legacy_toes, legacy_talons + "Moa Model Type" = "refreshed" + #Makes Cockatrices look far better + "Cockatrice Model Upgrade" = true + #Determines which model variation to use for the Cockatrice. Refreshed is sort of a preview for a future design that will be used, the legacy one uses Redux's previous iteration. + #Allowed Values: refreshed, legacy + "Cockatrice Model Type" = "refreshed" + #Improves the model for Sentries, giving them a new model and a springy jump animation + "Sentry Model Upgrade" = true + #Whether or not to use the upgraded Mimic model. Note that unless you use sync_with_server, there may be hitbox differences. + #Allowed Values: sync_with_server, modern_override, classic_override + "Mimic Model Upgrade" = "sync_with_server" + #Gives the Sheepuff's model some touchups and improvements + "Sheepuff Model Upgrade" = true + #Gives the Phyg's model some touchups and improvements + "Phyg Model Upgrade" = true + #Gives the Flying Cow's model some touchups and improvements + "Flying Cow Model Upgrade" = true + #Gives Whirlwinds a new design, based on Minecraft 1.21's new Breeze mob + "Improved Whirlwinds" = true + + [Rendering.GUI] + + [Rendering.GUI.Menu] + #Current folder used for the menu panorama + "Menu Directory" = "skyfields" + #Which menu panorama directories to cycle between. Make empty to disable cycling logic + "Menu Choices" = ["skyfields", "dungeon", "blight", "cloudcaps", "gilded"] + #Randomize menu panorama ranther than cycling in order. + "Randomize Menu Cycling" = false + #Center the mod's logo in the menu + "Center Aether: Redux Logo" = true + + [Rendering.Particles] + #Improves the leaf particles for Golden Oaks, Gilded Oaks, and Crystal Trees, based on Minecraft 1.20's new cherry tree particles. + "Better Leaf Particles" = true + +[Fixes] + #Fixes a forge/neoforge bug causing biome modifiers to not be able to change grass colors, so Redux can have vanilla grass use vanilla colors in the Aether + "Fix Biome Modifier Grass Bug" = true + +[Audio] + #Enables a slamming sound for mimics when using the new model. Disable if it gets too annoying XD + "Mimic Slam Sound Effect" = true + #Gives sounds to the other clouds for the Aether: Genesis when it is installed + "Aercloud Ability Sounds" = true + +[Internal] + #Internal value to do menu changes. Set this to false in modpacks if you want to use your own menu. + "First Startup - Menu Setup" = false + #Internal value to change an Aether config, giving a nicer lightmap in the dimension. + "First Startup - Lightmap Change" = false + #Value used to track the version of the Aether: Redux most recently used. + "Version ID" = "2.0.19" + diff --git a/config/aether_redux_common.toml b/config/aether_redux_common.toml new file mode 100644 index 0000000..70770b9 --- /dev/null +++ b/config/aether_redux_common.toml @@ -0,0 +1,106 @@ + +["Gameplay Changes"] + + ["Gameplay Changes"."Existing Mob Changes"] + #Makes Cockatrices shoot at you and chase you if they hit you. Also disables Cockatrice spawns in the Blight. Requires world restart to refresh existing mob AI. + "Improved Cockatrice Behavior" = true + #Makes Cockatrices burn in daylight. Requires world restart to refresh existing mob AI. + "Cockatrices burn in daylight" = false + #Gives Swets less irritating behavior, based on their behavior in older builds of the Paradise Lost mod. Requires world restart to refresh existing mob AI. + "PL-Like Swet Behavior" = true + #Decreases the size of mimics. Intended to be used with the client-side model. Requires an MC restart + "Smaller Mimic Hitbox" = true + #Causes mobs to try to avoid walking on quicksoil. + "Mobs Avoid Quicksoil" = true + + ["Gameplay Changes".Loot] + #Enables the Valkyrie Ring as a drop from Valkyries + "Valkyrie Ring" = true + + ["Gameplay Changes"."Mob Spawns"] + #Allows Endermen to spawn in the Aether + "Enderman Spawns" = false + #Allows Vanilla Swets to spawn in the Aether + "Vanilla Swet Spawns" = true + + ["Gameplay Changes"."Existing Content Alterations"] + #Nerfs Gummy Swets, but also makes them craftable. Note: Requires the Aether's Gummy Swet Healing config to be false to properly nerf the hunger effect. Requires datapack reload. + "Nerf Gummy Swets" = true + #Makes some Aether blocks take a bit longer to break, as they are extremely quick currently + "Consistent Mining Speeds" = false + #Changes quicksoil between various behaviors. Genesis is the most chaotic, highlands is the most fine-tuned, classic is the original + #Allowed Values: classic, genesis, highlands + "Quicksoil Movement System" = "highlands" + #Replaces Enchanted Gravitite with Gravitite Ingots. The blocks of this have the original floating behavior. + "Gravitite Ingots" = true + #Makes Light Dungeon stones use better recipes + "Better Light Dungeon Stone Recipes" = true + + ["Gameplay Changes".Additions] + #Use Raw ores for different Aether metals. + "Raw Ores" = true + + ["Gameplay Changes".Misc] + #Changes the hitboxes of vanilla double plants. Disable if it causes odd behavior. + "Change Double Plant Hitboxes" = true + #Gives blockstate conversion recipes (ambrosium, swet ball) alternate sounds + "Alternate Conversion Sounds" = false + +[Worldgen] + #Uses an alternative island noise for the Aether. By default, this is disabled with the Ancient Aether mod installed. + #Allowed Values: TRUE, FALSE, WITHOUT_AA + "Redux Noise" = "without_aa" + + [Worldgen."Additional Features"] + #Enables Mossy Holystone as an ore. Configurable so that if you disable it, it's easier to tell if you've come across a dungeon. + "Mossy Holystone Ores" = true + #Enables Enchanted/Gilded vines on trees + "Enable Enchanted and Gilded Vines" = true + #Uses the legacy design for the gilded groves, instead of the new one added in 2.0.17 that is an inbetween of 2.0 and 2.1's designs + "Legacy Gilded Groves Design" = false + + [Worldgen."Additional Features"."Cloud Layer"] + #Replaces the Aether's large cloud features with a new and improved noise-based cloud layer. + "Cloud Layer Generation" = true + #Minimum value for the cloud layer's noise threshold + #Range: -4.0 ~ 4.0 + "Cloud Layer Threshold Min" = 0.0 + #Maximum value for the cloud layer's noise threshold + #Range: -4.0 ~ 4.0 + "Cloud Layer Threshold Max" = 1.0 + + [Worldgen."Bronze Dungeon"] + #Adds dungeon mobs from the Aether: Genesis to the spawners added to the Bronze Dungeon if it is installed + #Allowed Values: sentry_only, all, no_golems + "Genesis Mobs in Spawners" = "all" + #Upgrades the Bronze Dungeon structure with new blocks and more depth + "Bronze Dungeon Upgrade" = true + + [Worldgen.Biomes] + #When enabled, any biome value config changes will be reset. It is recommended that you disable this if you want to keep any custom biome parameters you may have set. + "Auto-Reset Biome Values" = true + #The value of Redux's biome region size. Larger values correspond to larger biome clumps + "Region Size" = 20 + #Improves the water color of Aether biomes, making the color match the rest of the dimension better + "Better Water Color" = true + #Alters the sky colors of the Aether, to be a bit more in line with vanilla. Also adds some new unique colors as well to some of Redux's new biomes + "Alternate Sky Colors" = true + #Enables the Blight biome. + "Enable the Blight" = true + #Enables the Gilded Groves and Gilded Grasslands biomes. + "Enable Gilded Biomes" = true + #Enables the Frosted Tundra and Glacial Tagia biomes. + "Enable Snowy Biomes" = true + #Enables the Skyfields biome. + "Enable Skyfields" = true + #Enables the Cloudcaps biome. + "Enable the Cloudcaps" = true + #Enables the Skyroot Shrublands biome. + "Enable Skyroot Shrublands" = true + #Uses Enchanted Aether Grass for the ground in the Gilded Groves. May require a Minecraft restart. + "Enchanted Gilded Grass" = true + +[Internal] + #Internal value, used to decide if the Aeroblender configs should be changed + "First Startup - Aeroblender Setup" = true + diff --git a/config/aether_redux_pack_config.json b/config/aether_redux_pack_config.json new file mode 100644 index 0000000..2e4e0ce --- /dev/null +++ b/config/aether_redux_pack_config.json @@ -0,0 +1,22 @@ +{ + "mob": { + "purple_aechor_plants": true, + "cockatrice_texture": "blighted" + }, + "item": { + "veridium_type": "modern", + "swet_ball_type": "gel" + }, + "tintable_grass": true, + "mob_sounds": { + "better_sentry_sounds": true, + "better_cockatrice_sounds": false, + "better_aerwhale_sounds": true, + "better_mimic_awaken_sound": true, + "better_slider_sounds": true, + "better_aechor_sounds": true, + "better_moa_sounds": false, + "better_tempest_sounds": true + }, + "use_jappafied_textures": false +} diff --git a/config/aiimprovements-common.toml b/config/aiimprovements-common.toml new file mode 100644 index 0000000..9b081eb --- /dev/null +++ b/config/aiimprovements-common.toml @@ -0,0 +1,123 @@ + +#Entity Settings +[entity] + + #General + [entity.general] + #Allow AI tasks to be removed from entities at runtime. If this is disable no per mob or per mob type removes will run. + allow_remove_calls = true + #Allows repeat remove calls to bubble to the top of the list to improve performance of repeat mob spawning. + enable_call_bubbling = true + + #Entity Mob + [entity.mob] + + #Remove Look Goal + [entity.mob.remove_look_goal] + #Remove the look at goal (player or attack target) AI task. This will cause AIs to not face targets or walking directions. + remove_look_goal = false + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Remove Look Random + [entity.mob.remove_look_random] + #Remove the look at random position AI task. This will cause AIs to feel a little lifeless as they do not animate head movement while idle. + remove_look_random = false + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Replace Look Controller + [entity.mob.replace_look_controller] + #Replaces the default look controller with a version featuring cached tan math improving performance. Only works on vanilla style mobs, if a mod overrides the look controller it will skip. + replace_look_controller = true + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Entity Fish + [entity.fish] + #Remove the fish's random swimming pathfinder. This will cause fish to stay in position more often. + remove_swim = false + #Remove the fish's panic pathfinder. This will cause fish to not run away. + remove_panic = false + #Remove the fish's AI task to avoid players. + remove_avoid_player = false + #Remove the fish's AI task to follow a leader fish to act as a group of fish. + remove_follow_leader = false + #Remove the fish's AI task to puff up when entities are nearby + remove_puff = false + + #Squid Fish + [entity.squid] + #Remove the squid's flee pathfinder. This will cause squid to not run away. + remove_flee = false + #Remove the squid's random movement pathfinder. This will cause squid to swim around randomly. + remove_random_move = false + + #Cow + [entity.cow] + #Remove the cow's float AI task. This causes cows to no longer swim in water. + remove_float = false + #Remove the cow's panic AI task. This causes cows to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the cow's breed AI task. This causes cows to be unable to breed to create offspring. + remove_breed = false + #Remove the cow's tempt AI task. This causes cows to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the cow's follow parent AI task. This causes baby cows to no longer follow their parents. + remove_follow_parent = false + #Remove the cow's random stroll AI task. This causes cows to no longer walk around randomly. + remove_stroll = false + + #Chicken + [entity.chicken] + #Remove the chicken's float AI task. This causes chickens to no longer swim in water. + remove_float = false + #Remove the chicken's panic AI task. This causes chickens to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the chicken's breed AI task. This causes chickens to be unable to breed to create offspring. + remove_breed = false + #Remove the chicken's tempt AI task. This causes chickens to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the chicken's follow parent AI task. This causes baby chickens to no longer follow their parents. + remove_follow_parent = false + #Remove the chicken's random stroll AI task. This causes chickens to no longer walk around randomly. + remove_stroll = false + + #Pig + [entity.pig] + #Remove the pig's float AI task. This causes pigs to no longer swim in water. + remove_float = false + #Remove the pig's panic AI task. This causes pigs to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the pig's breed AI task. This causes pigs to be unable to breed to create offspring. + remove_breed = false + #Remove the pig's tempt AI task. This causes pigs to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the pig's follow parent AI task. This causes baby pigs to no longer follow their parents. + remove_follow_parent = false + #Remove the pig's random stroll AI task. This causes pigs to no longer walk around randomly. + remove_stroll = false + + #Sheep + [entity.sheep] + #Remove the sheep's float AI task. This causes sheep to no longer swim in water. + remove_float = false + #Remove the sheep's panic AI task. This causes sheep to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the sheep's breed AI task. This causes sheep to be unable to breed to create offspring. + remove_breed = false + #Remove the sheep's tempt AI task. This causes sheep to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the sheep's follow parent AI task. This causes baby sheep to no longer follow their parents. + remove_follow_parent = false + #Remove the sheep's random stroll AI task. This causes sheep to no longer walk around randomly. + remove_stroll = false + #Remove the sheep's eat block AI task. This causes sheep to no longer eat grass, and thus be unable to regenerate their wool. + remove_eat_block = false + diff --git a/config/aiotbotania-client.toml b/config/aiotbotania-client.toml new file mode 100644 index 0000000..496cdd6 --- /dev/null +++ b/config/aiotbotania-client.toml @@ -0,0 +1,5 @@ + +[particles] + #If set to false, particles will be disabled. [default: true] + enabled = true + diff --git a/config/aiotbotania-common.toml b/config/aiotbotania-common.toml new file mode 100644 index 0000000..481ac61 --- /dev/null +++ b/config/aiotbotania-common.toml @@ -0,0 +1,5 @@ + +[terra_tier] + #If set to false, the recipes for the Terrasteel AIOT will be disabled. [default: true] + enabled = true + diff --git a/config/akashictome-common.toml b/config/akashictome-common.toml new file mode 100644 index 0000000..ae49f9c --- /dev/null +++ b/config/akashictome-common.toml @@ -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 + diff --git a/config/alexscaves-client.toml b/config/alexscaves-client.toml new file mode 100644 index 0000000..3c3bc27 --- /dev/null +++ b/config/alexscaves-client.toml @@ -0,0 +1,35 @@ + +[visuals] + #whether to cave maps are visible when held by players from the third-person perspective. + cave_maps_visible_in_third_person = true + #whether to shake the screen from tremorsaurus stomping, nuclear explosions, etc. + screen_shaking = true + #true if some block models, like uranium ore or abyssmarine bricks render as fullbright. May increase load time, no gameplay performance impact. + emissive_block_models = false + #whether to make the screen flash white during nuclear explosions. + nuclear_bomb_flash = true + #true if some biomes, such as primordial caves, have ambient light that makes the biome easier to see in. + biome_ambient_light = true + #true if some biomes, such as toxic caves, apply a color to ambient light. May conflict with shaders. + biome_ambient_light_coloring = false + #true if some biomes, such as primordial caves, have an always well-lit sky when in them. May conflict with shaders. + biome_sky_overrides = false + #true if some biomes, such as abyssal chasm, have an thicker water fog to them. May conflict with shaders. + biome_sky_fog_overrides = false + #true if ambersol block renders with rays of light emerging from it. + ambersol_shines = false + #true if irradiated effect makes mobs glow. May conflict with shaders. + radiation_glow_effect = false + #determines how far to the left the subterranodon flight indicator renders on the screen when mounted. Negative numbers will render it on the right. + #Range: -12000 ~ 12000 + subterranodon_indicator_x = 22 + #determines how far from bottom the subterranodon flight indicator renders on the screen when mounted. + #Range: -12000 ~ 12000 + subterranodon_indicator_y = 6 + #true if sugar rush makes the world more saturated. May conflict with shaders. + sugar_rush_saturation_effect = false + +[audio] + #whether nuclear explosions briefly muffle other sounds. + nuclear_bomb_muffles_sounds = true + diff --git a/config/alexscaves-general.toml b/config/alexscaves-general.toml new file mode 100644 index 0000000..d015f9c --- /dev/null +++ b/config/alexscaves-general.toml @@ -0,0 +1,118 @@ + +[generation] + #Average radius (in blocks) of an Alex's Caves cave biome. + #Range: 10.0 ~ 1.7976931348623157E308 + cave_biome_mean_width = 300.0 + #Average separation (in blocks) between each Alex's Caves cave biome. + #Range: > 50 + cave_biome_mean_separation = 900 + #How irregularly shaped Alex's Caves cave biomes can generate. 0 = all biomes nearly circular. 1 = biomes completely squiggly in shape. + #Range: 0.0 ~ 1.0 + cave_biome_width_randomness = 0.15 + #Average spacing in between Alex's Caves cave biomes. 0 = all biomes nearly perfectly equidistant. 1 = biomes completely randomly spread out, sometimes next to eachother. + #Range: 0.0 ~ 1.0 + cave_biome_spacing_randomness = 0.45 + #Whether to warn users when a server starts if an incompatible generation mod is detected. + warn_generation_incompatibility = true + +[mob-spawning] + #Cave Creatures (All dinosaurs, raycats, etc) spawn at this frequency. Their cap is calculated by multiplying this number with the default mob cap for surface animals. + #Range: 0.0 ~ 10.0 + cave_creature_spawn_count_modifier = 1.75 + #The percent chance that drowned have to spawn wearing diving gear in the Abyssal Chasm. 0 = no diving gear wearing drowned will spawn + #Range: 0.0 ~ 1.0 + drowned_diving_gear_spawn_chance = 0.2 + +[mob-behavior] + #How many cpu cores big mobs(tremorzilla, atlatitan, grottoceratops etc) should utilize when pathing. Bigger number = less impact on TPS + #Range: 1 ~ 100 + pathfinding_threads = 5 + #Chance that blocks destroyed by luxtructosaurus attacks drop themselves, if mob griefing is enabled. + #Range: 0.0 ~ 1.0 + luxtructosaurus_block_drop_chance = 0.75 + #The maximum explosion resistance that a block can have to be destroyed by an atlatitan stomp. Set to zero to disable all atlatitan block breaking. + #Range: > 0 + atlatitan_max_block_explosion_resistance = 10 + #How long (in game ticks) it takes for a nucleeper to explode. + #Range: > 20 + nucleeper_fuse_time = 300 + #True if the Tremorzilla beam breaks even more blocks. + devastating_tremorzilla_beam = true + #Whether the Watcher can take control of the camera. + watcher_possession = true + #How long (in game ticks) between watcher possession attempts. + #Range: 20 ~ 24000 + watcher_possession_cooldown = 300 + +[block-behavior] + #True if players wearing boots can walk on any scarlet neodymium surface. + walking_on_magnets = true + #How long (in game ticks) it usually takes for an amber monolith to spawn an animal. + #Range: > 1000 + amber_monolith_mean_time = 32000 + #True if the Nuclear Furnace only uses 'Blasting' recipes, false to use all smelting recipes. + nuclear_furnace_blasting_only = true + #True if the Nuclear Furnace should only use recipes using the `alexscaves:nuclear_furnace` recipe type, false to use regular behavior. + nuclear_furnace_custom_type = false + +[item-behavior] + #True if one Cave Codex is all that is needed to unlock every Cave Compendium entry. + only_one_research_needed = false + #How many attempts to find a biome a cave map engages in when used. Increase this to increase the search radius, or decrease it to make them faster. + #Range: > 64 + cave_map_search_attempts = 128000 + #How wide each search attempt scans for a biome. Increasing this generally makes cave biome maps faster - at the cost of losing fidelity(may skip biomes smaller than this in block width). + #Range: 4 ~ 256 + cave_map_search_width = 64 + #The maximum explosion resistance that a block can have to be destroyed by a nuclear explosion. Set to zero to disable all nuclear explosion block breaking. + #Range: > 0 + nuke_max_block_explosion_resistance = 1000 + #Whether some block items are dropped by nuclear explosions. False if all destroyed blocks do not drop items. + nuke_spawn_item_drops = true + #The scale of nuclear bomb destruction. multiply this by 16 to get the radius of a nuclear bomb explosion. + #Range: 0.0 ~ 1.7976931348623157E308 + nuclear_explosion_size_modifier = 3.0 + #Whether the Totem of Possession can be applied to players. + totem_of_possession_works_on_players = true + #The amount of time (in ticks) it takes to charge up the Cloak of Darkness ability. + #Range: > 20 + darkness_cloak_charge_time = 1000 + #The amount of time (in ticks) that players can fly with the Cloak of Darkness ability. + #Range: > 20 + darkness_cloak_fly_time = 200 + +[potion-behavior] + #Whether the Sugar Rush changes the tick rate of the game in the area of affected players. + sugar_rush_slows_time = true + +[vanilla-changes] + #percent chance of bastion having a cave tablet for magnetic caves in its loot table: + #Range: 0.0 ~ 1.0 + magnetic_tablet_loot_chance = 0.45 + #percent chance of suspicious sand having a cave tablet for primordial caves in its loot table: + #Range: 0.0 ~ 1.0 + primordial_tablet_loot_chance = 0.15 + #percent chance of jungle temple having a cave tablet for toxic caves in its loot table: + #Range: 0.0 ~ 1.0 + toxic_tablet_loot_chance = 0.5 + #percent chance of underwater ruins having a cave tablet for abyssal chasm in its loot table: + #Range: 0.0 ~ 1.0 + abyssal_tablet_loot_chance = 0.4 + #percent chance of mansion having a cave tablet for forlorn hollows in its loot table: + #Range: 0.0 ~ 1.0 + forlorn_tablet_loot_chance = 0.75 + #percent chance of witch hut chest having a cave tablet for candy cavity in its loot table: + #Range: 0.0 ~ 1.0 + candy_cavity_loot_chance = 0.9 + #percent chance of abandoned mineshaft chests having a map to a nearby underground mineshaft in their loot table: + #Range: 0.0 ~ 1.0 + cabin_map_loot_chance = 0.15 + #Whether the Cartographer Villagers can sell maps to Underground Cabins. + cartographers_sell_cabin_maps = true + #Whether the Wandering Traders can sell maps to Underground Cabins. + wandering_traders_sell_cabin_maps = true + #Whether a loot chest is added to vanilla's witch huts. This is included to provide another place to find candy cavity biome cave tablets. + loot_chest_in_witch_huts = true + #Whether the Enchantments added by AC appear in vanilla loot tables. + enchantments_in_loot = false + diff --git a/config/alexscavesdelight-common.toml b/config/alexscavesdelight-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/config/alexscavesdelight-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/alexsmobs.toml b/config/alexsmobs.toml new file mode 100644 index 0000000..c3f9fd7 --- /dev/null +++ b/config/alexsmobs.toml @@ -0,0 +1,711 @@ + +[general] + #Whether all players should get an Animal Dictionary when joining the world for the first time. + giveBookOnStartup = true + #Lava Opacity for the Lava Vision Potion. + #Range: 0.01 ~ 1.0 + lavaVisionOpacity = 0.65 + #Whether to disable certain aspects of the Lava Vision Potion. Enable if issues with shaders persist. + shadersCompat = false + #Whether bananas should drop from blocks tagged with #alexsmobs:drops_bananas + bananasDropFromLeaves = true + #1 out of this number chance for leaves to drop a banana when broken. Fortune is automatically factored in + #Range: > 0 + bananaChance = 200 + #Whether spiders should target fly mobs. + spidersAttackFlies = true + #Whether wolves should target moose mobs. + wolvesAttackMoose = true + #Whether polar bears should target seal mobs. + polarBearsAttackSeals = true + #Whether cats, ocelots and foxes should target jerboa mobs. + catsAndFoxesAttackJerboas = true + #Whether dolphins should target flying fish mobs. + dolphinsAttackFlyingFish = true + #Whether lava can be bottled with a right click of a glass bottle. + lavaBottleEnabled = true + #Whether bone serpents are neutral or hostile. + neutralBoneSerpents = false + #Whether mimicubes spawns should be restricted solely to the end city structure or to whatever biome is specified in their respective biome config. + mimicubeSpawnInEndCity = true + #Whether mimicream can be used to duplicate items. + mimicreamRepair = true + #Blacklist for items that mimicream cannot make a copy of. Ex: "minecraft:stone_sword", "alexsmobs:blood_sprayer" + mimicreamBlacklist = ["alexsmobs:blood_sprayer", "alexsmobs:hemolymph_blaster"] + #Whether wild raccoons steal food from chests. + raccoonStealFromChests = true + #Whether wild crows steal crops from farmland. + crowsStealCrops = true + #Whether fish oil gives players a special levitation effect. + fishOilMeme = true + #Whether soul vulture spawns should be restricted solely to the nether fossil structure or to whatever biome is specified in their respective biome config. + soulVultureSpawnOnFossil = true + #Whether acacia blossoms should drop from blocks tagged with #alexsmobs:drops_acacia_blossoms + acaciaBlossomsDropFromLeaves = true + #1 out of this number chance for leaves to drop an acacia when broken. Fortune is automatically factored in + #Range: > 0 + acaciaBlossomChance = 130 + #Whether wandering traders offer items like acacia blossoms, mosquito larva, crocodile egg, etc. + wanderingTraderOffers = true + #0 = no mungus biome transformation. 1 = mungus changes blocks, but not chunk's biome. 2 = mungus transforms blocks and biome of chunk. + #Range: 0 ~ 2 + mungusBiomeTransformationType = 2 + #List of all mungus mushrooms, biome transformations and surface blocks. Each is seperated by a |. Add an entry with a block registry name, biome registry name, and block registry name(for the ground). + mungusBiomeMatches = ["minecraft:red_mushroom|minecraft:mushroom_fields|minecraft:mycelium", "minecraft:brown_mushroom|minecraft:mushroom_fields|minecraft:mycelium", "minecraft:crimson_fungus|minecraft:crimson_forest|minecraft:crimson_nylium", "minecraft:warped_fungus|minecraft:warped_forest|minecraft:warped_nylium"] + #Whether guster spawns are limited to when it is raining/thundering. + limitGusterSpawnsToWeather = true + #Whether Crimson Mosquitoes can transform into Warped Moscos if attacking a Mungus or any listed creature. + warpedMoscoTransformation = true + #List of extra(non mungus) mobs that will trigger a crimson mosquito to become a warped mosquito. Ex: "minecraft:mooshroom", "alexsmobs:warped_toad" + warpedMoscoMobTriggers = [""] + #True if straddleboard enchants are enabled. + straddleboardEnchants = true + #Whether emu should target skeletons. + emuTargetSkeletons = true + #Percent chance for emu leggings to dodge projectile attacks. + #Range: 0.0 ~ 1.0 + emuPantsDodgeChance = 0.45 + #Whether cachalots can destroy wood blocks if angry. + cachalotDestruction = true + #Relative volume of cachalot whales compared to other animals. Note that irl they are the loudest animal. Turn this down if you find their clicks annoying. + #Range: 0.0 ~ 10.0 + cachalotVolume = 3.0 + #Percent chance for fungus to grow per each leaf a leafcutter ant returns to the colony. + #Range: 0.0 ~ 1.0 + leafcutterAntFungusGrowChance = 0.3 + #How many feedings of leaves does a leafcutter colony need in order to regain a worker ant, if below half the max members. + #Range: 2 ~ 100000 + leafcutterAntRepopulateFeedings = 25 + #Max number of ant entities allowed inside a leafcutter anthill. + #Range: 2 ~ 100000 + leafcutterAntColonySize = 10 + #Percent chance for leafcutter ants to break leaves blocks when harvesting. Set to zero so that they can not break any blocks. + #Range: 0.0 ~ 1.0 + leafcutterAntBreakLeavesChance = 0.2 + #Makes eagles teleport back to their owner if they get stuck during controlled flight. Useful for when playing with the Optifine mod, since this mod is the fault of many issues with the falconry system. + falconryTeleportsBack = false + #Makes Tarantula Hawks fireproof, perfect if you also want these guys to spawn in the nether. + fireproofTarantulaHawk = false + #List of dimensions in which spawning void worms via mysterious worm items is allowed. + voidWormSpawnDimensions = ["minecraft:the_end"] + #All void worm damage is scaled to this. + #Range: 0.0 ~ 100.0 + voidWormDamageModifier = 1.0 + #Max Health of the void worm boss. + #Range: 0.0 ~ 1000000.0 + voidWormMaxHealth = 160.0 + #Whether the void worm boss is summonable or not, via the mysterious worm item. + voidWormSummonable = true + #Whether seagulls should steal food out of players' hotbar slots. + seagullStealing = true + #List of items that seagulls cannot take from players. + seagullStealingBlacklist = [] + #Whether the Clinging Potion effect should flip the screen. Warning: may cause nausea. + clingingFlipEffect = false + #Percent chance of getting Pigshoes from Piglin Bartering. Set to zero to disable. + #Range: 0.0 ~ 1.0 + tusklinShoesBarteringChance = 0.02500000037252903 + #The visual zoom of the rainbow pattern on the rainbow glass block. Higher number = bigger pattern. + #Range: 1.0 ~ 10000.0 + rainbowGlassFidelity = 16.0 + #Whether Rabbits can transform into Bunfungus if fed Mungal spores. + bunfungusTransformation = true + #True if some Alex's Mobs items should spawn in loot chests. + addLootToChests = true + #List of items that cannot be put in a Transmuting Table. + transmutationBlacklist = ["minecraft:beacon"] + #True if transmutation tables should not have the ability to pick up new items to transmute, and only give options from the loot tables. + limitTransmutingToLootTables = false + #True if transmutation tables can explode when broken. + transmutingTableExplodes = true + #The experience, in levels, that each transmutation of a stack takes in the transmuting table. + #Range: 0 ~ 100000 + transmutingExperienceCost = 3 + #The step value multiplied by the log of the stack size when transmuting an item, used to determine its weight for appearing in future transmutation possibilities. Higher number = more likely to appear. + #Range: 1.0 ~ 10000.0 + transmutingWeightAddStep = 3.0 + #The step value that an item looses when selecting it as the transmutation result. Keep this number higher than the one above for balance reasons. Higher number = less likely to appear after transmuting multiple times. + #Range: 1.0 ~ 10000.0 + transmutingWeightRemoveStep = 4.0 + #True if skreechers can summon a new warden, when applicable. + skreechersSummonWarden = true + #The distance in blocks that will cause an underminer to dissapear when approached by a player. + #Range: 1.0 ~ 10000.0 + underminerDisappearDistance = 8.0 + +[spawning] + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + grizzlyBearSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + grizzlyBearSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + roadrunnerSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + roadrunnerSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + boneSerpentSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + boneSeprentSpawnRolls = 40 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + gazelleSpawnWeight = 40 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + gazelleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + crocodileSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + crocSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + flySpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + flySpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + hummingbirdSpawnWeight = 19 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + hummingbirdSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + orcaSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + orcaSpawnRolls = 6 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + sunbirdSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + sunbirdSpawnRolls = 6 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + gorillaSpawnWeight = 25 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + gorillaSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + crimsonMosquitoSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + crimsonMosquitoSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + rattlesnakeSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + rattlesnakeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + endergradeSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + endergradeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + hammerheadSharkSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + hammerheadSharkSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + lobsterSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + lobsterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + komodoDragonSpawnWeight = 16 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + komodoDragonSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + capuchinMonkeySpawnWeight = 28 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + capuchinMonkeySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + caveCentipedeSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + caveCentipedeSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + warpedToadSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + warpedToadSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mooseSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mooseSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mimicubeSpawnWeight = 40 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mimicubeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + raccoonSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + raccoonSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + blobfishSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + blobfishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + sealSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + sealSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + cockroachSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + cockroachSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + shoebillSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + shoebillSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + elephantSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + elephantSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + soulVultureSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + soulVultureSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + snowLeopardSpawnWeight = 18 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + snowLeopardSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + spectreSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + spectreSpawnRolls = 5 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + crowSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + crowSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + alligatorSnappingTurtleSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + alligatorSnappingTurtleSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mungusSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mungusSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mantisShrimpSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mantisShrimpSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + gusterSpawnWeight = 35 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + gusterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn. NOTE: By default the warped mosco doesn't spawn in any biomes. + #Range: 0 ~ 1000 + warpedMoscoSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + warpedMoscoSpawnRolls = 1000 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + straddlerSpawnWeight = 70 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + straddlerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + stradpoleSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + stradpoleSpawnRolls = 3 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + emuSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + emuSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + platypusSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + platypusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + dropbearSpawnWeight = 19 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + dropbearSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + tasmanianDevilSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + tasmanianDevilSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + kangarooSpawnWeight = 25 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + kangarooSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + cachalotWhaleSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + cachalotWhaleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + enderiophageSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + enderiophageSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + baldEagleSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + baldEagleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + tigerSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + tigerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + tarantulaHawkSpawnWeight = 6 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + tarantulaHawkSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + voidWormSpawnWeight = 0 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + voidWormSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + frilledSharkSpawnWeight = 11 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + frilledSharkSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mimicOctopusSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mimicOctopusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + seagullSpawnWeight = 21 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + seagullSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + froststalkerSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + froststalkerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + tusklinSpawnWeight = 18 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + tusklinSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + laviathanSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + laviathanSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + cosmawSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + cosmawSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + toucanSpawnWeight = 23 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + toucanSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + manedWolfSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + manedWolfSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + anacondaSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + anacondaSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + anteaterSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + anteaterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + rockyRollerSpawnWeight = 60 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + rockyRollerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + flutterSpawnWeight = 13 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + flutterSpawnRolls = 0 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + geladaMonkeySpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + geladaMonkeySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + jerboaSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + jerboaSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + terrapinSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + terrapinSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + combJellySpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + combJellySpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + cosmicCodSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + cosmicCodSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + bunfungusSpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + bunfungusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + bisonSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + bisonSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + giantSquidSpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + giantSquidSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn (NOTE: this mob spawns are restricted exclusively to one chunk, see below) + #Range: 0 ~ 1000 + devilsHolePupfishSpawnWeight = 23 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning (NOTE: this mob spawns are restricted exclusively to one chunk, see below) + #Range: > 0 + devilsHolePupfishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + catfishSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + catfishSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + flyingFishSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + flyingFishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + skelewagSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + skelewagSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + rainFrogSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + rainFrogSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + potooSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + potooSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + mudskipperSpawnWeight = 28 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + mudskipperSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + rhinocerosSpawnWeight = 24 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + rhinocerosSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + sugarGliderSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + sugarGliderSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + farseerSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + farseerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + skreecherSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + skreecherSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + underminerSpawnWeight = 50 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + underminerSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + murmurSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + murmurSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + skunkSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + skunkSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + bananaSlugSpawnWeight = 14 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + bananaSlugSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + blueJaySpawnWeight = 16 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + blueJaySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + caimanSpawnWeight = 29 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + caimanSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + triopsSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + triopsSpawnRolls = 0 + +[uniqueSpawning] + #Maximum world y-level that cave centipedes can spawn at + #Range: -64 ~ 320 + caveCentipedeSpawnHeight = 0 + #Maximum world y-level that blobfish can spawn at + #Range: -64 ~ 320 + blobfishSpawnHeight = 25 + #Whether to enable beached cachalot whales to spawn on beaches during thunder storms. + beachedCachalotWhales = true + #Percent chance increase for each failed attempt to spawn a beached cachalot whale. Higher value = more spawns. + #Range: 0 ~ 100 + beachedCachalotWhaleSpawnChance = 5 + #Delay (in ticks) between attempts to spawn beached cachalot whales. Default is a single day. Works like wandering traders. + #Range: > 0 + beachedCachalotWhaleSpawnDelay = 24000 + #Percent chance for leafcutter anthills to spawn as world gen in each chunk. Set to zero to disable spawning. + #Range: 0.0 ~ 1.0 + leafcutterAnthillSpawnChance = 0.004999999888241291 + #Minimum world y-level that gelada monkeys can spawn at + #Range: -64 ~ 320 + geladaMonkeySpawnRolls = 0 + #Whether to restrict all pupfish spawns to one chunk (similar to real life) or have them only obey their spawn config. + restrictPupfishSpawns = true + #The maximum distance a pupfish spawn chunk is from world spawn(0, 0) in blocks. + #Range: 2 ~ 1000000000 + pupfishChunkSpawnDistance = 2000 + #Whether to restrict all skelewag spawns to shipwreck structures. + restrictSkelewagSpawns = true + #Whether to restrict all farseer spawns to near the world border. + restrictFarseerSpawns = true + #Whether to restrict all underminer spawns to abandoned mineshafts. + restrictUnderminerSpawns = true + #The maximum distance a farseer can spawn from the world border. + #Range: 2 ~ 1000000000 + farseerBorderSpawnDistance = 100 + #Maximum world y-level that murmur can spawn at + #Range: -64 ~ 320 + murmurSpawnHeight = -30 + +[dangerZone] + #Its been so long... + superSecretSettings = false + #How many cpu cores some mobs(elephants, leafcutter ants, bison etc) should utilize when pathing. Bigger number = less impact on TPS + #Range: 1 ~ 100 + pathfindingThreads = 5 + diff --git a/config/alexsmobs/alligator_snapping_turtle_spawns.json b/config/alexsmobs/alligator_snapping_turtle_spawns.json new file mode 100644 index 0000000..4b16aa1 --- /dev/null +++ b/config/alexsmobs/alligator_snapping_turtle_spawns.json @@ -0,0 +1,42 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/anaconda_spawns.json b/config/alexsmobs/anaconda_spawns.json new file mode 100644 index 0000000..060e62b --- /dev/null +++ b/config/alexsmobs/anaconda_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/anteater_spawns.json b/config/alexsmobs/anteater_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/anteater_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bald_eagle_spawns.json b/config/alexsmobs/bald_eagle_spawns.json new file mode 100644 index 0000000..be3b63c --- /dev/null +++ b/config/alexsmobs/bald_eagle_spawns.json @@ -0,0 +1,147 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_coniferous" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:windswept_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:haze_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:jade_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/banana_slug_spawns.json b/config/alexsmobs/banana_slug_spawns.json new file mode 100644 index 0000000..81f3902 --- /dev/null +++ b/config/alexsmobs/banana_slug_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_pine_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_spruce_taiga" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dense/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:coniferous_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:fir_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "autumnity:maple_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bison_spawns.json b/config/alexsmobs/bison_spawns.json new file mode 100644 index 0000000..a1dbec2 --- /dev/null +++ b/config/alexsmobs/bison_spawns.json @@ -0,0 +1,96 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_hot/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:meadow" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:field" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:forested_field" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:grassland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:pasture" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:prairie" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/blobfish_spawns.json b/config/alexsmobs/blobfish_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/blobfish_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/blue_jay_spawns.json b/config/alexsmobs/blue_jay_spawns.json new file mode 100644 index 0000000..1ce676d --- /dev/null +++ b/config/alexsmobs/blue_jay_spawns.json @@ -0,0 +1,215 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bone_serpent_spawns.json b/config/alexsmobs/bone_serpent_spawns.json new file mode 100644 index 0000000..3f525e3 --- /dev/null +++ b/config/alexsmobs/bone_serpent_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_nether" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bunfungus_spawns.json b/config/alexsmobs/bunfungus_spawns.json new file mode 100644 index 0000000..2a6584c --- /dev/null +++ b/config/alexsmobs/bunfungus_spawns.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mushroom" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cachalot_whale_beached_spawns.json b/config/alexsmobs/cachalot_whale_beached_spawns.json new file mode 100644 index 0000000..088de5d --- /dev/null +++ b/config/alexsmobs/cachalot_whale_beached_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cachalot_whale_spawns.json b/config/alexsmobs/cachalot_whale_spawns.json new file mode 100644 index 0000000..174f592 --- /dev/null +++ b/config/alexsmobs/cachalot_whale_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/caiman_spawns.json b/config/alexsmobs/caiman_spawns.json new file mode 100644 index 0000000..18313e1 --- /dev/null +++ b/config/alexsmobs/caiman_spawns.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/underground_jungle" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/capuchin_monkey_spawns.json b/config/alexsmobs/capuchin_monkey_spawns.json new file mode 100644 index 0000000..08528b2 --- /dev/null +++ b/config/alexsmobs/capuchin_monkey_spawns.json @@ -0,0 +1,65 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/catfish_spawns.json b/config/alexsmobs/catfish_spawns.json new file mode 100644 index 0000000..d55c85c --- /dev/null +++ b/config/alexsmobs/catfish_spawns.json @@ -0,0 +1,59 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cave_centipede_spawns.json b/config/alexsmobs/cave_centipede_spawns.json new file mode 100644 index 0000000..36cadab --- /dev/null +++ b/config/alexsmobs/cave_centipede_spawns.json @@ -0,0 +1,115 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cockroach_spawns.json b/config/alexsmobs/cockroach_spawns.json new file mode 100644 index 0000000..1495c2a --- /dev/null +++ b/config/alexsmobs/cockroach_spawns.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/comb_jelly_spawns.json b/config/alexsmobs/comb_jelly_spawns.json new file mode 100644 index 0000000..a8a4336 --- /dev/null +++ b/config/alexsmobs/comb_jelly_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_frozen_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cosmaw_spawns.json b/config/alexsmobs/cosmaw_spawns.json new file mode 100644 index 0000000..a2fb00f --- /dev/null +++ b/config/alexsmobs/cosmaw_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:small_end_islands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cosmic_cod_spawns.json b/config/alexsmobs/cosmic_cod_spawns.json new file mode 100644 index 0000000..0881425 --- /dev/null +++ b/config/alexsmobs/cosmic_cod_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crimson_mosquito_spawns.json b/config/alexsmobs/crimson_mosquito_spawns.json new file mode 100644 index 0000000..583af2d --- /dev/null +++ b/config/alexsmobs/crimson_mosquito_spawns.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:crimson_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crimson_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:visceral_heap" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:ash_barrens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:infernal_dunes" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crocodile_spawns.json b/config/alexsmobs/crocodile_spawns.json new file mode 100644 index 0000000..b21c25c --- /dev/null +++ b/config/alexsmobs/crocodile_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tropic_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crow_spawns.json b/config/alexsmobs/crow_spawns.json new file mode 100644 index 0000000..21785c8 --- /dev/null +++ b/config/alexsmobs/crow_spawns.json @@ -0,0 +1,276 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/devils_hole_pupfish_spawns.json b/config/alexsmobs/devils_hole_pupfish_spawns.json new file mode 100644 index 0000000..d45a798 --- /dev/null +++ b/config/alexsmobs/devils_hole_pupfish_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/dropbear_spawns.json b/config/alexsmobs/dropbear_spawns.json new file mode 100644 index 0000000..f010ec0 --- /dev/null +++ b/config/alexsmobs/dropbear_spawns.json @@ -0,0 +1,23 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:nether_wastes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:crystalline_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/elephant_spawns.json b/config/alexsmobs/elephant_spawns.json new file mode 100644 index 0000000..d3cb024 --- /dev/null +++ b/config/alexsmobs/elephant_spawns.json @@ -0,0 +1,65 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/emu_spawns.json b/config/alexsmobs/emu_spawns.json new file mode 100644 index 0000000..a4c10bf --- /dev/null +++ b/config/alexsmobs/emu_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:lush_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/endergrade_spawns.json b/config/alexsmobs/endergrade_spawns.json new file mode 100644 index 0000000..f806db3 --- /dev/null +++ b/config/alexsmobs/endergrade_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/enderiophage_spawns.json b/config/alexsmobs/enderiophage_spawns.json new file mode 100644 index 0000000..6c273fd --- /dev/null +++ b/config/alexsmobs/enderiophage_spawns.json @@ -0,0 +1,31 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:end_barrens" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:end_highlands" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:small_end_islands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/farseer.json b/config/alexsmobs/farseer.json new file mode 100644 index 0000000..d205c7d --- /dev/null +++ b/config/alexsmobs/farseer.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mushroom_fields" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/flutter_spawns.json b/config/alexsmobs/flutter_spawns.json new file mode 100644 index 0000000..4c3d891 --- /dev/null +++ b/config/alexsmobs/flutter_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lush_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/fly_spawns.json b/config/alexsmobs/fly_spawns.json new file mode 100644 index 0000000..d45a798 --- /dev/null +++ b/config/alexsmobs/fly_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/flying_fish_spawns.json b/config/alexsmobs/flying_fish_spawns.json new file mode 100644 index 0000000..f58b697 --- /dev/null +++ b/config/alexsmobs/flying_fish_spawns.json @@ -0,0 +1,36 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_hot/overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_ocean" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_lukewarm_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/frilled_shark_spawns.json b/config/alexsmobs/frilled_shark_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/frilled_shark_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/froststalker_spawns.json b/config/alexsmobs/froststalker_spawns.json new file mode 100644 index 0000000..ab0af45 --- /dev/null +++ b/config/alexsmobs/froststalker_spawns.json @@ -0,0 +1,53 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:ice_spikes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:frozen_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:glacial_chasm" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gazelle_spawns.json b/config/alexsmobs/gazelle_spawns.json new file mode 100644 index 0000000..a7734ba --- /dev/null +++ b/config/alexsmobs/gazelle_spawns.json @@ -0,0 +1,60 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gelada_monkey_spawns.json b/config/alexsmobs/gelada_monkey_spawns.json new file mode 100644 index 0000000..bca3a19 --- /dev/null +++ b/config/alexsmobs/gelada_monkey_spawns.json @@ -0,0 +1,56 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/giant_squid_spawns.json b/config/alexsmobs/giant_squid_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/giant_squid_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gorilla_spawns.json b/config/alexsmobs/gorilla_spawns.json new file mode 100644 index 0000000..299b548 --- /dev/null +++ b/config/alexsmobs/gorilla_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/grizzly_bear_spawns.json b/config/alexsmobs/grizzly_bear_spawns.json new file mode 100644 index 0000000..1ce676d --- /dev/null +++ b/config/alexsmobs/grizzly_bear_spawns.json @@ -0,0 +1,215 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/guster_spawns.json b/config/alexsmobs/guster_spawns.json new file mode 100644 index 0000000..fbd8bde --- /dev/null +++ b/config/alexsmobs/guster_spawns.json @@ -0,0 +1,61 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ashen_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/hammerhead_shark_spawns.json b/config/alexsmobs/hammerhead_shark_spawns.json new file mode 100644 index 0000000..a94d3bc --- /dev/null +++ b/config/alexsmobs/hammerhead_shark_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/hummingbird_spawns.json b/config/alexsmobs/hummingbird_spawns.json new file mode 100644 index 0000000..2e05b9a --- /dev/null +++ b/config/alexsmobs/hummingbird_spawns.json @@ -0,0 +1,165 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:flower_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:sunflower_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:meadow" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/jerboa_spawns.json b/config/alexsmobs/jerboa_spawns.json new file mode 100644 index 0000000..6ef57f6 --- /dev/null +++ b/config/alexsmobs/jerboa_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/kangaroo_spawns.json b/config/alexsmobs/kangaroo_spawns.json new file mode 100644 index 0000000..a4c10bf --- /dev/null +++ b/config/alexsmobs/kangaroo_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:lush_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/komodo_dragon_spawns.json b/config/alexsmobs/komodo_dragon_spawns.json new file mode 100644 index 0000000..1035283 --- /dev/null +++ b/config/alexsmobs/komodo_dragon_spawns.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_dense/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tropics" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/laviathan_spawns.json b/config/alexsmobs/laviathan_spawns.json new file mode 100644 index 0000000..ff48a93 --- /dev/null +++ b/config/alexsmobs/laviathan_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_nether" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/leafcutter_anthill_spawns.json b/config/alexsmobs/leafcutter_anthill_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/leafcutter_anthill_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/lobster_spawns.json b/config/alexsmobs/lobster_spawns.json new file mode 100644 index 0000000..7fa2c6e --- /dev/null +++ b/config/alexsmobs/lobster_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/maned_wolf_spawns.json b/config/alexsmobs/maned_wolf_spawns.json new file mode 100644 index 0000000..625277a --- /dev/null +++ b/config/alexsmobs/maned_wolf_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mantis_shrimp_spawns.json b/config/alexsmobs/mantis_shrimp_spawns.json new file mode 100644 index 0000000..16db18c --- /dev/null +++ b/config/alexsmobs/mantis_shrimp_spawns.json @@ -0,0 +1,23 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mimic_octopus_spawns.json b/config/alexsmobs/mimic_octopus_spawns.json new file mode 100644 index 0000000..c14901e --- /dev/null +++ b/config/alexsmobs/mimic_octopus_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_warm_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mimicube_spawns.json b/config/alexsmobs/mimicube_spawns.json new file mode 100644 index 0000000..47994ba --- /dev/null +++ b/config/alexsmobs/mimicube_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/moose_spawns.json b/config/alexsmobs/moose_spawns.json new file mode 100644 index 0000000..f4399ad --- /dev/null +++ b/config/alexsmobs/moose_spawns.json @@ -0,0 +1,122 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_wasteland" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowy_coniferous_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowy_fir_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "snowy_maple_woods" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mudskipper_spawns.json b/config/alexsmobs/mudskipper_spawns.json new file mode 100644 index 0000000..18313e1 --- /dev/null +++ b/config/alexsmobs/mudskipper_spawns.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/underground_jungle" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mungus_spawns.json b/config/alexsmobs/mungus_spawns.json new file mode 100644 index 0000000..2a6584c --- /dev/null +++ b/config/alexsmobs/mungus_spawns.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mushroom" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/murmur.json b/config/alexsmobs/murmur.json new file mode 100644 index 0000000..36cadab --- /dev/null +++ b/config/alexsmobs/murmur.json @@ -0,0 +1,115 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/orca_spawns.json b/config/alexsmobs/orca_spawns.json new file mode 100644 index 0000000..f0a1e99 --- /dev/null +++ b/config/alexsmobs/orca_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_cold/overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/platypus_spawns.json b/config/alexsmobs/platypus_spawns.json new file mode 100644 index 0000000..1e5423d --- /dev/null +++ b/config/alexsmobs/platypus_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/potoo_spawns.json b/config/alexsmobs/potoo_spawns.json new file mode 100644 index 0000000..2879be6 --- /dev/null +++ b/config/alexsmobs/potoo_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:dark_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/raccoon_spawns.json b/config/alexsmobs/raccoon_spawns.json new file mode 100644 index 0000000..e16bd04 --- /dev/null +++ b/config/alexsmobs/raccoon_spawns.json @@ -0,0 +1,199 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rain_frog_spawns.json b/config/alexsmobs/rain_frog_spawns.json new file mode 100644 index 0000000..6ef57f6 --- /dev/null +++ b/config/alexsmobs/rain_frog_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rattlesnake_spawns.json b/config/alexsmobs/rattlesnake_spawns.json new file mode 100644 index 0000000..3352b1e --- /dev/null +++ b/config/alexsmobs/rattlesnake_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rhinoceros_spawns.json b/config/alexsmobs/rhinoceros_spawns.json new file mode 100644 index 0000000..a7734ba --- /dev/null +++ b/config/alexsmobs/rhinoceros_spawns.json @@ -0,0 +1,60 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/roadrunner_spawns.json b/config/alexsmobs/roadrunner_spawns.json new file mode 100644 index 0000000..3352b1e --- /dev/null +++ b/config/alexsmobs/roadrunner_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rocky_roller_spawns.json b/config/alexsmobs/rocky_roller_spawns.json new file mode 100644 index 0000000..787e0af --- /dev/null +++ b/config/alexsmobs/rocky_roller_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:dripstone_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/seagull_spawns.json b/config/alexsmobs/seagull_spawns.json new file mode 100644 index 0000000..3941d71 --- /dev/null +++ b/config/alexsmobs/seagull_spawns.json @@ -0,0 +1,72 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:basalt_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:granite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/seal_spawns.json b/config/alexsmobs/seal_spawns.json new file mode 100644 index 0000000..85ea3a1 --- /dev/null +++ b/config/alexsmobs/seal_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/shoebill_spawns.json b/config/alexsmobs/shoebill_spawns.json new file mode 100644 index 0000000..f4c46ba --- /dev/null +++ b/config/alexsmobs/shoebill_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skelewag_spawns.json b/config/alexsmobs/skelewag_spawns.json new file mode 100644 index 0000000..90178eb --- /dev/null +++ b/config/alexsmobs/skelewag_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skreecher.json b/config/alexsmobs/skreecher.json new file mode 100644 index 0000000..4266dd1 --- /dev/null +++ b/config/alexsmobs/skreecher.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "alexsmobs:skreechers_can_spawn_wardens" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skunk_spawns.json b/config/alexsmobs/skunk_spawns.json new file mode 100644 index 0000000..4298ec0 --- /dev/null +++ b/config/alexsmobs/skunk_spawns.json @@ -0,0 +1,108 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/snow_leopard_spawns.json b/config/alexsmobs/snow_leopard_spawns.json new file mode 100644 index 0000000..3308b7d --- /dev/null +++ b/config/alexsmobs/snow_leopard_spawns.json @@ -0,0 +1,98 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:snowy_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:jagged_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:frozen_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:glacial_chasm" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:emerald_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:scarlet_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/soul_vulture_spawns.json b/config/alexsmobs/soul_vulture_spawns.json new file mode 100644 index 0000000..02d3435 --- /dev/null +++ b/config/alexsmobs/soul_vulture_spawns.json @@ -0,0 +1,30 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:soul_sand_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:warped_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:weeping_valley" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/spectre_spawns.json b/config/alexsmobs/spectre_spawns.json new file mode 100644 index 0000000..f806db3 --- /dev/null +++ b/config/alexsmobs/spectre_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/straddler_spawns.json b/config/alexsmobs/straddler_spawns.json new file mode 100644 index 0000000..eaed4b0 --- /dev/null +++ b/config/alexsmobs/straddler_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:basalt_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:withered_abyss" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:volcanic_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:withered_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/stradpole_spawns.json b/config/alexsmobs/stradpole_spawns.json new file mode 100644 index 0000000..eaed4b0 --- /dev/null +++ b/config/alexsmobs/stradpole_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:basalt_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:withered_abyss" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:volcanic_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:withered_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/sugar_glider_spawns.json b/config/alexsmobs/sugar_glider_spawns.json new file mode 100644 index 0000000..0c36a53 --- /dev/null +++ b/config/alexsmobs/sugar_glider_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:birch_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_birch_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/sunbird_spawns.json b/config/alexsmobs/sunbird_spawns.json new file mode 100644 index 0000000..181ee55 --- /dev/null +++ b/config/alexsmobs/sunbird_spawns.json @@ -0,0 +1,212 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:snowy_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:jagged_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:emerald_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:painted_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:scarlet_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:stony_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:volcanic_crater" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:volcanic_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yellowstone" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:haze_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:windswept_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:basalt_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:granite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tarantula_hawk_spawns.json b/config/alexsmobs/tarantula_hawk_spawns.json new file mode 100644 index 0000000..6ef57f6 --- /dev/null +++ b/config/alexsmobs/tarantula_hawk_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tasmanian_devil_spawns.json b/config/alexsmobs/tasmanian_devil_spawns.json new file mode 100644 index 0000000..ed47b2a --- /dev/null +++ b/config/alexsmobs/tasmanian_devil_spawns.json @@ -0,0 +1,101 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/terrapin_spawns.json b/config/alexsmobs/terrapin_spawns.json new file mode 100644 index 0000000..1e5423d --- /dev/null +++ b/config/alexsmobs/terrapin_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tiger_spawns.json b/config/alexsmobs/tiger_spawns.json new file mode 100644 index 0000000..7ed2e68 --- /dev/null +++ b/config/alexsmobs/tiger_spawns.json @@ -0,0 +1,67 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:bamboo_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/toucan_spawns.json b/config/alexsmobs/toucan_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/toucan_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/triops_spawns.json b/config/alexsmobs/triops_spawns.json new file mode 100644 index 0000000..6ef57f6 --- /dev/null +++ b/config/alexsmobs/triops_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tusklin_spawns.json b/config/alexsmobs/tusklin_spawns.json new file mode 100644 index 0000000..7b0d113 --- /dev/null +++ b/config/alexsmobs/tusklin_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:ice_spikes" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/underminer.json b/config/alexsmobs/underminer.json new file mode 100644 index 0000000..1495c2a --- /dev/null +++ b/config/alexsmobs/underminer.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/void_worm_spawns.json b/config/alexsmobs/void_worm_spawns.json new file mode 100644 index 0000000..333b7b9 --- /dev/null +++ b/config/alexsmobs/void_worm_spawns.json @@ -0,0 +1,3 @@ +{ + "biomes": [] +} \ No newline at end of file diff --git a/config/alexsmobs/warped_mosco_spawns.json b/config/alexsmobs/warped_mosco_spawns.json new file mode 100644 index 0000000..333b7b9 --- /dev/null +++ b/config/alexsmobs/warped_mosco_spawns.json @@ -0,0 +1,3 @@ +{ + "biomes": [] +} \ No newline at end of file diff --git a/config/alexsmobs/warped_toad_spawns.json b/config/alexsmobs/warped_toad_spawns.json new file mode 100644 index 0000000..19fc787 --- /dev/null +++ b/config/alexsmobs/warped_toad_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warped_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crimson_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:warped_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:inverted_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:quartz_flats" + } + ] + ] +} \ No newline at end of file diff --git a/config/allthearcanistgear-server.toml b/config/allthearcanistgear-server.toml new file mode 100644 index 0000000..2147909 --- /dev/null +++ b/config/allthearcanistgear-server.toml @@ -0,0 +1,154 @@ + +[armor_config] + _comment = "A world restart is needed after changing these config options." + + [armor_config.allthemodium] + _comment = "Config for Allthemodium armor" + + [armor_config.allthemodium.armor_values] + #Hat + #Range: > 0 + hat = 4 + #Robes + #Range: > 0 + robes = 9 + #Leggings + #Range: > 0 + leggings = 7 + #Boots + #Range: > 0 + boots = 4 + #Toughness + #Range: > 0 + toughness = 4 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.allthemodium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 200 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 6.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 6.0 + + [armor_config.allthemodium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = false + #Should Leggings Prevent Wither? + prevent_wither = false + #Should Leggings Prevent Levitation? + prevent_levitation = false + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + + [armor_config.vibranium] + _comment = "Config for Vibranium armor" + + [armor_config.vibranium.armor_values] + #Hat + #Range: > 0 + hat = 6 + #Robes + #Range: > 0 + robes = 11 + #Leggings + #Range: > 0 + leggings = 9 + #Boots + #Range: > 0 + boots = 6 + #Toughness + #Range: > 0 + toughness = 5 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.vibranium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 325 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 9.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 9.0 + + [armor_config.vibranium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = false + #Should Leggings Prevent Wither? + prevent_wither = true + #Should Leggings Prevent Levitation? + prevent_levitation = false + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + + [armor_config.unobtainium] + _comment = "Config for Unobtainium armor" + + [armor_config.unobtainium.armor_values] + #Hat + #Range: > 0 + hat = 8 + #Robes + #Range: > 0 + robes = 13 + #Leggings + #Range: > 0 + leggings = 11 + #Boots + #Range: > 0 + boots = 8 + #Toughness + #Range: > 0 + toughness = 6 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.unobtainium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 450 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 12.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 12.0 + + [armor_config.unobtainium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = true + #Should Leggings Prevent Wither? + prevent_wither = true + #Should Leggings Prevent Levitation? + prevent_levitation = true + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + diff --git a/config/allthecompatibility-client.toml b/config/allthecompatibility-client.toml new file mode 100644 index 0000000..267011b --- /dev/null +++ b/config/allthecompatibility-client.toml @@ -0,0 +1,6 @@ + +#General +[general] + #Activate the Update-Checker + update-checker = true + diff --git a/config/alltheleaks.json b/config/alltheleaks.json new file mode 100644 index 0000000..9f53294 --- /dev/null +++ b/config/alltheleaks.json @@ -0,0 +1,10 @@ +{ + "preventSearchIgnoredItems": false, + "ingredientDedupe": false, + "resourceLocationDedupe": false, + "debugItemStackModifications": false, + "logIntervalInMinutes": 10, + "showSummaryOnDebugScreen": true, + "memoryUsageWarningPercentage": 90, + "debugThreadsStuck": false +} \ No newline at end of file diff --git a/config/allurement-client.toml b/config/allurement-client.toml new file mode 100644 index 0000000..d5e5092 --- /dev/null +++ b/config/allurement-client.toml @@ -0,0 +1,9 @@ + +[tweaks] + + [tweaks.infinity] + #Adds a special texture for arrows shot from infinity bows + "Infinity arrow texture" = true + #Adds a glint on arrows shot from infinity bows + "Infinity arrow glint" = true + diff --git a/config/allurement-common.toml b/config/allurement-common.toml new file mode 100644 index 0000000..9272100 --- /dev/null +++ b/config/allurement-common.toml @@ -0,0 +1,158 @@ + +[enchantments] + + [enchantments.alleviating] + #Armor enchantment that heals the user when collecting experience + "Enable Alleviating" = true + #How much the experience value is multiplied by into health + #Range: 0.0 ~ 1.7976931348623157E308 + "Healing factor" = 0.25 + + [enchantments.launch] + #Weapon enchantment that launches enemies upwards rather than away + "Enable Launch" = true + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.35 + + [enchantments.obedience] + #Horse armor enchantment tha prevents the horse from roaming around + "Enable Obedience" = true + + [enchantments.reeling] + #Crossbow enchantment that pulls targets towards the user + "Enable Reeling" = true + #How much the target is affected on the horizontal axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Horizontal factor" = 0.5 + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.25 + + [enchantments.reforming] + #Gear enchantment that very slowly repairs items over time + "Enable Reforming" = true + #How many ticks it takes a reforming item to repair + #Range: > 0 + "Reforming tick rate" = 600 + + [enchantments.shockwave] + #Boots enchantment that creates a shockwave when taking fall damage + "Enable Shockwave" = true + #If Shockwave tramples farmland within the wave radius + "Shockwave tramples farmland" = true + + [enchantments.vengeance] + #Armor enchantment that stores incoming damage and applies it to user's next attack + "Enable Vengeance" = true + #How much the damage taken with vengeance is multiplied for attacks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 0.025 + + [enchantments.spread_of_ailments] + #Crossbow enchantment that applies the user's active effects to their arrows + "Enable Spread of Ailments" = true + +[curses] + + [curses.ascension_curse] + #Curse that causes the cursed item to float upwards when dropped + "Enable Curse of Ascension" = true + + [curses.fleeting_curse] + #Curse that causes nearby entities to repel the cursed item + "Enable Curse of Fleeting" = true + +[tweaks] + + [tweaks.enchanting] + #Allow enchanting power from bookshelves to transmit through any non-solid block, not just replaceable ones + "Non-solid blocks transmit enchanting power" = true + #Allow Chiseled Bookshelves to be usable to boost enchanting table power + "Chiseled Bookshelf enchanting" = true + #How many regular books are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Books needed" = 3 + #How many enchanted are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Enchanted Books needed" = 2 + + [tweaks.horse_armor] + #Allow horse armor to be enchanted + "Enchantable horse armor" = true + #If horse armor can appear enchanted when found in loot tables + "Generates in loot tables" = true + #Which loot tables horse armor can't appear enchanted in + "Unenchanted loot tables" = ["minecraft:chests/village/village_weaponsmith", "minecraft:chests/stronghold_corridor", "minecraft:chests/nether_bridge"] + + [tweaks.bane_of_arthropods] + #If Bane of Arthropods increases the mining speed of Cobwebs + "Bane of Arthropods mines cobwebs faster" = true + + [tweaks.feather_falling] + #If having Feather Falling prevents farmland from being trampled + "Feather Falling prevents trampling" = true + + [tweaks.infinity] + #If Infinity requires an arrow in the player's inventory in order to shoot + "Infinity requires arrows" = false + + [tweaks.protection] + #Remove the base Protection enchantment, requiring players to choose between the other types + "Disable Protection" = false + + [tweaks.riptide] + #Allow Riptide to function when in cauldrons + "Riptide works in cauldrons" = true + + [tweaks.soul_speed] + #Instead of losing durability as you run, Soul Speed makes incoming damage increase when on Soul Speed blocks + "Soul Speed change" = true + #How much damage is multiplied when hurt on Soul Speed blocks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 1.5 + + [tweaks.experience] + + [tweaks.experience.dropped_xp] + #If the player drops a flat percentage of their experience rather than capping at level 7 + "Drop experience percentage" = false + #What percentage of the player's total experience is dropped + #Range: 0.0 ~ 1.0 + "Experience percentage" = 0.75 + + [tweaks.experience.level_scaling] + #Remove the amount of experience per level increasing (experimental) + "Remove level scaling" = false + #The amount of experience per level, if level scaling is removed (experimental) + #Range: > 0 + "Experience per level" = 50 + #If the level scaling should only be modified after it reaches the 'Experience per level' value (experimental) + "Remove level scaling after cap" = true + + [tweaks.experience.ender_dragon] + #If Ender Dragon experience dropping should be adjusted (to account for level scaling) + "Adjust Ender Dragon experience drop" = false + #The amount of experience (in points) that should be dropped by the Ender Dragon + #Range: > 0 + "Ender Dragon experience drop" = 3000 + #The amount of experience (in points) that should be dropped by a respawned Ender Dragon + #Range: > 0 + "Respawned Ender Dragon experience drop" = 750 + + [tweaks.experience.anvil] + #If renaming items should always cost 1 experience + "Cheap item renaming" = true + #Remove the cap of 40 on anvil repairing prices + "Remove too expensive" = true + #If anvils can be repaired by right clicking with an iron ingot or using a dispenser + "Anvil ingot repairing" = true + #The amount of tries it should take on average to repair an anvil with an ingot (1 in x chance) + #Range: > 0 + "Ingot repair chance" = 5 + #If anvil transaction costs should be capped at a certain level + "Cap anvil costs" = false + #The max amount of levels an anvil transaction should be able to cost + #Range: > 1 + "Anvil cost cap" = 30 + diff --git a/config/almostunified/debug.json b/config/almostunified/debug.json new file mode 100644 index 0000000..b352412 --- /dev/null +++ b/config/almostunified/debug.json @@ -0,0 +1,8 @@ +{ + "dumpTagMap": false, + "dumpDuplicates": false, + "dumpUnification": false, + "dumpOverview": false, + "dumpRecipes": false, + "dumpUncoveredRecipes": false +} \ No newline at end of file diff --git a/config/almostunified/duplicates.json b/config/almostunified/duplicates.json new file mode 100644 index 0000000..bccd4fc --- /dev/null +++ b/config/almostunified/duplicates.json @@ -0,0 +1,35 @@ +{ + "ignoredRecipeTypes": [ + "cucumber:shaped_tag" + ], + "ignoredRecipes": [], + "defaultDuplicateRules": { + "ignoredFields": [ + "show_notification", + "conditions", + "category", + "group" + ], + "rules": { + "cookingtime": "HigherRule", + "energy": "HigherRule", + "experience": "HigherRule" + }, + "shouldSanitize": false + }, + "overrideDuplicateRules": { + "minecraft:crafting_shaped": { + "ignoredFields": [ + "pattern", + "show_notification", + "conditions", + "category", + "key", + "group" + ], + "rules": {}, + "shouldSanitize": false + } + }, + "strictMode": false +} \ No newline at end of file diff --git a/config/almostunified/startup.json b/config/almostunified/startup.json new file mode 100644 index 0000000..448a42c --- /dev/null +++ b/config/almostunified/startup.json @@ -0,0 +1,3 @@ +{ + "serverOnly": false +} \ No newline at end of file diff --git a/config/almostunified/unify.json b/config/almostunified/unify.json new file mode 100644 index 0000000..e7b7038 --- /dev/null +++ b/config/almostunified/unify.json @@ -0,0 +1,97 @@ +{ + "modPriorities": [ + "minecraft", + "kubejs", + "crafttweaker", + "create", + "thermal", + "immersiveengineering", + "mekanism" + ], + "stoneStrata": [ + "stone", + "andesite", + "deepslate", + "diorite", + "granite", + "nether", + "end" + ], + "tags": [ + "forge:nuggets/{material}", + "forge:dusts/{material}", + "forge:gears/{material}", + "forge:gems/{material}", + "forge:ingots/{material}", + "forge:raw_materials/{material}", + "forge:ores/{material}", + "forge:plates/{material}", + "forge:rods/{material}", + "forge:wires/{material}", + "forge:storage_blocks/{material}", + "forge:storage_blocks/raw_{material}" + ], + "materials": [ + "aeternium", + "aluminum", + "amber", + "apatite", + "bitumen", + "brass", + "bronze", + "charcoal", + "chrome", + "cinnabar", + "coal", + "coal_coke", + "cobalt", + "constantan", + "copper", + "diamond", + "electrum", + "elementium", + "emerald", + "enderium", + "fluorite", + "gold", + "graphite", + "invar", + "iridium", + "iron", + "lapis", + "lead", + "lumium", + "mithril", + "netherite", + "nickel", + "obsidian", + "osmium", + "peridot", + "platinum", + "potassium_nitrate", + "ruby", + "sapphire", + "signalum", + "silver", + "steel", + "sulfur", + "tin", + "tungsten", + "uranium", + "zinc" + ], + "priorityOverrides": {}, + "customTags": {}, + "tagOwnerships": {}, + "itemTagInheritanceMode": "ALLOW", + "itemTagInheritance": {}, + "blockTagInheritanceMode": "ALLOW", + "blockTagInheritance": {}, + "ignoredTags": [], + "ignoredItems": [], + "ignoredRecipeTypes": [ + "cucumber:shaped_tag" + ], + "ignoredRecipes": [], + "itemsHidingJeiRei": true +} \ No newline at end of file diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json new file mode 100644 index 0000000..dfc7782 --- /dev/null +++ b/config/ambientsounds-client.json @@ -0,0 +1,228 @@ +{ + "general": { + "engines": 0, + "volume": 1, + "useSoundMasterSource": false, + "scanStepAmount": 100, + "playSoundWithOffset": true + }, + "dimensions": { + "abyssalcraft": 1, + "betweenlands": 1, + "cave": 1, + "end": 1, + "galacticraft": 1, + "galacticraft.planets": 1, + "midnight": 1, + "nether": 1, + "surface": 1, + "twilightforest": 1, + "void": 1 + }, + "regions": { + "abyssalcraft_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "end_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "galacticraft_planets_wind": { + "overall": 1, + "wind.light-wind": 1 + }, + "nether_suspense": { + "overall": 1, + "nether": 1 + }, + "twilightforest_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "void_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "beach": { + "overall": 1, + "beach": 1, + "seagull": 1, + "seagull-long": 1 + }, + "cave_ambience": { + "overall": 1, + "cave": 1, + "cave-water": 1, + "cave-deep": 1, + "cave-large": 1 + }, + "cave_deep-dark": { + "overall": 1, + "deep-dark": 1, + "water-droplets": 1 + }, + "cave": { + "overall": 1 + }, + "cave_lush": { + "overall": 1, + "cave-lush": 1, + "frog": 1 + }, + "cold_artic": { + "overall": 1, + "heavy-wind": 1 + }, + "cold": { + "overall": 1, + "wind.light-wind": 1 + }, + "desert": { + "overall": 1, + "cicadas-desert": 1, + "wind.light-wind": 1 + }, + "forest_cold": { + "overall": 1, + "crow": 1 + }, + "forest": { + "overall": 1, + "bird-ambience": 1, + "owl": 1 + }, + "forest_roofed": { + "overall": 1, + "bird-ambience-spooky": 1 + }, + "grass": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "highland": { + "overall": 1, + "heavy-wind": 1, + "wind-in-leaves": 1 + }, + "jungle": { + "overall": 1, + "cricket-jungle": 1, + "cricket-jungle-night": 1, + "bird-ambience-jungle": 1, + "bird-ambience-jungle-night": 1 + }, + "mesa": { + "overall": 1, + "wind-mesa": 1 + }, + "mushroom_fields": { + "overall": 1, + "cicadas-mushroom-fields": 1, + "special-mushroom-fields": 1 + }, + "ocean": { + "overall": 1, + "ocean": 1, + "wind.light-wind": 1 + }, + "ocean_deep": { + "overall": 1, + "whale": 1 + }, + "pale-garden": { + "overall": 1, + "pale-garden-ambience": 1, + "owl": 1 + }, + "plains": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "rain": { + "overall": 1, + "rain": 1 + }, + "savanna": { + "overall": 1, + "cricket": 1, + "cicadas": 1, + "cicadas-desert": 1, + "cricket-warm-night": 1, + "wolf": 1, + "long-wolf": 1, + "bird-warm": 1 + }, + "sky": { + "overall": 1, + "wind.light-wind": 1 + }, + "space": { + "overall": 1 + }, + "storm_away": { + "overall": 1, + "storm-away": 1, + "howling-wind": 1 + }, + "storm_close": { + "overall": 1, + "storm-close": 1, + "wind": 1 + }, + "surface": { + "overall": 1 + }, + "swamp": { + "overall": 1, + "cricket-swamp": 1, + "cricket-warm-night": 1, + "frog": 1, + "mouring_dove": 1 + }, + "taiga": { + "overall": 1, + "bird-ambience-huge": 1 + }, + "underwater": { + "overall": 1, + "underwater": 1, + "underwater-deep": 1 + }, + "underworld": { + "overall": 1, + "underworld": 1 + }, + "warden": { + "overall": 1, + "warden": 1 + } + }, + "categories": { + "animal": { + "animal": 1, + "bird": { + "bird": 1, + "bird_day": 1, + "bird_night": 1 + }, + "cicadas": 1, + "cricket": { + "cricket": 1, + "cricket_day": 1, + "cricket_night": 1 + } + }, + "cave": 1, + "suspense": 1, + "weather": 1, + "wind": 1 + }, + "fade-volume": 0.005, + "fade-pitch": 0.005, + "silent-dimensions": [] +} \ No newline at end of file diff --git a/config/amendments-client.toml b/config/amendments-client.toml new file mode 100644 index 0000000..5a474da --- /dev/null +++ b/config/amendments-client.toml @@ -0,0 +1,120 @@ + +[general] + tooltip_hints = true + custom_configured_screen = true + +[sign] + #Gives signs a pixel consistent model and texture. Also affects other mods. This also makes them use a Block Model, making them render much much much faster than as block entities + pixel_consistent = true + #A scalar multiplier that will be applied to sign text making it brighter, supposedly more legible + #Range: 0.0 ~ 5.0 + text_color_multiplier = 1.2 + #A list of sign blocks that will NOT be affected by the pixel consistent sign setting. Use full registry names separated by commas + sign_blacklist = [] + +[projectiles] + #Makes snowballs render in 3D + snowball_3d = true + #Makes slimeballs render in 3D (supplementaries only) + slimeball_3d = true + #Makes ghast & blazes fireballs render in 3D + fireball_3d = true + #Makes ghast & blazes fireballs leave a trail of particles when moving + ghast_fireball_trail = true + #Makes dragon fireballs leave a trail of particles when moving + dragon_fireball_trail = true + #Makes 3D charges tumble in the air when moving + charges_tumble = true + #Makes 3D snowballs and slimeballs (supp compat) tumble in the air when moving + projectiles_tumble = false + + [projectiles.dragon_fireball] + #Makes dragon's breath particles emissive to better match new visuals + dragon_breath_emissive = true + +[lily_pad] + #set to 0 tho have lilypads at the same exact position as vanilla.negative numbers will place them in their own blockspace right below avoiding any clipping.best of both worlds at default as its barely within its space + #Range: -1.0 ~ 1.0 + y_offset = -0.016625 + +[bell] + #Visually attach chains and ropes to bells + chain_attachment = true + +[brewing_stand] + #Colors the brewing stand potion texture depending on the potions it's brewing. + #If using a resource pack add tint index from 0 to 3 to the 3 potion layers + brewing_stand_colors = true + +[arrows] + #Makes tipped arrows show their colors when loaded with a crossbow + crossbows_colors = true + +[tripwire_hook] + #Makes hooks render faster using a block model instead of tile renderer. Cost is that animated and enchanted items will appear static + fast_hooks = false + +[hanging_sign] + #Scale of items on hanging signs (unit is in pixel they would occupy). Set to 8 to better match the pixels on the sign + #Range: 0.0 ~ 32.0 + item_pixel_scale = 10.0 + #Makes signs swing! + swinging_signs = true + #Signs have visual attachment to walls and fences + sign_attachment = true + + [hanging_sign.swing_physics] + min_angle = 0.79999995 + collision_force = 15.0 + damping = 0.525 + collision_inertia = 1.0 + collision_considers_entity_hitbox = true + frequency = 0.6 + max_angle = 60.0 + +[lantern] + #Makes wall lantern use a simple block model instead of the animated tile entity renderer. This will make them render much faster but will also remove the animationNote that this option only affect lanterns close by as the one far away render as fast by default + fast_lanterns = false + #Size lanterns when held in hand + #Range: 0.0 ~ 2.0 + lantern_item_size = 0.625 + #Gives a special animation to lanterns when held in hand + lantern_item_holding = true + #Makes lantern holding animation have the arm angled more upwards. Looks better if you have dynamic lights on + lantern_item_holding_up = false + + [lantern.swing_physics] + min_angle = 0.79999995 + collision_force = 15.0 + damping = 0.525 + collision_inertia = 1.0 + collision_considers_entity_hitbox = true + frequency = 0.6 + max_angle = 60.0 + +[cauldron] + #Gives a unique texture to potion cauldrons + potion_texture = true + +[jukebox] + #Use the new jukebox model + new_model = true + #Makes jukebox disc spin while playing + disc_spin = true + +[misc] + #Gives a special animation to torches when held in hand + torch_item_holding = true + #Size lanterns when held in hand + #Range: 0.0 ~ 2.0 + torch_item_size = 1.0 + #Gives a special animation to supplementaries candle holders when held in hand + candle_holder_item_holding = true + #Size lanterns when held in hand + #Range: 0.0 ~ 2.0 + handle_holder_item_size = 0.625 + #Makes Torch and Lantern holding animation be fixed, not changing with player facing + fixed_holding_animations = false + #Prevents campfire smoke from rendering if there is a solid block above it + campfire_smoke_through_blocks = false + diff --git a/config/amendments-common.toml b/config/amendments-common.toml new file mode 100644 index 0000000..ad040e3 --- /dev/null +++ b/config/amendments-common.toml @@ -0,0 +1,136 @@ + +[lectern] + #Improved lectern screen allowing to edit font of a book while on it + improved_screen = true + +[fireball] + #Adds dragons charge item + dragon_charge = true + #Makes fire & dragon charges have gravity + gravity = true + #Makes fire charges deflectable by punching + deflectable = false + #Allows throwing fire & dragon charges + fire_charges_throwable = true + #Makes dispensers shoot fire charges (the ones with gravity added by the mod) instead of blaze charges. Technically a breaking changes as it could break existing contraptions while allowing for new ones + fire_charges_dispenser_behavior = true + #Improves ghast & fire charges fireballs by giving them a unique explosion particles and set on fire on hit + improved_explosions = true + +[snowball] + #Allows snowballs to freeze entities on hit. Config is for how many ticks it will freeze + #Range: 0 ~ 1000 + freeze_ticks = 35 + +[hanging_signs] + #Allows placing items on hanging signs + items_on_signs = true + +[cauldron] + #Enables enhanced cauldron + enhanced_cauldron = true + #Allows crafting items using cauldrons by clicking on them + hand_crafting = true + #Allows crafting items using cauldrons by throwing items in them + in_world_crafting = true + #Allows dying cauldron water bedrock style and mixing them too + dye_water = true + #Max amount of items that 1 cauldron layer can recolor.This is a multiplier on top of vanilla crafting recipe amount + #Range: 1 ~ 64 + dye_recipes_per_layer = 4 + #Max amount of items that 1 cauldron layer can craft with potions.This is a multiplier on top of vanilla crafting recipe amount + #Range: 1 ~ 64 + potion_recipes_per_layer = 2 + #Allows mixin potions in cauldrons + #Allowed Values: OFF, ONLY_BOILING, ON + potions_mixing = "ON" + #Max amount of effects allowed in a mixed potion + #Range: 1 ~ 64 + potion_mixing_limit = 8 + #Makes cauldrons connect to fences + connect_to_fences = true + #Makes it so a dripstone drop only increments a cauldron by 1 layer(buttle) instead of a full bottle, making it just like a water cauldron + consistent_lava_layers = false + + #Map of potion ids to their inverse ids. Used for potion mixing + [cauldron.inverse_potions] + "minecraft:mining_fatigue" = "minecraft:haste" + "minecraft:instant_health" = "minecraft:instant_damage" + "minecraft:unluck" = "minecraft:luck" + "minecraft:instant_damage" = "minecraft:instant_health" + "minecraft:weakness" = "minecraft:strength" + "minecraft:slowness" = "minecraft:speed" + "minecraft:haste" = "minecraft:mining_fatigue" + "minecraft:strength" = "minecraft:weakness" + "minecraft:speed" = "minecraft:slowness" + "minecraft:luck" = "minecraft:unluck" + +[tripwire_hook] + #Allows placing tools on tripwire hooks + tool_hook = true + +[carpets] + #Allows you to place carpets on stairs + carpeted_stairs = true + #Allows you to place carpets on slabs + carpeted_slabs = true + +[cake] + #Allows you to place a cake on top of another + double_cake = true + #Allows eating a cake from every side + directional_cake = true + +[mob_head] + #Allows you to place two mob heads on top of each other + skull_piles = true + #Allows candles to be placed on top of skulls + skull_candles = true + #Allows placing more than one candle ontop of each skull + multiple_candles = true + +[flower_pot] + #allows you to place hanging flower pots. Works with any modded pot too + hanging_pot = true + +[lantern] + #Allow wall lanterns placement + wall_lanterns = true + #Gives high priority to wall lantern placement. Enable to override other wall lanterns placements, disable if it causes issues with other mods that use lower priority block click events + high_priority = true + #Mod ids of mods that have lantern block that extend the base lantern class but don't look like one + mod_blacklist = ["bbb", "extlights", "betterendforge", "spelunkery", "galosphere", "tconstruct", "enigmaticlegacy", "beautify", "candlelight"] + #Ids of blocks that are not detected as lanterns but should be + id_whitelist = ["enlightened_end:xenon_lantern"] + #Allows ceiling lanterns to fall if their support is broken.Additionally if they fall from high enough they will break creating a fire where they land + #Allowed Values: ON, OFF, NO_FIRE + falling_lanterns = "ON" + +[bell] + #Ring a bell by clicking on a chain that's connected to it + chain_ringing = true + #Max chain length that allows a bell to ring + #Range: 0 ~ 256 + chain_length = 16 + +[banners] + #Allow banners to be placed on ceilings + ceiling_banners = true + +[misc] + #Allows dying blocks by right clicking them with dye + dye_blocks = false + +[torch] + #Allows torches to set entities on fire + torch_fire = true + #Allows torches to set entities on fire when held in offhand given you are attacking with a sword + torch_fire_offhand = false + #Duration of the on fire effect applied by torches. In seconds + #Range: 1 ~ 60 + torch_fire_duration = 2 + +[lily_pad] + #Allows lilypads to have any block placed ontop + better_lilypads = true + diff --git a/config/angelring-common.toml b/config/angelring-common.toml new file mode 100644 index 0000000..bda28ea --- /dev/null +++ b/config/angelring-common.toml @@ -0,0 +1,46 @@ + +#General Angel Ring 2 configuration options. +[general] + #Defines how much XP will be drained from player when flying by wearing classic Angel Ring? Put 0 if you need to disable XP requirement for flight. + #Range: > 0 + XPCost = 0 + #Defines how much ticks is required to pass between each XP drain event of classic Angel Ring? + #Range: > 1 + TicksPerDrain = 50 + #Defines how much FE the Energetic Angel Ring will drain every tick while flying. + #Range: > 1 + EnergeticFEPerTick = 150 + #Defines how much FE the Energetic Angel Ring can store. + #Range: > 1 + EnergeticFECapacity = 3000000 + #Defines how much FE the Leadstone Angel Ring will drain every tick while flying. + #Range: > 1 + LeadstoneFEPerTick = 250 + #Defines how much FE the Leadstone Angel Ring can store. + #Range: > 1 + LeadstoneFECapacity = 2500000 + #Defines how much FE the Hardened Angel Ring will drain every tick while flying. + #Range: > 1 + HardenedFEPerTick = 200 + #Defines how much FE the Hardened Angel Ring can store. + #Range: > 1 + HardenedFECapacity = 5000000 + #Defines how much FE the Reinforced Angel Ring will drain every tick while flying. + #Range: > 1 + ReinforcedFEPerTick = 100 + #Defines how much FE the Reinforced Angel Ring can store. + #Range: > 1 + ReinforcedFECapacity = 8000000 + #Defines how much FE the Resonant Angel Ring will drain every tick while flying. + #Range: > 1 + ResonantFEPerTick = 50 + #Defines how much FE the Resonant Angel Ring can store. + #Range: > 1 + ResonantFECapacity = 16000000 + #Defines at what XP Level to start displaying a warning of low XP for the Classic Angel Ring. Set to -1 to disable. + #Range: > -1 + XPWarningLevel = -1 + #Defines at what percentage to start displaying a warning of low power for Energy Angel Rings. Set to -1 to disable. + #Range: -1 ~ 100 + EnergyWarningPercentage = 5 + diff --git a/config/animal_pen_config.json b/config/animal_pen_config.json new file mode 100644 index 0000000..1123715 --- /dev/null +++ b/config/animal_pen_config.json @@ -0,0 +1,55 @@ +{ + // A cooldown value in game ticks between attacks that players can perform on animal pens. + // Default value: 5 game tick + "attack_cooldown": 5, + // Allows to set maximal amount of animals in the pen. + // Setting 0 will remove any limit. + // Default 0 + "animal_limit_in_pen": 2147483647, + // Allows to enable mob growing in animal pen. + // The more animals are inside it, the larger it will be. + "animal_pen_mob_can_grow": false, + // Allows to change default mob size in pen. + "animal_pen_mob_size": 0.33, + // Allows to enable aquarium mob growing. + // The more animals are inside it, the larger it will be. + "aquarium_mob_can_grow": false, + // Allows to change default mob size in aquarium. + "aquarium_mob_size": 0.33, + // Allows to enable aviary mobs growing. + // The more mobs are inside it, the larger it will be. + "aviary_mob_can_grow": false, + // Allows to change default mob size in aviary. + "aviary_mob_size": 0.33, + // Allows to set how fast animals grows in pen and aquarium. + // Each animal is multiplied by given value to get end size. + // This option works only if animals_can_grow or water_animals_can_grow is enabled. + // Default value = 0.001 + "growth_multiplier": 0.001, + // Allows to set how many different animal variants can be stored per item. + // Players will not be able to store more different variants than this value. + // Be aware, this increases NBT data size, so not recommended to put infinite amount. + // Default value = 16 + "max_stored_animal_variants": 16, + // Allows to set if interactions with animal pens/aquariums should trigger advancements. + // Triggered Criteria: player_interacted_with_entity, bred_animals, filled_bucket, player_killed_entity + // Default value = false + "trigger_advancements": false, + // Allows to set if interactions with animal pens/aquariums should increase statistics. + // Increased Statistics: Animals Bred, Mob Kills, Use Item , Kill Entity + // Default value = false + "increase_statistics": false, + // Allows to toggle if cooldowns should be shown only while player is crouching (true). + // or be visible all the time (false). + // Default value = false + "show_cooldowns_while_crouching": true, + // Allows to toggle if all interactions (evenNumber without cooldown) should be rendered + // above animal pen or aquarium + // Default value = false + "show_all_interactions_above": false, + // Allows to toggle if dispensers should be block from interacting with animal pens, aviaries, and aquariums + // Default value = false + "block_dispenser_interaction": false, + // Debug code to indicate problems. + "debug": false +} \ No newline at end of file diff --git a/config/animal_pen_config.json.bak1 b/config/animal_pen_config.json.bak1 new file mode 100644 index 0000000..99b723c --- /dev/null +++ b/config/animal_pen_config.json.bak1 @@ -0,0 +1,297 @@ +{ + // List of cooldowns that are applied when player performs action. + // Specifying: `animal_pen:any` will indicate that any entity using that item will have same cooldown. + // `minecraft:apple` is universal food item. It is used to indicate for feeding action. + // `minecraft:honey_bloc` is used to indicate pollen regeneration cooldown. + // : . + "cooldowns": { + "minecraft:apple": [ + { + // The entity ID on which cooldown is applied. + "entity": "animal_pen:any", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1160, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 6000 + } + ], + "minecraft:shears": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sheep", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1180, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 6000 + } + ], + "minecraft:magma_block": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:frog", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:bucket": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:chicken", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 1200 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:turtle", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 1200 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:cow", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:mooshroom", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:goat", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sniffer", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:bowl": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:mooshroom", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sniffer", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:honey_block": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:bee", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1220, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 20 + } + ] + }, + // A cooldown value in game ticks between attacks that players can perform on animal pens. + // Default value: 5 game tick + "attack_cooldown": 5, + // List of drop limits for items when player harvests items. + // : . + "drop_limits": { + "minecraft:white_wool": 320, + "minecraft:pearlescent_froglight": 320, + "minecraft:egg": 80, + "minecraft:turtle_egg": 320, + "minecraft:torchflower_seeds": 320 + }, + // Allows to set maximal amount of animals in the pen. + // Setting 0 will remove any limit. + "animal_limit_in_pen": 2147483647, + // Allows to enable animal growing in animal pen. + // The more animals are inside it, the larger it will be. + "animals_can_grow": false, + // Allows to change default animal size in pen. + "animal_size": 0.33, + // Allows to enable water animal growing in aquarium. + // The more animals are inside it, the larger it will be. + "water_animals_can_grow": false, + // Allows to change default water animal size in aquarium. + "water_animal_size": 0.33, + // Allows to set how fast animals grows in pen and aquarium. + // Each animal is multiplied by given value to get end size. + // This option works only if animals_can_grow or water_animals_can_grow is enabled. + // Default value = 0.001 + "growth_multiplier": 0.001, + // Allows to specify if turtle scute are dropped when player breeds animal (true). + // or when food cooldown timer is finished (false). + "turtle_scute_drop_time": false, + // Allows to set how many different animal variants can be stored per item. + // Players will not be able to store more different variants than this value. + // Be aware, this increases NBT data size, so not recommended to put infinite amount. + // Default value = 16 + "max_stored_animal_variants": 16, + // Allows to set if interactions with animal pens/aquariums should trigger advancements. + // Triggered Criteria: player_interacted_with_entity, bred_animals, filled_bucket, player_killed_entity + // Default value = false + "trigger_advancements": false, + // Allows to set if interactions with animal pens/aquariums should increase statistics. + // Increased Statistics: Animals Bred, Mob Kills, Use Item , Kill Entity + // Default value = false + "increase_statistics": false, + // Allows to toggle if cooldowns should be shown only while player is crouching (true). + // or be visible all the time (false). + // Default value = true + "show_cooldowns_while_crouching": true, + // Allows to toggle if all interactions (even without cooldown) should be rendered + // above animal pen or aquarium + // Default value = false + "show_all_interactions_above": false, + // Set of animals that are blocked from picking up. + // Pickable animals in vanilla minecraft: https://minecraft.wiki/w/Animal#List_of_animals + "blocked_animals": [ + ], + // Debug code to indicate problems. + "debug": false +} \ No newline at end of file diff --git a/config/animal_pen_config.json.bak2 b/config/animal_pen_config.json.bak2 new file mode 100644 index 0000000..03fdd0a --- /dev/null +++ b/config/animal_pen_config.json.bak2 @@ -0,0 +1,51 @@ +{ + // A cooldown value in game ticks between attacks that players can perform on animal pens. + // Default value: 5 game tick + "attack_cooldown": 5, + // Allows to set maximal amount of animals in the pen. + // Setting 0 will remove any limit. + "animal_limit_in_pen": 2147483647, + // Allows to enable mob growing in animal pen. + // The more animals are inside it, the larger it will be. + "animal_pen_mob_can_grow": false, + // Allows to change default mob size in pen. + "animal_pen_mob_size": 0.33, + // Allows to enable aquarium mob growing. + // The more animals are inside it, the larger it will be. + "aquarium_mob_can_grow": false, + // Allows to change default mob size in aquarium. + "aquarium_mob_size": 0.33, + // Allows to enable aviary mobs growing. + // The more mobs are inside it, the larger it will be. + "aviary_mob_can_grow": false, + // Allows to change default mob size in aviary. + "aviary_mob_size": 0.33, + // Allows to set how fast animals grows in pen and aquarium. + // Each animal is multiplied by given value to get end size. + // This option works only if animals_can_grow or water_animals_can_grow is enabled. + // Default value = 0.001 + "growth_multiplier": 0.001, + // Allows to set how many different animal variants can be stored per item. + // Players will not be able to store more different variants than this value. + // Be aware, this increases NBT data size, so not recommended to put infinite amount. + // Default value = 16 + "max_stored_animal_variants": 16, + // Allows to set if interactions with animal pens/aquariums should trigger advancements. + // Triggered Criteria: player_interacted_with_entity, bred_animals, filled_bucket, player_killed_entity + // Default value = false + "trigger_advancements": false, + // Allows to set if interactions with animal pens/aquariums should increase statistics. + // Increased Statistics: Animals Bred, Mob Kills, Use Item , Kill Entity + // Default value = false + "increase_statistics": false, + // Allows to toggle if cooldowns should be shown only while player is crouching (true). + // or be visible all the time (false). + // Default value = false + "show_cooldowns_while_crouching": true, + // Allows to toggle if all interactions (evenNumber without cooldown) should be rendered + // above animal pen or aquarium + // Default value = false + "show_all_interactions_above": false, + // Debug code to indicate problems. + "debug": false +} \ No newline at end of file diff --git a/config/aoa3/client_config.toml b/config/aoa3/client_config.toml new file mode 100644 index 0000000..bb02232 --- /dev/null +++ b/config/aoa3/client_config.toml @@ -0,0 +1,39 @@ + +#AoA client-side configuration options +["General Settings"] + #Set this to false to disable the small scrolling popups that appear when you gain xp in a skill + showXpParticles = false + #Set this to false to disable the message that welcomes you to Advent of Ascension when logging in + showWelcomeMessage = false + #Set this to false to hide player halos for those that have them + showPlayerHalos = true + #If multiple halos are available, which one would you prefer to have on? + #Allowed Values: Donator, Super_Donator, Wiki_Editor + personalHaloPreference = "Donator" + #The current theme for the main Advent of Ascension window. + adventGuiTheme = "Default" + #Set this to false to disable third party and vanilla entities from showing in the bestiary + thirdPartyBestiary = true + #Choose a corner to have your resources indicators render in. + #Allowed Values: Top_Right, Top_Left + hudResourcesPosition = "Top_Left" + #Set this to false to switch to a vertical layout for the HUD resources + hudResourcesHorizontal = false + #Set this to true to stop the skills and resources HUD elements shifting down when players have potion effects. + disableHudPotionOffset = false + #Choose which type of progress indication you would prefer for skills in the HUD + #Allowed Values: Ring, Bar, Percent, None + hudSkillProgressRenderType = "Bar" + #Set this to false to use chat messages for mod feedback instead of toasts + useToasts = false + #Set this to false to disable rotation of entities on trophy blocks. + rotatingTrophies = true + #Select what type of rendering AoA replaces the vanila health bar with + #Allowed Values: HEARTS, BAR, NUMERIC, BAR_NUMERIC + healthRenderType = "BAR_NUMERIC" + +#Just for fun :) +["Fun Options"] + #Set this to true to enable party deaths + partyDeaths = false + diff --git a/config/aoa3/integrations_config.toml b/config/aoa3/integrations_config.toml new file mode 100644 index 0000000..63ada83 --- /dev/null +++ b/config/aoa3/integrations_config.toml @@ -0,0 +1,16 @@ + +#Integration options for JEI (Just Enough Items) +["JEI Settings"] + #Set this to false to disable JEI integration functionality. + jei = true + +#Integration options for Patchouli +["Patchouli Settings"] + #Set this to false to disable Patchouli integration functionality. + patchouli = false + +#Integration options for TslatEntityStatus +["TES Settings"] + #Set this to false to disable TES integration functionality. + tes = false + diff --git a/config/apothic_category_compat-common.toml b/config/apothic_category_compat-common.toml new file mode 100644 index 0000000..971bc70 --- /dev/null +++ b/config/apothic_category_compat-common.toml @@ -0,0 +1,86 @@ +# Apothic Compat: user defined loot category overrides. +# +# Maps Minecraft items (or item tags) to Apotheosis loot categories so the +# affinity system can roll the right gem/affix pools on modded gear that +# Apotheosis does not categorize on its own. Entries here are sent to +# Apotheosis via IMC at startup, alongside the mod's built in compat +# modules. Edit this file then run /apothiccompat reload (op 2) to apply +# changes without restarting the server. +# +# Built in loot category names (Apotheosis 7.4.8): +# sword, heavy_weapon, trident, bow, crossbow, shield, +# helmet, chestplate, leggings, boots, pickaxe, shovel, none +# +# Other mods can register additional categories at startup. Any name +# that resolves at apply time is accepted; unknown names are skipped +# with a warning. Known third party categories from Fallen Gems & +# Affixes: +# staffs (requires Iron's Spellbooks) +# celestial_melee (requires Celestisynth) +# celestial_ranged (requires Celestisynth) +# +# When an item is set in both adventure.cfg (Apotheosis's own Equipment +# Type Overrides) and this config, Apothic Compat's value currently wins. +# To keep an adventure.cfg value, leave that item out of this file. +# +# Keys MUST be quoted because item and tag IDs contain a ':' separator +# (namespace:path), which TOML does not allow in bare keys. + +# ---------------------------------------------------------------------- +# Categorization settings. +# +# name_based_heavy_override (default false): When enabled, items whose +# registry id contains a heavy weapon name (greatsword, claymore, +# zweihander, etc.) are categorized as HEAVY_WEAPON regardless of their +# attack speed and damage. Disable to use pure speed and damage. +# +# weapon_pickaxes_as_heavy (default true): When enabled, items in the +# dual-purpose pickaxe list (combat tools like the Void Forge, Infernal +# Forge, and Blacksmith Gavels) categorize as HEAVY_WEAPON instead of +# PICKAXE. Disable for pure PickaxeItem-class behavior. +# ---------------------------------------------------------------------- +name_based_heavy_override = false +weapon_pickaxes_as_heavy = true + +# ---------------------------------------------------------------------- +# Affix blacklist. Stops the listed affixes from rolling on newly +# generated gear (loot drops, reforging, trades, gem application). +# Existing items keep any affixes they already have; this only blocks +# future rolls. Apotheosis's own datapack affix overrides still win. +# +# value = array of affix ids, each "namespace:path" +# e.g. "apotheosis:sword/attribute/vampiric" +# +# Find affix ids from JEI tooltips on affixed gear, or from the files +# under data//affixes/ inside a mod's jar. Edit this list then +# run /apothiccompat reload (op 2) to reapply without a restart. +# +# Example: +# affix_blacklist = ["apotheosis:sword/attribute/vampiric", "apotheosis:heavy_weapon/attribute/berserking"] +# ---------------------------------------------------------------------- +affix_blacklist = [] + +# ---------------------------------------------------------------------- +# Per item overrides. +# key = full item id (namespace:path) +# value = loot category name from the list above +# +# Example: +# "ruins:greatsword" = "heavy_weapon" +# "simplyswords:greathammer" = "heavy_weapon" +# ---------------------------------------------------------------------- +[item_overrides] + +# ---------------------------------------------------------------------- +# Per tag overrides. Every item carrying the tag receives the category. +# key = full tag id (namespace:path) +# value = loot category name from the list above +# +# Tags are resolved at apply time, so datapack only tags that load with a +# world may not be visible during early startup. /apothiccompat reload +# runs after world load, so tag expansion there sees datapack tags. +# +# Example: +# "simplyswords:greathammers" = "heavy_weapon" +# ---------------------------------------------------------------------- +[tag_overrides] diff --git a/config/apothic_filter_compat-common.toml b/config/apothic_filter_compat-common.toml new file mode 100644 index 0000000..55e177a --- /dev/null +++ b/config/apothic_filter_compat-common.toml @@ -0,0 +1,12 @@ + +[general] + #Master switch for the rarity mirror + enabled = true + #Top-level NBT key written to items. Client and server must match for the tooltip. + nbtKey = "apothic_rarity" + #How often to sweep player inventory in ticks + #Range: 1 ~ 200 + tickInterval = 20 + #Show the apothic_rarity NBT value as a tooltip line on items + showTooltip = true + diff --git a/config/apothic_tooltip_cleanup-client.toml b/config/apothic_tooltip_cleanup-client.toml new file mode 100644 index 0000000..56e885a --- /dev/null +++ b/config/apothic_tooltip_cleanup-client.toml @@ -0,0 +1,67 @@ + +[features] + # affix display + # ============================================================ + # How many affixes show on a tooltip. + # all = show every affix + # top_n = show first N, rest under Alt + # alt_only = hide every affix unless Alt is held + affix_display_mode = "all" + # Affixes shown when mode is top_n. + #Range: 0 ~ 99 + affix_visible_count = 3 + # Sort order: default or alphabetical. + affix_sort_order = "default" + # The affix prefix and suffix Apotheosis adds to the item name (Strengthened, of the Inferno). + # show = full affixed name + # alt = base item name unless Alt is held + # delete = always the base item name + affix_prefixes_mode = "show" + # Translation key prefixes of affixes to hide. + hidden_affix_ids = [] + # affix tooltip lines + # ============================================================ + # The summary block (Cold/Fire/HP%/Spell Resistance lines). + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + summarization_mode = "alt" + # The "ignores X% of durability damage" line. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + durability_bonus_mode = "alt" + # Potion style affix descriptions. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + potion_descriptions_mode = "show" + # The [MM:SS] cooldown markers and [Stacking] tags on affix lines. + # Only the annotations are touched, never the affix text. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + affix_extras_mode = "alt" + # gem display (raw gems) + # ============================================================ + # How raw gem tooltips display. + # full = original Apotheosis layout + # compact = keep the category and bonus bullets, drop the Unique tag + # ultra = one line for categories, one line for bonuses + # hidden = remove all gem info + gem_tooltip_mode = "compact" + # Gem categories to hide from 'Fits In' lists. Case insensitive. + # Example: ["Bows", "Crossbows"] to hide ranged weapons. + # No effect when gem_tooltip_mode is hidden, since that drops all gem info anyway. + hidden_gem_categories = [] + # sockets + # ============================================================ + # Merges empty sockets into one summary line. + # All empty: one line replaces the empty rows. + # Mixed: filled gems still render, empty count added below. + merge_empty_sockets = true + # Hides the APOTH_REMOVE_MARKER literal text. + # Only turn on if the marker is leaking through visibly. + # Can hide the socket UI on socketed items. + hide_apoth_marker = false + diff --git a/config/appflux-common.toml b/config/appflux-common.toml new file mode 100644 index 0000000..37fa9ae --- /dev/null +++ b/config/appflux-common.toml @@ -0,0 +1,13 @@ +#FE stored per byte. +#Range: > 1 +amount = 4194304 +#The I/O limit of Flux Accessor. 0 means no limitation. +#Range: 0 ~ 2147483647 +io_limit = 0 +#Allow Flux Accessor to charge ME network with stored FE. +enable = false +#Allow ME Import Bus to pull FE. +enable_FE_pull = false +#Enable GTCEu-EU support +enable_gteu = true + diff --git a/config/appleskin-client.toml b/config/appleskin-client.toml new file mode 100644 index 0000000..e082d6b --- /dev/null +++ b/config/appleskin-client.toml @@ -0,0 +1,24 @@ + +[client] + #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 your current saturation level overlayed on the hunger bar + showSaturationHudOverlay = true + #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, enables the hunger/saturation/health overlays for food in your off-hand + showFoodValuesHudOverlayWhenOffhand = true + #If true, shows your food exhaustion as a progress bar behind the hunger bars + showFoodExhaustionHudUnderlay = true + #If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay + showFoodStatsInDebugOverlay = true + #If true, shows estimated health restored by food on the health bar + showFoodHealthHudOverlay = true + #If true, health/hunger overlay will shake to match Minecraft's icon animations + showVanillaAnimationsOverlay = 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 + diff --git a/config/appliedpneumatics-common.toml b/config/appliedpneumatics-common.toml new file mode 100644 index 0000000..dfd0fd3 --- /dev/null +++ b/config/appliedpneumatics-common.toml @@ -0,0 +1,3 @@ +#总是显示联动内容,如1m~256m存储元件以及扩展亚马龙处理站,注意,这不会添加配方,只会使其出现在创造模式菜单。 +always_show_extended_content = false + diff --git a/config/appliedsorting-client.toml b/config/appliedsorting-client.toml new file mode 100644 index 0000000..c9d35d0 --- /dev/null +++ b/config/appliedsorting-client.toml @@ -0,0 +1,8 @@ +#Overrides the AE2 sort method when set to a non-default option +#Allowed Values: DEFAULT, INTERNAL_ID, RESOURCE_LOCATION +sortOverride = "INTERNAL_ID" + +[byResourceLocation] + #Sort Minecraft items first when sorting by resource location + minecraftFirst = true + diff --git a/config/aquaculture-common.toml b/config/aquaculture-common.toml new file mode 100644 index 0000000..02c87ba --- /dev/null +++ b/config/aquaculture-common.toml @@ -0,0 +1,20 @@ + +["basic options"] + "Enable weight for fish? Useful for fishing competitions" = false + "Should fish be added as compostables for the composter/worm farm? (Based on fish, or weight if enabled)" = true + "Should Aquaculture fish be able to be used to breed cats & ocelots?" = true + "Enable debug mode? (Enables additional logging)" = false + "Show Fillet recipes in JEI?" = true + #Range: 0 ~ 63 + "How many blocks below sea level Aquaculture fish can spawn" = 13 + + ["basic options"."Amount of Message In A Bottle messages"] + #Range: 0 ~ 255 + " Used to add additional custom messages" = 29 + +["neptunium options"] + "Enable recipes for Neptunium items?" = true + "Enable recipes for Neptunium armor?" = true + #Should Neptune's bounty be added as fishing loot? Very rare. + "Add Neptune's Bounty as loot?" = true + diff --git a/config/armorposer-common.toml b/config/armorposer-common.toml new file mode 100644 index 0000000..9783a0b --- /dev/null +++ b/config/armorposer-common.toml @@ -0,0 +1,10 @@ + +#General settings +[General] + #Show the Armor Stand configuration GUI on shift right click + enableConfigGui = true + #Allow Armor Stand to be renamed using name tags + enableNameTags = true + #Allow scrolling to increase / decrease an angle value in the posing screen + allowScrolling = true + diff --git a/config/ars_additions-common.toml b/config/ars_additions-common.toml new file mode 100644 index 0000000..7ce6f05 --- /dev/null +++ b/config/ars_additions-common.toml @@ -0,0 +1,15 @@ + +#Ritual of Arcane Permanence +[chunkloading] + #Should the default recipe for the ritual be enabled? + ritual_enabled = false + +#Structures +[structures] + #Should ruined warp portals spawn in the world? + ruined_warp_portals_enabled = true + #Should nexus towers spawn in the world? + nexus_tower_enabled = true + #Should arcane libraries spawn in the world? + arcane_library_enabled = true + diff --git a/config/ars_additions-server.toml b/config/ars_additions-server.toml new file mode 100644 index 0000000..4f6632e --- /dev/null +++ b/config/ars_additions-server.toml @@ -0,0 +1,46 @@ + +#Ritual of Arcane Permanence +[chunkloading] + #Should the ritual cost source? + has_cost = true + #Should the ritual cost be continuous? + repeat_cost = true + #How much source should it cost to run the ritual? + #Range: 1 ~ 10000 + cost = 10000 + #How often should the ritual cost source? (in ticks, defaults to 1 in-game day) + #Range: > 1 + interval = 24000 + #How far should the ritual chunk-load? (in chunks, 0 = 1x1, 1 = 3x3, 2 = 5x5, 3 = 7x7, 4 = 9x9) + #Range: > 0 + initial_radius = 0 + #Should the radius be able to be increased with an item? + radius_incremental = false + #What item is required to increase the chunk-loading radius? + radius_increment_item = "ars_nouveau:source_gem_block" + #What's the maximum amount of augmented increases the ritual should accept? + #Range: > 1 + radius_increment_max = 1 + #Should the ritual require the player who started it to be online? + require_online = true + #How many rituals should players be able to run? + #Range: > 1 + max_rituals = 2147483647 + #Should the server log when a chunk is loaded/unloaded? + log_chunkloading = false + +#Reliquary +[mark_and_recall] + #How much durability should targeting a player with Recall cost? + #Range: 0 ~ 1000 + cost_player = 1000 + #How much durability should targeting an entity with Recall cost? + #Range: 0 ~ 1000 + cost_entity = 250 + #How much durability should targeting a location with Recall cost? + #Range: 0 ~ 1000 + cost_location = 50 + #How long should the Marked effect last (in seconds) when Mark is cast on a player? + #Range: > -1 + effect_duration = 300 + diff --git a/config/ars_additions/glyph_mark.toml b/config/ars_additions/glyph_mark.toml new file mode 100644 index 0000000..6fd0462 --- /dev/null +++ b/config/ars_additions/glyph_mark.toml @@ -0,0 +1,26 @@ + +#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 ~ 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 = [] + diff --git a/config/ars_additions/glyph_recall.toml b/config/ars_additions/glyph_recall.toml new file mode 100644 index 0000000..0194aee --- /dev/null +++ b/config/ars_additions/glyph_recall.toml @@ -0,0 +1,23 @@ + +#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 = [] + diff --git a/config/ars_additions/glyph_retaliate.toml b/config/ars_additions/glyph_retaliate.toml new file mode 100644 index 0000000..be35845 --- /dev/null +++ b/config/ars_additions/glyph_retaliate.toml @@ -0,0 +1,23 @@ + +#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 = 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 = [] + diff --git a/config/ars_controle-server.toml b/config/ars_controle-server.toml new file mode 100644 index 0000000..61771a0 --- /dev/null +++ b/config/ars_controle-server.toml @@ -0,0 +1,12 @@ + +#Config for Warping Spell Prism +[warping_spell_prism] + #Max Source cost of Warping Spell Prism (1 Source Jar = 10000 Source) + max_cost = 5000 + #The minimum distance before Warping Spell Prism costs Source + cost_min_distance = 128 + #Source Cost per block of Warping Spell Prism + cost_per_block = 1 + #Source Cost when crossing dimensions of Warping Spell Prism + dimension_cost = 1000 + diff --git a/config/ars_creo-common.toml b/config/ars_creo-common.toml new file mode 100644 index 0000000..f9a4ece --- /dev/null +++ b/config/ars_creo-common.toml @@ -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 + diff --git a/config/ars_elemental-client.toml b/config/ars_elemental-client.toml new file mode 100644 index 0000000..a64af5f --- /dev/null +++ b/config/ars_elemental-client.toml @@ -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 + diff --git a/config/ars_elemental-common.toml b/config/ars_elemental-common.toml new file mode 100644 index 0000000..dfc53d6 --- /dev/null +++ b/config/ars_elemental-common.toml @@ -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 + diff --git a/config/ars_elemental/glyph_aerial_filter.toml b/config/ars_elemental/glyph_aerial_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_aerial_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_aquatic_filter.toml b/config/ars_elemental/glyph_aquatic_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_aquatic_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_arc_projectile.toml b/config/ars_elemental/glyph_arc_projectile.toml new file mode 100644 index 0000000..0ebc17e --- /dev/null +++ b/config/ars_elemental/glyph_arc_projectile.toml @@ -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 + diff --git a/config/ars_elemental/glyph_bubble_shield.toml b/config/ars_elemental/glyph_bubble_shield.toml new file mode 100644 index 0000000..732a3ce --- /dev/null +++ b/config/ars_elemental/glyph_bubble_shield.toml @@ -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 + diff --git a/config/ars_elemental/glyph_charm.toml b/config/ars_elemental/glyph_charm.toml new file mode 100644 index 0000000..bbfd42c --- /dev/null +++ b/config/ars_elemental/glyph_charm.toml @@ -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 + diff --git a/config/ars_elemental/glyph_conjure_terrain.toml b/config/ars_elemental/glyph_conjure_terrain.toml new file mode 100644 index 0000000..05ac738 --- /dev/null +++ b/config/ars_elemental/glyph_conjure_terrain.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_discharge.toml b/config/ars_elemental/glyph_discharge.toml new file mode 100644 index 0000000..a8d5a69 --- /dev/null +++ b/config/ars_elemental/glyph_discharge.toml @@ -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 + diff --git a/config/ars_elemental/glyph_envenom.toml b/config/ars_elemental/glyph_envenom.toml new file mode 100644 index 0000000..8492031 --- /dev/null +++ b/config/ars_elemental/glyph_envenom.toml @@ -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 + diff --git a/config/ars_elemental/glyph_fiery_filter.toml b/config/ars_elemental/glyph_fiery_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_fiery_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_homing_projectile.toml b/config/ars_elemental/glyph_homing_projectile.toml new file mode 100644 index 0000000..efc489a --- /dev/null +++ b/config/ars_elemental/glyph_homing_projectile.toml @@ -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 + diff --git a/config/ars_elemental/glyph_insect_filter.toml b/config/ars_elemental/glyph_insect_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_insect_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_life_link.toml b/config/ars_elemental/glyph_life_link.toml new file mode 100644 index 0000000..ac6ba3e --- /dev/null +++ b/config/ars_elemental/glyph_life_link.toml @@ -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 + diff --git a/config/ars_elemental/glyph_not_aerial_filter.toml b/config/ars_elemental/glyph_not_aerial_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_aerial_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_not_aquatic_filter.toml b/config/ars_elemental/glyph_not_aquatic_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_aquatic_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_not_fiery_filter.toml b/config/ars_elemental/glyph_not_fiery_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_fiery_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_not_insect_filter.toml b/config/ars_elemental/glyph_not_insect_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_insect_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_not_summon_filter.toml b/config/ars_elemental/glyph_not_summon_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_summon_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_not_undead_filter.toml b/config/ars_elemental/glyph_not_undead_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_not_undead_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_phantom_grasp.toml b/config/ars_elemental/glyph_phantom_grasp.toml new file mode 100644 index 0000000..e4f67bf --- /dev/null +++ b/config/ars_elemental/glyph_phantom_grasp.toml @@ -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 + diff --git a/config/ars_elemental/glyph_poison_spores.toml b/config/ars_elemental/glyph_poison_spores.toml new file mode 100644 index 0000000..9123c06 --- /dev/null +++ b/config/ars_elemental/glyph_poison_spores.toml @@ -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 + diff --git a/config/ars_elemental/glyph_propagator_arc.toml b/config/ars_elemental/glyph_propagator_arc.toml new file mode 100644 index 0000000..81479f0 --- /dev/null +++ b/config/ars_elemental/glyph_propagator_arc.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_propagator_homing.toml b/config/ars_elemental/glyph_propagator_homing.toml new file mode 100644 index 0000000..1de30c6 --- /dev/null +++ b/config/ars_elemental/glyph_propagator_homing.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_spark.toml b/config/ars_elemental/glyph_spark.toml new file mode 100644 index 0000000..3b6ec82 --- /dev/null +++ b/config/ars_elemental/glyph_spark.toml @@ -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 + diff --git a/config/ars_elemental/glyph_spike.toml b/config/ars_elemental/glyph_spike.toml new file mode 100644 index 0000000..e81ecc0 --- /dev/null +++ b/config/ars_elemental/glyph_spike.toml @@ -0,0 +1,33 @@ + +#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 + #Extend time duration, in ticks + #Range: > 0 + extend_time = 10 + diff --git a/config/ars_elemental/glyph_summon_filter.toml b/config/ars_elemental/glyph_summon_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_summon_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_undead_filter.toml b/config/ars_elemental/glyph_undead_filter.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_elemental/glyph_undead_filter.toml @@ -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 = [] + diff --git a/config/ars_elemental/glyph_watery_grave.toml b/config/ars_elemental/glyph_watery_grave.toml new file mode 100644 index 0000000..119bc3b --- /dev/null +++ b/config/ars_elemental/glyph_watery_grave.toml @@ -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 + diff --git a/config/ars_instrumentum-client.toml b/config/ars_instrumentum-client.toml new file mode 100644 index 0000000..3b02f80 --- /dev/null +++ b/config/ars_instrumentum-client.toml @@ -0,0 +1,7 @@ + +["Display mana amount numerical"] + #Display numbers + showNumericalManaBar = false + #Display numbers above the bar instead of on it + displayAboveBar = false + diff --git a/config/ars_mekanica-common.toml b/config/ars_mekanica-common.toml new file mode 100644 index 0000000..e9cdbbf --- /dev/null +++ b/config/ars_mekanica-common.toml @@ -0,0 +1,21 @@ + +[source_dynamo] + #Forge Energy produced per 1 Source consumed + #Range: 1 ~ 1000000 + sourceToFE = 16 + #Source drawn and converted per tick (controls drain speed and FE output) + #Range: 1 ~ 1000000 + sourcePerTick = 20 + #Internal Forge Energy buffer + #Range: > 1000 + energyCapacity = 64000 + #Maximum Forge Energy sent per side per tick + #Range: > 1 + maxTransfer = 2000 + #Internal Source buffer + #Range: 100 ~ 10000000 + sourceCapacity = 10000 + #Block range to pull Source from nearby jars + #Range: 1 ~ 16 + pullRange = 5 + diff --git a/config/ars_nouveau-client.toml b/config/ars_nouveau-client.toml new file mode 100644 index 0000000..2364c38 --- /dev/null +++ b/config/ars_nouveau-client.toml @@ -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 = false + #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 + diff --git a/config/ars_nouveau-common.toml b/config/ars_nouveau-common.toml new file mode 100644 index 0000000..0de9d25 --- /dev/null +++ b/config/ars_nouveau-common.toml @@ -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 + diff --git a/config/ars_nouveau-server.toml b/config/ars_nouveau-server.toml new file mode 100644 index 0000000..b274629 --- /dev/null +++ b/config/ars_nouveau-server.toml @@ -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 + diff --git a/config/ars_nouveau/burst.toml b/config/ars_nouveau/burst.toml new file mode 100644 index 0000000..bdd6451 --- /dev/null +++ b/config/ars_nouveau/burst.toml @@ -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"] + diff --git a/config/ars_nouveau/glyph_accelerate.toml b/config/ars_nouveau/glyph_accelerate.toml new file mode 100644 index 0000000..b0b30a8 --- /dev/null +++ b/config/ars_nouveau/glyph_accelerate.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_amplify.toml b/config/ars_nouveau/glyph_amplify.toml new file mode 100644 index 0000000..a3cda5e --- /dev/null +++ b/config/ars_nouveau/glyph_amplify.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_animate_block.toml b/config/ars_nouveau/glyph_animate_block.toml new file mode 100644 index 0000000..5afa391 --- /dev/null +++ b/config/ars_nouveau/glyph_animate_block.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_aoe.toml b/config/ars_nouveau/glyph_aoe.toml new file mode 100644 index 0000000..3ed0ecd --- /dev/null +++ b/config/ars_nouveau/glyph_aoe.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_blink.toml b/config/ars_nouveau/glyph_blink.toml new file mode 100644 index 0000000..8e76cc0 --- /dev/null +++ b/config/ars_nouveau/glyph_blink.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_bounce.toml b/config/ars_nouveau/glyph_bounce.toml new file mode 100644 index 0000000..c0ec8a0 --- /dev/null +++ b/config/ars_nouveau/glyph_bounce.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_break.toml b/config/ars_nouveau/glyph_break.toml new file mode 100644 index 0000000..17eb677 --- /dev/null +++ b/config/ars_nouveau/glyph_break.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_cold_snap.toml b/config/ars_nouveau/glyph_cold_snap.toml new file mode 100644 index 0000000..09baece --- /dev/null +++ b/config/ars_nouveau/glyph_cold_snap.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_conjure_water.toml b/config/ars_nouveau/glyph_conjure_water.toml new file mode 100644 index 0000000..2ad381e --- /dev/null +++ b/config/ars_nouveau/glyph_conjure_water.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_craft.toml b/config/ars_nouveau/glyph_craft.toml new file mode 100644 index 0000000..0b2fa2c --- /dev/null +++ b/config/ars_nouveau/glyph_craft.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_crush.toml b/config/ars_nouveau/glyph_crush.toml new file mode 100644 index 0000000..24d077d --- /dev/null +++ b/config/ars_nouveau/glyph_crush.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_cut.toml b/config/ars_nouveau/glyph_cut.toml new file mode 100644 index 0000000..1f1b7b7 --- /dev/null +++ b/config/ars_nouveau/glyph_cut.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_dampen.toml b/config/ars_nouveau/glyph_dampen.toml new file mode 100644 index 0000000..0a69e92 --- /dev/null +++ b/config/ars_nouveau/glyph_dampen.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_decelerate.toml b/config/ars_nouveau/glyph_decelerate.toml new file mode 100644 index 0000000..929521d --- /dev/null +++ b/config/ars_nouveau/glyph_decelerate.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_delay.toml b/config/ars_nouveau/glyph_delay.toml new file mode 100644 index 0000000..45e8907 --- /dev/null +++ b/config/ars_nouveau/glyph_delay.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_dispel.toml b/config/ars_nouveau/glyph_dispel.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/config/ars_nouveau/glyph_dispel.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_duration_down.toml b/config/ars_nouveau/glyph_duration_down.toml new file mode 100644 index 0000000..7b54044 --- /dev/null +++ b/config/ars_nouveau/glyph_duration_down.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_ender_inventory.toml b/config/ars_nouveau/glyph_ender_inventory.toml new file mode 100644 index 0000000..b18b875 --- /dev/null +++ b/config/ars_nouveau/glyph_ender_inventory.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_evaporate.toml b/config/ars_nouveau/glyph_evaporate.toml new file mode 100644 index 0000000..0b2fa2c --- /dev/null +++ b/config/ars_nouveau/glyph_evaporate.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_exchange.toml b/config/ars_nouveau/glyph_exchange.toml new file mode 100644 index 0000000..b18b875 --- /dev/null +++ b/config/ars_nouveau/glyph_exchange.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_explosion.toml b/config/ars_nouveau/glyph_explosion.toml new file mode 100644 index 0000000..6b134c1 --- /dev/null +++ b/config/ars_nouveau/glyph_explosion.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_extend_time.toml b/config/ars_nouveau/glyph_extend_time.toml new file mode 100644 index 0000000..b0b30a8 --- /dev/null +++ b/config/ars_nouveau/glyph_extend_time.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_extract.toml b/config/ars_nouveau/glyph_extract.toml new file mode 100644 index 0000000..8576d4b --- /dev/null +++ b/config/ars_nouveau/glyph_extract.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_fangs.toml b/config/ars_nouveau/glyph_fangs.toml new file mode 100644 index 0000000..ba54f52 --- /dev/null +++ b/config/ars_nouveau/glyph_fangs.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_fell.toml b/config/ars_nouveau/glyph_fell.toml new file mode 100644 index 0000000..dcd8dec --- /dev/null +++ b/config/ars_nouveau/glyph_fell.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_firework.toml b/config/ars_nouveau/glyph_firework.toml new file mode 100644 index 0000000..4a991dc --- /dev/null +++ b/config/ars_nouveau/glyph_firework.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_flare.toml b/config/ars_nouveau/glyph_flare.toml new file mode 100644 index 0000000..4c30b71 --- /dev/null +++ b/config/ars_nouveau/glyph_flare.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_fortune.toml b/config/ars_nouveau/glyph_fortune.toml new file mode 100644 index 0000000..0aedad9 --- /dev/null +++ b/config/ars_nouveau/glyph_fortune.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_freeze.toml b/config/ars_nouveau/glyph_freeze.toml new file mode 100644 index 0000000..12a722d --- /dev/null +++ b/config/ars_nouveau/glyph_freeze.toml @@ -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 + diff --git a/config/ars_nouveau/glyph_glide.toml b/config/ars_nouveau/glyph_glide.toml new file mode 100644 index 0000000..2eb404b --- /dev/null +++ b/config/ars_nouveau/glyph_glide.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = 180 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 120 + diff --git a/config/ars_nouveau/glyph_gravity.toml b/config/ars_nouveau/glyph_gravity.toml new file mode 100644 index 0000000..6ff89a7 --- /dev/null +++ b/config/ars_nouveau/glyph_gravity.toml @@ -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 = 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 + diff --git a/config/ars_nouveau/glyph_grow.toml b/config/ars_nouveau/glyph_grow.toml new file mode 100644 index 0000000..b34196d --- /dev/null +++ b/config/ars_nouveau/glyph_grow.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 70 + #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 = [] + diff --git a/config/ars_nouveau/glyph_gust.toml b/config/ars_nouveau/glyph_gust.toml new file mode 100644 index 0000000..8c3474b --- /dev/null +++ b/config/ars_nouveau/glyph_gust.toml @@ -0,0 +1,31 @@ + +#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 = [] + #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 knockback value + #Range: 0.0 ~ 1.7976931348623157E308 + base_value = 1.5 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/config/ars_nouveau/glyph_harm.toml b/config/ars_nouveau/glyph_harm.toml new file mode 100644 index 0000000..6bd51fb --- /dev/null +++ b/config/ars_nouveau/glyph_harm.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #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_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 = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 5 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/config/ars_nouveau/glyph_harvest.toml b/config/ars_nouveau/glyph_harvest.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_harvest.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_heal.toml b/config/ars_nouveau/glyph_heal.toml new file mode 100644 index 0000000..6458e96 --- /dev/null +++ b/config/ars_nouveau/glyph_heal.toml @@ -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 = [] + #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 + diff --git a/config/ars_nouveau/glyph_hex.toml b/config/ars_nouveau/glyph_hex.toml new file mode 100644 index 0000000..c4e87c8 --- /dev/null +++ b/config/ars_nouveau/glyph_hex.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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=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 = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/config/ars_nouveau/glyph_ignite.toml b/config/ars_nouveau/glyph_ignite.toml new file mode 100644 index 0000000..053682e --- /dev/null +++ b/config/ars_nouveau/glyph_ignite.toml @@ -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 = [] + #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 = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 2 + #Potion duration, in seconds + #Range: > 0 + potion_time = 3 + diff --git a/config/ars_nouveau/glyph_infuse.toml b/config/ars_nouveau/glyph_infuse.toml new file mode 100644 index 0000000..9c34851 --- /dev/null +++ b/config/ars_nouveau/glyph_infuse.toml @@ -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 = 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_aoe=1", "ars_nouveau:glyph_extend_time=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 = [] + diff --git a/config/ars_nouveau/glyph_intangible.toml b/config/ars_nouveau/glyph_intangible.toml new file mode 100644 index 0000000..827758e --- /dev/null +++ b/config/ars_nouveau/glyph_intangible.toml @@ -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 = [] + #Base duration, in seconds + #Range: > 0 + base = 3 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/config/ars_nouveau/glyph_interact.toml b/config/ars_nouveau/glyph_interact.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_interact.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_invisibility.toml b/config/ars_nouveau/glyph_invisibility.toml new file mode 100644 index 0000000..149779e --- /dev/null +++ b/config/ars_nouveau/glyph_invisibility.toml @@ -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 = 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 + diff --git a/config/ars_nouveau/glyph_launch.toml b/config/ars_nouveau/glyph_launch.toml new file mode 100644 index 0000000..e9b8763 --- /dev/null +++ b/config/ars_nouveau/glyph_launch.toml @@ -0,0 +1,31 @@ + +#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 = [] + #Base knockup amount + #Range: 0.0 ~ 1.7976931348623157E308 + knockup = 0.8 + #Range: 0.0 ~ 2.147483647E9 + amplify = 0.25 + diff --git a/config/ars_nouveau/glyph_leap.toml b/config/ars_nouveau/glyph_leap.toml new file mode 100644 index 0000000..159941b --- /dev/null +++ b/config/ars_nouveau/glyph_leap.toml @@ -0,0 +1,33 @@ + +#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 = 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 = [] + #If true, will not launch the caster if they are not on the ground. + force_ground = false + #Base knockup amount + #Range: 0.0 ~ 1.7976931348623157E308 + knock_up = 1.5 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/config/ars_nouveau/glyph_light.toml b/config/ars_nouveau/glyph_light.toml new file mode 100644 index 0000000..a3ea3b8 --- /dev/null +++ b/config/ars_nouveau/glyph_light.toml @@ -0,0 +1,32 @@ + +#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 = 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=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 = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/config/ars_nouveau/glyph_lightning.toml b/config/ars_nouveau/glyph_lightning.toml new file mode 100644 index 0000000..28bdf78 --- /dev/null +++ b/config/ars_nouveau/glyph_lightning.toml @@ -0,0 +1,33 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + #Bonus damage for wet entities + #Range: 0.0 ~ 1.7976931348623157E308 + wet_bonus = 2.0 + diff --git a/config/ars_nouveau/glyph_linger.toml b/config/ars_nouveau/glyph_linger.toml new file mode 100644 index 0000000..81f9d85 --- /dev/null +++ b/config/ars_nouveau/glyph_linger.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_name.toml b/config/ars_nouveau/glyph_name.toml new file mode 100644 index 0000000..d9207eb --- /dev/null +++ b/config/ars_nouveau/glyph_name.toml @@ -0,0 +1,26 @@ + +#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 = [] + #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 = [] + diff --git a/config/ars_nouveau/glyph_orbit.toml b/config/ars_nouveau/glyph_orbit.toml new file mode 100644 index 0000000..b4e9a21 --- /dev/null +++ b/config/ars_nouveau/glyph_orbit.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_phantom_block.toml b/config/ars_nouveau/glyph_phantom_block.toml new file mode 100644 index 0000000..df020cf --- /dev/null +++ b/config/ars_nouveau/glyph_phantom_block.toml @@ -0,0 +1,26 @@ + +#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 = 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=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 = [] + diff --git a/config/ars_nouveau/glyph_pickup.toml b/config/ars_nouveau/glyph_pickup.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_pickup.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_pierce.toml b/config/ars_nouveau/glyph_pierce.toml new file mode 100644 index 0000000..7c69733 --- /dev/null +++ b/config/ars_nouveau/glyph_pierce.toml @@ -0,0 +1,17 @@ + +#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 + diff --git a/config/ars_nouveau/glyph_place_block.toml b/config/ars_nouveau/glyph_place_block.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_place_block.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_projectile.toml b/config/ars_nouveau/glyph_projectile.toml new file mode 100644 index 0000000..5f9b744 --- /dev/null +++ b/config/ars_nouveau/glyph_projectile.toml @@ -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 = [] + #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 + diff --git a/config/ars_nouveau/glyph_pull.toml b/config/ars_nouveau/glyph_pull.toml new file mode 100644 index 0000000..0b913a2 --- /dev/null +++ b/config/ars_nouveau/glyph_pull.toml @@ -0,0 +1,31 @@ + +#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 = [] + #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 movement velocity + #Range: 0.0 ~ 1.7976931348623157E308 + base_value = 1.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 0.5 + diff --git a/config/ars_nouveau/glyph_randomize.toml b/config/ars_nouveau/glyph_randomize.toml new file mode 100644 index 0000000..2fc0abf --- /dev/null +++ b/config/ars_nouveau/glyph_randomize.toml @@ -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 = 1 + diff --git a/config/ars_nouveau/glyph_redstone_signal.toml b/config/ars_nouveau/glyph_redstone_signal.toml new file mode 100644 index 0000000..fe83749 --- /dev/null +++ b/config/ars_nouveau/glyph_redstone_signal.toml @@ -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 = [] + #Base time in ticks + #Range: > 0 + base_duration = 5 + #Extend time bonus, in ticks + #Range: > 0 + extend_time = 10 + diff --git a/config/ars_nouveau/glyph_rotate.toml b/config/ars_nouveau/glyph_rotate.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_rotate.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_rune.toml b/config/ars_nouveau/glyph_rune.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/config/ars_nouveau/glyph_rune.toml @@ -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 = [] + diff --git a/config/ars_nouveau/glyph_self.toml b/config/ars_nouveau/glyph_self.toml new file mode 100644 index 0000000..8278bee --- /dev/null +++ b/config/ars_nouveau/glyph_self.toml @@ -0,0 +1,23 @@ + +#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 = [] + #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 = [] + diff --git a/config/ars_nouveau/glyph_sense_magic.toml b/config/ars_nouveau/glyph_sense_magic.toml new file mode 100644 index 0000000..9ae605d --- /dev/null +++ b/config/ars_nouveau/glyph_sense_magic.toml @@ -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 = 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 = 60 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 15 + diff --git a/config/ars_nouveau/glyph_sensitive.toml b/config/ars_nouveau/glyph_sensitive.toml new file mode 100644 index 0000000..1d07f9a --- /dev/null +++ b/config/ars_nouveau/glyph_sensitive.toml @@ -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 = 1 + diff --git a/config/ars_nouveau/glyph_slowfall.toml b/config/ars_nouveau/glyph_slowfall.toml new file mode 100644 index 0000000..149779e --- /dev/null +++ b/config/ars_nouveau/glyph_slowfall.toml @@ -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 = 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 + diff --git a/config/ars_nouveau/glyph_smelt.toml b/config/ars_nouveau/glyph_smelt.toml new file mode 100644 index 0000000..5bc608c --- /dev/null +++ b/config/ars_nouveau/glyph_smelt.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = [] + diff --git a/config/ars_nouveau/glyph_snare.toml b/config/ars_nouveau/glyph_snare.toml new file mode 100644 index 0000000..04ad5dd --- /dev/null +++ b/config/ars_nouveau/glyph_snare.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = 8 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/config/ars_nouveau/glyph_split.toml b/config/ars_nouveau/glyph_split.toml new file mode 100644 index 0000000..457d2cb --- /dev/null +++ b/config/ars_nouveau/glyph_split.toml @@ -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 = 3 + diff --git a/config/ars_nouveau/glyph_summon_decoy.toml b/config/ars_nouveau/glyph_summon_decoy.toml new file mode 100644 index 0000000..dc54f54 --- /dev/null +++ b/config/ars_nouveau/glyph_summon_decoy.toml @@ -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 = 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 = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 15 + #Base duration in seconds + #Range: > 0 + duration = 30 + diff --git a/config/ars_nouveau/glyph_summon_steed.toml b/config/ars_nouveau/glyph_summon_steed.toml new file mode 100644 index 0000000..7fd6343 --- /dev/null +++ b/config/ars_nouveau/glyph_summon_steed.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 120 + #Base duration in seconds + #Range: > 0 + duration = 300 + diff --git a/config/ars_nouveau/glyph_summon_undead.toml b/config/ars_nouveau/glyph_summon_undead.toml new file mode 100644 index 0000000..3e07b23 --- /dev/null +++ b/config/ars_nouveau/glyph_summon_undead.toml @@ -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 = 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 duration in seconds + #Range: > 0 + duration = 15 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 10 + diff --git a/config/ars_nouveau/glyph_summon_vex.toml b/config/ars_nouveau/glyph_summon_vex.toml new file mode 100644 index 0000000..3e07b23 --- /dev/null +++ b/config/ars_nouveau/glyph_summon_vex.toml @@ -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 = 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 duration in seconds + #Range: > 0 + duration = 15 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 10 + diff --git a/config/ars_nouveau/glyph_summon_wolves.toml b/config/ars_nouveau/glyph_summon_wolves.toml new file mode 100644 index 0000000..4196905 --- /dev/null +++ b/config/ars_nouveau/glyph_summon_wolves.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 duration in seconds + #Range: > 0 + duration = 60 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 60 + diff --git a/config/ars_nouveau/glyph_toss.toml b/config/ars_nouveau/glyph_toss.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/config/ars_nouveau/glyph_toss.toml @@ -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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_touch.toml b/config/ars_nouveau/glyph_touch.toml new file mode 100644 index 0000000..b577d96 --- /dev/null +++ b/config/ars_nouveau/glyph_touch.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 5 + #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 = [] + #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 = [] + diff --git a/config/ars_nouveau/glyph_underfoot.toml b/config/ars_nouveau/glyph_underfoot.toml new file mode 100644 index 0000000..efbacd4 --- /dev/null +++ b/config/ars_nouveau/glyph_underfoot.toml @@ -0,0 +1,23 @@ + +#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 = 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 = [] + diff --git a/config/ars_nouveau/glyph_wall.toml b/config/ars_nouveau/glyph_wall.toml new file mode 100644 index 0000000..2115309 --- /dev/null +++ b/config/ars_nouveau/glyph_wall.toml @@ -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_linger"] + diff --git a/config/ars_nouveau/glyph_wind_shear.toml b/config/ars_nouveau/glyph_wind_shear.toml new file mode 100644 index 0000000..ee9edfc --- /dev/null +++ b/config/ars_nouveau/glyph_wind_shear.toml @@ -0,0 +1,33 @@ + +#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 = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.5 + #Damage per block in the air + #Range: 0.0 ~ 1.7976931348623157E308 + airDamage = 0.75 + diff --git a/config/ars_nouveau/glyph_wither.toml b/config/ars_nouveau/glyph_wither.toml new file mode 100644 index 0000000..c4e87c8 --- /dev/null +++ b/config/ars_nouveau/glyph_wither.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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=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 = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/config/ars_nouveau/reset.toml b/config/ars_nouveau/reset.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/ars_nouveau/reset.toml @@ -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 = [] + diff --git a/config/ars_nouveau/rewind.toml b/config/ars_nouveau/rewind.toml new file mode 100644 index 0000000..95974fe --- /dev/null +++ b/config/ars_nouveau/rewind.toml @@ -0,0 +1,38 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #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 = [] + #Max ticks entities should track for motion and health, etc. Note: Entities ANYWHERE are tracking this, setting this to a high value is not recommended for low-spec machines. + #Range: > 0 + entityRewindTracking = 60 + #How many ticks should be rewound before augments + #Range: 1 ~ 60 + baseRewindTime = 40 + #Extend time duration, in ticks + #Range: > 0 + extend_time = 20 + #Duration down time, in ticks + #Range: > 0 + duration_down_time = 10 + diff --git a/config/ars_nouveau/wololo.toml b/config/ars_nouveau/wololo.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/config/ars_nouveau/wololo.toml @@ -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 = [] + diff --git a/config/arsdelight-common.toml b/config/arsdelight-common.toml new file mode 100644 index 0000000..a8a5494 --- /dev/null +++ b/config/arsdelight-common.toml @@ -0,0 +1,19 @@ +enableThirstCompat = true +#Max absorption allowed for Shielding I effect. Every level doubles the cap +#Range: 2.0 ~ 100.0 +maxShieldingAbsorption = 8.0 +#Wilden effect: spell damage bonus per level +#Range: 0.0 ~ 1.0 +wildenSpellDamageBonus = 0.2 +#Wilden effect: max mana bonus per level +#Range: 0.0 ~ 1.0 +wildenMaxManaBonus = 0.2 +#Wilden effect: mana regen bonus per level +#Range: 0.0 ~ 1.0 +wildenManaRegenBonus = 0.2 +#Drygmy farming: make a plain copy of the tool to prevent enchantments, affixes, and gems from taking effect +drygmyFarmingToolPlainCopy = false +#Drygmy farming: cost durability on the tool used for farming +#Range: 0 ~ 10000 +drygmyFarmingDamageTool = 2 + diff --git a/config/arseng-common.toml b/config/arseng-common.toml new file mode 100644 index 0000000..ee606dc --- /dev/null +++ b/config/arseng-common.toml @@ -0,0 +1,7 @@ +#How much AE energy the Source Acceptor should produce per unit of source. +#Range: 0.0 ~ 1.7976931348623157E308 +ae_per_source = 16.0 +#The maximum source capacity of Source P2P output tunnels. +#Range: > 0 +output_p2p_buffer = 1000 + diff --git a/config/arstechnic/glyph_generator.toml b/config/arstechnic/glyph_generator.toml new file mode 100644 index 0000000..0b2fa2c --- /dev/null +++ b/config/arstechnic/glyph_generator.toml @@ -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 = [] + diff --git a/config/arstechnic/glyph_wrench.toml b/config/arstechnic/glyph_wrench.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/config/arstechnic/glyph_wrench.toml @@ -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 = [] + diff --git a/config/asynclogger.toml b/config/asynclogger.toml new file mode 100644 index 0000000..70b6c66 --- /dev/null +++ b/config/asynclogger.toml @@ -0,0 +1,41 @@ +#Specifies whether to enable the mod +enabled = true +#Specifies the value for log4j2.asyncLoggerRingBufferSize (0 = use mod default, -1 = use log4j2 default) +ringBufferSize = 0 +#Specifies the value for log4j2.asyncLoggerWaitStrategy (leave empty for default) +waitStrategy = "" +#Specifies the value for log4j2.asyncLoggerSynchronizeEnqueueWhenQueueFull (leave empty for default) +synchronizeEnqueueWhenQueueFull = "" +#Specifies the value for log4j2.formatMsgAsync (leave empty for default) +formatMsgAsync = "" +#Specifies the value for log4j2.asyncQueueFullPolicy (leave empty for default) +asyncQueueFullPolicy = "" +#Specifies the value for log4j2.discardThreshold (leave empty for default) +discardThreshold = "" +#Specifies whether System.out and System.err should be redirected to the logger +wrapSysOutSysErr = false +#Forge/NeoForge-only: disables writing to `debug.log` +#Note that when enabled, any archived debug log matching the glob pattern `debug-[1-5].log.gz` will be deleted. +noDebugLog = false +#When enabled, compares logging performance without and with AsyncLogger, and logs the test results. Will cause a mass amount of messages to be printed at startup. +testPerformance = false + +[filtering] + #Specifies whether to enable filtering for logs. + #Unless "global" is set to true, filtering happens on the dedicated async thread, with no overhead for the caller. + enabled = false + #When set to true, filtering would happen globally instead of at the logger stage. + #This can avoid creating the LogEvent, at the cost of performing filtering on the caller thread, and not being able to process placeholders properly. + global = false + #Specifies whether to apply filtering to System.out (treated as INFO level) and System.err (treated as ERROR level.) + #Note that if `wrapSysOutSysErr` is disabled, filtering would happen on the caller thread. + sysout = false + #Note: you can also add filters in `config/asynclogger/*.toml`. That way you can freely add comments and format them as you wish. + #The specified logging levels will be filtered out and not logged. Valid values: TRACE, DEBUG, INFO, WARN, ERROR, FATAL + levels = [] + #Messages logged by loggers with the specified names will be filtered out and not logged. + loggers = [] + #Messages containing the specified substrings will be filtered out and not logged. + strings = [] + #Messages that match the specified regexes will be filtered out and not logged. + regexes = [] diff --git a/config/attributefix.json b/config/attributefix.json new file mode 100644 index 0000000..f6b59c6 --- /dev/null +++ b/config/attributefix.json @@ -0,0 +1,796 @@ +{ + "attributes": { + "midnight:malignant_armor": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "forge:step_height_addition": { + "enabled": false, + "min": { + "default": -512, + "value": -512 + }, + "max": { + "default": 512, + "value": 512 + } + }, + "minecraft:generic.follow_range": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "expanded_combat:soul_dmg": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "forge:entity_gravity": { + "enabled": false, + "min": { + "default": -8, + "value": -8 + }, + "max": { + "default": 8, + "value": 8 + } + }, + "stardew_fishing:line_strength": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "piglet:piglet_skill_iterator": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000000, + "value": 10000000 + } + }, + "lodestone:magic_proficiency": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "piglet_structures:piglet_structures_mob_animation": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "minecraft:generic.luck": { + "enabled": true, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "piglet:npc_voice": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "tconstruct:generic.bad_effect_duration_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "stardew_fishing:exp_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "forge:entity_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ars_nouveau:ars_nouveau.perk.saturation": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "piglet_structures:eggtiliser_bonus": { + "enabled": false, + "min": { + "default": 10, + "value": 10 + }, + "max": { + "default": 200, + "value": 200 + } + }, + "piglet_structures:pet_status": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "stardew_fishing:bar_size": { + "enabled": false, + "min": { + "default": 16, + "value": 16 + }, + "max": { + "default": 142, + "value": 142 + } + }, + "expanded_combat:dmg_no_weapon": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "stardew_fishing:golden_chest_bonus": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:zombie.spawn_reinforcements": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:generic.attack_knockback": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 5, + "value": 1000000 + } + }, + "lodestone:magic_resistance": { + "enabled": false, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "forge:swim_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ars_nouveau:ars_nouveau.perk.wixie": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.armor_toughness": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 20, + "value": 1000000 + } + }, + "piglet_structures:piglet_structures_special_ability_cooldown": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "expanded_combat:void_dmg": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "piglet:piglet_animation": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "ars_nouveau:ars_elemental.perk.summon_power": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "tconstruct:generic.jump_boost": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "tconstruct:generic.bouncy": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "tconstruct:generic.good_effect_duration_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "forge:nametag_distance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 64, + "value": 64 + } + }, + "piglet_structures:piglet_structures_flying": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "forge:block_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "cataclysm:additional_critical_damage": { + "enabled": false, + "min": { + "default": -512, + "value": -512 + }, + "max": { + "default": 512, + "value": 512 + } + }, + "piglet_structures:piglet_skill_iterator": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + }, + "aoa3:aggro_range": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, + "value": 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + } + }, + "minecraft:generic.attack_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ars_nouveau:ars_nouveau.perk.mana_regen": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2000, + "value": 2000 + } + }, + "minecraft:generic.attack_damage": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 1000000 + } + }, + "ars_nouveau:ars_nouveau.perk.feather": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "tconstruct:generic.safe_fall_distance": { + "enabled": false, + "min": { + "default": -10, + "value": -10 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.armor": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 30, + "value": 1000000 + } + }, + "cataclysm:eat_speed": { + "enabled": false, + "min": { + "default": -100, + "value": -100 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "tconstruct:generic.crouch_damage_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "tconstruct:player.jump_count": { + "enabled": false, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "tconstruct:generic.knockback_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.flying_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "sons_of_sins:cooldown_cap": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 240, + "value": 240 + } + }, + "minecraft:generic.movement_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "caelus:fall_flying": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "cataclysm:charge_time": { + "enabled": false, + "min": { + "default": -100, + "value": -100 + }, + "max": { + "default": 512, + "value": 512 + } + }, + "tconstruct:player.experience_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "ars_nouveau:ars_nouveau.perk.max_mana": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "tconstruct:player.mining_speed_multiplier": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "tconstruct:player.critical_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.max_health": { + "enabled": true, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1000000 + } + }, + "tconstruct:generic.protection_cap": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 0.949999988079071, + "value": 0.949999988079071 + } + }, + "expanded_combat:heat_dmg": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "expanded_combat:cold_dmg": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "stardew_fishing:treasure_chance_bonus": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "tconstruct:player.use_item_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:horse.jump_strength": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "ars_nouveau:ars_nouveau.perk.spell_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "ars_nouveau:ars_nouveau.perk.warding": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.knockback_resistance": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "cataclysm:nature_heal": { + "enabled": false, + "min": { + "default": -256, + "value": -256 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "lodestone:magic_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "aoa3:ranged_attack_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, + "value": 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + } + }, + "piglet_structures:piglet_structures_despawn_iterator": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000000, + "value": 1000000 + } + } + } +} \ No newline at end of file diff --git a/config/attributeslib.cfg b/config/attributeslib.cfg new file mode 100644 index 0000000..680ae13 --- /dev/null +++ b/config/attributeslib.cfg @@ -0,0 +1,67 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +general { + # If the Attributes GUI is available. + # Default: true + B:"Enable Attributes GUI"=true + + # If description tooltips will be added to potion items. + # Default: true + B:"Enable Potion Tooltips"=true + + # A list of attributes that will be hidden from the Attributes GUI. + # Default: [forge:nametag_distance], [attributeslib:creative_flight], [attributeslib:elytra_flight], [attributeslib:ghost_health] + S:"Hidden Attributes" < + forge:nametag_distance + attributeslib:creative_flight + attributeslib:elytra_flight + attributeslib:ghost_health + > +} + + +combat_rules { + # The protection damage reduction formula. + # Computed after Prot Pierce and Prot Shred are applied. + # Arguments: + # 'protPoints' - The number of protection points the user has after reductions. + # Output: + # The percentage of damage taken after protection has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: 1 - min(0.025 * protPoints, 0.85) + S:"Protection Formula"=1 - min(0.025 * protPoints, 0.85) + + # The a-value formula, which computes an intermediate used in the armor formula. + # Arguments: + # 'damage' - The damage of the incoming attack. + # Output: + # The a-value, which will be supplied as an argument to the armor formula. + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: if(damage < 20, 10, 10 + (damage - 20) / 2) + S:"A-Value Formula"=if(damage < 20, 10, 10 + (damage - 20) / 2) + + # The armor damage reduction formula. + # Computed after Armor Pierce and Armor Shred are applied. + # Arguments: + # 'a' - The a-value computed by the a-value formula. + # 'damage' - The damage of the incoming attack. + # 'armor' - The armor value of the user after reductions. + # 'toughness' - The armor toughness value of the user. + # Output: + # The percentage of damage taken after armor has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # Note: + # The vanilla formula is: 1 - min(max(armor - damage / (2 + toughness / 4), armor / 5), 20) / 25 + # + # Default: a / (a + armor) + S:"Armor Formula"=a / (a + armor) +} + + diff --git a/config/azurelib.json b/config/azurelib.json new file mode 100644 index 0000000..859b787 --- /dev/null +++ b/config/azurelib.json @@ -0,0 +1,37 @@ +{ + "bool": true, + "number": 15, + "longNumber": 16644564564561651, + "floatNumber": 151.3123, + "doubleNumber": 316.15646556, + "string": "random text", + "color": "#33AADD", + "color2": "#66771166", + "boolArray": [ + false, + false, + true, + false + ], + "intArray": [ + 153, + 123, + 54 + ], + "longArray": [ + 13, + 56, + 133 + ], + "floatArray": [ + 500.0, + 1561.23 + ], + "stringArray": [ + "minecraft:test" + ], + "testEnum": "C", + "nestedTest": { + "testInt": 13 + } +} \ No newline at end of file diff --git a/config/backpacked.augments.toml b/config/backpacked.augments.toml new file mode 100644 index 0000000..4248ae0 --- /dev/null +++ b/config/backpacked.augments.toml @@ -0,0 +1,36 @@ +# A list that contains ids of augments that should be disabled. The augments will be +# hidden from the popup menu and cannot be selected. Augments applied on existing +# backpacks will simply be removed. Use advanced tooltips (F3 + H) to discover the IDs +# of augments. +# Example: disabledAugments = ["backpacked:recall", "backpacked:lootbound"] +disabledAugments = [] + +# Hopper Bridge related properties +[imbuedHide] + # If enabled, Imbued Hide will make the backpack immune to fire regardless of the damage source + # Valid values: true, false + fireImmunity = true + # A list containing ids of damage types that the backpack will be invulnerable to when Imbued Hide is applied. + # You can discover all valid damage types in-game by pasting in the command (include all characters between the quotes): "/damage @s 1 " + # Example: invulnerableToDamageTypes = ["minecraft:cactus", "minecraft:explosion"] + invulnerableToDamageTypes = ["minecraft:cactus", "minecraft:explosion", "minecraft:sonic_boom"] + +# Hopper Bridge related properties +[hopperBridge] + # The maximum amount of filters that can be configured + # Valid range: 1 to 256 (inclusive) + maxFilters = 32 + +# Immortal related properties +[immortal] + # The amount of ticks to wait after Immortal has been triggered for it to be able to be triggered again. + # By default, Immortal is set to 1 minute. Use the formula: ticks = 20 * + # Valid range: 0 to 2147483647 (inclusive) + cooldown = 1200 + +# Funnelling related properties +[funnelling] + # The maximum amount of filters that can be configured + # Valid range: 1 to 256 (inclusive) + maxFilters = 32 + diff --git a/config/backpacked.backpack.toml b/config/backpacked.backpack.toml new file mode 100644 index 0000000..9e5088c --- /dev/null +++ b/config/backpacked.backpack.toml @@ -0,0 +1,403 @@ + +# Augment Bay related properties +[augmentBays] + # If set to true, all augment bays will be unlocked by default. + # Valid values: true, false + unlockAllAugmentBays = false + # If true, the first augment bay will automatically be unlocked by default and for free. + # Valid values: true, false + unlockFirstAugmentBay = false + # If set to true, augment bays may be unlocked using Unlock Tokens + # Valid values: true, false + allowUnlockingUsingUnlockToken = false + + # Cost related properties for augment bays + [augmentBays.unlockCost] + # Only applicable if paymentType is set to ITEM. This option will control the item used when paying + # to unlock new slots. + paymentItem = "minecraft:emerald" + # A list of numbers that represent the cost values, must be whole and positive + # numbers only. See customCostsSelectionFunction property to set the behaviour of + # how values are selected from the custom costs list. + # + customCosts = [10, 20, 30, 40] + # If enabled, instead of using a cost that is calculated based on a minCost + # and maxCost, custom costs allow the cost to be specified manually using + # a list of values (see customCosts). + # Valid values: true, false + useCustomCosts = true + # The maximum cost to unlock a backpack slot. This value would be the cost + # when unlocking the final slot in a backpack inventory. The cost to unlock + # prior slots are interpolated from the minCost to this value, and scaled + # by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + maxCost = 40 + # Determines how the cost value is selected from the customCosts list. + # + # Possible Functions: + # LINEAR_INTERPOLATION - This will count how many slots/bays are unlocked plus one and divide it by the + # maximum unlockable slots/bays. For example, if 10 out of 20 slots are unlocked, + # a value of 11 divided by 20 will be evaluated and that will equal 0.55 or 55%. + # A cost value is then picked out of the customCosts list at the position that + # represents 55% percent of the lists length. So if customCosts contained 20 values, it + # will be picking the 11th value. The formula is custom_costs_length * ((unlocked_count + 1) / total_unlockable). + # (See below for real examples) + # INDEX_WITH_CLAMP - This option will exactly match the next unlock count to an index in the customCosts + # list. For example, if 10 out of 20 slots are unlocked, the next unlock count will + # be 11, so the 11th value in the custom costs list will be used as the cost to + # unlock the next slot/bay. This option will safely handle cases where if the 11th value + # doesn't exist, due the custom costs list containing less than 11 values, the last + # value in the list will be selected. (See below for real examples) + # + # Examples: + # 1. Backpack has 27 unlockable slots, and this option is set to INDEX_WITH_CLAMP. The custom costs + # list contains the values [5, 5, 5, 5, 5, 10]. This is interpreted as "the first five unlock costs + # will be 5, all the remaining will cost 10". + # + # 2. Backpack has 3 unlockable augment bays, and this option is set to INDEX_WITH_CLAMP. The custom + # cost lists contains the values [5, 10, 15]. This is interpreted as "the first augment bay will + # cost 5, the second will cost 10, and the final will cost 15". + # + # 3. Backpack has 18 unlockable slots, and this option is set to LINEAR_INTERPOLATION. The custom costs + # list contains the values [1, 100]. This is interpreted as "the first nine unlock costs will + # cost 1, then the final nine will cost 100". + # + # 4. Backpack has 9 unlockable slots, and this option is set to LINEAR_INTERPOLATION, and the custom costs + # list contains the values [1, 2, 3, 4, 5, 6, 7, 8, 9]. Since the count of the unlockable slots (9) and the + # length of the customCosts list (9) are the exact same, the first unlock cost will be 1, the + # second 2, the third 3, and so on until 9. However, if you bumped the backpack to 18 unlockable slots, + # this would then change to, the first two unlock costs will be 1, the next two unlock costs will be 2, the + # following two unlock costs will be 3. + # + # Note from MrCrayfish: + # This may seem confusing (and it is), but just play around with this config property. Always start with a + # fresh backpack everytime you change this property, or you may not see how the property affects the selection + # process. I suggest starting with LINEAR_INTERPOLATION and then adding enough values to the customCosts list + # so it matches the number of slots in the backpack (so if the backpack has 54 slots, put 54 values into customCosts). + # Once you've tried that, half the number of values in customCosts (so if 54 slots, put 27 values into customCosts) + # and this will give you an understanding of how the function works. Then afterwards, try INDEX_WITH_CLAMP but set + # the values [1, 2, 3] as the customCosts. You will see the first unlock cost 1, the second cost 2, and every other + # unlock will cost 3. + # + # Valid values: LINEAR_INTERPOLATION, INDEX_WITH_CLAMP + customCostsSelectionFunction = "INDEX_WITH_CLAMP" + # The interpolate method to use when calculating the cost of unlocking a slot. The cost + # of slots increases the more slots that are unlocked. This function determines how steep + # the price will increase after each slot is unlocked. The interpolated value is calculated + # using the minCost and maxCost. + # + # Function Descriptions: + # LINEAR - A constant grow in the cost. Cost will jump by the same value after every slot unlocked. + # SQUARED - Slowly scales the cost for about half, then cost will increase noticeably for the final half. + # CUBIC - Very slowly scales the cost for about two thirds, then cost increases sharply for the final third. + # + # Note: This property has no effect if useCustomCosts is set to true + # + # Valid values: LINEAR, SQUARED, CUBIC + costInterpolateFunction = "LINEAR" + # The minimum cost to unlock a backpack slot. This value would be the cost + # when unlocking the first slot in a backpack inventory. The cost to unlock + # subsequent slots are interpolated from the this value to the maxCost, and + # scaled by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + minCost = 10 + # The type of payment to use to unlock backpack slots. By default this value is set to EXPERIENCE, + # which will use the players experience levels are used to unlock new slots. If value is set to + # ITEM, this will instead consume a specified item from the player's inventory (including anything + # placed in the backpack) to unlock new slots. + # Valid values: EXPERIENCE, ITEM + paymentType = "EXPERIENCE" + +# Equipable related properties +[equipable] + # The number of equippable slots that will automatically be unlocked by default and for free. + # Please note that the cost model will still factor these free slots into the calculation + # for unlocking the next locked slot. The slots also cannot be revoked once unlocked. + # Valid range: 0 to 9 (inclusive) + initialUnlockedEquipableSlots = 1 + # If set to true, all equipable slots will be unlocked by default. + # WARNING: Reverting the option from true to false will cause backpacks to be dropped + # into the world if the slot they are in is now locked. You have been warned. + # Valid values: true, false + unlockAllEquipableSlots = false + # If enabled, backpacks will stay equipped on the player after death (same as the + # keepInventory game rule). Please note that this will make the Recall augment + # effectively useless. + # Valid values: true, false + keepOnDeath = false + # If set to true, equipable slots may be unlocked using Unlock Tokens + # Valid values: true, false + allowUnlockingUsingUnlockToken = false + # The maximum amount of backpacks that can be equipped by a player. This will determine + # how many slots will appear when opening the "Equipped Backpacks" menu. + # Valid range: 1 to 9 (inclusive) + maxEquipable = 5 + + # Cost related properties for equipable slots + [equipable.unlockCost] + # Only applicable if paymentType is set to ITEM. This option will control the item used when paying + # to unlock new slots. + paymentItem = "minecraft:emerald" + # A list of numbers that represent the cost values, must be whole and positive + # numbers only. See customCostsSelectionFunction property to set the behaviour of + # how values are selected from the custom costs list. + # + customCosts = [30, 30, 30, 40] + # If enabled, instead of using a cost that is calculated based on a minCost + # and maxCost, custom costs allow the cost to be specified manually using + # a list of values (see customCosts). + # Valid values: true, false + useCustomCosts = true + # The maximum cost to unlock a backpack slot. This value would be the cost + # when unlocking the final slot in a backpack inventory. The cost to unlock + # prior slots are interpolated from the minCost to this value, and scaled + # by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + maxCost = 40 + # Determines how the cost value is selected from the customCosts list. + # + # Possible Functions: + # LINEAR_INTERPOLATION - This will count how many slots/bays are unlocked plus one and divide it by the + # maximum unlockable slots/bays. For example, if 10 out of 20 slots are unlocked, + # a value of 11 divided by 20 will be evaluated and that will equal 0.55 or 55%. + # A cost value is then picked out of the customCosts list at the position that + # represents 55% percent of the lists length. So if customCosts contained 20 values, it + # will be picking the 11th value. The formula is custom_costs_length * ((unlocked_count + 1) / total_unlockable). + # (See below for real examples) + # INDEX_WITH_CLAMP - This option will exactly match the next unlock count to an index in the customCosts + # list. For example, if 10 out of 20 slots are unlocked, the next unlock count will + # be 11, so the 11th value in the custom costs list will be used as the cost to + # unlock the next slot/bay. This option will safely handle cases where if the 11th value + # doesn't exist, due the custom costs list containing less than 11 values, the last + # value in the list will be selected. (See below for real examples) + # + # Examples: + # 1. Backpack has 27 unlockable slots, and this option is set to INDEX_WITH_CLAMP. The custom costs + # list contains the values [5, 5, 5, 5, 5, 10]. This is interpreted as "the first five unlock costs + # will be 5, all the remaining will cost 10". + # + # 2. Backpack has 3 unlockable augment bays, and this option is set to INDEX_WITH_CLAMP. The custom + # cost lists contains the values [5, 10, 15]. This is interpreted as "the first augment bay will + # cost 5, the second will cost 10, and the final will cost 15". + # + # 3. Backpack has 18 unlockable slots, and this option is set to LINEAR_INTERPOLATION. The custom costs + # list contains the values [1, 100]. This is interpreted as "the first nine unlock costs will + # cost 1, then the final nine will cost 100". + # + # 4. Backpack has 9 unlockable slots, and this option is set to LINEAR_INTERPOLATION, and the custom costs + # list contains the values [1, 2, 3, 4, 5, 6, 7, 8, 9]. Since the count of the unlockable slots (9) and the + # length of the customCosts list (9) are the exact same, the first unlock cost will be 1, the + # second 2, the third 3, and so on until 9. However, if you bumped the backpack to 18 unlockable slots, + # this would then change to, the first two unlock costs will be 1, the next two unlock costs will be 2, the + # following two unlock costs will be 3. + # + # Note from MrCrayfish: + # This may seem confusing (and it is), but just play around with this config property. Always start with a + # fresh backpack everytime you change this property, or you may not see how the property affects the selection + # process. I suggest starting with LINEAR_INTERPOLATION and then adding enough values to the customCosts list + # so it matches the number of slots in the backpack (so if the backpack has 54 slots, put 54 values into customCosts). + # Once you've tried that, half the number of values in customCosts (so if 54 slots, put 27 values into customCosts) + # and this will give you an understanding of how the function works. Then afterwards, try INDEX_WITH_CLAMP but set + # the values [1, 2, 3] as the customCosts. You will see the first unlock cost 1, the second cost 2, and every other + # unlock will cost 3. + # + # Valid values: LINEAR_INTERPOLATION, INDEX_WITH_CLAMP + customCostsSelectionFunction = "INDEX_WITH_CLAMP" + # The interpolate method to use when calculating the cost of unlocking a slot. The cost + # of slots increases the more slots that are unlocked. This function determines how steep + # the price will increase after each slot is unlocked. The interpolated value is calculated + # using the minCost and maxCost. + # + # Function Descriptions: + # LINEAR - A constant grow in the cost. Cost will jump by the same value after every slot unlocked. + # SQUARED - Slowly scales the cost for about half, then cost will increase noticeably for the final half. + # CUBIC - Very slowly scales the cost for about two thirds, then cost increases sharply for the final third. + # + # Note: This property has no effect if useCustomCosts is set to true + # + # Valid values: LINEAR, SQUARED, CUBIC + costInterpolateFunction = "LINEAR" + # The minimum cost to unlock a backpack slot. This value would be the cost + # when unlocking the first slot in a backpack inventory. The cost to unlock + # subsequent slots are interpolated from the this value to the maxCost, and + # scaled by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + minCost = 10 + # The type of payment to use to unlock backpack slots. By default this value is set to EXPERIENCE, + # which will use the players experience levels are used to unlock new slots. If value is set to + # ITEM, this will instead consume a specified item from the player's inventory (including anything + # placed in the backpack) to unlock new slots. + # Valid values: EXPERIENCE, ITEM + paymentType = "EXPERIENCE" + +# Inventory related properties +[inventory] + # A list of items that are not allowed inside the inventory of a backpack. + # Note: It is recommended to ban items that have an inventory as this will create + # large NBT data and potentially crash the server! + bannedItems = ["travelersbackpack:custom_travelers_backpack", "pinesbarrels:better_barrel", "quark:seed_pouch", "quark:backpack", "sophisticatedbackpacks:backpack", "sophisticatedbackpacks:iron_backpack", "sophisticatedbackpacks:gold_backpack", "sophisticatedbackpacks:diamond_backpack", "sophisticatedbackpacks:netherite_backpack", "improvedbackpacks:tiny_pocket", "improvedbackpacks:medium_pocket", "improvedbackpacks:large_pocket", "improvedbackpacks:white_backpack", "improvedbackpacks:orange_backpack", "improvedbackpacks:magenta_backpack", "improvedbackpacks:light_blue_backpack", "improvedbackpacks:yellow_backpack", "improvedbackpacks:lime_backpack", "improvedbackpacks:pink_backpack", "improvedbackpacks:gray_backpack", "improvedbackpacks:light_gray_backpack", "improvedbackpacks:cyan_backpack", "improvedbackpacks:purple_backpack", "improvedbackpacks:blue_backpack", "improvedbackpacks:brown_backpack", "improvedbackpacks:green_backpack", "improvedbackpacks:red_backpack", "improvedbackpacks:black_backpack", "immersiveengineering:toolbox", "immersiveengineering:crate", "immersiveengineering:reinforced_crate", "create:white_toolbox", "create:orange_toolbox", "create:magenta_toolbox", "create:light_blue_toolbox", "create:yellow_toolbox", "create:lime_toolbox", "create:pink_toolbox", "create:gray_toolbox", "create:light_gray_toolbox", "create:cyan_toolbox", "create:purple_toolbox", "create:blue_toolbox", "create:brown_toolbox", "create:green_toolbox", "create:red_toolbox", "create:black_toolbox", "mekanism:personal_chest", "supplementaries:sack"] + + # Slots related properties + [inventory.slots] + # The number of slots that will automatically be unlocked by default and for free. + # Please note that the cost model will still factor these free slots into the calculation + # for unlocking the next locked slot. The slots also cannot be revoked once unlocked. + # Valid range: 0 to 253 (inclusive) + initialUnlockedSlots = 9 + # If set to true, backpack slots may be unlocked using Unlock Tokens + # Valid values: true, false + allowUnlockingUsingUnlockToken = true + # If set to true, all backpacks slots will be unlocked by default. + # WARNING: Reverting the option from true to false will cause items to be dropped + # into the world if the slot they are in is now locked. You have been warned. + # Valid values: true, false + unlockAllSlots = false + + # Cost related properties for inventory slots + [inventory.slots.unlockCost] + # Only applicable if paymentType is set to ITEM. This option will control the item used when paying + # to unlock new slots. + paymentItem = "minecraft:emerald" + # A list of numbers that represent the cost values, must be whole and positive + # numbers only. See customCostsSelectionFunction property to set the behaviour of + # how values are selected from the custom costs list. + # + customCosts = [] + # If enabled, instead of using a cost that is calculated based on a minCost + # and maxCost, custom costs allow the cost to be specified manually using + # a list of values (see customCosts). + # Valid values: true, false + useCustomCosts = false + # The maximum cost to unlock a backpack slot. This value would be the cost + # when unlocking the final slot in a backpack inventory. The cost to unlock + # prior slots are interpolated from the minCost to this value, and scaled + # by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + maxCost = 20 + # Determines how the cost value is selected from the customCosts list. + # + # Possible Functions: + # LINEAR_INTERPOLATION - This will count how many slots/bays are unlocked plus one and divide it by the + # maximum unlockable slots/bays. For example, if 10 out of 20 slots are unlocked, + # a value of 11 divided by 20 will be evaluated and that will equal 0.55 or 55%. + # A cost value is then picked out of the customCosts list at the position that + # represents 55% percent of the lists length. So if customCosts contained 20 values, it + # will be picking the 11th value. The formula is custom_costs_length * ((unlocked_count + 1) / total_unlockable). + # (See below for real examples) + # INDEX_WITH_CLAMP - This option will exactly match the next unlock count to an index in the customCosts + # list. For example, if 10 out of 20 slots are unlocked, the next unlock count will + # be 11, so the 11th value in the custom costs list will be used as the cost to + # unlock the next slot/bay. This option will safely handle cases where if the 11th value + # doesn't exist, due the custom costs list containing less than 11 values, the last + # value in the list will be selected. (See below for real examples) + # + # Examples: + # 1. Backpack has 27 unlockable slots, and this option is set to INDEX_WITH_CLAMP. The custom costs + # list contains the values [5, 5, 5, 5, 5, 10]. This is interpreted as "the first five unlock costs + # will be 5, all the remaining will cost 10". + # + # 2. Backpack has 3 unlockable augment bays, and this option is set to INDEX_WITH_CLAMP. The custom + # cost lists contains the values [5, 10, 15]. This is interpreted as "the first augment bay will + # cost 5, the second will cost 10, and the final will cost 15". + # + # 3. Backpack has 18 unlockable slots, and this option is set to LINEAR_INTERPOLATION. The custom costs + # list contains the values [1, 100]. This is interpreted as "the first nine unlock costs will + # cost 1, then the final nine will cost 100". + # + # 4. Backpack has 9 unlockable slots, and this option is set to LINEAR_INTERPOLATION, and the custom costs + # list contains the values [1, 2, 3, 4, 5, 6, 7, 8, 9]. Since the count of the unlockable slots (9) and the + # length of the customCosts list (9) are the exact same, the first unlock cost will be 1, the + # second 2, the third 3, and so on until 9. However, if you bumped the backpack to 18 unlockable slots, + # this would then change to, the first two unlock costs will be 1, the next two unlock costs will be 2, the + # following two unlock costs will be 3. + # + # Note from MrCrayfish: + # This may seem confusing (and it is), but just play around with this config property. Always start with a + # fresh backpack everytime you change this property, or you may not see how the property affects the selection + # process. I suggest starting with LINEAR_INTERPOLATION and then adding enough values to the customCosts list + # so it matches the number of slots in the backpack (so if the backpack has 54 slots, put 54 values into customCosts). + # Once you've tried that, half the number of values in customCosts (so if 54 slots, put 27 values into customCosts) + # and this will give you an understanding of how the function works. Then afterwards, try INDEX_WITH_CLAMP but set + # the values [1, 2, 3] as the customCosts. You will see the first unlock cost 1, the second cost 2, and every other + # unlock will cost 3. + # + # Valid values: LINEAR_INTERPOLATION, INDEX_WITH_CLAMP + customCostsSelectionFunction = "LINEAR_INTERPOLATION" + # The interpolate method to use when calculating the cost of unlocking a slot. The cost + # of slots increases the more slots that are unlocked. This function determines how steep + # the price will increase after each slot is unlocked. The interpolated value is calculated + # using the minCost and maxCost. + # + # Function Descriptions: + # LINEAR - A constant grow in the cost. Cost will jump by the same value after every slot unlocked. + # SQUARED - Slowly scales the cost for about half, then cost will increase noticeably for the final half. + # CUBIC - Very slowly scales the cost for about two thirds, then cost increases sharply for the final third. + # + # Note: This property has no effect if useCustomCosts is set to true + # + # Valid values: LINEAR, SQUARED, CUBIC + costInterpolateFunction = "CUBIC" + # The minimum cost to unlock a backpack slot. This value would be the cost + # when unlocking the first slot in a backpack inventory. The cost to unlock + # subsequent slots are interpolated from the this value to the maxCost, and + # scaled by the scaleFunction. + # + # Note: This property has no effect if useCustomCosts is set to true + # Valid range: 1 to 100 (inclusive) + minCost = 1 + # The type of payment to use to unlock backpack slots. By default this value is set to EXPERIENCE, + # which will use the players experience levels are used to unlock new slots. If value is set to + # ITEM, this will instead consume a specified item from the player's inventory (including anything + # placed in the backpack) to unlock new slots. + # Valid values: EXPERIENCE, ITEM + paymentType = "EXPERIENCE" + + # Size related properties + [inventory.size] + # The amount of columns in the backpack inventory. + # WARNING: Larger than 15 columns will start to cut off GUI elements when using auto GUI + # scale. If you make the size of the backpack smaller, items in the backpack that no + # longer fit will spawn into the world. Take care when changing this property on a + # running game/server since the changes will be automatically reloaded upon saving this file. + # Valid range: 1 to 23 (inclusive) + columns = 9 + # The amount of rows in the backpack inventory. + # WARNING: Larger than 6 rows will not fit on some resolutions when using auto GUI scale. + # If you make the size of the backpack smaller, items in the backpack that no + # longer fit will spawn into the world. Take care when changing this property on a + # running game/server since the changes will be automatically reloaded upon saving this file. + # Valid range: 1 to 11 (inclusive) + rows = 5 + +# Cosmetic related properties +[cosmetics] + # A list that contains ids of backpack cosmetics that will be disabled. The default + # cosmetic (as configured by defaultCosmetic) cannot be disabled even if added to this + # list. You can grab the ID of backpacks by hovering them in the customisation screen + # while holding down CTRL button on your keyboard, and clicking will copy the ID to + # your clipboard. + # Example: disabledCosmetics = ["backpacked:rocket", "backpacked:classic", "backpacked:honey_jar"] + disabledCosmetics = [] + # Allows every player to use any backpack cosmetic variant without needing to + # complete the challenges. Side note, any progress to a challenge will not be + # tracked while enabled. + # Valid values: true, false + unlockAllCosmetics = false + # If enabled, prevents backpacks from being customised. This will remove the + # customise button from the backpack inventory + # Valid values: true, false + disableCustomisation = false + # The default cosmetic (model) of the backpack. This should generally be a backpack + # that is unlocked by default + defaultCosmetic = "backpacked:vintage" + diff --git a/config/backpacked.client.toml b/config/backpacked.client.toml new file mode 100644 index 0000000..cd6e018 --- /dev/null +++ b/config/backpacked.client.toml @@ -0,0 +1,22 @@ +# If enabled, hides the call to action at the bottom of the customisation menu which links out to community addons and a guide. +# Valid values: true, false +hideAddonsCallToAction = false +# Determines how unlockable slots are displayed and interactions are handled. This +# option can be changed directly in the backpack inventory GUI. +# +# Mode descriptions: +# ENABLED - Unlockable slots will always be enabled (visible and interactable). +# PURCHASABLE - Unlockable slots will only be enabled if the player has has exp levels +# to purchase/unlock the slot, otherwise they will be disabled (faded out +# and not interactable). +# DISABLED - Unlockable slots will always be disabled. (faded out and not interactable). +# +# Valid values: ENABLED, PURCHASABLE, DISABLED +unlockableSlotMode = "PURCHASABLE" +# If enabled, hides the config button from the backpack screen +# Valid values: true, false +hideConfigButton = false +# Very secret feature, do not enable if you don't want your screen filled with particle effects +# Valid values: true, false +glitterBomb = false + diff --git a/config/backpacked.server.toml b/config/backpacked.server.toml new file mode 100644 index 0000000..8ad2efd --- /dev/null +++ b/config/backpacked.server.toml @@ -0,0 +1,46 @@ + +[pickpocketing] + # The maximum angle at which another player's backpack can be accessed. + # Think of this as how directly behind the backpack the player needs to be + # in order to pickpocket. A smaller range prevents the player from accessing + # the backpack from the side. + # Valid range: 0 to 90 (inclusive) + maxAngleRange = 80.0 + # If enabled, allows players to access the backpack of another player by interacting with the visible backpack on their back. + # Valid values: true, false + enabledPickpocketing = true + # The maximum reach distance of a player to interact with another player's backpack. + # Valid range: 0 to 4 (inclusive) + maxReachDistance = 2.0 + +[wanderingTrader] + # If enabled, allows wandering traders to equip backpacks + # Valid values: true, false + enableBackpack = true + # The chance a Wandering Trader will spawn with a backpack. The chance is interpreted as one out of x, with x being the number given from this config option. + # Valid range: 1 to 100 (inclusive) + spawnWithBackpackChance = 2 + + [wanderingTrader.pickpocketingChallenge] + # The maximum distance a Wandering Trader can detect a player. The longer the distance, the more difficult the challenge to pickpocket their backpack. + # Valid range: 1 to 32 (inclusive) + maxDetectionDistance = 10.0 + # The maximum multiplier to apply when generating loot in the Wandering Trader backpack + # Valid range: 1 to 64 (inclusive) + maxLootMultiplier = 12 + # If true, allows players who are disliked by Wandering Traders to continue to trade normally with them. A player is considered disliked if they are caught when trying to pickpocket a Wandering Trader's backpack. + # Valid values: true, false + dislikedPlayersCanTrade = false + # The amount of time (in ticks) a player has to wait before a Wandering Trader will like them again. If a player gets caught pickpocketing a Wandering Trader, the cooldown will be reset + # Valid range: 0 to 24000 (inclusive) + dislikeCooldown = 6000 + # Instead of generating trades as loot in the Wandering Traders backpacks, only generate emeralds. + # Valid values: true, false + generateEmeraldsOnly = false + # The time (in ticks) a Wandering Trader will wait before it decides to forget about a detected player. The Wandering Trader will wait indefinitely if the detected player is within the maximum detection distance. + # Valid range: 1 to 12000 (inclusive) + timeToForgetPlayer = 200 + # The maximum size of an emerald stack that can generate in the Wandering Trader backpack + # Valid range: 1 to 64 (inclusive) + maxEmeraldStack = 32 + diff --git a/config/badoptimizations.txt b/config/badoptimizations.txt new file mode 100644 index 0000000..76ac1c8 --- /dev/null +++ b/config/badoptimizations.txt @@ -0,0 +1,73 @@ +# BadOptimizations configuration +# Toggle and configure optimizations here. +# *All* of these require restarts. + +# Whether we should cancel updating the lightmap if not needed. +enable_lightmap_caching: true +# How much the in-game time must change in ticks (default tick rate = 1/20th of a second) +# for the lightmap to update. +# Higher values will result in less frequent updates +# to block lighting, but slightly better performance. +# Values below 2 will disable the optimization. +lightmap_time_change_needed_for_update: 80 + +# Whether the sky's color should be cached unless you're on a biome border. +enable_sky_color_caching: true +# How much the in-game time must change in ticks for the sky color to +# be recalculated when not between biome borders. Higher values will result in +# the sky updating less frequently, but slightly better performance. +# Values below 2 will all have the same effect. +skycolor_time_change_needed_for_update: 3 + +# Whether we should avoid calling debug renderers +# if there are no debug entries to render or process. +enable_debug_renderer_disable_if_not_needed: true + +# +# Micro optimizations +# + +# Whether we should avoid calling the particle manager +# and its calculations if there are no particles. +enable_particle_manager_optimization: true +# Whether we should avoid calling the toast manager if there are no toasts. +enable_toast_optimizations: true +# Whether the result of getSkyAngle should be cached +# for the entire frame during rendering. +enable_sky_angle_caching_in_worldrenderer: true +# Whether entity renderers should be stored directly in EntityType instead of a HashMap. +# If your entity-adding mod crashes with this mod, it's probably this option's fault. +enable_entity_renderer_caching: true +# Whether block entity renderers should be stored in BlockEntityType instead of a HashMap. +enable_block_entity_renderer_caching: true +# Whether entity flags should be cached instead of calling DataTracker. +# Also removes the unnecessary thread lock in DataTracker. +# Unneeded with Lithium. Has no effect in Minecraft 1.20.5+. +enable_entity_flag_caching: true +# Whether we should avoid calling FOV calculations +# if the FOV effect scale is zero. +enable_remove_redundant_fov_calculations: true +# Don't tick the tutorial if the game is not in demo mode. +enable_remove_tutorial_if_not_demo: true + +# +# Other +# + +# Whether BadOptimizations should be added onto +# the left text of the F3 menu. +show_f3_text: true + +# Some config options will be force-disabled if certain mods are present +# due to incompatibilities (e.g. entity rendering caching +# is disabled w/ Twilight Forest / BedrockSkinUtility / SkinShuffle). +# However, if you still want to use the optimizations, you can override it +# by setting this to true. Beware of crashes. And Herobrine. +ignore_mod_incompatibilities: false + +# Whether to log the entire config into console when booting up. +# If you plan on reporting an issue, please keep this on. +log_config: true + +# Do not change this +config_version: 4 diff --git a/config/bagus_lib-client.toml b/config/bagus_lib-client.toml new file mode 100644 index 0000000..4735a8c --- /dev/null +++ b/config/bagus_lib-client.toml @@ -0,0 +1,7 @@ +#Enable the Mini Bagu cosmetic. [true / false] +"Enable Mini Bagu cosmetic" = false +#Enable Cooler EndPoem Feature...(Take a look the After beat the End) [true / false] +"Enable Cooler EndPoem" = true +#Enable First Person Animation(When you using model change mod. should be turn off). [true / false] +"Enable First Person Animation" = true + diff --git a/config/bagus_lib-common.toml b/config/bagus_lib-common.toml new file mode 100644 index 0000000..79cb5b3 --- /dev/null +++ b/config/bagus_lib-common.toml @@ -0,0 +1,3 @@ +#Enable the camera shake for vanilla mobs. [true / false] +"Enable Shake Camera for Vanilla" = true + diff --git a/config/bakery.toml b/config/bakery.toml new file mode 100644 index 0000000..2781ef7 --- /dev/null +++ b/config/bakery.toml @@ -0,0 +1,197 @@ + +[Banner] + #Set to false to disable the banner's effect. + giveEffect = true + #Set to false to hide the banner's tooltip. If giveEffect is false, showTooltip is automatically false. + showTooltip = true + +[Nutrition] + #Nutrition value for Cake Dough + #Range: 0 ~ 20 + cakeDoughNutrition = 5 + #Saturation modifier for Cake Dough + #Range: 0.0 ~ 10.0 + cakeDoughSaturation = 0.6 + #Nutrition value for Sweet Dough + #Range: 0 ~ 20 + sweetDoughNutrition = 5 + #Saturation modifier for Sweet Dough + #Range: 0.0 ~ 10.0 + sweetDoughSaturation = 0.6 + #Nutrition value for Croissant + #Range: 0 ~ 20 + croissantNutrition = 5 + #Saturation modifier for Croissant + #Range: 0.0 ~ 10.0 + croissantSaturation = 0.6 + #Nutrition value for Crusty Bread + #Range: 0 ~ 20 + crustyBreadNutrition = 5 + #Saturation modifier for Crusty Bread + #Range: 0.0 ~ 10.0 + crustyBreadSaturation = 1.2 + #Nutrition value for Bread + #Range: 0 ~ 20 + breadNutrition = 5 + #Saturation modifier for Bread + #Range: 0.0 ~ 10.0 + breadSaturation = 1.2 + #Nutrition value for Baguette + #Range: 0 ~ 20 + baguetteNutrition = 5 + #Saturation modifier for Baguette + #Range: 0.0 ~ 10.0 + baguetteSaturation = 1.2 + #Nutrition value for Toast + #Range: 0 ~ 20 + toastNutrition = 3 + #Saturation modifier for Toast + #Range: 0.0 ~ 10.0 + toastSaturation = 0.8 + #Nutrition value for Braided Bread + #Range: 0 ~ 20 + braidedBreadNutrition = 5 + #Saturation modifier for Braided Bread + #Range: 0.0 ~ 10.0 + braidedBreadSaturation = 1.2 + #Nutrition value for Sandwich + #Range: 0 ~ 20 + sandwichNutrition = 7 + #Saturation modifier for Sandwich + #Range: 0.0 ~ 10.0 + sandwichSaturation = 0.7 + #Nutrition value for Vegetable Sandwich + #Range: 0 ~ 20 + vegetableSandwichNutrition = 8 + #Saturation modifier for Vegetable Sandwich + #Range: 0.0 ~ 10.0 + vegetableSandwichSaturation = 0.6 + #Nutrition value for Grilled Salmon Sandwich + #Range: 0 ~ 20 + grilledSalmonSandwichNutrition = 6 + #Saturation modifier for Grilled Salmon Sandwich + #Range: 0.0 ~ 10.0 + grilledSalmonSandwichSaturation = 0.8 + #Nutrition value for Grilled Bacon Sandwich + #Range: 0 ~ 20 + grilledBaconSandwichNutrition = 7 + #Saturation modifier for Grilled Bacon Sandwich + #Range: 0.0 ~ 10.0 + grilledBaconSandwichSaturation = 0.7 + #Nutrition value for Bread with Jam + #Range: 0 ~ 20 + breadWithJamNutrition = 5 + #Saturation modifier for Bread with Jam + #Range: 0.0 ~ 10.0 + breadWithJamSaturation = 0.5 + #Nutrition value for Strawberry Cake Slice + #Range: 0 ~ 20 + strawberryCakeSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + strawberryCakeSliceSaturation = 0.7 + #Nutrition value for Sweetberry Cake Slice + #Range: 0 ~ 20 + sweetberryCakeSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + sweetberryCakeSliceSaturation = 0.7 + #Nutrition value for Chocolate Cake Slice + #Range: 0 ~ 20 + chocolateCakeSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + chocolateCakeSliceSaturation = 0.7 + #Nutrition value for Chocolate Gateau Slice + #Range: 0 ~ 20 + chocolateGateauSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + chocolateGateauSliceSaturation = 0.7 + #Nutrition value for Bundt Cake Slice + #Range: 0 ~ 20 + bundtCakeSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + bundtCakeSliceSaturation = 0.7 + #Nutrition value for Linzer Tart Slice + #Range: 0 ~ 20 + linzerTartSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + linzerTartSliceSaturation = 0.7 + #Nutrition value for Apple Pie Slice + #Range: 0 ~ 20 + applePieSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + applePieSliceSaturation = 0.7 + #Nutrition value for Glowberry Pie Slice + #Range: 0 ~ 20 + glowberryPieSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + glowberryPieSliceSaturation = 0.7 + #Nutrition value for Chocolate Tart Slice + #Range: 0 ~ 20 + chocolateTartSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + chocolateTartSliceSaturation = 0.7 + #Nutrition value for Pudding Slice + #Range: 0 ~ 20 + puddingSliceNutrition = 5 + #Range: 0.0 ~ 10.0 + puddingSliceSaturation = 0.7 + #Nutrition value for Strawberry Glazed Cookie + #Range: 0 ~ 20 + strawberryGlazedCookieNutrition = 3 + #Range: 0.0 ~ 10.0 + strawberryGlazedCookieSaturation = 0.5 + #Nutrition value for Sweetberry Glazed Cookie + #Range: 0 ~ 20 + sweetberryGlazedCookieNutrition = 3 + #Range: 0.0 ~ 10.0 + sweetberryGlazedCookieSaturation = 0.5 + #Nutrition value for Chocolate Glazed Cookie + #Range: 0 ~ 20 + chocolateGlazedCookieNutrition = 3 + #Range: 0.0 ~ 10.0 + chocolateGlazedCookieSaturation = 0.5 + #Nutrition value for Strawberry Cupcake + #Range: 0 ~ 20 + strawberryCupcakeNutrition = 3 + #Range: 0.0 ~ 10.0 + strawberryCupcakeSaturation = 0.5 + #Nutrition value for Sweetberry Cupcake + #Range: 0 ~ 20 + sweetberryCupcakeNutrition = 3 + #Range: 0.0 ~ 10.0 + sweetberryCupcakeSaturation = 0.5 + #Nutrition value for Apple Cupcake + #Range: 0 ~ 20 + appleCupcakeNutrition = 3 + #Range: 0.0 ~ 10.0 + appleCupcakeSaturation = 0.5 + #Nutrition value for Cornet + #Range: 0 ~ 20 + cornetNutrition = 3 + #Range: 0.0 ~ 10.0 + cornetSaturation = 0.5 + #Nutrition value for Jam Roll + #Range: 0 ~ 20 + jamRollNutrition = 3 + #Range: 0.0 ~ 10.0 + jamRollSaturation = 0.5 + #Nutrition value for Bun + #Range: 0 ~ 20 + bunNutrition = 5 + #Range: 0.0 ~ 10.0 + bunSaturation = 1.2 + #Nutrition value for Waffle + #Range: 0 ~ 20 + waffleNutrition = 5 + #Range: 0.0 ~ 10.0 + waffleSaturation = 0.5 + #Nutrition value for Chocolate Truffle + #Range: 0 ~ 20 + chocolateTruffleNutrition = 2 + #Range: 0.0 ~ 10.0 + chocolateTruffleSaturation = 0.4 + #Nutrition value for Misslilitu Biscuit + #Range: 0 ~ 20 + misslilituBiscuitNutrition = 6 + #Range: 0.0 ~ 10.0 + misslilituBiscuitSaturation = 0.6 + diff --git a/config/balm-client.toml b/config/balm-client.toml new file mode 100644 index 0000000..72eb966 --- /dev/null +++ b/config/balm-client.toml @@ -0,0 +1,24 @@ +#This is an example enum property +#Allowed Values: Hello, World +exampleEnum = "Hello" +#This is an example int property +exampleInt = 42 +#This is an example int list property +exampleIntList = [12, 24] +#This is an example boolean property +exampleBoolean = true +#This is an example string property +exampleString = "Hello World" +#This is an example string list property +exampleStringList = ["Hello", "World"] +#This is an example enum list property +exampleEnumList = ["Hello", "World"] +#This is an example resource location set property +exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"] + +[exampleCategory] + #This is an example string inside a category + innerField = "I am inside" + #This is an example float inside a category + exampleFloat = 42.84000015258789 + diff --git a/config/balm-common.toml b/config/balm-common.toml new file mode 100644 index 0000000..18620b0 --- /dev/null +++ b/config/balm-common.toml @@ -0,0 +1,24 @@ +#This is an example boolean property +exampleBoolean = true +#This is an example int property +exampleInt = 42 +#This is an example string property +exampleString = "Hello World" +#This is an example enum property +#Allowed Values: Hello, World +exampleEnum = "Hello" +#This is an example string list property +exampleStringList = ["Hello", "World"] +#This is an example int list property +exampleIntList = [12, 24] +#This is an example enum list property +exampleEnumList = ["Hello", "World"] +#This is an example resource location set property +exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"] + +[exampleCategory] + #This is an example string inside a category + innerField = "I am inside" + #This is an example float inside a category + exampleFloat = 42.84000015258789 + diff --git a/config/barteringstation-client.toml b/config/barteringstation-client.toml new file mode 100644 index 0000000..23db017 --- /dev/null +++ b/config/barteringstation-client.toml @@ -0,0 +1,4 @@ +#Way of showing current cooldown of a bartering station. +#Allowed Values: NONE, OVERLAY, ARROWS, BOTH +cooldown_render_type = "ARROWS" + diff --git a/config/barteringstation-server.toml b/config/barteringstation-server.toml new file mode 100644 index 0000000..6ec4acb --- /dev/null +++ b/config/barteringstation-server.toml @@ -0,0 +1,11 @@ +#Range on y axis bartering station should search for available piglins. +#Range: 1 ~ 96 +vertical_range = 4 +#Range on xz plane bartering station should search for available piglins. +#Range: 1 ~ 96 +horizontal_range = 12 +#Delay in ticks after a bartering station tries to give gold ingots to piglins again. The piglin inspecting the gold ingot always takes half that time, the other half is a cool-down. +#Bartering manually in vanilla always takes 120 ticks, this option doesn't change that. +#Range: > 20 +barter_delay = 300 + diff --git a/config/bcc-common.toml b/config/bcc-common.toml new file mode 100644 index 0000000..0993a0a --- /dev/null +++ b/config/bcc-common.toml @@ -0,0 +1,14 @@ + +#General settings +[general] + #The CurseForge project ID for the modpack + #Range: > 0 + modpackProjectID = 363581 + #The name of the modpack + modpackName = "Monumental Experience" + #The version of the modpack + modpackVersion = "3.0.561" + #Use the metadata.json to determine the modpack version + #ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING + useMetadata = false + diff --git a/config/beachparty.toml b/config/beachparty.toml new file mode 100644 index 0000000..8f47ccc --- /dev/null +++ b/config/beachparty.toml @@ -0,0 +1,17 @@ +#Generate Palm Trees +spawnPalms = true +#Generate Seashells +spawnSeashells = true +#Generate Sandwaves +spawnSandwaves = true + +[messageInABottle] + #Allow spawning of Message in a Bottle + allowSpawning = true + #Maximum number of bottles that can exist simultaneously + #Range: > 1 + maxCount = 2 + #Interval in ticks between bottle spawn attempts + #Range: > 20 + spawnInterval = 6000 + diff --git a/config/betteradvancements-client.toml b/config/betteradvancements-client.toml new file mode 100644 index 0000000..f24170a --- /dev/null +++ b/config/betteradvancements-client.toml @@ -0,0 +1,24 @@ +defaultUncompletedIconColor = "#FFFFFF" +defaultUncompletedTitleColor = "#0489C1" +defaultCompletedIconColor = "#DBA213" +defaultCompletedTitleColor = "#DBA213" +doAdvancementsBackgroundFade = true +showDebugCoordinates = false +orderTabsAlphabetically = false +#Values below 50% might give odd results, use on own risk ;) +#Range: 1 ~ 100 +uiScaling = 100 +#Lists the criteria for partially completed advancements, e.g. the biomes required for 'Adventuring Time' +# Off: Vanilla default +# Default: List which criteria you have already obtained +# Spoiler: Only reveal unobtained criteria +# All: Show both obtained and unobtained criteria +criteriaDetail = "Default" +criteriaDetailRequiresShift = false +addInventoryButton = false +defaultDrawDirectLines = false +defaultHideLines = false +defaultCompletedLineColor = "#FFFFFF" +defaultUncompletedLineColor = "#FFFFFF" +onlyUseAboveAdvancementTabs = false + diff --git a/config/betteranimationscollection-client.toml b/config/betteranimationscollection-client.toml new file mode 100644 index 0000000..dfc8247 --- /dev/null +++ b/config/betteranimationscollection-client.toml @@ -0,0 +1,190 @@ + +[general] + #Block range for sound detection system to look for a mob that made a certain sound on the server, so the client may play an animation. + #The client is not sent an exact position, so the mob's location must be estimated. + #Range: 0.5 ~ 8.0 + sound_detection_range = 1.5 + #Mob variants that shouldn't have any model changes applied to them. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + +[models] + #This makes the udders on cows wobble around when they walk. + #Also makes their udders have nipples. + oinky_pig = true + #This one makes the knees of zombie-like and piglin-like mobs bend when they walk around. + #Looks pretty fluid and nice. You'll like it, trust me. + bending_humanoid_knees = true + #This one makes chicken beaks open and close when they cluck. + #When they strut their heads move back and forth, the red thing under their beak swings around and their wings flap a little. Just like the real deal! + bucka_bucka_chicken = true + #This one makes llamas open their mouth when spitting. How have they been doing that before?! + spitful_llama = true + #A truly stunning visual addition. Spiders now finally have the knees they've always dreamed of. + spider_knees = true + #Gives a jellyfish-like effect to the swimming animation of squids; generally just makes their tentacles flow more while moving. + squiggly_squid_tentacles = true + #A pleasing visual change; this makes the insides of slimes flow around like liquid. + #They splish-splosh about even more when they jump. The eyes, the mouth, and the core itself all move independently. + jiggly_liquidy_slime = true + #Remember that one very popular "TNT" music video by CaptainSparklez with the really cute wobbly Creeper? + #Well, it's in the game now. The full thing, the real deal, exactly like the video. + wobbly_creeper = true + #This makes the udders on cows wobble around when they walk. + #Also makes their udders have nipples. + wobbly_cow_udder = true + #Changes wolf tails to be fluffier and flowier, wagging realistically while they stand and run. + #Also makes tamed wolves lie down instead of sitting. Hold up some meat and they'll roll over, too. + playful_doggy = true + #This one is pretty kneat. It makes sheep actually bend down to eat grass. + #It's no longer just their head lowering, their whole body lowers down to get a sweet sample of that succulent cellulose. + #Did you notice their KNEES bend too when they kneel? + kneeling_sheep = true + #If an enderman is angry it will wave its arms around wildly while chasing its target. + #Suits their twisted nature very well. + arm_flailing_enderman = true + #Takes away the stick tails of the current cats and gives them something nicer instead. + #Fully animated flowing tails that move while they stand or run, and even curl around their bodies when they sit. + curly_cat_tail = true + #This makes a snowman's arm swing when it throws a snowball. + animated_snow_man_stick = true + #Divides ghast tentacles into parts and makes them wiggle realistically, like those tentacle monsters you always see at the movies. + #Makes them a little more scary, but ultimately nicer to look at. + wiggly_ghast_tentacles = true + #Takes away the stick tails of the current ocelots and gives them something nicer instead. + #Fully animated flowing tails that move while they stand or run. + flowy_ocelot_tail = true + #Adds a custom death animation to magma cubes, which causes their bodies to form into a pile of steamy, delicious hamburger patties when they die. + #Unfortunately, you can't eat them because they're way too hot. + magma_cube_burger = true + #A subtle change; this makes iron golems wiggle their big noses whenever they're hurt. + #Exactly the same animation as for villagers, except for iron golems! + wiggly_iron_golem_nose = true + #A subtle change; this makes villagers wiggle their big noses whenever they make their iconic sound. + #It's a small change, but who doesn't get a kick out of it? + wiggly_villager_nose = true + #Makes horses more lively again, just like they used to be in older versions. + #Does this by adding back their mouth and knees while staying true to the vanilla model style. + familiar_horse = true + +[oinky_pig] + #Mob sounds to play a unique animation for. + #Useful for adding support for modded mob variants which have different sounds from their vanilla counterparts. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_sounds = ["minecraft:entity.pig.ambient"] + #Fancy ears for pigs, just like piglins have them. + floaty_ears = true + #Animation swing speed for ear floatiness. + #Range: 1 ~ 20 + ear_animation_speed = 10 + +[bucka_bucka_chicken] + #Mob sounds to play a unique animation for. + #Useful for adding support for modded mob variants which have different sounds from their vanilla counterparts. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_sounds = ["minecraft:entity.chicken.ambient"] + #Make bill a lot slimmer so chickens look less like ducks. + slim_bill = true + #Move head back and forth when chicken is walking. + move_head = true + #Wiggle chin when chicken is walking. + wiggle_wattles = true + #Flap wings when chicken is walking. + flap_wings = true + #Move head back and forth when chicken is walking. + #Range: 1 ~ 20 + head_animation_speed = 4 + #Animation swing speed for wattles movement. + #Range: 1 ~ 20 + wattles_animation_speed = 5 + #Animation swing speed of wing flapping. + #Range: 1 ~ 20 + wing_animation_speed = 3 + +[spitful_llama] + #Mob sounds to play a unique animation for. + #Useful for adding support for modded mob variants which have different sounds from their vanilla counterparts. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_sounds = ["minecraft:entity.llama.spit"] + +[squiggly_squid_tentacles] + #Define length for squid tentacles. + #Range: 1 ~ 8 + tentacles_length = 8 + +[jiggly_liquidy_slime] + #Animation swing speed of inner slime parts. + #Range: 1 ~ 20 + animation_speed = 5 + +[wobbly_creeper] + #Different directional behaviour modes for the walking animation. + #Allowed Values: SIDE, FRONT, CIRCLE, RANDOM + wobble_direction = "SIDE" + +[wobbly_cow_udder] + #Animation swing speed of utter when the cow is walking. + #Range: 1 ~ 20 + animation_speed = 5 + #Render tiny nipples on a cow's utter. + show_nipples = true + #Should calves show an utter. + calf_utter = false + +[playful_doggy] + #Define tail length. + #Range: 1 ~ 7 + tail_length = 7 + #Make wolf tail fluffy. + fluffy_tail = true + #Animation swing speed for tail. + #Range: 1 ~ 20 + animation_speed = 5 + #Pose and behaviour when sitting. + #By default makes wolves lie down instead, and roll over when a nearby player is holding a piece meat. + #Allowed Values: DEFAULT, LIE_DOWN, ROLL_OVER, LIE_DOWN_AND_BEG_FOR_MEAT + sitting_behaviour = "LIE_DOWN_AND_BEG_FOR_MEAT" + +[arm_flailing_enderman] + #Animation swing speed for arms. + #Range: 1 ~ 20 + animation_speed = 5 + #Flail arms while carrying a block. + fail_while_carrying = true + +[curly_cat_tail] + #Define tail length. + #Range: 1 ~ 15 + tail_length = 15 + #Animation swing speed for tail. + #Range: 1 ~ 20 + animation_speed = 7 + +[animated_snow_man_stick] + #Mob sounds to play a unique animation for. + #Useful for adding support for modded mob variants which have different sounds from their vanilla counterparts. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_sounds = ["minecraft:entity.snow_golem.shoot"] + +[wiggly_ghast_tentacles] + #Define the max length of tentacles. + #Range: 2 ~ 14 + max_tentacles_length = 14 + #Animation swing speed of tentacles. + #Range: 1 ~ 20 + animation_speed = 5 + +[flowy_ocelot_tail] + #Define tail length. + #Range: 1 ~ 15 + tail_length = 15 + #Animation swing speed for tail. + #Range: 1 ~ 20 + animation_speed = 7 + +[wiggly_villager_nose] + #Mob sounds to play a unique animation for. + #Useful for adding support for modded mob variants which have different sounds from their vanilla counterparts. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_sounds = ["minecraft:entity.villager.ambient", "minecraft:entity.villager.trade", "minecraft:entity.wandering_trader.ambient", "minecraft:entity.wandering_trader.trade"] + diff --git a/config/betterarcheology-common.toml b/config/betterarcheology-common.toml new file mode 100644 index 0000000..f059241 --- /dev/null +++ b/config/betterarcheology-common.toml @@ -0,0 +1,109 @@ +[Artifacts] + # Set to true or false to enable or disable effects. + # Allowed values: true, false - Default: true + artifactEnchantmentsEnabled = true + + [Artifacts.PenetratingStrike] + # En-/Disables the effects of the Penetrating Strike enchantment. + # Allowed values: true, false - Default: true + penetratingStrikeEnabled = true + + # Set to % of damage-reduction from Protection Enchantments that should be ignored. + # Allowed range: 0.0 ~ 1.0 - Default: 0.33 + penetratingStrikeProtectionIgnorance = 0.33 + + [Artifacts.Tunneling] + # En-/Disables the effects of the Tunneling enchantment. + # Allowed values: true, false - Default: true + tunnelingEnabled = true + + # En-/Disables the tunneling enchantment on the Axe. Already enchanted axes still work but enchantment cannot be applied to future axes. + # Allowed values: true, false - Default: false + tunnelingAxeEnabled = false + + [Artifacts.SoaringWinds] + # En-/Disables the effects of the Soaring Winds enchantment. + # Allowed values: true, false - Default: true + soaringWindsEnabled = true + + # Set to movement speed multiplier, that should be applied when starting to fly + # Allowed range: 0.1 ~ 3.0 - Default: 0.5 + soaringWindsBoost = 0.5 + +[Totems] + # En-/Disables ALL of the Totems' effects. + # Allowed values: true, false - Default: true + totemsEnabled = true + + [Totems.Radiance] + # En-/Disables ALL of the Radiance Totem's effects. + # Allowed values: true, false - Default: true + radianceTotemEnabled = true + + # En-/Disables the Radiance Totem damaging hostile mobs around it. + # Allowed values: true, false - Default: true + radianceTotemDamageEnabled = true + + # Sets the damage in 1/2 hearts that will be dealt to hostile mobs when a damage tick occurs. + # Allowed range: 1 ~ 40 - Default: 4 + radianceTotemDamage = 4 + + # Sets the average time between damage ticks of the Radiance Totem in seconds. The totem will still damage mobs randomly, but the average time between damage ticks will be this value. + # Allowed range: 1 ~ 60 - Default: 3 + radianceTotemDamageTickAverage = 3 + + # Sets the radius around the radiance totem within which entities will be affected by the glowing and damaging effects. + # Allowed range: 1 ~ 90 - Default: 10 + radianceTotemRadius = 10 + + [Totems.Torrent] + # En-/Disables the Torrent Totem's effects. + # Allowed values: true, false - Default: true + torrentTotemEnabled = true + + # Sets the relative strength of the boost the player will get when using the Torrent Totem. + # Allowed range: 0.1 ~ 3.0 - Default: 1.0 + torrentTotemBoost = 1.0 + + # En-/Disables giving a player an upwards boost when using the Torrent Totem. + # Allowed values: true, false - Default: false + torrentTotemUpwardsBoost = false + + [Totems.Growth] + # En-/Disables the Growth Totem's effects. + # Allowed values: true, false - Default: true + growthTotemEnabled = true + + # Sets the radius around the growth totem within which crops will be randomly bonemealed. + # Allowed range: 1 ~ 50 - Default: 5 + growthTotemGrowRadius = 5 + + # The growth totem uses the randomTick to determine when it should grow crops. This value determines the chance in % that a random tick actually grows crops to potentially decrease its yield. For example, a 20% chance bonemeals a crop ~10.5 times an hour + # Allowed range: 1 ~ 100 - Default: 20 + growthTotemGrowChance = 20 + +[Fossils] + # En-/Disables the effects of the Fossils like PotionEffects etc. + # Allowed values: true, false - Default: true + fossilEffectsEnabled = true + + # Range in Blocks that the Ocelot/Wolf Fossils scare their corresponding mobs away. + # Allowed range: 10 ~ 50 - Default: 20 + fossilFleeRange = 20 + + # En-/Disables the slow falling effect of the chicken fossil. + # Allowed values: true, false - Default: true + chickenFossilEffectsEnabled = true + + # En-/Disables Creepers fleeing from the ocelot fossil. + # Allowed values: true, false - Default: true + ocelotFossilEffectsEnabled = true + + # En-/Disables Skeletons fleeing from the ocelot fossil. + # Allowed values: true, false - Default: true + wolfFossilEffectsEnabled = true + + # En-/Disables the water breathing effect of the guardian fossil. + # Allowed values: true, false - Default: true + guardianFossilEffectsEnabled = true + diff --git a/config/bettercaves/README.txt b/config/bettercaves/README.txt new file mode 100644 index 0000000..47b29e4 --- /dev/null +++ b/config/bettercaves/README.txt @@ -0,0 +1,5 @@ +This directory is for a few additional options for YUNG's Better Caves. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Caves, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Caves for MC 1.21.1 on Fabric, the 'fabric-1_21_1' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. \ No newline at end of file diff --git a/config/bettercaves/forge-1_20_1/README.txt b/config/bettercaves/forge-1_20_1/README.txt new file mode 100644 index 0000000..f2bf0a9 --- /dev/null +++ b/config/bettercaves/forge-1_20_1/README.txt @@ -0,0 +1,12 @@ +###################################### +# liquidregions.json # +###################################### + This file contains the Liquid Regions settings for each dimension. +While the Better Caves carvers are added per-biome, the Liquid Regions +(i.e. the giant water and lava pools at the bottom of the world) are handled +on a per-dimension basis. +The liquidregions.json file is used to define the Liquid Regions for each dimension. +You can add or remove dimensions, or modify the settings for existing dimensions. +If a dimension is not defined in this file, then it will not have any Liquid Regions. +In that case, the normal aquifers will be used instead, as specified in the dimension's +respective noise_settings data pack json. diff --git a/config/bettercaves/forge-1_20_1/liquidregions.json b/config/bettercaves/forge-1_20_1/liquidregions.json new file mode 100644 index 0000000..29e2d76 --- /dev/null +++ b/config/bettercaves/forge-1_20_1/liquidregions.json @@ -0,0 +1,9 @@ +{ + "liquidRegions": { + "minecraft:overworld": { + "liquid_region_size": 0.001, + "water_region_spawn_chance": 40.0, + "liquid_altitude": -55 + } + } +} \ No newline at end of file diff --git a/config/betterchunkloading.json b/config/betterchunkloading.json new file mode 100644 index 0000000..e7ef4a3 --- /dev/null +++ b/config/betterchunkloading.json @@ -0,0 +1,42 @@ +{ + "enablePrediction": { + "desc:": "Enables predictive chunkloading, which predicts player movement and preloads an area in movement direction: default:true", + "enablePrediction": true + }, + "predictionLoadingSpeed": { + "desc:": "Set a modifier to prediction area loading speed, increasing the value increases the speed at which chunks load around the player. Note that faster loading also means higher impact on TPS. range: [0.01 -> 10.0], default: 1.0", + "predictionLoadingSpeed": 1.0 + }, + "predictionarea": { + "desc:": "Size of the area marked for preloading: default:7 chunks, max: 32, min: 2", + "predictionarea": 7 + }, + "enableSmartChunkLoading": { + "desc:": "Enables smart chunkloading around the player, which dynamically loads the around the player : default:true", + "enableSmartChunkLoading": true + }, + "smartChunkLoadingSpeed": { + "desc:": "Set a modifier to smart chunkloading speed, increasing the value increases the speed at which chunks load around the player. Note that faster loading also means higher impact on TPS. range: [0.01 -> 10.0], default: 1.0", + "smartChunkLoadingSpeed": 1.0 + }, + "preventWalkUnloaded": { + "desc:": "Prevents players from moving into unloaded areas on serverside, which stalls the server and forceloads the chunk: default:true", + "preventWalkUnloaded": true + }, + "enableSmartPostProcessing": { + "desc:": "Enables smart post processing, which slightly improves the general chunk loading speed by waiting with post processing(e.g. fluid updates) until neighbouring chunks are loaded: default:true", + "enableSmartPostProcessing": true + }, + "enableFasterChunkTasks": { + "desc:": "Enables faster worldgen tasks: default:false", + "enableFasterChunkTasks": false + }, + "optimizeWaiting": { + "desc:": "Optimizes time the world is stalled while waiting for a chunk: default:true", + "optimizeWaiting": true + }, + "debugLogging": { + "desc:": "Enables debug logging to show chunk loading changes: default:false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/betterclouds-v1.json b/config/betterclouds-v1.json new file mode 100644 index 0000000..50cba6d --- /dev/null +++ b/config/betterclouds-v1.json @@ -0,0 +1,61 @@ +{ + "migrationVersion": 0, + "enabled": true, + "distance": 4.0, + "randomPlacement": 1.0, + "fuzziness": 1.0, + "shuffle": false, + "yRange": 64.0, + "yOffset": 0.0, + "sparsity": 0.0, + "spacing": 5.25, + "sizeXZ": 16.0, + "sizeY": 8.0, + "travelSpeed": 0.03, + "windEffectFactor": 1.0, + "windSpeedFactor": 0.8, + "colorVariationFactor": 0.8, + "celestialBodyHalo": true, + "chunkSize": 32, + "samplingScale": 1.0, + "scaleFalloffMin": 0.25, + "fogRangeFactor": 1.0, + "fogEndFactor": 1.0, + "usePersistentBuffers": true, + "useFrustumCulling": true, + "irisSupport": true, + "cloudOverride": true, + "useIrisFBO": true, + "selectedPreset": 0, + "presets": [], + "lastTelemetryVersion": 0, + "gpuIncompatibleMessageEnabled": true, + "issueReportEnabled": true, + "enabledDimensions": [ + "minecraft:overworld", + "bigglobe:overworld", + "me:middle_earth_type" + ], + "sereneSeasonsConfig": { + "transition_days": 2.0, + "early_spring_cloudiness": 1.2, + "mid_spring_cloudiness": 1.0, + "late_spring_cloudiness": 0.9, + "early_summer_cloudiness": 0.8, + "mid_summer_cloudiness": 0.7, + "late_summer_cloudiness": 0.8, + "early_autumn_cloudiness": 0.9, + "mid_autumn_cloudiness": 1.0, + "late_autumn_cloudiness": 1.2, + "early_winter_cloudiness": 1.3, + "mid_winter_cloudiness": 1.4, + "late_winter_cloudiness": 1.3 + }, + "fabricSeasonsConfig": { + "transition_days": 4.0, + "spring_cloudiness": 1.0, + "summer_cloudiness": 0.7, + "fall_cloudiness": 1.0, + "winter_cloudiness": 1.4 + } +} \ No newline at end of file diff --git a/config/betterdays-client.toml b/config/betterdays-client.toml new file mode 100644 index 0000000..c5419e3 --- /dev/null +++ b/config/betterdays-client.toml @@ -0,0 +1,19 @@ + +[gui] + #Sets the screen alignment of the bed clock. + #Allowed Values: TOP_LEFT, TOP_CENTER, TOP_RIGHT, CENTER_LEFT, CENTER_CENTER, CENTER_RIGHT, BOTTOM_LEFT, BOTTOM_CENTER, BOTTOM_RIGHT + clockAlignment = "TOP_RIGHT" + #Sets the scale of the bed clock. + #Range: > 1 + clockScale = 64 + #Sets the distance between the clock and the edge of the screen. + #Unused if clockAlignment is CENTER_CENTER. + #Range: > 0 + clockMargin = 16 + #This setting prevents clock wobble when getting in bed by updating the clock's position every tick. + #As a side-effect, the clock won't wobble when first viewed as it does in vanilla. This setting is + #unused if displayBedClock is false. + preventClockWobble = true + #This setting blacklists the sky rendering for specific dimensions. Like in the Aether if using /time set command, the sky jitters. Adding to the blacklist will prevent this behavior. + blacklistDimensions = ["aether:the_aether"] + diff --git a/config/betterdays-common.toml b/config/betterdays-common.toml new file mode 100644 index 0000000..9770296 --- /dev/null +++ b/config/betterdays-common.toml @@ -0,0 +1,192 @@ + +[time] + #The speed at which time passes during the day. + #Day is defined as any time between dayStart (see below) and nightStart (see below) the next day. + #This is the RATIO of time passing relative to vanilla. + #Vanilla speed: 1.0 + #Range: 0.0 ~ 24000.0 + daySpeed = 1.09 + #The speed at which time passes during the night. + #Night is defined as any time between dayStart (see below) and nightStart (see below). + #This is the RATIO of time passing relative to vanilla. + #Vanilla speed: 1.0 + #Range: 0.0 ~ 24000.0 + nightSpeed = 0.92 + #An alternative way to set day speed. This setting is mutually exclusive with daySpeed. + #If both are set, speedMethod (see below) determines which setting is used. + #This setting defines the length of the day in real-world minutes. + #Vanilla length: 10.0 minutes + #Range: 0.1 ~ 10000.0 + daySpeedMinutes = 10.0 + #An alternative way to set night speed. This setting is mutually exclusive with nightSpeed. + #If both are set, speedMethod (see below) determines which setting is used. + #This setting defines the length of the night in real-world minutes. + #Vanilla length: 10.0 minutes + #Range: 0.1 ~ 10000.0 + nightSpeedMinutes = 10.0 + #Determines which method is used to set day and night speed. + #RATIO: Uses daySpeed and nightSpeed settings. + #MINUTES: Uses daySpeedMinutes and nightSpeedMinutes settings. + #REALTIME: Sets day and night to 12 real-world hours each. + #Allowed Values: RATIO, MINUTES, REALTIME + speedMethod = "RATIO" + #The time to start day. This is configurable within the time the sun appears and day starts. + #Default: 23500 + #Range: 22300.0 ~ 24000.0 + dayStart = 23500.0 + #The time to start night. This is configurable within the time sunset starts and night starts. + #Default: 12500 + #Range: 12000.0 ~ 13000.0 + nightStart = 12500.0 + #Enabling this will allow the setting of an infinite amount of time speeds defined as pairs in the form: + #(currentTick, desiredSpeed) + #where between each value bezier spline interpolation is performed for smooth transitioning + #The two default pairs at 0 and 24000 are necessary as they act as bounds. However + #The time speed value for each of them can be freely modified + enableInterpolatedTime = false + #The value that determines the smoothing factor in the interpolation algorithm. + #A high value will make the interpolation softer and curvier + #A low value will make the interpolation closer to a piecewise function + #Range: 0.0 ~ 10.0 + interpolatedTimeSmoothingFactor = 0.25 + #These are the pairs that define what speed time should run at, at the specified day/night tick + #The two default pairs need to exist, but their time speed values can be modified + interpolatedTimeList = ["0,1.0", "24000,1.0"] + + [time.effects] + #When applied, this effect syncs the passage of weather with the current speed of time. + #I.e., as time moves faster, rain stops faster. Clear weather is not affected. + #When set to SLEEPING, this effect only applies when at least one player is sleeping in a dimension. + #Note: This setting is not applicable if game rule doWeatherCycle is false. + #Allowed Values: NEVER, ALWAYS, SLEEPING + weatherEffect = "SLEEPING" + #When applied, this effect syncs the random tick speed with the current speed of time, forcing + #crop, tree, and grass growth to occur at baseRandomTickSpeed multiplied by the current time-speed. + #When set to SLEEPING, randomTickSpeed is set to baseRandomTickSpeed unless at least one player is sleeping in a dimension. + #More information on the effects of random tick speed can be found here: https://minecraft.wiki/w/Tick#Random_tick + #WARNING: This setting overwrites the randomTickSpeed game rule. To modify the base random tick speed, + #use the baseRandomTickSpeed setting instead of changing the game rule directly. + #This effect has a minimum randomTickSpeed of 1 if time speed is less than 1.0. + #Allowed Values: NEVER, ALWAYS, SLEEPING + randomTickEffect = "NEVER" + #The base random tick speed used by the randomTickEffect time effect. + #Range: > 0 + baseRandomTickSpeed = 3 + #When applied, this effect progresses potion effects to match the rate of the current time-speed. + #This effect does not apply if time speed is 1.0 or less. + #THIS MAY HAVE A NEGATIVE IMPACT ON PERFORMANCE IN SERVERS WITH MANY PLAYERS. + #When set to ALWAYS, this effect applies to all players in the dimension, day or night. + #When set to SLEEPING, this effect only applies to players who are sleeping. + #Allowed Values: NEVER, ALWAYS, SLEEPING + potionEffect = "NEVER" + #When applied, this effect progresses player hunger effects to match the rate of the current time-speed. + #This results in faster healing when food level is full, and faster harm when food level is too low. + #This effect does not apply if time speed is 1.0 or less. + #When set to ALWAYS, this effect applies to all players in the dimension, day or night. Not recommended on higher difficulty settings + #When set to SLEEPING, this effect only applies to players who are sleeping. + #Allowed Values: NEVER, ALWAYS, SLEEPING + hungerEffect = "NEVER" + #When applied, this effect progresses block entities like furnaces, hoppers, and spawners to match the rate of the current time-speed. + #WARNING: This time-effect has a significant impact on performance. + #This effect does not apply if time speed is 1.0 or less. + #When set to SLEEPING, this effect only applies when at least one player is sleeping in a dimension. + #Allowed Values: NEVER, ALWAYS, SLEEPING + blockEntityEffect = "NEVER" + +[sleep] + #Enables or disables the sleep feature of this mod. Enabling this setting will modify the vanilla sleep functionality + #and may conflict with other sleep mods. If disabled, all settings in the sleep section will not apply. + enableSleepFeature = true + ### THIS SETTING DEFINES THE SLEEP TIME-SPEED IN SINGLE-PLAYER GAMES ### + #The maximum speed at which time passes when all players are sleeping. + #A value of 110 is nearly equal to the time it takes to sleep in vanilla. + #Range: 0.0 ~ 24000.0 + sleepSpeedMax = 110.0 + #The minimum speed at which time passes when only 1 player is sleeping in a full server. + #Range: 0.0 ~ 24000.0 + sleepSpeedMin = 1.0 + #The speed at which time passes when all players are sleeping. + #Set to -1 to disable this feature (sleepSpeedMax will be used when all players are sleeping). + #Range: -1.0 ~ 24000.0 + sleepSpeedAll = -1.0 + #This parameter defines the curvature of the interpolation function that translates the sleeping player percentage into time-speed. + #The function used is a Normalized Tunable Sigmoid Function. + #A value of 0.5 represents a linear relationship. + #Smaller values bend the curve toward the X axis, while greater values bend it toward the Y axis. + #This graph may be used as a reference for tuning the curve: https://www.desmos.com/calculator/w8gntxzfow + #Credit to Dino Dini for the function: https://dinodini.wordpress.com/2010/04/05/normalized-tunable-sigmoid-functions/ + #Credit to SmoothSleep for the idea: https://www.spigotmc.org/resources/smoothsleep.32043/ + #Range: 0.0 ~ 1.0 + sleepSpeedCurve = 0.3 + #Set to 'true' for the weather to clear when players wake up in the morning as it does in vanilla. + #Set to 'false' to force weather to pass naturally. Adds realism when accelerateWeather is enabled. + #Note: This setting is ignored if game rule doWeatherCycle is false. + clearWeatherOnWake = true + #When true, players are allowed to sleep at all times of day in dimensions controlled by Better Days. + #Note: Other mods may override this ability. + allowDaySleep = false + #When true, a clock is displayed in the sleep interface. + displayBedClock = true + #The ratio of players in a dimension that must be sleeping to skip to morning. + #A value of 1 means all players must be sleeping, 0.5 means half the players must be sleeping, etc. + #A value of 0 effectively disables this feature. + #Range: 0.0 ~ 1.0 + ratioPlayersForSleep = 0.0 + + #This section defines settings for notification messages. + #All messages support Minecraft formatting codes (https://minecraft.wiki/w/Formatting_codes). + #All messages have variables that can be inserted using the following format: ${variableName} + #The type option controls where the message appears: + # SYSTEM: Appears as a message in the chat. (e.g., "Respawn point set") + # GAME_INFO: Game information that appears above the hotbar (e.g., "You may not rest now, the bed is too far away"). + #The target option controls to whom the message is sent: + # ALL: Sends the message to all players on the server. + # DIMENSION: Sends the message to all players in the current dimension. + # SLEEPING: Sends the message to all players in the current dimension who are sleeping. + [sleep.messages] + + #This message is sent after a sleep cycle has completed. + [sleep.messages.morning] + #Available variables: + #sleepingPlayers -> the number of players in the current dimension who were sleeping. + #totalPlayers -> the number of players in the current dimension (spectators are not counted). + #sleepingPercentage -> the percentage of players in the current dimension who were sleeping (does not include % symbol). + message = "§e§oTempus fugit!" + #Sets where this message appears. + #Allowed Values: SYSTEM, GAME_INFO + type = "GAME_INFO" + #Sets to whom this message is sent. + #A target of 'SLEEPING' will send the message to all players who just woke up. + #Allowed Values: ALL, DIMENSION, SLEEPING + target = "DIMENSION" + + #This message is sent when a player enters their bed. + [sleep.messages.enterBed] + #Available variables: + #player -> the player who started sleeping. + #sleepingPlayers -> the number of players in the current dimension who are sleeping. + #totalPlayers -> the number of players in the current dimension (spectators are not counted). + #sleepingPercentage -> the percentage of players in the current dimension who are sleeping (does not include % symbol). + message = "${player} is now sleeping. [${sleepingPlayers}/${totalPlayers}]" + #Sets where this message appears. + #Allowed Values: SYSTEM, GAME_INFO + type = "GAME_INFO" + #Sets to whom this message is sent. + #Allowed Values: ALL, DIMENSION, SLEEPING + target = "DIMENSION" + + #This message is sent when a player leaves their bed (without being woken up naturally by morning). + [sleep.messages.leaveBed] + #Available variables: + #player -> the player who left their bed. + #sleepingPlayers -> the number of players in the current dimension who are sleeping. + #totalPlayers -> the number of players in the current dimension (spectators are not counted). + #sleepingPercentage -> the percentage of players in the current dimension who are sleeping (does not include % symbol). + message = "${player} has left their bed. [${sleepingPlayers}/${totalPlayers}]" + #Sets where this message appears. + #Allowed Values: SYSTEM, GAME_INFO + type = "GAME_INFO" + #Sets to whom this message is sent. + #Allowed Values: ALL, DIMENSION, SLEEPING + target = "DIMENSION" + diff --git a/config/betterdeserttemples-forge-1_20.toml b/config/betterdeserttemples-forge-1_20.toml new file mode 100644 index 0000000..968f2ac --- /dev/null +++ b/config/betterdeserttemples-forge-1_20.toml @@ -0,0 +1,16 @@ + +["YUNG's Better Desert Temples"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Desert Temples".General] + # Whether or not vanilla desert pyramids should be disabled. + # Default: true + # + "Disable Vanilla Pyramids" = true + # Whether or not mining fatigue is applied to players in the desert temple if it has not yet been cleared. + # Default: true + # + "Apply Mining Fatigue" = true + diff --git a/config/betterdeserttemples/README.txt b/config/betterdeserttemples/README.txt new file mode 100644 index 0000000..7d9fed0 --- /dev/null +++ b/config/betterdeserttemples/README.txt @@ -0,0 +1,7 @@ +This directory is for a few additional options for YUNG's Better Desert Temples. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Desert Temples, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Desert Temples for 1.18.2 on Forge, the 'forge-1_18_2' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. +NOTE -- MOST OPTIONS CAN BE FOUND IN A CONFIG FILE OUTSIDE THIS FOLDER! +For example, on Forge 1.18.2 the file is 'betterdeserttemples-forge-1_18_2.toml'. \ No newline at end of file diff --git a/config/betterdeserttemples/forge-1_20/README.txt b/config/betterdeserttemples/forge-1_20/README.txt new file mode 100644 index 0000000..09b809b --- /dev/null +++ b/config/betterdeserttemples/forge-1_20/README.txt @@ -0,0 +1,30 @@ +###################################### +# armorstands.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of armor on armor stands. +Armor stands spawn in armory rooms and wardrobe rooms. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# itemframes.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of items in item frames. +Item frames only spawn in food storage rooms and armoury rooms. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# ItemRandomizers # +###################################### +Describes a set of items and the probability of each item being chosen. + - entries: An object where each entry's key is a item, and each value is that item's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultItem: The item used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultItem being selected. +Here's an example ItemRandomizer: +"entries": { + "minecraft:stone_axe": 0.25, + "minecraft:shield": 0.2, + "minecraft:air": 0.1 +}, +"defaultItem": "minecraft:iron_axe" +For each item, this randomizer has a 25% chance of returning a stone axe, 20% chance of choosing a shield, +10% chance of choosing air (nothing), and a 100 - (25 + 20 + 10) = 45% chance of choosing an iron axe (since it's the default item). diff --git a/config/betterdeserttemples/forge-1_20/armorstands.json b/config/betterdeserttemples/forge-1_20/armorstands.json new file mode 100644 index 0000000..1425c4e --- /dev/null +++ b/config/betterdeserttemples/forge-1_20/armorstands.json @@ -0,0 +1,58 @@ +{ + "armoryHelmets": { + "entries": { + "golden_helmet": 0.2, + "chainmail_helmet": 0.3 + }, + "defaultItem": "air" + }, + "wardrobeHelmets": { + "entries": { + "leather_helmet": 0.4, + "chainmail_helmet": 0.2 + }, + "defaultItem": "air" + }, + "armoryChestplates": { + "entries": { + "golden_chestplate": 0.2, + "chainmail_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "wardrobeChestplates": { + "entries": { + "leather_chestplate": 0.4, + "chainmail_chestplate": 0.2 + }, + "defaultItem": "air" + }, + "armoryLeggings": { + "entries": { + "chainmail_leggings": 0.3, + "golden_leggings": 0.2 + }, + "defaultItem": "air" + }, + "wardrobeLeggings": { + "entries": { + "chainmail_leggings": 0.2, + "leather_leggings": 0.4 + }, + "defaultItem": "air" + }, + "armoryBoots": { + "entries": { + "chainmail_boots": 0.3, + "golden_boots": 0.2 + }, + "defaultItem": "air" + }, + "wardrobeBoots": { + "entries": { + "leather_boots": 0.4, + "chainmail_boots": 0.2 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterdeserttemples/forge-1_20/itemframes.json b/config/betterdeserttemples/forge-1_20/itemframes.json new file mode 100644 index 0000000..e0422c7 --- /dev/null +++ b/config/betterdeserttemples/forge-1_20/itemframes.json @@ -0,0 +1,31 @@ +{ + "armouryItems": { + "entries": { + "bow": 0.1, + "name_tag": 0.05, + "golden_axe": 0.1, + "golden_sword": 0.1, + "stone_axe": 0.05, + "arrow": 0.05, + "shield": 0.1, + "stone_sword": 0.05 + }, + "defaultItem": "air" + }, + "storageItems": { + "entries": { + "pumpkin_seeds": 0.025, + "rabbit_foot": 0.01, + "honey_bottle": 0.1, + "wheat_seeds": 0.025, + "melon_seeds": 0.025, + "cookie": 0.1, + "bread": 0.2, + "potato": 0.2, + "cake": 0.1, + "slime_ball": 0.05, + "beetroot_seeds": 0.025 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterdungeons-forge-1_20.toml b/config/betterdungeons-forge-1_20.toml new file mode 100644 index 0000000..59f464d --- /dev/null +++ b/config/betterdungeons-forge-1_20.toml @@ -0,0 +1,69 @@ + +["YUNG's Better Dungeons"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Dungeons".General] + # Whether or not dungeons should be allowed to place skeleton skulls and other mob heads. + # This option may be useful for some modpack creators. + # Default: true + # + "Enable Skulls & Heads" = true + # Some dungeons can rarely spawn Nether-related blocks such as soul sand, soul campfires, and soul lanterns. + # Note that the blocks will be purely decorative - nothing progression-breaking like Ancient Debris. + # Set this to false to prevent any Nether-related blocks from spawning in dungeons. + # This option may be useful for some modpack creators. + # Default: true + # + "Enable Nether Blocks in Dungeons" = true + + ########################################################################################################### + ## Zombie Dungeon settings. + ########################################################################################################### + ["YUNG's Better Dungeons"."Zombie Dungeons"] + # The longest distance that can be checked when attempting to generate a surface entrance staircase. + # Making this too large may cause problems. + # Default: 20 + # + "Zombie Dungeon Surface Entrance Staircase Max Length" = 20 + + ########################################################################################################### + ## Small Dungeon settings. + ########################################################################################################### + ["YUNG's Better Dungeons"."Small Dungeons"] + # The maximum number of banners that can spawn in a single small dungeon. + # Default: 2 + #Range: 0 ~ 8 + "Small Dungeon Max Banner Count" = 2 + # The minimum number of chests that are guaranteed to spawn in a single small dungeon. + # Default: 1 + "Small Dungeon Min Chest Count" = 1 + # The maximum number of chests that can spawn in a single small dungeon. + # Default: 2 + "Small Dungeon Max Chest Count" = 2 + # Whether or not Small Dungeons can rarely place ore blocks in the corners of the dungeon. + # If this is set to false, any ore blocks that spawn as part of a corner prop will instead be replaced with air. + # Default: true + # + "Allow Ore Blocks in Corners" = true + + ########################################################################################################### + ## Small Nether Dungeon settings. + ## These are disabled by default. + ########################################################################################################### + ["YUNG's Better Dungeons"."Small Nether Dungeons"] + # Whether or not small Nether dungeons should spawn. + # Default: false + "Enable Small Nether Dungeons" = false + # Whether or not Wither skeletons spawned from small Nether dungeons have a chance to drop Wither skeleton skulls. + # Default: true + "Wither Skeletons From Spawners Drop Wither Skeleton Skulls" = true + # Whether or not blazes spawned from small Nether dungeons have a chance to drop blaze rods. + # Default: true + "Blazes From Spawners Drop Blaze Rods" = true + # The maximum number of banners that can spawn in a single small Nether dungeon. + # Default: 2 + #Range: 0 ~ 8 + "Small Nether Dungeon Max Banner Count" = 2 + diff --git a/config/betterendisland-forge-1_20.toml b/config/betterendisland-forge-1_20.toml new file mode 100644 index 0000000..409b738 --- /dev/null +++ b/config/betterendisland-forge-1_20.toml @@ -0,0 +1,9 @@ + +["YUNG's Better End Island"] + # Whether the Ender Dragon drops an egg when every time it's defeated. + # Default: false + "Resummoned Dragon Drops Egg" = false + # Whether the vanilla obsidian platform should spawn in the End instead of the revamped platform. + # Default: false + "Spawn Vanilla Obsidian Platform" = false + diff --git a/config/betterf3.toml b/config/betterf3.toml new file mode 100644 index 0000000..6220d99 --- /dev/null +++ b/config/betterf3.toml @@ -0,0 +1,135 @@ + +[general] + disable_mod = false + hide_bossbar = true + shadow_text = true + auto_start = false + animationSpeed = 2.0 + hide_debug_crosshair = true + background_color = 1867534416 + space_modules = false + always_show_profiler = false + animations = true + fontScale = 1.0 + hide_sidebar = true + always_show_tps = true + +[[modules_right]] + color_high = 5635925 + color_med = 16777045 + name = "fps" + enabled = true + color_low = 16733525 + + [modules_right.lines] + fps = true + +[[modules_right]] + empty_lines = 1 + name = "empty" + enabled = true + + [modules_right.lines] + nothing = true + +[[modules_right]] + name = "server" + name_color = 11184810 + value_color = 16777045 + enabled = true + + [modules_right.lines] + server_tick = true + packets_sent = true + packets_received = true + +[[modules_right]] + empty_lines = 1 + name = "empty" + enabled = true + + [modules_right.lines] + nothing = true + +[[modules_right]] + name = "chunks" + chunks_disabled_color = 16733525 + name_color = 43775 + value_color = 16777045 + total_chunks_color = 16755200 + chunks_enabled_color = 5635925 + enabled = true + + [modules_right.lines] + chunk_file = true + available_buffers = true + loaded_chunks_server = true + forceloaded_chunks = true + chunk_culling = true + pending_uploads = true + pending_chunks = true + loaded_chunks = true + spawn_chunks = true + client_chunk_cache = true + chunk_sections = true + +[[modules_right]] + empty_lines = 1 + name = "empty" + enabled = true + + [modules_right.lines] + nothing = true + +[[modules_right]] + memory_color_toggle = true + time_format = "HH:mm:ss" + name = "system" + name_color = 16755200 + value_color = 5636095 + enabled = true + + [modules_right.lines] + opengl_version = true + allocation_rate = true + display = true + java_version = true + gpu_driver = true + memory_usage = true + allocated_memory = true + cpu = true + gpu_utilization = true + time = true + gpu = true + +[[modules_left]] + name = "minecraft" + name_color = 10506797 + value_color = 43520 + enabled = true + + [modules_left.lines] + minecraft = true + +[[modules_left]] + empty_lines = 1 + name = "empty" + enabled = true + + [modules_left.lines] + nothing = true + +[[modules_left]] + color_x = 16733525 + color_y = 5635925 + color_z = 5636095 + name = "coords" + name_color = 16733525 + enabled = true + + [modules_left.lines] + chunk_coords = true + player_coords = true + block_coords = true + chunk_relative_coords = true + diff --git a/config/betterfortresses-forge-1_20.toml b/config/betterfortresses-forge-1_20.toml new file mode 100644 index 0000000..2cfffa8 --- /dev/null +++ b/config/betterfortresses-forge-1_20.toml @@ -0,0 +1,12 @@ + +["YUNG's Better Nether Fortresses"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Nether Fortresses".General] + # Whether or not vanilla Nether Fortresses should be disabled. + # Default: true + # + "Disable Vanilla Nether Fortresses" = true + diff --git a/config/betterfortresses/README.txt b/config/betterfortresses/README.txt new file mode 100644 index 0000000..7557c7c --- /dev/null +++ b/config/betterfortresses/README.txt @@ -0,0 +1,8 @@ +This directory is for a few additional options for YUNG's Better Nether Fortresses. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Nether Fortresses, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Nether Fortresses for MC 1.19.2 on Forge, the 'forge-1_19' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. +NOTE -- Most of this mod's config settings can be found in a config file outside this folder! +For example, on Forge 1.19.2 the file is 'betterfortresses-forge-1_19.toml'. +Also note that many of the structure's settings such as spawn rate & spawn conditions can only be modified via data pack. \ No newline at end of file diff --git a/config/betterfortresses/forge-1_20/README.txt b/config/betterfortresses/forge-1_20/README.txt new file mode 100644 index 0000000..ffdedac --- /dev/null +++ b/config/betterfortresses/forge-1_20/README.txt @@ -0,0 +1,26 @@ +###################################### +# itemframes.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of items in item frames. +Item frames only spawn in certain rooms and hallway pieces. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# ItemRandomizers # +###################################### +Describes a set of items and the probability of each item being chosen. + - entries: An object where each entry's key is an item, and each value is that item's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultItem: The item used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultItem being selected. +Here's an example ItemRandomizer: +{ + "entries": { + "minecraft:cobblestone": 0.25, + "minecraft:air": 0.2, + "minecraft:stone_sword": 0.1 + }, + "defaultItem": "minecraft:iron_axe" +} +This randomizer has a 25% chance of returning cobblestone, 20% chance of choosing air, +10% chance of choosing a stone sword, and a 100 - (25 + 20 + 10) = 45% chance of choosing iron axe (since it's the default item). diff --git a/config/betterfortresses/forge-1_20/itemframes.json b/config/betterfortresses/forge-1_20/itemframes.json new file mode 100644 index 0000000..d819818 --- /dev/null +++ b/config/betterfortresses/forge-1_20/itemframes.json @@ -0,0 +1,48 @@ +{ + "weaponItems": { + "entries": { + "iron_sword": 0.025, + "netherite_sword": 0.005, + "golden_axe": 0.05, + "stone_axe": 0.025, + "shield": 0.025, + "golden_sword": 0.05, + "iron_axe": 0.025, + "stone_sword": 0.025 + }, + "defaultItem": "air" + }, + "lootItems": { + "entries": { + "nether_wart": 0.1, + "gold_ingot": 0.1, + "gold_nugget": 0.2 + }, + "defaultItem": "air" + }, + "studyItems": { + "entries": { + "writable_book": 0.1, + "paper": 0.1, + "book": 0.4, + "enchanted_book": 0.1 + }, + "defaultItem": "air" + }, + "messHallItems": { + "entries": { + "gold_ingot": 0.2, + "porkchop": 0.3, + "cooked_porkchop": 0.3 + }, + "defaultItem": "air" + }, + "alchemyItems": { + "entries": { + "magma_cream": 0.3, + "fire_charge": 0.2, + "quartz": 0.3 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterjungletemples-forge-1_20.toml b/config/betterjungletemples-forge-1_20.toml new file mode 100644 index 0000000..4a00b74 --- /dev/null +++ b/config/betterjungletemples-forge-1_20.toml @@ -0,0 +1,6 @@ + +["YUNG's Better Jungle Temples"] + + ["YUNG's Better Jungle Temples".General] + "Disable Vanilla Jungle Temples" = true + diff --git a/config/bettermineshafts-forge-1_20.toml b/config/bettermineshafts-forge-1_20.toml new file mode 100644 index 0000000..a653d77 --- /dev/null +++ b/config/bettermineshafts-forge-1_20.toml @@ -0,0 +1,106 @@ + +["YUNG's Better Mineshafts"] + # Whether or not vanilla mineshafts should be disabled. + # Default: true + "Disable Vanilla Mineshafts" = true + # The lowest a mineshaft can spawn. + # Default: -55 + "Minimum y-coordinate" = -55 + # The highest a mineshaft can spawn. + # Default: 30 + # + "Maximum y-coordinate" = 30 + + ########################################################################################################### + ## Ore deposit settings. + ########################################################################################################### + ["YUNG's Better Mineshafts"."Ore Deposits"] + "Enable Ore Deposits" = true + # Chance of an ore deposit being cobblestone only. + # Default: 50 + #Range: 0 ~ 100 + "Cobble Spawn Chance (Empty Deposit)" = 50 + # Chance of an ore deposit containing coal. + # Default: 20 + #Range: 0 ~ 100 + "Coal Spawn Chance" = 20 + # Chance of an ore deposit containing iron. + # Default: 9 + #Range: 0 ~ 100 + "Iron Spawn Chance" = 9 + # Chance of an ore deposit containing redstone. + # Default: 7 + #Range: 0 ~ 100 + "Redstone Spawn Chance" = 7 + # Chance of an ore deposit containing gold. + # Default: 7 + #Range: 0 ~ 100 + "Gold Spawn Chance" = 7 + # Chance of an ore deposit containing lapis lazuli. + # Default: 3 + #Range: 0 ~ 100 + "Lapis Spawn Chance" = 3 + # Chance of an ore deposit containing emerald. + # Default: 3 + #Range: 0 ~ 100 + "Emerald Spawn Chance" = 3 + # Chance of an ore deposit containing diamond. + # Default: 1 + #Range: 0 ~ 100 + "Diamond Spawn Chance" = 1 + + ########################################################################################################### + ## Spawn rates for various mineshaft parts and decorations. + ########################################################################################################### + ["YUNG's Better Mineshafts"."Spawn Rates & More"] + # The spawn rate for lanterns in the main shaft. + # Default: .0067 + #Range: 0.0 ~ 1.0 + "Lantern Spawn Rate" = 0.0067 + # The spawn rate for torches in small shafts. + # Default: .02 + #Range: 0.0 ~ 1.0 + "Torch Spawn Rate" = 0.02 + # The spawn rate for workstation side rooms along the main shaft. + # Default: .025 + #Range: 0.0 ~ 1.0 + "Workstation Spawn Rate" = 0.025 + # The spawn rate for workstation cellars below workstations along the main shaft. + # Default: .25 + #Range: 0.0 ~ 1.0 + "Workstation Cellar Spawn Rate" = 0.25 + # The spawn rate for smaller tunnels that generate along the main shaft. + # Default: .07 + #Range: 0.0 ~ 1.0 + "Small Shaft Spawn Rate" = 0.07 + # The spawn rate for cobwebs. + # Default: .15 + #Range: 0.0 ~ 1.0 + "Cobweb Spawn Rate" = 0.15 + # The spawn rate for minecarts holding chests in small shafts. + # Default: .00125 + #Range: 0.0 ~ 1.0 + "Small Shaft Chest Minecart Spawn Rate" = 0.00125 + # The spawn rate for minecarts holding TNT in small shafts. + # Default: .0025 + #Range: 0.0 ~ 1.0 + "Small Shaft TNT Minecart Spawn Rate" = 0.0025 + # The spawn rate for minecarts holding chests in the main shaft. + # Default: .01 + #Range: 0.0 ~ 1.0 + "Main Shaft Chest Minecart Spawn Rate" = 0.01 + # The spawn rate for minecarts holding TNT in the main shaft. + # Default: .0025 + #Range: 0.0 ~ 1.0 + "Main Shaft TNT Minecart Spawn Rate" = 0.0025 + # Percent chance of an Abandoned Miners' Outpost to spawn at the end of a small mineshaft tunnel. + # Default: 2 + #Range: 0 ~ 100 + "Abandoned Miners' Outpost Spawn Chance" = 2 + # The number of "pieces" (e.g. straight, turn, ladder, intersection, etc.) in a single small shaft. + # This determines the overall length of small shafts. + # Default: 9 + # + #Range: 0 ~ 1000 + "Small Shaft Piece Chain Length" = 9 + diff --git a/config/bettermodsbutton-client.toml b/config/bettermodsbutton-client.toml new file mode 100644 index 0000000..123d878 --- /dev/null +++ b/config/bettermodsbutton-client.toml @@ -0,0 +1,15 @@ +#Where to place mods button on main menu screen. Select "NO_CHANGE" to prevent any changes to the screen, useful for mod compatibility. +#Allowed Values: REPLACE_REALMS, LEFT_TO_REALMS, RIGHT_TO_REALMS, INSERT_BELOW_REALMS, NONE, NO_CHANGE +main_menu_mods_button = "INSERT_BELOW_REALMS" +#Add mod count to mods button. +add_mod_count = true +#Where to place mods button on pause menu screen. Select "NO_CHANGE" to prevent any changes to the screen, useful for mod compatibility. +#Allowed Values: REPLACE_FEEDBACK, REPLACE_BUGS, REPLACE_FEEDBACK_AND_BUGS, REPLACE_AND_MOVE_LAN, INSERT_AND_MOVE_LAN, INSERT_BELOW_FEEDBACK_AND_BUGS, NONE, NO_CHANGE +pause_screen_mods_button = "INSERT_BELOW_FEEDBACK_AND_BUGS" +#Show a small green orb indicating that mod updates are available. +update_notification = false +#Safe area in pixels from screen border for buttons to not be moved to prevent them from going off screen. +#Not effective for vanilla menu layouts, but can be useful when mods add buttons close to the border. +#Range: > 0 +safe_area = 24 + diff --git a/config/betteroceanmonuments-forge-1_20.toml b/config/betteroceanmonuments-forge-1_20.toml new file mode 100644 index 0000000..80f216e --- /dev/null +++ b/config/betteroceanmonuments-forge-1_20.toml @@ -0,0 +1,12 @@ + +["YUNG's Better Ocean Monuments"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Ocean Monuments".General] + # Whether or not vanilla ocean monuments should be disabled. + # Default: true + # + "Disable Vanilla Ocean Monuments" = true + diff --git a/config/betterstrongholds-forge-1_20.toml b/config/betterstrongholds-forge-1_20.toml new file mode 100644 index 0000000..6d8ab59 --- /dev/null +++ b/config/betterstrongholds-forge-1_20.toml @@ -0,0 +1,20 @@ + +["YUNG's Better Strongholds"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Strongholds".General] + # The rate at which cobwebs will spawn in various parts of the stronghold. + # Default: 0.1 + "Cobweb Spawn Rate (NORMAL)" = 0.1 + # The rate at which cobwebs will spawn around spider spawners in libraries. + # Default: 0.3 + "Cobweb Spawn Rate (SPAWNER)" = 0.3 + # The rate at which torches spawn throughout the stronghold. + # Default: 0.1 + "Torch Spawn Rate" = 0.1 + # The rate at which lanterns spawn throughout the stronghold. + # Default: 0.2 + "Lantern Spawn Rate" = 0.2 + diff --git a/config/betterstrongholds/README.txt b/config/betterstrongholds/README.txt new file mode 100644 index 0000000..8eb0d5e --- /dev/null +++ b/config/betterstrongholds/README.txt @@ -0,0 +1,8 @@ +This directory is for a few additional options for YUNG's Better Strongholds. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Strongholds, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Strongholds for MC 1.16 on Forge, the 'forge-1_16' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. + +NOTE -- MOST OPTIONS CAN BE FOUND IN A CONFIG FILE OUTSIDE THIS FOLDER! +For example, on Forge 1.16 the file is 'betterstrongholds-forge-1_16.toml'. \ No newline at end of file diff --git a/config/betterstrongholds/forge-1_20/README.txt b/config/betterstrongholds/forge-1_20/README.txt new file mode 100644 index 0000000..a5be7fe --- /dev/null +++ b/config/betterstrongholds/forge-1_20/README.txt @@ -0,0 +1,62 @@ +###################################### +# ores.json # +###################################### + + This file contains a BlockSetSelector (see below) describing the probability of a given ore being chosen. +These probabilities are used in treasure rooms in the stronghold, in which +piles of ore have a chance of spawning. +For information on BlockSetSelectors, see the bottom of this README. + +###################################### +# rareblocks.json # +###################################### + + This file contains a BlockSetSelector describing the probability of a given block being chosen. +These probabilities are used in grand libraries, in which +two rare blocks will spawn. +For information on BlockSetSelectors, see the bottom of this README. + +###################################### +# armorstands.json # +###################################### + + This file contains ItemSetSelectors describing the probability distribution of armor on armor stands. +Common armor stands spawn in Armoury rooms, while Rare ones are only available in the rare Commander rooms. +For information on ItemSetSelectors, see the bottom of this README. + +###################################### +# itemframes.json # +###################################### + + This file contains ItemSetSelectors describing the probability distribution of items in item frames. +Item frames only spawn in storage rooms and armoury rooms. +For information on ItemSetSelectors, see the bottom of this README. + +###################################### +# BlockSetSelectors # +###################################### + +Describes a set of blockstates and the probability of each blockstate being chosen. + - entries: An object where each entry's key is a blockstate, and each value is that blockstate's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultBlock: The blockstate used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultBlock being selected. + +Here's an example block selector: +"entries": { + "minecraft:cobblestone": 0.25, + "minecraft:air": 0.2, + "minecraft:stone_bricks": 0.1 +}, +"defaultBlock": "minecraft:oak_planks" + +For each block, this selector has a 25% chance of returning cobblestone, 20% chance of choosing air, +10% chance of choosing stone bricks, and a 100 - (25 + 20 + 10) = 45% chance of choosing oak planks (since it's the default block). + +###################################### +# ItemSetSelectors # +###################################### + +Describes a set of items and the probability of each item being chosen. +Works the same as BlockSetSelectors, but with items instead of blockstates. diff --git a/config/betterstrongholds/forge-1_20/armorstands.json b/config/betterstrongholds/forge-1_20/armorstands.json new file mode 100644 index 0000000..ef161fc --- /dev/null +++ b/config/betterstrongholds/forge-1_20/armorstands.json @@ -0,0 +1,60 @@ +{ + "commonHelmets": { + "entries": { + "chainmail_helmet": 0.3, + "iron_helmet": 0.3, + "leather_helmet": 0.1, + "carved_pumpkin": 0.01 + }, + "defaultItem": "air" + }, + "rareHelmets": { + "entries": { + "diamond_helmet": 0.3, + "carved_pumpkin": 0.2 + }, + "defaultItem": "air" + }, + "commonChestplates": { + "entries": { + "leather_chestplate": 0.1, + "chainmail_chestplate": 0.3, + "iron_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "rareChestplates": { + "entries": { + "diamond_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "commonLeggings": { + "entries": { + "leather_leggings": 0.1, + "chainmail_leggings": 0.3, + "iron_leggings": 0.3 + }, + "defaultItem": "air" + }, + "rareLeggings": { + "entries": { + "diamond_leggings": 0.3 + }, + "defaultItem": "air" + }, + "commonBoots": { + "entries": { + "leather_boots": 0.1, + "iron_boots": 0.3, + "chainmail_boots": 0.3 + }, + "defaultItem": "air" + }, + "rareBoots": { + "entries": { + "diamond_boots": 0.3 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/forge-1_20/itemframes.json b/config/betterstrongholds/forge-1_20/itemframes.json new file mode 100644 index 0000000..9137fd0 --- /dev/null +++ b/config/betterstrongholds/forge-1_20/itemframes.json @@ -0,0 +1,34 @@ +{ + "armouryItems": { + "entries": { + "iron_sword": 0.1, + "golden_axe": 0.05, + "name_tag": 0.05, + "stone_axe": 0.05, + "shield": 0.1, + "golden_sword": 0.05, + "iron_axe": 0.1, + "arrow": 0.05, + "stone_sword": 0.05, + "bow": 0.1 + }, + "defaultItem": "air" + }, + "storageItems": { + "entries": { + "rabbit_foot": 0.01, + "slime_ball": 0.05, + "cake": 0.05, + "paper": 0.25, + "beetroot_seeds": 0.025, + "melon_seeds": 0.025, + "map": 0.25, + "compass": 0.05, + "pumpkin_seeds": 0.025, + "flint": 0.05, + "wheat_seeds": 0.025, + "lead": 0.05 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/forge-1_20/ores.json b/config/betterstrongholds/forge-1_20/ores.json new file mode 100644 index 0000000..8b2da37 --- /dev/null +++ b/config/betterstrongholds/forge-1_20/ores.json @@ -0,0 +1,14 @@ +{ + "oreChances": { + "entries": { + "minecraft:gold_ore": 0.2, + "minecraft:lapis_ore": 0.15, + "minecraft:iron_ore": 0.2, + "minecraft:emerald_ore": 0.05, + "minecraft:redstone_ore[lit=false]": 0.15, + "minecraft:diamond_ore": 0.05, + "minecraft:coal_ore": 0.2 + }, + "defaultBlock": "minecraft:coal_ore" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/forge-1_20/rareblocks.json b/config/betterstrongholds/forge-1_20/rareblocks.json new file mode 100644 index 0000000..be167e1 --- /dev/null +++ b/config/betterstrongholds/forge-1_20/rareblocks.json @@ -0,0 +1,11 @@ +{ + "blockChances": { + "entries": { + "minecraft:gold_block": 0.3, + "minecraft:diamond_block": 0.1, + "minecraft:quartz_block": 0.3, + "minecraft:iron_block": 0.3 + }, + "defaultBlock": "minecraft:iron_block" + } +} \ No newline at end of file diff --git a/config/betterthirdperson-common.toml b/config/betterthirdperson-common.toml new file mode 100644 index 0000000..9d1781f --- /dev/null +++ b/config/betterthirdperson-common.toml @@ -0,0 +1,19 @@ +#Align player to camera on left & right clicks +aimPlayerOnInteract = true +#How long player will be aligned to camera after left & right clicks +#Range: 10 ~ 200 +aimDuration = 40 +#Angle in degrees within the player will slightly follow camera yaw (while standing still) +#Range: 0 ~ 90 +followYaw = 45 +#Does camera should rotate freely during elytra flight +freeCameraDuringElytraFlight = false +#Completely remove third-person front view +skipThirdPersonFrontView = false +#How fast player changes movement direction in third-person +#Range: 10 ~ 100 +playerRotationSpeed = 50 +#How fast player pitch follows camera pitch in third-person +#Range: 10 ~ 100 +pitchChangeSpeed = 65 + diff --git a/config/bettervillage_1.properties b/config/bettervillage_1.properties new file mode 100644 index 0000000..c219d26 --- /dev/null +++ b/config/bettervillage_1.properties @@ -0,0 +1,6 @@ +#Need help? Ask on Discord or Github/Gitlab <3 (ps: it is possible that this file contains nothing it's normal) +#Sun Jul 19 16:06:38 GMT 2026 +boolean.villages.enabled_custom_config=true +int.villages.salt=10387312 +int.villages.separation=20 +int.villages.spacing=45 diff --git a/config/betterwitchhuts-forge-1_20.toml b/config/betterwitchhuts-forge-1_20.toml new file mode 100644 index 0000000..7180a60 --- /dev/null +++ b/config/betterwitchhuts-forge-1_20.toml @@ -0,0 +1,12 @@ + +["YUNG's Better Witch Huts"] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["YUNG's Better Witch Huts".General] + # Whether or not vanilla witch huts should be disabled. + # Default: true + # + "Disable Vanilla Witch Huts" = true + diff --git a/config/betterworldloading20.json b/config/betterworldloading20.json new file mode 100644 index 0000000..b177ddc --- /dev/null +++ b/config/betterworldloading20.json @@ -0,0 +1,4 @@ +{ + "enableLoadingSound": true, + "enableChunkInfo": true +} \ No newline at end of file diff --git a/config/bhmenu-client.toml b/config/bhmenu-client.toml new file mode 100644 index 0000000..e375601 --- /dev/null +++ b/config/bhmenu-client.toml @@ -0,0 +1,53 @@ +#Your partner ID to use in during the ordering process. +#Without this you will not be credited for the purchases. +#(Your partner id is not the same as your referral link, please check your client area to find your partner id at https://www.bisecthosting.com/partners/console.php). +partner_id = "2435" +#The id of this modpack. +#(This is BH internal pack id; Find the id here: https://www.bisecthosting.com/partners/console.php) +pack_id = "25159" +#Set this to false to disable pack config screen and enable user configs instead. +#This should always be done by the pack author once they are done with configuring the pack. +#To re-enable Pack Edit Mode, please edit the config file. +pack_edit_mode = true + +[modules] + + [modules.server_creator_banner] + enabled = true + + #Modpack Configs + [modules.server_creator_banner.pack] + #The title to display at the top of the entry. + title = "Need a server?" + #The description to display below the title. + description = "Click me to get your own server!" + #Set this to true to use specific language translation keys. + #This requires a custom mod that adds resource files, such as OpenLoader. + #Use 'server_entry.title' key for the Title; + #Use 'server_entry.description' key for the Description. + use_language_files = false + + [modules.public_server_list] + enabled = true + + #Modpack Configs + [modules.public_server_list.pack] + + #Open Public Screen List Button + [modules.public_server_list.pack.open_screen_button] + #The position of the button from the left of the screen. + #Set to -1 to default. + #Range: > -1 + x = -1 + #The position of the button from the top of the screen. + #Set to -1 to default. + #Range: > -1 + y = -1 + #The width of the button. + #Set to 0 to default. + #Range: 0 ~ 400 + width = 0 + #Turn the Public Server List button into a vanilla styled one. + #Causes default vanilla graphics and might help with compatibility with other mods. + vanillaButton = false + diff --git a/config/biggerstacks-client.toml b/config/biggerstacks-client.toml new file mode 100644 index 0000000..4ee4ab8 --- /dev/null +++ b/config/biggerstacks-client.toml @@ -0,0 +1,23 @@ +#Client configs +#Enable number shortening. E.g. 1000000 becomes 1M. +"Enable number shortening" = true +#The colour of the exact count tooltip shown on items. +#Available colours (case insensitive): +#aqua, +#black, +#blue, +#dark_aqua, +#dark_blue, +#dark_gray, +#dark_green, +#dark_purple, +#dark_red, +#gold, +#gray, +#green, +#light_purple, +#red, +#white, +#yellow +"Exact count number colour" = "dark_aqua" + diff --git a/config/biggerstacks-local.toml b/config/biggerstacks-local.toml new file mode 100644 index 0000000..2881180 --- /dev/null +++ b/config/biggerstacks-local.toml @@ -0,0 +1,13 @@ + +[biggerstacks] + #Whether to increase max transfer rate of some mods to the new stack limit/t. + #E.g. if max stack limit is 1000, it will become 1000 items per tick (where applicable). + #How this is done will vary for each mod + #- Modular routers will require more stack upgrades + #- Pipez does not need this option, it has a config for transfer rate, which you can set to anything + #- Mekanism also has its own config value, though the logistical sorter has its extract rate increased + #- Pretty pipes has its extract rate scaled up + #- XNet can already extract a variable amount, but you will be able to go past 64 to the new maximum stack limit + #- Cyclic still extracts 1 stack (more than 64 items) per tick, but the size of the stack is adjusted + "Increase transfer rate" = true + diff --git a/config/biggerstacks-rules.xml b/config/biggerstacks-rules.xml new file mode 100644 index 0000000..6869179 --- /dev/null +++ b/config/biggerstacks-rules.xml @@ -0,0 +1,20 @@ + + + + id = minecraft:enchanted_book + + + + id = minecraft:potion + id = minecraft:splash_potion + id = minecraft:lingering_potion + + + + stacksize gt 1 + + \ No newline at end of file diff --git a/config/biomemusic.json b/config/biomemusic.json new file mode 100644 index 0000000..b0ccc9e --- /dev/null +++ b/config/biomemusic.json @@ -0,0 +1,65 @@ +{ + "delayModifier": { + "desc:": "Modifies the delay between songs(requires a game restart), lower = shorter delay (1.0 = vanilla). Default = 0.25", + "delayModifier": 0.35 + }, + "pitchVariance": { + "desc:": "Adds randomized pitch variance of up to the given value (e.g. 0.1), makes songs sound slightly different. default = 0", + "pitchVariance": 0.0 + }, + "musicVariance": { + "desc:": "Enables more varied music to be available for biomes chosen from similar other biomes, default = true", + "musicVariance": true + }, + "smartMusic": { + "desc:": "Enables smart stopping of music, when the biome changes or player leaves a cave/water/night is over, default = true", + "smartMusic": true + }, + "stopMusicForRecords": { + "desc:": "Enables Jukeboxes and records playing to stop the current background music, default = true", + "stopMusicForRecords": true + }, + "musicConditions": { + "desc:": "Sets the condition under which music from their respective categories is allowed to play. Required conditions need to be all met, a single matched disallowed conditions prevents it. Possible conditions are: [OVERWORLD, OTHERDIMENSIONS, CAVE, WATER, NIGHT, NETHER, END]", + "Biome": { + "requires": "[]", + "disallowed": "[]" + }, + "Cave": { + "requires": "[CAVE]", + "disallowed": "[WATER, NETHER, END]" + }, + "Night": { + "requires": "[NIGHT]", + "disallowed": "[WATER, CAVE, NETHER, END]" + }, + "Water": { + "requires": "[WATER]", + "disallowed": "[NETHER, END]" + }, + "Game": { + "requires": "[]", + "disallowed": "[WATER, NETHER, END]" + }, + "End": { + "requires": "[END]", + "disallowed": "[]" + }, + "Nether": { + "requires": "[NETHER]", + "disallowed": "[]" + } + }, + "displayMusicPlayed": { + "desc:": "Shows currently played music in chat/log, default = false", + "displayMusicPlayed": false + }, + "logloadedmusic": { + "desc:": "Prints the music files getting loaded into the latest.log, default = false", + "logloadedmusic": false + }, + "maxConcurrentSounds": { + "desc:": "Set the maximum amount of times the same sound can play at the same time. Limits the amount of lag spamming sounds can create. Default = 10", + "maxConcurrentSounds": 10 + } +} \ No newline at end of file diff --git a/config/biomeremover-common.toml b/config/biomeremover-common.toml new file mode 100644 index 0000000..a19d795 --- /dev/null +++ b/config/biomeremover-common.toml @@ -0,0 +1,9 @@ +#Biome ids disabled for newly generated chunks. Example: ["minecraft:desert", "biomesoplenty:lavender_field"] +disabledBiomes = [] +#Legacy single fallback biome id used by older configs when fallbackBiomes is not present. +fallbackBiome = "minecraft:plains" +#Fallback biome candidates for disabled biomes. Use ["default:all_enabled"] to dynamically use every enabled biome in the active worldgen registry. +fallbackBiomes = ["default:all_enabled"] +#Direct biome replacements that win before fallback selection. Format: ["minecraft:forest=minecraft:plains"]. +replacementBiomes = [] + diff --git a/config/biomesoplenty/biome_toggles.json b/config/biomesoplenty/biome_toggles.json new file mode 100644 index 0000000..32a2dde --- /dev/null +++ b/config/biomesoplenty/biome_toggles.json @@ -0,0 +1,68 @@ +{ + "aspen_glade_enabled": true, + "auroral_garden_enabled": true, + "bayou_enabled": true, + "bog_enabled": true, + "cold_desert_enabled": true, + "coniferous_forest_enabled": true, + "crag_enabled": true, + "crystalline_chasm_enabled": true, + "dead_forest_enabled": true, + "dryland_enabled": true, + "dune_beach_enabled": true, + "erupting_inferno_enabled": true, + "field_enabled": true, + "fir_clearing_enabled": true, + "floodplain_enabled": true, + "forested_field_enabled": true, + "fungal_jungle_enabled": true, + "glowing_grotto_enabled": true, + "grassland_enabled": true, + "gravel_beach_enabled": true, + "highland_enabled": true, + "hot_springs_enabled": true, + "jacaranda_glade_enabled": true, + "jade_cliffs_enabled": true, + "lavender_field_enabled": true, + "lush_desert_enabled": true, + "lush_savanna_enabled": true, + "maple_woods_enabled": true, + "marsh_enabled": true, + "mediterranean_forest_enabled": true, + "moor_enabled": true, + "muskeg_enabled": true, + "mystic_grove_enabled": true, + "old_growth_dead_forest_enabled": true, + "old_growth_woodland_enabled": true, + "ominous_woods_enabled": true, + "orchard_enabled": true, + "origin_valley_enabled": true, + "overgrown_greens_enabled": true, + "pasture_enabled": true, + "prairie_enabled": true, + "pumpkin_patch_enabled": true, + "rainforest_enabled": true, + "redwood_forest_enabled": true, + "rocky_rainforest_enabled": true, + "rocky_shrubland_enabled": true, + "scrubland_enabled": true, + "seasonal_forest_enabled": true, + "shrubland_enabled": true, + "snowblossom_grove_enabled": true, + "snowy_coniferous_forest_enabled": true, + "snowy_fir_clearing_enabled": true, + "snowy_maple_woods_enabled": true, + "spider_nest_enabled": true, + "tropics_enabled": true, + "tundra_enabled": true, + "undergrowth_enabled": true, + "visceral_heap_enabled": true, + "volcanic_plains_enabled": true, + "volcano_enabled": true, + "wasteland_enabled": true, + "wasteland_steppe_enabled": true, + "wetland_enabled": true, + "wintry_origin_valley_enabled": true, + "withered_abyss_enabled": true, + "woodland_enabled": true +} \ No newline at end of file diff --git a/config/biomesoplenty/gameplay.toml b/config/biomesoplenty/gameplay.toml new file mode 100644 index 0000000..69b9292 --- /dev/null +++ b/config/biomesoplenty/gameplay.toml @@ -0,0 +1,5 @@ + +[general] + #Add various BOP resources to the Wandering Trader trade pool. + wandering_trader_trades = true + diff --git a/config/biomesoplenty/generation.toml b/config/biomesoplenty/generation.toml new file mode 100644 index 0000000..34ab229 --- /dev/null +++ b/config/biomesoplenty/generation.toml @@ -0,0 +1,15 @@ + +[nether] + #The weighting of bop biome regions in the nether. + bop_nether_region_weight = 13 + #The weighting of rare bop biome regions in the nether. + bop_nether_rare_region_weight = 2 + +[overworld] + #The weighting of primary bop biome regions in the overworld. + bop_primary_overworld_region_weight = 10 + #The weighting of rare bop biome regions in the overworld. + bop_overworld_rare_region_weight = 2 + #The weighting of secondary bop biome regions in the overworld. + bop_secondary_overworld_region_weight = 8 + diff --git a/config/bloodmagic-client.toml b/config/bloodmagic-client.toml new file mode 100644 index 0000000..4be68fd --- /dev/null +++ b/config/bloodmagic-client.toml @@ -0,0 +1,9 @@ + +#Always render the beams between routing nodes. +#If disabled, the beams will only render while the Node Router is held. +[client] + alwaysRenderRoutingLines = false + #When cycling through slots, the Sigil of Holding will skip over empty slots and move to the next occupied one. + #If disabled, it will behave identically to the default hotbar. + sigilHoldingSkipsEmptySlots = false + diff --git a/config/bloodmagic-common.toml b/config/bloodmagic-common.toml new file mode 100644 index 0000000..4b55fca --- /dev/null +++ b/config/bloodmagic-common.toml @@ -0,0 +1,78 @@ +#Amount of LP the Sacrificial Dagger should provide for each damage dealt. Default value 100 +#Range: 0 ~ 10000 +sacrificialDaggerConversion = 100 +#Declares the amount of LP gained per HP sacrificed for the given entity. +#Setting the value to 0 will blacklist it. +#Use the registry name of the entity followed by a ';' and then the value you want. +#Vanilla entities do not require the modid. +sacrificialValues = ["villager;100", "slime;15", "enderman;10", "cow;100", "chicken;100", "horse;100", "sheep;100", "wolf;100", "ocelot;100", "pig;100", "rabbit;100", "dummmmmmy:target_dummy;0"] +#Stops the listed entities from being used in the Well of Suffering. +#Use the registry name of the entity. Vanilla entities do not require the modid. +wellOfSuffering = ["dummmmmmy:target_dummy"] +#Declares the amount of LP gained per HP sacrificed for any entity not defined specifically. Default value 25 +#Range: 0 ~ 10000 +defaultSacrificeValue = 25 +#Amount of upgrade points the living armour has by default. Default value 100 +#Range: 0 ~ 2000000000 +default_upgrade_points = 100 +#Amount of upgrade points the living armour has when evolved. Default value 300 +#Range: 0 ~ 2000000000 +evolved_upgrade_points = 300 +#State that the dungeon spawning ritual can only be activated when using a Creative Activation Crystal. +#Used on servers for if you do not trust your players to not destroy other people's bases. +makeDungeonRitualCreativeOnly = false + +["Geode Ritual"] + activation_cost = 50000 + refresh_cost = 50 + min_raw_will = 50.0 + min_corrosive_will = 50.0 + min_destructive_will = 50.0 + min_steadfast_will = 50.0 + min_vengeful_will = 50.0 + store_cost = 1.0 + harm_cost = 0.125 + fortune_cost = 1.0 + silk_touch_cost = 1.0 + growth_cost = 0.5 + hurt_damage = 2 + #Range: 1 ~ 15 + max_budding_blocks = 7 + max_harmed = 8 + +#LP costs for sigils. For toggleable sigils, this is the upkeep cost drained every 5 seconds while active. +[sigil_cost] + #LP cost per use + #Range: 0 ~ 10000000 + air = 50 + #LP cost per use + #Range: 0 ~ 10000000 + blood_light = 10 + #LP cost per use + #Range: 0 ~ 10000000 + water = 100 + #LP cost per use + #Range: 0 ~ 10000000 + lava = 1000 + #LP cost per use + #Range: 0 ~ 10000000 + void = 50 + #LP cost per use + #Range: 0 ~ 10000000 + teleposition = 1000 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + fast_miner = 100 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + green_grove = 150 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + frost = 100 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + magnetism = 50 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + suppression = 400 + diff --git a/config/blue_skies-client.toml b/config/blue_skies-client.toml new file mode 100644 index 0000000..fa3b654 --- /dev/null +++ b/config/blue_skies-client.toml @@ -0,0 +1,37 @@ + +[Visuals] + # + # Should blue skies override the title screen panorama. + # Default: true + custom_panorama = true + # + # Whether or not brightness should be capped when inside the dimensions for aesthetic purposes. + # Default: true + limit_brightness = true + +["Inventory Tabs"] + # + # If set to true, inventory tabs will use simple buttons that can be placed anywhere on the screen. + # Default: false + use_simple_inventory_tabs = false + + ["Inventory Tabs"."Sliding Tabs"] + # + # If set to true, inventory tabs appear on the bottom left corner instead of the bottom right. + # Default: false + left_align = false + + ["Inventory Tabs".Buttons] + # + # The x position of the inventory tabs. + # Default: -88 + x = -88 + # + # The y position of the inventory tabs. + # Default: -83 + y = -83 + # + # If set to true, inventory tabs are sorted vertically. If set to false, they are sorted horizontally. + # Default: false + is_vertical = false + diff --git a/config/blue_skies-common.toml b/config/blue_skies-common.toml new file mode 100644 index 0000000..5ccbe85 --- /dev/null +++ b/config/blue_skies-common.toml @@ -0,0 +1,45 @@ + +[Debug] + # + # When loading files from datapacks, set this to true to log missing registry data for things like items. + # Default: false + log_missing_registry_data_for_datapacks = false + # + # When true, generated world regions, 1024 blocks wide, will be saved as a file to make generating chunks faster in already visited areas. If file size is a concern or issues arise, this may be disabled. + # Default: true + write_world_regions_to_disk = true + # + # When printing "Blue Skies' player capability wasn't present for...", crash the game. + # Default: false + crash_on_missing_capability_for_dungeon = false + +["Holiday Content"] + # + # Determines if Halloween cosmetic effects should happen. + # Default: true + allow_halloween_content = true + # + # Determines if Christmas cosmetic effects should happen. + # Default: true + allow_christmas_content = true + +[Gatekeeper] + # + # The emerald cost for the Zeal Lighter sold by the Gatekeeper. + # Default: 8 + zeal_lighter_cost = 8 + +["Mod Compatibility"] + # + # A list of mods that are allowed to generate features in the Everbright and Everdawn. + # This does not make them generate, it just allows them to pass the filter. + # Example: ["minecraft", "farlanders", "botania"] + # Default: [] + allowed_mods_for_feature_gen = [] + # + # A list of mobs that are allowed to spawn in the Everbright and Everdawn. + # This does not make them spawn, it just allows them to pass the filter. + # Example: ["minecraft:bee", "moolands:awful_cow", "alexs_mobs:grizzly_bear"] + # Default: [] + allowed_mobs_for_spawning = [] + diff --git a/config/blueprint-client.toml b/config/blueprint-client.toml new file mode 100644 index 0000000..1e8789a --- /dev/null +++ b/config/blueprint-client.toml @@ -0,0 +1,22 @@ +#Scale for screen shake effects +#Range: 0.0 ~ 1.0 +screenShakeScale = 1.0 +#Max amount of sources that can contribute to screen shaking, adjustable for performance and preference reasons. 0 will disable the addition of shake sources +#Range: > 0 +maxScreenShakers = 256 +#Determines if the experimental settings screen should be disabled +disableExperimentalSettingsScreen = true +#Whether the Slabfish Plush Campaign button should appear on the title screen. Ends May 11th. +disableSlabfishPlushCampaign = false + +#Slabfish patron hat settings. +[slabfishSettings] + #If the slabfish hat should be enabled + enabled = true + #If the slabfish hat's backpack should be enabled + backpackEnabled = true + #If the slabfish hat's sweater should be enabled + sweaterEnabled = true + #If the slabfish hat's custom type should be enabled. If false, the default swamp slabfish appears + typeEnabled = true + diff --git a/config/blueprint-common.toml b/config/blueprint-common.toml new file mode 100644 index 0000000..89f768d --- /dev/null +++ b/config/blueprint-common.toml @@ -0,0 +1,11 @@ + +#The modded biome slice sizes for dimensions +#Blueprint's Modded Biome Slice System allows for datapacks and mods to add new biome areas to any dimension +#Changing the size values will affect the size of all modded biome areas in their respected dimension +#If a slice size isn't a positive integer, it will get ignored and the default slice size will get used instead +[modded_biome_slice_sizes] + #For example, the overworld's slice size would be formatted like this + "minecraft:overworld" = 8 + #If the slice size for a dimension isn't defined, this value will get used for that dimension + default = 8 + diff --git a/config/blur-client.toml b/config/blur-client.toml new file mode 100644 index 0000000..dfc3c39 --- /dev/null +++ b/config/blur-client.toml @@ -0,0 +1,21 @@ + +[screens] + blurExclusions = ["net.minecraft.client.gui.screens.ChatScreen", "com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen", "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "baritone.", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", "net.coderbot.iris.gui.screen.ShaderPackScreen", "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay"] + showScreenTitle = false + strangeEffect = false + +[style] + #Range: 0 ~ 5000 + fadeTimeMillis = 200 + #Range: 0 ~ 5000 + fadeOutTimeMillis = 200 + ease = true + #Range: 0 ~ 100 + radius = 8 + gradientStart = "#000000" + #Range: 0 ~ 255 + gradientStartAlpha = 75 + gradientEnd = "#000000" + #Range: 0 ~ 255 + gradientEndAlpha = 75 + diff --git a/config/boatiview-client.toml b/config/boatiview-client.toml new file mode 100644 index 0000000..73b7d43 --- /dev/null +++ b/config/boatiview-client.toml @@ -0,0 +1,9 @@ + +["Client Settings"] + #Toggle whether the hand should be rendered whilst the boat is moving + showHandsInMovingBoat = true + #List of items that will make the hand display when a boat is moving + #Seperate every entry except the last one with commas + #To include all items for a particular modid use the wildcard character '*'. E.g. modid:* + itemsToShowInMovingBoat = ["minecraft:filled_map"] + diff --git a/config/botania-client.toml b/config/botania-client.toml new file mode 100644 index 0000000..ef27c8f --- /dev/null +++ b/config/botania-client.toml @@ -0,0 +1,45 @@ +#Set this to false to disable seasonal features, such as halloween and christmas. +seasonalFeatures = true +#Set to false to disable Botania's messages in the F3 debug screen +debugInfo = true +#Set this to false to disable the references in the flower tooltips. (You monster D:) +references = true +#Set this to false to disable Botania's splashes in the main menu. +splashes = true + +[rendering] + #Set this to false to disable the use of shaders for some of the mod's renders. (Requires game restart) + shaders = true + #Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc). + boundBlockWireframe = true + #Set this to false to disable rendering of accessories in the player. + accessories = true + #The height of the mana display bar in above the XP bar. You can change this if you have a mod that changes where the XP bar is. + #Range: > 0 + manaBarHeight = 29 + #Set this to true if you use lots of floating flowers and are experiencing rendering lag. Will disable the floating flowers' animations and render them statically for a major performance boost. Hit F3+A in-world after toggling this. + staticFloaters = true + + [rendering.fancySkybox] + #Set this to false to disable the fancy skybox in Garden of Glass + enabled = true + #Set this to true to enable the fancy skybox in non Garden of Glass worlds. (Does not require Garden of Glass loaded to use, needs 'fancySkybox.enabled' to be true as well) + normalWorlds = false + + [rendering.lexicon] + #Set this to false to disable the rotating items in the petal and rune entries in the Lexica Botania. + rotatingItems = true + #Set this to false to disable the animated 3D render for the Lexica Botania. + render_3d = true + +[particles] + #Set this to true to set the power system's particles to be a lot more subtle. Good for low-end systems, if the particles are causing lag. + powerSystem = true + #Set this to true to use a static wand beam that shows every single position of the burst, similar to the way it used to work on old Botania versions. Warning: Disabled by default because it may be laggy. + staticWandBeam = false + #The frequency in which particles spawn from normal (worldgen) mystical flowers + #Range: 4.9E-324 ~ 1.7976931348623157E308 + flowerFrequency = 0.5 + #Set this to false to disable the particles in the elven portal. + elvenPortal = true + diff --git a/config/botania-common.toml b/config/botania-common.toml new file mode 100644 index 0000000..9e0d3a4 --- /dev/null +++ b/config/botania-common.toml @@ -0,0 +1,51 @@ +#Set this to false to disable the animation when an item is charging on top of a mana pool +chargeAnimation = true +#Turn this off ONLY IF you're on an extremely large world with an exaggerated count of Mana Spreaders/Mana Pools and are experiencing TPS lag. This toggles whether flowers are strict with their checking for connecting to pools/spreaders or just check whenever possible. +flowerBindingForceCheck = true +#Set to false to disable the ability for the Hand of Ender to pickpocket other players' ender chests +enderPickpocket = true +#Set this to false to disable the Mana Enchanter. Since some people find it OP or something. This only disables the entry and creation. Old ones that are already in the world will stay. +manaEnchanter = true +#Set this to false to disable the Relic System. This only disables the entries, drops and achievements. Old ones that are already in the world will stay. +relics = true +#Set this to true to invert the Ring of Magnetization's controls (from shift to stop to shift to work) +invertMagnetRing = false + +[blockBreakingParticles] + #Set this to false to remove the block breaking particles from the flowers and other items in the mod. + enabled = true + #Set this to false to remove the block breaking particles from the Terra Shatterer, as there can be a good amount in higher levels. + toolEnabled = true + +[manaSpreaders] + #Set this to true to disable the mana spreader shooting sound + silent = false + #How many ticks into the future will mana spreaders attempt to predict where mana bursts go? Setting this lower will improve spreader performance, but will cause them to not fire at targets that are too far away. + #Range: > 1 + traceTime = 400 + +[harvestLevels] + #The harvest level of the Mana Lens: Weight. 3 is diamond level. Defaults to 2 (iron level) + #Range: > 0 + weightLens = 2 + #The harvest level of the Mana Lens: Bore. 3 is diamond level. Defaults to 3 + #Range: > 0 + boreLens = 3 + +[gardenOfGlass] + #Set this to false to disable spawning with a Lexica Botania in Garden of Glass worlds, if you are modifying the modpack's progression to not start with Botania. + spawnWithLexicon = true + #The multiplier for island distances for multiplayer Garden of Glass worlds. + #Islands are placed on a grid with 256 blocks between points, with the spawn island always being placed on 256, 256. + #By default, the scale is 8, putting each island on points separated by 2048 blocks. + #Values below 4 (1024 block spacing) are not recommended due to Nether portal collisions. + #Range: 1 ~ 512 + islandScaleMultiplier = 8 + +[rannuncarpus] + #List of item registry names that will be ignored by rannuncarpuses when placing blocks. + itemBlacklist = [] + #List of mod names for rannuncarpuses to ignore. + #Ignores Storage Drawers by default due to crashes with placing drawer blocks without player involvement. + modBlacklist = ["storagedrawers"] + diff --git a/config/botaniajei-client.toml b/config/botaniajei-client.toml new file mode 100644 index 0000000..66f6cc9 --- /dev/null +++ b/config/botaniajei-client.toml @@ -0,0 +1,6 @@ + +#JEI Text Color. Format: HEX or RGB (e.g 0x404040FF, 1077952767) +[colorizing] + #Range: > 0 + jeiTextColor = 0 + diff --git a/config/botanicalmachinery/client.json5 b/config/botanicalmachinery/client.json5 new file mode 100644 index 0000000..a36fa18 --- /dev/null +++ b/config/botanicalmachinery/client.json5 @@ -0,0 +1,18 @@ +{ + // Should mana in GUIs be displayed with numbers? + "numericalMana": true, + + // If you turn this off, the special rendering is disabled for all machines and ignores the other config options + "AdvancedRendering": { + + "alfheimMarket": true, + "all": true, + "industrialAgglomerationFactory": true, + "mechanicalApothecary": true, + "mechanicalBrewery": true, + "mechanicalDaisy": true, + "mechanicalManaInfuser": true, + "mechanicalManaPool": true, + "mechanicalRunicAltar": true + } +} diff --git a/config/botanicalmachinery/server.json5 b/config/botanicalmachinery/server.json5 new file mode 100644 index 0000000..e672bbe --- /dev/null +++ b/config/botanicalmachinery/server.json5 @@ -0,0 +1,70 @@ +{ + // This is a resource list. See https://moddingx.org/libx/org/moddingx/libx/util/data/ResourceList.html#use_resource_lists_in_configs + "autoExportAllowed": { + "allow_list": true, + "elements": [ + "ae2:pattern_provider", + "ae2:cable_bus" + ] + }, + + // The amount of mana used in alfheim market to trade items [Default: 500] + "AlfheimMarket": { + + // Minimum: 1 + "recipeCost": 500 + }, + + // The default amount of mana capacity in each machine. + "MaxManaCapacity": { + + // Minimum: 1 + "alfheimMarket": 100000, + + // Minimum: 500000 + "industrialAgglomerationFactory": 1000000, + + // Minimum: 1 + "manaBattery": 10000000, + + // Minimum: 1 + "mechanicalBrewery": 100000, + + // Minimum: 2500000 + "mechanicalManaInfuser": 5000000, + + // Minimum: 1 + "mechanicalManaPool": 100000, + + // Minimum: 1 + "mechanicalRunicAltar": 250000 + }, + + // The default duration multiplied with this will be the used working duration. + "WorkingDurationMultiplier": { + + // Range: 1 - 25 + "alfheimMarket": 1, + + // Range: 1 - 5000 + "industrialAgglomerationFactory": 1, + + // Minimum: 1 + "mechanicalApothecary": 1, + + // Range: 1 - 50 + "mechanicalBrewery": 1, + + // Minimum: 1 + "mechanicalDaisy": 1, + + // Range: 1 - 5000 + "mechanicalManaInfuser": 1, + + // Minimum: 1 + "mechanicalManaPool": 1, + + // Range: 1 - 100 + "mechanicalRunicAltar": 1 + } +} diff --git a/config/botanypotstiers-common.toml b/config/botanypotstiers-common.toml new file mode 100644 index 0000000..24440a2 --- /dev/null +++ b/config/botanypotstiers-common.toml @@ -0,0 +1,27 @@ + +["Botany Pots Tiers Options"] + # + #Elite Botany Pot Speed + #Range: > 1 + eliteBotanyPotSpeed = 2 + # + #Elite Botany Pot Multiplier + #Range: > 1 + eliteBotanyPotMultiplier = 2 + # + #Ultra Botany Pot Speed + #Range: > 1 + ultraBotanyPotSpeed = 6 + # + #Ultra Botany Pot Multiplier + #Range: > 1 + ultraBotanyPotMultiplier = 6 + # + #Creative Botany Pot Speed + #Range: > 1 + creativeBotanyPotSpeed = 10 + # + #Creative Botany Pot Multiplier + #Range: > 1 + creativeBotanyPotMultiplier = 10 + diff --git a/config/bountiful/bountiful.json b/config/bountiful/bountiful.json new file mode 100644 index 0000000..ec9f3f1 --- /dev/null +++ b/config/bountiful/bountiful.json @@ -0,0 +1,14 @@ +{ + "boardUpdateFrequency": 45, + "boardGenFrequency": 2, + "flatBonusTimePerBounty": 0, + "shouldBountiesHaveTimersAndExpire": true, + "dataPackExclusions": [ + "bounty_pools/bountiful/example_pool", + "bounty_pools/*/another_example", + "bounty_decrees/other/*" + ], + "objectiveModifier": 0, + "maxNumRewards": 2, + "showCompletionToast": true +} \ No newline at end of file diff --git a/config/brandon3055/BrandonsCore.cfg b/config/brandon3055/BrandonsCore.cfg new file mode 100644 index 0000000..02228d2 --- /dev/null +++ b/config/brandon3055/BrandonsCore.cfg @@ -0,0 +1,15 @@ +"Server" { + # Allows you to disable the tpx command. + B:"enable_tpx"=true + + # Uses the right click block event to verify that players have permission to interact with BC / DE blocks. + # This ensures there is no possible way a player can interact with a BC block if a protection system is blocking the interaction + # In theory not even a modified client sending raw packets will be able to bypass this. + # I have added the ability to disable this feature because it seems in rare cases it blocks players who should have access and i have no idea why. + B:"clientPermissionVerification"=true +} + +"Client" { + # Enable / Disable dark mode in my GUI's. (This can also be toggled in game from any gui that supports dark mode) + B:"darkMode"=true +} diff --git a/config/brandon3055/DraconicAdditions.cfg b/config/brandon3055/DraconicAdditions.cfg new file mode 100644 index 0000000..200031c --- /dev/null +++ b/config/brandon3055/DraconicAdditions.cfg @@ -0,0 +1,76 @@ +"Server" { + # This is a randomly generated ID that clients will use to map config settings from this server. + S:"serverID"="873cebd2-2dcd-4ccc-bdeb-992994531403" + + # These allow you to tweak the stats of the curios found in this mod. + "Armor Tweaks" { + # A multiplier to the amount of OP that the Infused Armor can store. + D:"infusedCapacityMultiplier"=1.0 + } + + # These allow you to tweak the stats of the curios found in this mod. + "Curios Tweaks" { + # A multiplier to the amount of OP that the Modular Necklace can store. + D:"necklaceCapacityMultiplier"=1.0 + + # A multiplier to the amount of OP that the Modular Harness can store. + D:"harnessCapacityMultiplier"=1.0 + + # Whether to allow the Modular Harness to tick it's stored machine while it's equipped. Note: this item is currently bugged and you WILL corrupt your world if you turn this on. + B:"harnessTickInCuriosSlot"=false + + # Whether to allow the Modular Harness to tick it's stored machine when it's not equipped. Note: this item is currently bugged and you WILL corrupt your world if you turn this on. + B:"harnessTickOutOfCuriosSlot"=false + } + + # These allow you to tweak the stats of the tools found in this mod. + "Tool Tweaks" { + # Sets how much RF Hermal provides when powered. + L:"hermalRFAmount"=10000 + + # Sets how much RF the chaos container should consume per tick for every bucket of chaos. + D:"chaosContainerRFMultiplier"=1.0 + } + + # Allows you to tweak various settings for Draconic Additions Modules. + "Module Tweaks" { + # The amount of half-shanks that the Chaotic Auto-Feed Module can store. + D:"chaoticFeedAmount"=1000.0 + + # The extra ticks that the Draconic Tick Accelerator provides. As the number of extra ticks go up, the RF cost increases dramatically. + I:"draconicAccelTicks"=1 + + # Same as the above, but for the Chaotic Tick Accelerator. + I:"chaoticAccelTicks"=2 + + # The maximum amount of liquid chaos each Semi-Stable Chaos Holder can contain. + I:"semiStableChaosMax"=2500 + + # The maximum amount of entropy each Semi-Stable Chaos Holder can have when modifying the amount of chaos stored. + I:"semiStableInstabilityMax"=100 + + # The maximum amount of liquid chaos each Stable Chaos Holder can contain. + I:"stableChaosMax"=1000 + + # The maximum amount of entropy each Stable Chaos Holder can have when modifying the amount of chaos stored. + I:"stableInstabilityMax"=20 + + # The maximum amount of liquid chaos each Unstable Chaos Holder can contain. + I:"unstableChaosMax"=5000 + + # The maximum amount of entropy each Unstable Chaos Holder can have when modifying the amount of chaos stored. + I:"unstableInstabilityMax"=200 + + # How many half-hearts the Chaos Injection System can extract/fill every 5 ticks. + I:"chaosInjectorRate"=2 + } + + # Allows you to tweak various things about Draconic Evolution and Draconic Additions as a whole, such as Fusion Crafting power costs. + "Misc Tweaks" { + # Allows you to multiply all Fusion Crafting OP costs across both Draconic Evolution and Draconic Additions by this amount. + D:"fusionCraftingCosts"=1.0 + + # Enables non-canon content. Not suited for general play, but content isn't unbalanced. + B:"enableMemes"=false + } +} diff --git a/config/brandon3055/DraconicEvolution.cfg b/config/brandon3055/DraconicEvolution.cfg new file mode 100644 index 0000000..4973a89 --- /dev/null +++ b/config/brandon3055/DraconicEvolution.cfg @@ -0,0 +1,490 @@ +"Server" { + # This is a randomly generated id that clients will use to map their tool config settings to this server. + S:"serverID"="4441e8d8-33c4-4e69-9eb3-38389fdf3c06" + + # This can be used to limit the maximum speed boost allowed by the modular armor. + # A value of for example 1 means a maximum boost of +100% over default character speed. + # Set to -1 for no limit, Default: 16 (+1600%) + D:"armorSpeedLimit"=16.0 + + # Allows you to disable elytra flight supplied by DE's armor + B:"enableElytraFlight"=true + + # Allows you to disable creative flight supplied by DE's armor + B:"enableCreativeFlight"=true + + # Sets the maximum blink range for the Advanced Dislocator + I:"dislocatorBlinkRange"=32 + + # Sets the blinks to regular fuel ratio. Default 1 regular fuel (1 pearl) allows 4 blinks. + I:"dislocatorBlinksPerPearl"=4 + + # Sets how far fusion crafting injectors can be from the fusion crafting core + I:"fusionInjectorRange"=16 + + # Sets the minimum distance a fusion injector must be from the fusion crafting core. + I:"fusionInjectorMinDist"=2 + + # Time in ticks required for charging phase of fusion crafting with each injector tier. Draconium, Wyvern, Draconic, Chaotic + I:"fusionChargeTime" < + 300 + 220 + 140 + 60 + > + + # Time in ticks required for crafting phase of fusion crafting with each injector tier. Draconium, Wyvern, Draconic, Chaotic + # The time selected is based on the lowest tier injector used in the craft. + # Max value for any of these is 32,767 (27.3 minutes) + I:"fusionCraftTime" < + 300 + 220 + 140 + 60 + > + + # This is a list of entities that the "Projectile Immunity Cancellation" module will work on. Add additional entities as required. (Let me know if i missed any) + S:"projectileAntiImmuneEntities" < + minecraft:enderman + minecraft:wither + minecraft:ender_dragon + draconicevolution:guardian_wither + minecraft:shulker + > + + # Config values related to the chaos guardian fight. + # The default values of -99 are markers indicating the internal hard coded value should be used. + # This allows these values to be updated between mod versions for balance adjustments. Setting them to anything other than -99 will override the internal values. + "Guardian Fight" { + # Sets the base shield strength for chaos guardian crystals. + # Default: 512 + I:"guardianCrystalShield"=-99 + + # Sets how long the guarian crystal's shield will be unstable after receiving damage from the chaos guardian + # Default: 200 (10 seconds) + I:"guardianCrystalUnstableWindow"=-99 + + # Sets the guardians base health value (After you break through the guardians shield) + # Default: 1000 + I:"guardianHealth"=-99 + + # Sets the guardians shield capacity (You will need to break through this after disabling the guardian crystals) + # Keep in mind there is no limit to how fast you can hit the guardians shield so this will melt with a high damage rapid fire bow. + # Default: 16000 + I:"guardianShield"=-99 + + # Allows chaotic weapons to destabilize the guardian crystal shields. + # This makes it much easier to farm the guardian but only after you have chaos tier weapons. + B:"chaoticBypassCrystalShield"=true + + # Number of chaos shards dropped by the chaos crystal when broken by a player + I:"chaosDropCount"=5 + } + + # These are all config fields related to the Stabilized Spawner and mob souls + "Stabilized Spawner" { + # Mobs have a 1 in {this number} chance to drop a soul when killed with the Reaper enchantment. Note: This is the base value; higher enchantment levels increase this chance. + I:"soulDropChance"=1000 + + # Passive (Animals) Mobs have a 1 in {this number} chance to drop a soul when killed with the Reaper enchantment. Note: This is the base value; higher enchantment levels increase this chance. + I:"passiveSoulDropChance"=800 + + # By default, any entities added to this list will not drop their souls and will not be spawnable by the Stabilized Spawner. Use entity registry name. e.g. minecraft:cow + S:"spawnerList" < + > + + # Changes the spawner list to a whitelist instead of a blacklist. + B:"spawnerListWhiteList"=false + + # Enabling this allows boss souls to drop. Use with caution! + B:"allowBossSouls"=false + + # Sets the min and max spawn delay in ticks for each spawner tier. Order is as follows.\nBasic MIN, MAX, Wyvern MIN, MAX, Draconic MIN, MAX, Chaotic MIN MAX + I:"spawnerDelays" < + 200 + 800 + 100 + 400 + 50 + 200 + 25 + 100 + > + } + + # Sets the maximum fuel that can be added to an Advanced Dislocator. + I:"dislocatorMaxFuel"=1024 + + # Sets blink cooldown in ticks + I:"dislocatorBlinkCooldown"=5 + + # Sets maximum area (in blocks) for a DE portal, The default value 65536 is equivalent to a 256x256 portal + I:"portalMaxArea"=65536 + + # This is more for sanity than actually limiting portal size. Sets the max distance a portal block can be from the receptacle + I:"portalMaxDistance"=256 + + # These are all (server side) config fields related to the reactor + "Reactor" { + # Adjusts the energy output multiplier of the reactor. + D:"reactorOutputMultiplier"=1.0 + + # Adjusts the fuel usage multiplier of the reactor. + D:"reactorFuelUsageMultiplier"=1.0 + + # Allows you to adjust the overall scale of the reactor explosion. Use \"disableLargeReactorBoom\" to disable explosion completely. + D:"reactorExplosionScale"=1.0 + + # If true, this will disable the massive reactor explosion and replace it with a much smaller one. + B:"disableLargeReactorBoom"=false + } + + # This can be used to adjust the amount of Draconium Dust the Ender Dragon drops when killed. + # The amount dropped will be this number +/- 10% + I:"dragonDustLootModifier"=64 + + # By default, the dragon egg only ever spawns once. This forces it to spawn every time the dragon is killed. + B:"dragonEggSpawnOverride"=true + + # This is a blacklist of key words that can be used to prevent certain storage items from being stored in a draconium chest. + # If the items registry name contains any or these strings it will not be allowed + S:"chestBlacklist" < + draconium_chest + shulker_box + pouch + bag + strongbox + > + + # The new tag based tool tier system makes it incredibly difficult to add over powered tools that can mine blocks of any harvest level. So for Draconic and Chaotic tier i simply dont use it. + # This means they can mine pretty much any minable block. Setting this to true will enable the tag system on these tiers and by default put them right along side wyvern at netherite tier. + # This may be useful for people like pack developers who want to add custom tool tier progression. + B:"useToolTierTags"=false + + # Allows you to adjust the capacity of each energy core tier. + # Warning changing the number entries in this list will crash your game. + # For tier 8 -1 = BigInteger.MAX_VALUE * Long.MAX_VALUE, Otherwise the max you can specify is 9223372036854775807 + L:"coreCapacity" < + 45500000 + 273000000 + 1640000000 + 9880000000 + 59300000000 + 356000000000 + 2140000000000 + -1 + > + + # Mob Grinder energy required per entity health point + I:"grinderEnergyPerHeart"=80 + + # Mob Grinder entity blacklist. + S:"grinderBlackList" < + evilcraft:vengeance_spirit + minecraft:armor_stand + > + + # Allow mob grinder to grind players + B:"allowGrindingPlayers"=false +} + +"Chaos Island" { + # Allows you to disable generation of chaos islands + B:"enableGeneration"=true + + # Allows you to disable generation of end comets + B:"enderCometEnabled"=true + + # Toggles whether the full chaos island should spawn or just the guardian crystals, the chaos crystal, and the guardian. + B:"chaosIslandVoidMode"=false + + # The island will generate so that the chaos crystal is at this y position + I:"chaosIslandYPosition"=80 + + # Allows you to adjust the chaos island spawn grid size. + I:"chaosIslandSeparation"=10000 + + # Rough radius of the main chaos island. If you prefer the smaller island from pre 1.18 set this to 80 + I:"chaosIslandSize"=160 +} + +# These are client side config properties. +"Client" { + # Set this to false to disable the fancy 3D tool models. (Requires restart) + B:"fancyToolModels"=true + + # Set this to false to disable chaos guardian shaders. (May visually break some stuff but could be useful if you are experiencing gl crashes.) + B:"guardianShaders"=true + + # These settings is accessible in game via the "Configure Equipment" gui. + "itemConfigGUI" { + # Setting this to false will prevent properties from being displayed if their associated item is not in your inventory. + B:"showUnavailable"=true + + # Setting this to false will disable property window snapping. + B:"enableSnapping"=true + + # Setting this to false will disable the highlight/animation that occurs over a properties associated item when hovering over or editing a property. + B:"enableVisualization"=true + + # Setting this to false will hide the "Add Group" button. + B:"enableAddGroupButton"=true + + # Setting this to false will hide the "Delete Zone" + B:"enableDeleteZone"=true + + # If enabled your configured properties, property groups and presets will still be accessible when in the simple configuration mode. + B:"enableAdvancedXOver"=false + } + + # Enable / Disable item dislocator pickup sound + B:"itemDislocatorSound"=true +} + +# These settings allow you to override the base stats for DE's equipment. +# Please note the generated default values "-99" is actually a marker that tells DE to use the actual internal default value. +# This value is listed in each properties description but may not be valid if this config was generated by a previous version of DE. +"Equipment" { + # Internal Default Value: 10.0 + D:"draconiumHarvestSpeed"=-99.0 + + # Internal Default Value: 15.0 + D:"wyvernHarvestSpeed"=-99.0 + + # Internal Default Value: 25.0 + D:"draconicHarvestSpeed"=-99.0 + + # Internal Default Value: 50.0 + D:"chaoticHarvestSpeed"=-99.0 + + # Base Attack Damage + # Internal Default Value: 1.125 + D:"draconiumDamage"=-99.0 + + # Base Attack Damage + # Internal Default Value: 1.25 + D:"wyvernDamage"=-99.0 + + # Base Attack Damage + # Internal Default Value: 1.75 + D:"draconicDamage"=-99.0 + + # Base Attack Damage + # Internal Default Value: 2.5 + D:"chaoticDamage"=-99.0 + + # Base Attack Speed (How many times you can attack at full power per second) + # Internal Default Value: 1.125 + D:"draconiumSwingSpeed"=-99.0 + + # Base Attack Speed (How many times you can attack at full power per second) + # Internal Default Value: 1.25 + D:"wyvernSwingSpeed"=-99.0 + + # Base Attack Speed (How many times you can attack at full power per second) + # Internal Default Value: 1.5 + D:"draconicSwingSpeed"=-99.0 + + # Base Attack Speed (How many times you can attack at full power per second) + # Internal Default Value: 2.0 + D:"chaoticSwingSpeed"=-99.0 + + # Internal Default Value: 12 + I:"draconiumEnchantability"=-99 + + # Internal Default Value: 15 + I:"wyvernEnchantability"=-99 + + # Internal Default Value: 25 + I:"draconicEnchantability"=-99 + + # Internal Default Value: 35 + I:"chaoticEnchantability"=-99 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 9.0 + D:"staffDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 7.0 + D:"swordDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 9.0 + D:"axeDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 5.0 + D:"pickaxeDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 5.5 + D:"shovelDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack damage + # Internal Default Value: 1.0 + D:"hoeDamageMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 0.5 + D:"staffSwingSpeedMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 1.6 + D:"swordSwingSpeedMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 1.0 + D:"axeSwingSpeedMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 1.2 + D:"pickaxeSwingSpeedMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 1.0 + D:"shovelSwingSpeedMultiplier"=-99.0 + + # This is a multiplier that is applied to the base attack speed + # Internal Default Value: 4.0 + D:"hoeSwingSpeedMultiplier"=-99.0 + + # This is an efficiency multiplier specifically for the staff of power. + # The staff gets its own multiplier because its a "special tool" + # Internal Default Value: 3.0 + D:"staffEfficiencyMultiplier"=-99.0 + + # This is the base energy value for each tier before the type multiplier is applied. + # Internal Default Value: 0 + L:"draconiumBaseEnergy"=-99 + + # This is the base energy value for each tier before the type multiplier is applied. + # Internal Default Value: 0 + L:"wyvernBaseEnergy"=-99 + + # This is the base energy value for each tier before the type multiplier is applied. + # Internal Default Value: 0 + L:"draconicBaseEnergy"=-99 + + # This is the base energy value for each tier before the type multiplier is applied. + # Internal Default Value: 0 + L:"chaoticBaseEnergy"=-99 + + # This is a multiplier that is applied to the base energy value. + # Internal Default Value: 3.0 + D:"staffEnergyMult"=-99.0 + + # This is a multiplier that is applied to the base energy value. + # Internal Default Value: 1.0 + D:"toolEnergyMult"=-99.0 + + # This is a multiplier that is applied to the base energy value. + # Internal Default Value: 8.0 + D:"capacitorEnergyMult"=-99.0 + + # This is a multiplier that is applied to the base energy value. + # Internal Default Value: 2.0 + D:"chestpieceEnergyMult"=-99.0 + + # This is the per block energy requirement of all mining tools. + # Internal Default Value: 256 + I:"energyHarvest"=-99 + + # This is the energy requirement for weapons. This is multiplied by the weapons attack damage. + # Internal Default Value: 1024 + I:"energyAttack"=-99 + + # Shield recharge base energy per shield point. + # Internal Default Value: 8192 + I:"energyShieldChg"=-99 + + # This controls the shield's passive power usage. The formula is: passiveDraw = (shieldPoints^2 * shieldPassiveModifier) OP/t + # Internal Default Value: 5.0E-4 + D:"shieldPassiveModifier"=-99.0 + + # Elytra flight energy use per tick. + # Internal Default Value: 1024 + I:"elytraFlightEnergy"=-99 + + # Creative flight energy use per tick. + # Internal Default Value: 4096 + I:"creativeFlightEnergy"=-99 + + # Elytra boost energy per tick, Internal Default Value: 1024 + I:"elytraWyvernEnergy"=-99 + + # Elytra boost energy per tick, Internal Default Value: 2048 + I:"elytraDraconicEnergy"=-99 + + # Elytra boost energy per tick, Internal Default Value: 8192 + I:"elytraChaoticEnergy"=-99 + + # Bow base energy per calculated damage point, per shot, Internal Default Value: 1024 + I:"bowBaseEnergy"=-99 + + # Energy required for the ender storage module to transfer one (single) item into storage, Internal Default Value: 32 + I:"enderModulePerItemEnergy"=-99 + + # Night vision module energy consumption while operation. (OP per tick), Internal Default Value: 20 + I:"nightVisionEnergy"=-99 +} + +# These settings allow you to override the base module grid sizes for DE's modular items. +# The format is: +# I:"configTag" < +# width +# height +# > +# Leave blank to use the internal default value. +# This value is listed in each properties description but may not be valid if this config was generated by a previous version of DE. +# Please note reducing grid size will not remove modules from existing items but will instead leave modules in an invalid state where they are +# still fully functional but installed outside of the grid bounds. +"Module Grids" { + # (read category description) + # Setting this to true will cause invalid modules to be deleted from the module grid. + B:"removeInvalidModules"=false + + # Internal Default Value: 4 x 4 + I:"wyvernTools" < + > + + # Internal Default Value: 6 x 5 + I:"draconicTools" < + > + + # Internal Default Value: 8 x 6 + I:"chaoticTools" < + > + + # Internal Default Value: 8 x 6 + I:"draconicStaff" < + > + + # Internal Default Value: 10 x 8 + I:"chaoticStaff" < + > + + # Internal Default Value: 6 x 5 + I:"wyvernChestpiece" < + > + + # Internal Default Value: 8 x 6 + I:"draconicChestpiece" < + > + + # Internal Default Value: 10 x 8 + I:"chaoticChestpiece" < + > + + # Internal Default Value: 4 x 4 + I:"wyvernCapacitor" < + > + + # Internal Default Value: 5 x 5 + I:"draconicCapacitor" < + > + + # Internal Default Value: 8 x 6 + I:"chaoticCapacitor" < + > +} diff --git a/config/brandon3055/ModuleStats.cfg b/config/brandon3055/ModuleStats.cfg new file mode 100644 index 0000000..91e1e22 --- /dev/null +++ b/config/brandon3055/ModuleStats.cfg @@ -0,0 +1,575 @@ +# All of the values in this file are the defaults as of the time the file was generated. +# If you wish to set custom values you must set the "override" field to true then specify your custom values. +"Module Stats" { + "draconicevolution:draconium_energy" { + B:"override"=false + + L:"capacity"=1000000 + + L:"transfer"=16000 + } + + "draconicevolution:wyvern_energy" { + B:"override"=false + + L:"capacity"=4000000 + + L:"transfer"=64000 + } + + "draconicevolution:draconic_energy" { + B:"override"=false + + L:"capacity"=16000000 + + L:"transfer"=256000 + } + + "draconicevolution:chaotic_energy" { + B:"override"=false + + L:"capacity"=64000000 + + L:"transfer"=1024000 + } + + "draconicevolution:wyvern_energy_link" { + B:"override"=false + + L:"activation"=4000000 + + L:"operation"=512 + + L:"transfer"=2048 + + B:"dimensional"=false + } + + "draconicevolution:draconic_energy_link" { + B:"override"=false + + L:"activation"=16000000 + + L:"operation"=2048 + + L:"transfer"=16000 + + B:"dimensional"=true + } + + "draconicevolution:chaotic_energy_link" { + B:"override"=false + + L:"activation"=64000000 + + L:"operation"=8192 + + L:"transfer"=128000 + + B:"dimensional"=true + } + + "draconicevolution:draconium_speed" { + B:"override"=false + + D:"speed_boost"=0.1 + } + + "draconicevolution:wyvern_speed" { + B:"override"=false + + D:"speed_boost"=0.25 + } + + "draconicevolution:draconic_speed" { + B:"override"=false + + D:"speed_boost"=0.5 + } + + "draconicevolution:chaotic_speed" { + B:"override"=false + + D:"speed_boost"=1.5 + } + + "draconicevolution:draconium_damage" { + B:"override"=false + + D:"damage_boost"=2.0 + } + + "draconicevolution:wyvern_damage" { + B:"override"=false + + D:"damage_boost"=4.0 + } + + "draconicevolution:draconic_damage" { + B:"override"=false + + D:"damage_boost"=8.0 + } + + "draconicevolution:chaotic_damage" { + B:"override"=false + + D:"damage_boost"=16.0 + } + + "draconicevolution:draconium_aoe" { + B:"override"=false + + I:"aoe"=1 + } + + "draconicevolution:wyvern_aoe" { + B:"override"=false + + I:"aoe"=2 + } + + "draconicevolution:draconic_aoe" { + B:"override"=false + + I:"aoe"=3 + } + + "draconicevolution:chaotic_aoe" { + B:"override"=false + + I:"aoe"=5 + } + + "draconicevolution:wyvern_tree_harvest" { + B:"override"=false + + I:"range"=16 + + I:"speed"=5 + } + + "draconicevolution:draconic_tree_harvest" { + B:"override"=false + + I:"range"=48 + + I:"speed"=15 + } + + "draconicevolution:chaotic_tree_harvest" { + B:"override"=false + + I:"range"=144 + + I:"speed"=45 + } + + "draconicevolution:wyvern_proj_velocity" { + B:"override"=false + + D:"velocity_modifier"=0.15000000596046448 + + D:"accuracy_modifier"=-0.01875000074505806 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.0 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:draconic_proj_velocity" { + B:"override"=false + + D:"velocity_modifier"=0.3499999940395355 + + D:"accuracy_modifier"=-0.02187499962747097 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.04374999925494194 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:chaotic_proj_velocity" { + B:"override"=false + + D:"velocity_modifier"=0.75 + + D:"accuracy_modifier"=-0.0 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.1875 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:wyvern_proj_accuracy" { + B:"override"=false + + D:"velocity_modifier"=-0.0625 + + D:"accuracy_modifier"=0.125 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=-0.015625 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:draconic_proj_accuracy" { + B:"override"=false + + D:"velocity_modifier"=-0.05000000074505806 + + D:"accuracy_modifier"=0.20000000298023224 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=-0.012500000186264515 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:chaotic_proj_accuracy" { + B:"override"=false + + D:"velocity_modifier"=-0.0 + + D:"accuracy_modifier"=0.25 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=-0.0 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:wyvern_proj_grav_comp" { + B:"override"=false + + D:"velocity_modifier"=-0.02500000037252903 + + D:"accuracy_modifier"=-0.05000000074505806 + + D:"anti_grav_modifier"=0.20000000298023224 + + D:"penetration_modifier"=-0.0062500000931322575 + + D:"damage_modifier"=-0.06000000238418579 + } + + "draconicevolution:draconic_proj_grav_comp" { + B:"override"=false + + D:"velocity_modifier"=-0.015625 + + D:"accuracy_modifier"=-0.03125 + + D:"anti_grav_modifier"=0.25 + + D:"penetration_modifier"=-0.00390625 + + D:"damage_modifier"=-0.03750000149011612 + } + + "draconicevolution:chaotic_proj_grav_comp" { + B:"override"=false + + D:"velocity_modifier"=-0.0 + + D:"accuracy_modifier"=-0.0 + + D:"anti_grav_modifier"=0.5 + + D:"penetration_modifier"=-0.0 + + D:"damage_modifier"=-0.0 + } + + "draconicevolution:wyvern_proj_penetration" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.125 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.25 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:draconic_proj_penetration" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.125 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.5 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:chaotic_proj_penetration" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.0 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.75 + + D:"damage_modifier"=0.0 + } + + "draconicevolution:wyvern_proj_damage" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.0625 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.0 + + D:"damage_modifier"=0.25 + } + + "draconicevolution:draconic_proj_damage" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.0625 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.0 + + D:"damage_modifier"=0.5 + } + + "draconicevolution:chaotic_proj_damage" { + B:"override"=false + + D:"velocity_modifier"=0.0 + + D:"accuracy_modifier"=-0.0 + + D:"anti_grav_modifier"=0.0 + + D:"penetration_modifier"=0.0 + + D:"damage_modifier"=0.75 + } + + "draconicevolution:wyvern_shield_control" { + B:"override"=false + + I:"cool_down_ticks"=400 + } + + "draconicevolution:draconic_shield_control" { + B:"override"=false + + I:"cool_down_ticks"=200 + } + + "draconicevolution:chaotic_shield_control" { + B:"override"=false + + I:"cool_down_ticks"=100 + } + + "draconicevolution:wyvern_shield_capacity" { + B:"override"=false + + I:"capacity"=25 + + D:"recharge"=0.005 + } + + "draconicevolution:draconic_shield_capacity" { + B:"override"=false + + I:"capacity"=50 + + D:"recharge"=0.0125 + } + + "draconicevolution:chaotic_shield_capacity" { + B:"override"=false + + I:"capacity"=100 + + D:"recharge"=0.025 + } + + "draconicevolution:wyvern_large_shield_capacity" { + B:"override"=false + + I:"capacity"=125 + + D:"recharge"=0.0 + } + + "draconicevolution:draconic_large_shield_capacity" { + B:"override"=false + + I:"capacity"=250 + + D:"recharge"=0.0 + } + + "draconicevolution:chaotic_large_shield_capacity" { + B:"override"=false + + I:"capacity"=500 + + D:"recharge"=0.0 + } + + "draconicevolution:wyvern_shield_recovery" { + B:"override"=false + + I:"capacity"=5 + + D:"recharge"=0.05 + } + + "draconicevolution:draconic_shield_recovery" { + B:"override"=false + + I:"capacity"=10 + + D:"recharge"=0.125 + } + + "draconicevolution:chaotic_shield_recovery" { + B:"override"=false + + I:"capacity"=20 + + D:"recharge"=0.25 + } + + "draconicevolution:wyvern_flight" { + B:"override"=false + + D:"elytra_boost_speed"=1.0 + } + + "draconicevolution:draconic_flight" { + B:"override"=false + + D:"elytra_boost_speed"=2.0 + } + + "draconicevolution:chaotic_flight" { + B:"override"=false + + D:"elytra_boost_speed"=3.5 + } + + "draconicevolution:wyvern_undying" { + B:"override"=false + + D:"health_boost"=6.0 + + D:"shield_boost"=25.0 + + I:"shield_boost_time"=300 + + I:"charge_ticks"=2400 + + L:"charge_energy"=5000000 + + D:"invulnerable_time"=2.0 + } + + "draconicevolution:draconic_undying" { + B:"override"=false + + D:"health_boost"=12.0 + + D:"shield_boost"=50.0 + + I:"shield_boost_time"=600 + + I:"charge_ticks"=1200 + + L:"charge_energy"=10000000 + + D:"invulnerable_time"=3.0 + } + + "draconicevolution:chaotic_undying" { + B:"override"=false + + D:"health_boost"=20.0 + + D:"shield_boost"=100.0 + + I:"shield_boost_time"=2400 + + I:"charge_ticks"=900 + + L:"charge_energy"=20000000 + + D:"invulnerable_time"=3.0 + } + + "draconicevolution:draconium_auto_feed" { + B:"override"=false + + D:"food_storage"=40.0 + } + + "draconicevolution:wyvern_auto_feed" { + B:"override"=false + + D:"food_storage"=150.0 + } + + "draconicevolution:draconic_auto_feed" { + B:"override"=false + + D:"food_storage"=400.0 + } + + "draconicevolution:draconium_jump" { + B:"override"=false + + D:"jump_boost"=0.25 + } + + "draconicevolution:wyvern_jump" { + B:"override"=false + + D:"jump_boost"=0.75 + } + + "draconicevolution:draconic_jump" { + B:"override"=false + + D:"jump_boost"=1.25 + } + + "draconicevolution:chaotic_jump" { + B:"override"=false + + D:"jump_boost"=4.0 + } +} diff --git a/config/brandon3055/contributors.json b/config/brandon3055/contributors.json new file mode 100644 index 0000000..52264cd --- /dev/null +++ b/config/brandon3055/contributors.json @@ -0,0 +1 @@ +["041f02c98a21c3eb2592e371322c07ca9a07e6d753f8a5e0a6b4f9345256fcd9","9e2f166ac6fea050859bdcc555cb638b9e9a34c34f4681c4dbba46279f85a9f3","63d667e96448c276efec3ea4e19ed79f6809174ddcc7ef1f10690ee1b915cedc","5981488e26bd1bd6706ef6eaacc544006acaad43462042a59ee815e0439b5c11","f807c14d869ead007510f0b9453c625225dd78efcc591eff9d3f479e1461e82a","a9645f82983c05182f4f51c907e3520ab45371b2659d84d5796d9e1f4a557d9e","63d323df6496411b37890b111f753cdc1c96a32d217ccd92510cf635a47e5890","069df1941befb2f46ba22f32e63074a14c0cdadfaf965e9d29b7518a2a42123a","94385cd18f0d4195b9930b7e983174bce1e2dcbe0bdf8a8d839d23d1bd7a4319","e00bf6890e876225dc92134791c0a691d6a4d1966d32023274217af3bfd02e3c","d78f2d69b608158c676d1704ee9c52972f590a65ebda7a0c49f1fde969379e54","07460531e735903317e7c07b8f6597ab5e2ce4036135eeca8c7b4d51a808ce98","ab4dab0b88c494a221be4a6dc8801ce71ffeac0228298e8b1e07f8d054b301d7","21998fc28c1d11b33580ffa4c2cf485c69997b6218ba9a8fbe6eae9a0f1ac7d6","8e4f9c591d205771facb31fe86df0325cf82fab752cdf16f0d0fbbf9a43b4988","be76a6bd5096891c698bedf1eeef31d9dad565efe83d5df9fe42a18c9a77d8c3","f54881455690e420c6a176bad0c6350cbbf6dafb83cf111ef09c514adc8a5537","eb221a8c5fd263549a4e6d10e9016a42f8655bbae7f9b916fe9b5e8b0fcb1e44","93d24a810e76c706d6a3d5cb32fde82d34cd5cd09843819b7e64ca2674835422","79725f245b86586d34c110c40419018cb876788f281c92bd58fbd320f9b6501d","8b12d1920ec39a2010685e4e58d04a69c56c3ae2de15116c67f83070c7297fba","e4ebc3220221e7e1c63ea1277a8faa26b1d6394bbd54dfaa5659d02fcaeca137","7acffae15e2c0f6ac465fe783abfdb59246cd6655f6c72eebda8f86fe2f62768","28623c94b2f5a5d48377b82888ef54b04fc5a9d946b8346d2bc28e0e2916dec0","3cc3d4ec20d84793a62eb2d4639bde3ed63af343f814ae0e24747e8d00bcc00e","6c416b82dfbd050ea2279038e98175373b06193ee635bd019c043faaf9a3785e","787edc979351b7cdfbe358315eb55347eec4c13c93d149b496f1c8de68fb6537","f8ad1c502438b021db3676b269fb93304734689e9f9c0732fe76f0b45aae3758","32e5e69be372a33254e62df047bace8755ff4e357ab8a0360189512893c4c5c9","362b5d40051bd8cc43b46719c4a39719976802b7610722804441fd6f97c86eaf","8c8ecab48bc80303805eb36d3c1c631102a4e4673f32a432fc20fa35d83f7521","79e3f618e0f5afdbb870ca882019b009905bc8eab35a7c0d45197b61d8b71182","4e7e0c3673ebfca490bf03000c01e51dc61b5d42fd6090caa36cbe87991f5be8","d951af64c40ffd5126c3ab4ef7b1f56784572d543cd734c39e5290046f2a1be5","ffc9a1afb2074747bc50b54dcb41bfc61627e0fefeb55f831b3824ec562bd81a","d5c079d8dffd890788e6766ac923eb37e9659e1098b1fe8fa1e9fda07b5c4db6","2c89dd32fd2c3b6c695ccc90663ba1b2cc7d50b3380359961642158ca3b27d12","c805a309fd836f8528afa77f6cac206725c485d034bf5da836a3c3d822b7c8e5","b3cf3bea939b7da60cedfb441e1a6e805593deaf5caa0ce5c6eb1ac0d01eaeb3","73f2dcefa02d5f6e2db17ef04776e19680d865e1df4739eb0a1cecdd88e6b8d2","94a19f54ed1b7dff2c09845a618b9a2ec8e937509d1101e2d53e06eae9efb8fe","edfe4886bf3ba43fcc059570ebc7ac27102620dfffea6a6e04042611dee466b5","8e79d352978119de8f7e06562b3193250b0ec7506899f40d4044e97f04fc95f8","f3520fe0088fc0a6c7508de1301b6ed7ae039ab780c1355e8f7af62521c770be","2350a1fd620dc82af2c8369c489cebc1866dd054585983ec00ccb47555d2a521","13592073ea5dc108b3106de1a007c620275b0c5713dbcb6f74a2861726105b2a","d2681c1eb9dad4913a9442acbfd1f4f069aca2622d875c85d8889909d3c07755","52108645bc48f696cd2714c2b6a904e3e1aa08e2eaa5a259a26270940223673a","e3b76ae442f222754501cd961a9432dac86f33ed564904f52093c380acbb79a1","7276b0d338784dd3a503b6baacbd8322ff8642ca693fdfccb97d638e158e5fd2","e0d0093fdc1e4b73c6fd278bb8c0be2b9b0894f00aedeb7879d326dfb1f255a0","e1d9a4f9991d66ca0dd3d3d965df788a5b370ce15c276291b2b7493836f9ecca","31b66cd6f15ac2c19ecdaccaa9e704404471f979fee19fe46200581bac467151","ddeb29bf4dd48bbfe3deb9953dd7cb5548f1e971b63c8924f12868e2e310873b","5a524ea8d4120f6c498f9e94e61653367a495f4a859e7a0a1df06ff8fb3b86d8","1bc14332ee3ef13e9bd0c7249ae986a2f9ee164ac51464af6fda6eb956b347e6","7115d45e5b25cff740b9c18d2cbe19e86442042c28d16b8d00d79e76569adb93","14c7f499c2877b49a3c53180acbe0fc8324b0cd9b47d57b6ce57315c1ea1b1c9","6b0e636a61daa9e85e3d2e7e6b1fa4443c44650cc0683090600ebb1fb7e7e674","36fee80ed3a8b7ed533992627abfd6d3ec86b70c4d970e79d549306029887b24","91a2a96bd5d2a40d436821bf36961059590851abae19b2a7311a20dcb05bbb10","632494a85c38345deedb2ca51e69cf1ded894334ab06a5624f3ccc7f52048901","54ff2b25ca2dd2700ffcbea72334aeec56474d90cf14939d92b928f88608770a","31288117c3536b3b598df3ee1d7c9e7f00cd29fcc89aa86ed2cc21149d310c28","d8f5cb072e1e1d62364937c42ad7f9aa92f8cfcc7d7c4385b1c7150c32eda39d","e951cd4917916c22d52ccaff96c48f06da23c13766311f5d9db02bfc6532d67d","761f6f8454b54654689ecb6c7c6745c9f98b708301a9173303f25e215c876e91","c0bf2143e9d8921fc9e6577de6122b6379b47271d0ad260a4d73c4236457d8ca","2f8c5ac3db79db16268f9ca3b9658edab4bf94dd787f789da4e3fb6d87d40ed6","69bc7b2be40547bce68290ba1a318a1ff8515c50437ea9b0d569a92859365119","2ec46d1f88c1bd782a4ea81fa3b735accee1cf592bb3bc95c83174618c162717","d1d243d46f8ea9f71b4ef6e8109f47eb5d75cf908ba6203dd22e0551b2bca0e4","64d335c843620233790a60d6343f9132f2600d65893ec98060460c2ed87a8ba5","a93b3073bd9f4403f8b8efe40c3575296eb504ffa60d70fec0c09523a86d62cf","253eec1d7885b7eac2fe23cddacfbdd6b20a1bb6d600f060bf77176486eed1aa","22abb37d8a71dc9afa77505f3ab1501059c7a7b04d9fa58d7cb39841642e082e","97f7722b9f5eac117b4fcd0d519f351b3c5015827838f45aa96ddb38b9c4ab95","bce3bbc81d0a3fab0408cabc00acf87def3a03ed2817928a6b129c683928c2e2","1b9bfae341f9973cbc865fb54b4a713fb98b5e14c41cb6761a91f8abfd62f861","af88774fa80726bb8285baeed72a24e8d951a5248fb6fe765d3d6a4a34b3f6a3","a0c03eefd6236c70d20ff225a4e9dd13440bd368747b40285cfe7a8c78a58b8e","ce4f84fff873fb31f22fccd2efaefaee176c5577ac06ee763c0a9854ee1cb656","f7bc6f33e63bbb5798df6f68a76b9467531855ca1d88c6d6c00d6cb2896cc61b","dec4e445be81a5d0918838392e56d3c06a3bf812202d6e99554b932f7bda4818","ad46d33d478913f570cff15ea53011bee0514c501353bf3a014444da9fa3dbe5","5abe3ea2ed9663e5326846d4047d7450deb8d2acac70d9eed652c4c1efa9c1e7","20a10aa09811c4ec17f5b7ed9e435c390f3888b98b81c7550ab463446a32df2c"] \ No newline at end of file diff --git a/config/brandon3055/contributors.json.etag b/config/brandon3055/contributors.json.etag new file mode 100644 index 0000000..cec6fce --- /dev/null +++ b/config/brandon3055/contributors.json.etag @@ -0,0 +1 @@ +"26353ce5-87" \ No newline at end of file diff --git a/config/brandon3055/hud_settings.json b/config/brandon3055/hud_settings.json new file mode 100644 index 0000000..137dc3f --- /dev/null +++ b/config/brandon3055/hud_settings.json @@ -0,0 +1,6 @@ +{ + "brandonscore:item_hud": "{enabled:0b,pos_x:0.0d,pos_y:0.20494d}", + "draconicevolution:shield_hud": "{enabled:1b,pos_x:0.0136d,pos_y:0.9787d,scale:1.0f,show_numeric:1b,show_undying:1b}", + "brandonscore:block_hud": "{enabled:0b,pos_x:0.0d,pos_y:0.04593d}", + "brandonscore:block_item_hud": "{enabled:1b,pos_x:0.99023d,pos_y:0.72438d}" +} \ No newline at end of file diff --git a/config/brewinandchewin-client.toml b/config/brewinandchewin-client.toml new file mode 100644 index 0000000..84c55d8 --- /dev/null +++ b/config/brewinandchewin-client.toml @@ -0,0 +1,16 @@ + +#Client settings +[client] + #Should the numbed hearts obtained from being damaged when Tipsy flicker when you lose the effect and are about to take damage? + numbedHeartFlickering = true + #Should the food bar have a yellow overlay when the player has the Intoxication effect? + intoxicationFoodOverlay = true + #Should the chat scramble when the player has the Tipsy effect? + scrambleChat = true + #Should other player's nametags scramble when the player has the Tipsy effect? + scrambleName = true + #Should signs scramble when the player has the Tipsy effect? + scrambleSign = true + #Should kegs render the fluid texture in the background of the fluid slot? + renderFluidInKeg = true + diff --git a/config/brewinandchewin-common.toml b/config/brewinandchewin-common.toml new file mode 100644 index 0000000..899d29e --- /dev/null +++ b/config/brewinandchewin-common.toml @@ -0,0 +1,40 @@ + +#Game Settings +[settings] + #At what level of Tipsy should the chat scramble? + #Range: 1 ~ 10 + levelChatScramble = 3 + #At what level of Tipsy should signs scramble? + #Range: 1 ~ 10 + levelSignScramble = 3 + #At what level of Tipsy should nametags scramble? + #Range: 1 ~ 10 + levelNameScramble = 3 + + #Keg + [settings.keg] + #How much fluid (in millibuckets) can the Keg hold? + #Range: 1 ~ 10000 + kegCapacity = 1000 + #How many cold blocks are required for a cold temperature in the Keg? + #Range: 1 ~ 10 + kegCold = 2 + #How many cold blocks are required for a chilly temperature in the Keg? + #Range: 1 ~ 10 + kegChilly = 1 + #How many hot blocks are required for a warm temperature in the Keg? + #Range: 1 ~ 10 + kegWarm = 1 + #How many hot blocks are required for a hot temperature in the Keg? + #Range: 1 ~ 10 + kegHot = 2 + #Should the biome temperature influence the temperature in the Keg? + kegBiomeTemp = true + #Should the dimension temperature influence the temperature in the Keg? + kegDimTemp = true + + #Recipe book + [settings.recipe_book] + #Should the Keg have a Recipe Book available on its interface? + enableRecipeBookKeg = true + diff --git a/config/buildersaddition-common.toml b/config/buildersaddition-common.toml new file mode 100644 index 0000000..37b8fdd --- /dev/null +++ b/config/buildersaddition-common.toml @@ -0,0 +1,26 @@ + +#General Settings +[general] + #Enable storage checking for blocked access. + inv_access_block_check = true + #Whether Flint & Steel is required to light a candle. + require_flint_and_steel = true + #Whether the creation of pathblocks (added by this mod) using a shovel is enabled. + pathblock_creation_enabled = true + #Whether the creation of cracked block variants using a pickaxe is enabled. + cracked_creation_enabled = true + #If set true, pillars will connecto to all other pillar types. + pillars_connect_all = false + +#Midi Settings +[midi] + #Enable server MIDI. + midi_enable = true + #Enable MIDI input. + midi_input_enable = false + #Enable MIDI client sound. + midi_sound_enable = true + #Max number of notes played per 20 ticks. + #Range: 0 ~ 200 + midi_note_limit = 75 + diff --git a/config/buildinggadgets2-common.toml b/config/buildinggadgets2-common.toml new file mode 100644 index 0000000..d5950cb --- /dev/null +++ b/config/buildinggadgets2-common.toml @@ -0,0 +1,58 @@ + +#General settings +[general] + #Maximum distance you can build at + #Range: 1 ~ 64 + rayTraceRange = 32 + +#Power settings +[power] + + #Building Gadget + [power.building_gadget] + #Maximum power for the Building Gadget + #Range: > 0 + maxPower = 500000 + #Base cost per block placed + #Range: > 0 + baseCost = 50 + + #Exchanging Gadget + [power.exchanging_gadget] + #Maximum power for the Exchanging Gadget + #Range: > 0 + maxPower = 500000 + #Base cost per block exchanged + #Range: > 0 + baseCost = 100 + + #Cut Paste Gadget + [power.cutpaste_gadget] + #Maximum power for the Cut and Paste Gadget + #Range: > 0 + maxPower = 5000000 + #(LEGACY) NO LONGER USED + #Range: > 0 + baseCost = 200 + #Base cost per block - Checked during CUT, Charged during PASTE + #Range: > 0 + baseCostNew = 50 + + #Copy Paste Gadget + [power.copypaste_gadget] + #Maximum power for the Copy and Paste Gadget + #Range: > 0 + maxPower = 1000000 + #Base cost per block Paste (Copy is Free) + #Range: > 0 + baseCost = 50 + + #Destruction Gadget + [power.destruction_gadget] + #Maximum power for the Destruction Gadget + #Range: > 0 + maxPower = 1000000 + #Base cost per block Destroyed + #Range: > 0 + baseCost = 200 + diff --git a/config/buzzier_bees-common.toml b/config/buzzier_bees-common.toml new file mode 100644 index 0000000..c2488c9 --- /dev/null +++ b/config/buzzier_bees-common.toml @@ -0,0 +1,9 @@ + +[items] + + [items.bone_meal] + #If tall flowers can be fertilized with Bone Meal to duplicate + "Tall flower fertilizing" = true + #If short flowers can be fertilized with Bone Meal to duplicate + "Short flower fertilizing" = true + diff --git a/config/bwncr-common.toml b/config/bwncr-common.toml new file mode 100644 index 0000000..89c14aa --- /dev/null +++ b/config/bwncr-common.toml @@ -0,0 +1,16 @@ + +[General] + #Silence the server-wide Wither spawn and death broadcast sounds. + silenceWither = true + #Silence the wandering trader's ambient sound. + silenceTrader = true + #Silence the server-wide Ender Dragon Death broadcast sound. + silenceDragon = true + #Silence the server-wide Thunder broadcast sound caused by the Lightning event + silenceLightning = true + #A list of sounds to silence, discoverable with the toggle command /listen + #enter one sound event per line with no commas. + silenceUs = [""] + #If enabled the console will load up spam showing what sounds are being received and whether or not they are being canceled + debugMode = false + diff --git a/config/c2me.toml b/config/c2me.toml new file mode 100644 index 0000000..fe7ce7c --- /dev/null +++ b/config/c2me.toml @@ -0,0 +1,152 @@ +version = 3 +# (Default: +# max( +# 1, +# min( +# if( is_windows, +# (cpus / 1.6 - 2), +# (cpus / 1.2 - 2) +# ), +# if( is_j9vm, +# ( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.5 ), +# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 1.2 ) +# ) +# ) - if(is_client, 2, 0) +# ) +# ) +# The expression for the default value of global executor parallelism. +# This is used when the parallelism isn't overridden. +# Available variables: is_windows, is_j9vm, is_client, cpus, mem_gb +# +defaultGlobalExecutorParallelismExpression = "default" +# (Default: 5) Configures the parallelism of global executor +globalExecutorParallelism = "default" + +[fixes] + # (Default: true) + # Whether to disable the shutdown hook of log4j2 on dedicated servers. + # Enabling this also makes the JVM exit when the dedicated server is considered fully shut down. + # This option have no effect on client-side. + # We has historically been doing this, and this config option allows you to disable this behavior. + # + disableLoggingShutdownHook = "default" + # (Default: true) Enforces safe world random access. + # This feature detects unsafe off-thread world random access, helping to find the causes + # of mysterious "Accessing LegacyRandomSource from multiple threads" crash. + # The default behavior is to fail hard when such bad things happens. + # Disabling this option will replace this behavior with a warning. + # + # It is generally not recommended to disable this settings unless you know what you are doing + # + # + enforceSafeWorldRandomAccess = "default" + +[clientSideConfig] + + [clientSideConfig.modifyMaxVDConfig] + # (Default: true) Whether to modify maximum view distance + enabled = "default" + # (Default: 62) Max render distance allowed in game options + maxViewDistance = "default" + +[noTickViewDistance] + # (Default: true) Whether to use compatibility mode to send chunks + # This may fix some mod compatibility issues + compatibilityMode = "default" + # (Default: 6) No-tick view distance max concurrent chunk loads + # Lower this for a better latency and higher this for a faster loading + maxConcurrentChunkLoads = "default" + # (Default: false) Whether to ensure correct chunks within normal render distance + # This will send chunks twice increasing network load + ensureChunkCorrectness = "default" + # (Default: true) Whether to enable no-tick view distance + enabled = "default" + +[generalOptimizations] + # (Default: 100000) The task interval of mid-tick chunk tasks in nanoseconds (-1 to disable) + # Mid-tick chunk tasks is to execute chunk tasks during server tick loop + # to speed up chunk loading and generation + # This helps chunks loading and generating under high MSPT but may raise + # MSPT when chunks are loading or generating + # + # It is generally not recommended to adjust this value unless you know + # what you are doing + # + # Incompatible with Dimensional Threading (dimthread) + # + midTickChunkTasksInterval = "default" + # (Default: true) Whether to let async chunk request no longer block server thread + # (may cause incompatibility with other mods) + optimizeAsyncChunkRequest = "default" + + [generalOptimizations.autoSave] + # (Default: ENHANCED) Defines how auto save should be handled + # VANILLA: Use vanilla auto-save behavior (auto-save performed every tick during ticking) + # ENHANCED: Use C2ME enhanced auto-save (auto-save performed when the server have spare time after ticking) + # PERIODIC: Use pre-1.18 vanilla auto-save behavior (auto-save performed every 6000 ticks during ticking) + # + # Please preserve quotes so this config don't break + # + mode = "default" + # (Default: 20000) Defines the delay in milliseconds between performing auto-save for a chunk + # This is only used when mode is set to ENHANCED + # + delay = "default" + +[ioSystem] + # (Default: true) Whether to use async chunk loading & unloading + async = "default" + # (Default: -1) Defines which chunk compression should be used + # -1 for Vanilla default + # 1 for GZip (RFC1952) (Vanilla compatible) + # 2 for Zlib (RFC1950) (Vanilla default) (Vanilla compatible) + # 3 for Uncompressed (Fastest, but higher disk usage) (Vanilla compatible) + # + # Original chunk data will still readable after modifying this option + # as this option only affects newly stored chunks + # Invalid values will fall back to vanilla default + # + chunkStreamVersion = "default" + # (Default: false) EXPERIMENTAL FEATURE + # This replaces the way your chunks are saved. + # Please keep regular backups of your world if you are using this feature, + # and report any world issues you encounter with this feature to our GitHub. + # + # Whether to use the fast reduced allocation chunk serializer + # (may cause incompatibility with other mods) + # + # Set to false for the following reasons: + # Incompatible with architectury@9.2.14 (*) (defined in c2me) + gcFreeChunkSerializer = "default" + # (Default: true) Whether to use the optimized implementation of IO system + replaceImpl = "default" + # (Default: 8192) Soft limit for io worker nbt cache + chunkDataCacheSoftLimit = "default" + # (Default: 32678) Hard limit for io worker nbt cache + chunkDataCacheLimit = "default" + +[threadedWorldGen] + # (Default: true) Whether to allow feature generation (world decorations like trees, ores and etc.) run in parallel + # (may cause incompatibility with other mods) + allowThreadedFeatures = "default" + # (Default: true) Whether to allow reducing lock radius + # (may cause incompatibility with other mods) + reduceLockRadius = "default" + # (Default: true) Whether to enable async and parallel scheduling + # This will reduce server thread load + # (may cause incompatibility with other mods) + # + asyncScheduling = "default" + # (Default: true) Whether to enable this feature + enabled = "default" + +[vanillaWorldGenOptimizations] + # (Default: true) Whether to enable aquifer optimizations to accelerate overworld worldgen + # (may cause incompatibility with other mods) + optimizeAquifer = "default" + # (Default: true) Whether to enable End Biome Cache to accelerate The End worldgen + # This is no longer included in lithium-fabric + # (may cause incompatibility with other mods) + # + useEndBiomeCache = "default" + diff --git a/config/callablehorses-common.toml b/config/callablehorses-common.toml new file mode 100644 index 0000000..16471fa --- /dev/null +++ b/config/callablehorses-common.toml @@ -0,0 +1,28 @@ + +[settings] + #Enable debug mode (Developers only) WARNING! Will override all horse names! + enableDebug = false + #Personal Horses get deleted if they're killed + deathIsPermanent = true + #If the horse can be called in every dimension + callableInEveryDimension = true + #Whitelist for dimensions where horses can be called. callableInEveryDimension needs to be false! + callableDimsWhitelist = ["minecraft:overworld"] + #Maximum block distance from last horse where new horse can be called. Set to -1 to disable range. + #Range: -1 ~ 30000000 + maxCallingDistance = -1 + #Enable/disable the horse stat viewer GUI + enableStatsViewer = true + #Range in which the horse will not teleport, but walk to you. Set to 0 to force the horse to always teleport. + #Range: 0.0 ~ 64.0 + horseWalkRange = 30.0 + #Speed with which the horse walks when you call it. Vanilla horse walk speed is 1.2 + #Range: 0.0 ~ 10.0 + horseWalkSpeed = 1.8 + #Check against duplicate horses every game tick (20 times per second) instead of only on load. Only use this if you're experiencing problem with duplicate horses! THIS COULD CAUSE LAG! + continuousAntiDupeChecking = false + #Prevents personal horses from dropping items (like leather). This won't prevent armor or saddles from dropping. If this is disabled in combination with deathIsPermanent, it can become a really easy way to farm/duplicate leather, so keep that in mind. + disableHorseDrops = true + #If you need a 3x3x3 space to call your horse + checkForSpace = true + diff --git a/config/camping-common.toml b/config/camping-common.toml new file mode 100644 index 0000000..dba5d14 --- /dev/null +++ b/config/camping-common.toml @@ -0,0 +1,4 @@ +enableGrilling = true +enableGlint = true +enableEffect = true + diff --git a/config/canary.properties b/config/canary.properties new file mode 100644 index 0000000..d974709 --- /dev/null +++ b/config/canary.properties @@ -0,0 +1,8 @@ +# This is the configuration file for Canary. +# This file exists for debugging purposes and should not be configured otherwise. +# Before configuring anything, take a backup of the worlds that will be opened. +# +# You can find information on editing this file and all the available options here: +# https://github.com/AbdElAziz333/Canary/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/carryon-client.toml b/config/carryon-client.toml new file mode 100644 index 0000000..f6f61b1 --- /dev/null +++ b/config/carryon-client.toml @@ -0,0 +1,7 @@ +#If the front of the Tile Entities should face the player or should face outward +facePlayer = false +#Arms should render on sides when carrying. Set to false if you experience issues with mods that replace the player model (like MoBends, etc) +renderArms = true +#Model Overrides based on NBT or Meta. Advanced users only! Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Model-Override-Config +modelOverrides = ["minecraft:redstone_wire->(item)minecraft:redstone", "minecraft:bamboo_sapling->(block)minecraft:bamboo", "minecraft:candle_cake->(block)minecraft:cake"] + diff --git a/config/carryon-common.toml b/config/carryon-common.toml new file mode 100644 index 0000000..b1dbc0d --- /dev/null +++ b/config/carryon-common.toml @@ -0,0 +1,81 @@ + +[settings] + #General Settings + #Maximum distance from where Blocks and Entities can be picked up + #Range: 0.0 ~ 1.7976931348623157E308 + maxDistance = 2.5 + #Max width of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityWidth = 1.5 + #Max height of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityHeight = 2.5 + #Slowness multiplier for blocks + #Range: 0.0 ~ 1.7976931348623157E308 + blockSlownessMultiplier = 1.0 + #Slowness multiplier for entities + #Range: 0.0 ~ 1.7976931348623157E308 + entitySlownessMultiplier = 1.0 + #Maximum stack limit for entities + #Range: > 1 + maxEntityStackLimit = 10 + #More complex Tile Entities slow down the player more + heavyTiles = true + #Allow all blocks to be picked up, not just Tile Entites. White/Blacklist will still be respected. + pickupAllBlocks = false + #Whether Blocks and Entities slow the creative player down when carried + slownessInCreative = true + #Whether hostile mobs should be able to picked up in survival mode + pickupHostileMobs = false + #Larger Entities slow down the player more + heavyEntities = true + #Allow babies to be carried even when adult mob is blacklisted (or not whitelisted) + allowBabies = false + #Use Whitelist instead of Blacklist for Blocks + useWhitelistBlocks = false + #Use Whitelist instead of Blacklist for Entities + useWhitelistEntities = false + #Use Whitelist instead of Blacklist for Stacking + useWhitelistStacking = false + #Whether the player can hit blocks and entities while carrying or not + hitWhileCarrying = false + #Whether the player drops the carried object when hit or not + dropCarriedWhenHit = false + #Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance + useScripts = false + #Allows entities to be stacked on top of each other + stackableEntities = true + #Whether entities' size matters when stacking or not. This means that larger entities cannot be stacked on smaller ones + entitySizeMattersStacking = true + #Usually all the block state information is retained when placing a block that was picked up. But some information is changed to a modified property, like rotation or orientation. In this list, add additional properties that should NOT be saved and instead be updated when placed. Format: modid:block[propertyname]. Note: You don't need to add an entry for every subtype of a same block. For example, we only add an entry for one type of slab, but the change is applied to all slabs. + placementStateExceptions = ["minecraft:chest[type]", "minecraft:stone_button[face]", "minecraft:vine[north,east,south,west,up]", "minecraft:creeper_head[rotation]", "minecraft:glow_lichen[north,east,south,west,up,down]", "minecraft:oak_sign[rotation]", "minecraft:oak_trapdoor[half]"] + #Whether Players can be picked up. Creative players can't be picked up in Survival Mode + pickupPlayers = true + #Whether players in Survival Mode can pick up unbreakable blocks. Creative players always can. + pickupUnbreakableBlocks = false + +[whitelist] + #Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Entities that CAN be picked up (useWhitelistEntities must be true) + allowedEntities = [] + #Blocks that CAN be picked up (useWhitelistBlocks must be true) + allowedBlocks = [] + #Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true) + allowedStacking = [] + +[blacklist] + #Blacklist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Blocks that cannot be picked up + forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:piston_head", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:*_door", "minecraft:big_dripleaf_stem", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*", "contact:*", "framedblocks:*", "securitycraft:*", "forgemultipartcbe:*", "integrateddynamics:cable", "mekanismgenerators:wind_generator", "cookingforblockheads:cabinet", "cookingforblockheads:corner", "cookingforblockheads:counter", "cookingforblockheads:oven", "cookingforblockheads:toaster", "cookingforblockheads:milk_jar", "cookingforblockheads:cow_jar", "cookingforblockheads:fruit_basket", "cookingforblockheads:cooking_table", "cookingforblockheads:fridge", "cookingforblockheads:sink", "powah:*", "advancementtrophies:trophy", "mekanismgenerators:heat_generator", "mna:filler_block"] + #Entities that cannot be picked up + forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*", "securitycraft:*", "taterzens:npc", "easy_npc:*", "bodiesbodies:dead_body"] + #Entities that cannot have other entities stacked on top of them + forbiddenStacking = ["minecraft:horse"] + +[customPickupConditions] + #Custom Pickup Conditions. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Custom-Pickup-Condition-Config + #Custom Pickup Conditions for Blocks + customPickupConditionsBlocks = [] + #Custom Pickup Conditions for Entities + customPickupConditionsEntities = [] + diff --git a/config/cataclysm-client.toml b/config/cataclysm-client.toml new file mode 100644 index 0000000..72d655c --- /dev/null +++ b/config/cataclysm-client.toml @@ -0,0 +1,20 @@ + +[client] + #Off the Custom Rendering + shadersCompat = false + #ScreenShake(on/off) + "ScreenShake(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setThirdPerson(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setFirstPerson(on/off)" = true + #custombossbar(on/off) + "custombossbar(on/off)" = true + #custombossbar(on/off) + "BossMusic(on/off)" = true + #BossMusicVolume + #Range: 1 ~ 100 + BossMusicVolume = 1 + #showLoginNotice(on/off) + "showLoginNotice(on/off)" = true + diff --git a/config/cataclysm-common.toml b/config/cataclysm-common.toml new file mode 100644 index 0000000..5594438 --- /dev/null +++ b/config/cataclysm-common.toml @@ -0,0 +1,1039 @@ + +[tools_and_abilities] + + [tools_and_abilities.ignitium_armor] + + [tools_and_abilities.ignitium_armor.armor_config] + #Armor_Multiplier + #Range: 0.0 ~ 1000000.0 + armor_multiplier = 1.0 + #Toughness + #Range: 0.0 ~ 1000000.0 + toughness = 4.0 + #Knockback Resistance + #Range: 0.0 ~ 1000000.0 + knockback_resistance = 0.15 + + [tools_and_abilities.cursium_armor] + + [tools_and_abilities.cursium_armor.armor_config] + #Armor_Multiplier + #Range: 0.0 ~ 1000000.0 + armor_multiplier = 1.0 + #Toughness + #Range: 0.0 ~ 1000000.0 + toughness = 4.0 + #Knockback Resistance + #Range: 0.0 ~ 1000000.0 + knockback_resistance = 0.05 + + [tools_and_abilities.bone_reptile_armor] + + [tools_and_abilities.bone_reptile_armor.armor_config] + #Armor_Multiplier + #Range: 0.0 ~ 1000000.0 + armor_multiplier = 1.0 + #Toughness + #Range: 0.0 ~ 1000000.0 + toughness = 2.5 + #Knockback Resistance + #Range: 0.0 ~ 1000000.0 + knockback_resistance = 0.15 + + [tools_and_abilities.bloom_stone_armor] + + [tools_and_abilities.bloom_stone_armor.armor_config] + #Armor_Multiplier + #Range: 0.0 ~ 1000000.0 + armor_multiplier = 1.0 + #Toughness + #Range: 0.0 ~ 1000000.0 + toughness = 2.0 + #Knockback Resistance + #Range: 0.0 ~ 1000000.0 + knockback_resistance = 0.1 + + [tools_and_abilities.incinerator] + #Incinerator Cooldown + #Range: 0 ~ 1000 + incinerator_cooldown = 400 + + [tools_and_abilities.incinerator.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 14.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.4 + + [tools_and_abilities.bulwark_of_the_flame] + #Bulwark Of The Flame Cooldown + #Range: 0 ~ 1000 + bulwark_of_the_flame_cooldown = 80 + + [tools_and_abilities.gauntlet_of_guard] + + [tools_and_abilities.gauntlet_of_guard.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 11.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.gauntlet_of_bulwark] + #Gauntlet Of Bulwark Cooldown + #Range: 0 ~ 1000 + gauntlet_of_bulwark_cooldown = 80 + + [tools_and_abilities.gauntlet_of_bulwark.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 11.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.gauntlet_of_maelstrom] + #Maelstrom Cooldown + #Range: 0 ~ 1000 + maelstrom_cooldown = 180 + + [tools_and_abilities.gauntlet_of_maelstrom.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 11.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.infernal_forge] + #Infernal Forge Cooldown + #Range: 0 ~ 1000 + infernal_forge_cooldown = 80 + + [tools_and_abilities.infernal_forge.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 13.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.0 + + [tools_and_abilities.void_forge] + #Void Forge Cooldown + #Range: 0 ~ 1000 + void_forge_cooldown = 100 + #Void Forge Rune Damage + #Range: 0.0 ~ 1000000.0 + void_forge_rune_damage = 7.0 + + [tools_and_abilities.void_forge.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 13.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.0 + + [tools_and_abilities.brontes] + #Brontes Storm Damage + #Range: 0.0 ~ 1000000.0 + brontes_storm_damage = 10.0 + #Brontes Storm Area Damage + #Range: 0.0 ~ 1000000.0 + brontes_storm_area_damage = 1.0 + + [tools_and_abilities.brontes.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 13.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.0 + + [tools_and_abilities.wither_assault_shoulder_weapon] + #Missile Cooldown + #Range: 0 ~ 1000 + missile_cooldown = 40 + #Missile Damage + #Range: 0.0 ~ 100000.0 + missile_damage = 16.0 + #Howitzer Cooldown + #Range: 0 ~ 1000 + howitzer_cooldown = 100 + + [tools_and_abilities.void_assault_shoulder_weapon] + #Howitzer Cooldown + #Range: 0 ~ 1000 + howitzer_cooldown = 160 + #VASW Rune Damage + #Range: 0.0 ~ 1000000.0 + vasw_rune_damage = 7.0 + + [tools_and_abilities.void_core] + #Cooldown + #Range: 0 ~ 1000 + void_core_cooldown = 160 + #Void Core Rune Damage + #Range: 0.0 ~ 1000000.0 + void_core_rune_damage = 7.0 + + [tools_and_abilities.sandstorm] + #Cooldown + #Range: 0 ~ 1000 + sandstorm_cooldown = 300 + + [tools_and_abilities.soul_render] + #Soul Render Cooldown + #Range: 0 ~ 1000 + soul_render_cooldown = 100 + #Phantom Halberd Damage + #Range: 0.0 ~ 1000000.0 + phantom_halberd_damage = 12.0 + + [tools_and_abilities.soul_render.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 15.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.05 + + [tools_and_abilities.immolator] + #Immolator Cooldown + #Range: 0 ~ 1000 + immolator_cooldown = 250 + + [tools_and_abilities.immolator.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 8.5 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.tidal_claws] + + [tools_and_abilities.tidal_claws.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 8.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.ceraunus] + #Ceraunus Wave Damage + #Range: 0.0 ~ 1000000.0 + ceraunus_wave_damage = 6.0 + #Ceraunus Cooldown + #Range: 0 ~ 1000000 + ceraunus_cooldown = 150 + + [tools_and_abilities.ceraunus.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 16.0 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 0.7 + + [tools_and_abilities.astrape] + #Astrape Damage + #Range: 0.0 ~ 1000000.0 + astrape_damage = 11.0 + #Astrape Area Damage + #Range: 0.0 ~ 1000000.0 + astrape_area_damage = 2.0 + #Astrape Cooldown + #Range: 0 ~ 1000000 + astrape_cooldown = 60 + + [tools_and_abilities.astrape.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 10.5 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.4 + + [tools_and_abilities.meat_shredder] + + [tools_and_abilities.meat_shredder.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 8.5 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.4 + + [tools_and_abilities.annihilator] + + [tools_and_abilities.annihilator.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 8.5 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.6 + + [tools_and_abilities.cursed_bow] + #Cursed Bow Damage + #Range: 0.0 ~ 1000000.0 + cursed_bow_damage = 8.0 + + [tools_and_abilities.wrath_of_the_desert] + #Wrath Of The Desert Damage + #Range: 0.0 ~ 1000000.0 + wrath_of_the_desert_damage = 7.5 + + [tools_and_abilities.laser_gatling] + #Laser Damage + #Range: 0.0 ~ 1000000.0 + laser_damage = 7.0 + + [tools_and_abilities.ancient_spear] + #SandStorm + #Range: 0.0 ~ 1000000.0 + sand_storm_damage = 6.0 + + [tools_and_abilities.ancient_spear.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1000000.0 + attack_damage = 9.5 + #Tool attack speed + #Range: 0.0 ~ 1000000.0 + attack_speed = 1.4 + +[mobs] + + [mobs.etc] + #Return Home + #Range: 0 ~ 200 + return_home = 20 + + [mobs.ender_guardian] + #Gravity Punch Hp Damage + #Range: 0.0 ~ 1.0 + gravity_punch_hp_damage = 0.05 + #Teleport Attack Hp Damage + #Range: 0.0 ~ 1.0 + teleport_attack_hp_damage = 0.05 + #Knockback Hp Damage + #Range: 0.0 ~ 1.0 + knockback_hp_damage = 0.06 + #Uppercut Hp Damage + #Range: 0.0 ~ 1.0 + uppercut_hp_damage = 0.1 + #Rocket Punch Hp Damage + #Range: 0.0 ~ 1.0 + rocket_punch_hp_damage = 0.1 + #Area Attack Hp Damage + #Range: 0.0 ~ 1.0 + area_attack_hp_damage = 0.08 + #Block Breaking X + #Range: 0 ~ 20 + block_break_x = 15 + #Block Breaking Y + #Range: 0 ~ 10 + block_break_y = 2 + #Block Breaking Z + #Range: 0 ~ 20 + block_break_z = 15 + #Void Rune Damage + #Range: 0.0 ~ 1000000.0 + void_rune_damage = 9.0 + #Enable separate music per boss phase + separate_phase_music = true + + [mobs.ender_guardian.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ender_guardian.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 22.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 13.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 12.0 + + [mobs.ender_guardian.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.ender_guardian.respawner_config] + #Respawner + respawner = true + + [mobs.ender_guardian.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.ender_golem] + #Void Rune Damage + #Range: 0.0 ~ 1000000.0 + void_rune_damage = 7.0 + + [mobs.ender_golem.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ender_golem.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 999999.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 999999.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 8.0 + + [mobs.ender_golem.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.ender_golem.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = false + + [mobs.netherite_monstrosity] + #Lava bomb Magazine + #Range: 0 ~ 20 + lava_bomb_magazine = 3 + #Lava bomb Amount + #Range: 1 ~ 1000 + lava_bomb_amount = 3 + #Lava bomb Duration + #Range: 1 ~ 10000 + lava_bomb_duration = 350 + #Lava bomb Random Duration + #Range: 1 ~ 10000 + lava_bomb_random_duration = 150 + #Body collide like shulker + body_collided = true + #Smash Hp Damage + #Range: 0.0 ~ 1.0 + smash_hp_damage = 0.08 + #Flame Jet Damage + #Range: 0.0 ~ 1000000.0 + flame_jet_damage = 7.0 + #Flare Bomb Damage + #Range: 0.0 ~ 1000000.0 + flare_bomb_damage = 10.0 + + [mobs.netherite_monstrosity.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.netherite_monstrosity.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 25.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 20.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 18.0 + + [mobs.netherite_monstrosity.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.netherite_monstrosity.respawner_config] + #Respawner + respawner = true + + [mobs.netherite_monstrosity.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.netherite_ministrosity] + + [mobs.netherite_ministrosity.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ignis] + #Ignis's Life steal Multiplier + #Range: 0.0 ~ 1000000.0 + healing_multiplier = 1.0 + #Enable separate music per boss phase + separate_phase_music = true + + [mobs.ignis.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ignis.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 20.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 14.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 15.0 + + [mobs.ignis.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.ignis.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.ignited_revenant] + #Ashen Breath Damage + #Range: 0.0 ~ 1000000.0 + ashen_breath_damage = 4.0 + #Blazing Bone Damage + #Range: 0.0 ~ 1000000.0 + blazing_bone_damage = 5.0 + + [mobs.ignited_revenant.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.harbinger] + #Harbinger Auto Heal + #Range: 0.0 ~ 1000000.0 + harbinger_auto_heal = 2.0 + #Harbinger Life Steal + #Range: 0.0 ~ 1000000.0 + harbinger_life_steal = 5.0 + #Wither Missile Damage + #Range: 0.0 ~ 1000000.0 + wither_missile_damage = 8.0 + #Laser Damage + #Range: 0.0 ~ 1000000.0 + laser_damage = 5.0 + #Death Laser Damage + #Range: 0.0 ~ 1000000.0 + death_laser_damage = 5.0 + #Death Laser HP Damage + #Range: 0.0 ~ 1.0 + death_laser_hp_damage = 0.05 + #Charge Attack Hp Damage + #Range: 0.0 ~ 1.0 + charge_hp_damage = 0.06 + + [mobs.harbinger.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.harbinger.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 22.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 14.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 35.0 + + [mobs.harbinger.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.harbinger.respawner_config] + #Respawner + respawner = true + + [mobs.harbinger.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.prowler] + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 15.0 + #Wither Homing Missile + #Range: 0.0 ~ 1000000.0 + homing_missile = 5.0 + #Death Laser Damage + #Range: 0.0 ~ 1000000.0 + death_laser_damage = 5.0 + #Death Laser HP Damage + #Range: 0.0 ~ 1.0 + death_laser_hp_damage = 0.05 + + [mobs.prowler.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.amethyst_crab] + #Earth Quake Damage + #Range: 0.0 ~ 1000000.0 + earth_quake_damage = 5.0 + #Amethyst Cluster Damage + #Range: 0.0 ~ 1000000.0 + amethyst_cluster_damage = 12.0 + + [mobs.amethyst_crab.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.leviathan] + #Bite Hp Damage + #Range: 0.0 ~ 1.0 + bite_hp_damage = 0.1 + #Rush Hp Damge + #Range: 0.0 ~ 1.0 + rush_hp_damage = 0.05 + #Tail Swing Hp Damage + #Range: 0.0 ~ 1.0 + tail_swing_hp_damage = 0.06 + #Tentacle Hp Damage + #Range: 0.0 ~ 1.0 + tentacle_hp_damage = 0.06 + #Dimensional Rift Damage + #Range: 0.0 ~ 1000000.0 + dimensional_rift_damage = 10.0 + #Abyss Blast Damage + #Range: 0.0 ~ 1000000.0 + abyss_blast_damage = 10.0 + #Abyss Blast HP Damage + #Range: 0.0 ~ 1.0 + abyss_blast_hp_damage = 0.1 + #Abyss Orb Damage + #Range: 0.0 ~ 1000000.0 + abyss_orb_damage = 4.0 + #Leviathan Immune Out of Water. + immune_out_of_water = true + #Enable separate music per boss phase + separate_phase_music = true + + [mobs.leviathan.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.leviathan.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.leviathan.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 20.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 15.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 38.0 + + [mobs.leviathan.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.baby_leviathan] + + [mobs.baby_leviathan.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ancient_remnant] + #Charge Hp Damage + #Range: 0.0 ~ 1.0 + charge_hp_damage = 0.1 + #Hp Damage + #Range: 0.0 ~ 1.0 + hp_damage = 0.05 + #Stomp Hp Damage + #Range: 0.0 ~ 1.0 + stomp_hp_damage = 0.03 + #EarthQuake Damage + #Range: 0.0 ~ 1000000.0 + earthquake_damage = 11.0 + #Ancient Desert Stele Damage + #Range: 0.0 ~ 1000000.0 + ancient_desert_stele_damage = 11.0 + + [mobs.ancient_remnant.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.ancient_remnant.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 21.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 14.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 14.0 + + [mobs.ancient_remnant.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.ancient_remnant.respawner_config] + #Respawner + respawner = true + + [mobs.ancient_remnant.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.modern_remnant] + + [mobs.modern_remnant.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.koboleton] + #CauseKoboletontoDropItemInHandPercent + #Range: 0.0 ~ 100.0 + drop_hand = 5.0 + + [mobs.kobolediator] + + [mobs.kobolediator.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.kobolediator.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = false + + [mobs.wadjet] + #Sandstorm Damage + #Range: 0.0 ~ 1000000.0 + sandstorm_damage = 6.0 + #Ancient Desert Stele Damage + #Range: 0.0 ~ 1000000.0 + ancient_desert_stele_damage = 11.0 + + [mobs.wadjet.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.maledictus] + #Phantom Halberd Damage + #Range: 0.0 ~ 1000000.0 + phantom_halberd_damage = 11.0 + #Hp Damage + #Range: 0.0 ~ 1.0 + hp_damage = 0.05 + #Shock Wave Hp Damage + #Range: 0.0 ~ 1.0 + shock_wave_hp_damage = 0.03 + #AOE Hp Damage + #Range: 0.0 ~ 1.0 + aoe_hp_damage = 0.15 + #Flying Smash Hp Damage + #Range: 0.0 ~ 1.0 + flying_smash_hp_damage = 0.1 + #Smash Hp Damage + #Range: 0.0 ~ 1.0 + smash_hp_damage = 0.08 + #Phantom Arrow Damage + #Range: 0.0 ~ 1000000.0 + phantom_arrow_damage = 5.0 + + [mobs.maledictus.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.maledictus.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 20.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 13.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 14.0 + + [mobs.maledictus.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.maledictus.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.aptrgangr] + #Axe Blade Damage + #Range: 0.0 ~ 1000000.0 + axe_blade_damage = 8.0 + + [mobs.aptrgangr.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.aptrgangr.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.scylla] + #Spear Damage + #Range: 0.0 ~ 1000000.0 + spear_damage = 14.0 + #Lightning Storm Damage + #Range: 0.0 ~ 1000000.0 + lightning_storm_damage = 10.0 + #Lightning Area Damage + #Range: 0.0 ~ 1000000.0 + lightning_area_damage = 4.0 + #Snake Damage + #Range: 0.0 ~ 1000000.0 + snake_damage = 16.0 + #Anchor Damage + #Range: 0.0 ~ 1000000.0 + anchor_damage = 16.0 + #Weather Change + weather_change = true + #Hp Damage + #Range: 0.0 ~ 1.0 + hp_damage = 0.05 + #Spin Hp Damage + #Range: 0.0 ~ 1.0 + spin_hp_damage = 0.07 + #Lightning Storm Hp Damage + #Range: 0.0 ~ 1.0 + lightning_storm_hp_damage = 0.04 + + [mobs.scylla.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.scylla.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 21.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 13.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 12.0 + + [mobs.scylla.respawner_config] + #Respawner + respawner = true + + [mobs.scylla.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + + [mobs.scylla.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = true + + [mobs.clawdian] + + [mobs.clawdian.combat_config] + #Scale mob health by this value + #Range: 0.1 ~ 1000000.0 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.1 ~ 1000000.0 + attack_multiplier = 1.0 + + [mobs.clawdian.cap_config] + #Damage Cap + #Range: 0.0 ~ 1000000.0 + damage_cap = 21.0 + #Dps Cap + #Range: 1.0 ~ 1000000.0 + dps_cap = 12.0 + #DPS Limit Time + #Range: 1 ~ 100 + dps_limit_time = 20 + #Range Cap + #Range: 1.0 ~ 1000000.0 + range_cap = 12.0 + + [mobs.clawdian.ignore_mobgriefing_config] + #Ignore MobGriefing + ignore_mobgriefing = false + + [mobs.clawdian.nature_heal_config] + #Nature Heal + #Range: 0.0 ~ 1000000.0 + nature_heal = 25.0 + +[blocks] + + [blocks.cursed_tombstone] + #Cursed Tombstone Cooldown + #Range: 0 ~ 30 + cursed_tombstone_cooldown = 1 + +[spawning] + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + deepling_spawn_weight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + deepling_spawn_rolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + deepling_brute_spawn_weight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + deepling_brute_spawn_rolls = 50 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + deepling_angler_spawn_weight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + deepling_angler_spawn_rolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + deepling_priest_spawn_weight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + deepling_priest_spawn_rolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + deepling_warlock_spawn_weight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + deepling_warlock_spawn_rolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + coral_golem_spawn_weight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + coral_golem_spawn_rolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + amethyst_crab_spawn_weight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + amethyst_crab_spawn_rolls = 20 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + koboleton_spawn_weight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + koboleton_spawn_rolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + ignited_berserker_spawn_weight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + ignited_berserker_spawn_rolls = 2 + diff --git a/config/cataclysm.toml b/config/cataclysm.toml new file mode 100644 index 0000000..63cc5dd --- /dev/null +++ b/config/cataclysm.toml @@ -0,0 +1,656 @@ + +[Etc] + #Off the Custom Rendering + shadersCompat = true + #ScreenShake(on/off) + "ScreenShake(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setThirdPerson(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setFirstPerson(on/off)" = true + +["bosses Common settings"] + #custombossbar(on/off) + "custombossbar(on/off)" = true + #If the boss leaves the summoned location and there is no target, it returns to the summoned location. When set to 0, it does not return + #Range: 0 ~ 200 + ReturnHome = 20 + +["bosses Music"] + #BossMusic(on/off) + "BossMusic(on/off)" = true + #BossMusicVolume(denominator) + #Range: 1 ~ 1000000 + BossMusicVolume = 1 + #Enable separate music per boss phase + "IgnisSeparatePhaseMusic(on/off)" = true + #Enable separate music per boss phase + "EnderGuardianSeparatePhaseMusic(on/off)" = true + #Enable separate music per boss phase + "LeviathanSeparatePhaseMusic(on/off)" = true + +[Weapon] + #Armor Infinity Durability(on/off) + "Armor Infinity Durability(on/off)" = true + #Bulwark of the Flame's Cooldown + #Range: 0 ~ 1000000 + BulwarkOfTheFlameCooldown = 80 + #Gauntlet of Bulwark's Cooldown + #Range: 0 ~ 1000000 + GauntletOfBulwarkCooldown = 80 + #Infernal Forge's Cooldown + #Range: 0 ~ 1000000 + InfernalForgeCooldown = 80 + #Void Forge's Cooldown + #Range: 0 ~ 1000000 + VoidForgeCooldown = 120 + #The Incinerator's Cooldown + #Range: 0 ~ 1000000 + TheIncineratorCooldown = 400 + #Wither Assault Shoulder Weapon's Missile Cooldown + #Range: 0 ~ 1000000 + WASWMissileCooldown = 40 + #WASW's Wither Missile's Damage + #Range: 0.0 ~ 1000000.0 + "WASW's WitherMissiledamage" = 16.0 + #Wither Assault Shoulder Weapon's Howitzer Cooldown + #Range: 0 ~ 1000000 + WASWHowitzerCooldown = 100 + #Void Assault Shoulder Weapon's Cooldown + #Range: 0 ~ 1000000 + VASWCooldown = 120 + #Void Core's Cooldown + #Range: 0 ~ 1000000 + VoidCoreCooldown = 160 + #Sandstorm's cooldown + #Range: 0 ~ 1000000 + Sandstormcooldown = 300 + #Soul Render's Timer + #Range: 0 ~ 1000000 + SoulRenderCooldown = 100 + #Gauntlet of Maelstrom's Timer + #Range: 0 ~ 1000000 + gauntletofMaelstromCooldown = 180 + #The Immolator's Timer + #Range: 0 ~ 1000000 + immolatorCooldown = 300 + #Storm Bringer's LightningStorm Damage + #Range: 0.0 ~ 1000000.0 + "Ceraunus 's Lightning Storm Damage" = 6.0 + #Ceraunus's Wave Damage + #Range: 0.0 ~ 1000000.0 + "Ceraunus's Wave Damage'" = 6.0 + #Ceraunus's Cooldown + #Range: 0 ~ 1000000 + "Ceraunus Cooldown" = 150 + #Astrape's LightningStorm Damage + #Range: 0.0 ~ 1000000.0 + "Astrape's Lightning Spear Damage" = 11.0 + #Astrape's Wave Damage + #Range: 0.0 ~ 1000000.0 + "Astrape's Area Damage'" = 2.0 + #Astrape's Cooldown + #Range: 0 ~ 1000000 + "Astrape Cooldown" = 80 + +[Block] + #Cursed Tombstone Summon cooldown Minute + #Range: 1 ~ 300 + "Cursed Tombstone Summon cooldown Minute" = 1 + +["Entity damage"] + #Void Rune's Damage + #Range: 0.0 ~ 1000000.0 + Voidrunedamage = 7.0 + #Ashen Breath's Damage + #Range: 0.0 ~ 1000000.0 + Ashenbreathdamage = 4.0 + #Death Laser's Damage + #Range: 0.0 ~ 1000000.0 + DeathLaserdamage = 5.0 + #Death Laser's Hp Damage + #Range: 0.0 ~ 100.0 + DeathLaserHpdamage = 5.0 + #Player's Laser's Damage + #Range: 0.0 ~ 1000000.0 + Laserdamage = 7.0 + #Blazing Bone's Damage + #Range: 0.0 ~ 1000000.0 + BlazingBonedamage = 5.0 + #Lionfish Spike's Damage + #Range: 0.0 ~ 1000000.0 + LionfishSpikedamage = 4.0 + #Wither Howizter's Damage + #Range: 0.0 ~ 1000000.0 + WitherHowizterdamage = 8.0 + #Dimensional Rift's Damage + #Range: 0.0 ~ 1000000.0 + DimensionalRiftdamage = 10.0 + #Wither Homing Missile's Damage + #Range: 0.0 ~ 1000000.0 + WitherHomingMissiledamage = 3.0 + #Abyss Blast's Damage + #Range: 0.0 ~ 1000000.0 + AbyssBlastdamage = 10.0 + #Abyss Blast's Hp Damage + #Range: 0.0 ~ 1.0 + AbyssBlastHpdamage = 0.1 + #Abyss Orb's Damage + #Range: 0.0 ~ 1000000.0 + AbyssOrbdamage = 4.0 + #Lava bomb's Radius + #Range: 1 ~ 7 + Lavabombradius = 2 + #Amethyst Cluster's Damage + #Range: 0.0 ~ 1000000.0 + "Amethyst Cluster Damage" = 12.0 + #Sandstorm's Damage + #Range: 0.0 ~ 1000000.0 + "Sandstorm Damage" = 5.0 + #Ancient Desert Stele's Damage + #Range: 0.0 ~ 1000000.0 + "Ancient Desert Stele Damage" = 18.0 + #Player's Phantom Arrow's Damage + #Range: 0.0 ~ 1000000.0 + "Phantom Arrow Damage" = 5.0 + #Phantom Halberd's Damage + #Range: 0.0 ~ 1000000.0 + "Phantom Halberd Damage" = 12.0 + #Cursed Sandstorm's Damage + #Range: 0.0 ~ 1000000.0 + "Cursed Sandstorm Damage" = 6.0 + #Flame jet's Damage + #Range: 0.0 ~ 1000000.0 + "Flame Jet Damage" = 7.0 + #Flare Bomb's Damage + #Range: 0.0 ~ 1000000.0 + "Flare Bomb Damage" = 7.0 + +["Ender Guardian"] + #EnderGuardian's Health Multiplier + #Range: 0.0 ~ 1000000.0 + EnderGuardianHealthMultiplier = 1.0 + #EnderGuardian's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + EnderGuardianDamageMultiplier = 1.0 + #EnderGuardian's DamageCap + #Range: 0.0 ~ 1000000.0 + EnderGuardianDamageCap = 22.0 + #EnderGuardian's DamageTime + #Range: 0 ~ 100 + EnderGuardianDamageTime = 30 + #EnderGuardian's Healing with out target + #Range: 0.0 ~ 1000000.0 + EnderGuardianNatureHealing = 25.0 + #Ender guardian's block breaking ignore the MobGriefing + EnderguardianBlockBreaking = true + #Guardian's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Guardian's prevent attacks from far away Range" = 12.0 + #Guardian's gravity Punch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's gravity Punch Hp Damage" = 0.05 + #Guardian's Teleport attack Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's Teleport attack Hp Damage" = 0.05 + #Guardian's Punch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's knockback Hp Damage" = 0.06 + #Guardian's Uppercut Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's Uppercut Hp Damage" = 0.1 + #Guardian's RocketPunch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's RocketPunch Hp Damage" = 0.1 + #Guardian's etc area attack Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's area attack Hp Damage" = 0.08 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 20 + "EnderGuardianBlockBreaking X" = 15 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 10 + "EnderGuardianBlockBreaking Y" = 2 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 20 + "EnderGuardianBlockBreaking Z" = 15 + +["Netherite Monstrosity"] + #Monstrosity's Lavabomb magazine. + #Range: 1 ~ 1000000 + LavabombMagazine = 3 + #Monstrosity's Lavabomb amount + #Range: 1 ~ 1000000 + Lavabombamount = 3 + #Lava Bomb of Monstrosity's Duration + #Range: 1 ~ 10000 + LavaBombDuration = 350 + #Lava Bomb of Monstrosity's additional random duration size + #Range: 1 ~ 10000 + LavaBombRandomDuration = 150 + #Monstrosity's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityHealthMultiplier = 1.0 + #Monstrosity's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityDamageMultiplier = 1.0 + #Monstrosity's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityHealingMultiplier = 1.0 + # Monstrosity's Healing with out target + #Range: 0.0 ~ 1000000.0 + MonstrosityNatureHealing = 25.0 + #Monstrosity's DamageCap + #Range: 0.0 ~ 1000000.0 + MonstrosityDamageCap = 22.0 + #Monstrosity's DamageTime + #Range: 0 ~ 100 + MonstrosityDamageTime = 10 + #Monstrosity's bodyBlocking verdict + NetheritemonstrosityBodyBloking = true + #Monstrosity's attack Hp Damage + #Range: 0.0 ~ 1.0 + "Monstrosity's attack Hp Damage" = 0.08 + #Monstrosity's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Monstrosity's prevent attacks from far away Range" = 18.0 + #Monstrosity's block breaking ignore the MobGriefing + monstrosityBlockBreaking = true + +["Ender Golem"] + #Ender Golem's block breaking ignore the MobGriefing + EndergolemBlockBreaking = false + #Endergolem's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Endergolem's prevent attacks from far away Range" = 6.0 + #Golem's Health Multiplier + #Range: 0.0 ~ 1000000.0 + GolemHealthMultiplier = 1.0 + #Golem's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + GolemDamageMultiplier = 1.0 + +[Ignis] + #Ignis's Health Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisHealthMultiplier = 1.0 + #Ignis's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisDamageMultiplier = 1.0 + #Ignis's Healing with out target + #Range: 0.0 ~ 1000000.0 + IgnisNatureHealing = 25.0 + #Ignis's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisHealingMultiplier = 1.0 + #Ignis's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Ignis's prevent attacks from far away Range" = 15.0 + #Ignis's DamageCap + #Range: 0.0 ~ 1000000.0 + IgnisDamageCap = 20.0 + #Ignis's DamageTime + #Range: 0 ~ 100 + IgnisDamageTime = 15 + #Ignis's cracked block breaking ignore the MobGriefing + IgnisBlockBreaking = true + +[revenant] + #Revenant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + RevenantHealthMultiplier = 1.0 + #Revenant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + RevenantDamageMultiplier = 1.0 + +["The Prowler"] + #The Prowler's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "The Prowler's prevent attacks from far away Range" = 16.0 + #Prowler's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ProwlerHealthMultiplier = 1.0 + #Prowler's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ProwlerDamageMultiplier = 1.0 + +["The Harbinger"] + #Harbinger's Health Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerHealthMultiplier = 1.0 + #Harbinger's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerDamageMultiplier = 1.0 + #Harbinger's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerHealingMultiplier = 1.0 + #Harbinger's Wither Missile's Damage + #Range: 0.0 ~ 1000000.0 + "Harbinger's WitherMissiledamage" = 8.0 + #Harbinger's laser's Damage + #Range: 0.0 ~ 1000000.0 + "Harbinger's laser damage" = 5.0 + #Harbinger's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "The Harbinger's prevent attacks from far away Range" = 35.0 + #Harbinger's DamageCap + #Range: 0.0 ~ 1000000.0 + "The Harbinger DamageCap" = 22.0 + #Harbinger's DamageTime + #Range: 0 ~ 100 + "The Harbinger DamageTime" = 12 + #Harbinger's lasers can light a fire in MobGriefing + "The Harbinger Light A Fire" = true + #The Harbinger's charge attack Hp Damage + #Range: 0.0 ~ 1.0 + "The Harbinger's charge attack Hp Damage" = 0.06 + +["The Leviathan"] + #Leviathan's Health Multiplier + #Range: 0.0 ~ 1000000.0 + LeviathanHealthMultiplier = 1.0 + #Leviathan's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + LeviathanDamageMultiplier = 1.0 + #Leviathan's Healing with out target + #Range: 0.0 ~ 1000000.0 + LeviathanNatureHealing = 25.0 + #Leviathan's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Leviathan's prevent attacks from far away Range" = 38.0 + #Leviathan's Bite Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Bite Hp Damage" = 0.1 + #Leviathan's Rush Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Rush Hp Damage" = 0.05 + #Leviathan's TailSwing Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's TailSwing Hp Damage" = 0.08 + #Leviathan's Tentacle Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Tentacle Hp Damage" = 0.03 + #Leviathan's DamageCap + #Range: 0.0 ~ 1000000.0 + LeviathanDamageCap = 20.0 + #Leviathan's DamageTime + #Range: 0 ~ 100 + "Leviathan DamageTime" = 15 + #Leviathan's block breaking ignore the MobGriefing + LeviathanBlockBreaking = true + #Leviathan Immune Out of Water + LeviathanImmuneOutofWater = true + +["The Baby Leviathan"] + #BabyLeviathan's Health Multiplier + #Range: 0.0 ~ 1000000.0 + BabyLeviathanHealthMultiplier = 1.0 + #BabyLeviathan's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + BabyLeviathanDamageMultiplier = 1.0 + +["Modern Remnant"] + #Modern Remnant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ModernRemnantHealthMultiplier = 1.0 + #Modern Remnant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ModernRemnantDamageMultiplier = 1.0 + +["Netherite Ministrosity"] + #Ministrosity's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MinistrosityHealthMultiplier = 1.0 + +["Amethyst Crab"] + #Amethyst Crab's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AmethystCrabHealthMultiplier = 1.0 + #Amethyst Crab's EarthQuake Damage + #Range: 0.0 ~ 1000000.0 + AmethystCrabEarthQuakeDamage = 5.0 + #Amethyst Crab's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AmethystCrabDamageMultiplier = 1.0 + +["Ancient Remnant"] + #Ancient Remnant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AncientRemnantHealthMultiplier = 1.0 + #Ancient Remnant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AncientRemnantDamageMultiplier = 1.0 + #AncientRemnant's Healing with out target + #Range: 0.0 ~ 1000000.0 + AncientRemnantNatureHealing = 25.0 + #Ancient Remnant's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Ancient Remnant's prevent attacks from far away Range" = 14.0 + #Ancient Remnant's DamageCap + #Range: 0.0 ~ 1000000.0 + AncientRemnantCap = 21.0 + #Ancient Remnant's DamageTime + #Range: 0 ~ 100 + "Ancient Remnant DamageTime" = 12 + #Ancient Remnant's block breaking ignore the MobGriefing + AncientRemnantBlockBreaking = true + #Remnant's Charge Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Charge Hp Damage" = 0.1 + #Remnant's Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Normal attack Hp Damage" = 0.05 + #Remnant's Stomp Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Stomp Hp Damage" = 0.03 + #Remnant's EarthQuake Damage + #Range: 0.0 ~ 1000000.0 + "Remnant's EarthQuakeDamage" = 11.0 + +[Koboleton] + #Cause Koboleton to Drop Item In Hand Percent + #Range: 0.0 ~ 100.0 + CauseKoboletontoDropItemInHandPercent = 5.0 + +[Kobolediator] + #Kobolediator's block breaking ignore the MobGriefing + KobolediatorBlockBreaking = false + #Kobolediator's Health Multiplier + #Range: 0.0 ~ 1000000.0 + KobolediatorHealthMultiplier = 1.0 + #Kobolediator's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + KobolediatorDamageMultiplier = 1.0 + +[Wadjet] + #Wadjet's Health Multiplier + #Range: 0.0 ~ 1000000.0 + WadjetHealthMultiplier = 1.0 + #Wadjet's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + WadjetDamageMultiplier = 1.0 + +[Aptrgangr] + #Aptrgangr's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AptrgangrHealthMultiplier = 1.0 + #Aptrgangr's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AptrgangrDamageMultiplier = 1.0 + #Axe Blade's Damage + #Range: 0.0 ~ 1000000.0 + AptrgangrAxeBladeDamage = 8.0 + +[Clawdian] + #Clawdian's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ClawdianHealthMultiplier = 1.0 + #Clawdian's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ClawdianDamageMultiplier = 1.0 + +[Scylla] + #Scylla's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ScyllaHealthMultiplier = 1.0 + #Scylla's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ScyllaDamageMultiplier = 1.0 + #Scylla's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Scylla's prevent attacks from far away Range" = 10.0 + #Scylla's Spear Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Spear Damage" = 14.0 + #Scylla's Lightning Storm + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Storm" = 10.0 + #Scylla's Lightning Area + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Area" = 4.0 + #Scylla's Storm Serpent + #Range: 0.0 ~ 1000000.0 + "Scylla's Snake Damage" = 16.0 + #Scylla's Anchor Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Anchor Damage" = 16.0 + #Scylla's Healing with out target + #Range: 0.0 ~ 1000000.0 + "Scylla NatureHealing" = 25.0 + #Scylla weather change + "Scylla Weather Change" = true + #Scylla's DamageCap + #Range: 0.0 ~ 1000000.0 + "Scylla DamageCap" = 22.0 + #Scylla's DamageTime + #Range: 0 ~ 100 + "Scylla DamageTime" = 25 + #Scylla's HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's HP Damage" = 0.05 + #Scylla's Spin HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Spin Hp Damage" = 0.07 + #Scylla's Lightning Storm HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Storm HP Damage" = 0.04 + +[Maledictus] + #Maledictus's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MaledictusHealthMultiplier = 1.0 + #Maledictus's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + MaledictusDamageMultiplier = 1.0 + #Maledictus's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Maledictus's prevent attacks from far away Range" = 12.0 + #Maledictus's Healing with out target + #Range: 0.0 ~ 1000000.0 + MaledictusNatureHealing = 25.0 + #Maledictus's Phantom Halberd Damage + #Range: 0.0 ~ 1000000.0 + "Maledictus' Phantom Halberd Damage'" = 10.0 + #Maledictus's DamageCap + #Range: 0.0 ~ 1000000.0 + MaledictusDamageCap = 20.0 + #Maledictus's DamageTime + #Range: 0 ~ 100 + "Maledictus DamageTime" = 30 + #Maledictus's melee Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's melee Hp Damage" = 0.05 + #Maledictus's Shock wave Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Shock Wave Hp Damage" = 0.03 + #Maledictus's AOE Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's AOE Hp Damage" = 0.15 + #Maledictus's flying Smash Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Flying Smash Hp Damage" = 0.1 + #Maledictus's Jump Smash Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Jump Smash Hp Damage" = 0.08 + #Maledictus's Phantom Arrow's Damage + #Range: 0.0 ~ 1000000.0 + "Maledictus's Phantom Arrow Damage" = 5.0 + #Maledictus's cracked block breaking ignore the MobGriefing + MaledictusBlockBreaking = true + +[spawning] + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingSpawnRolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingBruteSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingBruteSpawnRolls = 50 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingAnglerSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingAnglerSpawnRolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingPriestSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingPriestSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingWarlockSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingWarlockSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + CoralgolemSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + CoralgolemSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + AmethystCrabSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + AmethystCrabSpawnRolls = 20 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + KoboletonSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + KoboletonSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + IgnitedBerserkerSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + IgnitedBerserkerSpawnRolls = 2 + +["World Generation"] + #Defines the area in which the structure check for height variances (1 means 9 chunks will be checked (center + area around it)) - 0 disables this check + #Range: 0 ~ 5 + cursedPyramidCheckRange = 2 + #Allowed height variance for the check - if the variance is lower than this value the structure will not spawn (has no effect if the are check is disabled) + #Range: 0 ~ 32 + cursedPyramidHeightVariance = 2 + +["Boss Respawner"] + #on/off + MonstrosityRespawner = true + #on/off + EnderGuardianRespawner = true + #on/off + HarbingerRespawner = true + #on/off + RemnantRespawner = true + #on/off + ScyllaRespawner = true + diff --git a/config/cataclysm/amethyst_crab_spawns.json b/config/cataclysm/amethyst_crab_spawns.json new file mode 100644 index 0000000..4c3d891 --- /dev/null +++ b/config/cataclysm/amethyst_crab_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lush_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/coral_golem_spawns.json b/config/cataclysm/coral_golem_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/coral_golem_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/deepling_angler_spawns.json b/config/cataclysm/deepling_angler_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/deepling_angler_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/deepling_brute_spawns.json b/config/cataclysm/deepling_brute_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/deepling_brute_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/deepling_priest_spawns.json b/config/cataclysm/deepling_priest_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/deepling_priest_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/deepling_spawns.json b/config/cataclysm/deepling_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/deepling_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/deepling_warlock_spawns.json b/config/cataclysm/deepling_warlock_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/config/cataclysm/deepling_warlock_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm/koboleton_spawns.json b/config/cataclysm/koboleton_spawns.json new file mode 100644 index 0000000..575bfd5 --- /dev/null +++ b/config/cataclysm/koboleton_spawns.json @@ -0,0 +1,26 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ] + ] +} \ No newline at end of file diff --git a/config/cataclysm_spellbooks_config.toml b/config/cataclysm_spellbooks_config.toml new file mode 100644 index 0000000..4892c87 --- /dev/null +++ b/config/cataclysm_spellbooks_config.toml @@ -0,0 +1,14 @@ +"Should Cataclysm bosses have ISS attributes (default value is True): " = true +"Should Shutdown spell prevent target from spell casting (default value is True): " = true +"Should Intrusion Prevent System prevent the entities from receiving projectile damage (default is True): " = true +"Should Cataclysm: Spellbooks spells cause griefing (default is True): " = true +"Should Final Rend cancel damage towards the caster when charging up the spell (default is True): " = true +"Should the Murasama lifesteal ability be enabled (default is True): " = true +"Should the Murasama mana steal ability be enabled (default is True): " = true + +["Percentage of health that should be regained for lifesteal based on max health (default is 0"] + "25 aka 25%): " = 0.25 + +["Percentage of mana that should be regained based on damage dealt for manasteal (default is 0"] + "25 aka 25%): " = 0.25 + diff --git a/config/caupona-common.toml b/config/caupona-common.toml new file mode 100644 index 0000000..d7edd12 --- /dev/null +++ b/config/caupona-common.toml @@ -0,0 +1,11 @@ + +[recipe] + #Ticks before do still recipe + #Range: > 1 + StillRecipeTicks = 12000 + +[road] + #Additional speed added per tick for roads + #Range: 0.0 ~ 10.0 + roadSpeedAddtion = 2.0 + diff --git a/config/ccl.cfg b/config/ccl.cfg new file mode 100644 index 0000000..62ba13c --- /dev/null +++ b/config/ccl.cfg @@ -0,0 +1,9 @@ +"client" { + # With this enabled, CCL will catch all exceptions thrown whilst rendering blocks. + # If an exception is caught, the block will not be rendered. + B:"catchBlockRenderExceptions"=true + + # With this enabled, CCL will message the player upon an exception from rendering blocks or items. + # Messages are Rate-Limited to one per 5 seconds in the event that the exception continues. + B:"messagePlayerOnRenderExceptionCaught"=true +} diff --git a/config/cerulean-client.toml b/config/cerulean-client.toml new file mode 100644 index 0000000..5a6b3db --- /dev/null +++ b/config/cerulean-client.toml @@ -0,0 +1,8 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your world's serverconfig folder! +[client] + #. + #Example Boolean + example = true + diff --git a/config/cerulean-common.toml b/config/cerulean-common.toml new file mode 100644 index 0000000..1ff017e --- /dev/null +++ b/config/cerulean-common.toml @@ -0,0 +1,4 @@ +#. +#Example Boolean!!!!!!!!!!! +example = true + diff --git a/config/cerulean.yml b/config/cerulean.yml new file mode 100644 index 0000000..a0bf88d --- /dev/null +++ b/config/cerulean.yml @@ -0,0 +1,40 @@ +# Report issues on Github ${issue_tracker} +# Discuss, get help or report issues on Discord ${discord} + +# Enables debug logs +# Will worsen your performance, please do not enable if you don't need it! +debug_mode: false + +# Makes advancement checks run less often +# Disable if you have issues with advancements not processing fast enough +enable_skip_ticks: true + +# Cancels advancement check when stack becomes empty (for example, when player throws out the whole stack). +# Injects into InventoryChangeTrigger. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_emptied_stacks: true + +# Cancels advancement check when stack size decreases (for example, when player throws out one item from stack). +# Injects into InventoryChangeTrigger, ItemStack, AbstractContainerMenu. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_decreased_stacks: true + +# Optimizes advancement check for advancements that require multiple items (for example, "Cover me in debris" requires full netherite armor set). +# Injects into InventoryChangeTriggerInstance. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +optimize_multiple_predicate_trigger: true + +# Disables advancement check when you just open any container (for example, chest or backpack). +# Injects into AbstractContainerMenu. +# Disable if you have mixin conflict or problems with any container (and also report on github/discord!). +initialize_inventory_last_slots: true + +# Skips advancement check when you pick up or otherwise increase stack size if this change doesn't pass any advancement threshold. +# For example, dirt stack size increased from 52 to 53, but there's no advancement for getting 53 dirt in your modpack. +optimize_triggers_for_increased_stacks: true + +# When checking each item criterion, first check the count requirement and see if it was fulfilled before. +# For example, there is advancement for getting stone block, any amount. You have 52 dirt, and you pick up one more. There is +# no way you can the get stone advancement from this action, because it requires any amount of item, and you already had some. +# Another example: there is no way you can get the advancement for 64 emerald blocks if you don't have dirt and you pick up 5 dirt. +check_count_before_item_predicate_match: true \ No newline at end of file diff --git a/config/chalk-client.toml b/config/chalk-client.toml new file mode 100644 index 0000000..ce1b92c --- /dev/null +++ b/config/chalk-client.toml @@ -0,0 +1,20 @@ + +#Rotation offsets (in degrees) for each mark. +[SymbolOffsets] + #Range: -360 ~ 360 + CenterRotationOffset = 0 + #Range: -360 ~ 360 + ArrowRotationOffset = 0 + #Range: -360 ~ 360 + CrossRotationOffset = 45 + #Range: -360 ~ 360 + CheckRotationOffset = 45 + #Range: -360 ~ 360 + SkullRotationOffset = 0 + #Range: -360 ~ 360 + HouseRotationOffset = 0 + #Range: -360 ~ 360 + HeartRotationOffset = 0 + #Range: -360 ~ 360 + PickaxeRotationOffset = 0 + diff --git a/config/chalk-common.toml b/config/chalk-common.toml new file mode 100644 index 0000000..61ab475 --- /dev/null +++ b/config/chalk-common.toml @@ -0,0 +1,33 @@ +#How many marks you can draw with a single chalk. Default: 64 +#Range: > 0 +ChalkUses = 64 +#How much light glowing mark produces. Default: 5 +#Range: 0 ~ 15 +GlowingMarkLightLevel = 5 +#Controls whether glowing should be enabled in Chalk Box. +#If disabled - you will not be able to draw glowing marks with chalk box. +#Default: true +ChalkBoxGlowingEnabled = true +#How many glowing uses one glowing item will give. +#Default: 8 +#Range: 1 ~ 9999 +ChalkBoxGlowingItemUses = 8 +#If enabled, Chalks (and Chalk Boxes) will generate in Dungeons, Abandoned Mineshafts, Planes and Savanna villages, Cartographer houses +#Default: true +ShouldGenerateInChests = true + +#Enable/disable symbols and location of the advancement that will unlock that symbol. (Empty = always unlocked) +[Symbols] + SkullEnabled = true + SkullUnlockAdvancement = "chalk:adventure/get_skeleton_skull" + PickaxeEnabled = true + PickaxeUnlockAdvancement = "minecraft:story/iron_tools" + CrossEnabled = true + CrossUnlockAdvancement = "" + HouseEnabled = true + HouseUnlockAdvancement = "chalk:adventure/sleep_three_times_in_one_place" + HeartEnabled = true + HeartUnlockAdvancement = "minecraft:husbandry/tame_an_animal" + CheckEnabled = true + CheckUnlockAdvancement = "" + diff --git a/config/charmofundying-server.toml b/config/charmofundying-server.toml new file mode 100644 index 0000000..8440285 --- /dev/null +++ b/config/charmofundying-server.toml @@ -0,0 +1,9 @@ +#The vertical offset for rendering the totem on the player. +#Range: -100.0 ~ 100.0 +yOffset = 0.0 +#The horizontal offset for rendering the totem on the player. +#Range: -100.0 ~ 100.0 +xOffset = 0.0 +#If enabled, renders the equipped totem on players. +renderTotem = true + diff --git a/config/chat_heads.json5 b/config/chat_heads.json5 new file mode 100644 index 0000000..84a8f0f --- /dev/null +++ b/config/chat_heads.json5 @@ -0,0 +1,10 @@ +{ + "renderPosition": "BEFORE_NAME", + "threeDeeNess": 0.25, + "offsetNonPlayerText": true, + "senderDetection": "UUID_AND_HEURISTIC", + "smartHeuristics": true, + "handleSystemMessages": true, + "drawShadow": true, + "nameAliases": { } +} \ No newline at end of file diff --git a/config/chatnotify.json b/config/chatnotify.json new file mode 100644 index 0000000..4c4729a --- /dev/null +++ b/config/chatnotify.json @@ -0,0 +1,106 @@ +{ + "version": 9, + "debugMode": "NONE", + "notifMode": "ALL_SINGLE_SOUND", + "restyleMode": "ALL_INSTANCES", + "sendMode": "PACKET", + "soundSource": "PLAYERS", + "defaultColor": 16761856, + "defaultSound": { + "version": 1, + "enabled": true, + "id": "block.note_block.bell", + "volume": 1.0, + "pitch": 1.0 + }, + "detectionMode": "HUD_KNOWN_TAGS", + "actionBarDetectionMode": "NONE", + "titleDetectionMode": "NONE", + "subtitleDetectionMode": "NONE", + "senderDetectionMode": "COMBINED", + "checkOwnMessages": true, + "prefixes": [ + "/shout", + "/say", + "/me", + "!" + ], + "notifications": [ + { + "version": 8, + "enabled": true, + "checkOwnMode": "DEFER", + "cooldown": 0, + "inclusionEnabled": true, + "exclusionEnabled": true, + "responseEnabled": true, + "sound": { + "version": 1, + "enabled": true, + "id": "block.note_block.bell", + "volume": 1.0, + "pitch": 1.0 + }, + "textStyle": { + "version": 2, + "doColor": true, + "color": 16761856, + "bold": "DISABLED", + "italic": "DISABLED", + "underlined": "DISABLED", + "strikethrough": "DISABLED", + "obfuscated": "DISABLED" + }, + "replacementMsg": "", + "replacementMsgEnabled": false, + "statusBarMsg": "", + "statusBarMsgEnabled": false, + "titleMsg": "", + "titleMsgEnabled": false, + "subtitleMsg": "", + "subtitleMsgEnabled": false, + "toastMsg": "", + "toastMsgEnabled": false, + "typedMsg": "", + "typedMsgEnabled": false, + "clipboardMsg": "", + "clipboardMsgEnabled": false, + "soundSync": true, + "delay": 0, + "titleFadeIn": 10, + "titleStay": 70, + "titleFadeOut": 20, + "statusBarStay": 60, + "toastStay": 100, + "triggers": [ + { + "version": 4, + "enabled": true, + "string": "Profile name", + "styleTarget": { + "version": 2, + "enabled": false, + "string": "", + "type": "NORMAL" + }, + "type": "NORMAL" + }, + { + "version": 4, + "enabled": true, + "string": "Display name", + "styleTarget": { + "version": 2, + "enabled": false, + "string": "", + "type": "NORMAL" + }, + "type": "NORMAL" + } + ], + "inclusionTriggers": [], + "exclusionTriggers": [], + "responses": [] + } + ] +} \ No newline at end of file diff --git a/config/chefsdelight-common.toml b/config/chefsdelight-common.toml new file mode 100644 index 0000000..3ab3ff7 --- /dev/null +++ b/config/chefsdelight-common.toml @@ -0,0 +1,24 @@ + +#Increase the number to generate more structures. Set 0 to not generate. +["Configs for Chefs Delight"] + #Plains Chef House Config - Default = 5 + "Plains Chef House" = 5 + #Plains Cook House Config - Default = 2 + "Plains Cook House" = 2 + #Taiga Chef House Config - Default = 4 + "Taiga Chef House" = 4 + #Taiga Cook House Config - Default = 3 + "Taiga Cook House" = 3 + #Desert Chef House Config - Default = 5 + "Desert Chef House" = 5 + #Desert Cook House Config - Default = 3 + "Desert Cook House" = 3 + #Savanna Chef House Config - Default = 6 + "Savanna Chef House" = 6 + #Savanna Cook House Config - Default = 2 + "Savanna Cook House" = 2 + #Snowy Chef House Config - Default = 4 + "Snowy Chef House" = 4 + #Snowy Cook House Config - Default = 1 + "Snowy Cook House" = 1 + diff --git a/config/chisel.json b/config/chisel.json new file mode 100644 index 0000000..6b606d7 --- /dev/null +++ b/config/chisel.json @@ -0,0 +1,3 @@ +{ + "compact_chisel_gui": false +} \ No newline at end of file diff --git a/config/chiselsandbits-client.toml b/config/chiselsandbits-client.toml new file mode 100644 index 0000000..17b6f14 --- /dev/null +++ b/config/chiselsandbits-client.toml @@ -0,0 +1,114 @@ + +[settings] + #mod.scena.config.settings.invert-pick-block-behaviour.comment + invert-pick-block-behaviour = false + + [settings.bit-bag] + #mod.scena.config.settings.bit-bag.invert-durability-bar-indication.comment + invert-durability-bar-indication = false + + [settings.placement] + + [settings.placement.render-mode] + #mod.scena.config.settings.placement.render-mode.success.comment + #Allowed Values: GHOST_BLOCK_MODEL, GHOST_BLOCK_MODEL_SOLID_COLOR, WIREFRAME + success = "GHOST_BLOCK_MODEL" + #mod.scena.config.settings.placement.render-mode.failed.comment + #Allowed Values: GHOST_BLOCK_MODEL, GHOST_BLOCK_MODEL_SOLID_COLOR, WIREFRAME + failed = "GHOST_BLOCK_MODEL_SOLID_COLOR" + + [settings.placement.color] + #mod.scena.config.settings.placement.color.success.comment + success = [0.1882352977991104, 0.47058823704719543, 0.7882353067398071, 0.7058823704719543] + #mod.scena.config.settings.placement.color.not-fitting.comment + not-fitting = [0.7176470756530762, 0.2549019753932953, 0.054901961237192154, 0.7058823704719543] + #mod.scena.config.settings.placement.color.missing-bits-or-space.comment + missing-bits-or-space = [1.0, 0.8588235378265381, 0.3450980484485626, 0.7058823704719543] + + [settings.chiseling-previews] + #mod.scena.config.settings.chiseling-previews.renderer.comment + renderer = "chiselsandbits:default" + + [settings.chiseling-previews.default] + + [settings.chiseling-previews.default.colors] + #mod.scena.config.settings.chiseling-previews.default.colors.chiseling.comment + chiseling = [0.8500000238418579, 0.0, 0.0, 0.6499999761581421] + #mod.scena.config.settings.chiseling-previews.default.colors.placement.comment + placement = [0.0, 0.8500000238418579, 0.0, 0.6499999761581421] + + [settings.chiseling-previews.debug] + #mod.scena.config.settings.chiseling-previews.debug.enabled.comment + enabled = false + + [settings.chiseling-previews.debug.mutator] + + [settings.chiseling-previews.debug.mutator.colors] + #mod.scena.config.settings.chiseling-previews.debug.mutator.colors.chiseling.comment + chiseling = [0.0, 0.0, 0.8500000238418579, 0.6499999761581421] + #mod.scena.config.settings.chiseling-previews.debug.mutator.colors.placement.comment + placement = [0.8500000238418579, 0.8500000238418579, 0.0, 0.6499999761581421] + + [settings.selected-tool-mode-icons] + #mod.scena.config.settings.selected-tool-mode-icons.renderer.comment + renderer = "chiselsandbits:group" + + [settings.clipboard] + #mod.scena.config.settings.clipboard.size.comment + #Range: 0 ~ 64 + size = 64 + #mod.scena.config.settings.clipboard.add-broken-blocks.comment + add-broken-blocks = true + #mod.scena.config.settings.clipboard.add-picked-blocks.comment + add-picked-blocks = true + + [settings.patterns] + #mod.scena.config.settings.patterns.export-path.comment + export-path = "./chiselsandbits/patterns" + + [settings.warnings] + #mod.scena.config.settings.warnings.show-cool-down-error.comment + show-cool-down-error = false + + [settings.interactions] + #mod.scena.config.settings.interactions.scrolling-changes-mode.comment + scrolling-changes-mode = true + +[performance] + + [performance.caches] + + [performance.caches.sizes] + #mod.scena.config.performance.caches.sizes.bit-storage-content-models.comment + #Range: 0 ~ 9223372036854775807 + bit-storage-content-models = 100 + #mod.scena.config.performance.caches.sizes.block-models.comment + #Range: 3500 ~ 20000 + block-models = 3500 + #mod.scena.config.performance.caches.sizes.block-faces.comment + #Range: 350000 ~ 2000000 + block-faces = 1000000 + #mod.scena.config.performance.caches.sizes.cull-testing.comment + #Range: 3500 ~ 200000 + cull-testing = 3500 + #mod.scena.config.performance.caches.sizes.stack-models.comment + #Range: 0 ~ 9223372036854775807 + stack-models = 100 + + [performance.lighting] + #mod.scena.config.performance.lighting.extract-lighting-values-from-faces.comment + extract-lighting-values-from-faces = true + #mod.scena.config.performance.lighting.extract-lighting-values-from-blockstates.comment + extract-lighting-values-from-blockstates = false + + [performance.model-building] + #mod.scena.config.performance.model-building.thread-count.comment + #Range: 1 ~ 16 + thread-count = 8 + +[gui] + + [gui.radial-menu] + #mod.scena.config.gui.radial-menu.display-mouse-indicator.comment + display-mouse-indicator = false + diff --git a/config/chiselsandbits-common.toml b/config/chiselsandbits-common.toml new file mode 100644 index 0000000..c7dd76e --- /dev/null +++ b/config/chiselsandbits-common.toml @@ -0,0 +1,22 @@ + +[help] + #mod.scena.config.help.enabled-in-tooltips.comment + enabled-in-tooltips = true + +[performance] + + [performance.caches] + + [performance.caches.sizes] + #mod.scena.config.performance.caches.sizes.collision-boxes.comment + #Range: 0 ~ 9223372036854775807 + collision-boxes = 10000 + #mod.scena.config.performance.caches.sizes.class-metadata.comment + #Range: 0 ~ 9223372036854775807 + class-metadata = 10000 + + [performance.saving] + #mod.scena.config.performance.saving.thread-count.comment + #Range: 1 ~ 16 + thread-count = 8 + diff --git a/config/chloride-client.json b/config/chloride-client.json new file mode 100644 index 0000000..733ba1f --- /dev/null +++ b/config/chloride-client.json @@ -0,0 +1,70 @@ +{ + "modpackMode": false, + "fullScreen": "WINDOWED", + "fpsDisplayMode": "ADVANCED", + "fpsDisplayAlign": "LEFT", + "fpsDisplayVAlign": "TOP", + "fpsDisplaySystemMode": "OFF", + "fpsDisplayMargin": 12, + "fpsDisplayVMargin": 12, + "fpsDisplayShadow": false, + "fog": true, + "blueBand": true, + "customFog": true, + "fogStart": 0, + "fogEnd": 192, + "fogShape": "CYLINDER", + "cloudsHeight": 192, + "entityNametagRendering": true, + "playerNametagRendering": true, + "itemNametagRendering": true, + "chunkFadeSpeed": "SLOW", + "darknessMode": "VANILLA", + "darknessOnFullBrightBiomes": false, + "darknessOnOverworld": true, + "darknessOnNether": false, + "darknessNetherFogBright": 0.5, + "darknessOnEnd": false, + "darknessEndFogBright": 0.5, + "darknessByDefault": false, + "darknessDimensionWhiteList": [], + "darknessOnNoSkyLight": false, + "darknessBlockLightOnly": false, + "darknessAffectedByMoonPhase": true, + "darknessNewMoonBright": 0.0, + "darknessFullMoonBright": 0.25, + "hideJREMI": false, + "hideJREMIHint": false, + "fontShadows": true, + "leavesCulling": "OFF", + "fastChests": false, + "fastBeds": false, + "rainParticles": true, + "rainDropParticles": true, + "crackingBlockParticles": true, + "destroyedBlockParticles": true, + "disabledParticles": [], + "tileEntityDistanceCulling": true, + "tileEntityCullingDistanceX": 4096, + "tileEntityCullingDistanceY": 32, + "entityDistanceCulling": true, + "entityCullingDistanceX": 4096, + "entityCullingDistanceY": 32, + "monsterDistanceCulling": false, + "monsterCullingDistanceX": 16384, + "monsterCullingDistanceY": 64, + "entityWhitelist": [ + "minecraft:ghast", + "minecraft:ender_dragon", + "iceandfire:all", + "create:all" + ], + "monsterWhitelist": [], + "tileEntityWhitelist": [ + "waterframes:all" + ], + "borderlessAttachModeF11": "ATTACH", + "fastLanguageReload": true, + "enableZoom": true, + "maxZoom": 50.0 +} \ No newline at end of file diff --git a/config/chunksending.json b/config/chunksending.json new file mode 100644 index 0000000..8afe89b --- /dev/null +++ b/config/chunksending.json @@ -0,0 +1,10 @@ +{ + "maxChunksPerTick": { + "desc:": "Maximum amount of chunks sent per tick to a player, increases dynamically with size of the backlog", + "maxChunksPerTick": 5 + }, + "debugLogging": { + "desc:": "Enable debug logging to show the amount of chunks sent/queued", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/citadel-common.toml b/config/citadel-common.toml new file mode 100644 index 0000000..6753f79 --- /dev/null +++ b/config/citadel-common.toml @@ -0,0 +1,12 @@ + +[general] + #True if citadel tracks entity properties(freezing, stone mobs, etc) on server. Turn this to false to solve some server lag, may break some stuff. + "Track Entities" = true + #True to skip warnings about using datapacks. + "Skip Datapack Warnings" = true + #Multiplies the count of entities spawned by this number. 0 = no entites added on chunk gen, 2 = twice as many entities added on chunk gen. Useful for many mods that add a lot of creatures, namely animals, to the spawn lists. + #Range: 0.0 ~ 100000.0 + chunkGenSpawnModifier = 1.0 + #True to if april fools content can display on april fools. + "April Fools Content" = true + diff --git a/config/citresewn.json b/config/citresewn.json new file mode 100644 index 0000000..28a240a --- /dev/null +++ b/config/citresewn.json @@ -0,0 +1,7 @@ +{ + "enabled": true, + "mute_errors": false, + "mute_warns": false, + "citenchantment_scroll_multiplier": 8.0, + "cache_ms": 50 +} \ No newline at end of file diff --git a/config/clickadv-common.toml b/config/clickadv-common.toml new file mode 100644 index 0000000..525af62 --- /dev/null +++ b/config/clickadv-common.toml @@ -0,0 +1,5 @@ + +["Config category"] + #By default vanilla only displays advancements in chat which get broadcasted to all online players,this setting turns on showing all advancements achieved in chat instead. That way you can findthe advancements you got easier/see better which you get. Some of these may have no actual text though because the advancement itself doesnt have any, e.g. Categories are advancements too. default = true + showAllInLocalChat = true + diff --git a/config/clickadv.json b/config/clickadv.json new file mode 100644 index 0000000..8b54e67 --- /dev/null +++ b/config/clickadv.json @@ -0,0 +1,6 @@ +{ + "showAllInLocalChat": { + "desc:": " By default vanilla only displays advancements in chat which get broadcasted to all online players.Enabling this setting shows all advancements earned in chat.Some of these may be lacking text when the advancement itself does not have any, e.g. Categories are advancements too. default: true", + "showAllInLocalChat": true + } +} \ No newline at end of file diff --git a/config/clienttweaks-common.toml b/config/clienttweaks-common.toml new file mode 100644 index 0000000..382302a --- /dev/null +++ b/config/clienttweaks-common.toml @@ -0,0 +1,61 @@ + +[customization] + #Items that count as torches for the offhand-torch tweak options. + torchItems = ["minecraft:torch", "minecraft:soul_torch", "tconstruct:stone_torch"] + #Items that are allowed to place torches from the offhand if offhandTorchWithToolOnly is enabled. + torchTools = ["minecraft:wooden_pickaxe", "minecraft:stone_pickaxe", "minecraft:iron_pickaxe", "minecraft:golden_pickaxe", "minecraft:diamond_pickaxe", "minecraft:netherite_pickaxe", "tconstruct:pickaxe", "tconstruct:hammer"] + #Items that count as weapons for the offhand-shield hiding tweak options. + shieldWeapons = ["tetra:modular_sword"] + #Items that count as shields for the offhand-shield hiding tweak options. + shieldItems = ["basicshields:wooden_shield", "basicshields:golden_shield", "basicshields:diamond_shield", "basicshields:netherite_shield"] + #Items that count as fireworks for the offhand-firework tweak options. + fireworkItems = ["minecraft:firework_rocket"] + #Blocks that should be protected in the prevent accidental mining tweak. + fragileBlocks = ["minecraft:budding_amethyst", "minecraft:small_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:large_amethyst_bud"] + #Items that count as food for the offhand-torch and -use tweak options. + foodItems = ["supplementaries:lunch_basket"] + +[tweaks] + #This option will let you climb ladders automatically by just looking upwards, rather than requiring a key to be held down. + autoClimbLadder = false + #This prevents the last torch in the offhand from being placed. + doNotUseLastTorch = false + #This prevents the last durability from being used up. + doNotUseLastMending = false + #This option will hide your offhand item. It can be toggled via an optional key binding. + hideOffhandItem = false + #This option will hide your own potion particle effects for your client (other players will still see them). + hideOwnParticleEffects = false + #This option will hide your shield unless you are holding a weapon. + hideShieldUnlessHoldingWeapon = true + #This prevents torches from being placed from your offhand at all. + noOffhandTorchAtAll = false + #This prevents torches from being placed from your offhand if you have a block in your main hand. + noOffhandTorchWithBlock = true + #This prevents torches from being placed from your offhand if you have food in your main hand. + noOffhandTorchWithFood = true + #This prevents torches from being placed from your offhand if you have an empty main hand. + noOffhandTorchWithEmptyHand = false + #This prevents items from being used from your offhand if you have food in your main hand. + noOffhandUseWithFood = false + #This restricts torches to be placed from the offhand only when you're holding a tool in your main hand. + offhandTorchWithToolOnly = false + #This prevents fireworks from being launched from your offhand if you are wearing an Elytra, unless you're flying. + noOffhandFireworksWithElytra = true + #This option will disable step assist added by other mods. + disableStepAssist = false + #This option will disable log stripping. + disableLogStripping = false + #This option will disable paving when holding a block in your offhand. + disablePavingWithBlockInOffhand = true + #This adds back the master volume slider to the options screen. Saves you a click! + masterVolumeSlider = true + #This adds back the music volume slider to the options screen. Saves you a click! + musicVolumeSlider = true + #This option will make iron fences and glass panes have a bigger hitbox while placing them, making it easier to aim. + paneBuildingSupport = true + #This option makes the recipe book not shift the inventory when opened. Works best with smaller GUI scales / bigger resolutions. + noRecipeBookShifting = false + #Prevents accidental mining of certain fragile blocks like budding amethysts. + preventAccidentalMining = false + diff --git a/config/climbladdersfast.json5 b/config/climbladdersfast.json5 new file mode 100644 index 0000000..f2c3694 --- /dev/null +++ b/config/climbladdersfast.json5 @@ -0,0 +1,14 @@ +{ + // True to enable ClimbLaddersFast, false to disable. This is also toggled by the toggle keybind in controls. [default = true] + "enabled": true, + // Speed for climbing up ladders [default = 0.4] + "climbUpSpeed": 0.4, + // Speed for climbing down ladders [default = 0.4] + "climbDownSpeed": 0.4, + // True to disable faster climbing on Scaffolding [default = false] + "disableScaffoldingFastClimbing": false, + // True to disable collisions with Scaffolding, allowing fast climbing down scaffolding just like ladders [default = true] + "disableScaffoldingCollision": true, + // True to disable faster climbing on vines [default = false] + "disableVinesFastClimbing": false +} \ No newline at end of file diff --git a/config/cofh_core-client.toml b/config/cofh_core-client.toml new file mode 100644 index 0000000..37f8619 --- /dev/null +++ b/config/cofh_core-client.toml @@ -0,0 +1,17 @@ + +[Tooltips] + #If TRUE, Enchantment descriptions will be added to the tooltip for Enchanted Books containing only a single enchantment. + "Show Enchantment Descriptions" = true + #If TRUE, Items will be associated with various keywords which assist with searching in various menus such as JEI. + "Show Item Descriptions" = true + #If TRUE and Advanced Tooltips are enabled (F3+H), Tags will be will be added to item tooltips if possible. + "Show Item Tags" = true + #If TRUE, CoFH Items will always show full details (charge state, etc.) and will not require Shift to be held down. + "Always Show Item Details" = false + #If TRUE, CoFH Items will display a message prompting to hold Shift to see full details (charge state, etc.). This does not change the behavior, only if the informational message should display. + "Show 'Hold Shift for Details' Message" = true + #If TRUE, certain CoFH particles will dynamically emit light. + "Dynamically Light Particles" = true + #If TRUE, certain particles will use a stylized graphics pipeline on Fabulous graphics. + "Stylized Graphics" = true + diff --git a/config/cofh_core-common.toml b/config/cofh_core-common.toml new file mode 100644 index 0000000..4193f07 --- /dev/null +++ b/config/cofh_core-common.toml @@ -0,0 +1,19 @@ + +[Gameplay] + #If TRUE, dismantled blocks will be placed in the dismantling player's inventory if possible. + "Return Dismantle Drops" = false + + [Gameplay.Fishing] + #If TRUE, Fishing will cause exhaustion. + "Fishing Exhaustion" = false + #This option sets the amount of exhaustion caused by fishing, if enabled. + #Range: 0.0 ~ 10.0 + "Fishing Exhaustion Amount" = 0.125 + + [Gameplay.World] + #If TRUE, Sapling growth will be slowed by a configurable factor. + "Sapling Growth Reduction" = false + #This option sets the growth factor for saplings - they will only grow 1 in N times. + #Range: > 1 + "Sapling Growth Reduction Factor" = 4 + diff --git a/config/collective.json5 b/config/collective.json5 new file mode 100644 index 0000000..dd3428c --- /dev/null +++ b/config/collective.json5 @@ -0,0 +1,26 @@ +{ + // Whether Collective should show a message in the console if a dependent mod has an update available. Update checks are optional and async. + "enableUpdateChecker": true, + // When enabled, transfer the held items and armour from replaced entities by any of the Entity Spawn mods which depend on Collective. + "transferItemsBetweenReplacedEntities": true, + // The amount of times Collective loops through possible mob drops to get them all procedurally. Drops are only generated when a dependent mod uses them. Lowering this can increase world load time but decrease accuracy. + // min: 1, max: 500 + "loopsAmountUsedToGetAllEntityDrops": 100, + // The delay of the is-there-a-block-around-check around entities in ms. Used in mods which depends on a specific blockstate in the world. Increasing this number can increase TPS if needed. + // min: 0, max: 3600000 + "findABlockCheckAroundEntitiesDelayMs": 30000, + // Enables pets for Patrons. Will be added in a future release. + "enablePatronPets": true, + // Whether Collective should attempt to download translations if the client language is set to something other than English. Uses files from https://github.com/Serilum/.translations, downloaded via https://translations.serilum.com/. Hosted via CloudFlare Pages. + "downloadNonEnglishTranslations": true, + // On a server, sends connecting players without Collective a resource pack so custom item names from server-side Serilum mods show up in their own language. Off by default; without it they see the server language instead (see serverLanguage). + "pushTranslationResourcePack": false, + // Marks the resource pack as required, so an accidental decline only kicks the player and asks again next join instead of being remembered for good. Turn off to make it optional. + "requireTranslationResourcePack": true, + // The language Serilum mod text shows in for players without Collective who aren't sent the resource pack. Uses locale codes like en_us or de_de. + "serverLanguage": "en_us", + // How custom item names show for players without Collective when the resource pack is off. 'auto' copies the first player to join and remembers it; 'server' always uses the server language; 'client' uses each player's own language, but those without Collective then see raw keys. + "itemNameTranslationMode": "auto", + // Used in my local development flow. Has no effect in production, only when ran from an IDE with Collective installed. + "updateMinecraftWindowTitleInDevMode": false +} \ No newline at end of file diff --git a/config/colossalchests-common.toml b/config/colossalchests-common.toml new file mode 100644 index 0000000..e16c544 --- /dev/null +++ b/config/colossalchests-common.toml @@ -0,0 +1,53 @@ + +[general] + + [general.general] + #Always create full creative-mode chests when formed. Should not be used in survival worlds! + creativeChests = false + #If the interface input overlay should always be rendered on chests. + alwaysShowInterfaceOverlay = true + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorDiamond = 4.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorObsidian = 4.0 + #If items should be ejected from the chests if one of the structure blocks are removed. + ejectItemsOnDestroy = false + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorIron = 2.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorWood = 1.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorCopper = 1.666 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorGold = 3.0 + #If the higher tier metal variants (including diamond and obsidian) can be crafted. + metalVariants = true + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorSilver = 2.666 + #If the lid should open when accessing the chest GUI. + visuallyOpen = true + + [general.colossal_chest] + #If the chest should visually open when someone uses it. + chestAnimation = true + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #Maximum buffer byte size for adaptive inventory slots fragmentation. + maxPacketBufferSize = 20000 + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[machine] + + [machine.colossal_chest] + #The maximum size a colossal chest can have. + maxSize = 20 + diff --git a/config/comforts-server.toml b/config/comforts-server.toml new file mode 100644 index 0000000..29aef51 --- /dev/null +++ b/config/comforts-server.toml @@ -0,0 +1,39 @@ +#If enabled, players automatically attempt to use sleeping bags when placed. +autoUse = true +#If enabled, players cannot sleep again for a period of time after sleeping. +restrictSleeping = false +#If restrictSleeping is true, this value will determine the length of wait time (larger numbers sleep sooner). +#Range: 1.0 ~ 20.0 +restMultiplier = 2.0 +#The time of day that hammocks can be used. +#Allowed Values: NONE, DAY, NIGHT, DAY_OR_NIGHT +hammockUse = "DAY" +#The time of day that sleeping bags can be used. +#Allowed Values: NONE, DAY, NIGHT, DAY_OR_NIGHT +sleepingBagUse = "NIGHT" +#What percentage of players must sleep to skip the day. +#A percentage value of 0 will allow the day to be skipped by just 1 player, and a percentage value of 100 will require all players to sleep before skipping the day. +#A value of less than 0 will default to the playerSleepingPercentage game rule. +# +#Range: -1 ~ 100 +daySleepingPercentage = -1 +#The amount of time, in ticks, to add or remove from the new time after sleeping through a night. +#Range: -2000 ~ 2000 +dayWakeTimeOffset = 0 +#The amount of time, in ticks, to add or remove from the new time after sleeping through a day. +#Range: -2000 ~ 2000 +nightWakeTimeOffset = 0 +#If enabled, attempting to sleep in hammocks stops phantoms from spawning. +hammocksStopPhantoms = true +#If enabled, attempting to sleep in sleeping bags stops phantoms from spawning. +sleepingBagsStopPhantoms = true +#The percentage chance that a sleeping bag will break upon use. +#Range: 0 ~ 100 +sleepingBagBreakChance = 0 +#The value that will be multiplied by a player's luck then added to sleepingBagBreakChance. +#Range: -1.0 ~ 1.0 +sleepingBagBreakChanceLuckMultiplier = 0.0 +#The status effects to apply to players after using the sleeping bag. +#Format: effect;duration(secs);power +sleepingBagEffects = [] + diff --git a/config/commoncapabilities-common.toml b/config/commoncapabilities-common.toml new file mode 100644 index 0000000..ac3db3c --- /dev/null +++ b/config/commoncapabilities-common.toml @@ -0,0 +1,19 @@ + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[machine] + + [machine.general] + #The NBT Paths that should be filtered away when checking equality. + ignoreNbtPathsForEqualityFilters = ["$.ForgeCaps[\"astralsorcery:cap_item_amulet_holder\"]", "$.binding", "$.energy"] + diff --git a/config/compactmachines-common.toml b/config/compactmachines-common.toml new file mode 100644 index 0000000..732782b --- /dev/null +++ b/config/compactmachines-common.toml @@ -0,0 +1,6 @@ + +#Recipes and Integrations +[recipes] + #Enable vanilla-style recipes. + vanillaRecipes = true + diff --git a/config/compressedcreativity-client.toml b/config/compressedcreativity-client.toml new file mode 100644 index 0000000..f5646ad --- /dev/null +++ b/config/compressedcreativity-client.toml @@ -0,0 +1,15 @@ + +#Upgrades settings +[upgrades] + + #Mechanical visor + [upgrades.mechanical_visor] + #If Block Tracker should also check if actual tooltip is provided + block_tracker_advanced_check = false + #Tooltip mode + #Allowed Values: CLASSIC, WIDGET, BOTH, NONE + tooltip_mode = "CLASSIC" + #Block Tracker mode + #Allowed Values: ALL, GOGGLES, TOOLTIP, MIN + block_tracker_mode = "ALL" + diff --git a/config/compressiumblocks.json b/config/compressiumblocks.json new file mode 100644 index 0000000..830caec --- /dev/null +++ b/config/compressiumblocks.json @@ -0,0 +1,227 @@ +[ + { + "name": "cobblestone", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:cobblestone", + "particlePath": "minecraft:block/cobblestone", + "baseBlockModel": "minecraft:block/cobblestone", + "type": "block" + }, + { + "name": "stone", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:stone", + "particlePath": "minecraft:block/stone", + "baseBlockModel": "minecraft:block/stone", + "type": "block" + }, + { + "name": "sand", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:sand", + "particlePath": "minecraft:block/sand", + "baseBlockModel": "minecraft:block/sand", + "type": "falling" + }, + { + "name": "gravel", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:gravel", + "particlePath": "minecraft:block/gravel", + "baseBlockModel": "minecraft:block/gravel", + "type": "falling" + }, + { + "name": "netherrack", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:netherrack", + "particlePath": "minecraft:block/netherrack", + "baseBlockModel": "minecraft:block/netherrack", + "type": "nether_rack" + }, + { + "name": "snow", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:snow_block", + "particlePath": "minecraft:block/snow", + "baseBlockModel": "minecraft:block/snow_block", + "type": "powered" + }, + { + "name": "soulsand", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:soul_sand", + "particlePath": "minecraft:block/soul_sand", + "baseBlockModel": "minecraft:block/soul_sand", + "type": "soul_sand" + }, + { + "name": "iron", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:iron_block", + "particlePath": "minecraft:block/iron_block", + "baseBlockModel": "minecraft:block/iron_block", + "type": "block" + }, + { + "name": "gold", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:gold_block", + "particlePath": "minecraft:block/gold_block", + "baseBlockModel": "minecraft:block/gold_block", + "type": "block" + }, + { + "name": "diamond", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:diamond_block", + "particlePath": "minecraft:block/diamond_block", + "baseBlockModel": "minecraft:block/diamond_block", + "type": "block" + }, + { + "name": "emerald", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:emerald_block", + "particlePath": "minecraft:block/emerald_block", + "baseBlockModel": "minecraft:block/emerald_block", + "type": "block" + }, + { + "name": "clay", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:clay", + "particlePath": "minecraft:block/clay", + "baseBlockModel": "minecraft:block/clay", + "type": "block" + }, + { + "name": "netherite", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:netherite_block", + "particlePath": "minecraft:block/netherite_block", + "baseBlockModel": "minecraft:block/netherite_block", + "type": "block" + }, + { + "name": "dirt", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:dirt", + "particlePath": "minecraft:block/dirt", + "baseBlockModel": "minecraft:block/dirt", + "type": "block" + }, + { + "name": "coal", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:coal_block", + "particlePath": "minecraft:block/coal_block", + "baseBlockModel": "minecraft:block/coal_block", + "type": "block" + }, + { + "name": "redsand", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:red_sand", + "particlePath": "minecraft:block/red_sand", + "baseBlockModel": "minecraft:block/red_sand", + "type": "falling" + }, + { + "name": "endstone", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:end_stone", + "particlePath": "minecraft:block/end_stone", + "baseBlockModel": "minecraft:block/end_stone", + "type": "block" + }, + { + "name": "obsidian", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:obsidian", + "particlePath": "minecraft:block/obsidian", + "baseBlockModel": "minecraft:block/obsidian", + "type": "block" + }, + { + "name": "lapis", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:lapis_block", + "particlePath": "minecraft:block/lapis_block", + "baseBlockModel": "minecraft:block/lapis_block", + "type": "block" + }, + { + "name": "quartz", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:quartz_block", + "particlePath": "minecraft:block/quartz_block_side", + "baseBlockModel": "minecraft:block/quartz_block", + "type": "block" + }, + { + "name": "redstone", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:redstone_block", + "particlePath": "minecraft:block/redstone_block", + "baseBlockModel": "minecraft:block/redstone_block", + "type": "powered" + }, + { + "name": "andesite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:andesite", + "particlePath": "minecraft:block/andesite", + "baseBlockModel": "minecraft:block/andesite", + "type": "block" + }, + { + "name": "diorite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:diorite", + "particlePath": "minecraft:block/diorite", + "baseBlockModel": "minecraft:block/diorite", + "type": "block" + }, + { + "name": "copper", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:copper_block", + "particlePath": "minecraft:block/copper_block", + "baseBlockModel": "minecraft:block/copper_block", + "type": "block" + }, + { + "name": "granite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:granite", + "particlePath": "minecraft:block/granite", + "baseBlockModel": "minecraft:block/granite", + "type": "block" + } +] \ No newline at end of file diff --git a/config/computercraft-client.toml b/config/computercraft-client.toml new file mode 100644 index 0000000..edc87f0 --- /dev/null +++ b/config/computercraft-client.toml @@ -0,0 +1,13 @@ +#The renderer to use for monitors. Generally this should be kept at "best" - if +#monitors have performance issues, you may wish to experiment with alternative +#renderers. +#Allowed Values: BEST, TBO, VBO +monitor_renderer = "BEST" +#The maximum distance monitors will render at. This defaults to the standard tile +#entity limit, but may be extended if you wish to build larger monitors. +#Range: 16 ~ 1024 +monitor_distance = 64 +#The delay in seconds after which we'll notify about unhandled imports. Set to 0 to disable. +#Range: 0 ~ 60 +upload_nag_delay = 5 + diff --git a/config/configured-client.toml b/config/configured-client.toml new file mode 100644 index 0000000..8ddd30d --- /dev/null +++ b/config/configured-client.toml @@ -0,0 +1,4 @@ +forceConfiguredMenu = false +changedFormatting = "ITALIC" +includeFoldersInSearch = false + diff --git a/config/connectivity.json b/config/connectivity.json new file mode 100644 index 0000000..dc6f58b --- /dev/null +++ b/config/connectivity.json @@ -0,0 +1,40 @@ +{ + "disableLoginLimits": { + "desc:": "Should login packet size limits be disabled? Error:(IOException(\"Payload may not be larger than 1048576 bytes\")) default:true", + "disableLoginLimits": true + }, + "disablePacketLimits": { + "desc:": "Should play packet size limits be disabled? Error:(Badly compressed packet) default:true", + "disablePacketLimits": true + }, + "disableChatVerificationDisconnect": { + "desc:": "(Clientside) Disables players disconnecting on chat message verification problems,(enable debugPrintMessages to see the message causing issues). default:true", + "disableChatVerificationDisconnect": true + }, + "debugPrintMessages": { + "desc:": "Enable addition debug logging for networking errors. default:false", + "debugPrintMessages": false + }, + "logintimeout": { + "desc:": "Set the max login timeout in seconds. default = 120", + "logintimeout": 120 + }, + "disconnectTimeout": { + "desc:": "Set the ingame disconnect timeout for disconnecting players. Default = 60sec", + "disconnectTimeout": 60 + }, + "packetHistoryMinutes": { + "desc:": "Set the amount of minutes for which network packet history data is saved. Default = 5 minutes", + "packetHistoryMinutes": 5 + }, + "malformedtraffic": { + "desc:": "Detection and blocking of malformed and/or malicious traffic", + "enabled": true, + "proxies:": "Add your proxy IP to the whitelist below, if you're using one(e.g. velocity) to avoid blocking the proxy's ip. Format: [\"127.0.0.1\", \"128.0.01\"] without the \\ ", + "proxywhitelist": [] + }, + "showFullResourceLocationException": { + "desc:": "Enable to see the full log output for all resource location exceptions. Default = false", + "showFullResourceLocationException": false + } +} \ No newline at end of file diff --git a/config/connector.json b/config/connector.json new file mode 100644 index 0000000..bc736bc --- /dev/null +++ b/config/connector.json @@ -0,0 +1,8 @@ +{ + "version": 1, + "hiddenMods": [], + "globalModAliases": { + "cloth_config": "cloth-config2", + "playeranimator": "player-animator" + } +} diff --git a/config/constructionwand-client.toml b/config/constructionwand-client.toml new file mode 100644 index 0000000..dbe89c4 --- /dev/null +++ b/config/constructionwand-client.toml @@ -0,0 +1,16 @@ + +#This is the Client config for ConstructionWand. +#If you're not familiar with Forge's new split client/server config, let me explain: +#Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. +#Mod behavior is configured in the Server config, which is world-specific and thus located +#in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all +#new worlds, copy the config files in the /defaultconfigs folder. +[keys] + #Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html + #Range: 0 ~ 350 + OptKey = 341 + #Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock + ShiftOpt = false + #Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI + ShiftOptGUI = true + diff --git a/config/cookingforblockheads-common.toml b/config/cookingforblockheads-common.toml new file mode 100644 index 0000000..5b61eda --- /dev/null +++ b/config/cookingforblockheads-common.toml @@ -0,0 +1,23 @@ +#Set this to true if you'd like the oven to only accept cooking oil as fuel (requires Pam's Harvestcraft) +ovenRequiresCookingOil = false +#Set to false if you don't want ingredients to be marked with a special icon in the recipe book. +showIngredientIcon = true +#The amount of milk the cow in a jar generates per tick. +cowJarMilkPerTick = 1 +#Ex Compressum compatibility. Multiplier applied to the milk per tick for Compressed Cow in a Jar. +compressedCowJarMilkMultiplier = 9.0 +#Set this to true if you'd like the sink to require water to be piped in, instead of providing infinite of it. +sinkRequiresWater = false +#Set this to true if you'd like to disallow automation of the oven (pipes and such won't be able to insert/extract) +disallowOvenAutomation = false +#The cooking time multiplier for the cooking oven. Higher values means it will take longer. +ovenCookTimeMultiplier = 1.0 +#Toasting toasted bread again will turn into charcoal (only if no other mod adding toast is present). Set to false to disable. +allowVeryToastedBread = true +#If true, a cow can be squished into a Milk Jar by dropping an anvil on top. +cowJarEnabled = true +#Enabling this will make the kitchen counters have twice as much inventory space. +largeCounters = false +#The fuel multiplier for the cooking oven. Higher values means fuel lasts longer, 1.0 is furnace default. +ovenFuelTimeMultiplier = 0.33000001311302185 + diff --git a/config/corail_recycler-common.toml b/config/corail_recycler-common.toml new file mode 100644 index 0000000..b217885 --- /dev/null +++ b/config/corail_recycler-common.toml @@ -0,0 +1,19 @@ + +[General] + #only_user_recipes [false/true|default:false] + only_user_recipes = false + #recycle_magic_item [false/true|default:true] + recycle_magic_item = true + #recycle_enchanted_book [false/true|default:true] + recycle_enchanted_book = true + #chance_loss [0..100|default:0] + #Range: 0 ~ 100 + chance_loss = 0 + #allow_sound [false/true|default:true] + allow_sound = true + #time_to_recycle [60..10000|default:100] + #Range: 60 ~ 10000 + time_to_recycle = 100 + #Automation stops after a delay without processing [false/true|default:true] + permanent_automation = true + diff --git a/config/corail_recycler-server.toml b/config/corail_recycler-server.toml new file mode 100644 index 0000000..b30e00a --- /dev/null +++ b/config/corail_recycler-server.toml @@ -0,0 +1,7 @@ + +[General] + #allow_automation [false/true|default:true] + Allow_automation = true + #The button discover doesn't require permission 2 [false/true|default:false] + permanent_discover_button = false + diff --git a/config/corgilib/announcement_config.json5 b/config/corgilib/announcement_config.json5 new file mode 100644 index 0000000..e0dd54f --- /dev/null +++ b/config/corgilib/announcement_config.json5 @@ -0,0 +1,7 @@ +{ + /* This has 2 acceptable values: [CHAT, WIDGET] + * CHAT - Will post a message within 5 minutes to a user's chat once they've been in game for 5 minutes. Will no longer show after the user presses dismiss. + * WIDGET - Displays a widget on screen with the announcement on all screens until the widget is dismissed. + */ + "announcement_delivery": "WIDGET" +} \ No newline at end of file diff --git a/config/corpsecurioscompat-common.toml b/config/corpsecurioscompat-common.toml new file mode 100644 index 0000000..fd09d9a --- /dev/null +++ b/config/corpsecurioscompat-common.toml @@ -0,0 +1,8 @@ + +#General settings +[general] + #Items that should not be transferred to curios slots (format: 'modid:item') + blacklisted_items = [] + #Whether cursed items should be transferred back to curios slots (true = transfer cursed items, false = don't transfer) + transfer_cursed_items = false + diff --git a/config/cosmeticarmorreworked-client.toml b/config/cosmeticarmorreworked-client.toml new file mode 100644 index 0000000..1bc2704 --- /dev/null +++ b/config/cosmeticarmorreworked-client.toml @@ -0,0 +1,28 @@ + +#These settings only affects client +[Client] + #Whether or not to hide the button for opening CosmeticArmorInventory + CosArmorGuiButton_Hidden = false + #The horizontal pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorGuiButton_Left = 65 + #The vertical pixel distance from the origin point of player inventoy gui + #Range: > -2147483648 + CosArmorGuiButton_Top = 67 + #Whether or not to hide the button for toggling the mod temporarily on client side + CosArmorToggleButton_Hidden = false + #The horizontal pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorToggleButton_Left = 59 + #The vertical pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorToggleButton_Top = 72 + #Whether or not to hide the button for opening CosmeticArmorInventory in CreativeInventory + CosArmorCreativeGuiButton_Hidden = false + #The horizontal pixel distance from the origin point of creative inventory gui + #Range: > -2147483648 + CosArmorCreativeGuiButton_Left = 95 + #The vertical pixel distance from the origin point of creative inventoy gui + #Range: > -2147483648 + CosArmorCreativeGuiButton_Top = 38 + diff --git a/config/cosmeticarmorreworked-common.toml b/config/cosmeticarmorreworked-common.toml new file mode 100644 index 0000000..92a472f --- /dev/null +++ b/config/cosmeticarmorreworked-common.toml @@ -0,0 +1,10 @@ + +#These settings affects both server and client +[Common] + #Whether or not to keep items in cosmetic armor slots in the event of player death + CosArmorKeepThroughDeath = false + #Whether or not to disable the RecipeBook in the CosmeticArmorInventory + CosArmorDisableRecipeBook = false + #Whether or not to disable the coshat command + CosArmorDisableCosHatCommand = false + diff --git a/config/craftingstation-client.toml b/config/craftingstation-client.toml new file mode 100644 index 0000000..a434043 --- /dev/null +++ b/config/craftingstation-client.toml @@ -0,0 +1,5 @@ + +[general] + #Display Items in Table? + "display items in table" = true + diff --git a/config/craftingtweaks-common.toml b/config/craftingtweaks-common.toml new file mode 100644 index 0000000..e820bf4 --- /dev/null +++ b/config/craftingtweaks-common.toml @@ -0,0 +1,20 @@ + +[common] + #Set this to false if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server while in the player inventory) + compressRequiresCraftingGrid = true + #A list of modid:name entries that will not be crafted by the compress key. + compressDenylist = ["minecraft:sandstone", "minecraft:iron_trapdoor"] + +[client] + #If set to true, right-clicking the result slot in a crafting table will craft a full stack. + rightClickCraftsStack = true + #We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it. + hideVanillaCraftingGuide = false + #Use an alternative client-side balancing algorithm. It might be faster, or it might be slower, depending on the input. Try it if regular client-side balancing is causing lagspikes. + hyperOptimizedClientsideBalancing = false + #Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. Set to 'DISABLED' to disable completely. + #Allowed Values: DEFAULT, BUTTONS, HOTKEYS, DISABLED + mode = "DEFAULT" + #Add mod ids here of mods that you wish to disable Crafting Tweaks support for. + disabledAddons = [] + diff --git a/config/crawlondemand.json b/config/crawlondemand.json new file mode 100644 index 0000000..4f6a571 --- /dev/null +++ b/config/crawlondemand.json @@ -0,0 +1,4 @@ +{ + "onlyAllowCrawlingOnGround": false, + "hideNameTagsWhileCrawling": true +} \ No newline at end of file diff --git a/config/create-client.toml b/config/create-client.toml new file mode 100644 index 0000000..2f3ed10 --- /dev/null +++ b/config/create-client.toml @@ -0,0 +1,133 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder! +[client] + #. + #Show item descriptions on Shift and controls on Ctrl. + enableTooltips = true + #. + #Display a tooltip when looking at overstressed components. + enableOverstressedTooltip = true + #. + #Log a stack-trace when rendering issues happen within a moving contraption. + explainRenderErrors = false + #. + #Higher density means more spawned particles. + #Range: 0.0 ~ 1.0 + fanParticleDensity = 0.25 + #. + #[in Blocks] + #Maximum Distance to the player at which items in Blocks' filter slots will be displayed + #Range: 1.0 ~ 3.4028234663852886E38 + filterItemRenderDistance = 6.0 + #. + #Choose the menu row that the Create config button appears on in the main menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 4 + mainMenuConfigButtonRow = 2 + #. + #Offset the Create config button in the main menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + mainMenuConfigButtonOffsetX = -4 + #. + #Choose the menu row that the Create config button appears on in the in-game menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 5 + ingameMenuConfigButtonRow = 3 + #. + #Offset the Create config button in the in-game menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + ingameMenuConfigButtonOffsetX = -4 + #. + #Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled + ignoreFabulousWarning = false + #. + #Disable to prevent being rotated while seated on a Moving Contraption + rotateWhenSeated = true + + #. + #Configure your vision range when submerged in Create's custom fluids + [client.fluidFogSettings] + #. + #The vision range through honey will be multiplied by this factor + #Range: 0.125 ~ 256.0 + honey = 1.0 + #. + #The vision range though chocolate will be multiplied by this factor + #Range: 0.125 ~ 256.0 + chocolate = 1.0 + + #. + #Settings for the Goggle Overlay + [client.goggleOverlay] + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetX = 20 + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetY = 0 + #. + #Enable this to use your custom colors for the Goggle- and Hover- Overlay + customColorsOverlay = false + #. + #The custom background color to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBackgroundOverlay = -267386864 + #. + #The custom top color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderTopOverlay = 1347420415 + #. + #The custom bot color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderBotOverlay = 1344798847 + + #. + #Sound settings + [client.sound] + #. + #Make cogs rumble and machines clatter. + enableAmbientSounds = true + #. + #Maximum volume modifier of Ambient noise + #Range: 0.0 ~ 1.0 + ambientVolumeCap = 0.10000000149011612 + + #. + #Mod Integration and JEI + [client.jeiIntegration] + #. + #Whether to auto-update the JEI search when searching in the stock keeper UI + syncJeiSearch = true + + #. + #Railway related settings + [client.trains] + #. + #How far away the Camera should zoom when seated on a train + #Range: 0.0 ~ 3.4028234663852886E38 + mountedZoomMultiplier = 3.0 + #. + #Display nodes and edges of a Railway Network while f3 debug mode is active + showTrackGraphOnF3 = false + #. + #Additionally display materials of a Rail Network while f3 debug mode is active + showExtendedTrackGraphOnF3 = false + #. + #Display Track Networks and Trains on supported map mods + showTrainMapOverlay = true + #. + #Track Network Color on maps + #Allowed Values: RED, GREY, WHITE + trainMapColorTheme = "RED" + diff --git a/config/create-common.toml b/config/create-common.toml new file mode 100644 index 0000000..792792f --- /dev/null +++ b/config/create-common.toml @@ -0,0 +1,9 @@ + +#. +#Modify Create's impact on your terrain +[worldgen] + #. + #. + #Prevents all worldgen added by Create from taking effect + disableWorldGen = false + diff --git a/config/create-stuff-additions.toml b/config/create-stuff-additions.toml new file mode 100644 index 0000000..3678c3e --- /dev/null +++ b/config/create-stuff-additions.toml @@ -0,0 +1,35 @@ + +["Jetpack Height Restriction"] + brassJetpackMaxHeight = 28.0 + andesiteJetpackMaxHeight = 18.0 + copperJetpackMaxHeight = 18.0 + netheriteJetpackMaxHeight = 28.0 + enableAboveCloudEnchant = false + +["Jetpack/Grapplin Speed"] + brassJetpackSpeed = 0.06 + andesiteJetpackSpeed = 0.08 + copperJetpackSpeed = 0.02 + netheriteJetpackSpeed = 0.08 + grapplinWhiskSpeed = 0.2 + +["Fuel/Water Capacity"] + gadgetCapacity = 1600.0 + smallTankCapacity = 800.0 + mediumTankCapacity = 1600.0 + largeTankCapacity = 3200.0 + +[Enchantments] + enableDiggingEnchant = true + enableImpactEnchant = true + enableGravityGunEnchant = true + enableHellfireEnchant = true + enableChunkEaterEnchant = true + +["Drone Module"] + enableDrillDroneModule = true + enableFanDroneModule = true + enableMagnetDroneModule = true + enableVaultDroneModule = true + MagnetModuleBlockLimitation = false + diff --git a/config/create_better_motors-common.toml b/config/create_better_motors-common.toml new file mode 100644 index 0000000..0765c0d --- /dev/null +++ b/config/create_better_motors-common.toml @@ -0,0 +1,249 @@ + +#General configuration for Create: Better Motors +#Messages +[Messages] + #Enable or disable update messages. + messages_enabled = false + +#Accumulator +[accumulator] + #Max input in FE/t + #Range: > 0 + max_input = 800000 + #Max output in FE/t + #Range: > 0 + max_output = 800000 + +#Wires +[wires] + #Heavy Connector max input in FE/t + #Range: > 0 + max_input = 90000 + #Heavy Connector max output in FE/t + #Range: > 0 + max_output = 90000 + #Heavy Connector max length in blocks + #Range: 0 ~ 256 + max_length = 48 + +#starter_motor +[starter_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 960 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 35768 + #Enable motor audio + audio_enabled = true + +#basic_motor +[basic_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 1920 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 75768 + #Enable motor audio + audio_enabled = true + +#hardened_motor +[hardened_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 3840 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 161536 + #Enable motor audio + audio_enabled = true + +#blazing_motor +[blazing_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 500000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 7680 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 253072 + #Enable motor audio + audio_enabled = true + +#niotic_motor +[niotic_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 600000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 19360 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 710144 + #Enable motor audio + audio_enabled = true + +#spirited_motor +[spirited_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 700000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 41720 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 1298288 + #Enable motor audio + audio_enabled = true + +#nitro_motor +[nitro_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 85000 + #Internal FE capacity + #Range: > 0 + capacity = 800000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 72440 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 2499576 + #Enable motor audio + audio_enabled = true + +#andesite_alternator +[andesite_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 5000 + #Alternator FE capacity + #Range: > 0 + capacity = 5000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.85 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 1260 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 35768 + #Enable alternator audio + audio_enabled = true + +#copper_alternator +[copper_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 5000 + #Alternator FE capacity + #Range: > 0 + capacity = 5000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.9 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 2400 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 75384 + #Enable alternator audio + audio_enabled = true + +#brass_alternator +[brass_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 10000 + #Alternator FE capacity + #Range: > 0 + capacity = 10000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.9 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 4240 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 159708 + #Enable alternator audio + audio_enabled = true + diff --git a/config/create_central_kitchen-common.toml b/config/create_central_kitchen-common.toml new file mode 100644 index 0000000..6cada1c --- /dev/null +++ b/config/create_central_kitchen-common.toml @@ -0,0 +1,37 @@ + +#. +#Config for Automation related components +[automation] + #. + #. + #Whether allowing Deployers to perform Cutting Board Recipes + enableCuttingBoardDeploying = true + #. + #List of Block Entities that can be boosted when placed on Blaze Stove + boostingCookerList = ["farmersdelight:cooking_pot", "farmersdelight:skillet"] + +#. +#Config for Integration with other mods +[integration] + #. + #. + #Whether replacing vanilla and modded pies into Farmer's Delight style + #[@cui:RequiresReload:both] + enablePieOverhaul = true + #. + #Pie items in this list will not be included in pie overhaul + #[@cui:RequiresReload:both] + pieOverhaulBlackList = [] + #. + #For harvester to function properly, turning on this support will cause the collision shape of the overweight crop block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForOverweightFarming = true + #. + #Basket of Farmers Delight has a 8 ticks transfer cooldown. Disable the cooldown for better automation. + #[@cui:RequiresReload:server] + disableTransferCooldownForFarmersDelightBasket = true + #. + #For harvester to function properly, turning on this support will cause the collision shape of Coffee Bush and Tea Bush block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForFarmersRespite = true + diff --git a/config/create_hypertube-client.toml b/config/create_hypertube-client.toml new file mode 100644 index 0000000..7f1812e --- /dev/null +++ b/config/create_hypertube-client.toml @@ -0,0 +1,6 @@ + +#Change these settings to customize the client-side behavior of the mod. +[Gameplay] + #Allow first-person view inside the tube. Default is false for better experience. + allowFPVInsideTheTube = false + diff --git a/config/create_item_silo.toml b/config/create_item_silo.toml new file mode 100644 index 0000000..94a177d --- /dev/null +++ b/config/create_item_silo.toml @@ -0,0 +1,5 @@ + +[setVaultLimit] + siloLimit = 3200.0 + ableSiloPlacing = true + diff --git a/config/create_kart-client.toml b/config/create_kart-client.toml new file mode 100644 index 0000000..f8c3d8a --- /dev/null +++ b/config/create_kart-client.toml @@ -0,0 +1,35 @@ + +["General Settings"] + #Defines the maximum speed of the kart. (Default value: 0.25) + "Mouvement Speed" = 0.25 + #Defines the rotational force of the kart. (Default value: 3.0) + "Rotation Streng" = 3.0 + #Define the number of blocks that will be climbed by the kart. (Default value: 1.0) + "Max Up Step" = 1.0 + +["Movement Settings"] + #changes the way the kart is steered for old movements before 2.0 + #be careful if this parameter is set to true, the left and right animations of the kart are deactivated because they are useless + #(true = Old movement / false = New movement) + "Old Movement" = false + +["Fuel Settings"] + #Define the fuel consumption for a traveling 1 block. (Default value: 5.0) + # [Preview setting stats] + # WARN: NOT EXACT AMOUNT + # + # Consumption Traveled + #1.0 fuel/block -> 22000 block + #2.0 fuel/block -> 11000 block + #4.0 fuel/block -> 5500 block + #5.0 fuel/block -> 4400 block (default) + #10.0 fuel/block -> 2200 block + #15.0 fuel/block -> 1650 block + #20.0 fuel/block -> 1100 block + # + "Fuel Consumption" = 5.0 + #Changes the fuel overlay display to a minimal version + #WARN: Only the fuel shortage popup is affected by this setting, the coal bar and the value below it do not change. + #(true = Minimal Overlay / false = Default Overlay) + "Minimal Overlay" = false + diff --git a/config/create_new_age-client.toml b/config/create_new_age-client.toml new file mode 100644 index 0000000..30f32f4 --- /dev/null +++ b/config/create_new_age-client.toml @@ -0,0 +1,8 @@ +#Choose how many wire sections are rendered in one meter (block). +#Decreasing this value can theoretically improve performance +#Range: > 1 +wireSectionsPerMeter = 10 +#...wire thickness... +#Range: 0.0 ~ 1.7976931348623157E308 +wireThickness = 0.03 + diff --git a/config/create_new_age-common.toml b/config/create_new_age-common.toml new file mode 100644 index 0000000..bba522a --- /dev/null +++ b/config/create_new_age-common.toml @@ -0,0 +1,96 @@ +#Responsible for how much energy is generated per 1 stress unit in a tick +#Default value is supposed to be compatible with default configuration of Create: Crafts and Additions +#Range: 0.0 ~ 1.7976931348623157E308 +suToEnergy = 0.029296875 +#How many coils can the carbon brushes collect energy from +#Range: > 0 +maxCoils = 8 +#How many reactor rods can a fuel inserter or a heat vent have in a single direction +#Range: > 0 +maxRodsInDirection = 32 +#Multiplier of wire conductivity +#Range: 0.0 ~ 1.7976931348623157E308 +conductivityMultiplier = 1.0 +#Maximum depth of network pathfinding +#Range: > 1 +maxPathfindingDepth = 24 +#Multiplier of energising speed +#Range: 0.0 ~ 1.7976931348623157E308 +energiserSpeedMultiplier = 1.0 +#Multiplier for the temperature at which components overheat. Set to -1 to disable overheating. +#Range: -1.0 ~ 1.7976931348623157E308 +overheatingMultiplier = 1.0 +#Multiplier for how much heat pipes obtain from passive heat sources like Lava or even Boilers. +#Range: 0.0 ~ 1.7976931348623157E308 +passiveHeatSourceMultiplier = 1.0 +#How much heat do pipes lose per second. +#Range: 0.0 ~ 1.7976931348623157E308 +passivePipeHeatLoss = 1.0 +#Multiplier for how much heat a boiler needs. +#Range: 0.0 ~ 1.7976931348623157E308 +boilerRequiredHeatMultiplier = 1.0 +#How much heat per tick a nuclear reactor rod generate. +#Range: 0.0 ~ 1.7976931348623157E308 +ReactorRodHeat = 30.0 +#How much heat per tick a nuclear reactor rod loses above the 16000*overheatingMultiplier. +#Range: 0.0 ~ 1.7976931348623157E308 +ReactorRodHeatLoss = 25.0 +#Multiplier for how much heat solar panels output. +#Range: 0.0 ~ 1.7976931348623157E308 +solarPanelHeatMultiplier = 1.0 +#Maximum wire length +#Range: > 1 +maxWireLength = 16 + +[Motors] + #Maximum motor SU multiplier + #Range: 0.0 ~ 1.7976931348623157E308 + motorSuMultiplier = 1.0 + #Internal energy capacity of a basic motor + #Range: > 1 + basicMotorCapacity = 16000 + #Internal energy capacity of an advanced motor + #Range: > 1 + advancedMotorCapacity = 64000 + #Internal energy capacity of a reinforced motor + #Range: > 1 + reinforcedMotorCapacity = 128000 + #Top Speed of a basic motor + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorSpeed = 128.0 + #Top Speed of an advanced motor + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorSpeed = 256.0 + #Top Speed of a reinforced motor + #Range: 1.0 ~ 1.7976931348623157E308 + reinforcedMotorSpeed = 256.0 + #Generated SU of a basic motor + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorStress = 512.0 + #Generated SU of an advanced motor + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorStress = 2048.0 + #Generated SU of a reinforced motor + #Range: 1.0 ~ 1.7976931348623157E308 + reinforcedMotorStress = 8192.0 + +["Motor Extensions"] + #Power Multiplier of a basic motor extension + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorExtensionMultiplier = 2.0 + #Power Multiplier of a basic motor extension + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorExtensionMultiplier = 8.0 + #Extra energy capacity of a basic motor extension + #Range: > 1 + basicMotorExtensionExtraCapacity = 64000 + #Extra energy capacity of an advanced motor extension + #Range: > 1 + advancedMotorExtensionExtraCapacity = 256000 + #Basic motor extension scroll step + #Range: > 1 + basicMotorExtensionScrollStep = 1 + #Advanced motor extension scroll step + #Range: > 1 + advancedMotorExtensionScrollStep = 8 + diff --git a/config/createaddition-common.toml b/config/createaddition-common.toml new file mode 100644 index 0000000..fbf27b0 --- /dev/null +++ b/config/createaddition-common.toml @@ -0,0 +1,150 @@ + +#Make sure config changes are duplicated on both Clients and the Server when running a dedicated Server, +# as the config isnt synced between Clients and Server. +#General Settings +[general] + #Forge Energy conversion rate (in FE/t at 256 RPM, value is the FE/t generated and consumed is at 256rpm). + #Range: > 0 + fe_at_max_rpm = 480 + #Max stress for the Alternator and Electric Motor (in SU at 256 RPM). + #Range: > 0 + max_stress = 16384 + #If audio should be enabled or not. + audio_enabled = true + +#Electric Motor +[electric_motor] + #Electric Motor min/max RPM. + #Range: > 1 + motor_rpm_range = 256 + #Electric Motor minimum required energy consumption in FE/t. + #Range: > 0 + motor_min_consumption = 8 + #Electric Motor max input in FE (Energy transfer not consumption). + #Range: > 0 + motor_max_input = 5000 + #Electric Motor internal capacity in FE. + #Range: > 0 + motor_capacity = 5000 + +#Alternator +[alternator] + #Alternator max input in FE (Energy transfer, not generation). + #Range: > 0 + generator_max_output = 5000 + #Alternator internal capacity in FE. + #Range: > 0 + generator_capacity = 5000 + #Alternator efficiency relative to base conversion rate. + #Range: 0.01 ~ 1.0 + generator_efficiency = 0.75 + +#Rolling Mill +[rolling_mill] + #Rolling Mill duration in ticks. + #Range: > 0 + rolling_mill_processing_duration = 120 + #Rolling Mill base stress impact. + #Range: 0 ~ 1024 + rolling_mill_stress = 8 + +#Wires +[wires] + #Small Connector max input in FE/t (Energy transfer). + #Range: > 0 + small_connector_max_input = 1000 + #Small Connector max output in FE/t (Energy transfer). + #Range: > 0 + small_connector_max_output = 1000 + #Small Connector max wire length in blocks. + #Range: 0 ~ 256 + small_connector_wire_length = 16 + #Small Connector With Light energy consumption in FE/t. + #Range: > 0 + small_light_connector_consumption = 1 + #Large Connector max input in FE/t (Energy transfer). + #Range: > 0 + large_connector_max_input = 5000 + #Large Connector max output in FE/t (Energy transfer). + #Range: > 0 + large_connector_max_output = 5000 + #Large Connector max wire length in blocks. + #Range: 0 ~ 256 + large_connector_wire_length = 32 + #Ignore checking if block face can support connector. + connector_ignore_face_check = true + #Allows blocks attached to a connector to freely pass energy to and from the connector network. + connector_allow_passive_io = true + +#Accumulator +[accumulator] + #Accumulator max input in FE/t (Energy transfer). + #Range: > 0 + accumulator_max_input = 5000 + #Accumulator max output in FE/t (Energy transfer). + #Range: > 0 + accumulator_max_output = 5000 + #Accumulator internal capacity per block in FE. + #Range: > 0 + accumulator_capacity = 2000000 + #Accumulator max multiblock height. + #Range: 1 ~ 8 + accumulator_max_height = 5 + #Accumulator max multiblock width. + #Range: 1 ~ 8 + accumulator_max_width = 3 + +#Portable Energy Interface +[portable_energy_interface] + #PEI max input in FE/t (Energy transfer). + #Range: > 0 + pei_max_input = 5000 + #PEI max output in FE/t (Energy transfer). + #Range: > 0 + pei_max_output = 5000 + +#Tesla Coil +[tesla_coil] + #Tesla Coil max input in FE/t (Energy transfer). + #Range: > 0 + tesla_coil_max_input = 10000 + #Tesla Coil charge rate in FE/t. + #Range: > 0 + tesla_coil_charge_rate = 5000 + #Tesla Coil charge rate in FE/t for recipes. + #Range: > 0 + tesla_coil_recipe_charge_rate = 2000 + #Tesla Coil internal capacity in FE. + #Range: > 0 + tesla_coil_capacity = 40000 + #Energy consumed when Tesla Coil is fired (in FE). + #Range: > 0 + tesla_coil_hurt_energy_required = 1000 + #Hurt range (in blocks/meters). + #Range: > 0 + tesla_coil_hurt_range = 3 + #Damaged dealt to mobs when Tesla Coil is fired (in half hearts). + #Range: > 0 + tesla_coil_hurt_mob = 3 + #The duration of the Shocked effect for mobs (in ticks). + #Range: > 0 + tesla_coil_effect_time_mob = 20 + #Damaged dealt to players when Tesla Coil is fired (in half hearts). + #Range: > 0 + tesla_coil_hurt_player = 2 + #The duration of the Shocked effect for players (in ticks). + #Range: > 0 + tesla_coil_effect_time_player = 20 + #Tesla Coil fire interval (in ticks). + #Range: > 0 + tesla_coil_fire_cooldown = 20 + +#Misc +[misc] + #Diamond Grit Sandpaper durability (number of uses). + #Range: > 3 + diamond_grit_sandpaper_uses = 1024 + #Barbed Wire Damage. + #Range: 0.0 ~ 3.4028234663852886E38 + barbed_wire_damage = 2.0 + diff --git a/config/createdieselgenerators-client.toml b/config/createdieselgenerators-client.toml new file mode 100644 index 0000000..3f2a795 --- /dev/null +++ b/config/createdieselgenerators-client.toml @@ -0,0 +1,9 @@ + +["Client Configs"] + #Fuel type tooltip on Buckets + "Fuel tooltips" = true + #Whenever Diesel Engines display in JEI + "Diesel Engine JEI Config" = true + #Diesel Engines emit sounds on trains + "Diesel Engines emit sounds on trains" = true + diff --git a/config/createdieselgenerators-common.toml b/config/createdieselgenerators-common.toml new file mode 100644 index 0000000..13e3734 --- /dev/null +++ b/config/createdieselgenerators-common.toml @@ -0,0 +1,11 @@ + +["Common Config"] + #Capacity of Tools requiring Fluids in mB + "Capacity of Tools requiring Fluids" = 200 + #Tool Capacity Enchantment Capacity Addition in mB + "Capacity Addition of Tools with Capacity Enchantment" = 100 + #Canister Capacity in mB + "Capacity of Canisters" = 4000 + #Canister Capacity Enchantment Capacity Addition in mB + "Capacity Addition of Capacity Enchantment in Canisters" = 1000 + diff --git a/config/createsolar-common.toml b/config/createsolar-common.toml new file mode 100644 index 0000000..448353b --- /dev/null +++ b/config/createsolar-common.toml @@ -0,0 +1,78 @@ +#Solar Panel settings +#Maximum FE generated in one update interval at full sunlight (default 250 = 12.5 FE/T). +#Range: 1 ~ 500 +max_output = 250 +#How many ticks between energy updates (default 20 = 1 second). +#Range: 1 ~ 100 +update_interval = 20 +#Internal energy buffer capacity (FE). Default 1000. +#Range: 1 ~ 1000000 +max_energy_stored = 1000 +#Number of ticks to skip after placement or chunk reload (prevents race conditions). Default 5. +#Range: 0 ~ 100 +startup_delay_ticks = 5 +#Altitude Dependence settings (disabled by default) +#Whether solar panel output depends on altitude. Default false. +altitude_dependence_enabled = false +#Minimum Y level for altitude calculation (lowest altitude, default -64). +#Range: -64 ~ 320 +altitude_min_y = -64 +#Maximum Y level for altitude calculation (highest altitude, default 61). +#Range: -64 ~ 320 +altitude_max_y = 61 +#Output multiplier at minimum altitude (default 0.5 = 50% efficiency). +#Range: 0.0 ~ 1.0 +altitude_min_factor = 0.5 +#Output multiplier at maximum altitude (default 1.0 = 100% efficiency). +#Range: 0.0 ~ 1.0 +altitude_max_factor = 1.0 +#Temperature Dependence settings (disabled by default) +#Whether solar panel output depends on biome temperature. Default false. +temperature_dependence_enabled = false +#Biome temperature at which TEMP_MIN_FACTOR applies. Default 0.0 (cold). +#Range: -0.5 ~ 2.0 +temperature_min_value = 0.0 +#Biome temperature at which TEMP_MAX_FACTOR applies. Default 1.2 (hot). +#Range: -0.5 ~ 2.0 +temperature_max_value = 1.2 +#Output multiplier at TEMP_MIN_VALUE. Default 0.7 = 70%. +#Range: 0.0 ~ 1.0 +temperature_min_factor = 0.7 +#Output multiplier at TEMP_MAX_VALUE. Default 1.0 = 100%. +#Range: 0.0 ~ 1.0 +temperature_max_factor = 1.0 +#Sculk Panel settings (generates XP at night) +#Maximum XP generated in one update interval at peak night (default 10). +#Range: 1 ~ 500 +sculk_max_xp = 10 +#How many ticks between XP updates (default 20 = 1 second). +#Range: 1 ~ 100 +sculk_update_interval = 20 +#Internal XP buffer capacity. Default 10000. +#Range: 1 ~ 100000 +sculk_max_xp_stored = 10000 +#Growth Lamp settings (bonemeal based, balanced) +#Effect radius in blocks (max 10). Default 5. +#Range: 1 ~ 10 +growthLampRadius = 5 +#Ticks between bonemeal attempts. Default 40 (2 seconds). +#Range: 10 ~ 200 +growthLampInterval = 40 +#Number of random blocks to try per interval. Default 10. +#Range: 1 ~ 20 +growthLampBlocksPerInterval = 10 +#Chance (0.0-1.0) that a selected block actually receives bonemeal. Default 0.25. +#Range: 0.0 ~ 1.0 +growthLampBonemealChance = 0.25 +#Ticks to wait after lamp becomes lit before first bonemeal. Default 60 (3 seconds). +#Range: 0 ~ 100 +growthLampInitialDelay = 60 +#Growth Lamp filter settings +#Filter mode: ALLOWLIST = only bonemeal blocks that match the filter lists; BLOCKLIST = bonemeal everything EXCEPT blocks that match the filter lists. Default BLOCKLIST. +#Allowed Values: ALLOWLIST, BLOCKLIST +growthLampFilterMode = "BLOCKLIST" +#List of block IDs to either allow (if ALLOWLIST mode) or block (if BLOCKLIST mode). +growthLampFilterBlocks = ["minecraft:grass_block", "minecraft:grass", "minecraft:fern"] +#List of block tags (format: 'namespace:path') to either allow or block, depending on mode. +growthLampFilterTags = [] + diff --git a/config/creeperoverhaul.jsonc b/config/creeperoverhaul.jsonc new file mode 100644 index 0000000..f084a61 --- /dev/null +++ b/config/creeperoverhaul.jsonc @@ -0,0 +1,42 @@ +{ + // Changes the Creeper Overhaul creepers to destroy blocks or not. + "destroyBlocks": true, + "client": { + // Change the Vanilla Creeper to a new and improved texture with better animations. + "replaceDefaultCreeper": false + }, + "spawning": { + // Change the Creeper Overhaul creepers to spawn or not. + "allowSpawning": true, + // Change the Jungle Creeper to spawn or not. + "allowJungleCreeperSpawning": true, + // Change the Bamboo Creeper to spawn or not. + "allowBambooCreeperSpawning": true, + // Change the Desert Creeper to spawn or not. + "allowDesertCreeperSpawning": true, + // Change the Badlands Creeper to spawn or not. + "allowBadlandsCreeperSpawning": true, + // Change the Hills Creeper to spawn or not. + "allowHillsCreeperSpawning": true, + // Change the Savannah Creeper to spawn or not. + "allowSavannahCreeperSpawning": true, + // Change the Mushroom Creeper to spawn or not. + "allowMushroomCreeperSpawning": true, + // Change the Swamp Creeper to spawn or not. + "allowSwampCreeperSpawning": true, + // Change the Dripstone Creeper to spawn or not. + "allowDripstoneCreeperSpawning": true, + // Change the Cave Creeper to spawn or not. + "allowCaveCreeperSpawning": true, + // Change the Dark Oak Creeper to spawn or not. + "allowDarkOakCreeperSpawning": true, + // Change the Spruce Creeper to spawn or not. + "allowSpruceCreeperSpawning": true, + // Change the Beach Creeper to spawn or not. + "allowBeachCreeperSpawning": true, + // Change the Snowy Creeper to spawn or not. + "allowSnowyCreeperSpawning": true, + // Change the Ocean Creeper to spawn or not. + "allowOceanCreeperSpawning": true + } +} \ No newline at end of file diff --git a/config/crittersandcompanions-common.toml b/config/crittersandcompanions-common.toml new file mode 100644 index 0000000..1ed3443 --- /dev/null +++ b/config/crittersandcompanions-common.toml @@ -0,0 +1,17 @@ + +[necklace] + #Range: 0.0 ~ 1.0 + swim_sped = 0.20000000298023224 + #Range: 0.0 ~ 1.0 + drowned_range_debuff = 0.10000000149011612 + #Range: 0.0 ~ 1.0 + guardian_range_debuff = 0.10000000149011612 + +[grappling_hook] + #Range: 0.0 ~ 10.0 + launch_speed = 1.0 + #Range: 1.0 ~ 1000.0 + max_speed = 4.0 + #Range: 4.0 ~ 128.0 + max_distance = 32.0 + diff --git a/config/cryonicconfig.json b/config/cryonicconfig.json new file mode 100644 index 0000000..e7b0ae4 --- /dev/null +++ b/config/cryonicconfig.json @@ -0,0 +1,3 @@ +{ + "chisel": "chisel.json" +} \ No newline at end of file diff --git a/config/cucumber-client.toml b/config/cucumber-client.toml new file mode 100644 index 0000000..ee9484a --- /dev/null +++ b/config/cucumber-client.toml @@ -0,0 +1,8 @@ + +#General configuration options. +[General] + #Enable tag list tooltips for blocks/items? + tagTooltips = true + #Enable NBT tooltips for items? + nbtTooltips = false + diff --git a/config/cucumber-common.toml b/config/cucumber-common.toml new file mode 100644 index 0000000..5a6e258 --- /dev/null +++ b/config/cucumber-common.toml @@ -0,0 +1,8 @@ + +#General configuration options. +[General] + #Mod ids (in order) to prioritize using items for when generating the cucumber-tags.json file. + modTagPriorities = ["thermal", "mekanism", "tconstruct", "immersiveengineering", "appliedenergistics2"] + #If enabled, any tags in the cucumber-tags.json file set to items that don't exist will be refreshed if possible. + autoRefreshTagOptions = true + diff --git a/config/cucumber-tags.json b/config/cucumber-tags.json new file mode 100644 index 0000000..1ffa74c --- /dev/null +++ b/config/cucumber-tags.json @@ -0,0 +1,18 @@ +{ + "__comment": "Instructions: https://blakesmods.com/docs/cucumber/tags-config", + "forge:ingots/iridium": "null", + "forge:rubber": "null", + "forge:ingots/platinum": "null", + "forge:ingots/mithril": "null", + "forge:dusts/saltpeter": "immersiveengineering:dust_saltpeter", + "forge:silicon": "ae2:silicon", + "forge:ingots/graphite": "null", + "forge:ingots/chrome": "null", + "forge:ingots/brass": "null", + "forge:ingots/tungsten": "null", + "forge:dusts/niter": "thermal:niter_dust", + "forge:ingots/zinc": "null", + "forge:ingots/titanium": "electrodynamics:ingottitanium", + "forge:gems/peridot": "projectred_core:peridot", + "forge:ingots/aluminum": "null" +} \ No newline at end of file diff --git a/config/culinaryconstruct-server.toml b/config/culinaryconstruct-server.toml new file mode 100644 index 0000000..18b0d8f --- /dev/null +++ b/config/culinaryconstruct-server.toml @@ -0,0 +1,14 @@ +#Maximum amount of food from eating a single sandwich. +#Range: 1 ~ 100 +maxFoodPerSandwich = 10 +#If greater than -1, players cannot use ingredients with greater saturation than this amount. +#Range: -1.0 ~ 100.0 +maxIngredientSaturation = -1.0 +#If greater than -1, players cannot use ingredients with greater food than this amount. +#Range: -1 ~ 100 +maxIngredientFood = -1 +#Items or tags that cannot be used as ingredients. +ingredientBlacklist = [] +#If enabled, shows food and saturation amounts in the extended tooltip. +showNutritionInfo = false + diff --git a/config/cull-less-leaves.json b/config/cull-less-leaves.json new file mode 100644 index 0000000..e713995 --- /dev/null +++ b/config/cull-less-leaves.json @@ -0,0 +1,4 @@ +{ + "enabled": true, + "depth": 4 +} \ No newline at end of file diff --git a/config/cullleaves.json b/config/cullleaves.json new file mode 100644 index 0000000..fb305f7 --- /dev/null +++ b/config/cullleaves.json @@ -0,0 +1,4 @@ +{ + "enabled": true, + "cullRoots": true +} \ No newline at end of file diff --git a/config/cumulus_menus-client.toml b/config/cumulus_menus-client.toml new file mode 100644 index 0000000..93b2ec3 --- /dev/null +++ b/config/cumulus_menus-client.toml @@ -0,0 +1,9 @@ + +[Menu] + #Determines whether the Menu API is enabled or not + "Enable Menu API" = true + #Sets the current active menu title screen + "Active Menu" = "cumulus_menus:minecraft" + #Adds a button to the top right of the main menu screen to open a menu selection screen + "Enables menu selection button" = true + diff --git a/config/cupboard.json b/config/cupboard.json new file mode 100644 index 0000000..940d59a --- /dev/null +++ b/config/cupboard.json @@ -0,0 +1,26 @@ +{ + "showCommandExecutionErrors": { + "desc:": "Whether to display errors during command execution: default:true", + "showCommandExecutionErrors": true + }, + "debugChunkloadAttempts": { + "desc:": "Enables debug logging of chunks being forceloaded on serverthread by directly accessing an unloaded chunk, which stalls the server until the chunk finishes loading, incompatible with lithium and its forks: default:false", + "debugChunkloadAttempts": false + }, + "skipErrorOnEntityLoad": { + "desc:": "Prevent crashes on entity loading: default:false", + "skipErrorOnEntityLoad": false + }, + "logOffthreadEntityAdd": { + "desc:": "Entities should only be added on the server thread itself, cupboard fixes the crashes caused by mods violating that, this option enables the logging of those: default:true", + "logOffthreadEntityAdd": true + }, + "forceHeapDumpOnOOM": { + "desc:": "Enables creating a heap dump automatically once the game crashes with an out of memory issue, use with care heapdumps take a lot of space. default:false", + "forceHeapDumpOnOOM": false + }, + "displayConfigReload": { + "desc:": "Displays a chat message on the client on reloading a config file after changes were detected to the clients config file. default:true", + "displayConfigReload": true + } +} \ No newline at end of file diff --git a/config/curios-client.toml b/config/curios-client.toml new file mode 100644 index 0000000..1c1d22b --- /dev/null +++ b/config/curios-client.toml @@ -0,0 +1,23 @@ + +#Client only settings, mostly things related to rendering +[client] + #Set to true to enable rendering curios + renderCurios = true + #Set to true to enable the Curios GUI button + enableButton = true + #The X-Offset for the Curios GUI button + #Range: -100 ~ 100 + buttonXOffset = 0 + #The Y-Offset for the Curios GUI button + #Range: -100 ~ 100 + buttonYOffset = 0 + #The X-Offset for the Creative Curios GUI button + #Range: -100 ~ 100 + creativeButtonXOffset = 0 + #The Y-Offset for the Creative Curios GUI button + #Range: -100 ~ 100 + creativeButtonYOffset = 0 + #The corner for the Curios GUI button + #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT + buttonCorner = "TOP_LEFT" + diff --git a/config/curios-common.toml b/config/curios-common.toml new file mode 100644 index 0000000..a671ffb --- /dev/null +++ b/config/curios-common.toml @@ -0,0 +1,5 @@ +#List of slots to create or modify. +#See documentation for syntax: https://docs.illusivesoulworks.com/curios/configuration#slot-configuration +# +slots = [] + diff --git a/config/curiotiab-client.toml b/config/curiotiab-client.toml new file mode 100644 index 0000000..2121201 --- /dev/null +++ b/config/curiotiab-client.toml @@ -0,0 +1,16 @@ + +#curiotiab's Client Config Settings +[settings] + #Use 'TIAB Curio' Header in Overlay + useheader = true + #Define what you want shown on Overlay. Use only One: 'TOTAL', 'CURRENT', OR 'BOTH' + #Current -> Shows time stored currently on bottle + #Total -> Shows total Accumulated time on bottle + #Both -> Shows both Total and Current time + #Allowed Values: TOTAL, CURRENT, BOTH + overlaymode = "BOTH" + +[guipostion] + x = 5 + y = 5 + diff --git a/config/custom-micromaterials.cfg b/config/custom-micromaterials.cfg new file mode 100644 index 0000000..34617db --- /dev/null +++ b/config/custom-micromaterials.cfg @@ -0,0 +1,9 @@ +# Configuration file for adding microblock materials for aesthetic blocks added by mods +# The '#' character defines a comment, everything after this character on a given line will be ignored. +# Each line needs to be of the form [property=value,otherProperty=value] +# being the registry name of the block. E.G: 'minecraft:stone' +# This can optionally be followed by Key-Value pairs describing any block state properties. +# If no properties are defined, the default state of the block will be used. +# Examples: +#minecraft:stone +#minecraft:grass_block[snowy=true] diff --git a/config/cutthrough-client.toml b/config/cutthrough-client.toml new file mode 100644 index 0000000..4479d64 --- /dev/null +++ b/config/cutthrough-client.toml @@ -0,0 +1,3 @@ +#Only allow targeting alive entities, as opposed to entities that have already died and only remain to render a death animation. Greatly helps in combat as dead entities will no longer absorb hits. +target_alive_only = true + diff --git a/config/cyclepaintings.json5 b/config/cyclepaintings.json5 new file mode 100644 index 0000000..7fb2e4e --- /dev/null +++ b/config/cyclepaintings.json5 @@ -0,0 +1,6 @@ +{ + // Split by a , (comma). The paintings to ignore during the cycle. You can either input an entire mod's prefix (only the part before the : (colon)) or the entire line found via 'showRegisteredPaintingsDebug'. + "ignorePaintingsInCycleResourceLocation": "infernalexp,", + // When enabled, prints all paintings registered to the console. With this you can find which to add to the 'ignorePaintingsInCycleResourceLocationPrefix' config. + "showRegisteredPaintingsDebug": false +} \ No newline at end of file diff --git a/config/cyclic-client.toml b/config/cyclic-client.toml new file mode 100644 index 0000000..48284a7 --- /dev/null +++ b/config/cyclic-client.toml @@ -0,0 +1,56 @@ + +##################################################################################### +#Client-side properties +##################################################################################### +[cyclic] + + ##################################################################################### + #Block Rendering properties. Color MUST have one # symbol and then six spots after so #000000 up to #FFFFFF + ##################################################################################### + [cyclic.blocks] + + [cyclic.blocks.text] + # True means this will hide the fluid contents chat message (right click) on relevant blocks (pylon, fluid generator, fluid hopper, solidifier, sprinkler, tank, cask) + FluidContents = true + + [cyclic.blocks.colors] + # Specify hex color of preview mode. default #00EE00 + harvester = "#00EE00" + # Specify hex color of preview mode. default #11BB00 + forester = "#11BB00" + # Specify hex color of preview mode. default #444044 + collector_item = "#444044" + # Specify hex color of preview mode. default #AA0011 + dropper = "#AA0011" + # Specify hex color of preview mode. default #00AA00 + detector_item = "#00AA00" + # Specify hex color of preview mode. default #404040 + peat_farm = "#404040" + # Specify hex color of preview mode. default #444044 + collector_fluid = "#444044" + # Specify hex color of preview mode. default #0000AA + miner = "#0000AA" + # Specify hex color of preview mode. default #FF0000 + structure = "#FF0000" + # Specify hex color of preview mode. default #00FF00 + detector_entity = "#00FF00" + + ##################################################################################### + #Item Rendering properties. Color MUST have one # symbol and then six spots after so #000000 up to #FFFFFF + ##################################################################################### + [cyclic.items] + + [cyclic.items.colors] + # Specify hex color of preview mode. default #FFC800 + shape_data = "#FFC800" + # Specify hex color of preview mode. default #0000FF + replace_scepter = "#FFFF00" + # Specify hex color of preview mode. default #0000FF + offset_scepter = "#00FF00" + # Specify hex color of preview mode. default #0000FF + build_scepter = "#0000FF" + # Specify hex color of preview mode for the GPS data card. default #0000FF + location = "#0000FF" + # Specify hex color of preview mode. default #0000FF + randomize_scepter = "#00EE00" + diff --git a/config/cyclic.toml b/config/cyclic.toml new file mode 100644 index 0000000..9d4f039 --- /dev/null +++ b/config/cyclic.toml @@ -0,0 +1,810 @@ + +##################################################################################### +#Features with configurable properties are split into categories +##################################################################################### +[cyclic] + + ##################################################################################### + # Configs make sure players will not be able to craft any in survival (api only allows me to disable original base level potion, stuff like splash/tipped arrows are out of my control, for futher steps i suggest modpacks hide them from JEI as well if desired, or bug Mojang to implement JSON brewing stand recipes) + ##################################################################################### + [cyclic.potion] + + [cyclic.potion.antigravity] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.flight] + # Set false to disable the base recipe + enabled = false + + [cyclic.potion.blind] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.attack_range] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.reach_distance] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.butterfingers] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.waterwalk] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.haste] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.stun] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.resistance] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.hunger] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.snowwalk] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.gravity] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.frost_walker] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.magnetic] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.wither] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.levitation] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.swimspeed] + # Set false to disable the base recipe + enabled = true + + ##################################################################################### + # Enchantment related configs (if disabled, they may still show up as NBT on books and such but have functions disabled and are not obtainable in survival) + ##################################################################################### + [cyclic.enchantment] + + [cyclic.enchantment.traveler] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.reach] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.beekeeper] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.experience_boost] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.launch] + # (Multijump) Set false to disable Multi Jump enchantment + enabled = true + + [cyclic.enchantment.ender] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.disarm] + # Set false to stop enchantment from working + enabled = true + # Enchant level drop rate. % = drop + (level-1)*drop + #Range: 1 ~ 100 + percentPerLevel = 15 + # Mobs in this list cannot be disarmed and have their weapon stolen by the disarm enchantment + ingoredMobs = ["alexsmobs:mimicube"] + + [cyclic.enchantment.excavate] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.magnet] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.multishot] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.beheading] + # Beheading enchant add player skin head drop, add any mob id and any skin + EntityMHF = ["minecraft:blaze:MHF_Blaze", "minecraft:cat:MHF_Ocelot", "minecraft:cave_spider:MHF_CaveSpider", "minecraft:chicken:MHF_Chicken", "minecraft:cow:MHF_Cow", "minecraft:enderman:MHF_Enderman", "minecraft:ghast:MHF_Ghast", "minecraft:iron_golem:MHF_Golem", "minecraft:magma_cube:MHF_LavaSlime", "minecraft:mooshroom:MHF_MushroomCow", "minecraft:ocelot:MHF_Ocelot", "minecraft:pig:MHF_Pig", "minecraft:zombie_pigman:MHF_PigZombie", "minecraft:sheep:MHF_Sheep", "minecraft:slime:MHF_Slime", "minecraft:spider:MHF_Spider", "minecraft:squid:MHF_Squid", "minecraft:villager:MHF_Villager", "minecraft:witch:MHF_Witch", "minecraft:wolf:MHF_Wolf", "minecraft:guardian:MHF_Guardian", "minecraft:elder_guardian:MHF_Guardian", "minecraft:snow_golem:MHF_SnowGolem", "minecraft:silverfish:MHF_Silverfish", "minecraft:endermite:MHF_Endermite"] + # Percentage increase per level of enchant. Formula [percent + (level - 1) * per_level] + #Range: 1 ~ 99 + per_level = 25 + # Base perecentage chance to drop a head on kill + #Range: 1 ~ 99 + percent = 20 + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.quickshot] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.venom] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.life_leech] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.curse] + # (Gloom) Set false to stop enchantment from working + enabled = true + # Set list of effects for Gloom enchant (cyclic:curse) to ignore and not use these + ignored = ["minecraft:bad_omen", "minecraft:nausea", "botania:clear"] + + [cyclic.enchantment.auto_smelt] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.growth] + # Radius increase per level. Actual radius is (this * level + 1) + #Range: 1 ~ 16 + radius = 2 + # Set false to stop enchantment from working + enabled = true + # Height of growth enchantment range + #Range: 0 ~ 16 + height = 2 + # Max number of crops grown per growth per level. Actual is (level * this + 4 bonus when its raining) + #Range: 1 ~ 16 + limit = 4 + # Chance of trying to grow per tick / 100 + #Range: 1 ~ 100 + percent = 4 + # If true only players can use this (false allows anything with hands ie armor stands, zombies, etc) + player_only = false + + [cyclic.enchantment.step] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.laststand] + # How many ticks of Absorption hearts given on trigger, 0 to disable + #Range: 0 ~ 9999 + potion_ticks = 600 + # Base XP cost to activate at level 1 (level 2 is this/2) + #Range: 1 ~ 9999 + xp_cost = 50 + # How many ticks of cooldown, 0 to disable + #Range: 0 ~ 99999 + cooldown = 20 + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.steady] + # Set false to stop enchantment from working + enabled = true + + ##################################################################################### + # Worldgen settings + ##################################################################################### + [cyclic.worldgen] + + [cyclic.worldgen.flowers] + # Do the four generate in the world. If false, the 4 flower blocks and 3 features (flower_all, flower_tulip_ flower_lime) will still be registered and can be used externally (data packs etc), but the mod will not use the features to generate/place flowers in world-generation + enabled = false + + [cyclic.worldgen.cyan_podzol_legacy] + # Enable the legacy feature that will spawn a Cyan flower when bonemeal is used on Podzol + enabled = false + + ##################################################################################### + # Block specific configs + ##################################################################################### + [cyclic.blocks] + # If true, then all potions marked as harmful/negative will be used in addition to the 'anti_beacon.potion_list' for cures and immunities (used by both sponge and artemisbeacon). + harmful_potions = false + # Allows the dimensional Transfer Nodes to cross dimensions (no chunk loading is done, you have to do that on your own); This affects blocks cyclic:wireless_energy, cyclic:wireless_item, cyclic:wireless_fluid, cyclic:wireless_transmitter; If you change it to false it will only work if the target is in the same dimension. + wireless_transfer_dimensional = true + + [cyclic.blocks.peace_candle] + # Reach of the candle for spawn prevention + #Range: 0 ~ 64 + radius = 32 + # Height reach of the candle for spawn prevention + #Range: 0 ~ 512 + height = 4 + + [cyclic.blocks.altar_destruction] + # Reach for explosion prevention + #Range: 1 ~ 128 + radius = 32 + # Height for explosion prevention + #Range: 1 ~ 512 + height = 8 + + # Ender Anchor settings + [cyclic.blocks.eye_teleport] + # Maximum distance to activate + #Range: 2 ~ 256 + range = 128 + # Exp cost on teleport + #Range: 0 ~ 500 + exp = 0 + # Hunger cost on teleport + #Range: 0 ~ 20 + hunger = 1 + # Tick delay between checks, faster checks can consume server resources (1 means check every tick; 20 means only check once per second) + #Range: 1 ~ 20 + frequency = 5 + + [cyclic.blocks.disenchanter] + # Power per use disenchanter + #Range: > 0 + energy_cost = 2500 + # Cost of (or payment for if negative) per enchanted book generated + #Range: -1000 ~ 16000 + fluid_cost = 100 + + [cyclic.blocks.anvil] + # Power per repair anvil + #Range: > 0 + energy_cost = 250 + + [cyclic.blocks.dropper] + # Power per use dropper + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.water_candle] + # Reach of the candle + #Range: 1 ~ 64 + radius = 8 + # Tick rate of the candle + #Range: > 1 + tick_rate = 60 + + [cyclic.blocks.teleport] + # Power per use + #Range: > 0 + energy_cost = 400 + # Power per use while crossing dimensions + #Range: > 0 + energy_cost_xdim = 8000 + + [cyclic.blocks.sound] + # Sound Recorder - how far out does it listen to record sounds + #Range: 1 ~ 64 + radius = 8 + + # battery settings + [cyclic.blocks.battery] + # RF/t charging rate for the battery item slot + #Range: > 1 + charge = 8000 + # Maximum storage capacity; default 6400000 [warning: energy contents of items in world may be reset when changing this value] + #Range: > 1 + capacity = 6400000 + + [cyclic.blocks.generator_fuel] + # RF energy per tick generated while burning furnace fuel in this machine. Burn time in ticks is the same as furnace values, so 1 coal = 1600 ticks + #Range: > 1 + rf_per_tick = 80 + + [cyclic.blocks.peat_farm] + # Power per use peat_farm + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.miner] + # Power per use miner + #Range: > 0 + energy_cost = 10 + + # fisher settings + [cyclic.blocks.fisher] + # Chance to Fish from nearby water. Smaller values is slower fish + #Range: 1.0E-6 ~ 0.999 + chance = 0.06 + # Radius to Fish from nearby water + #Range: 1 ~ 32 + radius = 12 + + [cyclic.blocks.harvester] + # Power per use harvester + #Range: > 0 + energy_cost = 250 + + [cyclic.blocks.forester] + # Power per use forester + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.crafter] + # Power per use crafter + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.sponge_lava] + # Reach of the sponge + #Range: 1 ~ 64 + radius = 8 + + [cyclic.blocks.anvil_void] + # Payment per void action, if not zero + #Range: > 0 + fluid_cost = 25 + + # Ender Trigger settings + [cyclic.blocks.eye_redstone] + # Maximum distance to activate + #Range: 2 ~ 256 + range = 32 + # Tick delay between checks, faster checks can consume server resources (1 means check every tick; 20 means only check once per second) + #Range: 1 ~ 20 + frequency = 5 + + [cyclic.blocks.peat] + # Chance that Peat Bog converts to Peat when wet (is multiplied by the number of surrounding water blocks) + #Range: 0.0010000000474974513 ~ 1.0 + conversion_chance = 0.07999999821186066 + + [cyclic.blocks.no_soliciting] + # Reach of the no_soliciting for spawn prevention + #Range: 0 ~ 64 + radius = 32 + # Height reach of the no_soliciting for spawn prevention + #Range: 0 ~ 512 + height = 4 + + # Sprinkler settings + [cyclic.blocks.sprinkler] + # Tick rate. 20 will fire one block per second + #Range: 1 ~ 20 + ticks = 20 + # Radius + #Range: 1 ~ 32 + radius = 4 + # Water consumption + #Range: 0 ~ 1000 + water = 5 + + # experience_pylon settings + [cyclic.blocks.experience_pylon] + # Radius to pickup xp orbs + #Range: 1 ~ 64 + radius = 16 + + # soundproofing settings + [cyclic.blocks.soundproofing] + # Radius of sound proofing (distance from each block that it will listen) + #Range: 1 ~ 16 + radius = 6 + + [cyclic.blocks.cables] + + [cyclic.blocks.cables.fluid] + # How many buckets of buffer fluid the fluid cable can hold (for each direction. for example 2 here means 2000ub in each face) + #Range: 1 ~ 32 + buffer = 16 + # How many fluid units per tick can flow through these cables each tick (1 bucket = 1000) including normal flow and extraction mode + #Range: > 100 + flow = 1000 + + [cyclic.blocks.cables.energy] + # How much buffer the energy cables hold (must not be smaller than flow) + #Range: > 1 + buffer = 32000 + # How fast energy flows in these cables (must not be greater than buffer) + #Range: > 100 + flow = 1000 + + [cyclic.blocks.generator_food] + # RF energy per tick generated while burning food in this machine + #Range: > 1 + rf_per_tick = 60 + # This [factor * (item.food + item.saturation) = ticks] results in the number of ticks food will burn at. IE Bread has (5 + 0.6) with factor 100, will burn for 560 ticks. + #Range: > 1 + ticks_per_food = 100 + + [cyclic.blocks.magnet_block] + # Reach for magnet distance to find items + #Range: 1 ~ 128 + radius = 16 + + [cyclic.blocks.packager] + # Power per recipe in the packager + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.collector_fluid] + # Power per use collector_fluid + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.structure] + # Power per tick while in use + #Range: > 0 + energy_cost = 10 + + # Ender shelf settings + [cyclic.blocks.ender_shelf] + # Controller Max distance to search (using manhattan distance) + #Range: 1 ~ 256 + controller_distance = 64 + # Each shelf has five rows. Set the number of books stored per row here + #Range: 1 ~ 1024 + books_per_row = 256 + + [cyclic.blocks.uncraft] + # Power per use uncraft + #Range: > 0 + energy_cost = 1000 + + [cyclic.blocks.generator_solar] + # Ticks between power gen interval. Example: 40 ticks is 2 seconds. 0 means every tick it generates + #Range: > 0 + ticks = 60 + # Base level of solar power generation (affected by weather contitions). + #Range: > 1 + energy = 4 + + [cyclic.blocks.beacon] + # Power per tick while in use + #Range: 0 ~ 64000 + energy_cost = 0 + + [cyclic.blocks.anvil_magma] + # Cost of magma fluid per action + #Range: 1 ~ 64000 + fluid_cost = 100 + + [cyclic.blocks.terra_preta] + # Growth interval in ticks (100 would be every 5 seconds). + #Range: 1 ~ 64000 + growth_interval = 100 + # Chance that the crop will grow after the interval + #Range: 0.0 ~ 1.0 + growth_chance = 0.5 + # growth height above the soil + #Range: 2 ~ 32 + height = 8 + + [cyclic.blocks.uncrafter] + # When searching for a recipe, does it ignore all NBT values (such as enchantments, RepairCost, Damage, etc). For example, if false it will not uncraft damaged or enchanted items + nbt_ignored = false + # Ticks used for each uncraft + #Range: 1 ~ 9999 + ticks = 60 + # ITEM IDS HERE. Block ALL recipes that output this item, no matter which recipe they use + ignore_list = ["minecraft:elytra", "minecraft:tipped_arrow", "minecraft:magma_block", "minecraft:stick", "spectrite:spectrite_arrow", "spectrite:spectrite_arrow_special", "techreborn:uumatter", "projecte:*"] + # RECIPE IDS HERE. Block these recipe ids from being reversed, but do not block all recipes for this output item + ignore_recipes = ["minecraft:white_dye_from_lily_of_the_valley", "minecraft:orange_dye_from_orange_tulip", "minecraft:magenta_dye_from_allium", "minecraft:magenta_dye_from_lilac", "minecraft:light_blue_dye_from_blue_orchid", "minecraft:yellow_dye_from_sunflower", "minecraft:yellow_dye_from_dandelion", "minecraft:pink_dye_from_peony", "minecraft:pink_dye_from_pink_tulip", "minecraft:light_gray_dye_from_oxeye_daisy", "minecraft:light_gray_dye_from_azure_bluet", "minecraft:light_gray_dye_from_white_tulip", "minecraft:blue_dye_from_cornflower", "minecraft:red_dye_from_poppy", "minecraft:red_dye_from_rose_bush", "minecraft:red_dye_from_tulip", "minecraft:black_dye_from_wither_rose", "minecraft:blue_dye", "minecraft:black_dye", "minecraft:brown_dye", "botania:cobweb", "minecraft:magma_cream", "minecraft:beacon", "minecraft:stick_from_bamboo_item", "minecraft:netherite_ingot_from_netherite_block", "mysticalagriculture:essence*", "mysticalagriculture:farmland_till", "refinedstorage:coloring_recipes*", "forcecraft:transmutation*", "cyclic:flower_purple_tulip", "cyclic:flower_absalon_tulip", "cyclic:flower_cyan", "cyclic:flower_lime_carnation", "cyclic:fireball", "cyclic:shapeless/spark"] + + [cyclic.blocks.anti_beacon] + # List of extra effects to clear. supports wildcard such as 'cyclic:*'. (This list is is used even if harmful_potions=false or true both) + potion_list = [] + # Ticks to fire anti beacon and remove effects from entities (20 = 1 second). Does not affect potion immunity which applies regardless of ticks. This only used if you gain a potion effect out of range and then walk into range, so keep this large. + #Range: 20 ~ 9999 + ticks = 200 + # Radius to protect players and entities from potion effects being applied (used by both sponge and artemisbeacon). + #Range: 1 ~ 128 + radius = 16 + + [cyclic.blocks.user] + # Power per use user + #Range: > 0 + energy_cost = 0 + + # terra_glass settings + [cyclic.blocks.terra_glass] + # ticks between growth cycles + #Range: 1 ~ 10000 + timer = 100 + # growth height below the glass + #Range: 0 ~ 32 + height = 8 + + [cyclic.blocks.facades] + # + # These blocks are not allowed to be used as Facades for blocks because they look weird (used by cables and Glowstone Facade and Soundproofing Facade and others). If you want to ignore one entire mod use an entry like this : storagenetwork:* + itemsNotAllowed = ["minecraft:ladder", "minecraft:double_plant", "minecraft:waterlily", "minecraft:torch", "minecraft:*_torch", "minecraft:redstone", "minecraft:iron_bars", "minecraft:chest", "minecraft:ender_chest", "minecraft:sculk_vein", "minecraft:string", "minecraft:vine", "minecraft:rail", "minecraft:*_rail", "minecraft:brewing_stand", "minecraft:*_dripleaf", "minecraft:*_pane", "minecraft:*_sapling", "minecraft:*_sign", "minecraft:*_door", "minecraft:*_banner", "minecraft:*_shulker_box", "cyclic:*_pipe", "cyclic:*_bars", "storagenetwork:*"] + + [cyclic.blocks.facades.cables] + # + # Allow cables to have blocks placed in them as facades (sneak-left-click to set; use empty hand to remove). Set to false to disable facades + enabled = true + + # battery_clay settings + [cyclic.blocks.battery_clay] + # Maximum storage capacity; default 16000 [warning: energy contents of items in world may be reset when changing this value] + #Range: > 1 + capacity = 16000 + + ##################################################################################### + # Logging related configs + ##################################################################################### + [cyclic.logging] + # Unblock info logs; very spammy; can be useful for testing certain issues + info = false + + ##################################################################################### + # Item specific configs + ##################################################################################### + [cyclic.items] + + ##################################################################################### + # scythe_harvest settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_harvest] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + # apple_ender settings + [cyclic.items.apple_ender] + # Which structure tags are looked for + structure_tags = ["minecraft:eye_of_ender_located", "minecraft:on_woodland_explorer_maps", "minecraft:on_ocean_explorer_maps", "minecraft:village"] + # How many results the client will see + #Range: 1 ~ 60 + printed = 5 + + [cyclic.items.spawner_seeker] + # Range in all directions to search for spawner + #Range: 1 ~ 256 + range = 64 + + [cyclic.items.wand_hypno] + # Range to search out enemies for this multi-target attack + #Range: 1 ~ 256 + range = 16 + # Energy cost per item use + #Range: 1 ~ 50000 + energy = 500 + + [cyclic.items.shield_leather] + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 20 + + ##################################################################################### + # spell_water settings + ##################################################################################### + [cyclic.items.spell_water] + # Radius defines how far it reaches + #Range: 0 ~ 32 + radius = 3 + + ##################################################################################### + # scythe_leaves settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_leaves] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + ##################################################################################### + # Caving Torch Charm settings + ##################################################################################### + [cyclic.items.caving_torch] + # Light level at which to start placing down a torch + #Range: 0 ~ 14 + light_limit = 7 + #Light level of the current block after placing down a torch. Must be greater than light_limit + #Higher values means torches will be placed closer to you. Lower values means torches will overlap less, + #but might result in small dark spots between torches + #Range: 1 ~ 14 + light_target = 10 + # Whether to prioritise placing torches on walls + prefer_walls = true + # Which wall to place torches on when digging a 1-wide tunnel + #True means left, False means right + prefer_left_wall = false + + ##################################################################################### + # scythe_brush settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_brush] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + [cyclic.items.charm_torch] + # Light level limit for placing torches + #Range: 0 ~ 15 + light_level = 9 + + ##################################################################################### + # Obsidian gear settings + ##################################################################################### + [cyclic.items.obsidian] + # Weapon damage + #Range: 0.10000000149011612 ~ 99.0 + damage = 10.5 + # Damage Reduction + #Range: 1 ~ 99 + chest = 11 + # Damage Reduction + #Range: 1 ~ 99 + boots = 7 + # Armor toughness + #Range: 0.10000000149011612 ~ 99.0 + toughness = 6.0 + # Damage Reduction + #Range: 1 ~ 99 + helm = 7 + # Damage Reduction + #Range: 1 ~ 99 + leg = 10 + + # Sack of Holding settings + [cyclic.items.tile_transporter] + # Block these from being picked up + disable_pickup = ["parabox:parabox", "extracells:fluidcrafter", "extracells:ecbaseblock", "extracells:fluidfiller", "exnihilosequentia:*", "refinedstorage:*", "tconstruct:seared_fuel_tank", "tconstruct:smeltery_controller", "tconstruct:seared_drain", "tconstruct:seared_fuel_gauge", "tconstruct:seared_ingot_tank", "tconstruct:seared_ingot_gauge", "tconstruct:seared_melter", "tconstruct:seared_heater", "tconstruct:scorched_drain", "tconstruct:scorched_duct", "tconstruct:scorched_chute", "tconstruct:foundry_controller", "tconstruct:scorched_alloyer", "rftoolspower:cell3", "rftoolspower:cell2", "rftoolspower:cell1", "rftoolspower:cell3", "rftoolspower:cell2", "rftoolspower:cell1"] + # Override chest placement when a 1/2 split chest is picked up, and set placed block as a singleton chests (prevents visual glitch of the open-sided half chest). Set to false to restore old behavior and allow the split-chest placement. + overrideChestSingle = true + + [cyclic.items.charm_luck] + # Boost given by item charm_luck + #Range: 0 ~ 100 + boost = 10 + + [cyclic.items.prospector] + # Ore Prospector radius around player to search for ores + #Range: 1 ~ 256 + range = 32 + # Ore Prospector height around player to search for ores + #Range: 1 ~ 128 + height = 8 + + [cyclic.items.chorus_flight] + # Seconds of flight per chorus_flight + #Range: 1 ~ 20000 + ticks = 1200 + + [cyclic.items.monster_ball] + # Entity ids that cannot be picked up with the Monster all + ignore_list = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:warden"] + + # Heart items + [cyclic.items.heart] + # Maximum number of hearts that can be attained (including initial 10) + #Range: 1 ~ 200 + maximum = 1 + # Experience given when eating a poisoned heart + #Range: 0 ~ 99999 + experience = 500 + + ##################################################################################### + # scythe_forage settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_forage] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + [cyclic.items.shield_wood] + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 60 + + [cyclic.items.chorus_spectral] + # Seconds of noClip per chorus_spectral + #Range: 1 ~ 20000 + ticks = 600 + + ##################################################################################### + # spell_ice settings + ##################################################################################### + [cyclic.items.spell_ice] + # Radius defines how far it reaches + #Range: 0 ~ 32 + radius = 3 + + [cyclic.items.wand_missile] + # Range to search out enemies for this attack + #Range: 1 ~ 512 + range = 64 + # Energy cost per item use + #Range: 1 ~ 50000 + energy = 150 + + [cyclic.items.charm_attack_speed] + # Boost given by item charm_attackspeed + #Range: 0.0 ~ 2.0 + boost = 0.5 + + [cyclic.items.charm_speed] + # Boost given by item charm_speed + #Range: 0.0 ~ 2.0 + boost = 0.5 + + [cyclic.items.shield_flint] + # What % chance does this have to apply thorns damage against ranged non-explosive attackers + #Range: 0 ~ 100 + damage = 50 + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 30 + + # Wand settings + [cyclic.items.teleport_wand] + # Maximum distance to activate + #Range: 8 ~ 1024 + range = 256 + + ##################################################################################### + # Emerald gear settings + ##################################################################################### + [cyclic.items.emerald] + # Weapon damage + #Range: 0.10000000149011612 ~ 99.0 + damage = 4.5 + # Damage Reduction + #Range: 1 ~ 99 + chest = 9 + # Damage Reduction + #Range: 1 ~ 99 + boots = 4 + # Armor toughness + #Range: 0.10000000149011612 ~ 99.0 + toughness = 3.0 + # Damage Reduction + #Range: 1 ~ 99 + helm = 4 + # Damage Reduction + #Range: 1 ~ 99 + leg = 7 + + [cyclic.items.laser_cannon] + # Maximum range to hit target + #Range: 1 ~ 9999 + range = 6000 + # Damage dealt at point blank range + #Range: > 1 + damage_close = 20 + # Damage dealt when firing at range + #Range: > 1 + damage_far = 12 + # Energy cost per firing; only drained when living targets are hit + #Range: > 1 + energy = 10 + # Render the laser beam even when there is no living target (used to be hardcoded as false, so change this back to restore legacy behavior) + render_misses = true + + ##################################################################################### + # Edit the permissions of all commands added by the mod. false means anyone can use, true means only OP players can use + ##################################################################################### + [cyclic.command] + # True means only players with OP can use this /cyclic command + dev = false + # True means only players with OP can use this /cyclic command + ping = false + # True means only players with OP can use this /cyclic command + health = true + # True means only players with OP can use this /cyclic command + gethome = false + # True means only players with OP can use this /cyclic command + home = true + # True means only players with OP can use this /cyclic command + hunger = true + diff --git a/config/cyclopscore-common.toml b/config/cyclopscore-common.toml new file mode 100644 index 0000000..76eb9d1 --- /dev/null +++ b/config/cyclopscore-common.toml @@ -0,0 +1,23 @@ + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #Set 'true' to enable development debug mode. This will result in a lower performance! + debug = false + #The anonymous id used by the analytics service. + anonymousAnalyticsID = "b7bdb86a-1d72-45f6-977e-f20566994ce8" + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[general] + + [general.general] + #If a button should be added to the main menu to open a dev world (shift-click creates a new world). + devWorldButton = false + diff --git a/config/daily_rewards-common.toml b/config/daily_rewards-common.toml new file mode 100644 index 0000000..99972a5 --- /dev/null +++ b/config/daily_rewards-common.toml @@ -0,0 +1,148 @@ + +#Daily Rewards (General configuration) +[General] + #Automatically reward players after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardPlayers = true + #Automatically reward players with specials after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardSpecialPlayers = true + #Time in minutes the players needs to be online on the server before receiving a reward for the day. + #Range: 1 ~ 1440 + rewardTimePerDay = 30 + #Shows a unclaimed rewards message when a player joins the server (if there are unclaimed rewards). + showUnclaimedRewardsOnPlayerJoin = true + #Shows a unclaimed special rewards message when a player joins the server (if there are unclaimed special rewards). + showUnclaimedRewardsSpecialOnPlayerJoin = true + #Shows a message when a player receives a reward. + showReceivedRewardMessage = true + #Shows a message when a player receives a special reward. + showReceivedRewardSpecialMessage = true + #Shows a message with the reward claim command to claim rewards. + showRewardClaimCommandMessage = true + #Shows the rewards menu when a player joins the server (if there are unclaimed rewards). + showRewardMenuOnPlayerJoin = false + #Type of the reward screen. + #Allowed Values: COMPACT, DEFAULT_OVERVIEW, SPECIAL_OVERVIEW + rewardScreenType = "COMPACT" + +["Fill Items"] + #Use fill items if there are not enough valid items for a month. (e.g. if there are only 2 items for a month and the player claims 3 rewards, the 3rd reward will be a fill item) + useFillItems = true + #List of normal fill items which are used in the case we have not enough valid items for a month. + normalFillItems = ["minecraft:cooked_beef:16", "minecraft:iron_ingot:8", "minecraft:oak_log:16", "minecraft:white_wool:4", "minecraft:gold_ingot:8", "minecraft:wheat_seeds:16", "minecraft:pumpkin_seeds:16", "minecraft:melon_seeds:16", "minecraft:beetroot_seeds:16", "minecraft:arrow:32"] + #List of rare fill items which are used in the case we have not enough valid items for a month. + rareFillItems = ["minecraft:diamond", "minecraft:quartz:3", "minecraft:spyglass"] + #The chance to use a rare item instead of a regular one. e.g. 7 means every 7th items could be a rare item. (0 = disabled) + #Range: 0 ~ 100 + rareFillItemsChance = 7 + #List of loot bag fill items which are used in the case we have not enough valid items for a month. + lootBagFillItems = ["lootbagmod:lootbag"] + #The chance to use a loot bag item instead of a regular one. e.g. 15 means every 15th items could be a loot bag item. (0 = disabled) + #Range: 0 ~ 100 + lootBagFillItemsChance = 15 + +["Rewards Items"] + #Shuffle the rewards items instead of using the defined order. + shuffleRewardsItems = true + #Shuffle the special rewards items instead of using the defined order. + shuffleRewardsSpecialItems = false + #Preview the upcoming rewards items for the next days. + previewRewardsItems = true + #Preview the upcoming special rewards items for the next days. + previewRewardsSpecialItems = true + + ["Rewards Items"."January Rewards Items"] + #List of rewards items for January + rewardsJanuaryItems = ["minecraft:oak_log:32", "minecraft:cooked_salmon:16", "minecraft:white_wool:16", "minecraft:cake:1"] + #Single reward item or list of special streak rewards items for January. (Only used if rewardsJanuarySpecialItemsNeededDays is greater than 0) + rewardsJanuarySpecialItems = ["minecraft:cooked_salmon:1", "minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for January. (Use empty list to allow all players to get special rewards items for January) + rewardsJanuarySpecialUsers = [""] + + ["Rewards Items"."February Rewards Items"] + #List of rewards items for February + rewardsFebruaryItems = [] + #Single reward item or list of special streak rewards items for February. (Only used if rewardsFebruarySpecialItemsNeededDays is greater than 0) + rewardsFebruarySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for February. (Use empty list to allow all players to get special rewards items for February) + rewardsFebruarySpecialUsers = [""] + + ["Rewards Items"."March Rewards Items"] + #List of rewards items for March + rewardsMarchItems = [] + #Single reward item or list of special streak rewards items for March. (Only used if rewardsMarchSpecialItemsNeededDays is greater than 0) + rewardsMarchSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for March. (Use empty list to allow all players to get special rewards items for March) + rewardsMarchSpecialUsers = [""] + + ["Rewards Items"."April Rewards Items"] + #List of rewards items for April + rewardsAprilItems = [] + #Single reward item or list of special streak rewards items for April. (Only used if rewardsAprilSpecialItemsNeededDays is greater than 0) + rewardsAprilSpecialItems = ["minecraft:eggs:1", "minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for April. (Use empty list to allow all players to get special rewards items for April) + rewardsAprilSpecialUsers = [""] + + ["Rewards Items"."May Rewards Items"] + #List of rewards items for May + rewardsMayItems = ["minecraft:egg:16"] + #Single reward item or list of special streak rewards items for May. (Only used if rewardsMaySpecialItemsNeededDays is greater than 0) + rewardsMaySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for May. (Use empty list to allow all players to get special rewards items for May) + rewardsMaySpecialUsers = [""] + + ["Rewards Items"."June Rewards Items"] + #List of rewards items for June + rewardsJuneItems = [] + #Single reward item or list of special streak rewards items for June. (Only used if rewardsJuneSpecialItemsNeededDays is greater than 0) + rewardsJuneSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for June. (Use empty list to allow all players to get special rewards items for June) + rewardsJuneSpecialUsers = [""] + + ["Rewards Items"."July Rewards Items"] + #List of rewards items for July + rewardsJulyItems = [] + #Single reward item or list of special streak rewards items for July. (Only used if rewardsJulySpecialItemsNeededDays is greater than 0) + rewardsJulySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for July. (Use empty list to allow all players to get special rewards items for July) + rewardsJulySpecialUsers = [""] + + ["Rewards Items"."August Rewards Items"] + #List of rewards items for August + rewardsAugustItems = [] + #Single reward item or list of special streak rewards items for August. (Only used if rewardsAugustSpecialItemsNeededDays is greater than 0) + rewardsAugustSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for August. (Use empty list to allow all players to get special rewards items for August) + rewardsAugustSpecialUsers = [""] + + ["Rewards Items"."September Rewards Items"] + #List of rewards items for September + rewardsSeptemberItems = [] + #Single reward item or list of special streak rewards items for September. (Only used if rewardsSeptemberSpecialItemsNeededDays is greater than 0) + rewardsSeptemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for September. (Use empty list to allow all players to get special rewards items for September) + rewardsSeptemberSpecialUsers = [""] + + ["Rewards Items"."October Rewards Items"] + #List of rewards items for October + rewardsOctoberItems = [] + #Single reward item or list of special streak rewards items for October. (Only used if rewardsOctoberSpecialItemsNeededDays is greater than 0) + rewardsOctoberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for October. (Use empty list to allow all players to get special rewards items for October) + rewardsOctoberSpecialUsers = [""] + + ["Rewards Items"."November Rewards Items"] + #List of rewards items for November + rewardsNovemberItems = [] + #Single reward item or list of special streak rewards items for November. (Only used if rewardsNovemberSpecialItemsNeededDays is greater than 0) + rewardsNovemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for November. (Use empty list to allow all players to get special rewards items for November) + rewardsNovemberSpecialUsers = [""] + + ["Rewards Items"."December Rewards Items"] + #List of rewards items for December + rewardsDecemberItems = ["minecraft:firework_rocket:32"] + #Single reward item or list of special streak rewards items for December. (Only used if rewardsDecemberSpecialItemsNeededDays is greater than 0) + rewardsDecemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for December. (Use empty list to allow all players to get special rewards items for December) + rewardsDecemberSpecialUsers = [""] + diff --git a/config/darkdoppelganger-common.toml b/config/darkdoppelganger-common.toml new file mode 100644 index 0000000..7e81753 --- /dev/null +++ b/config/darkdoppelganger-common.toml @@ -0,0 +1,56 @@ + +#Dark Doppelganger Configuration +[dark_doppelganger] + #Health of the Dark Doppelganger + #Range: 1.0 ~ 100000.0 + health = 6000.0 + #Attack Damage of the Dark Doppelganger + #Range: 1.0 ~ 100.0 + attack_damage = 20.0 + #Movement Speed of the Dark Doppelganger + #Range: 0.1 ~ 1.0 + movement_speed = 0.2 + #Knockback Resistance of the Dark Doppelganger + #Range: 0.0 ~ 1.0 + knockback_resistance = 0.6 + #Armor of the Dark Doppelganger + #Range: 0.0 ~ 100.0 + armor = 20.0 + #Follow Range of the Dark Doppelganger + #Range: 1.0 ~ 128.0 + follow_range = 64.0 + #Hard mode of the Dark Doppelganger + hard_mode = false + #Maximum damage the Dark Doppelganger can take from a single hit. + #Set to 0 to disable the cap. + #Range: 0.0 ~ 100000.0 + damage_cap_per_hit = 150.0 + #Multiplier applied to all of the Dark Doppelganger's spell power attributes + #after copying them from the summoner. + #1.0 = same as player, 1.5 = +50%, 2.0 = double, etc. + #Range: 0.0 ~ 10.0 + spell_power_multiplier = 1.25 + #List of banned armor items (e.g., modid:item_name or modid:*) that should not be copied to the Dark Doppelganger + banned_armor = ["cataclysm:cursium_helmet", "cataclysm:cursium_chestplate", "cataclysm:cursium_leggings", "cataclysm:cursium_boots", "mycoolmod:*"] + #List of all spells the Dark Doppelganger can use in the final phase (Hard mode must be enabled) + final_phase_spells = ["irons_spellbooks:eldritch_blast", "irons_spellbooks:ray_of_frost", "traveloptics:tidal_grasp", "irons_spellbooks:abyssal_shroud", "traveloptics:shadowed_miasma"] + +#Minion Configuration +[minion] + #Range: 1.0 ~ 1000.0 + health = 40.0 + #Range: 0.1 ~ 100.0 + attack_damage = 6.0 + #Range: 0.01 ~ 1.0 + movement_speed = 0.28 + #Range: 0.0 ~ 100.0 + armor = 4.0 + #Spell used for the minion's SpellBarrageGoal (string id) + barrage_spell = "irons_spellbooks:devour" + #List of spells the minion can use (string ids). + #These will be shuffled and split into groups for the Warlock attack goal. + spells = ["irons_spellbooks:guiding_bolt", "irons_spellbooks:blood_needles", "irons_spellbooks:blood_slash", "irons_spellbooks:fang_ward", "irons_spellbooks:gust", "irons_spellbooks:burning_dash", "irons_spellbooks:blight", "irons_spellbooks:invisibility"] + #Health of spell-created minion summon + #Range: 1.0 ~ 1000.0 + spell_minion_health = 200.0 + diff --git a/config/de/mari_023/ae2wtlib.json5 b/config/de/mari_023/ae2wtlib.json5 new file mode 100644 index 0000000..9f1a54c --- /dev/null +++ b/config/de/mari_023/ae2wtlib.json5 @@ -0,0 +1,3 @@ +{ + "magnetCardRange": 16.0 +} \ No newline at end of file diff --git a/config/deeperdarker-common.toml b/config/deeperdarker-common.toml new file mode 100644 index 0000000..b8827d2 --- /dev/null +++ b/config/deeperdarker-common.toml @@ -0,0 +1,28 @@ +#Chance of a vase being fake +#Default: 0.16 +#Range: 0.0 ~ 1.0 +fakeVaseChance = 0.16 +#Chance of a Stalker spawning when a fake vase is broken +#Default: 0.3125 +#Range: 0.0 ~ 1.0 +stalkerSpawnChance = 0.3125 +#Soul Elytra's boost cooldown in ticks. Set to -1 to disable boost +#Default: 600 +#Range: -1 ~ 12000 +soulElytraCooldown = 600 +#Heart of the Deep beats like a heart +#Default: true +wardenHeartPulses = true +#Limit the number of enchanted books a Sculk Snapper can drop +#Default: 8 +#Range: 0 ~ 32 +snapperDropLimit = 8 +#Width of Otherside portal when generated by player +#Default: 6 +#Range: 2 ~ 21 +othersidePortalWidth = 6 +#Height of Otherside portal when generated by player +#Default: 3 +#Range: 3 ~ 21 +othersidePortalHeight = 3 + diff --git a/config/delightful-common.toml b/config/delightful-common.toml new file mode 100644 index 0000000..9105736 --- /dev/null +++ b/config/delightful-common.toml @@ -0,0 +1,207 @@ + +# Let's Configure Delightful +[Knives] + adamantium_knife = true + alf_knife = true + allthemodium_knife = true + aluminum_knife = true + amethyst_knife = false + black_opal_knife = true + blazing_knife = true + bone_knife = true + brass_knife = true + bronze_knife = true + certus_quartz_knife = true + cloggrum_knife = true + constantan_knife = true + copper_knife = false + draco_arcanus_knife = true + electrum_knife = true + elementium_knife = true + emerald_knife = false + enderite_knife = true + experience_knife = true + fiery_knife = true + fluix_knife = true + forgotten_knife = true + froststeel_knife = true + gilded_netherite_knife = true + gilded_quartz_knife = true + gravitite_knife = true + holystone_knife = true + infused_veridium_knife = true + invar_knife = true + ironwood_knife = true + kiwano_knife = true + knightmetal_knife = true + lapis_lazuli_knife = false + large_amethyst_knife = true + lead_knife = true + leaf_knife = true + living_knife = true + manasteel_knife = true + mythril_knife = true + necronium_knife = true + nether_quartz_knife = false + netherite_opal_knife = true + nickel_knife = true + obsidian_infused_enderite_knife = true + onyx_knife = true + osmium_knife = true + pearlescent_knife = true + phoenix_knife = true + refined_glowstone_knife = true + refined_obsidian_knife = true + resonarium_knife = true + rose_gold_knife = true + silver_knife = true + sinisite_knife = true + skyjade_knife = true + skyroot_knife = true + soul_steel_knife = true + steel_knife = true + steeleaf_knife = true + stratus_knife = true + terra_knife = true + thyrium_knife = true + tin_knife = true + utherium_knife = true + valkyrum_knife = true + veridium_knife = true + warden_knife = true + zanite_knife = true + zinc_knife = true + +["Baked Good Overhauls"] + blueberry_pie_slice = true + chorus_pie_slice = true + gloomgourd_pie_slice = true + green_apple_pie_slice = true + mulberry_pie_slice = true + passion_fruit_tart_slice = true + source_berry_pie_slice = true + mutton_pie_slice = true + #Use a mixin to remove food properties from pie items (tag #farmersdelight:pies)? + pie_edible_mixin = true + +["Registry & Recipes"] + acorn = true + acorn_sack = true + animal_fat = true + animal_oil_bottle = true + azalea_tea = true + baklava = true + baklava_slice = true + baobab_fruit_crate = true + basalt_cabinet = true + bastion_fruit_crate = true + berry_matcha_latte = true + blueberry_sack = true + bombegranate_crate = true + cactus_chili = true + cactus_flesh = true + cactus_soup = true + cactus_soup_cup = true + cactus_steak = true + cantaloupe = true + cantaloupe_bread = true + cantaloupe_gummy = true + cantaloupe_popsicle = true + cantaloupe_seeds = true + cantaloupe_slice = true + cheeseburger = true + chopped_clover = true + chorus_muffin = true + chunkwich = true + coconut_curry = true + cooked_goat = true + cooked_marshmallow_stick = true + cooked_venison_chops = true + crab_rangoon = true + deluxe_cheeseburger = true + ender_nectar = true + field_salad = true + frostaya_crate = true + glow_jam_jar = true + green_apple_crate = true + green_tea_leaf = true + honey_glazed_walnut = true + jam_jar = true + lavender_tea = true + marshmallow_stick = true + matcha = true + matcha_gummy = true + matcha_ice_cream = true + matcha_ice_cream_block = true + matcha_latte = true + matcha_milkshake = true + mendosteen_crate = true + mini_melon = true + nut_butter_and_jam_sandwich = true + nut_butter_bottle = true + nut_dough = true + prickly_pear_juice = true + quartz_cabinet = true + raw_goat = true + roasted_acorn = true + rock_candy = true + salmonberries = true + salmonberry_gummy = true + salmonberry_ice_cream = true + salmonberry_ice_cream_block = true + salmonberry_milkshake = true + salmonberry_pie = true + salmonberry_pie_slice = true + salmonberry_pips = true + salmonberry_sack = true + sinigang = true + smore = true + source_berry_cookie = true + source_berry_gummy = true + source_berry_ice_cream = true + source_berry_ice_cream_block = true + source_berry_milkshake = true + stuffed_cantaloupe = true + stuffed_cantaloupe_block = true + venison_chops = true + venison_stew = true + venison_stew_cup = true + wild_salmonberries = true + wrapped_cantaloupe = true + yucca_fruit_crate = true + glow_jam_cookie = true + glow_jam_cookie_tile_slab = true + glow_jam_cookie_tile_stairs = true + glow_jam_cookie_tile_wall = true + glow_jam_cookie_tiles = true + source_berry_cookie_tile_slab = true + source_berry_cookie_tile_stairs = true + source_berry_cookie_tile_wall = true + source_berry_cookie_tiles = true + long_prickly_pear_juice = true + roe_blini = true + salmon_and_roe_blini = true + sinigang_cup = true + aged_roe = true + caviar = true + debug_blueberry_pie = true + debug_chorus_pie = true + debug_gloomgourd_pie = true + debug_green_apple_pie = true + debug_mulberry_pie = true + debug_mutton_pie = true + debug_passion_fruit_tart = true + debug_source_berry_pie = true + roe_roll = true + sturgeon_roe = true + +[Behavior] + #Allow cooking milk from nuts + nut_milk = true + #Allow cooking honey from honey and clovers + clover_honey = false + #Give items that are sliced off of blocks directly to player's inventory instead of dropping + give_sliced_directly = false + #Allow sliced melons to be juiced in-world (right click) + melon_juicing = true + diff --git a/config/deltaboxlib.common.conf b/config/deltaboxlib.common.conf new file mode 100644 index 0000000..ef3425d --- /dev/null +++ b/config/deltaboxlib.common.conf @@ -0,0 +1,12 @@ +# Config for deltaboxlib +# Enable custom splashes in the game. If disabled, the default vanilla splashes will be used. +enable_custom_splashes=false + +# List of custom splashes to use in the game. +splashes=[ + "By DeltaboxLib! (Customize in config)" +] + +# Remove vanilla splashes from the game. If enabled, only custom splashes will be used. +remove_vanilla_splashes=false + diff --git a/config/derenderpatcher-client.toml b/config/derenderpatcher-client.toml new file mode 100644 index 0000000..1585d52 --- /dev/null +++ b/config/derenderpatcher-client.toml @@ -0,0 +1,5 @@ + +[general] + #Show the beta warning with the project issue tracker when entering a world. + showBetaWarning = false + diff --git a/config/despawntweaks-common.toml b/config/despawntweaks-common.toml new file mode 100644 index 0000000..37078a5 --- /dev/null +++ b/config/despawntweaks-common.toml @@ -0,0 +1,16 @@ +#. +#Turn this off to disable the despawn of mobs spawned by spawners +allowMobsSpawnedBySpawnersToDespawn = true +#. +#Turn this off to disable the despawn optimizations. +enableLetMeDespawnOptimization = true +#. +#Turn this off to disable the equipments drop on mobs despawn +allowEquipmentDrops = true +#. +#If you add modIDs to this list, only mobs in the structures of the mods will be affected by DespawnTweaker. +StructuresMods = [] +#. +#If you add sturctures registry names to list, only mobs in the structures will be affected by DespawnTweaker. +Structures = [] + diff --git a/config/dimpaintings-common.toml b/config/dimpaintings-common.toml new file mode 100644 index 0000000..bece36b --- /dev/null +++ b/config/dimpaintings-common.toml @@ -0,0 +1,16 @@ + +#General settings +[General] + #Dictates if the overworld painting will teleport you back to your spawnpoint / bed (Similar to teleporting from the End to the Overworld) + overworldToBed = false + #Dictates the max Y at which the Nether Painting will place you in the Nether + #[For a vanilla nether it's recommended to keep the value between 10 and 120 + #[51 = Spawn in a bubble at Y 50 if nothing] (Default: 120) + #Range: -2048 ~ 2048 + netherMaxY = 120 + #Amount of seconds between being able to teleport (Default: 4) + #Range: > 0 + teleportCooldown = 4 + #Disable nether portal creation (Default: false) + disableNetherPortal = false + diff --git a/config/dimthread-common.toml b/config/dimthread-common.toml new file mode 100644 index 0000000..55a5d24 --- /dev/null +++ b/config/dimthread-common.toml @@ -0,0 +1,13 @@ +#Define the initial thread count number of threads +#If the value is 6, new worlds will start with 6 thread counts as a initial value +#This is useful for modpacks with dimensional mods, instead of fallback on default's 3 you can configure how many can use +#ADVICE: Gamerule and this config is capped to max available processors of the server +#if you set the value above available processors, forge will set it back to defaults 3 +#This was done to prevent users gameplay got slowed by not having enough threads +#Range: 2 ~ 16 +default_gamerule_threads = 3 +#WARNING: very VERY EXPERIMENTAL, do not use it (except if you want world corruption) +#This feature is intended to ignore crashes ticking levels, for the good sake of not have to restart your entire server +#Have i mentioned IS EXPERIMENTAL? +ignore_tick_crash = false + diff --git a/config/displaydelight-common.toml b/config/displaydelight-common.toml new file mode 100644 index 0000000..494f3dd --- /dev/null +++ b/config/displaydelight-common.toml @@ -0,0 +1,26 @@ + +[Features] + #Disable Vanila Food(mushroom stew,rabbit stew,beetroot soup) Placement. Set to true if vanila food placement conflicts with other mods + Disable-Vanila-Food-Placement = false + #Should placeable tooltips be enabled? + Tooltips = true + #This mod uses hardcoded check to remove annoying eating animation while plating some foods. + # Try setting this to true if there are any related issues(can't eat foods, can't plate foods, etc.). (only applicable for Forge version) + Disable-Eating-Animation-Fix = false + #Should a message be enabled when attempting to place a food item? + Display-Message = true + #Whether to drop the food block item when food block is broken by silktouch + SilkTouchDropFoodBlock = true + #Should wandering traders sell food block items that are unobtainable in survival due to missing compat? + WanderingTraderSellFoodBlock = true + #Should creative tab items disabled? Try turning this on if this mod's items take too much space in JEI + DisableCreativeTabItems = false + #Should shift right-click interation to place all items be disabled? + DisablePlaceAllInteratction = false + #Should shift right-click interation to take all items be disabled? + DisableTakeAllInteratction = false + #Should axe right-click interation to hide plates disabled? + DisableHidePlateInteratction = false + #Should palte right-click interation to put back the plates disabled? + DisablePutPlateInteratction = false + diff --git a/config/does_it_tick-common.toml b/config/does_it_tick-common.toml new file mode 100644 index 0000000..f483046 --- /dev/null +++ b/config/does_it_tick-common.toml @@ -0,0 +1,42 @@ + +#Does It Tick? +["Living Entities Tick Settings"] + #If you disable this, entities will not stop ticking when they'are far from you, this mod may be useless for you too + OptimizeEntitiesTicking = true + #Range: > 1 + LivingEntitiesMaxHorizontalTickDistance = 64 + #Range: > 1 + LivingEntitiesMaxVerticalTickDistance = 32 + #If you don't want an entity to be affected by the optimization, you can write its registry name down here. + EntitiesWhitelist = ["minecraft:ender_dragon", "minecraft:ghast", "minecraft:wither", "minecraft:player", "alexsmobs:void_worm", "alexsmobs:void_worm_part", "alexsmobs:spectre", "twilightforest:naga", "twilightforest:lich", "twilightforest:yeti", "twilightforest:snow_queen", "twilightforest:minoshroom", "twilightforest:hydra", "twilightforest:knight_phantom", "twilightforest:ur_ghast", "atum:pharaoh", "mowziesmobs:barako", "mowziesmobs:ferrous_wroughtnaut", "mowziesmobs:frostmaw", "mowziesmobs:naga", "aoa3:skeletron", "aoa3:smash", "aoa3:baroness", "aoa3:clunkhead", "aoa3:corallus", "aoa3:cotton_candor", "aoa3:craexxeus", "aoa3:xxeus", "aoa3:creep", "aoa3:crystocore", "aoa3:dracyon", "aoa3:graw", "aoa3:gyro", "aoa3:hive_king", "aoa3:kajaros", "aoa3:miskel", "aoa3:harkos", "aoa3:raxxan", "aoa3:okazor", "aoa3:king_bambambam", "aoa3:king_shroomus", "aoa3:kror", "aoa3:mechbot", "aoa3:nethengeic_wither", "aoa3:red_guardian", "aoa3:blue_guardian", "aoa3:green_guardian", "aoa3:yellow_guardian", "aoa3:rock_rider", "aoa3:shadowlord", "aoa3:tyrosaur", "aoa3:vinecorne", "aoa3:visualent", "aoa3:voxxulon", "aoa3:bane", "aoa3:elusive", "gaiadimension:malachite_drone", "gaiadimension:malachite_guard", "blue_skies:alchemist", "blue_skies:arachnarch", "blue_skies:starlit_crusher", "blue_skies:summoner", "stalwart_dungeons:awful_ghast", "stalwart_dungeons:nether_keeper", "stalwart_dungeons:shelterer_without_armor", "dungeonsmod:extrapart", "dungeonsmod:king", "dungeonsmod:deserted", "dungeonsmod:crawler", "dungeonsmod:ironslime", "dungeonsmod:kraken", "dungeonsmod:voidmaster", "dungeonsmod:lordskeleton", "dungeonsmod:winterhunter", "dungeonsmod:sun", "forestcraft:beequeen", "forestcraft:iguana_king", "forestcraft:cosmic_fiend", "forestcraft:nether_scourge", "cataclysm:ender_golem", "cataclysm:ender_guardian", "cataclysm:ignis", "cataclysm:ignited_revenant", "cataclysm:netherite_monstrosity", "iceandfire:fire_dragon", "iceandfire:ice_dragon", "iceandfire:lightning_dragon", "iceandfire:dragon_multipart"] + #If you don't want entities of a mod to be affected by the optimization, you can write its modid down here + EntitiesModIDWhiteList = ["create", "witherstormmod"] + #With this turned on, all the raider won't stop ticking in raid chunks even if they are far from players (well this is not perfect as the raiders may walk out of the raid range) + TickRaidersInRaid = true + #Similar with entity whitelist, but only take effect in raid. + RaidEntitiesWhiteList = ["minecraft:witch", "minecraft:vex"] + #Similar with entity modID whitelist, but only take effect in raid + RaidEntitiesModIDWhiteList = [] + #Leave this empty for applying to all the dimensions + #Entities in these dimensions will be affected by the optimization + DimensionWhitelist = [] + #If this is enabled, tickable check will run a lot faster, but the entity will not die out of range + IgnoreDeadEntities = false + #If this is enabled, this mod will only work on passive entities. + IgnoreHostileEntities = false + #If this is enabled, this mod will only work on hostile entities. + IgnorePassiveEntities = false + +["Item Entities Tick Settings"] + #Slow down item entities' ticking speed by 1/4 + OptimizeItemMovement = false + #If you don't want to let a specific item entity in the world to be effected by the optimization, you can write its registry name down here. + #Require 'OptimizeItemMovement' to be true + ItemWhiteList = ["minecraft:cobblestone"] + +[Misc] + DisableOnClient = true + SendWarningMessageWhenPlayerLogIn = true + #If you disable this, entities near player bases may be affected. + DisableInActiveChunks = true + diff --git a/config/doggytalents-client.toml b/config/doggytalents-client.toml new file mode 100644 index 0000000..74cedc8 --- /dev/null +++ b/config/doggytalents-client.toml @@ -0,0 +1,139 @@ + +["Dog Render"] + #Enables the particle effect on Full Kami dogs. + enable_kami_particles = false + #Disable this if you want to force all PackPuppy Dog to not render their Chest. + render_chest = true + #Enable this if you prefer to have The Classical Skin rendered on all dog regardless. + always_render_classical = false + #When enabled, Dogs will show injured texture while incapacitated. + render_incapacitated_overlay = true + #When sneaking, a part of the dog's name will be rendered with a certain color + #, the length of the part is based on the health percentage the dog has left + render_health_in_name = true + #Configure what will be displayed in the middle of + #each of the info section (e.g Hunger, Gender, Mode) when rendering + #the Dog Status String located above the main Dog Name String. + dog_info_seperator = " · " + #Configure the format that will be used to display hunger value + #when rendering the Dog Status String located above the main + #Dog Name String. + dog_info_hunger_format = "%d" + #Render a universal dog inventory access button in your inventory gui. + #If this is turned off, you can still access the button via the dog's + #GUI in Talents > Pack Puppy. + dog_inv_button_in_inv = true + #Set a custom position for the universal dog inventory access button here. + #Can be utilized when the button overlaps with another mod's GUI feature or you + #simply prefer it being in a different position. + #This option only affects the Survival inventory screen. + #The position is the offset of the button is the offset from the top left corner + #of the box wrapping the whole inventory gui. + #Range: -500 ~ 500 + dog_inv_button_in_inv_x = 78 + #Range: -500 ~ 500 + dog_inv_button_in_inv_y = 48 + #If the default incapacitated texture proof too many graphics. + #You can substitute this friendlier texture instead. + render_incap_txt_less_graphic = false + #Render the dogs' name whose owner is not you with a different color. + render_diffowner_name_different = true + #Do not render dogs' names whose owner is not you. + render_diffowner_name_dont = false + #Always render dog nametags regardless even if the player blocks it by F1 mode. + always_render_dog_name = false + #Attempt to block third parties from rendering overlays that may conflict + #with DT's built-in tag. It is recommended that this be achieved via the target third-party's + #configurations if they have the option to disable nametag overlay for certain mobs + #(Which they should). This option should only be used as the last resort. + block_third_party_nametag = false + #By default, a copy of the Classical (Vanilla Wolf Texture) provided by the mod + #is used to render The Classical Skin, this is to avoid conflicts with resource packs + #like Fresh Animations which are directly using the in-game wolf texture. Turning this on + #will make DTN directly reference the in-game texture. + use_vanilla_res_for_classical = false + #Show a fun icon on world loading screen. + world_load_icon = true + #Move the world load icon to the right corner. + world_load_icon_r = false + #Set the world load icon offset from the corner. + #Range: -500 ~ 500 + world_load_icon_x = 0 + #Range: -500 ~ 500 + world_load_icon_y = 0 + #DTN's fun little world loading icon will occasionally + #show Ammy instead of Classical Pale. Disable this + #to force the icon to always show Classical Pale. + ammy_spinna = true + #Determine if dogs will render their armor. + render_armor = true + #Determine if dogs still render with a red overlay upon hurt like they usually do. + #This can be toggled on if the user prefers to not have the red overlay and relies on the animation + #to indicate hurting. + block_red_overlay_when_hurt = false + #Display extra smoke when the dog is on fire. + display_smoke_when_on_fire = true + #By default, dogs will render items in their mouth, regardless of models. + #This can be disabled if you prefer not to render it on some + #less compatible model. + mouth_item_force_render = true + #Specify the max latency allowed before force adjusting the animation time + #client side to sync with server's animation time. The unit is in ticks. + #Provide a non positive integer to disable this. Value from 0 to 7 both inclusive will be defaulted to 7. + #Range: > -2147483648 + max_animation_latency_allowed = 10 + #Currently, DTN is utilizing a new system for rendering Doggy Armor's Armor + #which allows DTN to directly use any texture which the armor item provided + #for the player, thus better replicating third-party armor. Set this to true + #if you prefer to use the old system instead. + use_legacy_dog_armor_render = false + #By default, DTN will try querying models from third parties designed for the player when + #rendering helmet on the Dog. Disable this to force DTN to use either vanilla's player model or + #DTN provided model designed for Dogs (specified by the below option). + use_third_party_player_helmet_model = false + #By default, if there is no custom Helmet Armor model for the Helmet Item, + #DTN will use its own helmet armor model designed for DTN Dog to + #render it on the Dog's head. Enable this to make DTN reuse the player's Helmet Model instead. + use_player_helmet_model_by_default = false + #Enable this to allow every World which is running on this Minecraft + #instance's Integrated Server to provide new players with a Starter Bundle + #regardless of the world's serverconfig. + enable_starter_bundle_by_default = false + #Some special Dog Variants may display some special effects + #clientside. Set this to false to disable this behaviour. + dog_variant_client_effect = true + #Disable this to prevent Radio Collars from being rendered in case if + #the server requires those or Locator Orb to be present to be tracked + #using the Canine Tracker and you prefer to make the tracker invisible. + render_radio_collar = true + #Always render Overlay Accessories on Dogs as Translucent + #This is to prevent Special Variant's overlay to override on the Overlay Accessories + translucent_all_overlay = true + #Enable this to hide Wolf Mount Dog's Status Overlay when riding it. + hide_wolf_mount_status = false + #Enable this to hide Wolf Mount Dog's Status Overlay when riding it in Creative. + hide_wolf_mount_status_creative = true + #Use DTN's Dedicated Wolf Mount Overlay when riding the Dog to show its + #status. This will takes up two health lines and will render where + #the Vanilla Vehicle Health is and instead of it. + dtn_wolf_mount_overlay = true + #Force DTN's Dedicated Wolf Mount Overlay to always render Dog + #Health and Dog Hunger in percentages. + #When disabled, these entries will be rendered as their absolute + #values and only if the max values of these entries exceed 3 digits, + #they will be rendered as percentages. + dtn_wolf_mount_overlay_percent = true + #By default, DTN will render your Dogs' Names through walls. Disable + #this to make Owned Dogs' Names no longer visible through walls. + show_dog_name_thru_wall = true + #Enable this if you want to automatically clear the Dog Bed Model + #Cache every time Tags is updated on client side. + dog_bed_clear_cache_auto = false + #Configure the maximum value of Dog Bed variants that will be rendered. + #If the amount of Dog Bed variants rendered exceeds this limit, + #other variants will be rendered as the default variant. + #To reset the cache, do a resource reload (F3+T). + #Set this option to any value less than zero to remove the limit. + #Range: > -2147483648 + max_dog_bed_model_cache = 65536 + diff --git a/config/doggytalents-dog_custom_skins_client.toml b/config/doggytalents-dog_custom_skins_client.toml new file mode 100644 index 0000000..a793f97 --- /dev/null +++ b/config/doggytalents-dog_custom_skins_client.toml @@ -0,0 +1,14 @@ +#Specify the Strategy to be used when picking which Dog Custom Skin +#will not be loaded clientside. The entry for these lists is +#required to be the texture's path in ResourceLocation format +#(e.g. doggytalents:textures/entity/dog/custom/arcanine_shiro.png). +#Your client do need to be restarted for any changes to take places. +#0: Allow all +#1: Allow all except blacklisted +#2: Disallow all except whitelisted +#Other: Defaulted to 0 +#Range: > -2147483648 +strategy = 0 +whitelisted_id = [] +blacklisted_id = [] + diff --git a/config/doubledoors.json5 b/config/doubledoors.json5 new file mode 100644 index 0000000..98c687d --- /dev/null +++ b/config/doubledoors.json5 @@ -0,0 +1,15 @@ +{ + // Whether the recursive opening feature should be enabled. This allows you to for example build a giant door with trapdoors which will all open at the same time, as long as they are connected. The 'recursiveOpeningMaxBlocksDistance' config option determines how far the function should search. + "enableRecursiveOpening": true, + // How many blocks the recursive function should search when 'enableRecursiveOpening' is enabled. + // min: 1, max: 64 + "recursiveOpeningMaxBlocksDistance": 10, + // When enables, the mod works with double doors. + "enableDoors": true, + // When enables, the mod works with double fence gates. + "enableFenceGates": false, + // When enables, the mod works with double trapdoors. + "enableTrapdoors": false, + // Checks if there are other mods loaded with double door functionality, such as Quark. If found, it edits a line in their config to disable double doors. Fixes doors not opening due to code being ran twice. + "enableModIncompatibilityCheck": true +} \ No newline at end of file diff --git a/config/drippyloadingscreen/options.txt b/config/drippyloadingscreen/options.txt new file mode 100644 index 0000000..ea0b3c4 --- /dev/null +++ b/config/drippyloadingscreen/options.txt @@ -0,0 +1,49 @@ +##[general] + +B:early_fade_out_elements = 'true'; +B:allow_universal_layouts = 'false'; +B:fade_out_loading_screen = 'false'; +B:wait_for_textures_in_loading = 'true'; + + +##[early_loading] + +I:early_loading_top_right_watermark_position_offset_y = '0'; +I:early_loading_bottom_left_watermark_position_offset_x = '0'; +I:early_loading_bottom_left_watermark_position_offset_y = '0'; +B:early_loading_hide_logger = 'false'; +I:early_loading_bar_width = '400'; +I:early_loading_bar_position_offset_y = '50'; +I:early_loading_top_right_watermark_height = '100'; +S:early_loading_bottom_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_right_watermark_position_offset_x = '0'; +S:early_loading_top_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_right_watermark_height = '100'; +I:early_loading_bar_position_offset_x = '0'; +I:early_loading_logo_height = '120'; +I:early_loading_top_right_watermark_width = '100'; +I:early_loading_bottom_right_watermark_position_offset_y = '0'; +I:early_loading_window_height = '-1'; +S:early_loading_bar_progress_texture_path = '/config/fancymenu/assets/some_bar_progress_image.png'; +I:early_loading_bottom_right_watermark_position_offset_x = '0'; +S:early_loading_background_texture_path = '/config/fancymenu/assets/some_image.png'; +B:early_loading_background_preserve_aspect_ratio = 'true'; +I:early_loading_top_left_watermark_width = '100'; +B:early_loading_hide_logo = 'false'; +S:early_loading_bar_background_texture_path = '/config/fancymenu/assets/some_bar_background_image.png'; +S:early_loading_logo_texture_path = '/config/fancymenu/assets/some_image.png'; +S:early_loading_bottom_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_left_watermark_position_offset_y = '0'; +I:early_loading_top_left_watermark_position_offset_x = '0'; +I:early_loading_logo_width = '480'; +S:early_loading_top_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_left_watermark_width = '100'; +I:early_loading_bottom_right_watermark_width = '100'; +I:early_loading_bottom_left_watermark_height = '100'; +I:early_loading_bar_height = '40'; +S:early_loading_window_title = 'Minecraft'; +I:early_loading_top_left_watermark_height = '100'; +I:early_loading_window_width = '-1'; +I:early_loading_logo_position_offset_y = '-50'; +B:early_loading_hide_bar = 'false'; +I:early_loading_logo_position_offset_x = '0'; \ No newline at end of file diff --git a/config/dtterralithconfig.toml b/config/dtterralithconfig.toml new file mode 100644 index 0000000..5183d63 --- /dev/null +++ b/config/dtterralithconfig.toml @@ -0,0 +1,11 @@ + +["Dynamic Trees + Terralith Compat Mod Config"] + #If "true", implements fix for terralith's winter skylands. + #Changes ordering of biome features to enable dynamic trees to generate. + #Defaults to "true". + skylands_winter_fix_entry = true + #If "true", implements fixes for failed tree cancellation in terralith biomes. + #Replaces tree features in biomes that tree cancellation has failed. + #Defaults to "true". + replace_tree_features_fix_entry = true + diff --git a/config/dungeon_crawl.toml b/config/dungeon_crawl.toml new file mode 100644 index 0000000..c466683 --- /dev/null +++ b/config/dungeon_crawl.toml @@ -0,0 +1,58 @@ + +["Miscellaneous Settings"] + #----------------------------------------------------------------------------------------------------+ + # Enables the dungeon crawl developer tools. Do not use this for normal gameplay. + # + enable_tools = false + #----------------------------------------------------------------------------------------------------+ + # Enables extended debug logging to help detecting errors. Enabled by default. + # + extended_debug = true + +["World Generation"] + #----------------------------------------------------------------------------------------------------+ + # When enabled, the dungeons will ignore caves instead of trying to adjust to them (by not generating specific blocks). + # + solid = false + #----------------------------------------------------------------------------------------------------+ + # Whether falling blocks like sand or gravel should drop down after being placed during dungeon generation. + # + tick_falling_blocks = true + +["Dungeon Settings"] + #----------------------------------------------------------------------------------------------------+ + # Whether the dungeons should have secret rooms or not. + # + secret_rooms = true + #----------------------------------------------------------------------------------------------------+ + # + #Whether the dungeons should generate at a fixed height or not. Enable this if the dungeons are generating too high. + fixed_generation_height = false + #----------------------------------------------------------------------------------------------------+ + # Whether loot tables of certain spawner entities should be overwritten. + # For example, wither skeletons from dungeon spawners will never drop skulls if this is enabled. + # + overwrite_entity_loot_tables = true + #----------------------------------------------------------------------------------------------------+ + # Whether the hell stage should be built with blocks from the overworld instead from the nether. + # + no_nether_blocks = false + #----------------------------------------------------------------------------------------------------+ + # The activation range for the spawners in the dungeons. + # + #Range: 1 ~ 64 + spawner_activation_range = 12 + #----------------------------------------------------------------------------------------------------+ + # The number of different entities per spawner. Increasing the number increases the diversity of the monster equipment. + # + #Range: 1 ~ 128 + spawner_entities = 6 + #----------------------------------------------------------------------------------------------------+ + # Whether custom mob spawners with equipment, etc.. should be used. + # + custom_spawners = true + #----------------------------------------------------------------------------------------------------+ + # Whether mobs from spawners should despawn naturally or not. + # + natural_despawn = true + diff --git a/config/durabilitytooltip-common.toml b/config/durabilitytooltip-common.toml new file mode 100644 index 0000000..6a08094 --- /dev/null +++ b/config/durabilitytooltip-common.toml @@ -0,0 +1,29 @@ +[Client] + # What should be the style of the tooltip? 'numbers' means 'Durability: 30 / 100', 'text' means 'Durability: pristine/slight damaged/nearly broken', 'bar' means 'Durability: [███▒▒▒▒▒▒▒]' + # Allowed values: BAR, NUMBERS, TEXT - Default: NUMBERS + tooltipStyle = "NUMBERS" + + # Should the tooltip include the 'Durability:' hint? + # Allowed values: true, false - Default: true + showTooltipHint = true + + # What colors should be used for the reactive part (numbers/text/bar characters) of the tooltip? 'base' means use the base color, 'gold' means always gold, 'varying' means green/orange/red depending on remaining durability. + # Allowed values: BASE, GOLD, VARYING - Default: VARYING + tooltipColorStyle = "VARYING" + + # What should be the base text color of the tooltip? + # Allowed values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET - Default: GRAY + baseTooltipColor = "GRAY" + + # Should the durability tooltip only be shown on vanilla tools? + # Allowed values: true, false - Default: false + onlyVanillaTools = false + + # Should the durability tooltip be shown when a tool is not damaged? + # Allowed values: true, false - Default: true + showWhenFull = true + + # Which mods should be blacklisted? Items from blacklisted mods won't show the durability tooltip. + # Allowed length: 0 ~ 100 - Default: 'tconstruct,supplementaries' + blackListedMods = "tconstruct,supplementaries" + diff --git a/config/dynamic_fps.json b/config/dynamic_fps.json new file mode 100644 index 0000000..fb9a4e0 --- /dev/null +++ b/config/dynamic_fps.json @@ -0,0 +1,18 @@ +{ + "enabled": true, + "unfocused": { + "frame_rate_target": 30, + "volume_multiplier": 0.5, + "run_garbage_collector": false + }, + "hidden": { + "frame_rate_target": 1, + "volume_multiplier": 0.0, + "run_garbage_collector": true + }, + "abandoned": { + "frame_rate_target": 1, + "volume_multiplier": 0.0, + "run_garbage_collector": true + } +} diff --git a/config/dynamic_lights_reforged.toml b/config/dynamic_lights_reforged.toml new file mode 100644 index 0000000..f91c83d --- /dev/null +++ b/config/dynamic_lights_reforged.toml @@ -0,0 +1,11 @@ + +#Dynamic Lights Settings +[Settings] + + [Settings."Lighting Settings"] + "Dynamic TileEntity Lighting" = false + "Only Update On Position Change" = true + #Allowed Values: OFF, SLOW, FAST, REALTIME + "Quality Mode (OFF, SLOW, FAST, REALTIME)" = "SLOW" + "Dynamic Entity Lighting" = true + diff --git a/config/dynamictrees-common.toml b/config/dynamictrees-common.toml new file mode 100644 index 0000000..1944039 --- /dev/null +++ b/config/dynamictrees-common.toml @@ -0,0 +1,30 @@ + +#Vanilla Trees Settings +[vanilla] + #Right clicking with a vanilla sapling places a dynamic sapling instead. + replaceVanillaSapling = false + #Crimson Fungus and Warped Fungus that sprout from nylium will be dynamic instead. + replaceNyliumFungi = true + #If enabled, cancels the non-dynamic trees that spawn with vanilla villages. + cancelVanillaVillageTrees = true + +#Miscellaneous Settings +[misc] + #If enabled, dirt bucket recipes will be automatically generated. + generateDirtBucketRecipes = true + #If enabled, seeds for mega species can be crafted with four regular seeds. + generateMegaSeedRecipe = false + #The base potion the Biochar Base is brewed from. Minecraft potions use 'awkward'. If you change this, don't forget to update the patchouli manual page too. + biocharBrewingBase = "thick" + +#Mod Integration Settings +[integration] + #The mod ID of preferred season mod. If a season provider for this mod ID is present, it will be used for integration with seasons. Set this to "!" to disable integration or "*" to accept the any integration (the first available). + preferredSeasonMod = "*" + #If enabled, seed drop rates will be multiplied based on the current season (requires serene seasons). + enableSeasonalSeedDropFactor = true + #If enabled, growth rates will be multiplied based on the current season (requires serene seasons). + enableSeasonalGrowthFactor = true + #If enabled, fruit production rates will be multiplied based on the current season (requires serene seasons). + enableSeasonalFruitProductionFactor = true + diff --git a/config/dynamictreesplus-common.toml b/config/dynamictreesplus-common.toml new file mode 100644 index 0000000..46fb603 --- /dev/null +++ b/config/dynamictreesplus-common.toml @@ -0,0 +1,8 @@ + +#Mushroom Settings +[mushroom] + #Only relevant if 'replaceVanillaSapling' to be set to TRUE in Dynamic Trees common config. If enabled mushrooms will be replaced by their dynamic counterparts as soon as they are placed. + replaceMushroomSaplingOnPlacement = false + #Only relevant if 'replaceVanillaSapling' to be set to TRUE in Dynamic Trees common config. If enabled mushrooms will be replaced by their dynamic counterparts when they grow into a giant mushroom. + replaceMushroomSaplingOnGrowth = true + diff --git a/config/easy_villagers-client.toml b/config/easy_villagers-client.toml new file mode 100644 index 0000000..bd1fa3f --- /dev/null +++ b/config/easy_villagers-client.toml @@ -0,0 +1,18 @@ + +[villager] + #If villagers should be able to be picked up by sneaking and right-clicking + sneak_pick_up = true + #The volume of every villager related sound in this mod + #Range: 0.0 ~ 1.0 + volume = 1.0 + #The location of the cycle trades button + #Allowed Values: TOP_LEFT, TOP_RIGHT, NONE + cycle_trades_button_location = "TOP_LEFT" + #Disables rendering any contents of the villager blocks when set to false + #Set to false if you have performance issues with the mod + render_block_contents = true + #The distance in blocks at which the block contents are rendered + #This has no effect if 'render_block_contents' is disabled + #Range: 1 ~ 256 + block_render_distance = 32 + diff --git a/config/ec_ars_plugin.toml b/config/ec_ars_plugin.toml new file mode 100644 index 0000000..9f1deeb --- /dev/null +++ b/config/ec_ars_plugin.toml @@ -0,0 +1,111 @@ +[sorcerer] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[sorcerer.durability] +toolDurability = 400 +bowDurability = 0 +addedShieldDurability = 0 + +[sorcerer.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 30 + +[sorcerer.offense] +addedAttackDamage = 1.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[sorcerer.defense] +gauntletArmorAmount = 1 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[sorcerer.crafting] +repairItem = ["ars_nouveau:magebloom_fiber"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[arcanist] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[arcanist.durability] +toolDurability = 500 +bowDurability = 0 +addedShieldDurability = 0 + +[arcanist.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 30 + +[arcanist.offense] +addedAttackDamage = 2.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[arcanist.defense] +gauntletArmorAmount = 2 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[arcanist.crafting] +repairItem = ["ars_nouveau:magebloom_fiber"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[battle_mage] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[battle_mage.durability] +toolDurability = 1650 +bowDurability = 0 +addedShieldDurability = 0 + +[battle_mage.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 30 + +[battle_mage.offense] +addedAttackDamage = 2.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[battle_mage.defense] +gauntletArmorAmount = 3 +armorToughness = 2.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[battle_mage.crafting] +repairItem = ["ars_nouveau:magebloom_fiber"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" diff --git a/config/ec_lec_plugin.toml b/config/ec_lec_plugin.toml new file mode 100644 index 0000000..bc565fb --- /dev/null +++ b/config/ec_lec_plugin.toml @@ -0,0 +1,222 @@ +[ignitium] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.15 +fireResistant = true +quiverSlots = 12 + +[ignitium.durability] +toolDurability = 2355 +bowDurability = 0 +addedShieldDurability = 450 + +[ignitium.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[ignitium.offense] +addedAttackDamage = 6.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[ignitium.defense] +gauntletArmorAmount = 6 +armorToughness = 4.0 +knockbackResistance = 0.15 +baseProtectionAmmount = 9.0 +afterBasePercentReduction = 0.9 + +[ignitium.crafting] +repairItem = ["cataclysm:ignitium_ingot"] +craftingItem = "" +isSingleAddition = true +onlyReplaceResource = ["Netherite"] +smithingTemplate = "cataclysm:ignitium_upgrade_smithing_template" +[witherite] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.0 +fireResistant = true +quiverSlots = 11 + +[witherite.durability] +toolDurability = 2409 +bowDurability = 0 +addedShieldDurability = 400 + +[witherite.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[witherite.offense] +addedAttackDamage = 5.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[witherite.defense] +gauntletArmorAmount = 4 +armorToughness = 3.5 +knockbackResistance = 0.12 +baseProtectionAmmount = 8.5 +afterBasePercentReduction = 0.875 + +[witherite.crafting] +repairItem = ["cataclysm:witherite_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[amethystCrabShell] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[amethystCrabShell.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 350 + +[amethystCrabShell.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[amethystCrabShell.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[amethystCrabShell.defense] +gauntletArmorAmount = 3 +armorToughness = 2.0 +knockbackResistance = 0.1 +baseProtectionAmmount = 6.5 +afterBasePercentReduction = 0.875 + +[amethystCrabShell.crafting] +repairItem = ["cataclysm:amethyst_crab_shell"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[cursium] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.15 +fireResistant = true +quiverSlots = 11 + +[cursium.durability] +toolDurability = 2409 +bowDurability = 0 +addedShieldDurability = 450 + +[cursium.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[cursium.offense] +addedAttackDamage = 5.5 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[cursium.defense] +gauntletArmorAmount = 5 +armorToughness = 4.0 +knockbackResistance = 0.05 +baseProtectionAmmount = 9.0 +afterBasePercentReduction = 0.9 + +[cursium.crafting] +repairItem = ["cataclysm:cursium_ingot"] +craftingItem = "" +isSingleAddition = true +onlyReplaceResource = ["Netherite"] +smithingTemplate = "cataclysm:cursium_upgrade_smithing_template" +[blackSteel] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[blackSteel.durability] +toolDurability = 750 +bowDurability = 0 +addedShieldDurability = 225 + +[blackSteel.enchanting] +offenseEnchantability = 25 +defenseEnchantability = 25 + +[blackSteel.offense] +addedAttackDamage = 2.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[blackSteel.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 4.0 +afterBasePercentReduction = 0.675 + +[blackSteel.crafting] +repairItem = ["cataclysm:black_steel_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[boneReptile] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[boneReptile.durability] +toolDurability = 1923 +bowDurability = 0 +addedShieldDurability = 0 + +[boneReptile.enchanting] +offenseEnchantability = 25 +defenseEnchantability = 15 + +[boneReptile.offense] +addedAttackDamage = 3.5 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[boneReptile.defense] +gauntletArmorAmount = 4 +armorToughness = 3.0 +knockbackResistance = 0.2 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[boneReptile.crafting] +repairItem = ["cataclysm:ancient_metal_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" diff --git a/config/ec_tf_plugin.toml b/config/ec_tf_plugin.toml new file mode 100644 index 0000000..446481d --- /dev/null +++ b/config/ec_tf_plugin.toml @@ -0,0 +1,259 @@ +[nagaScale] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.1 +fireResistant = false +quiverSlots = 0 + +[nagaScale.durability] +toolDurability = 537 +bowDurability = 0 +addedShieldDurability = 260 + +[nagaScale.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 15 + +[nagaScale.offense] +addedAttackDamage = 2.0999999046325684 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[nagaScale.defense] +gauntletArmorAmount = 3 +armorToughness = 0.5 +knockbackResistance = 0.0 +baseProtectionAmmount = 4.0 +afterBasePercentReduction = 0.65 + +[nagaScale.crafting] +repairItem = ["twilightforest:naga_scale"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[arctic] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[arctic.durability] +toolDurability = 131 +bowDurability = 0 +addedShieldDurability = 130 + +[arctic.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 8 + +[arctic.offense] +addedAttackDamage = 2.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[arctic.defense] +gauntletArmorAmount = 2 +armorToughness = 2.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.0 +afterBasePercentReduction = 0.55 + +[arctic.crafting] +repairItem = ["twilightforest:arctic_fur"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[yeti] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[yeti.durability] +toolDurability = 512 +bowDurability = 0 +addedShieldDurability = 250 + +[yeti.enchanting] +offenseEnchantability = 0 +defenseEnchantability = 15 + +[yeti.offense] +addedAttackDamage = 2.5 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[yeti.defense] +gauntletArmorAmount = 3 +armorToughness = 3.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.5 +afterBasePercentReduction = 0.65 + +[yeti.crafting] +repairItem = ["twilightforest:alpha_yeti_fur"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[ironwood] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 1.5 +fireResistant = false +quiverSlots = 0 + +[ironwood.durability] +toolDurability = 512 +bowDurability = 0 +addedShieldDurability = 250 + +[ironwood.enchanting] +offenseEnchantability = 25 +defenseEnchantability = 15 + +[ironwood.offense] +addedAttackDamage = 2.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[ironwood.defense] +gauntletArmorAmount = 2 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.5 +afterBasePercentReduction = 0.6 + +[ironwood.crafting] +repairItem = ["twilightforest:ironwood_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[fiery] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[fiery.durability] +toolDurability = 1024 +bowDurability = 0 +addedShieldDurability = 275 + +[fiery.enchanting] +offenseEnchantability = 10 +defenseEnchantability = 10 + +[fiery.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = true +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[fiery.defense] +gauntletArmorAmount = 4 +armorToughness = 1.5 +knockbackResistance = 0.0 +baseProtectionAmmount = 4.5 +afterBasePercentReduction = 0.7 + +[fiery.crafting] +repairItem = ["twilightforest:fiery_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[steeleaf] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[steeleaf.durability] +toolDurability = 131 +bowDurability = 0 +addedShieldDurability = 180 + +[steeleaf.enchanting] +offenseEnchantability = 9 +defenseEnchantability = 9 + +[steeleaf.offense] +addedAttackDamage = 3.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[steeleaf.defense] +gauntletArmorAmount = 3 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.5 +afterBasePercentReduction = 0.6 + +[steeleaf.crafting] +repairItem = ["twilightforest:steeleaf_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" +[knightmetal] +equipSound = "twilightforest:item.twilightforest.knightmetal_armor.equip" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[knightmetal.durability] +toolDurability = 512 +bowDurability = 0 +addedShieldDurability = 250 + +[knightmetal.enchanting] +offenseEnchantability = 8 +defenseEnchantability = 8 + +[knightmetal.offense] +addedAttackDamage = 3.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[knightmetal.defense] +gauntletArmorAmount = 3 +armorToughness = 1.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 4.0 +afterBasePercentReduction = 0.6 + +[knightmetal.crafting] +repairItem = ["twilightforest:knightmetal_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" diff --git a/config/eccentrictome-common.toml b/config/eccentrictome-common.toml new file mode 100644 index 0000000..3aae9ff --- /dev/null +++ b/config/eccentrictome-common.toml @@ -0,0 +1,20 @@ + +#Common configuration settings +[common] + #Allow all items to be added + allitems = false + #Disable overlay previewing tome conversion + disable_overlay = false + #Whitelisted items + items = ["tconstruct:materials_and_you", "tconstruct:puny_smelting", "tconstruct:mighty_smelting", "tconstruct:fantastic_foundry", "tconstruct:tinkers_gadgetry", "integrateddynamics:on_the_dynamics_of_integration", "evilcraft:origins_of_darkness", "cookingforblockheads:no_filter_edition", "alexsmobs:animal_dictionary", "occultism:dictionary_of_spirits", "theoneprobe:probenote", "compactmachines:personal_shrinking_device", "draconicevolution:info_tablet", "iceandfire:bestiary", "rootsclassic:runic_tablet", "enigmaticlegacy:the_acknowledgment", "ad_astra:astrodux", "wizards_reborn:arcanemicon"] + #Whitelisted names + names = ["book", "tome", "lexicon", "nomicon", "manual", "knowledge", "pedia", "compendium", "guide", "codex", "journal", "enchiridion", "grimoire"] + #Mod aliases + aliases = ["mythicbotany=botania", "integratedtunnels=integrateddynamics", "integratedterminals=integrateddynamics", "integratedcrafting=integrateddynamics", "rftoolsbuilder=rftoolsbase", "rftoolscontrol=rftoolsbase", "rftoolsdim=rftoolsbase", "rftoolspower=rftoolsbase", "rftoolsstorage=rftoolsbase", "rftoolsutility=rftoolsbase", "rftoolspower=rftoolsbase", "deepresonance=rftoolsbase", "xnet=rftoolsbase", "mysticalaggraditions=mysticalagriculture"] + #Blacklisted mods + exclude = [] + #Blacklisted items + exclude_items = ["apotheosis:boots_tome", "apotheosis:bow_tome", "apotheosis:chestplate_tome", "apotheosis:fishing_tome", "apotheosis:helmet_tome", "apotheosis:leggings_tome", "apotheosis:other_tome", "apotheosis:pickaxe_tome", "apotheosis:scrap_tome", "apotheosis:weapon_tome", "ars_nouveau:annotated_codex", "blue_skies:blue_journal", "darkutils:book_galactic", "darkutils:book_runelic", "darkutils:book_restore", "darkutils:tome_enchanting", "darkutils:tome_illager", "darkutils:tome_pigpen", "darkutils:tome_runelic", "darkutils:tome_sga", "darkutils:tome_shadows", "minecolonies:ancienttome", "minecraft:book", "minecraft:enchanted_book", "occultism:book_of_binding_afrit", "occultism:book_of_binding_bound_afrit", "occultism:book_of_binding_bound_djinni", "occultism:book_of_binding_bound_foliot", "occultism:book_of_binding_bound_marid", "occultism:book_of_binding_djinni", "occultism:book_of_binding_foliot", "occultism:book_of_binding_marid", "occultism:book_of_calling_djinni_manage_machine", "occultism:book_of_calling_foliot_cleaner", "occultism:book_of_calling_foliot_lumberjack", "occultism:book_of_calling_foliot_transport_items", "projecte:tome", "quark:ancient_tome", "tombstone:book_of_disenchantment", "tombstone:book_of_recycling", "tombstone:book_of_repairing", "tombstone:book_of_magic_impregnation"] + #Whitelisted item tags + include_item_tags = [] + diff --git a/config/eclipticseasons-client.toml b/config/eclipticseasons-client.toml new file mode 100644 index 0000000..9fed6fd --- /dev/null +++ b/config/eclipticseasons-client.toml @@ -0,0 +1,125 @@ + +[Debug] + #Show development-related metrics in the on-screen display. + DebugInfo = false + #Renders decorative snow edges on adjacent blocks for seamless terrain transitions. + SmoothSnowyEdges = false + #Visual effect: Surface water appears to be covered by a thin, cosmetic layer of ice. + FrozenWater = false + #If true, the thin ice layer on water can be broken by players/entities. + FrozenWaterBreakable = true + #Prevents the visual frozen water effect in areas with high light levels. + FrozenWaterCheckLight = true + #Experimental: Adds a cinematic fog effect during rainfall. + FoggyWeather = false + +[GUI] + #Show tooltips for ideal seasons and humidity levels on crop items. + AgriculturalInformation = true + #Show additional information regarding item usage or origins. + ItemInformation = true + #Whether to enable a simplified HUD overlay that displays the current season and solar term on the screen. + SimpleSeasonHud = false + #Display the standard Gregorian year instead of the solar calendar year. + ShowGregorianYear = false + +[Renderer] + #Periodically force-reloads chunk rendering to fix visual glitches (may impact FPS). + ForceChunkRenderUpdate = true + #(ForceChunkRenderUpdate) A more thorough reload that refreshes all chunk sections periodically. + EnhancementChunkRenderUpdate = false + #Optimized rendering: Cull the top face of a block if it is hidden by a snow model. + CullTopFaceWithSnow = false + #Refreshes the renderer state immediately after the player wakes up. + ResetRendererAfterSleep = false + #Use standard Vanilla light/sky rules to determine if snow should fall in a location. + UseVanillaSnowCheck = false + #Allow decorative snow overlays to appear under solid blocks (e.g., in shadows or under eaves). + SnowUnderShadow = false + #[Sodium/Embeddium] Renders a virtual snow layer inside fences and tall grass for a seamless look. + SnowInFence = false + #[Sodium/Embeddium] Minimum number of adjacent snow-covered blocks required to trigger the effect. + #Range: 1 ~ 8 + SnowInFenceCount = 2 + #[Sodium/Embeddium] Check all eight surrounding directions instead of just the cardinal four. + SnowInFenceDirection = false + #[Sodium/Embeddium] Render snow layers inside snow-connected fences only when in a snowy state. + SnowInFenceOnlySnowy = false + #[Sodium/Embeddium] Render an additional snow layer on blocks that already use the snowy model. + ExtraSnowLayer = false + #[Sodium/Embeddium] Maxmum number of additional snow layer on blocks. + #Range: 0 ~ 8 + ExtraSnowLayerMaxLayers = 2 + #[Sodium/Embeddium] Maxmum number of additional snow layer on leave blocks. + #Range: 0 ~ 8 + ExtraSnowLayerMaxLayersOnLeaves = 1 + #[Sodium/Embeddium] Culling extra fake snow layer for necessary. + ExtraSnowLayerCulling = true + #Apply seasonal color shifts to grass and leaf textures. + SeasonalGrassColorChange = true + #Extend seasonal color shifts to birch, spruce, and mangrove leaves. + SeasonalColorChangeExtend = true + #Visual detail: Adds a brownish, withered foliage effect under trees during Autumn. + FoliageUnderTree = false + #Custom seasonal colors for single-tint blocks only. + #Format: "block_id@color1,color2,...,colorN,placeholder_color,base_color" + #The number of colors (N) must be a factor of 24 (e.g., 4, 12, or 24). + #- 4 colors: Seasonal (6 terms each) + #- 12 colors: Monthly (2 terms each) + #The 'placeholder_color' maps to index 24; 'base_color' is the final reference hex. + SeasonalColorOverrides = ["minecraft:spruce_leaves@#96C24E|0.024,#96C24E|0.096,#96C24E|0.18,#96C24E|0.21600002,#96C24E|0.14400001,#96C24E|0.120000005,#5BAE23|0.120000005,#5BAE23|0.072000004,#000000|0.0,#5BAE23|0.120000005,#5BAE23|0.060000002,#000000|0.0,#BEC936|0.060000002,#BEC936|0.120000005,#BEC936|0.14400001,#BEC936|0.18,#BEC936|0.21600002,#BEC936|0.14400001,#253D24|0.21600002,#253D24|0.24000001,#253D24|0.3,#253D24|0.18,#253D24|0.096,#253D24|0.060000002,#000000|0.0,#619961"] + #Calculate seasonal color shifts based on exact solar term progress for smoother transitions. + SmootherSeasonalGrassColorChange = true + #Visual detail: Occasionally adds small, decorative flowers to grass blocks in Spring. + FlowerOnGrass = true + +[Sound] + #Enable ambient environmental sounds (birds, wind, etc.) based on the season. + NaturalSound = true + +[Particle] + #Enable seasonal particles like butterflies, fireflies, and falling leaves. + SeasonalParticles = true + #Spawns butterflies over flowers during Spring. + Butterfly = true + #Density between butterfly spawns. Higher values result in fewer butterflies. + #Range: 1 ~ 10000 + ButterflySpawnDelay = 10 + #Leaf blocks will drop falling leaf particles, peaking in frequency during Autumn. + FallenLeaves = true + #Density between leaf particles. Higher values result in fewer leaves falling. + #Range: 1 ~ 10000 + FallenLeavesDropDelay = 10 + #Spawns fireflies near flowers during Summer evenings. + Firefly = true + #Density between firefly spawns. Higher values result in fewer fireflies. + #Range: 1 ~ 10000 + FireflySpawnDelay = 10 + #Visual effect: Displays wild geese flying south during autumnal transitions. + WildGoose = true + #Density between wild goose sightings. Higher values result in fewer sightings. + #Range: 1 ~ 10000 + WildGooseSpawnDelay = 10 + #Emits soft ambient particles when the Season Core or Greenhouse is active. + SeasonGreenhouse = true + #Density of particles emitted by the Greenhouse effect. + #Range: 0 ~ 160 + SeasonGreenhouseParticleSpawnCount = 30 + #Breaking snow-covered leaves will release a burst of snow particles. + SnowLeafParticles = true + +[Weather] + #When enabled, Ecliptic Seasons may adjust rain and snow particle textures when needed. + TweakPrecipitationParticleTexture = true + +[Compat] + + [Compat.Oculus] + #Harmonizes shading parameters for all snow-covered surfaces when using shaders. + UnifiedSnowyBlockShading = true + + [Compat.DistantHorizons] + #Force Distant Horizons to refresh all LODs timely. + #WARNING: Enabling this may cause a full LOD rebuild and significant lag spikes. + DistantHorizonsWinterLODForceUpdateAll = false + diff --git a/config/eclipticseasons-common.toml b/config/eclipticseasons-common.toml new file mode 100644 index 0000000..e8762ee --- /dev/null +++ b/config/eclipticseasons-common.toml @@ -0,0 +1,237 @@ + +[Season] + #The duration of a single Solar Term in Minecraft days. + #Logic: 1 Year = 4 Seasons | 1 Season = 6 Solar Terms. + #Range: 1 ~ 5000 + LastingDaysOfEachTerm = 7 + #The index of the Solar Term when the world is first created (1-24). + #Range: 1 ~ 24 + InitialSolarTermIndex = 4 + #Shifts the displayed month index. This does NOT affect internal solar term calculations. + #Range: -11 ~ 11 + MonthOffset = 1 + #Shifts the calendar day relative to solar terms. Example: 2 means solar day 0 appears as the 3rd day of the month. + #Range: -64 ~ 64 + DayOffset = 2 + #Display a chat message whenever the Solar Term changes. + EnableInform = true + #Include a custom icon in the change notification for better visibility. + EnableInformIcon = true + #Synchronize the in-game calendar and seasonal data with the server/client local time. + EnableLocalInfoAndCalendar = false + #Show a tooltip or message if a calendar item cannot be placed in the current location. + CalendarItemHint = false + #Adjust daylight duration based on the time of year (longer in Summer, shorter in Winter). + DynamicDaylightDuration = true + #List of dimension IDs where seasonal effects should be active. + ValidDimensions = ["minecraft:overworld"] + #Daylight length in Ticks for each of the 6 Solar Terms in Spring. + SpringDayTimes = [10500, 11000, 11500, 12000, 12500, 13000] + #Daylight length in Ticks for each of the 6 Solar Terms in Summer. + SummerDayTimes = [13500, 14000, 14500, 15000, 14500, 14000] + #Daylight length in Ticks for each of the 6 Solar Terms in Autumn. + AutumnDayTimes = [13500, 13000, 12500, 12000, 11500, 11000] + #Daylight length in Ticks for each of the 6 Solar Terms in Winter. + WinterDayTimes = [10500, 10000, 9500, 9000, 9500, 10000] + #Default daylight length in Ticks when no seasonal effects are active. + NoneDayTimes = [12000] + #Introduces random yearly variations to the snowfall date for unpredictability. + DynamicSnowTerm = false + #Sync in-game seasons with the real-world date. + #Warning: May cause day-counter or calendar conflicts with other mods. + RealWorldSolarTerms = false + +[Weather] + #Enable localized weather patterns where rain or sun is determined per-biome. + UseSolarWeather = true + #Disable rain/snow in biomes with no natural precipitation (e.g., Deserts). + NoRainInDeserts = false + #Force initialize weather and snow states when the mod or world is first loaded. + ShouldInitWeather = false + #Force initialize snow states for extreme cold biomes when the mod or world is first loaded. + ShouldInitSnowDepthForExtremeColdBiomes = true + #Adjust the overall frequency of rain. + #Range: 0 ~ 1000 + RainChanceMultiplier = 120 + #Adjust the overall frequency of thunder. + #Range: 0 ~ 1000 + ThunderChanceMultiplier = 80 + #Adjusts the spread rate of atmospheric snow overlays across the ground. + #Range: 0.0 ~ 20.0 + SnowAccumulationSpeedMultiplier = 1.0 + #Adjusts the recession speed of atmospheric snow overlays during warmer periods. + #Range: 0.0 ~ 20.0 + SnowMeltSpeedMultiplier = 1.0 + #Automatically reset weather to clear after the player wakes up from a bed. + ClearAfterSleep = false + +#This module governs how seasonal temperature shifts affect the physical world and the player. +[Temperature] + #Allow accumulated snow layers and ice to melt as the temperature rises. + IceAndSnowMelt = false + #Allow natural snowfall and snow accumulation during cold periods. + IceAndSnow = false + #If enabled, water in frozen biomes follows vanilla behavior and turns into ice. + WaterFreezesInFrozenBiomes = true + #Prevents physical snow from melting in naturally snowy biomes, even during hot seasons. + SnowKeepInSnowyBiomes = true + #Apply a 'Heatstroke' status effect if players stay in hot biomes during Summer noon. + HeatStroke = true + +[Crop] + #Restrict plant growth based on their compatible seasons. + EnableSeasonalCrop = true + #Restrict plant growth based on local environmental humidity. + EnableCropHumidityControl = true + #Smooths out humidity changes between different areas or time periods. + CropHumidityTransition = true + #Bone meal may fail under unsuitable growing conditions. + RestrictBoneMeal = true + #Show a message if bone meal fails to work due to incorrect season or humidity. + BoneMealFailureMessage = true + #Consume the bone meal item even if the growth attempt fails. + BoneMealConsumeOnFailure = true + #The horizontal detection radius for the Greenhouse. + #Range: 5 ~ 256 + GreenHouseMaxDiameter = 32 + #The vertical detection height for the Greenhouse. + #Range: 3 ~ 128 + GreenHouseMaxHeight = 10 + #Probability (per tick) that greenhouse crops fail to grow due to low light levels. + #Range: 0 ~ 10000 + LowLightGreenhouseFailChance = 2000 + #Simplifies greenhouse logic, removing the need for core blocks or humidity modifiers. + SimpleGreenHouseMode = false + #If true, the Humidifier block will not consume resources during operation. + NoCostHumidifier = false + #The effective radius of the 'Season Core' block. + #Range: 4 ~ 31 + SeasonCoreRange = 15 + #Enables more precise shape detection for greenhouse structures. + ComplexGreenHouseCheck = true + #Use Manhattan distance (square) instead of Euclidean (circle) for greenhouse range. + UseBoxDistance = true + #[Deprecated] Use default seasonal/humidity values for unregistered crops. + RegisterCropDefaultValue = false + #Force all plants to follow growth rules, even those without specific mod tags. + ForceCompatMode = true + #Apply patch withering code for crop leave blocks if tick failed. + CropLeavesPatch = true + #Saves local humidity data to chunk files for persistent tracking. + SaveChunkEnvironmentalHumidity = true + #Adjusts the power of the Seasonal Prayer Ritual. Higher values result in lower bonuses. + #Range: > 5 + SeasonalPrayerRitualCropBonusReduction = 500 + #The duration required for the Prayer Ritual (relative to one Solar Term). + #Range: 1.0E-5 ~ 5000.0 + SeasonalRitualTimeCost = 0.15 + #Uses the classic chat-message display for the growth detector instead of the new in-world UI. + GrowthDetectorClassicMode = false + #Whether Wandering Traders can sell Seasonal Greenhouse Essence. + WanderingTraderSellsGreenhouseEssence = true + #The effective radius of the 'Humid Tank' block. + #Range: 2.0 ~ 16.0 + HumidityTankRange = 4.5 + +[Animal] + #Limit animal breeding to their natural, compatible seasons. + EnableSeasonalBreed = false + #Restrict breeding to specific hours of the day. + EnableTimeBreed = false + #Bees become inactive during cold seasons and active during warm ones. + EnableSeasonalBee = false + #List of seasons where bees are allowed to pollinate plants. + #Default: [SPRING] + BeePollinateSeasons = ["SPRING"] + #List of seasons where bees will leave the hive to fly around. + #Default: [SPRING, SUMMER, AUTUMN] + BeeActiveSeasons = ["SPRING", "SUMMER", "AUTUMN"] + #Modify fishing mechanics based on the current season (e.g., Summer bonuses). + EnableSeasonalFishing = false + #List of seasons where fishing is most effective. + #Default: [SUMMER] + FishingSeasons = ["SUMMER"] + #Decrease the bite rate significantly during active thunderstorms. + LessFishInThunder = false + #Allow the Season Core to provide breeding bonuses to animals without a greenhouse. + SeasonCoreAffectsAnimals = true + +[Map] + #Synchronize all map color rendering with visual snow overlays. May affect compatibility with other mods. + ChangeMapColorIfSnowy = false + #Only adjust map item colors to reflect visual snow overlays. Safer for mod compatibility. + ChangeMapColorMapItem = true + +#Snow overlays are visual, atmospheric effects and are distinct from physical snow blocks. +[Snow] + #Controls atmospheric snow overlays during cold weather. Visual snow gradually covers solid blocks and grass, even in warmer biomes. + SnowyWinter = true + #Apply frost and snow overlays to the undersides of leaves and tree branches. + SnowyTree = true + #Prevents snow overlays from building up near blocks that emit significant light. + NotSnowyNearGlowingBlock = true + #The minimum light level required to prevent snow accumulation. + #Range: 1 ~ 15 + NotSnowyNearGlowingBlockLevel = 10 + #List of Block IDs that will never be covered by snow overlays. + ForceBlocksNotSnowy = [] + #Set custom snow-line altitudes for biomes (e.g., ["#c:is_cold", 200]). + BiomeSnowLines = [] + #Track snow based on exact world coordinates (allows for localized snow clearing). + SnowInWorld = false + #(SnowInWorld) Sync chunk snow overlay states immediately when they are loaded. + ForceSnowyChunkUpdate = true + #(SnowInWorld) Only force chunk snow overlays sync when the weather is warm enough for snow to melt. + ForceChunkUpdateOnlyWhenMelt = false + #(SnowInWorld) Render snow overlays on the sides of blocks located beneath a snow layer block. + SnowCoverUnderBlocks = true + #(SnowInWorld) Snow layers have a chance to melt when entities walk over them. + SnowStepMelt = false + +[Compat] + #Enables compatibility with mods that utilize Serene Seasons' CropTag system. + SereneSeasonsCropTag = true + #Excludes saplings from Serene Seasons' seasonal growth restrictions. + #Set to false to force saplings to follow the same seasonal rules as crops. + SereneSeasonsCropTagIgnoreSapling = true + #Automatically assigns humidity requirements to crops based on their Serene Seasons seasonal tags. + SereneSeasonCropTagBasedHumidity = true + #A blacklist of Mod IDs whose crops should NOT receive automatic humidity assignments. + #Example: ["vinery", "meadow"] + ModsWithoutSereneSeasonBasedHumidity = [] + #Intercepts raw biome precipitation queries to ensure small biomes (like rivers) do not disrupt large-scale weather logic. + FixBiomePrecipitation = true + #Show crop growth diagnostics in Jade or TOP. + ShowCropGrowthInfoInProbe = true + #Enables winter-themed Level of Detail (LOD) textures for Distant Horizons to ensure visual consistency at long distances. + DistantHorizonsWinterLOD = true + +[Debug] + #Force using server synchronized config when joining a multiplayer server. + #If disabled, client keeps its own local config when exit. + ForceServerConfig = true + #Log errors when internal functions are used incorrectly. + LogIllegalUse = false + #Prevent snow overlays from rendering under blocks with zero light emission. + NoSnowyUnderLight0 = false + #Allow snow overlays to cover light-emitting blocks. + SnowOverlayGlowingBlock = false + #Keep chunk extra info in memory (disables the cache cleaner). + DisableChunkCacheCleaner = false + #Prevent biome tags from being rebound (may lead to tag overlapping). + DisableUniqueBiomeTagsRebinding = false + #Cauldrons will no longer collect snow or ice during winter weather. + DisableIceOrSnowCauldron = false + +[Resource] + #Enable extra built-in snow definitions resourcepack for game. + ExtraSnowDefinitions = false + #Synchronizes the snowfall schedule for all Overworld biomes. + SnowTogether = false + #Aligns snowfall schedules based on three broad climate zones (Warm, Temperate, and Cold) instead of per-biome. + RegionalSnowTime = true + #Enforces original Vanilla temperature and precipitation settings to prevent other mods from creating extreme environmental values. + VanillaBiomeClimateSettings = true + #When enabled, rivers are no longer treated as ignored climate zones. This reduces performance overhead but may result in less natural weather transitions near riverbanks. + IndependentRiverWeather = true + diff --git a/config/eclipticseasons-mixins.toml b/config/eclipticseasons-mixins.toml new file mode 100644 index 0000000..4a4cca3 --- /dev/null +++ b/config/eclipticseasons-mixins.toml @@ -0,0 +1,100 @@ + +[common] + + [common.biome] + MixinBiome = true + + [common.block] + MixinBlockState = true + MixinBlockStateBase = true + MixinFallingBlock = true + MixinIBlockExtension = true + MixinLayeredCauldronBlock = true + + [common.chunk] + MixinChunkAccess = true + MixinImposterProtoChunk = true + MixinLevelChunk = true + + [common.command] + MixinWeatherCommand = true + + [common.entity] + MixinEntity = true + MixinLivingEntity = true + + [common.item] + MixinMapItem = true + + [common.level] + MixinDimensionType = true + MixinHeightmap_Types = true + MixinLevel = true + MixinLevelTimeAccess = true + MixinServerLevel = true + + [common.wg] + MixinSurfaceSystem = true + +[data] + MixinsRegistriesDatapackGenerator = true + RegistrySetBuilderMixin = true + +[game] + MixinBee_BeePollinateGoal = true + MixinBeehiveBlockEntity = true + MixinBreedGoal = true + MixinCow = true + MixinFishingHook = true + +[client] + MixinClientClientLevel = true + MixinMinecraftClient = true + + [client.biome] + MixinBiomeColors = true + MixinClientBiome = true + + [client.model] + MixinModelBakery = true + MixinModelManager = true + MixinMultiPart = true + MixinSpriteLoader = true + + [client.render] + MixinGameRenderer = true + MixinLevelRender = true + + [client.render.chunk] + MixinBlockRenderVanilla = true + MixinChunkRenderDispatcher = true + MixinChunkSlice = true + MixinRenderRegionCache = true + + [client.sound] + MixinLocalPlayer = true + MixinMusicManager = true + +[compat] + + [compat.distanthorizons] + MixinAbstractDhTintGetter = true + MixinClientLevel = true + MixinFullDataToRenderDataTransformer = true + MixinQuadTree = true + + [compat.embeddium] + MixinBlockOcclusionCache = true + MixinBlockRender2 = true + MixinBlockRenderTask = true + MixinChunkSlice = true + MixinClonedChunkSection = true + + [compat.oculus] + MixinBiomeUniforms = true + MixinIrisForgeHelpers = true + + [compat.fabric_renderer_indigo] + MixinBlockRenderer = true + MixinFabricVanillaModelEncoder = true + diff --git a/config/eclipticseasons_bundles-common.toml b/config/eclipticseasons_bundles-common.toml new file mode 100644 index 0000000..1d791f5 --- /dev/null +++ b/config/eclipticseasons_bundles-common.toml @@ -0,0 +1,25 @@ + +#Adds seasonal and humidity rules for crops. +#Snow-covered models for grass, bamboo, and leaves, with autumnal color adjustments for themed biomes. +[es_x_ru] + #Enable compat package es_x_ru + Enable = true + #This package will be loaded first. + PriorityLoading = false + +#Integrates Let's Do series with Ecliptic Seasons. +#Adds seasonal and humidity rules for crops, animals, and landscapes, enhancing immersion. +[es_x_letsdo] + #Enable compat package es_x_letsdo + Enable = true + #This package will be loaded first. + PriorityLoading = false + +#Adjusts crops and plants for Biomes O' Plenty. +#Removes seasonal requirements for saplings and mushrooms, adds humidity rules, snow-covered variants, and preserves biome colors. +[es_x_bop] + #Enable compat package es_x_bop + Enable = true + #This package will be loaded first. + PriorityLoading = false + diff --git a/config/eclipticseasons_multimodpatch-client.toml b/config/eclipticseasons_multimodpatch-client.toml new file mode 100644 index 0000000..a5a8414 --- /dev/null +++ b/config/eclipticseasons_multimodpatch-client.toml @@ -0,0 +1,6 @@ + +#Ambient Sounds +#The mod is no longer maintained for version 1.20, so we need a mixin to make the sounds work properly during snowfall. +[ambientsounds] + Enable = true + diff --git a/config/eclipticseasons_multimodpatch-common.toml b/config/eclipticseasons_multimodpatch-common.toml new file mode 100644 index 0000000..ed43f4c --- /dev/null +++ b/config/eclipticseasons_multimodpatch-common.toml @@ -0,0 +1,18 @@ + +#Xaero's World Map +[xaeroworldmap] + Enable = true + +#Xaero's Minimap +[xaerominimap] + Enable = true + +#DynamicTrees +[dynamictrees] + Enable = true + +#Stardew Fishing +[stardew_fishing] + Enable = true + DisableMiniGameIfNotPassCheck = true + diff --git a/config/effectdescriptions-client.toml b/config/effectdescriptions-client.toml new file mode 100644 index 0000000..6af6c37 --- /dev/null +++ b/config/effectdescriptions-client.toml @@ -0,0 +1,21 @@ +#Add the internal id of an effect to effect widget tooltips. +add_internal_id_to_widget_tooltips = false +#Add the effect name and duration to every effect widget tooltip, even if the widget already contains both. +always_add_effect_name_to_tooltips = true +#Amount of spaces to add at the beginning of an effect description. +#Range: > 0 +description_indentation = 0 +#Items that should support descriptions for the effects on their inventory tooltip. +#Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. +effect_description_items_raw = ["minecraft:potion", "minecraft:splash_potion", "minecraft:lingering_potion", "minecraft:tipped_arrow", "minecraft:suspicious_stew"] +#Only reveal effect descriptions for items while any shift key is held. +hold_shift_for_item_descriptions = false +#Add effect descriptions to effect widget tooltips in the survival and creative inventory screens. +add_descriptions_to_widget_tooltips = true +#Add the name of the mod that added an effect to effect widget tooltips. +add_mod_name_to_widget_tooltips = false +#Add effect descriptions to item tooltips. +add_descriptions_to_item_tooltips = false +#Add attributes granted by an effect to effect widget tooltips. +add_attributes_to_widget_tooltips = true + diff --git a/config/eidolon-client.toml b/config/eidolon-client.toml new file mode 100644 index 0000000..819cf6f --- /dev/null +++ b/config/eidolon-client.toml @@ -0,0 +1,15 @@ + +#Graphics settings +[graphics] + #Enable better particle/effect layering. + #Fixes particles and effects rendering behind clouds and weather. + #NOTE: Does NOT work with fabulous graphics mode. + betterLayering = true + +#UI settings +[ui] + #Onscreen positioning of the magic power meter. + manaBarPosition = "top" + #Orientation of the magic power meter. + manaBarOrientation = "default" + diff --git a/config/eidolon-common.toml b/config/eidolon-common.toml new file mode 100644 index 0000000..8c9d222 --- /dev/null +++ b/config/eidolon-common.toml @@ -0,0 +1,21 @@ + +#Generic settings +[generic] + #Duration in ticks of each step of a crucible recipe. + #Range: 20 ~ 1200 + crucibleStepDuration = 100 + #Makes it so that the Crucible will not fizzle out unless the recipe has failed, giving players more time to organize and plan their next step and behave more like a turn-based recipe. + turnBasedCrucible = false + #For turn-based Crucible, duration in ticks between each recipe check once the step duration expired. + crucibleBackoff = 40 + #Maximum amount of ethereal health (soul half-hearts) an entity can have at once. + #Range: 0 ~ 1000 + maxEtherealHealth = 60 + +#Soul Enchanter +[soulEnchanter] + #How often the Soul Enchanter can apply enchantments on an item (a value below 0 means unlimited) + soulEnchanterMaximumUses = -1 + #How many enchantments the item is allowed to have to be applicable for soul enchanting (a value below 0 means unlimited) + soulEnchanterMaximumEnchantments = -1 + diff --git a/config/embeddium-fingerprint.json b/config/embeddium-fingerprint.json new file mode 100644 index 0000000..2ec3e99 --- /dev/null +++ b/config/embeddium-fingerprint.json @@ -0,0 +1 @@ +{"v":1,"s":"6b7689ccf6f5a734588a9218d907c7c66374d8b4120548afe7a804945cc02a070a8ed72cb19fe610873f45f6adc80f86773dbcb34cadbb4223cee486b11895db","u":"df1a9edd637dcf660bf20c371c08b2ee81e9ac71885e7e000a4ea6272d51267bf34e47f2acf12695a4ea0efd75365d3119e905024d2fa2a5c87c1bf1eb1d4217","p":"bce56a247e2b6e22f4e9d6835a6e2a5d70bdb8504f7a493f643a3488dab3c61e02dc8f08866b179d8ac03f5ce9f7624edd2543f81ff43ef0982e9c3da18ebc78","t":1782423791} \ No newline at end of file diff --git a/config/embeddium-mixins.properties b/config/embeddium-mixins.properties new file mode 100644 index 0000000..4e10829 --- /dev/null +++ b/config/embeddium-mixins.properties @@ -0,0 +1,6 @@ +# This is the configuration file for Embeddium. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/embeddium-options.json b/config/embeddium-options.json new file mode 100644 index 0000000..7518ed1 --- /dev/null +++ b/config/embeddium-options.json @@ -0,0 +1,30 @@ +{ + "quality": { + "weather_quality": "FANCY", + "leaves_quality": "FANCY", + "enable_vignette": true, + "use_quad_normals_for_shading": true + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "disable_incompatible_mod_warnings": false, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 8, + "always_defer_chunk_updates_v2": true, + "animate_only_visible_textures": true, + "use_entity_culling": true, + "use_fog_occlusion": false, + "use_block_face_culling": true, + "use_compact_vertex_format": true, + "use_translucent_face_sorting_v2": false, + "use_no_error_g_l_context": true + }, + "notifications": { + "force_disable_donation_prompts": false, + "has_cleared_donation_button": true, + "has_seen_donation_prompt": true + } +} \ No newline at end of file diff --git a/config/enchantinginfuser-server.toml b/config/enchantinginfuser-server.toml new file mode 100644 index 0000000..59ee366 --- /dev/null +++ b/config/enchantinginfuser-server.toml @@ -0,0 +1,204 @@ + +[advanced_infuser] + #Can the enchanting infuser repair items using levels in addition to enchanting. + #Allowed Values: EVERYTHING, TOOLS_AND_ARMOR, NOTHING + allow_repairing = "TOOLS_AND_ARMOR" + #Allow enchantments on an already enchanted item to be increased / removed. + #Allowed Values: UNENCHANTED, ALL, FULL_DURABILITY + allow_modifying_enchantments = "ALL" + #How many bookshelves you need around the infuser to be able to apply maximum level enchantments. + #Filling in corners is important to reach higher values. + #Setting very high values may require modded bookshelves that provide more than one enchanting power per block (such as Apotheosis' bookshelves). + #This value will be fixed at 50 when Apotheosis is installed. + #Range: > 0 + maximum_bookshelves = 15 + #Working an item in an infuser increases the prior work penalty stat used by anvils for that item, meaning future anvil repairs will become more expensive, possibly even too expensive. + increase_anvil_repair_cost = false + #Allow books to be enchanted in an infuser. + allow_books = true + + [advanced_infuser.types] + #Allow curses (e.g. curse of vanishing) to be applied using the enchanting infuser. + #This option takes precedence over option for treasure enchantments (as curses are also treasure enchantments internally). + allow_curses_enchantments = false + #Allow treasure enchantments (e.g. mending) to be applied using the enchanting infuser. + allow_treasure_enchantments = false + #Allow untradeable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure and curse enchantments. + allow_untradeable_enchantments = false + #Allow enchantments that can normally not be obtained from an enchanting table, but can be put on the item in an anvil (e.g. sharpness on an axe). + allow_anvil_enchantments = true + #Allow undiscoverable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure, curse and tradeable enchantments. + allow_undiscoverable_enchantments = false + + [advanced_infuser.repair] + #Cost multiplier in levels for each repair step, result will be rounded up. + #Range: 0.0 ~ 1.7976931348623157E308 + repair_step_multiplier = 2.0 + #How many percentage points of an items total durability a single repair will restore. + #Range: 0.1 ~ 1.0 + repair_percentage_step = 0.25 + + #The main option in this section is "maximum_cost" as it determines how many levels you'll have to pay for fully enchanting an item with all possible enchantments it can have. + #Cost multipliers mainly control how this maximum cost will be spread out between enchantments of different rarities. + [advanced_infuser.costs] + #Base cost multiplier for each level for very rare enchantments. + #Range: > 1 + very_rare_cost_multiplier = 5 + #Double prices for enchantments normally unobtainable from enchanting tables if they are enabled (e.g. mending, soul speed) when they are enabled. + double_uniques = true + #Base cost multiplier for each level for rare enchantments. + #Range: > 1 + rare_cost_multiplier = 4 + #Cost level to scale prices by. This is not a strict value, meaning it can be exceeded (e.g. when applying treasure enchantments). + #Range: > 1 + maximum_cost = 20 + #When scaling costs, only account for vanilla enchantments. Otherwise enchanting costs will become ludicrously cheap with many modded enchantments present. + scale_costs_by_vanilla_only = true + #Base cost multiplier for each level for uncommon enchantments. + #Range: > 1 + uncommon_cost_multiplier = 3 + #Base cost multiplier for each level for common enchantments. + #Range: > 1 + common_cost_multiplier = 2 + + #This section allows for controlling at what percentage of the total enchanting power certain kinds of enchantments become available. + #With default settings e.g. the first level of a rare enchantment will be available at 40% enchanting power (controlled by "rare_multiplier", translates to 40% * 15 = 6 bookshelves), and the maximum level for that enchant will be available at 40% + 40% = 80% enchanting power (controlled by "rare_multiplier" and "rarity_range_multiplier", translates to 80% * 15 = 12 bookshelves). + [advanced_infuser.power] + #Multiplier for maximum enchanting power for when rare enchantments become available. + #Range: -1.0 ~ 1.0 + rare_multiplier = 0.4 + #Multiplier for maximum enchanting power for when untradeable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + untradeable_multiplier = 0.9 + #Multiplier for maximum enchanting power for how much power is required to max out an enchantment. + #Range: 0.0 ~ 1.0 + rarity_range = 0.4 + #Multiplier for maximum enchanting power for when undiscoverable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + undiscoverable_multiplier = 0.9 + #Multiplier for maximum enchanting power for when treasure enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + treasure_multiplier = 0.95 + #Multiplier for maximum enchanting power for when curse enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + curse_multiplier = 1.0 + #Multiplier for maximum enchanting power for when common enchantments become available. + #Range: -1.0 ~ 1.0 + common_multiplier = -0.2 + #Multiplier for maximum enchanting power for when very rare enchantments become available. + #Range: -1.0 ~ 1.0 + very_rare_multiplier = 0.6 + #Multiplier for maximum enchanting power for when uncommon enchantments become available. + #Range: -1.0 ~ 1.0 + uncommon_multiplier = 0.2 + +[normal_infuser] + #Can the enchanting infuser repair items using levels in addition to enchanting. + #Allowed Values: EVERYTHING, TOOLS_AND_ARMOR, NOTHING + allow_repairing = "NOTHING" + #Allow enchantments on an already enchanted item to be increased / removed. + #Allowed Values: UNENCHANTED, ALL, FULL_DURABILITY + allow_modifying_enchantments = "UNENCHANTED" + #How many bookshelves you need around the infuser to be able to apply maximum level enchantments. + #Filling in corners is important to reach higher values. + #Setting very high values may require modded bookshelves that provide more than one enchanting power per block (such as Apotheosis' bookshelves). + #This value will be fixed at 50 when Apotheosis is installed. + #Range: > 0 + maximum_bookshelves = 15 + #Working an item in an infuser increases the prior work penalty stat used by anvils for that item, meaning future anvil repairs will become more expensive, possibly even too expensive. + increase_anvil_repair_cost = false + #Allow books to be enchanted in an infuser. + allow_books = false + + [normal_infuser.types] + #Allow curses (e.g. curse of vanishing) to be applied using the enchanting infuser. + #This option takes precedence over option for treasure enchantments (as curses are also treasure enchantments internally). + allow_curses_enchantments = false + #Allow treasure enchantments (e.g. mending) to be applied using the enchanting infuser. + allow_treasure_enchantments = false + #Allow untradeable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure and curse enchantments. + allow_untradeable_enchantments = false + #Allow enchantments that can normally not be obtained from an enchanting table, but can be put on the item in an anvil (e.g. sharpness on an axe). + allow_anvil_enchantments = false + #Allow undiscoverable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure, curse and tradeable enchantments. + allow_undiscoverable_enchantments = false + + [normal_infuser.repair] + #Cost multiplier in levels for each repair step, result will be rounded up. + #Range: 0.0 ~ 1.7976931348623157E308 + repair_step_multiplier = 2.0 + #How many percentage points of an items total durability a single repair will restore. + #Range: 0.1 ~ 1.0 + repair_percentage_step = 0.25 + + #The main option in this section is "maximum_cost" as it determines how many levels you'll have to pay for fully enchanting an item with all possible enchantments it can have. + #Cost multipliers mainly control how this maximum cost will be spread out between enchantments of different rarities. + [normal_infuser.costs] + #Base cost multiplier for each level for very rare enchantments. + #Range: > 1 + very_rare_cost_multiplier = 5 + #Double prices for enchantments normally unobtainable from enchanting tables if they are enabled (e.g. mending, soul speed) when they are enabled. + double_uniques = true + #Base cost multiplier for each level for rare enchantments. + #Range: > 1 + rare_cost_multiplier = 4 + #Cost level to scale prices by. This is not a strict value, meaning it can be exceeded (e.g. when applying treasure enchantments). + #Range: > 1 + maximum_cost = 30 + #When scaling costs, only account for vanilla enchantments. Otherwise enchanting costs will become ludicrously cheap with many modded enchantments present. + scale_costs_by_vanilla_only = true + #Base cost multiplier for each level for uncommon enchantments. + #Range: > 1 + uncommon_cost_multiplier = 3 + #Base cost multiplier for each level for common enchantments. + #Range: > 1 + common_cost_multiplier = 2 + + #This section allows for controlling at what percentage of the total enchanting power certain kinds of enchantments become available. + #With default settings e.g. the first level of a rare enchantment will be available at 40% enchanting power (controlled by "rare_multiplier", translates to 40% * 15 = 6 bookshelves), and the maximum level for that enchant will be available at 40% + 40% = 80% enchanting power (controlled by "rare_multiplier" and "rarity_range_multiplier", translates to 80% * 15 = 12 bookshelves). + [normal_infuser.power] + #Multiplier for maximum enchanting power for when rare enchantments become available. + #Range: -1.0 ~ 1.0 + rare_multiplier = 0.4 + #Multiplier for maximum enchanting power for when untradeable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + untradeable_multiplier = 0.9 + #Multiplier for maximum enchanting power for how much power is required to max out an enchantment. + #Range: 0.0 ~ 1.0 + rarity_range = 0.4 + #Multiplier for maximum enchanting power for when undiscoverable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + undiscoverable_multiplier = 0.9 + #Multiplier for maximum enchanting power for when treasure enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + treasure_multiplier = 0.95 + #Multiplier for maximum enchanting power for when curse enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + curse_multiplier = 1.0 + #Multiplier for maximum enchanting power for when common enchantments become available. + #Range: -1.0 ~ 1.0 + common_multiplier = -0.2 + #Multiplier for maximum enchanting power for when very rare enchantments become available. + #Range: -1.0 ~ 1.0 + very_rare_multiplier = 0.6 + #Multiplier for maximum enchanting power for when uncommon enchantments become available. + #Range: -1.0 ~ 1.0 + uncommon_multiplier = 0.2 + +[integration] + #Enable compat for Apotheosis if it is installed. Allows for using the full range of changes Apotheosis applies to vanilla enchantments. + #Should only really be disabled if compat breaks due to internal changes. + apotheosis_integration = true + diff --git a/config/enchantwithmob-client.toml b/config/enchantwithmob-client.toml new file mode 100644 index 0000000..3da2299 --- /dev/null +++ b/config/enchantwithmob-client.toml @@ -0,0 +1,8 @@ +"Show Enchanted Mob Hud" = true +#Disable Poison Mob Enchant Particle. [true / false] +"Disable Poison Particle" = true +#Disable Aura Render. [true / false] +"Disable Aura Render" = true +#Enable Old Style Animation. [true / false] +OldStyleAnimation = false + diff --git a/config/enchantwithmob-common.toml b/config/enchantwithmob-common.toml new file mode 100644 index 0000000..ef7d1b4 --- /dev/null +++ b/config/enchantwithmob-common.toml @@ -0,0 +1,41 @@ +#Enable the the spawning of enchanted mobs. [true / false] +"Enchanted Mob can Spawn Natural" = true +#Disables specific mob from receiveing enchantments on spawn. Use the full name, eg: minecraft:ender_dragon. +enchantOnSpawnExclusionMobs = ["minecraft:wither", "minecraft:ender_dragon"] +#Allow the specific mob from alway receiveing enchantments on spawn. Use the full name, eg: minecraft:zombie. +alwayEnchantableMobs = [] +#Allow the specific mob from alway receiveing enchantments as Ancient Mob on spawn(This feature may break for balance so be careful). Use the full name, eg: minecraft:zombie. +alwayEnchantableAncientMobs = [] +#Disables the specific mob enchant. Use the full name(This config only disabled mob enchant when mob spawn. not mean delete complete, eg: enchantwithmob:thorn. +disableMobEnchants = [] +#Allow the poison cloud for projectile. Use the full name(eg: minecraft:arrow. +allowPoisonCloudProjectiles = ["minecraft:arrow", "minecraft:snowball", "earthmobsmod:melon_seeds", "earthmobsmod:zombie_flesh", "conjurer_illager:throwing_card", "conjurer_illager:bouncy_ball", "tofucraft:fukumame", "tofucraft:nether_fukumame", "tofucraft:soul_fukumame"] +#Allow the multi shot for projectile. Use the full name(eg: minecraft:arrow. +allowMultiShotProjectiles = ["minecraft:arrow", "minecraft:snowball", "earthmobsmod:melon_seeds", "earthmobsmod:zombie_flesh", "conjurer_illager:throwing_card", "conjurer_illager:bouncy_ball", "tofucraft:fukumame", "tofucraft:nether_fukumame", "tofucraft:soul_fukumame"] +#Whitelist the projectile mob enchant for mob. Use the full name(eg: minecraft:zombie. +whitelistShootEntity = ["minecraft:skeleton", "minecraft:pillager", "minecraft:shulker", "minecraft:llama", "conjurer_illager:conjurer", "earthmobsmod:bone_spider", "earthmobsmod:lobber_zombie", "earthmobsmod:lobber_drowned", "earthmobsmod:melon_golem", "minecraft:piglin", "minecraft:snow_golem", "minecraft:player"] +#Set the MobEnchant on the EnderDragon. If you want more harder fight. should set it! eg: enchantwithmob:thorn. +"Buffed Dragon" = [] +#Enable the the spawning of enchanted animal mobs. [true / false] +"Enchanted Animal can Spawn Natural" = false +#Enable enchanting yourself. [true / false] +"Enchant yourself" = true +#Enable Change Size When Enchanted. [true / false] +"Change Size" = false +#Enable Increase Health like Dungeons When Enchanted. [true / false] +"Increase Health like Dungeons" = false +#Enable Player More Bigger When You have Huge Enchant. [true / false] +"Big Your Self" = false +#Enable All MobEnchant for all mob. [true / false] +UniversalEnchant = false +#Set The Difficulty Base Enchanted Mob Spawn Percent. [(Difficulty Base Percent * Difficulty id) + (Effective Difficulty Percent * Effective Difficulty)] +#Range: 0.0 ~ 1.0 +"Difficulty Enchanted Spawn Percent" = 0.005 +#Set The Effective Difficulty Base Enchanted Mob Spawn Percent [(Difficulty Base Percent * Difficulty id) + (Effective Difficulty Percent * Effective Difficulty)] +#Range: 0.0 ~ 1.0 +"Effective Difficulty Enchanted Spawn Percent" = 0.025 +#Disable Enchanter Armor Item. [true / false] +"Disable Enchanter Armor" = false +#Disable MobEnchant Stuff Items. [true / false] +"Disable MobEnchant Stuff Items" = false + diff --git a/config/enchdesc.json b/config/enchdesc.json new file mode 100644 index 0000000..8aba0f4 --- /dev/null +++ b/config/enchdesc.json @@ -0,0 +1,10 @@ +{ + "enableMod": true, + "onlyDisplayOnBooks": false, + "onlyDisplayInEnchantingTable": false, + "requireKeybindPress": false, + "indentSize": 0, + "style": { + "color": "dark_gray" + } +} \ No newline at end of file diff --git a/config/ender-sins-common.toml b/config/ender-sins-common.toml new file mode 100644 index 0000000..20a113b --- /dev/null +++ b/config/ender-sins-common.toml @@ -0,0 +1,5 @@ + +[Config] + #The probability (in percents) for a Gulber to activate the Golem Heart Skill when attacked + "Golem Heart" = 20.0 + diff --git a/config/enderchests-client.toml b/config/enderchests-client.toml new file mode 100644 index 0000000..774ec52 --- /dev/null +++ b/config/enderchests-client.toml @@ -0,0 +1,46 @@ + +#Select A GUI Style +[gui_style] + #Allowed Values: DEFAULT, VANILLA + EnderChest = "DEFAULT" + +#Color Values for Bands, +#Format: Decimal Values (0 to 16,777,215) +#You can use this website to get the decimal value of any color: +#http://www.colorhexa.com +#Or by using the Color Mixer from this website: +#http://www.mathsisfun.com/hexadecimal-decimal-colors.html +[color_values] + #Range: 0 ~ 16777215 + white = 16777215 + #Range: 0 ~ 16777215 + orange = 14517579 + #Range: 0 ~ 16777215 + magenta = 12411333 + #Range: 0 ~ 16777215 + light_blue = 8296912 + #Range: 0 ~ 16777215 + yellow = 12892206 + #Range: 0 ~ 16777215 + lime = 4832573 + #Range: 0 ~ 16777215 + pink = 14195370 + #Range: 0 ~ 16777215 + gray = 4605510 + #Range: 0 ~ 16777215 + light_gray = 11120559 + #Range: 0 ~ 16777215 + cyan = 3373205 + #Range: 0 ~ 16777215 + purple = 8996546 + #Range: 0 ~ 16777215 + blue = 3292826 + #Range: 0 ~ 16777215 + brown = 5650466 + #Range: 0 ~ 16777215 + green = 3821086 + #Range: 0 ~ 16777215 + red = 10828341 + #Range: 0 ~ 16777215 + black = 2500134 + diff --git a/config/enderchests.toml b/config/enderchests.toml new file mode 100644 index 0000000..2dbd943 --- /dev/null +++ b/config/enderchests.toml @@ -0,0 +1,76 @@ +#With this disabled chests are essentially locked to the crafted color as dyes will no longer work +enable_in_world_coloring = true +#When linking stacked bags: +#True = all of them will be linked +#False = one at a time will be linked +full_stack_linking = true + +#Item used to upgrade the EnderChests +[upgrade_item_tags] + #Items used to make the chests personal + personal = ["tag|forge:gems/diamond"] + #Items used to make the chests team chests + team = ["tag|forge:gems/emerald"] + #Items that upgrade storage capacity by 3 + small_capacity = ["minecraft:ender_pearl"] + #Items that upgrade storage capacity by 9 + large_capacity = ["minecraft:ender_eye"] + #Items that upgrade storage capacity by 3 + #Each item can only be use once per chest + small_capacity_singleuse = [] + #Items that upgrade storage capacity by 9 + #Each item can only be use once per chest + large_capacity_singleuse = [] + +#Adjust how many inventory slots are available +[capacity_settings] + #Minimum capacity an EnderChest holds + #Range: 9 ~ 27 + chest_size_min = 9 + #Maximum capacity an EnderChest holds + #Range: 9 ~ 54 + chest_size_max = 27 + +[access_settings] + #When enabled these bags access a players vanilla EnderChest, if disabled they will only be a crafting ingredient + ender_pouch = true + #Enables the usage of public chests, if disabled chests must be upgraded before use + public_chests = true + #Enables the creation of personal chests, if disabled chests can not set personal. + #Does not effect chests that are already set as personal + personal_chests = true + #Enables the creation of team chests, if disabled chests can not be set team. + #Does not effect chests that are already set as team + team_chests = true + #Enables the usage of public bags, if disabled bags must be linked to an upgraded chest before use + public_bags = true + #Enables the linking of bags to personal chests. + #Does not effect bags that are already linked to personal chests + personal_bags = true + #Enables the linking of bags to team chests. + #Does not effect bags that are already linked to team chests + team_bags = true + #Public chests can be used with automation. + public_automation = true + #Personal chests can be used with automation. + personal_automation = true + #Team chests can be used with automation. + team_automation = true + #While true a Personal chest can only be edited (upgrade, move, etc) by the owner + personal_edit_lock = true + #While true a Team chest can only be edited (upgrade, move, etc) by a team member + team_edit_lock = true + #While true only the owner can link a bag to their chests + personal_link_lock = true + #While true only a team member can link a bag to team chests + team_link_lock = true + #While true only the owner can use the chest + personal_use_lock = false + #While true only a team member can use the chest + team_use_lock = false + +#Mod integration can be disabled to solve compatibility issues, remove unwanted/unneeded features, etc. +[integration] + #EnderBag and EnderPouch will function while equipped as a Curio + curios = true + diff --git a/config/endergetic-common.toml b/config/endergetic-common.toml new file mode 100644 index 0000000..185b056 --- /dev/null +++ b/config/endergetic-common.toml @@ -0,0 +1,5 @@ + +[debug] + #If the Dragon Fight Manager should debug its portal values + "Debug Dragon Fight Manager" = false + diff --git a/config/endermanoverhaul-client.jsonc b/config/endermanoverhaul-client.jsonc new file mode 100644 index 0000000..f59dda5 --- /dev/null +++ b/config/endermanoverhaul-client.jsonc @@ -0,0 +1,3 @@ +{ + "replaceDefaultEnderman": false +} \ No newline at end of file diff --git a/config/endermanoverhaul.jsonc b/config/endermanoverhaul.jsonc new file mode 100644 index 0000000..3269def --- /dev/null +++ b/config/endermanoverhaul.jsonc @@ -0,0 +1,29 @@ +{ + "allowPickingUpBlocks": true, + "friendlyEndermanTeleport": true, + "friendlyEndermanDespawn": true, + "allowSpawning": true, + "spawnBadlandsEnderman": true, + "spawnCaveEnderman": true, + "spawnCrimsonForestEnderman": true, + "spawnDarkOakEnderman": true, + "spawnDesertEnderman": true, + "spawnEndEnderman": true, + "spawnEndIslandsEnderman": true, + "spawnFlowerFieldsEnderman": true, + "spawnIceSpikesEnderman": true, + "spawnMushroomFieldsEnderman": true, + "spawnNetherWastesEnderman": true, + "spawnCoralEnderman": true, + "spawnSavannaEnderman": true, + "spawnSnowyEnderman": true, + "spawnSoulsandValleyEnderman": true, + "spawnSwampEnderman": true, + "spawnWarpedForestEnderman": true, + "spawnWindsweptHillsEnderman": true, + /* + * The chance that an End Enderman will teleport you when it hits you + * Type: Float + */ + "endEndermanTeleportChance": 0.5 +} \ No newline at end of file diff --git a/config/endertanks-client.toml b/config/endertanks-client.toml new file mode 100644 index 0000000..186b56a --- /dev/null +++ b/config/endertanks-client.toml @@ -0,0 +1,44 @@ +#Delay, in milliseconds, before a multi-line tank info request will display the next line +#Range: 250 ~ 10000 +info_line_change_delay = 1500 + +#Color Values for Bands, +#Format: Decimal Values (0 to 16,777,215) +#You can use this website to get the decimal value of any color: +#http://www.colorhexa.com +#Or by using the Color Mixer from this website: +#http://www.mathsisfun.com/hexadecimal-decimal-colors.html +[color_values] + #Range: 0 ~ 16777215 + white = 16777215 + #Range: 0 ~ 16777215 + orange = 14517579 + #Range: 0 ~ 16777215 + magenta = 12411333 + #Range: 0 ~ 16777215 + light_blue = 8296912 + #Range: 0 ~ 16777215 + yellow = 12892206 + #Range: 0 ~ 16777215 + lime = 4832573 + #Range: 0 ~ 16777215 + pink = 14195370 + #Range: 0 ~ 16777215 + gray = 4605510 + #Range: 0 ~ 16777215 + light_gray = 11120559 + #Range: 0 ~ 16777215 + cyan = 3373205 + #Range: 0 ~ 16777215 + purple = 8996546 + #Range: 0 ~ 16777215 + blue = 3292826 + #Range: 0 ~ 16777215 + brown = 5650466 + #Range: 0 ~ 16777215 + green = 3821086 + #Range: 0 ~ 16777215 + red = 10828341 + #Range: 0 ~ 16777215 + black = 2500134 + diff --git a/config/endertanks.toml b/config/endertanks.toml new file mode 100644 index 0000000..ea32b28 --- /dev/null +++ b/config/endertanks.toml @@ -0,0 +1,94 @@ +#With this disabled tanks are essentially locked to the crafted color as dyes will no longer work +enable_in_world_coloring = true +#When linking stacked buckets: +#True = all of them will be linked +#False = one at a time will be linked +full_stack_linking = true + +#Items used to upgrade the EnderTanks +[upgrade_items] + #Items used to make the tanks personal + personal = ["tag|forge:gems/diamond"] + #Items used to make the tanks team tanks + team = ["tag|forge:gems/emerald"] + #Items that apply a small storage capacity upgrade + small_capacity = ["minecraft:ender_pearl"] + #Items that apply a large storage capacity upgrade + large_capacity = ["minecraft:ender_eye"] + #Items that are used to increase the tanks internal transfer pump + pump = ["minecraft:piston"] + #Items that apply a small storage capacity upgrade + #Each item can only be use once per tank + small_capacity_singleuse = [] + #Items that apply a large storage capacity upgrade + #Each item can only be use once per tank + large_capacity_singleuse = [] + #Items that are used to increase the tanks internal transfer pump + #Each item can only be use once per tank + pump_singleuse = [] + +#Set the number of buckets a tank holds, how many pump upgrades can be applied, and the value of a storage upgrade +[capacity_settings] + #How many internal transfer pump upgrades can a tank have? + # default is only 1/4 bucket, upgrades make it a bucket per upgrade + #Range: 0 ~ 8 + tank_pump_max = 4 + #Minimum capacity an EnderTank holds + #Range: 4 ~ 128 + tank_size_min = 32 + #Maximum capacity an EnderTank holds + #Range: 4 ~ 512 + tank_size_max = 256 + #Capacity increased by small capacity upgrade items + #Range: 2 ~ 16 + small_capacity_upgrade = 8 + #Capacity increased by large capacity upgrade items + #Range: 4 ~ 32 + large_capacity_upgrade = 16 + +[access_settings] + #Enables the usage of public tanks, if disabled tanks must be upgraded before use + public_tanks = true + #Enables the creation of personal tanks, if disabled tanks can not set personal. + #Does not effect tanks that are already set as personal + personal_tanks = true + #Enables the creation of team tanks, if disabled tanks can not be set team. + #Does not effect tanks that are already set as team + team_tanks = true + #Enables the usage of public buckets, if disabled buckets must be linked to an upgraded tank before use + public_buckets = true + #Enables the linking of buckets to personal tanks. + #Does not effect buckets that are already linked to personal tanks + personal_buckets = true + #Enables the linking of buckets to team tanks. + #Does not effect buckets that are already linked to team tanks + team_buckets = true + #Public tanks can be used with automation. + #The internal pump is unaffected by this setting + public_automation = true + #Personal tanks can be used with automation. + #The internal pump is unaffected by this setting + personal_automation = true + #Team tanks can be used with automation. + #The internal pump is unaffected by this setting + team_automation = true + #While true a Personal tank can only be edited (upgrade, move, etc) by the owner + personal_edit_lock = true + #While true a Team tank can only be edited (upgrade, move, etc) by a team member + team_edit_lock = true + #While true only the owner can link a bucket to their tanks + personal_link_lock = true + #While true only a team member can link a bucket to team tanks + team_link_lock = true + #While true only the owner can use the tank + personal_use_lock = false + #While true only a team member can use the tank + team_use_lock = false + +#Mod integration can be disabled to solve compatibility issues, remove unwanted/unneeded features, etc. +[integration] + store_mekanism_gas = true + store_mekanism_infusion = true + store_mekanism_pigment = true + store_mekanism_slurry = true + diff --git a/config/endrem.toml b/config/endrem.toml new file mode 100644 index 0000000..db58c52 --- /dev/null +++ b/config/endrem.toml @@ -0,0 +1,17 @@ + +[endrem] + #Determines if it's possible to obtain the evil eye when trading with a Cleric + is_evil_eye_obtainable = true + #Toggle Ender Eyes Actions (Throwing to Locate The Stronghold) + throw_ender_eye = false + #Toggle Ender Eyes Actions (Placing in Portal Frames) + use_ender_eye = false + #Determines the percentage chance of eyes breaking when thrown + eye_break_chance = 10 + #Determines whether or not vanilla eyes can naturally generate within the frames of the portal + frame_has_eye = false + #Determines if it's possible to obtain the cryptic eye when enchanting + is_cryptic_eye_obtainable = true + #Determines whether or not players can remove ender eyes from the portal frames + can_remove_eye = false + diff --git a/config/ends_delight-common.toml b/config/ends_delight-common.toml new file mode 100644 index 0000000..09bc75c --- /dev/null +++ b/config/ends_delight-common.toml @@ -0,0 +1,15 @@ + +["Configs for End's Delight"] + #Dragon Tooth Knife can cause more damage when attacking following mobs + #(Default: ["minecraft:enderman", "minecraft:endermite", "minecraft:ender_dragon", "minecraft:shulker"]) + allowedMobs = ["minecraft:enderman", "minecraft:endermite", "minecraft:ender_dragon", "minecraft:shulker"] + #Whether teleport after consuming an Enderman Gristle Item or an Enderman Gristle Stew Item + #Default: true + enableGristleTeleport = true + #The range size of gristle teleport (Default: 24 (1 ~ 32)) + #Range: 1 ~ 32 + teleportRangeSize = 24 + #The max height of gristle teleport (Default: 32 (1 ~ 64)) + #Range: 1 ~ 64 + teleportMaxHeight = 32 + diff --git a/config/enigmaticaddons-client.omniconf b/config/enigmaticaddons-client.omniconf new file mode 100644 index 0000000..f2ca335 --- /dev/null +++ b/config/enigmaticaddons-client.omniconf @@ -0,0 +1,19 @@ +# Configuration File + +@CONFIG_VERSION: 1.2.5.2 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # If false, disables the particle effect for fully frozen entities. [default: true] + B:CustomFrostParticle=true + + # If false, disables the icon display of the Etherium Shield. [default: true] + B:EtheriumShieldIconDisplay=true +} + + diff --git a/config/enigmaticaddons-common.omniconf b/config/enigmaticaddons-common.omniconf new file mode 100644 index 0000000..74a229e --- /dev/null +++ b/config/enigmaticaddons-common.omniconf @@ -0,0 +1,671 @@ +# Configuration File + +@CONFIG_VERSION: 1.2.5.2 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# Check more details in Enigmatic Legacy's Config Files. +########################################################################################################## + +"Accessibility Options" { + # Whether or not Antique Book Bag should be enabled. [default: true, synchronized: yes] + B:AntiqueBookBagEnabled=true + + # Whether or not Astral Spear should be enabled. [default: true, synchronized: yes] + B:AstralSpearEnabled=true + + # Whether or not Charm of Hell Blade should be enabled. [default: true, synchronized: yes] + B:CharmofHellBladeEnabled=true + + # Whether or not Charm of Scorched Sun should be enabled. [default: true, synchronized: yes] + B:CharmofScorchedSunEnabled=true + + # Whether or not Common Potions should be enabled. [default: true, synchronized: yes] + B:CommonPotionsEnabled=true + + # Whether or not Curse of Redemption Enchantment should be enabled. [default: true, synchronized: yes] + B:CurseofRedemptionEnchantmentEnabled=true + + # Whether or not Disaster Broadsword should be enabled. [default: true, synchronized: yes] + B:DisasterBroadswordEnabled=true + + # Whether or not Dragon Breath Bow should be enabled. [default: true, synchronized: yes] + B:DragonBreathBowEnabled=true + + # Whether or not Emblem of Adventurer should be enabled. [default: true, synchronized: yes] + B:EmblemofAdventurerEnabled=true + + # Whether or not Enigmatic Pearl should be enabled. [default: true, synchronized: yes] + B:EnigmaticPearlEnabled=true + + # Whether or not Etherium Core should be enabled. [default: true, synchronized: yes] + B:EtheriumCoreEnabled=true + + # Whether or not False Justice should be enabled. [default: true, synchronized: yes] + B:FalseJusticeEnabled=true + + # Whether or not Forgers Gem should be enabled. [default: true, synchronized: yes] + B:ForgersGemEnabled=true + + # Whether or not Forgotten Ice Crystal should be enabled. [default: true, synchronized: yes] + B:ForgottenIceCrystalEnabled=true + + # Whether or not Fragment of the Earth should be enabled. [default: true, synchronized: yes] + B:FragmentoftheEarthEnabled=true + + # Whether or not Frost Aspect Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostAspectEnchantmentEnabled=true + + # Whether or not Frost Protection Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostProtectionEnchantmentEnabled=true + + # Whether or not Frost Shattering Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostShatteringEnchantmentEnabled=true + + # Whether or not Holy Stone should be enabled. [default: true, synchronized: yes] + B:HolyStoneEnabled=true + + # Whether or not Ichor Droplet should be enabled. [default: true, synchronized: yes] + B:IchorDropletEnabled=true + + # Whether or not Ichor Spear should be enabled. [default: true, synchronized: yes] + B:IchorSpearEnabled=true + + # Whether or not Ichoroot should be enabled. [default: true, synchronized: yes] + B:IchorootEnabled=true + + # Whether or not Insignia of Despair should be enabled. [default: true, synchronized: yes] + B:InsigniaofDespairEnabled=true + + # Whether or not Lost Engine should be enabled. [default: true, synchronized: yes] + B:LostEngineEnabled=true + + # Whether or not Magic Quartz Flower should be enabled. [default: true, synchronized: yes] + B:MagicQuartzFlowerEnabled=true + + # Whether or not Magic Quartz Ring should be enabled. [default: true, synchronized: yes] + B:MagicQuartzRingEnabled=true + + # Whether or not Magic Quartz Scepter should be enabled. [default: true, synchronized: yes] + B:MagicQuartzScepterEnabled=true + + # Whether or not Ode to Living Beings should be enabled. [default: true, synchronized: yes] + B:OdetoLivingBeingsEnabled=true + + # Whether or not Pact of Dark Night should be enabled. [default: true, synchronized: yes] + B:PactofDarkNightEnabled=true + + # Whether or not Potion of Cosmic should be enabled. [default: true, synchronized: yes] + B:PotionofCosmicEnabled=true + + # Whether or not Primeval Cube should be enabled. [default: true, synchronized: yes] + B:PrimevalCubeEnabled=true + + # Whether or not Promise of the Earth should be enabled. [default: true, synchronized: yes] + B:PromiseoftheEarthEnabled=true + + # Whether or not Pure Heart should be enabled. [default: true, synchronized: yes] + B:PureHeartEnabled=true + + # Whether or not Revival Leaf should be enabled. [default: true, synchronized: yes] + B:RevivalLeafEnabled=true + + # Whether or not Ring of Redemption should be enabled. [default: true, synchronized: yes] + B:RingofRedemptionEnabled=true + + # Whether or not Ring of Ultimate Luxury should be enabled. [default: true, synchronized: yes] + B:RingofUltimateLuxuryEnabled=true + + # Whether or not Sanguinary Hunting Handbook should be enabled. [default: true, synchronized: yes] + B:SanguinaryHuntingHandbookEnabled=true + + # Whether or not Scepter of Extradimensional should be enabled. [default: true, synchronized: yes] + B:ScepterofExtradimensionalEnabled=true + + # Whether or not Scroll of Ignorance Curse should be enabled. [default: true, synchronized: yes] + B:ScrollofIgnoranceCurseEnabled=true + + # Whether or not Scroll of Thunder Embrace should be enabled. [default: true, synchronized: yes] + B:ScrollofThunderEmbraceEnabled=true + + # Whether or not Soul Lantern of Illusion should be enabled. [default: true, synchronized: yes] + B:SoulLanternofIllusionEnabled=true + + # Whether or not The Arrogance of Chaos should be enabled. [default: true, synchronized: yes] + B:TheArroganceofChaosEnabled=true + + # Whether or not The Bless should be enabled. [default: true, synchronized: yes] + B:TheBlessEnabled=true + + # Whether or not The Curse Carver should be enabled. [default: true, synchronized: yes] + B:TheCurseCarverEnabled=true + + # Whether or not Tome of Divination should be enabled. [default: true, synchronized: yes] + B:TomeofDivinationEnabled=true + + # Whether or not Tome of Void should be enabled. [default: true, synchronized: yes] + B:TomeofVoidEnabled=true + + # Whether or not Totem of Malice should be enabled. [default: true, synchronized: yes] + B:TotemofMaliceEnabled=true + + # Whether or not Ultimate Potions should be enabled. [default: true, synchronized: yes] + B:UltimatePotionsEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # List of items that can be stored in the Antique Book Bag. Examples: enigmaticaddons:false_justice. Changing this option required game restart to take effect. [default: , synchronized: no] + S:AntiqueBookBagList < + > + + # List of Attributes that will never appear in Magic Quartz Flower. Changing this option required game restart to take effect. [default: [caelus:fall_flying], [goety_revelation:resistance], synchronized: no] + S:ArtificialFlowerAttributeBlackList < + caelus:fall_flying + goety_revelation:resistance + > + + # List of Effects that will never appear in Magic Quartz Flower. Changing this option required game restart to take effect. [default: [alexscaves:darkness_incarnate], [alexsmobs:oiled], [aquamirae:crystallization], [born_in_chaos_v1:light_rampage], [born_in_chaos_v1:medium_rampage], [born_in_chaos_v1:strong_rampage], [born_in_chaos_v1:furious_rampage], [born_in_chaos_v1:rampant_rampage], [cataclysm:ghost_form], [cataclysm:ghost_sickness], [enigmaticdelicacy:astral_drunkenness], [enigmaticdelicacy:abyss_corruption], [enigmaticdelicacy:fading], [enigmaticdelicacy:health_curse], [enigmaticlegacy:blazing_strength], [goety:shadow_walk], [irons_spellbooks:abyssal_shroud], [irons_spellbooks:evasion], [irons_spellbooks:heartstop], [irons_spellbooks:true_invisibility], [ltc2:undying_benediction], [more_potion_effects:extension], [more_potion_effects:immortal], [more_potion_effects:static_life], [supernatural:supernatural], [unusual_delight:crystal_aspect], [unusual_delight:ember_aspect], [unusual_delight:vitality], synchronized: no] + S:ArtificialFlowerEffectBlackList < + alexscaves:darkness_incarnate + alexsmobs:oiled + aquamirae:crystallization + born_in_chaos_v1:light_rampage + born_in_chaos_v1:medium_rampage + born_in_chaos_v1:strong_rampage + born_in_chaos_v1:furious_rampage + born_in_chaos_v1:rampant_rampage + cataclysm:ghost_form + cataclysm:ghost_sickness + enigmaticdelicacy:astral_drunkenness + enigmaticdelicacy:abyss_corruption + enigmaticdelicacy:fading + enigmaticdelicacy:health_curse + enigmaticlegacy:blazing_strength + goety:shadow_walk + irons_spellbooks:abyssal_shroud + irons_spellbooks:evasion + irons_spellbooks:heartstop + irons_spellbooks:true_invisibility + ltc2:undying_benediction + more_potion_effects:extension + more_potion_effects:immortal + more_potion_effects:static_life + supernatural:supernatural + unusual_delight:crystal_aspect + unusual_delight:ember_aspect + unusual_delight:vitality + > + + # The max modifier of the Magic Quartz Flower. Measures in percentage. [range: 0 ~ 100, default: 16, synchronized: yes] + I:ArtificialFlowerRandomAttributeMaxModifier=16 + + # The modifier of the instantaneous effect provided by Magic Quartz Flower. Measures in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:ArtificialFlowerRandomInstantaneousEffectModifier=80 + + # The damage modifier when spear is powered. [range: 0.0 ~ 100.0, default: 2.5, synchronized: yes] + D:AstralSpearPoweredModifier=2.5 + + # How much less effective armor will be for those who bear the charm. Measured as percentage. [range: 50 ~ 100, default: 100, synchronized: yes] + I:CharmofHellBladeArmorDebuff=100 + + # The damage boost for who bear the charm. Measured as percentage. [range: 10 ~ 200, default: 100, synchronized: yes] + I:CharmofHellBladeDamageModifier=100 + + # The Cooldown to unequip this Charm. Defined as tick. [range: 0 ~ 32768, default: 1200, synchronized: yes] + I:CharmofHellBladeEquipCooldown=1200 + + # The Multiplier of healing when active the skill of Hell Blade Charm. [range: 0.0 ~ 100.0, default: 0.8, synchronized: yes] + D:CharmofHellBladeHealMultiplier=0.8 + + # The kill threshold of Hell Blade Charm to active the skill with Ring of Seven Curses. [range: 0 ~ 100, default: 50, synchronized: yes] + I:CharmofHellBladeKillCursedThreshold=50 + + # The kill threshold of Hell Blade Charm to active the skill. [range: 0 ~ 100, default: 75, synchronized: yes] + I:CharmofHellBladeKillThreshold=75 + + # The heal amount per second when you're in lava with this Charm. [range: 0.0 ~ 100.0, default: 2.0, synchronized: yes] + D:CharmofScorchedSunLavaHealAmount=2.0 + + # The lifesteal modifier provided by this charm when you attack a target on fire. Measured in percentage. [range: 0 ~ 100, default: 20, synchronized: yes] + I:CharmofScorchedSunLifestealModifier=20 + + # The probability to resist damage when you are attacked with this charm. Measured in percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:CharmofScorchedSunResistanceProbability=10 + + # The damage modifier per every this curse. [range: 0 ~ 40, default: 4, synchronized: yes] + I:CurseofRedemptionEnchantmentResistanceModifier=4 + + # Attack speed increase provided by the Curse of Violence for absorbed curse. Measured as percentage. [range: 1 ~ 10, default: 4, synchronized: yes] + I:CurseofViolenceAttackSpeedBoost=4 + + # The base damage boost for curse absorbed. Measured as percentage. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CurseofViolenceBaseCurseModifier=10 + + # The damage boost per every curse absorbed. Measured as percentage. [range: 0 ~ 100, default: 5, synchronized: yes] + I:CurseofViolenceBoostPerCurseModifier=5 + + # Entity reach range increase provided by the Curse of Violence for absorbed curse. Measured as percentage. [range: 1 ~ 10, default: 3, synchronized: yes] + I:CurseofViolenceEntityReachBoost=3 + + # Attack Damage Modifier when attack during the invulnerable time provided by the Curse of Violence. Measured as percentage. [range: 100 ~ 32768, default: 200, synchronized: yes] + I:CurseofViolenceInvulnerableAttackModifier=200 + + # The heal multiplier when attack during the invulnerable time provided by the Curse of Violence. Measured as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:CurseofViolenceInvulnerableHealMultiplier=40 + + # Knockback Resistance increase provided by the Curse of Violence for absorbed curse. [range: 0.0 ~ 32768.0, default: 0.025, synchronized: yes] + D:CurseofViolenceKnockbackResistanceBoost=0.025 + + # The max energy count of the Curse of Violence. [range: 100 ~ 32768, default: 200, synchronized: yes] + I:CurseofViolenceMaxDurability=200 + + # The damage resistance when charging with the Decision of Annihilation. Measured as percentage. [range: 0 ~ 90, default: 80, synchronized: yes] + I:DecisionofAnnihilationChargingDamageResistance=80 + + # List of items that will be the crafting ingredients of the Decision of Annihilation. Examples: enigmaticlegacy:etherium_ingot. Changing this option required game restart to take effect. [default: [enigmaticlegacy:cosmic_heart], [enigmaticlegacy:evil_ingot], [enigmaticlegacy:twisted_heart], synchronized: no] + S:DecisionofAnnihilationCraftingIngredients < + enigmaticlegacy:cosmic_heart + enigmaticlegacy:evil_ingot + enigmaticlegacy:twisted_heart + > + + # The damage modifier per every level of damage enchantments. Measured as percentage. [range: 10 ~ 32768, default: 15, synchronized: yes] + I:DecisionofAnnihilationDamageEnchantmentPerModifier=15 + + # The damage multiplier per every level of energy. Measured as percentage. [range: 10 ~ 32768, default: 20, synchronized: yes] + I:DecisionofAnnihilationEnergyMultiplier=20 + + # The damage modifier when offhand is empty. Measured as percentage. [range: 100 ~ 32768, default: 100, synchronized: yes] + I:DecisionofAnnihilationOnlyMainHandModifier=100 + + # The damage modifier when you has the Bad Omen effect. [range: 0.0 ~ 100.0, default: 0.15, synchronized: yes] + D:DisasterBroadswordBadOmenDamageBoost=0.15 + + # The damage modifier after you parried with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 0.5, synchronized: yes] + D:DisasterBroadswordCounterattackBoost=0.5 + + # The crit damage modifier after you parried with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 1.5, synchronized: yes] + D:DisasterBroadswordCritBoost=1.5 + + # The damage of range attack after you parried the projectiles with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 10.0, synchronized: yes] + D:DisasterBroadswordRangeAttackDamage=10.0 + + # The max amount of potion effect you can apply on the arrow. [range: 1 ~ 10, default: 4, synchronized: yes] + I:DragonBreathBowMaxPotionAmount=4 + + # The Damage Resistance to your own dragon breath damage. Defined as percentage. [range: 0 ~ 100, default: 60, synchronized: yes] + I:DragonBreathBowOwnerResistance=60 + + # The attack damage boost of Emblem of Adventurer [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:EmblemofAdventurerAttackDamageModifier=2.0 + + # The attack speed multiplier of Emblem of Adventurer. Measures in percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:EmblemofAdventurerAttackSpeedMultiplier=10 + + # Whether to enable Shift effect. [default: true, synchronized: yes] + B:EmblemofAdventurerShiftEnable=true + + # Default amount of armor points provided by Etherium Core. [range: 0.0 ~ 256.0, default: 12.0, synchronized: yes] + D:EtheriumCoreArmor=12.0 + + # The multiplier of armor points of Etherium Core. [range: 0 ~ 100, default: 20, synchronized: yes] + I:EtheriumCoreArmorMultiplier=20 + + # The amount of armor toughness provided by Etherium Core when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 10.0, synchronized: yes] + D:EtheriumCoreArmorToughness=10.0 + + # The multiplier of armor toughness of Etherium Core. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumCoreArmorToughnessMultiplier=40 + + # Active ability cooldown for Etherium Core. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 800, synchronized: yes] + I:EtheriumCoreCooldown=800 + + # The damage amplification conversion ratio of Etherium Core. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumCoreDamageConversion=40 + + # The max damage amplification of Etherium Core. [range: 0.0 ~ 100.0, default: 25.0, synchronized: yes] + D:EtheriumCoreDamageConversionMax=25.0 + + # Resistance to knockback provided by Etherium Core. Defined as percentage. [range: 0 ~ 100, default: 50, synchronized: yes] + I:EtheriumCoreKnockbackResistance=50 + + # Whether the halving experience by level or value. True for level. [default: false, synchronized: yes] + B:ForgerGemEXPLevelNotValue=false + + # Whether to enable stricter detection for unbreakable forging when equipped the Forger's Gem. True for enable. [default: true, synchronized: yes] + B:ForgerGemStrictUnbreakableForge=true + + # List of items that will never be unbreakable. Examples: minecraft:iron_sword. Changing this option required game restart to take effect. [default: [enigmaticaddons:totem_of_malice], [twilightforest:glass_sword], synchronized: no] + S:ForgerGemUnbreakableBlackList < + enigmaticaddons:totem_of_malice + twilightforest:glass_sword + > + + # The extra repair cost after unbreakable forging when equipped the Forger's Gem. [range: 2 ~ 32768, default: 10, synchronized: yes] + I:ForgerGemUnbreakableRepairCost=10 + + # Active ability cooldown for Forgotten Ice Crystal. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 240, synchronized: yes] + I:ForgottenIceCrystalCooldown=240 + + # The extra damage of ability of Forgotten Ice Crystal. [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:ForgottenIceCrystalExtraDamageBase=2.0 + + # The extra damage ratio per every frozen second of ability of Forgotten Ice Crystal. [range: 0.0 ~ 32768.0, default: 0.01, synchronized: yes] + D:ForgottenIceCrystalExtraDamagePerSec=0.01 + + # The damage boost on target which has been fully frozen. Defined as percentage. [range: 0 ~ 256, default: 30, synchronized: yes] + I:ForgottenIceCrystalFrostBoost=30 + + # Resistance to projectile and sonic attacks provided by Forgotten Ice Crysta. Defined as percentage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:ForgottenIceCrystalResistance=30 + + # The damage of thrown ichor spear [range: 0 ~ 32768, default: 4, synchronized: yes] + I:IchorSpearBaseDamage=4 + + # The amplifier of the ichor corrosion effect. [range: 1 ~ 32768, default: 1, synchronized: yes] + I:IchorSpearEffectAmplifier=1 + + # The duration of the ichor corrosion effect. Measures in ticks. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:IchorSpearEffectDuration=600 + + # The attack damage boost of Insignia of Despair [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:InsigniaofDespairAttackDamageModifier=4.0 + + # The attack speed multiplier of Insignia of Despair. Measures in percentage. [range: 0 ~ 100, default: 16, synchronized: yes] + I:InsigniaofDespairAttackSpeedMultiplier=16 + + # The movement speed multiplier of Insignia of Despair. Measures in percentage. [range: 0 ~ 100, default: 5, synchronized: yes] + I:InsigniaofDespairMovementSpeedMultiplier=5 + + # Active ability cooldown for Lost Engine. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:LostEngineCooldown=0 + + # The crit damage modifier of the Lost Engine. [range: 0 ~ 256, default: 35, synchronized: yes] + I:LostEngineCritDamageModifier=35 + + # List of entities that will be affected as Golem by the Lost Engine. Examples: minecraft:iron_golem. Changing this option required game restart to take effect. [default: , synchronized: no] + S:LostEngineExtraGolemList < + > + + # The gravity multiplier of the Lost Engine. [range: 0.0 ~ 1.0, default: 0.4, synchronized: yes] + D:LostEngineGravityModifier=0.4 + + # The Knockback resistance modifier of the Lost Engine. [range: 0.0 ~ 256.0, default: 0.2, synchronized: yes] + D:LostEngineKnockbackResistanceModifier=0.2 + + # The speed multiplier of the Lost Engine. [range: 0.0 ~ 1.0, default: 0.1, synchronized: yes] + D:LostEngineSpeedModifier=0.1 + + # The Armor Toughness modifier of the Lost Engine. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:LostEngineToughnessModifier=4.0 + + # Modifier for Magic Damage vulnerability applied by Lost Engine. Default value of 2.0 means that player will receive twice as much damage from magic. [range: 1.0 ~ 256.0, default: 2.5, synchronized: yes] + D:LostEngineVulnerabilityModifier=2.5 + + # Default amount of armor provided by Magic Quartz Ring. [range: 0.0 ~ 256.0, default: 2.0, synchronized: yes] + D:MagicQuartzRingDefaultArmor=2.0 + + # Resistance to magic damage provided by Magic Quartz Ring. Defined as percentage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:MagicQuartzRingMagicResistance=30 + + # Active ability cooldown for Ode to Living Beings. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 1200, synchronized: yes] + I:OdetoLivingBeingsCooldown=1200 + + # The percentage subtracted from damage redirected by Guide to Feral Hunt, if this is also possessed. [range: 0 ~ 100, default: 75, synchronized: yes] + I:OdetoLivingBeingsSynergyDamageReduction=75 + + # The average damage boost modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 20, synchronized: yes] + I:PactofDarkNightAverageDamageBoost=20 + + # The average damage resistance modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 16, synchronized: yes] + I:PactofDarkNightAverageDamageResistance=16 + + # The average life stealing modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 8, synchronized: yes] + I:PactofDarkNightAverageLifeSteal=8 + + # The cooldown of Potion of Cosmic. Measured in ticks. [range: 0 ~ 32000, default: 2400, synchronized: yes] + I:PotionofCosmicCooldown=2400 + + # The Duration Multiplier of Potion of Cosmic. [range: 0.0 ~ 32.0, default: 1.6, synchronized: yes] + D:PotionofCosmicDurationMultiplier=1.6 + + # The percentage which trigger the Passive ability, damage / current health. Defined as percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:PromiseoftheEarthAbilityTriggerPercent=80 + + # Amount of armor provided by Promise of the Earth. [range: 0.0 ~ 256.0, default: 5.0, synchronized: yes] + D:PromiseoftheEarthArmor=5.0 + + # Mining speed boost granted by Promise of the Earth. Defined as percentage. [range: 0 ~ 1000, default: 20, synchronized: yes] + I:PromiseoftheEarthBreakSpeed=20 + + # Passive ability cooldown for Promise of the Earth. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 1000, synchronized: yes] + I:PromiseoftheEarthCooldown=1000 + + # Correction coefficient for the First Curse. Defined as percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:PromiseoftheEarthTotalResistance=25 + + # Amount of armor toughness provided by Promise of the Earth. [range: 0.0 ~ 256.0, default: 2.0, synchronized: yes] + D:PromiseoftheEarthToughness=2.0 + + # The shoot interval time of daggers. Measured as ticks. [range: 1 ~ 40, default: 8, synchronized: yes] + I:QuartzScepterShootInterval=8 + + # The effect radius of Revival Leaf' ability. [range: 0.0 ~ 32768.0, default: 5.0, synchronized: yes] + D:RevivalLeafAbilityRadius=5.0 + + # Active ability cooldown for Revival Leaf. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 320, synchronized: yes] + I:RevivalLeafCooldown=320 + + # The time required for each 0.5HP treatment from the natural regeneration of the Revival Leaf. Measured in ticks. [range: 5 ~ 32768, default: 40, synchronized: yes] + I:RevivalLeafNaturalRegenerationTick=40 + + # Level of Poison that bearer of the leaf will apply to entities they attack. [range: 0 ~ 3, default: 1, synchronized: yes] + I:RevivalLeafPoisonLevel=1 + + # Amount of ticks for which bearer of the leaf will apply Poison effect to entities they attack. 20 ticks equals to 1 second. [range: 0 ~ 32768, default: 160, synchronized: yes] + I:RevivalLeafPoisonTime=160 + + # Level of Regeneration that bearer of the leaf will apply to entities nearby when ability activated. [range: 0 ~ 3, default: 1, synchronized: yes] + I:RevivalLeafRegenerationLevel=1 + + # Amount of ticks for which bearer of the leaf will apply Regeneration effect to entities nearby when ability activated. [range: 0 ~ 32768, default: 180, synchronized: yes] + I:RevivalLeafRegenerationTime=180 + + # The damage boost of the Ring of Redemption. Measured in percentage. [range: 0 ~ 500, default: 20, synchronized: yes] + I:RingofRedemptionDamageBoost=20 + + # The damage resistance of the Ring of Redemption. Measured in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:RingofRedemptionDamageResistance=25 + + # The time required for each regeneration of Ring of Redemption. Measured in ticks. [range: 5 ~ 32768, default: 20, synchronized: yes] + I:RingofRedemptionRegenerationTick=20 + + # The damage boost multiplier of the Ring of Ultimate Luxury . [range: 0.0 ~ 2.0, default: 0.5, synchronized: yes] + D:RingofUltimateLuxuryDamageBoostMultiplier=0.5 + + # List of entities that will be affected as Merchant by the Ring of Ultimate Luxury. Changing this option required game restart to take effect. [default: , synchronized: no] + S:RingofUltimateLuxuryExtraMerchantList < + > + + # The damage boost on pet of Sanguinary Hunting Handbook. [range: 0.0 ~ 32768.0, default: 0.25, synchronized: yes] + D:SanguinaryHuntingHandbookDamageMultiplier=0.25 + + # The max count to transporting enemies of Combat Mode. [range: 0 ~ 32768, default: 5, synchronized: yes] + I:ScepterofExtradimensionalMaxCombatCount=5 + + # The cooldown of Combat Mode when using continuously to long. Measured in ticks. [range: 100 ~ 32768, default: 150, synchronized: yes] + I:ScepterofExtradimensionalOverheatCooldown=150 + + # The cooldown of Transporting Mode. Measured in ticks. [range: 200 ~ 32768, default: 280, synchronized: yes] + I:ScepterofExtradimensionalTransportingCooldown=280 + + # Damage Amplification Limit of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 100.0, synchronized: yes] + D:ScrollofIgnoranceCurseDamageBoostLimit=100.0 + + # Heal Amplification Limit of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 50.0, synchronized: yes] + D:ScrollofIgnoranceCurseHealBoostLimit=50.0 + + # Knockback Resistance Limit Modifier of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 160.0, synchronized: yes] + D:ScrollofIgnoranceCurseKnockbackResistanceBoostLimit=160.0 + + # The Max Level of stored experience of Scroll of Ignorance Curse, which provides attribute amplification. [range: 0 ~ 1000, default: 1000, synchronized: yes] + I:ScrollofIgnoranceCurseXPLevelUpperLimit=1000 + + # The damage resistance multiplier of the bypass-armor damage you received. Measured in percentage. [range: 0 ~ 80, default: 50, synchronized: yes] + I:SoulLanternofIllusionBypassDamageResistance=50 + + # Active ability cooldown for Soul Lantern of Illusion. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:SoulLanternofIllusionCooldown=0 + + # The cooldown of soul fireball generating for Soul Lantern of Illusion. Measured in ticks. [range: 0 ~ 32768, default: 60, synchronized: yes] + I:SoulLanternofIllusionFireballCooldown=60 + + # The damage multiplier of the non-magic damage you received. Measured in percentage. [range: 0 ~ 32768, default: 25, synchronized: yes] + I:SoulLanternofIllusionNonMagicDamageMultiplier=25 + + # The special damage resistance of The Arrogance of Chaos. Measured in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:TheArroganceofChaosDamageResistance=80 + + # The cooldown of special descending skill of The Arrogance of Chaos. [range: 200 ~ 2400, default: 500, synchronized: yes] + I:TheArroganceofChaosDescendingCooldown=500 + + # The damage modifier when hit the ground with elytra boost. [range: 1.0 ~ 10.0, default: 1.6, synchronized: yes] + D:TheArroganceofChaosDescendingPowerModifier=1.6 + + # The flying speed modifier when elytra boost. [range: 1.0 ~ 10.0, default: 1.6, synchronized: yes] + D:TheArroganceofChaosFlyingSpeedModifier=1.6 + + # Attack damage of The Bless, actual damage shown in tooltip will be ( 1 + this value ). [range: 0.0 ~ 32768.0, default: 6.0, synchronized: yes] + D:TheBlessAttackDamage=6.0 + + # Attack speed of The Bless. [range: -32768.0 ~ 32768.0, default: -1.6, synchronized: yes] + D:TheBlessAttackSpeed=-1.6 + + # The invulnerable time after hit while The Bless in inventory. [range: 40 ~ 200, default: 40, synchronized: yes] + I:TheBlessInvulnerableTime=40 + + # The cooldown of usage. Measured as tick. [range: 20 ~ 32768, default: 40, synchronized: yes] + I:TheCurseCarverCooldown=40 + + # The initial health percentage the curse will totally damaged. [range: 10 ~ 100, default: 20, synchronized: yes] + I:TheCurseCarverCurseDamageRatio=20 + + # The hurt damage amount of cursed target. [range: 0.0 ~ 32768.0, default: 2.5, synchronized: yes] + D:TheCurseCarverCurseHurtAmount=2.5 + + # The hurt interval time of cursed target. Measured as ticks. [range: 1 ~ 40, default: 12, synchronized: yes] + I:TheCurseCarverCurseHurtInterval=12 + + # When set to false, only the upper limit of ONE level will be exceeded. [default: true, synchronized: yes] + B:TomeofDivinationAmplifyMode=true + + # List of enchantments that will not be affected by the Tome of Divination. Examples: minecraft:sharpness. Changing this option required game restart to take effect. [default: , synchronized: no] + S:TomeofDivinationBlacklist < + > + + # List of entities that will be affected as Raider by the Totem of Malice. Examples: minecraft:witch. Changing this option required game restart to take effect. [default: , synchronized: no] + S:TotemofMaliceExtraRaiderList < + > + + # The damage modifier to the Raiders. [range: 0.0 ~ 400.0, default: 1.5, synchronized: yes] + D:TotemofMaliceRaiderDamageBoost=1.5 + + # The damage resistance to the Raiders. [range: 0.0 ~ 400.0, default: 0.5, synchronized: yes] + D:TotemofMaliceRaiderDamageResistance=0.5 + + # Undocumented property [range: 160 ~ 800, default: 320, synchronized: yes] + I:explorerScrollcooldown=320 + + # Undocumented property [range: 1 ~ 10, default: 5, synchronized: yes] + I:explorerScrolleffectiveRange=5 + + # Undocumented property [range: 0 ~ 100, default: 40, synchronized: yes] + I:survivalScrollhealthThreshold=40 +} + + +########################################################################################################## +# Else Options +#--------------------------------------------------------------------------------------------------------# +# Various options that relates to secondary contents. +########################################################################################################## + +"Else Options" { + # If true, the main creative tab of Enigmatic Legacy will display some uncompleted item. [default: false, synchronized: no] + B:FutureItemDisplay=false + + # If true, the Hidden Recipe will display in JEI. [default: true, synchronized: no] + B:HiddenRecipeJEIDisplay=true + + # If true, the main creative tab of Enigmatic Legacy will be resorted. [default: true, synchronized: no] + B:TabResorted=true +} + + +########################################################################################################## +# Legacy Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect Enigmatic Legacy's items +########################################################################################################## + +"Legacy Balance Options" { + # Whether to trigger the ability of The Cube automatically. [default: true, synchronized: yes] + B:CubeAutoSkillTriggering=true + + # The Damage Limit of the Cube. [range: 50 ~ 32768, default: 100, synchronized: yes] + I:CubeDamageLimit=100 + + # List of effects that will appear in The Cube's random buffs. Examples: minecraft:absorption, minecraft:strength. Changing this option required game restart to take effect. [default: [minecraft:absorption], [minecraft:haste], [minecraft:jump_boost], [minecraft:regeneration], [minecraft:resistance], [minecraft:speed], [minecraft:strength], [minecraft:slow_falling], synchronized: no] + S:TheCubeRandomBuffs < + minecraft:absorption + minecraft:haste + minecraft:jump_boost + minecraft:regeneration + minecraft:resistance + minecraft:speed + minecraft:strength + minecraft:slow_falling + > + + # List of effects that will appear in The Cube's random debuffs. Examples: minecraft:blindness, minecraft:nausea. Changing this option required game restart to take effect. [default: [minecraft:blindness], [minecraft:nausea], [minecraft:mining_fatigue], [minecraft:hunger], [minecraft:levitation], [minecraft:slowness], [minecraft:weakness], [minecraft:poison], [minecraft:wither], synchronized: no] + S:TheCubeRandomDebuffs < + minecraft:blindness + minecraft:nausea + minecraft:mining_fatigue + minecraft:hunger + minecraft:levitation + minecraft:slowness + minecraft:weakness + minecraft:poison + minecraft:wither + > +} + + +########################################################################################################## +# The Worthy One Options +#--------------------------------------------------------------------------------------------------------# +# Various options that about the Events related to The Worthy One. +########################################################################################################## + +"The Worthy One Options" { + # If true, When the proportion of curse time is long enough, there will be some changes in creatures' AI. [default: true, synchronized: yes] + B:EnableCurseBoost=true + + # If true, when a creature spawned, it will immediately gain Curse Boost. [default: false, synchronized: yes] + B:ImmediatelyCurseBoost=false + + # If true, when a creature dies, it will anger its surrounding peers. [default: true, synchronized: yes] + B:PartnerAnger=true +} + + diff --git a/config/enigmaticdelicacy-client.omniconf b/config/enigmaticdelicacy-client.omniconf new file mode 100644 index 0000000..51c9503 --- /dev/null +++ b/config/enigmaticdelicacy-client.omniconf @@ -0,0 +1,19 @@ +# Configuration File + +@CONFIG_VERSION: 1.1 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # Whether to render the duration bar of the Abyss effect. [default: true] + B:AbyssalStewBarDisplay=true + + # The extra nutrition modifier when have Astral Cruet in the inventory. Measured in percentage. [range: 0 ~ 100, default: 20] + I:AstralCruetExtraNutritionModifier=20 +} + + diff --git a/config/enigmaticdelicacy-common.omniconf b/config/enigmaticdelicacy-common.omniconf new file mode 100644 index 0000000..772dbe5 --- /dev/null +++ b/config/enigmaticdelicacy-common.omniconf @@ -0,0 +1,290 @@ +# Configuration File + +@CONFIG_VERSION: 1.1 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# Check more details in Enigmatic Legacy's Config Files. +########################################################################################################## + +"Accessibility Options" { + # Whether or not Abyssal Stew should be enabled. [default: true, synchronized: yes] + B:AbyssalStewEnabled=true + + # Whether or not Astral Button should be enabled. [default: true, synchronized: yes] + B:AstralButtonEnabled=true + + # Whether or not Astral Cabinet should be enabled. [default: true, synchronized: yes] + B:AstralCabinetEnabled=true + + # Whether or not Astral Cruet should be enabled. [default: true, synchronized: yes] + B:AstralCruetEnabled=true + + # Whether or not Astral Door should be enabled. [default: true, synchronized: yes] + B:AstralDoorEnabled=true + + # Whether or not Astral Fruit should be enabled. [default: true, synchronized: yes] + B:AstralFruitEnabled=true + + # Whether or not Astral Leaf should be enabled. [default: true, synchronized: yes] + B:AstralLeafEnabled=true + + # Whether or not Astral Leaves should be enabled. [default: true, synchronized: yes] + B:AstralLeavesEnabled=true + + # Whether or not Astral Log should be enabled. [default: true, synchronized: yes] + B:AstralLogEnabled=true + + # Whether or not Astral Planks should be enabled. [default: true, synchronized: yes] + B:AstralPlanksEnabled=true + + # Whether or not Astral Popsicle should be enabled. [default: true, synchronized: yes] + B:AstralPopsicleEnabled=true + + # Whether or not Astral Pressure Plate should be enabled. [default: true, synchronized: yes] + B:AstralPressurePlateEnabled=true + + # Whether or not Astral Sapling should be enabled. [default: true, synchronized: yes] + B:AstralSaplingEnabled=true + + # Whether or not Astral Slab should be enabled. [default: true, synchronized: yes] + B:AstralSlabEnabled=true + + # Whether or not Astral Stairs should be enabled. [default: true, synchronized: yes] + B:AstralStairsEnabled=true + + # Whether or not Astral Tea should be enabled. [default: true, synchronized: yes] + B:AstralTeaEnabled=true + + # Whether or not Astral Trapdoor should be enabled. [default: true, synchronized: yes] + B:AstralTrapdoorEnabled=true + + # Whether or not Astral Wood should be enabled. [default: true, synchronized: yes] + B:AstralWoodEnabled=true + + # Whether or not Balanced Stewed Soup Block should be enabled. [default: true, synchronized: yes] + B:BalancedStewedSoupBlockEnabled=true + + # Whether or not Balanced Stewed Soup should be enabled. [default: true, synchronized: yes] + B:BalancedStewedSoupEnabled=true + + # Whether or not Bloody Custard should be enabled. [default: true, synchronized: yes] + B:BloodyCustardEnabled=true + + # Whether or not Blossoming Astral Leaves should be enabled. [default: true, synchronized: yes] + B:BlossomingAstralLeavesEnabled=true + + # Whether or not Broken Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:BrokenCursedSoulCrystalEnabled=true + + # Whether or not Charm of Self-discipline should be enabled. [default: true, synchronized: yes] + B:CharmofSelfdisciplineEnabled=true + + # Whether or not Curse Blade should be enabled. [default: true, synchronized: yes] + B:CurseBladeEnabled=true + + # Whether or not Curse Potion should be enabled. [default: true, synchronized: yes] + B:CursePotionEnabled=true + + # Whether or not Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalEnabled=true + + # Whether or not Cursed Soul Crystal Knife should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalKnifeEnabled=true + + # Whether or not Cursed Soul Crystal Pendant should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalPendantEnabled=true + + # Whether or not Cursed Soul Crystal Ring should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalRingEnabled=true + + # Whether or not Divine Fruit Pie Block should be enabled. [default: true, synchronized: yes] + B:DivineFruitPieBlockEnabled=true + + # Whether or not Divine Fruit Pie should be enabled. [default: true, synchronized: yes] + B:DivineFruitPieEnabled=true + + # Whether or not Enigmatic Bush should be enabled. [default: true, synchronized: yes] + B:EnigmaticBushEnabled=true + + # Whether or not Enigmatic Cream should be enabled. [default: true, synchronized: yes] + B:EnigmaticCreamEnabled=true + + # Whether or not Enigmatic Fruit Crate should be enabled. [default: true, synchronized: yes] + B:EnigmaticFruitCrateEnabled=true + + # Whether or not Enigmatic Fruit should be enabled. [default: true, synchronized: yes] + B:EnigmaticFruitEnabled=true + + # Whether or not Enigmatic Seed should be enabled. [default: true, synchronized: yes] + B:EnigmaticSeedEnabled=true + + # Whether or not Etherium Machete should be enabled. [default: true, synchronized: yes] + B:EtheriumMacheteEnabled=true + + # Whether or not Etherium Ore should be enabled. [default: true, synchronized: yes] + B:EtheriumOreEnabled=true + + # Whether or not Etherium Steak should be enabled. [default: true, synchronized: yes] + B:EtheriumSteakEnabled=true + + # Whether or not Etherium Stove should be enabled. [default: true, synchronized: yes] + B:EtheriumStoveEnabled=true + + # Whether or not Fragment of Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:FragmentofCursedSoulCrystalEnabled=true + + # Whether or not Glistening Bark should be enabled. [default: true, synchronized: yes] + B:GlisteningBarkEnabled=true + + # Whether or not Glistening Heart of Protection should be enabled. [default: true, synchronized: yes] + B:GlisteningHeartofProtectionEnabled=true + + # Whether or not Glory of Weapon Master should be enabled. [default: true, synchronized: yes] + B:GloryofWeaponMasterEnabled=true + + # Whether or not Harmonious Grail should be enabled. [default: true, synchronized: yes] + B:HarmoniousGrailEnabled=true + + # Whether or not Ichor Egg should be enabled. [default: true, synchronized: yes] + B:IchorEggEnabled=true + + # Whether or not Ichoroot Soup should be enabled. [default: true, synchronized: yes] + B:IchorootSoupEnabled=true + + # Whether or not Infini-Farmland should be enabled. [default: true, synchronized: yes] + B:InfiniFarmlandEnabled=true + + # Whether or not Infini-Soil should be enabled. [default: true, synchronized: yes] + B:InfiniSoilEnabled=true + + # Whether or not Passion Fried Rice should be enabled. [default: true, synchronized: yes] + B:PassionFriedRiceEnabled=true + + # Whether or not Potted Astral Sapling should be enabled. [default: true, synchronized: yes] + B:PottedAstralSaplingEnabled=true + + # Whether or not Purified Dragon Breath should be enabled. [default: true, synchronized: yes] + B:PurifiedDragonBreathEnabled=true + + # Whether or not Scroll of Fading should be enabled. [default: true, synchronized: yes] + B:ScrollofFadingEnabled=true + + # Whether or not Slice of Astral Fruit should be enabled. [default: true, synchronized: yes] + B:SliceofAstralFruitEnabled=true + + # Whether or not Slice of Cosmic Cake should be enabled. [default: true, synchronized: yes] + B:SliceofCosmicCakeEnabled=true + + # Whether or not Slice of Sticky Enigmatic Pie should be enabled. [default: true, synchronized: yes] + B:SliceofStickyEnigmaticPieEnabled=true + + # Whether or not Sticky Enigmatic Pie should be enabled. [default: true, synchronized: yes] + B:StickyEnigmaticPieEnabled=true + + # Whether or not Stripped Astral Log should be enabled. [default: true, synchronized: yes] + B:StrippedAstralLogEnabled=true + + # Whether or not Stripped Astral Wood should be enabled. [default: true, synchronized: yes] + B:StrippedAstralWoodEnabled=true + + # Whether or not Stuffed Astral Potato should be enabled. [default: true, synchronized: yes] + B:StuffedAstralPotatoEnabled=true + + # Whether or not Tome of Omniscience should be enabled. [default: true, synchronized: yes] + B:TomeofOmniscienceEnabled=true + + # Whether or not Voracity Emblem should be enabled. [default: true, synchronized: yes] + B:VoracityEmblemEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # The damage modifier when you have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 32768, default: 30, synchronized: yes] + I:AbyssalStewDamageModifier=30 + + # The effect duration of Abyssal Stew. Measured in tick. [range: 0 ~ 32768, default: 18000, synchronized: yes] + I:AbyssalStewDuration=18000 + + # The attack damage modifier when you equip The Testament of Contempt and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:AbyssalStewEldritchAmuletDamageBoost=80 + + # The damage resistance rate when you equip The Testament of Contempt and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:AbyssalStewEldritchAmuletDamageResistance=40 + + # The reduced duration time when killing creatures. Measured in tick. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:AbyssalStewKillPunishment=40 + + # The damage resistance modifier when you have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:AbyssalStewResistanceModifier=25 + + # The attack damage modifier per every harmful effect the target has when you hold The Infinitum and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 50, default: 8, synchronized: yes] + I:AbyssalStewTheInfinitumAttackModifierPerHarmfulEffect=8 + + # The probability to making next attack received ineffective when you hold The Infinitum and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 80, default: 25, synchronized: yes] + I:AbyssalStewTheInfinitumDisAttackProbability=25 + + # The extra nutrition modifier when have Astral Cruet in the inventory. Measured in percentage. [range: 0 ~ 100, default: 20, synchronized: yes] + I:AstralCruetExtraNutritionModifier=20 + + # The amplifier of additional health curse effect while charging attack. [range: 0 ~ 9, default: 4, synchronized: yes] + I:CurseBladeAdditionalHealthCurseAmplifier=4 + + # The duration of additional health curse effect while charging attack. [range: 600 ~ 32768, default: 2400, synchronized: yes] + I:CurseBladeAdditionalHealthCurseDuration=2400 + + # The Attack Speed Multiplier when you get the curse after gaining Blooded Ring of the Seven Curses. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CurseBladeAttackSpeedCurseMultiplier=10 + + # The Amplifier of Health Curse when you get the curse after gaining Broken Cursed Soul Crystal. [range: 0 ~ 32768, default: 5, synchronized: yes] + I:CurseBladeHealthCurseAmplifier=5 + + # The probability of applying health curse effect on the target. Measures in percentage. [range: 0 ~ 30, default: 16, synchronized: yes] + I:CursedSoulCrystalKnifeApplyingCurseEffectProbability=16 + + # The cooldown of transforming creatures into babies ot drop loot. Measures in tick. [range: 40 ~ 32768, default: 200, synchronized: yes] + I:CursedSoulCrystalKnifeSpecialLootCooldown=200 + + # The healing amount modifier. Measures in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:CursedSoulCrystalPendantHealingAmountModifier=25 + + # The ratio of recovery base on the damage you received. Measures in percentage. [range: 0 ~ 100, default: 24, synchronized: yes] + I:CursedSoulCrystalPendantInjuryRecoveryRate=24 + + # The protection skill cooldown of Glistening Heart of Protection. [range: 0 ~ 32768, default: 240, synchronized: yes] + I:GlisteningHeartofProtectionCooldown=240 + + # The damage resistance when equipped Glistening Heart of Protection. [range: 0 ~ 90, default: 75, synchronized: yes] + I:GlisteningHeartofProtectionDamageResistance=75 + + # The resistance threshold to fully resist when equipped Glistening Heart of Protection. [range: 0 ~ 90, default: 60, synchronized: yes] + I:GlisteningHeartofProtectionResistanceThreshold=60 + + # The damage modifier when equipped Glory of Weapon Master. Measured in percentage. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:GloryofWeaponMasterDamageModifier=10 + + # The cooldown of add Fading Effect when equipped Scroll of Fading. Measured in ticks. [range: 100 ~ 32768, default: 1200, synchronized: yes] + I:ScrollofFadingCooldown=1200 + + # Crit modifier increase provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.25, synchronized: yes] + D:VoracityEmblemCritModifier=1.25 + + # Damage increase provided by Emblem of Boundless Voracity for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.4, synchronized: yes] + D:VoracityEmblemDamageBoost=0.4 + + # Damage resistance provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:VoracityEmblemResistanceBoost=0.5 + + # Movement speed increase provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.25, synchronized: yes] + D:VoracityEmblemSpeedBoost=0.25 +} + + diff --git a/config/enigmaticlegacy-client.omniconf b/config/enigmaticlegacy-client.omniconf new file mode 100644 index 0000000..6a0e258 --- /dev/null +++ b/config/enigmaticlegacy-client.omniconf @@ -0,0 +1,92 @@ +# Configuration File + +@CONFIG_VERSION: 2.2 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # Text overflow mode which should be used by The Acknowledgment specifically. This is separate from Patchouli's global setting since it uses RESIZE by default, which unpromptly attempts to rescale font even when no rescaling is neccessary, and it is never neccessary for The Acknowledgment thanks to my continuous efforts to make texts fit perfectly on each and every page. [default: OVERFLOW] + # Valid values: OVERFLOW, TRUNCATE, RESIZE + S:AcknowledgmentOverflowMode=OVERFLOW + + # If false, active ability of Angel's Blessing will not be triggerable by pressing jump key in mid-air. [default: true] + B:AngelBlessingDoubleJump=true + + # Whether or not flame particles should appear when the Astral Breaker breaks a block [default: true] + B:AstralBreakerFlameParticlesToggle=true + + # Controls how obscured your vision is in lava when Blazing Core is equipped. Higher value equals more visibility. [range: 0.0 ~ 1024.0, default: 4.0] + D:BlazingCoreLavaDensity=4.0 + + # Flips the parabolic function bearing responsibility for heat bar rendering when temporary fire resistance from Blazing Core is active. Instead of default behavior, it will start decreasing slowly, but will expotentially speed up the closer to the end it is. This is a purely visual effect - raw fire immunity time provided stays unchanged. [default: false] + B:BlazingCoreTraitorBarEnabled=false + + # If true, disables subtitles for The Architect's narration. [default: false] + B:DisableQuoteSubtitles=false + + # Whether or not button for accessing Ender Chest should be added to inventory GUI when player has Ring of Ender equipped. [default: true] + B:EnderChestButtonEnabled=true + + # Allows to set offset for Ender Chest button on X axis. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetX=-75 + + # Allows to set offset for Ender Chest button on X axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetXCreative=0 + + # Allows to set offset for Ender Chest button on Y axis. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetY=-39 + + # Allows to set offset for Ender Chest button on Y axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetYCreative=0 + + # Whether or not hunger bar should be rendered at all after Forbidden Fruit was consumed. [default: true] + B:ForbiddenFruitRenderHungerbar=true + + # Whether or not food icons on hunger bar should be replaced when custom ones after Forbidden Fruit was consumed. [default: true] + B:ForbiddenFruitReplaceHungerBar=true + + # Whether or not button for toggling magnet effects should be added to inventory GUI when player has Ring of Ender equipped. [default: true] + B:MagnetRingButtonEnabled=true + + # Allows to set offset for Magnet Effects button on X axis. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetX=-52 + + # Allows to set offset for Magnet Effects button on X axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetXCreative=0 + + # Allows to set offset for Magnet Effects button on Y axis. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetY=-20 + + # Allows to set offset for Magnet Effects button on Y axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetYCreative=0 + + # Controls how obscured your vision is in lava when Molten Heart effect is active. Higher value equals more visibility. [range: 0.0 ~ 1024.0, default: 6.0] + D:MoltenHeartLavaDensity=6.0 + + # Whether or not oxygen bar should pe prevented from rendering if Will of the Ocean or Pearl of the Void is equipped. [default: true] + B:SuppressUnneccessaryOxygenRender=true + + # Whether or not Enigmatic Legacy should show notification in chat when new mod update is available. [default: true] + B:UpdateHandlerEnabled=false +} + + +########################################################################################################## +# The Seven Curses +#--------------------------------------------------------------------------------------------------------# +# Config options directly affecting Ring of the Seven Curses +########################################################################################################## + +"The Seven Curses" { + # If true, tooltip of Ring of the Seven Curses cannot be read before it is equipped. Fun way to teach players that not every mystery is worth investigating. [default: false] + B:CursedRingConcealAbilities=false + + # Set to false to disable displaying lore on Ring of the Seven Curses. Useful if you are a modpack developer wanting to have your own. [default: true] + B:CursedRingDisplayLore=true +} + + diff --git a/config/enigmaticlegacy-common.omniconf b/config/enigmaticlegacy-common.omniconf new file mode 100644 index 0000000..474201c --- /dev/null +++ b/config/enigmaticlegacy-common.omniconf @@ -0,0 +1,829 @@ +# Configuration File + +@CONFIG_VERSION: 2.2 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# +# A BLASTED WARNING, PLEASE READ CAREFULLY: +# This WILL NOT "delete" any of the items from the mod. For items, none of the options here do more than +# just disable default ways of obtaining them. For stuff in dungeon loot - it is removed from dungeon loot, +# for starter items - no longer given at the start, for craftables - default recipe is disabled. +# If you're a modpack developer or whatever, that is your way to add your own ways of obtaining them. +# Want to disable Enigmatic Amulet/Ring of the Seven Curses from being granted to player when they spawn? +# HERE IS THE PLACE AND TIME, COME ON AND SLAM! +# +# Please note that as of release 2.6.0 of Enigmatic Legacy, those options are automatically generated +# for most items in the mod. They may refer to items that do not exist yet or are not obtainable in any +# case, and may not work for certain items due to non-generic obtaining methods or generic oversight. +# +# If you discover option that does not work, but for whatever reason you really need it, submit an issue +# pointing out to such option here: https://github.com/Extegral/Enigmatic-Legacy/issues +########################################################################################################## + +"Accessibility Options" { + # Whether or not Amulet of Ascension should be enabled. [default: true, synchronized: yes] + B:AmuletofAscensionEnabled=true + + # Whether or not Angel's Blessing should be enabled. [default: true, synchronized: yes] + B:AngelsBlessingEnabled=true + + # Whether or not Astral Breaker should be enabled. [default: true, synchronized: yes] + B:AstralBreakerEnabled=true + + # Whether or not Astral Dust should be enabled. [default: true, synchronized: yes] + B:AstralDustEnabled=true + + # Whether or not Astral Potato should be enabled. [default: true, synchronized: yes] + B:AstralPotatoEnabled=true + + # Whether or not Axe of Executioner should be enabled. [default: true, synchronized: yes] + B:AxeofExecutionerEnabled=true + + # Whether or not Blank Scroll should be enabled. [default: true, synchronized: yes] + B:BlankScrollEnabled=true + + # Whether or not Blazing Core should be enabled. [default: true, synchronized: yes] + B:BlazingCoreEnabled=true + + # Whether or not bonus recipes for wool dyeing should be enabled. [default: true, synchronized: yes] + B:BonusWoolRecipesEnabled=true + + # Whether or not Bottle of Ichor should be enabled. [default: true, synchronized: yes] + B:BottleofIchorEnabled=true + + # Whether or not Bulwark of Blazing Pride should be enabled. [default: true, synchronized: yes] + B:BulwarkofBlazingPrideEnabled=true + + # Whether or not Ceaseless Enchantment should be enabled. [default: true, synchronized: yes] + B:CeaselessEnchantmentEnabled=true + + # Whether or not Celestial Fruit should be enabled. [default: true, synchronized: yes] + B:CelestialFruitEnabled=true + + # Whether or not Charming Insignia should be enabled. [default: true, synchronized: yes] + B:CharmingInsigniaEnabled=true + + # Whether or not Charm of Treasure Hunter should be enabled. [default: true, synchronized: yes] + B:CharmofTreasureHunterEnabled=true + + # Whether or not Common Potions should be enabled. [default: true, synchronized: yes] + B:CommonPotionsEnabled=true + + # Whether or not Corrupted Tome should be enabled. [default: true, synchronized: yes] + B:CorruptedTomeEnabled=true + + # Whether or not Cosmic Scroll should be enabled. [default: true, synchronized: yes] + B:CosmicScrollEnabled=true + + # Whether or not Enigmatic Legacy should purposefully crash client whenever any mod tries to inject unnamed LootPool into any loot table. If false, stacktraces will be printed to log but game will proceed as normal. [default: true, synchronized: no] + B:CrashOnUnnamedPool=true + + # Whether or not Curse of Eternal Binding should be enabled. [default: true, synchronized: yes] + B:CurseofEternalBindingEnabled=true + + # Whether or not Curse of Nemesis should be enabled. [default: true, synchronized: yes] + B:CurseofNemesisEnabled=true + + # Whether or not Curse of Sorrow should be enabled. [default: true, synchronized: yes] + B:CurseofSorrowEnabled=true + + # Whether or not this mod should add any custom loot to dungeon chests' loot tables. This options is mainly for modpack developers and enables them to re-add that loot on their own terms, since no other ways of modifying what Enigmatic Legacy adds to loot tables currently exist. [default: true, synchronized: yes] + B:CustomDungeonLootEnabled=true + + # Whether or not Darkest Scroll should be enabled. [default: true, synchronized: yes] + B:DarkestScrollEnabled=true + + # Whether or not Deception Amulet should be enabled. [default: true, synchronized: yes] + B:DeceptionAmuletEnabled=true + + # If true, tools with area of effect abilities will not have those abilities disabled when player holds Shift (crouches). [default: false, synchronized: yes] + B:DisableAOEShiftSuppression=false + + # Whether or not Eldritch Frying Pan should be enabled. [default: true, synchronized: yes] + B:EldritchFryingPanEnabled=true + + # Whether or not Emblem of Bloodstained Valor should be enabled. [default: true, synchronized: yes] + B:EmblemofBloodstainedValorEnabled=true + + # Whether or not Emblem of Monster Slayer should be enabled. [default: true, synchronized: yes] + B:EmblemofMonsterSlayerEnabled=true + + # Whether or not Enchanter's Pearl should be enabled. [default: true, synchronized: yes] + B:EnchantersPearlEnabled=true + + # Whether or not Ender Rod should be enabled. [default: true, synchronized: yes] + B:EnderRodEnabled=true + + # Whether or not Enigmatic Amulet should be enabled. [default: true, synchronized: yes] + B:EnigmaticAmuletEnabled=false + + # Whether or not Essence of Raging Life should be enabled. [default: true, synchronized: yes] + B:EssenceofRagingLifeEnabled=true + + # Whether or not Etherium Armor should be enabled. [default: true, synchronized: yes] + B:EtheriumArmorEnabled=true + + # Whether or not Etherium Broadsword should be enabled. [default: true, synchronized: yes] + B:EtheriumBroadswordEnabled=true + + # Whether or not Etherium Ingot should be enabled. [default: true, synchronized: yes] + B:EtheriumIngotEnabled=true + + # Whether or not Etherium Nugget should be enabled. [default: true, synchronized: yes] + B:EtheriumNuggetEnabled=true + + # Whether or not Etherium Ore should be enabled. [default: true, synchronized: yes] + B:EtheriumOreEnabled=true + + # Whether or not Etherium Pickaxe should be enabled. [default: true, synchronized: yes] + B:EtheriumPickaxeEnabled=true + + # Whether or not Etherium Scraps should be enabled. [default: true, synchronized: yes] + B:EtheriumScrapsEnabled=true + + # Whether or not Etherium Scythe should be enabled. [default: true, synchronized: yes] + B:EtheriumScytheEnabled=true + + # Whether or not Etherium Shovel should be enabled. [default: true, synchronized: yes] + B:EtheriumShovelEnabled=true + + # Whether or not Etherium Waraxe should be enabled. [default: true, synchronized: yes] + B:EtheriumWaraxeEnabled=true + + # Whether or not Exquisite Ring should be enabled. [default: true, synchronized: yes] + B:ExquisiteRingEnabled=true + + # Whether or not Extradimensional Eye should be enabled. [default: true, synchronized: yes] + B:ExtradimensionalEyeEnabled=true + + # Whether or not Eye of Nebula should be enabled. [default: true, synchronized: yes] + B:EyeofNebulaEnabled=true + + # Whether or not Forbidden Fruit should be enabled. [default: true, synchronized: yes] + B:ForbiddenFruitEnabled=true + + # Whether or not Gift of the Heaven should be enabled. [default: true, synchronized: yes] + B:GiftoftheHeavenEnabled=true + + # Whether or not Grace of the Creator should be enabled. [default: true, synchronized: yes] + B:GraceoftheCreatorEnabled=true + + # Whether or not Guide to Feral Hunt should be enabled. [default: true, synchronized: yes] + B:GuidetoFeralHuntEnabled=true + + # Whether or not Guite to Animal Companionship should be enabled. [default: true, synchronized: yes] + B:GuitetoAnimalCompanionshipEnabled=true + + # Whether or not Heart of the Abyss should be enabled. [default: true, synchronized: yes] + B:HeartoftheAbyssEnabled=true + + # Whether or not Heart of the Cosmos should be enabled. [default: true, synchronized: yes] + B:HeartoftheCosmosEnabled=true + + # Whether or not Heart of the Earth should be enabled. [default: true, synchronized: yes] + B:HeartoftheEarthEnabled=true + + # Whether or not Heart of the Golem should be enabled. [default: true, synchronized: yes] + B:HeartoftheGolemEnabled=true + + # Whether or not Heart of the Guardian should be enabled. [default: true, synchronized: yes] + B:HeartoftheGuardianEnabled=true + + # Whether or not Inscrutable Eye should be enabled. [default: true, synchronized: yes] + B:InscrutableEyeEnabled=true + + # Whether or not Iron Ring should be enabled. [default: true, synchronized: yes] + B:IronRingEnabled=true + + # Whether or not Keystone of The Oblivion should be enabled. [default: true, synchronized: yes] + B:KeystoneofTheOblivionEnabled=true + + # Whether or not Lore Fragment should be enabled. [default: true, synchronized: yes] + B:LoreFragmentEnabled=true + + # Whether or not Magnet Ring should be enabled. [default: true, synchronized: yes] + B:MagnetRingEnabled=true + + # Whether or not Majestic Elytra should be enabled. [default: true, synchronized: yes] + B:MajesticElytraEnabled=true + + # Whether or not Megasponge should be enabled. [default: true, synchronized: yes] + B:MegaspongeEnabled=true + + # Whether or not Mending Mixture should be enabled. [default: true, synchronized: yes] + B:MendingMixtureEnabled=true + + # Whether or not Nefarious Essence should be enabled. [default: true, synchronized: yes] + B:NefariousEssenceEnabled=true + + # Whether or not Nefarious Ingot should be enabled. [default: true, synchronized: yes] + B:NefariousIngotEnabled=true + + # Whether or not Non-Euclidean Cube should be enabled. [default: true, synchronized: yes] + B:NonEuclideanCubeEnabled=true + + # Whether or not Pact of Infinite Avarice should be enabled. [default: true, synchronized: yes] + B:PactofInfiniteAvariceEnabled=true + + # Whether or not Pearl of the Void should be enabled. [default: true, synchronized: yes] + B:PearloftheVoidEnabled=true + + # Whether or not Potion of Recall should be enabled. [default: true, synchronized: yes] + B:PotionofRecallEnabled=true + + # Whether or not Potion of Twisted Mercy should be enabled. [default: true, synchronized: yes] + B:PotionofTwistedMercyEnabled=true + + # If true, Enigmatic Legacy will cycle through each player's recipe book and trigger 'minecraft:recipe_unlocked' criterion trigger for everything that they have unlocked upon player joining the world. [default: true, synchronized: no] + B:RetriggerRecipeUnlocks=false + + # Whether or not Ring of Dislocation should be enabled. [default: true, synchronized: yes] + B:RingofDislocationEnabled=true + + # Whether or not Ring of Ender should be enabled. [default: true, synchronized: yes] + B:RingofEnderEnabled=true + + # Whether or not Ring of the Seven Curses should be enabled. [default: true, synchronized: yes] + B:RingoftheSevenCursesEnabled=false + + # Whether or not Scroll of Ageless Wisdom should be enabled. [default: true, synchronized: yes] + B:ScrollofAgelessWisdomEnabled=true + + # Whether or not Scroll of Postmortal Recall should be enabled. [default: true, synchronized: yes] + B:ScrollofPostmortalRecallEnabled=true + + # Whether or not Scroll of a Thousand Curses should be enabled. [default: true, synchronized: yes] + B:ScrollofaThousandCursesEnabled=true + + # Whether or not Sharpshooter Enchantment should be enabled. [default: true, synchronized: yes] + B:SharpshooterEnchantmentEnabled=true + + # Whether or not Slayer Enchantment should be enabled. [default: true, synchronized: yes] + B:SlayerEnchantmentEnabled=true + + # Whether or not Soul Dust should be enabled. [default: true, synchronized: yes] + B:SoulDustEnabled=true + + # Whether or not Tattered Tome should be enabled. [default: true, synchronized: yes] + B:TatteredTomeEnabled=true + + # Whether or not The Acknowledgment should be enabled. [default: true, synchronized: yes] + B:TheAcknowledgmentEnabled=true + + # Whether or not The Architect's Inkwell should be enabled. [default: true, synchronized: yes] + B:TheArchitectsInkwellEnabled=true + + # Whether or not The Burden of Desolation should be enabled. [default: true, synchronized: yes] + B:TheBurdenofDesolationEnabled=true + + # Whether or not The Ender Slayer should be enabled. [default: true, synchronized: yes] + B:TheEnderSlayerEnabled=true + + # Whether or not The Infinitum should be enabled. [default: true, synchronized: yes] + B:TheInfinitumEnabled=true + + # Whether or not The Judgement should be enabled. [default: true, synchronized: yes] + B:TheJudgementEnabled=true + + # Whether or not The Testament of Contempt should be enabled. [default: true, synchronized: yes] + B:TheTestamentofContemptEnabled=true + + # Whether or not The Twist should be enabled. [default: true, synchronized: yes] + B:TheTwistEnabled=true + + # Whether or not Tome of Devoured Malignancy should be enabled. [default: true, synchronized: yes] + B:TomeofDevouredMalignancyEnabled=true + + # Whether or not Tome of Hungering Knowledge should be enabled. [default: true, synchronized: yes] + B:TomeofHungeringKnowledgeEnabled=true + + # Whether or not Torrent Enchantment should be enabled. [default: true, synchronized: yes] + B:TorrentEnchantmentEnabled=true + + # Whether or not Twisted Heart should be enabled. [default: true, synchronized: yes] + B:TwistedHeartEnabled=true + + # Whether or not Twisted Mirror should be enabled. [default: true, synchronized: yes] + B:TwistedMirrorEnabled=true + + # Whether or not Ultimate Potions should be enabled. [default: true, synchronized: yes] + B:UltimatePotionsEnabled=true + + # Whether or not Unholy Grail should be enabled. [default: true, synchronized: yes] + B:UnholyGrailEnabled=true + + # Whether or not Unholy Stone should be enabled. [default: true, synchronized: yes] + B:UnholyStoneEnabled=true + + # Whether or not Wayfinder of the Damned should be enabled. [default: true, synchronized: yes] + B:WayfinderoftheDamnedEnabled=true + + # Whether or not Will of the Ocean should be enabled. [default: true, synchronized: yes] + B:WilloftheOceanEnabled=true + + # Whether or not Withered Tome should be enabled. [default: true, synchronized: yes] + B:WitheredTomeEnabled=true + + # Whether or not Wrath Enchantment should be enabled. [default: true, synchronized: yes] + B:WrathEnchantmentEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # Acceleration modifier for active ability of Angel's Blessing. The greater it is, the more momentum you will gain. [range: 0.0 ~ 256.0, default: 1.0, synchronized: yes] + D:AngelBlessingAccelerationModifier=1.0 + + # Separate acceleration modifier for active ability of Angel's Blessing when player is flying with Elytra. [range: 0.0 ~ 256.0, default: 0.6, synchronized: yes] + D:AngelBlessingAccelerationModifierElytra=0.6 + + # Active ability cooldown for Angel's Blessing. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:AngelBlessingCooldown=40 + + # Chance to deflect projectile when having Angel's Blessing equipped. Measured in percents. [range: 0 ~ 100, default: 50, synchronized: yes] + I:AngelBlessingDeflectChance=50 + + # List of entities that should count towards the curse-altering effect of Guide to Animal Companionship, and thus remain neutral to players bearing Ring of the Seven Curses if they posses such guide. Examples: minecraft:iron_golem, minecraft:zombified_piglin [default: , synchronized: no] + S:AnimalGuideAnimalExclusionList < + > + + # The depth of Astral Breaker AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:AstralBreakerMiningDepth=1 + + # The radius of Astral Breaker AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:AstralBreakerMiningRadius=3 + + # Chance to get an Emerald when slaying any mob with Pact of Infinite Avarice equipped. [range: 0 ~ 100, default: 15, synchronized: yes] + I:AvariceScrollEmeraldChance=15 + + # Attack speed increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:BerserkEmblemAttackSpeedBoost=1.0 + + # Damage increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:BerserkEmblemDamageBoost=1.0 + + # Damage resistance provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:BerserkEmblemResistanceBoost=0.5 + + # Movement speed increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:BerserkEmblemSpeedBoost=0.5 + + # Active ability cooldown for Blazing Core. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:BlazingCoreCooldown=0 + + # How much fire-based damage instantly receives any creature that attacks bearer of the Blazing Core. [range: 0.0 ~ 512.0, default: 4.0, synchronized: yes] + D:BlazingCoreDamageFeedback=4.0 + + # How how many seconds any creature that attacks bearer of the Blazing Core will be set on fire. [range: 0 ~ 512, default: 4, synchronized: yes] + I:BlazingCoreIgnitionFeedback=4 + + # Whether or not crossbows with Ceaseless should be able to shoot basic arrows even if there are none in player's inventory. [default: true, synchronized: yes] + B:CeaselessEnchantmentAllowNoArrow=true + + # Cooldown of death protection ability of The Architect's Favor. Measured in seconds. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:CosmicScrollDeathProtectionCooldown=600 + + # Alternative Etherium Shield health requirement for those who bear The Architect's Favor. Defined as percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:CosmicScrollEtheriumShieldThreshold=80 + + # Attack damage bonus of The Architect's Favor against non-chosen players. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:CosmicScrollUnchosenDamageBonus=100 + + # Knockback bonus of The Architect's Favor against non-chosen players. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:CosmicScrollUnchosenKnockbackBonus=100 + + # Damage increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:CursedScrollDamageBoost=4 + + # Mining speed increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 7, synchronized: yes] + I:CursedScrollMiningBoost=7 + + # Health regeneration increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:CursedScrollRegenBoost=4 + + # The chance for Heart of the Earth to be obtained from suspicious blocks (default is 3%). [range: 0.0 ~ 32768.0, default: 0.03, synchronized: yes] + D:CustomLootEarthHeartChance=0.03 + + # The base armor value of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:EldritchPanArmorValue=4.0 + + # The base attack damage of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 31.0, synchronized: yes] + D:EldritchPanAttackDamage=31.0 + + # The base attack speed of The Voracious Pan. [range: -32768.0 ~ 32768.0, default: -3.2, synchronized: yes] + D:EldritchPanAttackSpeed=-3.2 + + # Base Hungersteal value of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:EldritchPanHungerSteal=2.0 + + # Base Lifesteal fraction of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.15, synchronized: yes] + D:EldritchPanLifeSteal=0.15 + + # Base armor gain from unique mob kills for The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:EldritchPanUniqueArmorGain=0.5 + + # Base damage gain from unique mob kills for The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:EldritchPanUniqueDamageGain=0.5 + + # How many unique mob kills will count towards increasing the stats of The Voracious Pan. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:EldritchPanUniqueGainLimit=100 + + # Chance that Dimensional Anchor will not spend a charge upon player respawn [range: 0 ~ 32768, default: 35, synchronized: yes] + I:EndAnchorChargeSaveChance=35 + + # List of specific dimensions in which Dimensional Anchor will not work. If you want it to only work in The End - use EndExclusiveMode instead. Examples: minecraft:overworld, minecraft:the_nether [default: , synchronized: no] + S:EndAnchorDimensionBlacklist < + > + + # If true, Dimensional Anchor will only work in The End. [default: false, synchronized: yes] + B:EndAnchorEndExclusiveMode=false + + # Attack damage of The Ender Slayer, actual damage shown in tooltip will be is 4 + this_value. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:EnderSlayerAttackDamage=4 + + # Attack speed of The Ender Slayer. [range: -32768.0 ~ 32768.0, default: -2.6, synchronized: yes] + D:EnderSlayerAttackSpeed=-2.6 + + # Attack damage bonus of The Ender Slayer against dwellers of The End. [range: 0 ~ 32768, default: 150, synchronized: yes] + I:EnderSlayerEndDamageBonus=150 + + # List of entities that should be considered dwellers of The End by The Ender Slayer. Examples: minecraft:iron_golem, minecraft:zombified_piglin [default: , synchronized: no] + S:EnderSlayerEndDwellers < + > + + # Knockback bonus of The Ender Slayer against dwellers of The End. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:EnderSlayerEndKnockbackBonus=600 + + # The damage bonus stat provided by red Enigmatic Amulet. [range: -32768.0 ~ 32768.0, default: 1.5, synchronized: yes] + D:EnigmaticAmuletDamageBonus=1.5 + + # Whether or not it should be possible to equip multiple Enigmatic Amulets, granted player somehow gets more than one charm slot. [default: false, synchronized: yes] + B:EnigmaticAmuletMultiequip=false + + # If true, only original owner of Extradimensional Vessel will be able to pick it up. [default: false, synchronized: yes] + B:EnigmaticAmuletOwnerOnlyVessel=false + + # What fraction of player's experience should be stored in Extradimensional Vessel upon their death. Experience that is not stored will be lost forever. 1.0 means that all experience is saved. [range: 0.0 ~ 1.0, default: 1.0, synchronized: yes] + D:EnigmaticAmuletSavedXPFraction=1.0 + + # If true, color of Enigmatic Amulet will be assigned using player's name as seed for generating it, instead of randomly - so that every player will always receive one specific color. [default: false, synchronized: yes] + B:EnigmaticAmuletSeededColorGen=false + + # Whether or not Enigmatic Amulet should be summoning Extradimensional Vessel on owner's death. [default: true, synchronized: yes] + B:EnigmaticAmuletVesselEnabled=true + + # Active ability cooldown for Heart of Creation. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 3, synchronized: yes] + I:EnigmaticItemCooldown=3 + + # Damage reduction of shield generated by Etherium Armor. Defined as percentage. [range: 0 ~ 100, default: 50, synchronized: yes] + I:EtheriumArmorShieldReduction=50 + + # The value of health to which player wearing full Etherium Armor set should be brough to activate the shield ability. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumArmorShieldThreshold=40 + + # The volume Etherium Waraxe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumAxeMiningVolume=3 + + # The depth of Etherium Pickaxe AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:EtheriumPickaxeMiningDepth=1 + + # The radius of Etherium Pickaxe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumPickaxeMiningRadius=3 + + # The volume Etherium Scythe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumScytheMiningVolume=3 + + # The depth of Etherium Shovel AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:EtheriumShovelMiningDepth=1 + + # The radius of Etherium Shovel AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumShovelMiningRadius=3 + + # Cooldown of Etherium Broadsword ability. Measured in ticks. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:EtheriumSwordCooldown=40 + + # Attack damage increase for next attack after using active ability. Defined as percentage. [range: 0 ~ 32768, default: 150, synchronized: yes] + I:EyeOfNebulaAttackEmpower=150 + + # Active ability cooldown for Eye of the Nebula. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 60, synchronized: yes] + I:EyeOfNebulaCooldown=60 + + # Probability for Eye of the Nebula to teleport it's bearer from any attack without receiving any damage. Defined as percentage. [range: 0 ~ 100, default: 15, synchronized: yes] + I:EyeOfNebulaDodgeChance=15 + + # Range in which Eye of the Nebula searches for a position to teleport it's bearer to when dodging the attack. [range: 1.0 ~ 128.0, default: 16.0, synchronized: yes] + D:EyeOfNebulaDodgeRange=16.0 + + # Magic Damage boost provided by Eye of the Nebula. Defined as percentage. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:EyeOfNebulaMagicBoost=40 + + # Magic Damage resistance provided by Eye of the Nebula. Defined as percentage. [range: 0 ~ 100, default: 65, synchronized: yes] + I:EyeOfNebulaMagicResistance=65 + + # Range in which Eye of the Nebula can reach an entity when using it's active ability. [range: 1.0 ~ 128.0, default: 32.0, synchronized: yes] + D:EyeOfNebulaPhaseRange=32.0 + + # Default chance to behead an enemy with Axe of Executioner. Defined as percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:ForbiddenAxeBeheadingBase=10 + + # Bonus percantage to beheading chance from each Looting level applied to Axe of Executioner. [range: 0 ~ 100, default: 5, synchronized: yes] + I:ForbiddenAxeBeheadingBonus=5 + + # Multiplier for duration of debuffs applied upon consumption of The Forbidden Fruit. Setting it to 0 will disable debuffs entirely. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:ForbiddenFruitDebuffDurationMultiplier=1.0 + + # How much should be subtracted from regeneration of player who have consumed The Forbidden Fruit. [range: 0 ~ 100, default: 80, synchronized: yes] + I:ForbiddenFruitRegenerationSubtraction=80 + + # Active ability cooldown for Heart of the Golem. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:GolemHeartCooldown=0 + + # Default amount of armor points provided by Heart of the Golem. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:GolemHeartDefaultArmor=4.0 + + # List of items that should not be counted as armor by Heart of the Golem, even when equipped in armor slots. [default: [minecraft:elytra], [enigmaticlegacy:enigmatic_elytra], synchronized: no] + S:GolemHeartExcludedArmor < + minecraft:elytra + enigmaticlegacy:enigmatic_elytra + > + + # Resistance to explosion damage provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:GolemHeartExplosionResistance=40 + + # Resistance to knockback provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 100, synchronized: yes] + I:GolemHeartKnockbackResistance=100 + + # Resistance to melee attacks provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:GolemHeartMeleeResistance=25 + + # The amount of armor points provided by Heart of the Golem when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 16.0, synchronized: yes] + D:GolemHeartSuperArmor=16.0 + + # The amount of armor toughness provided by Heart of the Golem when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:GolemHeartSuperArmorToughness=4.0 + + # Modifier for Magic Damage vulnerability applied by Heart of the Golem. Default value of 2.0 means that player will receive twice as much damage from magic. [range: 1.0 ~ 256.0, default: 2.0, synchronized: yes] + D:GolemHeartVulnerabilityModifier=2.0 + + # Damage boost granted by the Growing Bloodlust, per level of effect. [range: 0.0 ~ 100.0, default: 0.05, synchronized: yes] + D:GrowingBloodlustDamageBoost=0.05 + + # How much health Growing Bloodlust leaves the player with, as a fraction of max health. [range: 0.0 ~ 32768.0, default: 0.3, synchronized: yes] + D:GrowingBloodlustHealthLossLimit=0.3 + + # How often the player loses 1 HP at level one of Growing Bloodlust, in ticks. [range: 0 ~ 32768, default: 160, synchronized: yes] + I:GrowingBloodlustHealthLossTicks=160 + + # Lifesteal granted by the Growing Bloodlust, per level of effect. [range: 0.0 ~ 100.0, default: 0.025, synchronized: yes] + D:GrowingBloodlustLifestealBoost=0.025 + + # How lock the The Voracious Pan needs to be held, in ticks, to increase the strength of the Growing Bloodlust effect by one level. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:GrowingBloodlustTicksPerLevel=300 + + # Damage boost granted by the Growing Hunger, per level of effect. [range: 0.0 ~ 100.0, default: 0.1, synchronized: yes] + D:GrowingHungerDamageBoost=0.1 + + # Exhaustion applied by Growing Hunger every 4 ticks, per level of effect. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:GrowingHungerExhaustionGain=0.5 + + # How lock the The Voracious Pan needs to be held, in ticks, to increase the strength of the Growing Hunger effect by one level. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:GrowingHungerTicksPerLevel=300 + + # Range of active/passive abilities of Heart of the Guardian. [range: 0 ~ 32768, default: 24, synchronized: yes] + I:GuardianHeartAbilityRange=24 + + # Cooldown of enraging ability of Heart of the Guardian. Measured in ticks. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:GuardianHeartActiveAbilityCooldown=200 + + # Range in which monster enraged by active ability of Heart of the Guardian will seek new target. Monsters within this range will target enraged monster back. [range: 0 ~ 32768, default: 12, synchronized: yes] + I:GuardianHeartEnrageRange=12 + + # Multiplier for experience consumption by Gift of the Heaven. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:HeavenScrollXPCostModifier=1.0 + + # The range in which Guide to Feral Hunt will redirect damage from pet to it's owner. [range: 0 ~ 32768, default: 24, synchronized: yes] + I:HunterGuideEffectiveDistance=24 + + # The percantage subtracted from damage redirected by Guide to Feral Hunt, if Guide to Animal Companionship is also possessed. [range: 0 ~ 100, default: 50, synchronized: yes] + I:HunterGuideSynergyDamageReduction=50 + + # Inverts the Shift behaviour of Magnetic Ring and Dislocation Ring. [default: false, synchronized: yes] + B:MagnetRingInvertShift=false + + # The radius in which Magnetic Ring will attract items. [range: 1 ~ 256, default: 8, synchronized: yes] + I:MagnetRingRange=8 + + # Radius in which Exptrapolated Megaspong absorbs water. Default 4 equals to vanilla sponge [range: 0 ~ 128, default: 4, synchronized: yes] + I:MegaspongeRadius=4 + + # Mining speed boost granted by Charm of Treasure Hunter. Defined as percentage. [range: 0 ~ 1000, default: 30, synchronized: yes] + I:MiningCharmBreakSpeed=30 + + # Whether Night Vision ability of Charm of Treasure Hunter should be enabled. [default: true, synchronized: yes] + B:MiningCharmEnableNightVision=true + + # Additional block reach granted by Charm of Treasure Hunter. [range: 0.0 ~ 16.0, default: 2.15, synchronized: yes] + D:MiningCharmReachDistance=2.15 + + # Whether or not Emblem of Monster Slayer should provide +1 Looting Level. [default: true, synchronized: yes] + B:MonsterCharmBonusLooting=true + + # Whether or not Emblem of Monster Slayer should provide double experience drop from monsters. [default: true, synchronized: yes] + B:MonsterCharmDoubleXP=true + + # Damage bonus against agressive creatures for Emblem of Monster Slayer. Defined as percentage. [range: 0 ~ 1000, default: 10, synchronized: yes] + I:MonsterCharmHostileDamage=10 + + # Damage bonus against undead enemies for Emblem of Monster Slayer. Defined as percentage. [range: 0 ~ 1000, default: 25, synchronized: yes] + I:MonsterCharmUndeadDamage=25 + + # Hard cap for Keystone of The Oblivion. When it's reached, you will no longer be able to add new items to it's list via crafting. Required to prevent potential perfomance issues with ridiculously large lists. [range: 1 ~ 32768, default: 100, synchronized: yes] + I:OblivionStoneHardcap=100 + + # Soft cap for Keystone of The Oblivion. When it's reached, the list view seen in it's Ctrl tooltip will be fixed at this amount of items, and become chaotic and unreadable. Required since monitors are not infinitely large these days. [range: 1 ~ 32768, default: 25, synchronized: yes] + I:OblivionStoneSoftcap=25 + + # Active ability cooldown for Will of the Ocean. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:OceanStoneCooldown=600 + + # Swimming speed boost provided by Will of the Ocean. Defined as percentage. [range: 0 ~ 1000, default: 200, synchronized: yes] + I:OceanStoneSwimBoost=200 + + # Damage resistance against underwater creatures provided by Will of the Ocean. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:OceanStoneUnderwaterCreaturesResistance=40 + + # Multiplier for experience consumption by active ability of Will of the Ocean. [range: 0.0 ~ 1000.0, default: 1.0, synchronized: yes] + D:OceanStoneXPCostModifier=1.0 + + # Whether or not it should be allowed to equip multiple spellstones if they are different items, granted player somehow gets more than one spellstone slot. [default: false, synchronized: yes] + B:SpellstonesMultiequip=false + + # The radius in which Dislocation Ring will collect items. [range: 1 ~ 256, default: 16, synchronized: yes] + I:SuperMagnetRingRange=16 + + # Whether or not Dislocation Ring should play sound effect when teleporting items to player. [default: false, synchronized: yes] + B:SuperMagnetRingSound=false + + # Attack damage of The Infinitum, actual damage shown in tooltip will be is 1 + this_value. [range: 0.0 ~ 32768.0, default: 15.0, synchronized: yes] + D:TheInfinitumAttackDamage=15.0 + + # Attack speed of The Infinitum. [range: -32768.0 ~ 32768.0, default: -2.0, synchronized: yes] + D:TheInfinitumAttackSpeed=-2.0 + + # Attack damage bonus of The Infinitum against players and bosses. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:TheInfinitumBossDamageBonus=200 + + # Knockback bonus of The Infinitum. For Phantoms, this value is multiplied by 1.5. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:TheInfinitumKnockbackPowerBonus=200 + + # Lifesteal bonus of The Infinitum. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:TheInfinitumLifestealBonus=10 + + # Chance of lethal damage prevention when holding The Infinitum. [range: 0 ~ 100, default: 85, synchronized: yes] + I:TheInfinitumUndeadProbability=85 + + # Attack damage of The Twist, actual damage shown in tooltip will be is 1 + this_value. [range: 0.0 ~ 32768.0, default: 8.0, synchronized: yes] + D:TheTwistAttackDamage=8.0 + + # Attack speed of The Twist. [range: -32768.0 ~ 32768.0, default: -1.8, synchronized: yes] + D:TheTwistAttackSpeed=-1.8 + + # Attack damage bonus of The Twist against players and bossess. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:TheTwistBossDamageBonus=300 + + # Knockback bonus of The Twist. For Phantoms, this value is multiplied by 1.5. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:TheTwistKnockbackPowerBonus=300 + + # Base damage dealt by Darkness every half a second, when it devours a creature in proximity of bearer of the pearl. [range: 0.0 ~ 1000.0, default: 4.0, synchronized: yes] + D:VoidPearlBaseDarknessDamage=4.0 + + # Active ability cooldown for Pearl of the Void. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:VoidPearlCooldown=0 + + # Modifier for slowing down player's regeneration when bearing the pearl. This includes natural regeneration, as well as artificial healing effects that work over time. The greater it is, the slower player will regenerate. [range: 0.0 ~ 1000.0, default: 1.0, synchronized: yes] + D:VoidPearlRegenerationModifier=1.0 + + # Range in which Pearl of the Void will force darkness to devour living creatures. [range: 0.0 ~ 128.0, default: 16.0, synchronized: yes] + D:VoidPearlShadowRange=16.0 + + # Chance for Pearl of the Void to prevent it's bearer death from receiving lethal amout of damage. Defined as percentage. [range: 0 ~ 100, default: 35, synchronized: yes] + I:VoidPearlUndeadChance=35 + + # Level of Withering that bearer of the pearl will apply to entitities they attack. [range: 0 ~ 3, default: 2, synchronized: yes] + I:VoidPearlWitheringLevel=2 + + # Amout of ticks for which bearer of the pearl will apply Withering effect to entities they attack. 20 ticks equals to 1 second. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:VoidPearlWitheringTime=100 + + # Range in which Scroll of Ageless Wisdom collects experience orbs when active. [range: 1.0 ~ 128.0, default: 16.0, synchronized: yes] + D:XPScrollCollectionRange=16.0 +} + + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some different stuff +########################################################################################################## + +"Generic Config" { + # List of entities that should be accounted for as bosses by The Twist and The Infinitum. Changing this option requires game restart to take effect. [default: [minecraft:ender_dragon], [minecraft:wither], [minecraft:elder_guardian], synchronized: no] + S:CompleteBossList < + minecraft:ender_dragon + minecraft:wither + minecraft:elder_guardian + > + + # Maximum amount of Soul Crystals a player can lose before they won't drop anymore. If set to 10 - player can loose all of them, and doing so will result in permadeath. Each crystal lost subtracts 10% of from their maximum possible health value. [range: 1 ~ 10, default: 9, synchronized: no] + I:MaxSoulCrystalLoss=9 + + # Soul Crystals mechanic mode. 0 - disabled unless enforced by specific in-game items; 1 - also enabled when keepInventory is true; 2 - always enabled. [range: 0 ~ 2, default: 0, synchronized: no] + I:SoulCrystalsMode=0 +} + + +########################################################################################################## +# Save the Bees +#--------------------------------------------------------------------------------------------------------# +# This category exists solely because of Jusey1z who really wanted to protect his bees. +# Btw Jusey, when I said 'very cute though', I meant you. Bees are cute either of course. +########################################################################################################## + +"Save the Bees" { + # If true, bees will never affected by the Second Curse of Ring of the Seven Curses. [default: false, synchronized: yes] + B:CursedRingDontTouchMyBees=true +} + + +########################################################################################################## +# The Seven Curses +#--------------------------------------------------------------------------------------------------------# +# Config options directly affecting Ring of the Seven Curses +########################################################################################################## + +"The Seven Curses" { + # How much less effective armor will be for those who bear the ring. Measured as percetage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:CursedRingArmorDebuff=50 + + # If true, Ring of the Seven Curses will be equipped into player's ring slot right away when it enters their inventory. This is different from ultra hardcore option as the way through which ring ends up in player's inventory does not matter. [default: false, synchronized: yes] + B:CursedRingAutoEquip=false + + # Set to false to disable ALL special drops that can be obtained from vanilla mobs when bearing Ring of the Seven Curses. [default: true, synchronized: yes] + B:CursedRingEnableSpecialDrops=true + + # How much additional Enchanting Power ring provides in Enchanting Table. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CursedRingEnchantingBonus=10 + + # Allows to adjust how frequently Endermen will try to randomly teleport to player bearing the ring, even if they can't see the player and are not angered yet. Lower value = less probability of this happening. [range: 0.01 ~ 32768.0, default: 1.0, synchronized: yes] + D:CursedRingEndermenRandomportFrequency=1.0 + + # Range in which Endermen can try to randomly teleport to bearers of the ring. [range: 8.0 ~ 32768.0, default: 32.0, synchronized: yes] + D:CursedRingEndermenRandomportRange=32.0 + + # How much experience will drop from mobs to bearers of the ring, measured in percents. [range: 0 ~ 32768, default: 400, synchronized: yes] + I:CursedRingExperienceBonus=400 + + # How many bonus Fortune levels ring provides [range: 0 ~ 32768, default: 1, synchronized: yes] + I:CursedRingFortuneBonus=1 + + # How much knockback bearers of the ring take, measured in percents. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:CursedRingKnockbackDebuff=200 + + # How many bonus Looting levels ring provides [range: 0 ~ 32768, default: 1, synchronized: yes] + I:CursedRingLootingBonus=1 + + # How much damage monsters receive from bearers of the ring will be decreased, in percents. [range: 0 ~ 32768, default: 50, synchronized: yes] + I:CursedRingMonsterDamageDebuff=50 + + # List of entities that should never be affected by the Second Curse of Ring of the Seven Curses. Examples: minecraft:iron_golem, minecraft:zombified_piglin. Changing this option required game restart to take effect. [default: , synchronized: no] + S:CursedRingNeutralAngerBlacklist < + > + + # Range in which neutral creatures are angered against bearers of the ring. [range: 4.0 ~ 32768.0, default: 24.0, synchronized: yes] + D:CursedRingNeutralAngerRange=24.0 + + # Range in which neutral creatures can see and target bearers of the ring even if they can't directly see them. [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:CursedRingNeutralXRayRange=4.0 + + # Defines how much damage bearers of the ring receive from any source. Measured as percentage. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:CursedRingPainModifier=200 + + # A fraction of time the player should bear the Seven Curses to use Abyssal Artifacts. [range: 0.0 ~ 32768.0, default: 0.995, synchronized: yes] + D:CursedRingSuperCursedTime=0.995 + + # If true, Ring of the Seven Curses will be equipped into player's ring slot right away when entering a new world, instead of just being added to their inventory. [default: false, synchronized: yes] + B:CursedRingUltraHardcore=false + + # Set to true to prevent curse of insomnia from actually doing anything. [default: false, synchronized: yes] + B:CursedRingdisableInsomnia=false +} + + diff --git a/config/entangled-common.toml b/config/entangled-common.toml new file mode 100644 index 0000000..c148b32 --- /dev/null +++ b/config/entangled-common.toml @@ -0,0 +1,22 @@ +[Client] + # When looking at an Entangled Block, should its bound block be highlighted? + # Allowed values: true, false - Default: true + renderBlockHighlight = true + + # Should the block rendered inside entangled blocks rotate? + # Allowed values: true, false - Default: true + rotateRenderedBlock = true + +[General] + # Can entangled blocks be bound between different dimensions? Previously bound entangled blocks won't be affected. + # Allowed values: true, false - Default: true + allowDimensional = true + + # What is the max range in which entangled blocks can be bound? Only affects blocks in the same dimension. -1 for infinite range. Previously bound entangled blocks won't be affected. + # Allowed range: -1 ~ 2147483647 - Default: -1 + maxDistance = -1 + + # Should the `entangled:invalid_targets` tag be treated as a whitelist rather than a blacklist? If true, entangled blocks can only be bound to blocks in the tag. + # Allowed values: true, false - Default: false + useWhitelist = false + diff --git a/config/entity_model_features.json b/config/entity_model_features.json new file mode 100644 index 0000000..fa6ebc5 --- /dev/null +++ b/config/entity_model_features.json @@ -0,0 +1,36 @@ +{ + "allowedCEM": "ALL", + "logModelCreationData": false, + "debugOnRightClick": false, + "renderModeChoice": "NORMAL", + "vanillaModelHologramRenderMode_2": "OFF", + "modelExportMode": "NONE", + "automaticModelExporting": false, + "attemptPhysicsModPatch_2": "CUSTOM", + "modelUpdateFrequency": "Average", + "entityRenderModeOverrides": {}, + "entityPhysicsModPatchOverrides": {}, + "entityVanillaHologramOverrides": {}, + "modelsNamesDisabled": [], + "allowEBEModConfigModify": true, + "animationLODDistance": 20, + "retainDetailOnLowFps": true, + "retainDetailOnLargerMobs": true, + "animationFrameSkipDuringIrisShadowPass": true, + "preventFirstPersonHandAnimating": false, + "onlyClientPlayerModel": false, + "doubleChestAnimFix": true, + "enforceOptifineVariationRequiresDefaultModel": false, + "enforceOptifineVariationRequiresDefaultModel_v2": false, + "resetPlayerModelEachRender": true, + "resetPlayerModelEachRender_v2": true, + "onlyDebugRenderOnHover": false, + "enforceOptifineSubFoldersVariantOnly": false, + "enforceOptiFineAnimSyntaxLimits": true, + "allowOptifineFallbackProperties": true, + "enforceOptiFineFloorUVs": true, + "showReloadErrorToast": true, + "exportRotations": false, + "asmMaths": true, + "logASM": false +} \ No newline at end of file diff --git a/config/entity_texture_features.json b/config/entity_texture_features.json new file mode 100644 index 0000000..3cf3a94 --- /dev/null +++ b/config/entity_texture_features.json @@ -0,0 +1,40 @@ +{ + "optifine_limitRandomVariantGapsBy10": false, + "optifine_allowWeirdSkipsInTrueRandom": true, + "optifine_preventBaseTextureInOptifineDirectory": true, + "illegalPathSupportMode": "None", + "enableCustomTextures": true, + "enableCustomBlockEntities": true, + "textureUpdateFrequency_V2": "Fast", + "enableEmissiveTextures": true, + "enableEnchantedTextures": true, + "enableEmissiveBlockEntities": true, + "emissiveRenderMode": "DULL", + "alwaysCheckVanillaEmissiveSuffix": true, + "enableArmorAndTrims": true, + "skinFeaturesEnabled": true, + "skinTransparencyMode": "ETF_SKINS_ONLY", + "skinTransparencyInExtraPixels": true, + "skinFeaturesEnableTransparency": true, + "skinFeaturesEnableFullTransparency": false, + "tryETFTransparencyForAllSkins": false, + "enableEnemyTeamPlayersSkinFeatures": true, + "enableBlinking": true, + "blinkFrequency": 150, + "blinkLength": 1, + "advanced_IncreaseCacheSizeModifier": 1.0, + "debugLoggingMode": "None", + "logTextureDataInitialization": false, + "hideConfigButton": false, + "configButtonLoc": "BOTTOM_RIGHT", + "disableVanillaDirectoryVariantTextures": false, + "use3DSkinLayerPatch": true, + "enableFullBodyWardenTextures": true, + "entityEmissiveOverrides": {}, + "propertiesDisabled": [], + "propertyInvertUpdatingOverrides": [], + "entityRandomOverrides": {}, + "entityEmissiveBrightOverrides": {}, + "entityRenderLayerOverrides": {}, + "entityLightOverrides": {} +} \ No newline at end of file diff --git a/config/entityculling.json b/config/entityculling.json new file mode 100644 index 0000000..d58ea01 --- /dev/null +++ b/config/entityculling.json @@ -0,0 +1,77 @@ +{ + "configVersion": 8, + "renderNametagsThroughWalls": true, + "blockEntityWhitelist": [ + "botania:flame_ring", + "create:rope_pulley", + "minecraft:beacon", + "create:hose_pulley", + "betterend:eternal_pedestal", + "botania:magic_missile", + "botania:falling_star" + ], + "entityWhitelist": [ + "botania:mana_burst", + "drg_flares:drg_flares", + "quark:soul_bead" + ], + "tracingDistance": 128, + "debugMode": false, + "sleepDelay": 10, + "hitboxLimit": 50, + "captureRate": 5, + "tickCulling": true, + "tickCullingWhitelist": [ + "cinematiccataclysm:scylla_cutscene", + "minecraft:block_display", + "alexscaves:gum_worm", + "cinematiccataclysm:maledictus_cutscene", + "minecraft:jungle_boat", + "minecraft:spruce_boat", + "mts:builder_rendering", + "drg_flares:drg_flares", + "minecraft:mangrove_boat", + "mts:builder_existing", + "minecraft:acacia_boat", + "minecraft:birch_chest_boat", + "create:contraption", + "drg_flares:drg_flare", + "cinematiccataclysm:leviathan_cutscene", + "minecraft:birch_boat", + "minecraft:boat", + "mts:builder_seat", + "minecraft:cherry_boat", + "alexscaves:gum_worm_segment", + "cinematiccataclysm:ancient_remnant_cutscene", + "minecraft:spruce_chest_boat", + "minecraft:dark_oak_boat", + "minecraft:oak_chest_boat", + "avm_staff:campfire_flame", + "minecraft:dark_oak_chest_boat", + "minecraft:text_display", + "create:gantry_contraption", + "minecraft:oak_boat", + "createbigcannons:cannon_carriage", + "minecraft:pale_oak_boat", + "minecraft:acacia_chest_boat", + "minecraft:cherry_chest_boat", + "createbigcannons:pitch_contraption", + "minecraft:item_display", + "cinematiccataclysm:ignis_cutscene", + "create:stationary_contraption", + "minecraft:bamboo_raft", + "create:carriage_contraption", + "minecraft:firework_rocket", + "minecraft:jungle_chest_boat", + "minecraft:pale_oak_chest_boat", + "minecraft:bamboo_chest_raft", + "minecraft:mangrove_chest_boat", + "voidscape:corrupted_pawn" + ], + "disableF3": false, + "skipEntityCulling": false, + "skipBlockEntityCulling": false, + "blockEntityFrustumCulling": true, + "forceDisplayCulling": false, + "solidLeaves": false +} \ No newline at end of file diff --git a/config/environmental-client.toml b/config/environmental-client.toml new file mode 100644 index 0000000..a26d24d --- /dev/null +++ b/config/environmental-client.toml @@ -0,0 +1,7 @@ + +[mobs] + + [mobs.chicken] + #If Chickens have a different texture when they are babies + "Baby chicken texture" = true + diff --git a/config/environmental-common.toml b/config/environmental-common.toml new file mode 100644 index 0000000..542b575 --- /dev/null +++ b/config/environmental-common.toml @@ -0,0 +1,71 @@ + +[mobs] + + [mobs.deer] + #If Deer can reproduce and spread flowers by feeding them an Apple followed by a flower + "Deer flower reproducing" = true + #The chance Deer have to spawn with Antlers; 0.0 for never, 1.0 for always + #Range: 0.0 ~ 1.0 + "Deer Antler chance" = 0.5 + + [mobs.koi] + #Make Koi only block natural spawns + "Block only natural spawns" = true + #Horizontal radius of Serenity effect in blocks + #Range: > 0 + "Horizontal serenity range (radius)" = 32 + #Vertical radius of Serenity effect in blocks + #Range: > 0 + "Vertical serenity range (radius)" = 8 + #If Koi exude Serenity as a potion effect + "Serenity potion effect" = true + + [mobs.pig] + #If Pigs hunt for Truffles when given a Golden Carrot + "Pigs hunt Truffles" = true + #If Pigs should spawn more Piglets upon breeding + "Larger Pig litters" = true + #If Pigs can be made muddy by walking in Mud or being hit with Mud Balls + "Muddy Pigs" = true + + [mobs.pig.larger_litters] + #The minimum amount of piglets that can spawn in addition to the original child + #Range: > 0 + "Minimum additional piglets" = 1 + #The maximum amount of piglets that can spawn in addition to the original child + #Range: > 0 + "Maximum additional piglets" = 3 + + [mobs.pig.muddy_pigs] + #If Pigs naturally spawn muddy in swampy biomes + "Natural Muddy Pigs" = true + #The chance that a Muddy Pig has to spawn with a decoration, such as a flower + #Range: 0.0 ~ 1.0 + "Muddy Pig decoration chance" = 0.2 + #If Muddy Pigs can be decorated with various flowers, saplings, and plants + "Decoratable Muddy Pigs" = true + #If Muddy Pigs become dry naturally over time + "Muddy Pigs dry over time" = true + #If Muddy Pigs only naturally dry when in the Nether + "Muddy Pigs only dry in the Nether" = false + #If dry Muddy Pigs should become wet again when in water + "Muddy Pigs get wet in water" = true + #If dry Muddy Pigs should become wet again when in rain + "Muddy Pigs get wet in rain" = true + + [mobs.hoglin] + #If Hoglins should spawn more babies upon breeding + "Larger Hoglin litters" = true + + [mobs.hoglin.larger_litters] + #The minimum amount of baby hoglins that can spawn in addition to the original child + #Range: > 0 + "Minimum additional babies" = 1 + #The maximum amount of baby hoglins that can spawn in addition to the original child + #Range: > 0 + "Maximum additional babies" = 2 + +[blocks] + #Cacti generate with a Cactus Bobble on top to prevent natural growth + "Cactus bobble" = true + diff --git a/config/equipmentcompare-common.toml b/config/equipmentcompare-common.toml new file mode 100644 index 0000000..7d16fdd --- /dev/null +++ b/config/equipmentcompare-common.toml @@ -0,0 +1,33 @@ + +#Client Configuration +[client] + + [client.visual_options] + # The maximum number of comparison tooltips to show onscreen at once. + #Range: 1 ~ 10 + max_comparisons = 3 + # If badge_text should override the built-in translatable text. + override_badge_text = false + # The text shown on the badge above equipped tooltips. + badge_text = "Equipped" + # The color of the text shown on the badge above equipped tooltips. + #Range: 0 ~ 4294967295 + badge_text_color = 4294967295 + # The background color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_bg = 4027584512 + # The start border color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_border_start = 3500839187 + # The end border color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_border_end = 1623360778 + + [client.control_options] + # If the comparison tooltip should show by default (pressing bound key hides). + default_on = false + # If tool comparisons should compare only the same types of tools (can't compare a sword to an axe, for example). + strict = false + # Blacklist of items to show comparisons for. Add item IDs to prevent them from being compared when hovered over or equipped. + blacklist = [] + diff --git a/config/essentials-client.toml b/config/essentials-client.toml new file mode 100644 index 0000000..0d8cb37 --- /dev/null +++ b/config/essentials-client.toml @@ -0,0 +1,7 @@ +#Should the Wrench show up in the creative menu? +creative_wrench = true +#How should very large and small numbers be displayed? +#Options are: NORMAL, SCIENTIFIC, ENGINEERING, and HEX +#Allowed Values: NORMAL, SCIENTIFIC, ENGINEERING, HEX +num_display = "SCIENTIFIC" + diff --git a/config/essentials-server.toml b/config/essentials-server.toml new file mode 100644 index 0000000..52f9cea --- /dev/null +++ b/config/essentials-server.toml @@ -0,0 +1,18 @@ +#Range of the Brazier anti-witch effect +#Set to 0 to disable +#Range: 0 ~ 512 +brazier_range = 64 +#Maximum Transport Chutes in a line +#Range: 0 ~ 128 +chute_limit = 16 +#Percent of normal speed Fertile Soil should work at +#Set to 0 to disable +#Range: 0.0 ~ 100.0 +fertile_rate = 100.0 +#Range of signals through Circuit Wire +#Range: 1 ~ 128 +redstone_range = 16 +#Range of signals through Redstone Receivers/Transmitters +#Range: 0 ~ 128 +wireless_range = 32 + diff --git a/config/etf_warnings.json b/config/etf_warnings.json new file mode 100644 index 0000000..972c737 --- /dev/null +++ b/config/etf_warnings.json @@ -0,0 +1,3 @@ +{ + "ignoredConfigIds": [] +} \ No newline at end of file diff --git a/config/everycomp-client.toml b/config/everycomp-client.toml new file mode 100644 index 0000000..e6ac40a --- /dev/null +++ b/config/everycomp-client.toml @@ -0,0 +1,5 @@ + +[general] + #Enables the generation of dynamic assets. This is required for the mod to work properly. Turn off if you chose to add all the generated assets via datapack manually. This can speedup boot times for modpacks. Note that the generated assets will depend on loaded datapacks + generate_dynamic_assets = true + diff --git a/config/everycomp-common.toml b/config/everycomp-common.toml new file mode 100644 index 0000000..a39c5dc --- /dev/null +++ b/config/everycomp-common.toml @@ -0,0 +1,27 @@ + +[general] + #Enables the generation of dynamic assets. This is required for the mod to work properly. Turn off if you chose to add all the generated assets via datapack manually. This can speedup boot times for modpacks. Note that the generated assets will depend on loaded datapacks + generate_dynamic_assets = true + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs + creative_tab = true + #Allow the item_search or searchBar to be visible. + tab_item_search = true + #If set to true, then all of the generated items will not be put into the mod's tab. + no_mod_creative_tab = false + #Generate blocktype tags for every block type. This will be applied to all the mods that use the system, not just Every Compat. It's currently off and Can make pack a bit faster. Turn on if you need it. + generate_blocktype_tags = false + #Creates a debug folder inside your instance directory where all the dynamically generated resources will be saved + save_debug_resources = false + #Sends a packet to verify all dependencies mod versions are the same on connect. DIsable if it causes issues + mod_version_check_packet = true + #Don't touch unless you are told to + debug_packet = false + + [general.tooltips] + #Enabled tooltips showing which mod an EC item is from + mod_origin_enabled = true + #Enabled tooltips showing which block type an EC item is made from + block_type_enabled = true + #Only show on advanced settings + show_on_advanced_tooltips = false + diff --git a/config/everycomp-entries.toml b/config/everycomp-entries.toml new file mode 100644 index 0000000..113d334 --- /dev/null +++ b/config/everycomp-entries.toml @@ -0,0 +1,298 @@ + +#Disables certain types. Note that all these configs, like in any other mod, only hide stuff from tabs and disable their recipes +[types] + + [types.cake] + + [types.cake.mynethersdelight] + magma_cake = true + + [types.wood_type] + + [types.wood_type.mynethersdelight] + powdery = true + + [types.wood_type.tconstruct] + greenheart = true + skyroot = true + bloodshroom = true + enderbark = true + + [types.wood_type.regions_unexplored] + alpha = true + baobab = true + blackwood = true + blue_bioshroom = true + brimwood = true + cobalt = true + cypress = true + dead = true + eucalyptus = true + green_bioshroom = true + joshua = true + kapok = true + larch = true + magnolia = true + maple = true + mauve = true + palm = true + pine = true + pink_bioshroom = true + redwood = true + socotra = true + willow = true + yellow_bioshroom = true + + [types.wood_type.deeperdarker] + bloom = true + echo = true + + [types.wood_type.cataclysm] + chorus = true + + [types.wood_type.vinery] + dark_cherry = true + + [types.wood_type.beachparty] + palm = true + + [types.wood_type.bloomingnature] + larch = true + baobab = true + swamp_oak = true + aspen = true + fan_palm = true + fir = true + swamp_cypress = true + ebony = true + chestnut = true + + [types.wood_type.meadow] + pine = true + + [types.wood_type.ars_nouveau] + archwood = true + + [types.wood_type.thermal] + rubberwood = true + + [types.wood_type.undergarden] + smogstem = true + wigglewood = true + grongle = true + + [types.wood_type.midnight] + shadowroot = true + dark_willow = true + decayed = true + manglewood = true + nightshroom = true + dewshroom = true + viridshroom = true + moonshroom = true + bogshroom = true + + [types.wood_type.biomesoplenty] + fir = true + pine = true + maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.wood_type.ad_astra] + aeronos = true + strophar = true + glacian = true + + [types.wood_type.aoa3] + achony = true + baobab = true + churry = true + creep = true + lucalus = true + lunide = true + runic = true + shadow = true + shyre = true + stranglewood = true + + [types.leaves_type] + + [types.leaves_type.tconstruct] + earth_slime = true + sky_slime = true + ender_slime = true + + [types.leaves_type.regions_unexplored] + alpha = true + apple_oak = true + bamboo = true + baobab = true + blackwood = true + magnolia = true + cypress = true + dead = true + dead_pine = true + eucalyptus = true + flowering = true + golden_larch = true + kapok = true + larch = true + maple = true + mauve = true + orange_maple = true + palm = true + pine = true + blue_magnolia = true + pink_magnolia = true + redwood = true + red_maple = true + brimwood = true + enchanted_birch = true + small_oak = true + silver_birch = true + socotra = true + white_magnolia = true + willow = true + ashen = true + + [types.leaves_type.deeperdarker] + echo = true + + [types.leaves_type.vinery] + grapevine = true + dark_cherry = true + apple = true + + [types.leaves_type.beachparty] + palm = true + + [types.leaves_type.bloomingnature] + larch = true + baobab = true + orange = true + swamp_oak = true + aspen = true + fan_palm = true + fir = true + swamp_cypress = true + ebony = true + chestnut = true + + [types.leaves_type.meadow] + pine = true + + [types.leaves_type.thermal] + rubberwood = true + + [types.leaves_type.ars_nouveau] + blue_archwood = true + red_archwood = true + purple_archwood = true + green_archwood = true + + [types.leaves_type.undergarden] + smogstem = true + wigglewood = true + grongle = true + + [types.leaves_type.midnight] + shadowroot = true + dark_willow = true + manglewood = true + + [types.leaves_type.biomesoplenty] + null = true + origin = true + flowering_oak = true + cypress = true + snowblossom = true + rainbow_birch = true + fir = true + pine = true + red_maple = true + orange_maple = true + yellow_maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.leaves_type.ars_elemental] + yellow_archwood = true + + [types.leaves_type.ad_astra] + glacian = true + + [types.leaves_type.aoa3] + achony = true + blood = true + blue_celevus = true + green_celevus = true + purple_celevus = true + red_celevus = true + white_celevus = true + yellow_celevus = true + churry = true + creep = true + dawn = true + haunted = true + haunted_eyes = true + blue_haven = true + pink_haven = true + purple_haven = true + red_haven = true + turquoise_haven = true + yellow_haven = true + irodust = true + irogold = true + lelyetian = true + lunicia = true + lunosso = true + runic = true + shadowblood = true + shadow = true + bright_shyre = true + shyre = true + vein = true + +#Disables specific entries +[entries] + + [entries.wood_type] + + [entries.wood_type.farmersdelight] + cabinet = true + + [entries.wood_type.regions_unexplored] + branch = true + + [entries.wood_type.backpacked] + backpack_shelf = true + + [entries.wood_type.infinitybuttons] + plank_secret_button = true + large_button = true + + [entries.wood_type.mighty_mail] + mail_box = true + + [entries.leaves_type] + + [entries.leaves_type.regions_unexplored] + shrub = true + diff --git a/config/everycomp-hazardous.toml b/config/everycomp-hazardous.toml new file mode 100644 index 0000000..d5771f3 --- /dev/null +++ b/config/everycomp-hazardous.toml @@ -0,0 +1,77 @@ + +# ═════════════════════════ Attention ═════════════════════════ +# Don't use this if you don't know what you are doing +# REASON: +# This file is a conditional registration. This is harmless in Singleplayer World, +# but harmful in SERVER because you won't able to join. +# +# ══════════════════════════ Detail ═══════════════════════════ +# This file allow you to exclude WoodTypes, LeavesType, EntrySet, or a Module +# 1) You can find their names for WoodTypes, LeavesType, or EntrySet in `everycomp-entries.toml` +# 2) Leave a value empty to disable that rule. +# +# Module - is a Supported Mod, just a modId is sufficient. +# EntrySet - is a FurnitureType or DecorativeType that Wood-Good is supporting via the mod. it is either block or item. +# Wood-Mods - Biomes O' Plenty, The Twilight Forest, so on... +# Supported-Mods - The mods that EveryCompat is currently supporting +# +# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm +# +[woodtype] + #Exclude WoodType from all of Modules + # EXAMPLE: blacklist = [ + # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of WoodType containing "fireproof" from Forestry + # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of WoodType from Wood Mod for any Module + # "biomesoplenty:redwood" COMMENT: exclude redwood from Wood Mod for any module + # ] + # + blacklist = [] + +[leavestype] + #Exclude LeavesType from all of Modules + # The example is same as WoodType's + blacklist = [] + +[block] + #Exclude a specific WoodType/LeavesType block + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped/biomesoplenty/checkered_redwood_trapdoor", COMMENT: excluded a checkered_trapdoor from Chipped with Biomes-O'-Plenty's redwood + # "variantvanillablocks/biomesoplenty/fir_chest", COMMENT: excluded a chest from Variant-Vanilla-Blocks with Biomes-O'-Plenty's fir + # ".*/biomesoplenty/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods with just Biomes-O'-Plenty (Wood-Mods) + # "chipped/.*/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Wood-Mods with just chipped (Supported-Mod) + # ".*fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods & Wood-Mods + # ] + # + blacklist = [] + +[entryset] + #Exclude EntrySet from the module for All of WoodType or LeavesType + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module - Wood-Good ONLY + # ] + # NOTE: This excluded one entryset from all WoodTypes/LeavesTypes + # + blacklist = [] + +[module] + #Exclude Module From Wood-Good, Stone-Zone & Gems-Realm + # EXAMPLE: blacklist = [ + # "chipped", + # "variantvanillablocks" + # ] + # + blacklist = [] + +[other] + #Disable all of Supported Mods on EveryCompat's side. This feature is same as Library-Section which do not have any Wood Modules. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + include_all_wood_modules = true + #Blacklist all of EveryCompat's supported blocks that may have similar block to Framed Blocks. + #This will be applied to all mods, EveryCompat, StoneZone, & GemsRealm. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + enable_framed_blocks_blacklist = false + diff --git a/config/expanded_combat.toml b/config/expanded_combat.toml new file mode 100644 index 0000000..322bb7c --- /dev/null +++ b/config/expanded_combat.toml @@ -0,0 +1,1179 @@ +quiverHudAnchor = "LEFT_OF_HOTBAR" +quiverHudXAdjustment = -40 +quiverHudYAdjustment = -20 +enableArrows = true +enableBows = true +enableHalfBows = true +enableCrossbows = true +enableGauntlets = true +enableQuivers = true +enableShields = true +enableWeapons = true +crossbowVelocityBonus = 0.5 +enableFletchingTable = true + +[shieldProtectionConfig] +EnableVanillaStyleShieldProtection = false +EnableShieldBaseProtection = true +shieldBaseProtectionType = "DURABILITY_PERCENTAGE" +EnableShieldProtectionPercentage = true + +[enchantmentLevels] +maxKnockbackResistanceLevel = 4 +maxGroundSlamLevel = 6 +baseHammerSlamLevel = 2 +maxBlockingLevel = 5 +baseKatanaArrowBlocks = 2 +maxAgilityLevel = 2 + +[battlestaff] +durabilityMultiplier = 0.9 +baseAttackDamage = -2 +attackSpeed = -1.4 +mendingBonus = 0.1 +knockback = 1.0 +attackRange = 1.5 +wieldType = "TWOHANDED" + +[broadsword] +durabilityMultiplier = 1.1 +baseAttackDamage = 3 +attackSpeed = -3.0 +mendingBonus = 0.0 +knockback = 0.0 +attackRange = 0.5 +wieldType = "ONEHANDED" + +[claymore] +durabilityMultiplier = 1.1 +baseAttackDamage = 2 +attackSpeed = -3.0 +mendingBonus = 0.0 +knockback = 0.0 +attackRange = 1.0 +wieldType = "TWOHANDED" + +[cutlass] +durabilityMultiplier = 1.0 +baseAttackDamage = 0 +attackSpeed = -2.2 +mendingBonus = 0.2 +knockback = 0.0 +attackRange = 0.0 +wieldType = "ONEHANDED" + +[dagger] +durabilityMultiplier = 0.75 +baseAttackDamage = -1 +attackSpeed = -1.2 +mendingBonus = 0.1 +knockback = 0.0 +attackRange = 0.0 +wieldType = "DUALWIELD" + +[dancers_sword] +durabilityMultiplier = 1.3 +baseAttackDamage = 2 +attackSpeed = -1.8 +mendingBonus = 0.2 +knockback = 0.0 +attackRange = 0.0 +wieldType = "ONEHANDED" + +[flail] +durabilityMultiplier = 1.1 +baseAttackDamage = 4 +attackSpeed = -3.4 +mendingBonus = 0.0 +knockback = 0.5 +attackRange = 1.0 +wieldType = "ONEHANDED" + +[glaive] +durabilityMultiplier = 1.0 +baseAttackDamage = 3 +attackSpeed = -3.2 +mendingBonus = 0.1 +knockback = 0.5 +attackRange = 2.0 +wieldType = "TWOHANDED" + +[great_hammer] +durabilityMultiplier = 1.5 +baseAttackDamage = 5 +attackSpeed = -3.3 +mendingBonus = 0.0 +knockback = 1.0 +attackRange = 0.0 +wieldType = "ONEHANDED" + +[katana] +durabilityMultiplier = 1.0 +baseAttackDamage = 2 +attackSpeed = -2.4 +mendingBonus = 0.0 +knockback = 0.0 +attackRange = 0.5 +wieldType = "ONEHANDED" + +[mace] +durabilityMultiplier = 1.1 +baseAttackDamage = 4 +attackSpeed = -3.2 +mendingBonus = 0.0 +knockback = 0.5 +attackRange = 0.0 +wieldType = "ONEHANDED" + +[scythe] +durabilityMultiplier = 1.2 +baseAttackDamage = 4 +attackSpeed = -3.4 +mendingBonus = 0.1 +knockback = 1.0 +attackRange = 2.0 +wieldType = "TWOHANDED" + +[sickle] +durabilityMultiplier = 0.8 +baseAttackDamage = 0 +attackSpeed = -1.8 +mendingBonus = 0.2 +knockback = 0.0 +attackRange = 0.0 +wieldType = "DUALWIELD" + +[spear] +durabilityMultiplier = 1.0 +baseAttackDamage = 3 +attackSpeed = -3.4 +mendingBonus = 0.1 +knockback = 0.5 +attackRange = 2.0 +wieldType = "TWOHANDED" + +[vanilla] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[vanilla.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 0 + +[vanilla.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[vanilla.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[vanilla.defense] +gauntletArmorAmount = 1 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[vanilla.crafting] +repairItem = ["minecraft:barrier"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[leather] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 2 + +[leather.durability] +toolDurability = 131 +bowDurability = 0 +addedShieldDurability = 80 + +[leather.enchanting] +offenseEnchantability = 5 +defenseEnchantability = 15 + +[leather.offense] +addedAttackDamage = 1.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[leather.defense] +gauntletArmorAmount = 1 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.75 +afterBasePercentReduction = 0.45 + +[leather.crafting] +repairItem = ["minecraft:leather"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[rebbitLeather] +equipSound = "minecraft:item.armor.equip_leather" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 3 + +[rebbitLeather.durability] +toolDurability = 131 +bowDurability = 0 +addedShieldDurability = 75 + +[rebbitLeather.enchanting] +offenseEnchantability = 5 +defenseEnchantability = 15 + +[rebbitLeather.offense] +addedAttackDamage = 1.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[rebbitLeather.defense] +gauntletArmorAmount = 1 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.65 +afterBasePercentReduction = 0.5 + +[rebbitLeather.crafting] +repairItem = ["minecraft:rabbit_hide"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[oakPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[oakPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[oakPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[oakPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[oakPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[oakPlank.crafting] +repairItem = ["minecraft:oak_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[acaciaPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[acaciaPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[acaciaPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[acaciaPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[acaciaPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[acaciaPlank.crafting] +repairItem = ["minecraft:acacia_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[birchPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[birchPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[birchPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[birchPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[birchPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[birchPlank.crafting] +repairItem = ["minecraft:birch_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[darkOakPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[darkOakPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[darkOakPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[darkOakPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[darkOakPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[darkOakPlank.crafting] +repairItem = ["minecraft:dark_oak_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[sprucePlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[sprucePlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[sprucePlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[sprucePlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[sprucePlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[sprucePlank.crafting] +repairItem = ["minecraft:spruce_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[junglePlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[junglePlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[junglePlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[junglePlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[junglePlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[junglePlank.crafting] +repairItem = ["minecraft:jungle_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[warpedPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[warpedPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[warpedPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[warpedPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[warpedPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[warpedPlank.crafting] +repairItem = ["minecraft:warped_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[crimsonPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[crimsonPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[crimsonPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[crimsonPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[crimsonPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[crimsonPlank.crafting] +repairItem = ["minecraft:crimson_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[mangrovePlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[mangrovePlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[mangrovePlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[mangrovePlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[mangrovePlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[mangrovePlank.crafting] +repairItem = ["minecraft:mangrove_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[bambooPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[bambooPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[bambooPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[bambooPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[bambooPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[bambooPlank.crafting] +repairItem = ["minecraft:bamboo_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[cherryPlank] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[cherryPlank.durability] +toolDurability = 59 +bowDurability = 0 +addedShieldDurability = 40 + +[cherryPlank.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[cherryPlank.offense] +addedAttackDamage = 0.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[cherryPlank.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 2.5 +afterBasePercentReduction = 0.3 + +[cherryPlank.crafting] +repairItem = ["minecraft:cherry_planks"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[stone] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[stone.durability] +toolDurability = 131 +bowDurability = 0 +addedShieldDurability = 0 + +[stone.enchanting] +offenseEnchantability = 5 +defenseEnchantability = 0 + +[stone.offense] +addedAttackDamage = 1.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[stone.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[stone.crafting] +repairItem = ["minecraft:cobblestone", "minecraft:blackstone", "minecraft:cobbled_deepslate"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[iron] +equipSound = "minecraft:item.armor.equip_iron" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 4 + +[iron.durability] +toolDurability = 250 +bowDurability = 480 +addedShieldDurability = 150 + +[iron.enchanting] +offenseEnchantability = 14 +defenseEnchantability = 9 + +[iron.offense] +addedAttackDamage = 2.0 +arrowDamage = 3.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 3.0 + +[iron.defense] +gauntletArmorAmount = 2 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.0 +afterBasePercentReduction = 0.6 + +[iron.crafting] +repairItem = ["minecraft:iron_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[gold] +equipSound = "minecraft:item.armor.equip_gold" +mendingBonus = 2.0 +fireResistant = false +quiverSlots = 6 + +[gold.durability] +toolDurability = 32 +bowDurability = 395 +addedShieldDurability = 40 + +[gold.enchanting] +offenseEnchantability = 22 +defenseEnchantability = 25 + +[gold.offense] +addedAttackDamage = 0.0 +arrowDamage = 2.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 2.5 + +[gold.defense] +gauntletArmorAmount = 1 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 3.0 +afterBasePercentReduction = 0.4 + +[gold.crafting] +repairItem = ["minecraft:gold_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[diamond] +equipSound = "minecraft:item.armor.equip_diamond" +mendingBonus = -0.1 +fireResistant = false +quiverSlots = 8 + +[diamond.durability] +toolDurability = 1561 +bowDurability = 672 +addedShieldDurability = 300 + +[diamond.enchanting] +offenseEnchantability = 10 +defenseEnchantability = 10 + +[diamond.offense] +addedAttackDamage = 3.0 +arrowDamage = 3.75 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 1 +velocityMultiplier = 3.5 + +[diamond.defense] +gauntletArmorAmount = 3 +armorToughness = 2.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 5.0 +afterBasePercentReduction = 0.75 + +[diamond.crafting] +repairItem = ["minecraft:diamond"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[netherite] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.2 +fireResistant = true +quiverSlots = 10 + +[netherite.durability] +toolDurability = 2031 +bowDurability = 768 +addedShieldDurability = 375 + +[netherite.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[netherite.offense] +addedAttackDamage = 4.0 +arrowDamage = 4.5 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 1 +velocityMultiplier = 4.0 + +[netherite.defense] +gauntletArmorAmount = 3 +armorToughness = 3.0 +knockbackResistance = 0.10000000149011612 +baseProtectionAmmount = 6.0 +afterBasePercentReduction = 0.85 + +[netherite.crafting] +repairItem = ["minecraft:netherite_ingot"] +craftingItem = "" +isSingleAddition = true +onlyReplaceResource = ["Diamond"] +smithingTemplate = "minecraft:netherite_upgrade_smithing_template" + +[heartStealer] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = true +quiverSlots = 0 + +[heartStealer.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 0 + +[heartStealer.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[heartStealer.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[heartStealer.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[heartStealer.crafting] +repairItem = [] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[heat] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = true +quiverSlots = 0 + +[heat.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 0 + +[heat.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[heat.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[heat.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[heat.crafting] +repairItem = [] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[frost] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[frost.durability] +toolDurability = 1561 +bowDurability = 0 +addedShieldDurability = 0 + +[frost.enchanting] +offenseEnchantability = 10 +defenseEnchantability = 0 + +[frost.offense] +addedAttackDamage = 3.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[frost.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[frost.crafting] +repairItem = [] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[voidTouched] +equipSound = "minecraft:item.armor.equip_generic" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[voidTouched.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 0 + +[voidTouched.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 0 + +[voidTouched.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[voidTouched.defense] +gauntletArmorAmount = 0 +armorToughness = 0.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[voidTouched.crafting] +repairItem = [] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[soul] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[soul.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 0 + +[soul.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[soul.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[soul.defense] +gauntletArmorAmount = 3 +armorToughness = 3.0 +knockbackResistance = 0.10000000149011612 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[soul.crafting] +repairItem = ["minecraft:netherite_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[fighters] +equipSound = "minecraft:item.armor.equip_diamond" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[fighters.durability] +toolDurability = 1561 +bowDurability = 0 +addedShieldDurability = 0 + +[fighters.enchanting] +offenseEnchantability = 10 +defenseEnchantability = 10 + +[fighters.offense] +addedAttackDamage = 3.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[fighters.defense] +gauntletArmorAmount = 3 +armorToughness = 2.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[fighters.crafting] +repairItem = ["minecraft:diamond"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[maulers] +equipSound = "minecraft:item.armor.equip_diamond" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[maulers.durability] +toolDurability = 1561 +bowDurability = 0 +addedShieldDurability = 0 + +[maulers.enchanting] +offenseEnchantability = 10 +defenseEnchantability = 10 + +[maulers.offense] +addedAttackDamage = 3.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[maulers.defense] +gauntletArmorAmount = 3 +armorToughness = 2.0 +knockbackResistance = 0.0 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[maulers.crafting] +repairItem = ["minecraft:diamond"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" + +[gauntlet] +equipSound = "minecraft:item.armor.equip_netherite" +mendingBonus = 0.0 +fireResistant = false +quiverSlots = 0 + +[gauntlet.durability] +toolDurability = 2031 +bowDurability = 0 +addedShieldDurability = 0 + +[gauntlet.enchanting] +offenseEnchantability = 15 +defenseEnchantability = 15 + +[gauntlet.offense] +addedAttackDamage = 4.0 +arrowDamage = 0.0 +flaming = false +canBeTipped = true +multishotLevel = 0 +bowPower = 0 +velocityMultiplier = 1.0 + +[gauntlet.defense] +gauntletArmorAmount = 3 +armorToughness = 3.0 +knockbackResistance = 0.10000000149011612 +baseProtectionAmmount = 0.0 +afterBasePercentReduction = 0.0 + +[gauntlet.crafting] +repairItem = ["minecraft:netherite_ingot"] +craftingItem = "" +isSingleAddition = false +onlyReplaceResource = [] +smithingTemplate = "minecraft:air" diff --git a/config/expatternprovider-common.toml b/config/expatternprovider-common.toml new file mode 100644 index 0000000..d2e3313 --- /dev/null +++ b/config/expatternprovider-common.toml @@ -0,0 +1,36 @@ +#ME Extend Import/Export Bus speed multiplier +#Range: 2 ~ 128 +exBusMultiplier = 8 +#ME Infinity Cell idle energy cost (unit: AE/t) +#Range: 0.1 ~ 64.0 +cost = 8.0 +#The max range between two wireless connector +#Range: 10.0 ~ 10000.0 +range = 1000.0 +#ME Infinity Cell types (item or fluid's id) +types = ["minecraft:water", "minecraft:cobblestone"] +#The AE device/part that can be packed by ME Packing Tape +whitelist = ["expatternprovider:ex_interface_part", "expatternprovider:ex_pattern_provider_part", "expatternprovider:ex_interface", "expatternprovider:ex_pattern_provider", "expatternprovider:ex_drive", "ae2:cable_interface", "ae2:cable_pattern_provider", "ae2:interface", "ae2:pattern_provider", "ae2:drive"] +#Disable Extended Inscriber's item render, it only works in client side. +disableItemRender = false + +[device] + #Power usage multiplier for wireless connectors + #Range: 0.0 ~ 100.0 + wireless_connector_power_multiplier = 1.0 + #Size multiplier of oversize interface + #Range: 2 ~ 4096 + oversize_interface_multiplier = 16 + #Set multiplier for specific AEKeyType in oversize interface + custom_oversize_interface_multiplier = ["appbot:mana 2", "appflux:flux 4"] + #The max size of Assembler Matrix + #Range: 3 ~ 16 + assembler_matrix_max_size = 6 + #The max queue size for the ME Wireless Advanced Setup Kit + #Range: 10 ~ 100 + max_queue_size = 10 + +[misc] + #Enable debug logging. + debug_mode = false + diff --git a/config/experienceobelisk-common.toml b/config/experienceobelisk-common.toml new file mode 100644 index 0000000..94e4b13 --- /dev/null +++ b/config/experienceobelisk-common.toml @@ -0,0 +1,131 @@ + +["Allowed Experience Fluids"] + #Add IDs of fluids you want the obelisk to support here in the form mod_id:fluid_name. Fluids have to be tagged forge:experience. + AllowedFluids = ["mob_grinding_utils:fluid_xp", "cofh_core:experience", "industrialforegoing:essence", "sophisticatedcore:xp_still", "enderio:xp_juice"] + +["Experience Obelisk Capacity"] + #The fluid capacity of the obelisk in mB. Default = 100000000, which is ~1072 levels' worth. Ensure that the new value is divisible by 20. + #Warning: setting this value above the default may lead to unintended loss or gain of XP. This is due to a rounding error in Minecraft's XP handling + #Range: 1000 ~ 2147483640 + Capacity = 100000000 + +["Allowed Experience Items"] + #Add IDs of items you want the fountain to support here in the form mod_id:item_name = value in experience points. + #Whitelisted items will be able to be converted to Cognitium by right-clicking / shift-right-clicking a bound fountain. + #This list has to be identical on both client and server for valid items to be viewed in JEI + AllowedItems = ["forbidden_arcanus:xpetrified_orb = 91.0f", "mysticalagriculture:experience_droplet = 12.5f", "actuallyadditions:solidified_experience = 8.0f"] + +["Enlightened Amulet"] + #The range of the enlightened amulet in blocks. Accepts decimals. Default = 8.0. + #Range: 1.0 ~ 16.0 + Range = 8.0 + #Whether the enlightened amulet ignores orbs spawned by Experience Fountains. Default = true + Ignores = true + #Whether the enlightened amulet ignores orbs spawned by Infected Bookshelves. Default = false + IgnoresBookshelfOrbs = false + +["Staff of Attunement Range"] + #The binding range of the Staff of Attunement & Memory Tablet in blocks. Accepts decimals. Default = 48.0. + #Lower this if you experience issues with bound blocks not working correctly. + #Range: 4.0 ~ 100.0 + Range = 48.0 + +["Metamorpher Name Formatting Recipes"] + #Whether custom recipes that allow for the changing of item name color & formatting are enabled. Default = true + Formatting = true + +["Fluorescent Jelly"] + #How many hunger points Fluorescent Jelly gives the player. Set to 0 to disable eating completely. Default = 2 + Nutrition = 2 + #How much saturation Fluorescent Jelly gives the player. Default = 1.0 + Saturation = 1.0 + +["Cognitive Bow"] + #Whether to show the projectile velocity & accuracy boost in the tooltip. Default = true + #Disable this if tooltip components are being displayed in the wrong order. + Show = true + +["Bookshelf Settings"] + #The chance that infected bookshelves of any kind drop Forgotten Dust upon decaying. Default = 0.5 + #Set this value to 0.0 to prevent drops from decaying bookshelves completely + #Range: 0.0 ~ 1.0 + DropDustChance = 0.5 + #Whether Infected Bookshelves are permeable to Forgotten Dust item entities. Default = false + ShelvesPermeableToDust = false + + ["Bookshelf Settings"."Infected Bookshelves"] + #The minimum spawn delay of Infected Bookshelves in ticks. Default = 300 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Infected Bookshelves in ticks. Default = 500 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 12 + #Range: 1 ~ 32767 + OrbValue = 12 + #The number of spawns until the bookshelf decays. Default = 50 + #Range: 1 ~ 10000 + Spawns = 50 + #The chance for an Infected Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + + ["Bookshelf Settings"."Infected Enchanted Bookshelves"] + #The minimum spawn delay of Enchanted Bookshelves in ticks. Default = 100 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Enchanted Bookshelves in ticks. Default = 300 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 24 + #Range: 1 ~ 32767 + OrbValue = 24 + #The number of spawns until the bookshelf decays. Default = 100 + #Range: 1 ~ 10000 + Spawns = 100 + #The chance for an Enchanted Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + + ["Bookshelf Settings"."Infected Archiver's Bookshelves"] + #The minimum spawn delay of Archiver's Bookshelves in ticks. Default = 180 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Archiver's Bookshelves in ticks. Default = 220 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 12 + #Range: 1 ~ 32767 + OrbValue = 12 + #The number of spawns until the bookshelf decays. Default = 50 + #Range: 1 ~ 10000 + Spawns = 100 + #The chance for an Archiver's Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + +["Agar Settings"] + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing a face. Default = 1.35 + #Range: 0.0 ~ 4.0 + AgarFaceBonus = 1.35 + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing an edge. Default = 1.15 + #Range: 0.0 ~ 4.0 + AgarEdgeBonus = 1.15 + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing a vertex. Default = 1.10 + #Range: 0.0 ~ 4.0 + AgarVertexBonus = 1.1 + #Whether or not Agar blocks emit light. Default = true. + #Set this to false if you are using intensive shader settings and are experiencing fps drops. + AgarEmitsLight = true + #Whether Agar blocks are permeable to Forgotten Dust item entities. Default = false + ShelvesPermeableToDust = false + #The chance for a Nutrient Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + NutrientAgarInfectivity = 0.005 + #The chance for an Insightful Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + InsightfulAgarInfectivity = 0.01 + #The chance for an Extravagant Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + ExtravagantAgarInfectivity = 0.02 + diff --git a/config/explorerscompass-client.toml b/config/explorerscompass-client.toml new file mode 100644 index 0000000..824c51d --- /dev/null +++ b/config/explorerscompass-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Displays Explorer's Compass information on the HUD even while chat is open. + displayWithChatOpen = true + #Attempts to translate structure names before fixing the unlocalized names. Translations may not be available for all structures. + translateStructureNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 1 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "LEFT" + diff --git a/config/explorerscompass-common.toml b/config/explorerscompass-common.toml new file mode 100644 index 0000000..8cac3ae --- /dev/null +++ b/config/explorerscompass-common.toml @@ -0,0 +1,26 @@ + +[General] + #Allows a player to teleport to a located structure when in creative mode, opped, or in cheat mode. + allowTeleport = true + #Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. + displayCoordinates = true + #The maximum radius that will be searched for a structure. Raising this value will increase search accuracy but will potentially make the process more resource intensive. + #Range: 0 ~ 1000000 + maxRadius = 10000 + #A list of structures that the compass will not display in the GUI and will not be able to search for. Wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:stronghold", "minecraft:endcity", "minecraft:*village*"] + structureBlacklist = [] + #The maximum number of samples to be taken when searching for a structure. + #Range: 0 ~ 100000000 + maxSamples = 100000 + #The maximum number of times a player can search for the next instance of a located structure, excluding already-found locations. Set to 0 to disable searching for additional structure instances and make the compass always locate the nearest instance. + #Range: 0 ~ 10000 + maxNextSearches = 100 + #The default number of XP levels consumed when searching for a structure. Individual structures can be configured via perStructureXpLevels. + #Range: 0 ~ 3 + defaultXpLevels = 0 + #A list of per-structure XP level costs that override defaultXpLevels, specified as comma-separated "structure_id,num_levels" pairs. Structures not listed here use defaultXpLevels. Max of 3 levels. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:buried_treasure,3", "minecraft:end*,2", "minecraft:*village*,1"] + perStructureXpLevels = [] + #The number of successful structure searches before the compass breaks and must be repaired. Set to 0 to disable durability. + #Range: 0 ~ 10000 + compassDurability = 0 + diff --git a/config/exposure-client.toml b/config/exposure-client.toml new file mode 100644 index 0000000..139fb52 --- /dev/null +++ b/config/exposure-client.toml @@ -0,0 +1,142 @@ + +[ui] + #Tooltips for Developing Film Rolls and Copying Photographs will be shown on Film Rolls and Photographs respectively, describing the crafting recipe. + #Only when JEI is not installed. (Only JEI shows these recipes, not REI or EMI) + recipe_tooltips_without_jei = true + #Details about Camera configuring will be shown in Camera item tooltip. + camera_details_tooltip = true + #Film Roll Frames will be shown in the camera tooltip. + #Default: true + camera_film_frames_tooltip = true + #Film Roll fullness bar will be shown on the Camera item. + #Default: false + camera_shows_film_bar = false + #Photographer name will be shown in Photograph's tooltip. + photograph_photographer_name_tooltip = false + #Crosshair will not get in the way when holding a photograph. + photograph_in_hand_hide_crosshair = true + #When looking at the Camera Stand, in-world tooltip will show information about the camera on it. Default: true + camera_stand_tooltip = true + #Album will show how many photographs it contains in a tooltip. + album_show_photos_count = true + + [ui.album] + #Color in hex format. AARRGGBB. + font_main_color = "FFB59774" + #Color in hex format. AARRGGBB. + font_secondary_color = "FFEFE4CA" + #Color in hex format. AARRGGBB. + selection_color = "FF8888FF" + #Color in hex format. AARRGGBB. + selection_unfocused_color = "FFBBBBFF" + +[viewfinder] + #Clicking middle mouse button will open Viewfinder Controls. This is independent of Open Camera Controls keybind. + #Allows opening camera controls without dismounting from a vehicle - and keeping controls on sneak or other button as well. + #Default: true + middle_click_controls = true + #How much zooming influences mouse sensitivity. + #0 - no change to sensitivity. 1 - full effect. + #Range: 0.0 ~ 1.0 + zoom_sensitivity_influence = 1.0 + #Color in hex format. AARRGGBB. + background_color = "FA1F1D1B" + #Color in hex format. AARRGGBB. + font_main_color = "FF2B2622" + #Color in hex format. AARRGGBB. + font_secondary_color = "FF7A736C" + #HUD will be hidden while looking through viewfinder. Default: true + hide_hud_while_in_viewfinder = true + #X offset of a viewfinder status icon. Default: 0 + #Range: -999 ~ 999 + status_icon_offset_x = 0 + #Y offset of a viewfinder status icon. Default: 0 + #Range: -999 ~ 999 + status_icon_offset_y = 0 + +[capture] + #Keep Post Effect (vanilla shader) when capturing an image. + #It is sometimes used by mods to change how player sees the world. (Cold Sweat's overheating blur, Supplementaries mob heads, for example). + #In vanilla, it's only used when spectating a creeper/enderman/etc. + #Default: false + keep_post_effect = false + #Delay in ticks before capturing an image when shooting with flash. + #If you experience flash synchronization issues (Flash having no effect on the image) - try increasing the value. + #Range: 1 ~ 8 + flash_capture_delay_ticks = 4 + #Force legacy (pre 1.21) capturing method for taking images. Enable if you experiencing issues with resulting images. + #Direct method will be used regardless of this setting if mods defined in 'force_direct_capture_default_mods' is installed. + #Default: false + force_direct_capture = false + #Direct capture will be used if any of these mods is installed. + #Format: '["mod_id", "mod_id"]'. Default: [veil, pmweather] + force_direct_capture_default_mods = ["veil", "pmweather"] + #Delay in frames before capturing an image if 'direct_capture' method is in use. + #Set to higher value when leftovers of GUI elements (such as nameplates) are visible on the images + #(some shaders have temporal effects that take several frames to disappear fully) + #Range: 0 ~ 100 + direct_capture_delay_frames = 0 + #Sets the game to 'panoramic mode' when capturing the image with background capture method (default). + #Enabling this might fix some graphical issues, such as water being invisible. + #If captured images are still not looking properly - enable 'force_direct_capture'. + #Default: false + background_capture_use_panoramic_mode = false + + [capture.loading] + #Loading from file will only accept a path relative to game directory, when on the dedicated server (multiplayer). + #This option is for protection against malicious actions using Projector or load commands. + #Default: false + multiplayer_file_loading_only_from_game_dir = false + #How loading from URL should behave when on the dedicated server (multiplayer). + #This option is for protection against malicious actions using Projector or load commands. + #Default: ONLY_ALLOWED_DOMAINS + #Allowed Values: ALL, ONLY_ALLOWED_DOMAINS, NONE + multiplayer_url_loading = "ONLY_ALLOWED_DOMAINS" + #List of allowed domains for loading from URl, if 'multiplayer_url_loading' is set to ONLY_ALLOWED_DOMAINS. + multiplayer_url_loading_allowed_domains = ["i.imgur.com", "cdn.discordapp.com", "media.discordapp.net", "raw.githubusercontent.com"] + #List of allowed domains for loading from URl, if 'multiplayer_url_loading' is set to ONLY_ALLOWED_DOMAINS. + multiplayer_url_loading_allowed_subdomains = [".imgur.com", ".discordapp.com"] + +[render] + #Makes photos in Photograph Frame render with alignment to 16 pixel grid (like paintings). Just for fun. Default: false + pixel_perfect_photograph_frame = false + #Photographs in Item Frame will be rendered as image instead of an item icon. Default: false + photograph_renders_in_item_frame = false + #Projected photographs (using Interplanar Projector) made by other players will be censored (pixelated). Default: false + censor_projected_photographs_made_by_others = false + #All photographs made by other players will will be censored (pixelated). Default: false + censor_all_photographs_made_by_others = false + #Distance from the player beyond which Photograph Frame would not be rendered. Default: 64 + #Note: this number may not relate to distance in blocks exactly. It's influenced by render distance and entity distance settings. + #Range: 8 ~ 128 + photograph_frame_culling_distance = 64 + #Depth offset to Photograph in Photograph Frame. Can be used to fix issues with some 3D resourcepacks. Value of 0.015 is good for 'Classic 3D' resourcepack. Default: 0.0 + #Range: -1.0 ~ 1.0 + photograph_frame_image_offset = 0.0 + +[integration] + #Useful information about some items will be shown in JEI description category. Default: true + jei_information = true + #[Real Camera] Disable player model rendering when looking through viewfinder. Default: true + real_camera_disable_in_viewfinder = true + +[export] + #When the Photograph you took is viewed in UI (by using a Photograph), image will be exported to '/exposures' folder as a png. + export_viewed_photographs = true + #When exporting, exposures will be organized to subfolders with world name. + export_organize_by_world = true + #Exported exposures will be scaled by this multiplier. + #Given the default exposure size of 320 pixels - this will produce: + #320/640/960/1280/etc image. Be careful with larger frame sizes. + #Default: 2 + #Range: 1 ~ 10 + export_size_multiplier = 2 + +[tutorial] + #Toast that teaches hovering mouse over camera parts will be shown when attachments menu is first opened. Default: true. + #*This setting will be automatically set to false on first show.* + attachments_show_info_toast = true + #Toast that teaches wiki opening will be shown when attachments menu is first opened, after info toast. Default: true. + #*This setting will be automatically set to false on first show.* + attachments_show_wiki_toast = true + diff --git a/config/exposure-common.toml b/config/exposure-common.toml new file mode 100644 index 0000000..3136745 --- /dev/null +++ b/config/exposure-common.toml @@ -0,0 +1,12 @@ + +[misc] + #Signed Album item will have an enchantment glint. + signed_album_glint = true + #Mundane, Awkward and Thick potions will have their color changed slightly, so it's easier to tell them apart. Default: true + different_developing_potions_colors = true + #Generate photographs and film rolls in loot chests. Default: true + loot_chests = true + #Convert old photograph IDs to the new system (1.7 -> 1.9 update). Makes old photos visible, but results may be undesirable (missing pixels, different colors, etc). + #Default: true + datafix_old_ids = true + diff --git a/config/exposure_polaroid-client.toml b/config/exposure_polaroid-client.toml new file mode 100644 index 0000000..6323707 --- /dev/null +++ b/config/exposure_polaroid-client.toml @@ -0,0 +1,19 @@ + +[ui] + #Details about Camera configuring will be shown in Instant Camera item tooltip. + instant_camera_details_tooltip = true + #Slides count will be shown in the Instant Camera item tooltip. + #Default: true + instant_camera_slides_tooltip = true + #Slide fullness bar will be shown on the Instant Camera item. + #Default: false + instant_camera_shows_slides_bar = false + +[viewfinder] + #Color in hex format. AARRGGBB. + background_color = "FA1F1D1B" + #Color in hex format. AARRGGBB. + font_main_color = "FF2B2622" + #Color in hex format. AARRGGBB. + font_secondary_color = "FF7A736C" + diff --git a/config/extendedcrafting-client.toml b/config/extendedcrafting-client.toml new file mode 100644 index 0000000..80a1030 --- /dev/null +++ b/config/extendedcrafting-client.toml @@ -0,0 +1,6 @@ + +#Client settings. +[General] + #Should the Quantum Compressor render the result item above it? + enableCompressorRenderer = true + diff --git a/config/extendedcrafting-common.toml b/config/extendedcrafting-common.toml new file mode 100644 index 0000000..67d84f4 --- /dev/null +++ b/config/extendedcrafting-common.toml @@ -0,0 +1,110 @@ + +#Settings for Singularities. +[Singularities] + #Should the default recipe for the Ultimate Singularity be generated? + ultimateSingularityRecipe = true + #The default amount of items required to create a Singularity. + #Range: > 1 + defaultMaterialsRequired = 10000 + #Should default recipes be generated for Singularities? + defaultRecipes = true + #The default amount of FE required to create a Singularity. + #Range: > 0 + defaultPowerRequired = 5000000 + #Should the Singularities be enabled? + enabled = true + #The item to use as the Catalyst in default Singularity recipes. + defaultCatalyst = "extendedcrafting:ultimate_catalyst" + +#Settings for the Crafting Core. +["Combination Crafting"] + #How much FE the Crafting Core should hold. + #Range: > 0 + powerCapacity = 5000000 + #How much FE/t the Crafting Core should use when crafting by default. + #Range: > 0 + powerRate = 500 + #Should the Crafting Core be enabled? + enabled = true + +#Settings for general things. +[General] + #Should the Handheld Crafting Table be enabled? + handheldWorkbench = true + +#Settings for the Extended Crafting Tables. +["Table Crafting"] + #How much FE the Auto Crafting Tables should hold. Higher tiers use double the previous tier. + #Range: > 0 + autoTablePowerCapacity = 500000 + #How much FE the Auto Crafting Tables should use when auto inserting items. + #Range: > 0 + autoTableInsertPowerRate = 100 + #Should the Basic Crafting Table inherit vanilla crafting recipes? + useVanillaRecipes = true + #Should the Extended Crafting Tables be enabled? + enabled = true + #Should the Auto Crafting Tables be enabled? + autoTablesEnabled = true + #How much FE the Auto Crafting Tables should use when crafting. + #Range: > 0 + autoTablePowerRate = 500 + +#Settings for the Quantum Compressor. +["Quantum Compression"] + #How much FE the Quantum Compressor should hold. + #Range: > 0 + powerCapacity = 10000000 + #How much FE/t the Quantum Compressor should use when crafting by default. + #Range: > 0 + powerRate = 5000 + #Should the Quantum Compressor be enabled? + enabled = true + +#Settings for the Recipe Maker. +["Recipe Maker"] + #Should the recipe maker add NBT tags when possible? + useNBT = true + #Should the recipe maker try to use tags when possible? + useTags = false + #Should the Recipe Maker be enabled? + enabled = true + +#Settings for the Flux Crafter. +["Flux Crafting"] + #How much FE/t the Flux Crafter should pull from each Flux Alternator when crafting by default. + #Range: > 0 + defaultPowerRate = 400 + #How much FE the Flux Alternator should hold. + #Range: > 0 + powerCapacity = 80000 + #How much FE the Auto Flux Crafter should hold. + #Range: > 0 + autoCrafterPowerCapacity = 500000 + #How much FE the Auto Flux Crafter should use when auto inserting items. + #Range: > 0 + autoCrafterInsertPowerRate = 100 + #Should the Flux Crafter be enabled? + enabled = true + #Should the Auto Flux Crafter be enabled? + autoCrafterEnabled = true + +#Settings for the Ender Crafter. +["Ender Crafting"] + #How long a single Ender Crafter crafting operation should take (in seconds) by default. + #Range: > 1 + defaultTimeRequired = 60 + #How much FE the Auto Ender Crafter should hold. + #Range: > 0 + autoCrafterPowerCapacity = 500000 + #How much FE the Auto Ender Crafter should use when auto inserting items. + #Range: > 0 + autoCrafterInsertPowerRate = 100 + #How much a single Ender Alternator should speed up a craft. This is a percentage of the time required. + #Range: 0.0 ~ 1.0 + alternatorEffectiveness = 0.01 + #Should the Ender Crafter be enabled? + enabled = true + #Should the Auto Ender Crafter be enabled? + autoCrafterEnabled = true + diff --git a/config/extradisks-common.toml b/config/extradisks-common.toml new file mode 100644 index 0000000..b6492fa --- /dev/null +++ b/config/extradisks-common.toml @@ -0,0 +1,35 @@ + +[storageblocks] + + [storageblocks.item] + #item storage blocks energy usage + #Range: > 0 + 256k = 12 + #Range: > 0 + 1024k = 14 + #Range: > 0 + 4096k = 16 + #Range: > 0 + 16384k = 18 + #Range: > 0 + 65536k = 20 + #Range: > 0 + 262144k = 22 + #Range: > 0 + 1048576k = 24 + #Range: > 0 + infinite = 26 + + [storageblocks.fluid] + #fluid storage blocks energy usage + #Range: > 0 + 16384k = 12 + #Range: > 0 + 65536k = 14 + #Range: > 0 + 262144k = 16 + #Range: > 0 + 1048576k = 18 + #Range: > 0 + infinite = 20 + diff --git a/config/extremesoundmuffler-client.toml b/config/extremesoundmuffler-client.toml new file mode 100644 index 0000000..c4857fc --- /dev/null +++ b/config/extremesoundmuffler-client.toml @@ -0,0 +1,67 @@ + +#General settings +[general] + #Blacklisted Sounds - add the name of the sounds to blacklist, separated with comma + #Default: "ui.", "music.", "ambient." + forbiddenSounds = ["ui.", "music.", "ambient."] + #Allow the "ALL" sounds list to include the blacklisted sounds? + #Default: false + lawfulAllList = false + #Volume set when pressed the mute button by default + #Default: 0 + #Range: 0.0 ~ 0.9 + defaultMuteVolume = 0.0 + #Set to true to move the muffle and play buttons to the left side of the GUI + #Default: false + leftButtons = false + #Show tips in the Muffler screen? + #Default: true + showTip = true + #Whether or not use the dark theme + #Default: false + useDarkTheme = false + #General mod muffling, any sound from these mods will be muffled down to the provided volume. + #Name of the mod and desired volume, separated by ":" + #Example: "minecraft:50", "extremesoundmuffler:0" + #Default: empty + modsMuffled = [] + +#Inventory button settings +[inventory_button] + #Disable the Muffle button in the player inventory? + #Default: false + disableInventoryButton = false + #Coordinates for the Muffler button in the player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Default: 75 + #Range: > -2147483648 + invButtonX = 75 + #Coordinates for the Muffler button in the player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Default: 7 + #Range: > -2147483648 + invButtonY = 7 + #Disable the Muffle button in the creative player inventory? + #Default: false + disableCreativeInventoryButton = false + #Coordinates for the Muffler button in the creative player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Default: 2 + #Range: > -2147483648 + creativeInvButtonX = 2 + #Coordinates for the Muffler button in the creative player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Default: 2 + #Range: > -2147483648 + creativeInvButtonY = 2 + +#Anchor settings +[Anchors] + #Disable the Anchors? + #Default: false + disableAnchors = false + #Set max size for anchors (Warning: high values may cause LAG!). + #Default: 32 + #Range: > 1 + anchorRange = 32 + diff --git a/config/fabric/indigo-renderer.properties b/config/fabric/indigo-renderer.properties new file mode 100644 index 0000000..80a190a --- /dev/null +++ b/config/fabric/indigo-renderer.properties @@ -0,0 +1,9 @@ +#Indigo properties file +#Sun Jul 19 16:06:39 GMT 2026 +always-tesselate-blocks=auto +ambient-occlusion-mode=hybrid +debug-compare-lighting=auto +fix-exterior-vertex-lighting=auto +fix-luminous-block-ambient-occlusion=auto +fix-mean-light-calculation=auto +fix-smooth-lighting-offset=auto diff --git a/config/fabric_loader_dependencies.json b/config/fabric_loader_dependencies.json new file mode 100644 index 0000000..8d79846 --- /dev/null +++ b/config/fabric_loader_dependencies.json @@ -0,0 +1,11 @@ + { + "version": 1, + "overrides": { + "nvidium": { + "-depends": { + "minecraft": "", + "sodium": " " + } + } + } + } diff --git a/config/fallingleaves-client.toml b/config/fallingleaves-client.toml new file mode 100644 index 0000000..c499470 --- /dev/null +++ b/config/fallingleaves-client.toml @@ -0,0 +1,25 @@ +#modifies the size of the leaves +#Range: 1 ~ 20 +leafSize = 4 +#modifies how long it takes for the leaves to disappear +#Values over 2000 are not recommend +#Range: > 100 +leafLifespan = 200 +#modifies the amount of leaves that are spawning +#Values over 10000 are not recommend +#Range: > 0 +leafSpawnRate = 10 +#modifier the amount of leaves are spawning from conifer trees +#Values over 10000 are not recommend +#Range: > 0 +coniferLeafSpawnRate = 2 +#whether player placed blocks should also drop leaves +dropFromPlayerPlacedBlocks = true +#how much room below the leaves block is needed for the leaves to spawn +#Range: 1 ~ 20 +minimumFreeSpaceBelow = 1 +#disable wind effects +disableWind = false +#windless dimensions +windlessDimension = ["minecraft:the_nether", "minecraft:the_end"] + diff --git a/config/fallingtree.json b/config/fallingtree.json new file mode 100644 index 0000000..0c55c1e --- /dev/null +++ b/config/fallingtree.json @@ -0,0 +1,50 @@ +{ + "trees": { + "allowedLogs": [], + "deniedLogs": [], + "allowedLeaves": [], + "allowedNonDecayLeaves": [], + "deniedLeaves": [], + "breakMode": "INSTANTANEOUS", + "detectionMode": "WHOLE_TREE", + "maxScanSize": 256, + "maxSize": 64, + "maxLeafDistanceFromLog": 10, + "maxSizeAction": "ABORT", + "breakOrder": "FURTHEST_FIRST", + "minimumLeavesAroundRequired": 1, + "includePersistentLeavesInRequiredCount": true, + "treeBreaking": true, + "leavesBreaking": true, + "leavesBreakingForceRadius": 0, + "allowMixedLogs": false, + "breakNetherTreeWarts": true, + "breakMangroveRoots": true, + "searchAreaRadius": -1, + "allowedAdjacentBlocks": [], + "adjacentStopMode": "STOP_ALL" + }, + "tools": { + "allowed": [], + "denied": [], + "preserve": false, + "ignoreTools": false, + "damageMultiplicand": 1.0, + "damageRounding": "ROUND_DOWN", + "speedMultiplicand": 0.0, + "forceToolUsage": false + }, + "player": { + "allowedTags": [] + }, + "enchantment": { + "registerEnchant": false, + "registerSpecificEnchant": false, + "hideEnchant": false, + "requireEnchantment": false + }, + "sneakMode": "SNEAK_DISABLE", + "breakInCreative": false, + "lootInCreative": true, + "notificationMode": "ACTION_BAR" +} \ No newline at end of file diff --git a/config/fancymenu/animation_controller_states.json b/config/fancymenu/animation_controller_states.json new file mode 100644 index 0000000..01b9221 --- /dev/null +++ b/config/fancymenu/animation_controller_states.json @@ -0,0 +1,6 @@ +[ + { + "element_identifier": "5550d964-bdcf-4f27-b21d-a47019695c0f-1783253392054", + "playing": true + } +] \ No newline at end of file diff --git a/config/fancymenu/assets/6.png b/config/fancymenu/assets/6.png new file mode 100644 index 0000000..668f5fe Binary files /dev/null and b/config/fancymenu/assets/6.png differ diff --git a/config/fancymenu/assets/altbg.png b/config/fancymenu/assets/altbg.png new file mode 100644 index 0000000..5cf8336 Binary files /dev/null and b/config/fancymenu/assets/altbg.png differ diff --git a/config/fancymenu/assets/background.png b/config/fancymenu/assets/background.png new file mode 100644 index 0000000..2215e8d Binary files /dev/null and b/config/fancymenu/assets/background.png differ diff --git a/config/fancymenu/assets/imr-all-static.png b/config/fancymenu/assets/imr-all-static.png new file mode 100644 index 0000000..7a00eb5 Binary files /dev/null and b/config/fancymenu/assets/imr-all-static.png differ diff --git a/config/fancymenu/assets/imr-animated.gif b/config/fancymenu/assets/imr-animated.gif new file mode 100644 index 0000000..5d5b345 Binary files /dev/null and b/config/fancymenu/assets/imr-animated.gif differ diff --git a/config/fancymenu/assets/imr-background.png b/config/fancymenu/assets/imr-background.png new file mode 100644 index 0000000..002cb41 Binary files /dev/null and b/config/fancymenu/assets/imr-background.png differ diff --git a/config/fancymenu/assets/imr-button-small.png b/config/fancymenu/assets/imr-button-small.png new file mode 100644 index 0000000..b4832cb Binary files /dev/null and b/config/fancymenu/assets/imr-button-small.png differ diff --git a/config/fancymenu/assets/imr-button-small_off.png b/config/fancymenu/assets/imr-button-small_off.png new file mode 100644 index 0000000..38097e9 Binary files /dev/null and b/config/fancymenu/assets/imr-button-small_off.png differ diff --git a/config/fancymenu/assets/imr-button-small_on.png b/config/fancymenu/assets/imr-button-small_on.png new file mode 100644 index 0000000..d6beb1c Binary files /dev/null and b/config/fancymenu/assets/imr-button-small_on.png differ diff --git a/config/fancymenu/assets/imr-button-square.png b/config/fancymenu/assets/imr-button-square.png new file mode 100644 index 0000000..c1b2730 Binary files /dev/null and b/config/fancymenu/assets/imr-button-square.png differ diff --git a/config/fancymenu/assets/imr-button-square_off.png b/config/fancymenu/assets/imr-button-square_off.png new file mode 100644 index 0000000..ef7a0a8 Binary files /dev/null and b/config/fancymenu/assets/imr-button-square_off.png differ diff --git a/config/fancymenu/assets/imr-button-square_on.png b/config/fancymenu/assets/imr-button-square_on.png new file mode 100644 index 0000000..8b7198a Binary files /dev/null and b/config/fancymenu/assets/imr-button-square_on.png differ diff --git a/config/fancymenu/assets/imr-button.png b/config/fancymenu/assets/imr-button.png new file mode 100644 index 0000000..7ce11d7 Binary files /dev/null and b/config/fancymenu/assets/imr-button.png differ diff --git a/config/fancymenu/assets/imr-button_off.png b/config/fancymenu/assets/imr-button_off.png new file mode 100644 index 0000000..09b3a98 Binary files /dev/null and b/config/fancymenu/assets/imr-button_off.png differ diff --git a/config/fancymenu/assets/imr-button_on.png b/config/fancymenu/assets/imr-button_on.png new file mode 100644 index 0000000..77bb18d Binary files /dev/null and b/config/fancymenu/assets/imr-button_on.png differ diff --git a/config/fancymenu/assets/imr-magic-static.png b/config/fancymenu/assets/imr-magic-static.png new file mode 100644 index 0000000..fe36eee Binary files /dev/null and b/config/fancymenu/assets/imr-magic-static.png differ diff --git a/config/fancymenu/assets/imr-magic.gif b/config/fancymenu/assets/imr-magic.gif new file mode 100644 index 0000000..bbad482 Binary files /dev/null and b/config/fancymenu/assets/imr-magic.gif differ diff --git a/config/fancymenu/assets/imr-mod-background.png b/config/fancymenu/assets/imr-mod-background.png new file mode 100644 index 0000000..ea57cb8 Binary files /dev/null and b/config/fancymenu/assets/imr-mod-background.png differ diff --git a/config/fancymenu/assets/imr-modlist-1.png b/config/fancymenu/assets/imr-modlist-1.png new file mode 100644 index 0000000..202bb01 Binary files /dev/null and b/config/fancymenu/assets/imr-modlist-1.png differ diff --git a/config/fancymenu/assets/imr-nostalgia.png b/config/fancymenu/assets/imr-nostalgia.png new file mode 100644 index 0000000..45c57b8 Binary files /dev/null and b/config/fancymenu/assets/imr-nostalgia.png differ diff --git a/config/fancymenu/assets/imr-series-nostalgia.png b/config/fancymenu/assets/imr-series-nostalgia.png new file mode 100644 index 0000000..dba0dbe Binary files /dev/null and b/config/fancymenu/assets/imr-series-nostalgia.png differ diff --git a/config/fancymenu/assets/imr6-icon-light.png b/config/fancymenu/assets/imr6-icon-light.png new file mode 100644 index 0000000..526015a Binary files /dev/null and b/config/fancymenu/assets/imr6-icon-light.png differ diff --git a/config/fancymenu/assets/imr6-icon.png b/config/fancymenu/assets/imr6-icon.png new file mode 100644 index 0000000..fef905d Binary files /dev/null and b/config/fancymenu/assets/imr6-icon.png differ diff --git a/config/fancymenu/assets/version.txt b/config/fancymenu/assets/version.txt new file mode 100644 index 0000000..adc3c59 --- /dev/null +++ b/config/fancymenu/assets/version.txt @@ -0,0 +1 @@ +Industrial Magic Reloaded: 6.0.0 diff --git a/config/fancymenu/custom_gui_screens.txt b/config/fancymenu/custom_gui_screens.txt new file mode 100644 index 0000000..57f690f --- /dev/null +++ b/config/fancymenu/custom_gui_screens.txt @@ -0,0 +1,5 @@ +type = custom_gui_screens + +overridden_screens { +} + diff --git a/config/fancymenu/customizablemenus.txt b/config/fancymenu/customizablemenus.txt new file mode 100644 index 0000000..d4a156f --- /dev/null +++ b/config/fancymenu/customizablemenus.txt @@ -0,0 +1,11 @@ +type = customizablemenus + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +net.minecraft.client.gui.screens.TitleScreen { +} + +net.minecraft.client.gui.screens.LevelLoadingScreen { +} + diff --git a/config/fancymenu/customization/drippy_loading_overlay_layout.txt b/config/fancymenu/customization/drippy_loading_overlay_layout.txt new file mode 100644 index 0000000..04925b5 --- /dev/null +++ b/config/fancymenu/customization/drippy_loading_overlay_layout.txt @@ -0,0 +1,573 @@ +type = fancymenu_layout + +layout-meta { + identifier = drippy_loading_overlay + render_custom_elements_behind_vanilla = true + last_edited_time = 1784070890820 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:0230c1e7-432c-4ba5-8959-23cbbc766a53-1784070837821] = [groups:][instances:] +} + +menu_background { + instance_identifier = c731e8a1-c004-4c93-9aa2-3e629930efad-1784068654989 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 26c9682c-4eb8-4a0b-a387-564ad25cd957-1784068654989 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 4b46f6ce-e658-41e6-955b-a2ab6fca3b41-1784068654989 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/altbg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = a81ca15a-1fb3-4c4b-8164-d213b5469840-1784068654989 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 5c36cf2f-c579-40f7-825d-34b08f0a180a-1784068654989 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a4f64def-ee24-467d-9d9f-eeb2a8e80114-1784068654989 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 4537a2e4-2db3-4c39-b8ce-97673050edc1-1784068654989 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = d4a848e4-8327-4681-baca-85dfdcef63d9-1784068654989 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 48c7feaa-3d49-451b-aba8-6365d2dfab2c-1784068654989 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = fc184f12-d118-406f-8b72-af3bd75477b3-1784068654989 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = a6353632-e868-42ed-9b63-2bc9dfdb1953-1784068654989 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 27a9224b-ba81-42d5-9a1d-1695bbccc8d1-1784068654989 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = f6739f73-cbbd-47c6-ab88-0199a8fa2dc8-1784068654989 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 1b698388-2273-4dc3-ac59-c558a5ff091e-1784068654989 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = e81bdd87-41e8-481f-8151-019e7879cd25-1784068654989 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 4b888b7e-250f-462f-a38b-478519abeced-1784068654989 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = ac5edb96-a3be-4b35-a9aa-a8c1cc484ffc-1784068654989 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = f1fac6d1-2954-408f-b28d-d75d4776c408-1784068654989 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 682c02e7-ca2f-4219-976a-a8ba8cde38ed-1784068654989 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 8cb3d2f5-39f9-412f-b963-36e18a7e9d8f-1784068695238 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 2.0 + sticky_anchor = false + anchor_point = bottom-right + x = -285 + y = -85 + width = 272 + height = 73 + stay_on_screen = true + element_loading_requirement_container_identifier = 012f14aa-3478-478b-a58d-33cd4d75d49f-1784068695238 + [loading_requirement_container_meta:012f14aa-3478-478b-a58d-33cd4d75d49f-1784068695238] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/imr-all-static.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +vanilla_button { + button_element_executable_block_identifier = a367a0d3-736c-4362-8fc9-4dc8e7e053e8-1784068654989 + [executable_block:a367a0d3-736c-4362-8fc9-4dc8e7e053e8-1784068654989][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a3cfdce0-b12b-4de9-b01e-83a37f8aa987-1784068654989 + [loading_requirement_container_meta:a3cfdce0-b12b-4de9-b01e-83a37f8aa987-1784068654989] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mojang_logo + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1281 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 3.0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 135 + width = 360 + height = 90 + stay_on_screen = true + element_loading_requirement_container_identifier = 81a0e6df-fcff-43f6-869e-40e609f6438b-1784068654989 + [loading_requirement_container_meta:81a0e6df-fcff-43f6-869e-40e609f6438b-1784068654989] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 47a2a0ab-ce25-48dd-b66e-54022748121d-1784068654989 + [executable_block:47a2a0ab-ce25-48dd-b66e-54022748121d-1784068654989][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f72148f0-3164-40e6-b4c9-7cab461c385c-1784068654989 + [loading_requirement_container_meta:f72148f0-3164-40e6-b4c9-7cab461c385c-1784068654989] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = progress_bar + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 2.0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 8cb3d2f5-39f9-412f-b963-36e18a7e9d8f-1784068695238 + x = 7 + y = -3 + width = 257 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = 18ddb5b7-d08c-41b4-8b6c-b86f1202317b-1784068654989 + [loading_requirement_container_meta:18ddb5b7-d08c-41b4-8b6c-b86f1202317b-1784068654989] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/level_loading_screen_layout.txt b/config/fancymenu/customization/level_loading_screen_layout.txt new file mode 100644 index 0000000..0f6ba7d --- /dev/null +++ b/config/fancymenu/customization/level_loading_screen_layout.txt @@ -0,0 +1,508 @@ +type = fancymenu_layout + +layout-meta { + identifier = level_loading_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1783944944512 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:8228aa0e-a66d-4044-944c-f8dd09ee7750-1783944910507] = [groups:][instances:] +} + +menu_background { + instance_identifier = 1fe9f196-b5ae-4ec4-b7b3-254132fd48c1-1783944753945 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = f3e610c3-f70e-40d1-b2b7-b42d243d7b92-1783944753945 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 886415ae-cb05-43bc-88b8-8bbf54402c85-1783944753945 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = e9f01595-1db0-4295-b68b-d49da7015585-1783944753945 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 378039fe-9df3-4244-9d0e-7f82054f512f-1783944753945 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 37f5e885-a91d-4074-9b84-1afa1af40b57-1783944753945 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 1957b8e3-b341-42f4-9861-f360a99140f1-1783944753945 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 9efb80ce-0f60-4ed4-bdeb-8901b26817c8-1783944753945 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = b90984d1-0441-4659-ac17-01d95904ccbd-1783944753945 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 5e3df467-8c37-4d71-9234-75d67fb9afd6-1783944753945 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 7439f664-533a-4061-a7ec-3fc71f3aa79f-1783944753945 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 89d1532e-ea20-4f03-86b0-ac1d4b5bbc63-1783944753945 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 14c94aa1-842e-4233-8a14-5cd869a51294-1783944753945 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = ffbb2751-21be-41c1-b2e4-2bdd65771b32-1783944753945 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 0e5bb1fe-f874-455b-b01e-0ae8b283e934-1783944753945 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 7d5aa127-fcac-4cef-9d96-af2945dfd2bc-1783944753945 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 472a7dda-d487-454f-9291-3018df224b24-1783944753945 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 36e937b9-ff26-4ae6-8e39-d3c870a44991-1783944753945 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = b93e20ca-b8ac-4919-8945-492525a10d45-1783944753945 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = e359f899-0a48-4fa6-8b77-af01dd2b41ee-1783944753945 + [executable_block:e359f899-0a48-4fa6-8b77-af01dd2b41ee-1783944753945][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 74fc07d9-81ad-46be-a37c-9fec34dcbaf6-1783944753945 + [loading_requirement_container_meta:74fc07d9-81ad-46be-a37c-9fec34dcbaf6-1783944753945] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = chunks + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 2.0 + sticky_anchor = false + anchor_point = vanilla + x = 270 + y = 160 + width = 100 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 7639adbe-263c-4cba-835d-61081bb5622e-1783944753945 + [loading_requirement_container_meta:7639adbe-263c-4cba-835d-61081bb5622e-1783944753945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = b7536180-8b05-4281-9191-f2052a579e49-1783944753945 + [executable_block:b7536180-8b05-4281-9191-f2052a579e49-1783944753945][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 11469f18-83ae-47f7-bb0a-23aa883c1a54-1783944753945 + [loading_requirement_container_meta:11469f18-83ae-47f7-bb0a-23aa883c1a54-1783944753945] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = percentage + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 2.0 + sticky_anchor = false + anchor_point = bottom-centered + x = -95 + y = -40 + width = 197 + height = 37 + stay_on_screen = true + element_loading_requirement_container_identifier = 904d81a0-3f29-4c8b-bf02-c921c269fb47-1783944753945 + [loading_requirement_container_meta:904d81a0-3f29-4c8b-bf02-c921c269fb47-1783944753945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/title_screen_layout.txt b/config/fancymenu/customization/title_screen_layout.txt new file mode 100644 index 0000000..ac5aab2 --- /dev/null +++ b/config/fancymenu/customization/title_screen_layout.txt @@ -0,0 +1,1943 @@ +type = fancymenu_layout + +layout-meta { + identifier = title_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1783944065307 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + custom_menu_title = Industrial Magic Reloaded: 6 + [loading_requirement_container_meta:53e6bc86-b6f8-4167-8c10-fe25e658aefb-1783944023563] = [groups:][instances:] +} + +customization { + action = setscale + scale = 2.0 +} + +customization { + action = autoscale + basewidth = 1280 + baseheight = 720 +} + +menu_background { + instance_identifier = d519fbeb-b00e-40ac-a564-4f41d60d9a07-1783261851787 + background_type = color_fancymenu + show_background = true + color = #000000FF +} + +menu_background { + instance_identifier = 3ec59eef-e6ca-4f67-8132-4723c31fc2e6-1783261851787 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = bbc4cdce-db31-4f62-a957-34e7817a138c-1783261851787 + background_type = image + show_background = false + image_path = [source:local]/config/fancymenu/assets/imr-series-nostalgia.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = b17d3d1e-c5c5-4cb1-b5a6-f29d5786b99f-1783261851787 + background_type = slideshow + show_background = false + slideshow_name = imr_nostalgia +} + +menu_background { + instance_identifier = 3a5e6589-65f5-4755-9a54-f6ad934ccef8-1783261851787 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 80f00a67-9d71-4a05-8544-99f693111128-1783261851787 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = b0b43e29-b5db-4ba7-94ef-8e71e0a27876-1783261851787 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = fa6587e8-4cfb-49ce-a558-b14f6ad59d4b-1783261851787 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = d9da460b-8368-4586-a42b-983d28d9735c-1783261851787 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = dd4f4946-c414-47fc-bceb-c00279dd0660-1783261851787 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = a45691f7-d60b-4611-afae-a0046fdb1628-1783261851787 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 86c3f0f6-9fd5-4d69-87f4-91602b48269e-1783261851787 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = e532e61e-5551-4f21-9df9-49c2ee6d4d5d-1783261851787 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 946ff50e-142c-4a7b-ae7a-a681db18a453-1783261851787 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 05153342-2425-490a-829c-7f3f2b963f06-1783261851787 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 3e91ffb0-2ccb-4a85-b5d4-1e416ee5dd6e-1783261851787 + show_decoration_overlay = true + rain_intensity = 0.3 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = false + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = cbdd51e1-e470-4242-91e2-9db16564df4d-1783261851787 + show_decoration_overlay = true + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 49a537e5-0f8b-43e2-84dd-fbfb1d31fc1d-1783261851787 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 57bfaf67-085c-4702-a58b-002122b00155-1783261851787 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = true + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + slideshow_name = imr_nostalgia-right + element_type = slideshow + instance_identifier = 33226a45-1566-4e14-9a35-a1375bf372a1-1783370639127 + custom_element_layer_name = imr-nostalgia-right + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = mid-centered + x = -300 + y = -150 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = b3317be2-1d78-4227-be92-538f948ddce0-1783370639127 + [loading_requirement_container_meta:b3317be2-1d78-4227-be92-538f948ddce0-1783370639127] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + slideshow_name = imr_nostalgia-left + element_type = slideshow + instance_identifier = c9f0fa8d-075a-41a5-b33a-9f41fa877fb3-1783371442307 + custom_element_layer_name = imr-nostalgia-left + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = mid-centered + x = 0 + y = 0 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = 6c49b031-8c90-45f2-8ee7-0cdae27f0af7-1783371442307 + [loading_requirement_container_meta:6c49b031-8c90-45f2-8ee7-0cdae27f0af7-1783371442307] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + slideshow_name = imr_nostalgia-top-left + element_type = slideshow + instance_identifier = 898f8702-ba5c-4777-a5ff-1970c4d2768b-1783372134143 + custom_element_layer_name = imr-nostalgia-top-left + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = mid-centered + x = -150 + y = -110 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = bc25ebcc-9066-49fb-b381-dddb6c50316f-1783372134143 + [loading_requirement_container_meta:bc25ebcc-9066-49fb-b381-dddb6c50316f-1783372134143] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + slideshow_name = imr_nostalgia-middle + element_type = slideshow + instance_identifier = 93ba5f10-782d-4072-a4c7-3ff0841931b8-1783373366860 + custom_element_layer_name = imr-nostalgia-middle + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = mid-centered + x = -145 + y = -125 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = c5044afd-9406-478a-b78f-80b26483445a-1783373366860 + [loading_requirement_container_meta:c5044afd-9406-478a-b78f-80b26483445a-1783373366860] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + slideshow_name = imr_nostalgia-top-right + element_type = slideshow + instance_identifier = 76564a4a-20d4-485c-ab67-2c21182c23bb-1783373958698 + custom_element_layer_name = imr-nostalgia-top-right + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = mid-centered + x = -180 + y = -125 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = fccb4a7a-b600-4f6f-8cfb-8860da8b879c-1783373958698 + [loading_requirement_container_meta:fccb4a7a-b600-4f6f-8cfb-8860da8b879c-1783373958698] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + slideshow_name = imr_nostalgia-bottom-right + element_type = slideshow + instance_identifier = 8272af03-d259-4b56-bc2c-8cfe656174ac-1783374466886 + custom_element_layer_name = imr-nostalgia-bottom-right + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = mid-centered + x = -160 + y = -110 + width = 682 + height = 200 + stay_on_screen = true + element_loading_requirement_container_identifier = ef646abb-1e30-407f-a96e-87248457d381-1783374466886 + [loading_requirement_container_meta:ef646abb-1e30-407f-a96e-87248457d381-1783374466886] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 +} + +element { + element_type = image + instance_identifier = 17dbd5c3-c8a1-4bc2-8eea-f6ae28eb8dbd-1783261912812 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = true + anchor_point = element + anchor_point_element = 5865a08a-374c-48bb-bae5-be166975dae0-1783361653623 + x = -286 + y = -19 + width = 291 + height = 79 + stay_on_screen = false + element_loading_requirement_container_identifier = 0cc24371-9f2c-444f-b66d-0aa369b044b7-1783261912812 + [loading_requirement_container_meta:0cc24371-9f2c-444f-b66d-0aa369b044b7-1783261912812] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/imr-magic.gif + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = 8140513f-06fe-4a33-933c-e1d58f3e353b-1783262118049 + [executable_action_instance:d8e548ed-0867-4af9-a4ba-5207bc1d4802-1783262633048][action_type:mimicbutton] = title_screen:forge_titlescreen_mods_button + [executable_block:8140513f-06fe-4a33-933c-e1d58f3e353b-1783262118049][type:generic] = [executables:d8e548ed-0867-4af9-a4ba-5207bc1d4802-1783262633048;] + backgroundnormal = [source:local]/config/fancymenu/assets/imr6-icon.png + backgroundhovered = [source:local]/config/fancymenu/assets/imr6-icon-light.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = + navigatable = true + widget_active_state_requirement_container_identifier = 57963e92-4fd1-4a4b-9795-f66777539510-1783262118049 + [loading_requirement_container_meta:57963e92-4fd1-4a4b-9795-f66777539510-1783262118049] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = custom_button + instance_identifier = 07744fa4-38b9-497e-a1dc-515ebdc13d50-1783262118049 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = bottom-centered + x = -28 + y = -40 + width = 54 + height = 28 + stay_on_screen = true + element_loading_requirement_container_identifier = a788c512-5503-4665-a028-3ae9540415da-1783262118049 + [loading_requirement_container_meta:a788c512-5503-4665-a028-3ae9540415da-1783262118049] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 5865a08a-374c-48bb-bae5-be166975dae0-1783361653623 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1280 + auto_sizing_base_screen_height = 720 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = top-right + x = -60 + y = 44 + width = 32 + height = 41 + stay_on_screen = true + element_loading_requirement_container_identifier = 176f21e3-b472-4a3e-8c90-172dd8c90dee-1783361653623 + [loading_requirement_container_meta:176f21e3-b472-4a3e-8c90-172dd8c90dee-1783361653623] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/6.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +vanilla_button { + button_element_executable_block_identifier = 31f8789c-9bac-4eb6-90d4-00529a38845e-1783261851788 + [executable_block:31f8789c-9bac-4eb6-90d4-00529a38845e-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7b679aa9-e058-4eac-9c33-380554387a86-1783261851788 + [loading_requirement_container_meta:7b679aa9-e058-4eac-9c33-380554387a86-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 322 + y = 186 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 1f8db316-8afa-4b59-bafe-4d2ade452732-1783261851788 + [loading_requirement_container_meta:1f8db316-8afa-4b59-bafe-4d2ade452732-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 77b158d9-0ddd-40f1-9305-82397a6a5a94-1783261851788 + [executable_block:77b158d9-0ddd-40f1-9305-82397a6a5a94-1783261851788][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/imr-button-small.png + backgroundhovered = [source:local]/config/fancymenu/assets/imr-button-small_on.png + background_texture_inactive = [source:local]/config/fancymenu/assets/imr-button-small_off.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Exit + navigatable = true + widget_active_state_requirement_container_identifier = 379a06fb-7183-46a0-b0ee-359029fde74f-1783261851788 + [loading_requirement_container_meta:379a06fb-7183-46a0-b0ee-359029fde74f-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = element + anchor_point_element = mc_titlescreen_options_button + x = 0 + y = 45 + width = 98 + height = 38 + stay_on_screen = true + element_loading_requirement_container_identifier = 4cc23fc1-879c-474c-9e8d-569562913a6c-1783261851788 + [loading_requirement_container_meta:4cc23fc1-879c-474c-9e8d-569562913a6c-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = bb68aaaa-af30-4562-815a-6053c55a3dbd-1783261851788 + [executable_block:bb68aaaa-af30-4562-815a-6053c55a3dbd-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 11073d8a-98cc-4a04-9998-43bb9897b394-1783261851788 + [loading_requirement_container_meta:11073d8a-98cc-4a04-9998-43bb9897b394-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 192 + y = 30 + width = 256 + height = 51 + stay_on_screen = true + element_loading_requirement_container_identifier = 292e5bf9-8f19-4e8c-8c13-b9e5d0c8174b-1783261851788 + [loading_requirement_container_meta:292e5bf9-8f19-4e8c-8c13-b9e5d0c8174b-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 8db18869-4f5d-4ff8-a52e-d602e5f0906a-1783261851788 + [executable_block:8db18869-4f5d-4ff8-a52e-d602e5f0906a-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 60169fad-1b71-4cbc-b8e1-b75974017c80-1783261851788 + [loading_requirement_container_meta:60169fad-1b71-4cbc-b8e1-b75974017c80-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_language_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = element + anchor_point_element = mc_titlescreen_options_button + x = -30 + y = 8 + width = 20 + height = 19 + stay_on_screen = true + element_loading_requirement_container_identifier = f2fd74f9-8dbc-4e04-98c7-9f88f7b77477-1783261851788 + [loading_requirement_container_meta:f2fd74f9-8dbc-4e04-98c7-9f88f7b77477-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = ec46b129-8e9f-4fbe-82cd-8158691cd9c2-1783261851788 + [executable_block:ec46b129-8e9f-4fbe-82cd-8158691cd9c2-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b57f618d-ec26-463f-a26d-d0e713f4d7f8-1783261851788 + [loading_requirement_container_meta:b57f618d-ec26-463f-a26d-d0e713f4d7f8-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = forge_titlescreen_mods_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 220 + y = 186 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 7c02334c-f63b-405a-9889-4f288645773c-1783261851788 + [loading_requirement_container_meta:7c02334c-f63b-405a-9889-4f288645773c-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = c4b21897-0d50-4b67-b7e7-5731eb7f1f43-1783261851788 + [executable_block:c4b21897-0d50-4b67-b7e7-5731eb7f1f43-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6fa56c45-4dd6-45e9-9c9d-752a21901456-1783261851788 + [loading_requirement_container_meta:6fa56c45-4dd6-45e9-9c9d-752a21901456-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 310 + width = 143 + height = 49 + stay_on_screen = true + element_loading_requirement_container_identifier = 8fdbe270-3ec1-438c-a96e-1c6045032149-1783261851788 + [loading_requirement_container_meta:8fdbe270-3ec1-438c-a96e-1c6045032149-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 81fa837d-9703-43ec-be21-a3385520739d-1783261851788 + [executable_block:81fa837d-9703-43ec-be21-a3385520739d-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f7636b55-442c-4940-994b-031656cf0cc2-1783261851788 + [loading_requirement_container_meta:f7636b55-442c-4940-994b-031656cf0cc2-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 393 + y = 49 + width = 100 + height = 40 + stay_on_screen = true + element_loading_requirement_container_identifier = 1042f365-298d-40ab-a887-639f86c0e2c8-1783261851788 + [loading_requirement_container_meta:1042f365-298d-40ab-a887-639f86c0e2c8-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 353829f3-4779-41d7-9dbd-7570c0ccf0b2-1783261851788 + [executable_block:353829f3-4779-41d7-9dbd-7570c0ccf0b2-1783261851788][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/imr-button-small.png + backgroundhovered = [source:local]/config/fancymenu/assets/imr-button-small_on.png + background_texture_inactive = [source:local]/config/fancymenu/assets/imr-button-small_off.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Settings + navigatable = true + widget_active_state_requirement_container_identifier = 52e79ca1-fc7a-41b8-bec4-64cc9b503604-1783261851788 + [loading_requirement_container_meta:52e79ca1-fc7a-41b8-bec4-64cc9b503604-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = mid-centered + x = -48 + y = -15 + width = 98 + height = 38 + stay_on_screen = true + element_loading_requirement_container_identifier = 4feec840-28eb-4adc-9b5a-62f0c4495650-1783261851788 + [loading_requirement_container_meta:4feec840-28eb-4adc-9b5a-62f0c4495650-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 011ac37b-79fc-477c-b8e3-442782447523-1783261851788 + [executable_block:011ac37b-79fc-477c-b8e3-442782447523-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d9a309d0-6f76-4877-ba48-df219a3ee9ff-1783261851788 + [loading_requirement_container_meta:d9a309d0-6f76-4877-ba48-df219a3ee9ff-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = minecraft_realms_notification_icons_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = vanilla + x = 338 + y = 188 + width = 62 + height = 18 + stay_on_screen = true + element_loading_requirement_container_identifier = 4074d098-5d05-4f53-a6a4-34cabed514f1-1783261851788 + [loading_requirement_container_meta:4074d098-5d05-4f53-a6a4-34cabed514f1-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = d62e58b7-3e56-4ad9-8b65-bec3cf0cf6ef-1783261851788 + [executable_block:d62e58b7-3e56-4ad9-8b65-bec3cf0cf6ef-1783261851788][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/imr-button.png + backgroundhovered = [source:local]/config/fancymenu/assets/imr-button_on.png + background_texture_inactive = [source:local]/config/fancymenu/assets/imr-button_off.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 716c2458-74ca-4ddf-a976-7b51daa0e3d0-1783261851788 + [loading_requirement_container_meta:716c2458-74ca-4ddf-a976-7b51daa0e3d0-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = element + anchor_point_element = mc_titlescreen_language_button + x = -157 + y = -28 + width = 142 + height = 72 + stay_on_screen = true + element_loading_requirement_container_identifier = 55fc7d68-2ead-48f9-92fb-dd76912bb8fb-1783261851788 + [loading_requirement_container_meta:55fc7d68-2ead-48f9-92fb-dd76912bb8fb-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #FFFFFFFF + label_scale = 1.5 + label_shadow = true + nine_slice_border_x = 1024 + nine_slice_border_y = 1 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 582e395d-7a33-4680-8897-f6a355f59735-1783261851788 + [executable_block:582e395d-7a33-4680-8897-f6a355f59735-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = efb0fa3f-0526-4b24-b1b6-4dd2fac0e599-1783261851788 + [loading_requirement_container_meta:efb0fa3f-0526-4b24-b1b6-4dd2fac0e599-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = title_screen_copyright_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1188 + auto_sizing_base_screen_height = 698 + auto_sizing_base_gui_scale = 0.0 + sticky_anchor = false + anchor_point = bottom-left + x = -209 + y = 267 + width = 196 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = cf9a1bb9-8b0d-435d-a2f1-b593bb80e75f-1783261851788 + [loading_requirement_container_meta:cf9a1bb9-8b0d-435d-a2f1-b593bb80e75f-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 0.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 1bb8f550-3f0e-4e93-94b1-76735ae0b8bd-1783261851788 + [executable_block:1bb8f550-3f0e-4e93-94b1-76735ae0b8bd-1783261851788][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a833f2ae-df4d-4005-aee5-4010d2ad4ec7-1783261851788 + [loading_requirement_container_meta:a833f2ae-df4d-4005-aee5-4010d2ad4ec7-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_accessibility_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = element + anchor_point_element = mc_titlescreen_options_button + x = 105 + y = 8 + width = 20 + height = 19 + stay_on_screen = true + element_loading_requirement_container_identifier = 9434d6bb-e8ce-4e72-8c54-2d1acb5298b5-1783261851788 + [loading_requirement_container_meta:9434d6bb-e8ce-4e72-8c54-2d1acb5298b5-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = d6d6fd34-a074-4176-9d99-4598a01bc5f8-1783261851788 + [executable_block:d6d6fd34-a074-4176-9d99-4598a01bc5f8-1783261851788][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/imr-button.png + backgroundhovered = [source:local]/config/fancymenu/assets/imr-button_on.png + background_texture_inactive = [source:local]/config/fancymenu/assets/imr-button_off.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 11825992-d231-4c5b-b6aa-5eb90014e543-1783261851788 + [loading_requirement_container_meta:11825992-d231-4c5b-b6aa-5eb90014e543-1783261851788] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 3440 + auto_sizing_base_screen_height = 1358 + auto_sizing_base_gui_scale = 3.772222222222222 + sticky_anchor = false + anchor_point = element + anchor_point_element = mc_titlescreen_accessibility_button + x = 35 + y = -28 + width = 142 + height = 72 + stay_on_screen = true + element_loading_requirement_container_identifier = 5f4a893b-9e9b-431f-881b-b7f9ee464ed4-1783261851788 + [loading_requirement_container_meta:5f4a893b-9e9b-431f-881b-b7f9ee464ed4-1783261851788] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.5 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget b/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget new file mode 100644 index 0000000..f7d0de1 --- /dev/null +++ b/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget @@ -0,0 +1,12 @@ +type = layout_editor_widget_settings + +settings { + offset_x = -1171.0 + offset_y = 10.014903 + inner_width = 200.0 + inner_height = 425.6 + snapping_side = top-right + expanded = true + visible = true +} + diff --git a/config/fancymenu/legacy_checklist.txt b/config/fancymenu/legacy_checklist.txt new file mode 100644 index 0000000..fd6fe0e --- /dev/null +++ b/config/fancymenu/legacy_checklist.txt @@ -0,0 +1,3 @@ +##[legacy] + +B:custom_guis_ported = 'true'; \ No newline at end of file diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt new file mode 100644 index 0000000..62f326b --- /dev/null +++ b/config/fancymenu/options.txt @@ -0,0 +1,155 @@ +##[general] + +I:default_gui_scale = '2'; +B:force_fullscreen = 'false'; +B:play_vanilla_menu_music = 'true'; + + +##[customization] + +B:modpack_mode = 'false'; +B:show_customization_overlay = 'false'; +B:advanced_customization_mode = 'false'; + + +##[loading] + +B:game_intro_fade_out = 'false'; +S:game_intro_sound_channel = 'master'; +S:preload_resources = '[slideshow]imr_nostalgia-left%!source_end!%[slideshow]imr_nostalgia-top-left%!source_end!%[slideshow]imr_nostalgia-top-right%!source_end!%[slideshow]imr_nostalgia-middle%!source_end!%[slideshow]imr_nostalgia-right%!source_end!%[slideshow]imr_nostalgia-bottom-right%!source_end!%'; +B:allow_game_intro_skip = 'false'; +S:game_intro_animation_name = ''; +F:game_intro_volume = '1.0'; +S:custom_game_intro_skip_text = ''; + + +##[window] + +B:show_custom_window_icon = 'false'; +S:custom_window_icon_macos = ''; +S:custom_window_icon_32 = ''; +S:custom_window_title = ''; +S:custom_window_icon_16 = ''; + + +##[global_customizations] + +B:global_slider_background_nine_slice = 'false'; +S:global_slider_handle_hover = ''; +S:global_button_background_normal = ''; +B:global_button_label_shadow = 'true'; +S:global_button_background_inactive = ''; +B:global_button_background_nine_slice = 'false'; +S:global_button_label_hover_color = ''; +F:global_slider_label_scale = '1.0'; +S:global_button_label_base_color = ''; +S:global_button_click_sound = ''; +S:global_slider_label_base_color = ''; +B:global_button_label_underline_on_hover = 'false'; +I:global_button_background_nine_slice_border_right = '5'; +I:global_slider_background_nine_slice_border_top = '5'; +I:global_slider_handle_nine_slice_border_top = '5'; +I:global_slider_handle_nine_slice_border_bottom = '5'; +F:global_button_label_scale = '1.0'; +S:global_slider_label_scale_raw = ''; +S:global_slider_handle_inactive = ''; +B:global_slider_label_shadow = 'true'; +S:global_button_label_scale_raw = ''; +I:global_slider_handle_nine_slice_border_right = '5'; +S:global_slider_label_hover_color = ''; +I:global_slider_background_nine_slice_border_bottom = '5'; +S:global_menu_music_tracks = ''; +I:global_slider_background_nine_slice_border_left = '5'; +S:global_button_background_hover = ''; +I:global_button_background_nine_slice_border_top = '5'; +S:global_slider_background = ''; +I:global_button_background_nine_slice_border_bottom = '5'; +B:global_slider_label_underline_on_hover = 'false'; +B:global_slider_handle_nine_slice = 'false'; +I:global_button_background_nine_slice_border_left = '5'; +B:global_button_background_transparent = 'false'; +B:seamless_world_loading = 'false'; +B:global_slider_background_transparent = 'false'; +S:global_slider_handle_normal = ''; +I:global_slider_background_nine_slice_border_right = '5'; +S:global_background_panorama = ''; +I:global_slider_handle_nine_slice_border_left = '5'; +S:global_menu_background_texture = ''; + + +##[multiplayer_screen] + +B:show_multiplayer_screen_server_icons = 'true'; + + +##[singleplayer_screen] + +B:show_singleplayer_screen_world_icons = 'true'; + + +##[layout_editor] + +B:show_layout_editor_grid = 'true'; +B:enable_element_rotation_controls = 'true'; +D:anchor_overlay_hover_charging_time_seconds = '2.0'; +B:anchor_overlay_change_anchor_on_element_hover = 'true'; +B:anchor_overlay_show_all_connection_lines = 'false'; +I:layout_editor_grid_size = '10'; +S:anchor_overlay_color_border_override = ''; +B:layout_editor_grid_snapping = 'true'; +B:anchor_overlay_change_anchor_on_area_hover = 'true'; +S:anchor_overlay_color_base_override = ''; +F:anchor_overlay_opacity_normal = '0.5'; +F:anchor_overlay_opacity_busy = '0.7'; +S:anchor_overlay_visibility_mode = 'dragging'; +F:layout_editor_grid_snapping_strength = '1.0'; +B:invert_anchor_overlay_color = 'false'; +B:enable_element_tilting_controls = 'true'; + + +##[ui] + +B:enable_ui_animations = 'true'; +S:ui_scale_v2 = 'micro'; +I:context_menu_hover_open_speed = '1'; +S:ui_theme = 'dark'; +B:pip_window_docking = 'true'; +B:enable_ui_blur = 'true'; +F:ui_blur_intensity = '3.0'; +B:use_minecraft_font = 'false'; +B:play_ui_click_sounds = 'true'; +B:smooth_font_multiline_rendering = 'false'; + + +##[debug_overlay] + +B:show_debug_overlay = 'false'; +B:debug_overlay_show_basic_screen_category = 'true'; +B:debug_overlay_show_resources_category = 'true'; +B:debug_overlay_show_system_category = 'true'; +B:debug_overlay_show_advanced_screen_category = 'true'; + + +##[tutorial] + +B:show_welcome_screen = 'false'; + + +##[keyframe_editor] + +B:arrow_keys_move_preview = 'true'; + + +##[advanced] + +L:placeholder_caching_duration_ms = '30'; +L:requirement_caching_duration_ms = '0'; + + +##[dev] + +B:mcp_server_enabled = 'false'; +B:dev_pip_window_debug = 'false'; +B:dev_force_mcef_missing = 'false'; +B:dev_force_watermedia_missing = 'false'; +I:mcp_server_port = '48561'; \ No newline at end of file diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_1.png new file mode 100644 index 0000000..65cdeec Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_2.png new file mode 100644 index 0000000..ae5d2f7 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_3.png new file mode 100644 index 0000000..1f33716 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_4.png new file mode 100644 index 0000000..49e1303 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_5.png new file mode 100644 index 0000000..7289931 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_6.png new file mode 100644 index 0000000..acf5c41 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_7.png new file mode 100644 index 0000000..0eaac4c Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_8.png new file mode 100644 index 0000000..db9d65e Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_9.png new file mode 100644 index 0000000..174094f Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-bottom-right/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/properties.txt new file mode 100644 index 0000000..2388c8d --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-bottom-right/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-bottom-right + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 8.0 + fadespeed = 4.0 + randomize = true +} diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_1.png new file mode 100644 index 0000000..c04851c Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_2.png new file mode 100644 index 0000000..5649fab Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_3.png new file mode 100644 index 0000000..9bf0a35 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_4.png new file mode 100644 index 0000000..9fd8a07 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_5.png new file mode 100644 index 0000000..3464fb3 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_6.png new file mode 100644 index 0000000..42ffb82 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_7.png new file mode 100644 index 0000000..949aa35 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_8.png new file mode 100644 index 0000000..b600954 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_9.png new file mode 100644 index 0000000..5613378 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-left/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-left/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-left/properties.txt new file mode 100644 index 0000000..27e6c90 --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-left/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-left + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 4.0 + fadespeed = 2.5 + randomize = true +} diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_1.png new file mode 100644 index 0000000..0867a68 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_2.png new file mode 100644 index 0000000..6c9d958 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_3.png new file mode 100644 index 0000000..23c24ba Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_4.png new file mode 100644 index 0000000..bb40826 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_5.png new file mode 100644 index 0000000..e95b593 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_6.png new file mode 100644 index 0000000..c7815ec Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_7.png new file mode 100644 index 0000000..2a9f8aa Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_8.png new file mode 100644 index 0000000..9559740 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_9.png new file mode 100644 index 0000000..99c88dc Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-middle/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-middle/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-middle/properties.txt new file mode 100644 index 0000000..e7709ff --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-middle/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-middle + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 10.0 + fadespeed = 4.0 + randomize = true +} diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_1.png new file mode 100644 index 0000000..9b0122d Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_2.png new file mode 100644 index 0000000..5a9e6de Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_3.png new file mode 100644 index 0000000..9436236 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_4.png new file mode 100644 index 0000000..2502597 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_5.png new file mode 100644 index 0000000..44a1f4f Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_6.png new file mode 100644 index 0000000..3280f7c Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_7.png new file mode 100644 index 0000000..f2d67e8 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_8.png new file mode 100644 index 0000000..92829e6 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_9.png new file mode 100644 index 0000000..dbc3972 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-right/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-right/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-right/properties.txt new file mode 100644 index 0000000..d90e1d3 --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-right/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-right + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 5.0 + fadespeed = 4.5 + randomize = true +} diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_1.png new file mode 100644 index 0000000..1154dc7 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_2.png new file mode 100644 index 0000000..e653d5d Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_3.png new file mode 100644 index 0000000..df9635a Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_4.png new file mode 100644 index 0000000..9cbfe65 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_5.png new file mode 100644 index 0000000..7492b46 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_6.png new file mode 100644 index 0000000..d455fb7 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_7.png new file mode 100644 index 0000000..574c5c4 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_8.png new file mode 100644 index 0000000..d8c8cac Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_9.png new file mode 100644 index 0000000..19308d8 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-left/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-top-left/properties.txt new file mode 100644 index 0000000..4b12406 --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-top-left/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-top-left + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 6.5 + fadespeed = 4.0 + randomize = true +} diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_1.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_1.png new file mode 100644 index 0000000..2500b3e Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_1.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_2.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_2.png new file mode 100644 index 0000000..19e079b Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_2.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_3.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_3.png new file mode 100644 index 0000000..b508ea2 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_3.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_4.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_4.png new file mode 100644 index 0000000..6ae3b8f Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_4.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_5.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_5.png new file mode 100644 index 0000000..b7cf210 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_5.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_6.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_6.png new file mode 100644 index 0000000..1d15906 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_6.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_7.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_7.png new file mode 100644 index 0000000..e39b024 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_7.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_8.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_8.png new file mode 100644 index 0000000..0bad673 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_8.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_9.png b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_9.png new file mode 100644 index 0000000..e8bf272 Binary files /dev/null and b/config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_9.png differ diff --git a/config/fancymenu/slideshows/imr-nostalgia-top-right/properties.txt b/config/fancymenu/slideshows/imr-nostalgia-top-right/properties.txt new file mode 100644 index 0000000..73f9963 --- /dev/null +++ b/config/fancymenu/slideshows/imr-nostalgia-top-right/properties.txt @@ -0,0 +1,12 @@ +type = slideshow + +slideshow-meta { + name = imr_nostalgia-top-right + width = 1920 + height = 1080 + x = 0 + y = 0 + duration = 7.5 + fadespeed = 3.0 + randomize = true +} diff --git a/config/fancymenu/ui_themes/cherry_blossom.json b/config/fancymenu/ui_themes/cherry_blossom.json new file mode 100644 index 0000000..cb27c4b --- /dev/null +++ b/config/fancymenu/ui_themes/cherry_blossom.json @@ -0,0 +1,374 @@ +{ + "identifier": "cherry_blossom", + "display_name": "fancymenu.ui.themes.cherry_blossom", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#39323D0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#39323DFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FAF4F8B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#DDCFDAA0" + }, + "ui_blur_interface_background_tint": { + "hex": "#F9F3F7D7" + }, + "ui_blur_interface_border_color": { + "hex": "#DDCFDAA0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#F0E8EED7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFBFD9B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F5EBF291" + }, + "ui_blur_interface_area_border_color": { + "hex": "#D7CAD596" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFD8EB8C" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFBFD9B" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFDDEC9B" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#FFE8F4AF" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFD6E8AF" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#D3C7D296" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#39323DFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#817A86FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFBFD96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#D3C7D296" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#E0749CD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#39323DFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#817A86FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#9D96A2FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#39323DFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFAFDDC" + }, + "ui_icon_button_hover_color": { + "hex": "#3E37430D" + }, + "ui_icon_texture_color": { + "hex": "#3E3743FF" + }, + "ui_overlay_background_color": { + "hex": "#F5EFF3FF" + }, + "ui_overlay_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_background_color": { + "hex": "#FBF6F9FF" + }, + "ui_interface_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_title_bar_color": { + "hex": "#EEE6ECFF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFCFEFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F4ECF2FF" + }, + "ui_interface_area_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFD8EBFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFBFDFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFDDECFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#FFE8F4FF" + }, + "ui_interface_widget_border_color": { + "hex": "#D0C5D0FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#342E3AFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#847D89FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFBFDFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#D2C7D2FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#E0749CFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#342E3AFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#948E9AFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#9E97A3FF" + }, + "ui_interface_generic_text_color": { + "hex": "#342E3AFF" + }, + "ui_tooltip_background_color": { + "hex": "#F7F0F5FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#229E6EFF" + }, + "error_color": { + "hex": "#DB3F60FF" + }, + "warning_color": { + "hex": "#E07B34FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#DD688FFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#D878A65F" + }, + "layout_editor_grid_color_center": { + "hex": "#BC598873" + }, + "layout_editor_element_border_color_normal": { + "hex": "#DB5A88FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#EC7CABFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#B060CDFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#EC9958FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#8BC46AFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DB3F60C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#4EBE9CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#2B7866FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E04B6CFF" + }, + "pip_docking_overlay_color": { + "hex": "#DD688F50" + }, + "pip_docking_overlay_border_color": { + "hex": "#DD688FC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#BAAFBA8C" + }, + "scroll_grabber_color_hover": { + "hex": "#A297A4B4" + }, + "actions_entry_background_color_action": { + "hex": "#EEE9EEFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#E2DBE3FF" + }, + "actions_entry_background_color_if": { + "hex": "#E5F3FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2E7FCFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F3E9FCFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E8DAF7FF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF1E3FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE4CCFF" + }, + "actions_entry_background_color_while": { + "hex": "#E4F6F1FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2EEE7FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6DDFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBC3FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EDFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D4DFFCFF" + }, + "actions_entry_background_color_folder": { + "hex": "#F8E6EEFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F1D4DFFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F1EDF0FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E5DFE5FF" + }, + "actions_chain_indicator_color": { + "hex": "#AD7D9E96" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#DB5A88CD" + }, + "actions_chain_indicator_selected_color": { + "hex": "#EBA462DC" + }, + "actions_minimap_background_color": { + "hex": "#FAF4F8E1" + }, + "actions_minimap_border_color": { + "hex": "#CEC3CEDC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#78648278" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#C06E94DC" + }, + "bullet_list_dot_color_1": { + "hex": "#DB5A88FF" + }, + "bullet_list_dot_color_2": { + "hex": "#E3859CFF" + }, + "bullet_list_dot_color_3": { + "hex": "#ECA35CFF" + }, + "input_field_suggestions_background_color": { + "hex": "#FAF4F8FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#342E3AFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#C64C7AFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9B939FFF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#79707EFF" + }, + "text_editor_text_color": { + "hex": "#342E3AFF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#DB3F60FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E07B34FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#6D9F40FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#349888FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#3976CFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#9556D2FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#CA519AFF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#D24A5CFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E97842FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#DFA840FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#3EAA7CFF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#2E7683FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#ECA35CFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/cozy_campfire.json b/config/fancymenu/ui_themes/cozy_campfire.json new file mode 100644 index 0000000..4c58861 --- /dev/null +++ b/config/fancymenu/ui_themes/cozy_campfire.json @@ -0,0 +1,374 @@ +{ + "identifier": "cozy_campfire", + "display_name": "fancymenu.ui.themes.cozy_campfire", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#F2E5D00D" + }, + "ui_blur_icon_texture_color": { + "hex": "#F2E5D0FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#181310B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#5C4E42A0" + }, + "ui_blur_interface_background_tint": { + "hex": "#1A1410D7" + }, + "ui_blur_interface_border_color": { + "hex": "#5C4E42A0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#261E16D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#221B149B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#18141096" + }, + "ui_blur_interface_area_border_color": { + "hex": "#60524696" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#4E362896" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#241C1696" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#B0622C96" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#32261CAA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#CE7834AA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#60524696" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#9C9286FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#221B1496" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#60524696" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#DC7E3AC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#9C9286FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#8A8074FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#F2E5D0FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#1C1610DC" + }, + "ui_icon_button_hover_color": { + "hex": "#F2E5D00D" + }, + "ui_icon_texture_color": { + "hex": "#F2E5D0FF" + }, + "ui_overlay_background_color": { + "hex": "#1A1410FF" + }, + "ui_overlay_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_background_color": { + "hex": "#18130FFF" + }, + "ui_interface_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_title_bar_color": { + "hex": "#2A2018FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#221B14FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#16120EFF" + }, + "ui_interface_area_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#463024FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#241C16FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#B0622CFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#34281EFF" + }, + "ui_interface_widget_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#9C9286FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#221B14FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#564A40FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#DC7E3AFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#9C9286FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#8A8074FF" + }, + "ui_interface_generic_text_color": { + "hex": "#F2E5D0FF" + }, + "ui_tooltip_background_color": { + "hex": "#1C1610FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#6EC47AFF" + }, + "error_color": { + "hex": "#DC5C4EFF" + }, + "warning_color": { + "hex": "#E88E40FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#E88E40FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#AA6C4C6E" + }, + "layout_editor_grid_color_center": { + "hex": "#E88E4082" + }, + "layout_editor_element_border_color_normal": { + "hex": "#E88E40FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F6AA56FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#A266B6FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#ECA450FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#78BE78FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DC5C4EC8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#F2E5D0FF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#5CBA9CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#347460FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E88E40FF" + }, + "pip_docking_overlay_color": { + "hex": "#E88E4050" + }, + "pip_docking_overlay_border_color": { + "hex": "#E88E40C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#645A5096" + }, + "scroll_grabber_color_hover": { + "hex": "#8C7C6CC8" + }, + "actions_entry_background_color_action": { + "hex": "#282018FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#362A1EFF" + }, + "actions_entry_background_color_if": { + "hex": "#222C28FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#2C3A34FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#2E2428FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#3C2E34FF" + }, + "actions_entry_background_color_else": { + "hex": "#38281CFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#463424FF" + }, + "actions_entry_background_color_while": { + "hex": "#1C302CFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#243E38FF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C341CFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#4C4222FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#242C38FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#2E3A4CFF" + }, + "actions_entry_background_color_folder": { + "hex": "#38262AFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#483238FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#241E20FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#30282CFF" + }, + "actions_chain_indicator_color": { + "hex": "#9A7862B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E88E40D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#DC7E3ADC" + }, + "actions_minimap_background_color": { + "hex": "#16120ED2" + }, + "actions_minimap_border_color": { + "hex": "#62564CDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#B89C8678" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E88E40DC" + }, + "bullet_list_dot_color_1": { + "hex": "#E88E40FF" + }, + "bullet_list_dot_color_2": { + "hex": "#C0805AFF" + }, + "bullet_list_dot_color_3": { + "hex": "#84BA84FF" + }, + "input_field_suggestions_background_color": { + "hex": "#221B14FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#E88E40FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#827A72FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#AAA096FF" + }, + "text_editor_text_color": { + "hex": "#E6DAC6FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E87054FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E88E40FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#84C66EFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#60BEAAFF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#76A6ECFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#B07EECFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#D67EB6FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DC5C4EFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E88E40FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#F2BC62FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#76D294FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#5EA6B0FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E88E40FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/dark.json b/config/fancymenu/ui_themes/dark.json new file mode 100644 index 0000000..b58c058 --- /dev/null +++ b/config/fancymenu/ui_themes/dark.json @@ -0,0 +1,374 @@ +{ + "identifier": "dark", + "display_name": "fancymenu.ui.themes.dark", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#262626AE" + }, + "ui_blur_overlay_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_background_tint": { + "hex": "#262626D8" + }, + "ui_blur_interface_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#4F4F4FAE" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#2B2B2B64" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#05050549" + }, + "ui_blur_interface_area_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#7D7D8335" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#47474766" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#7E7E7E66" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#539CD44D" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#86C6F84D" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#717577FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#2B2B2B66" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#5D616466" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#5D616466" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#717577FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#808080FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#131313A9" + }, + "ui_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_background_color": { + "hex": "#282828FF" + }, + "ui_overlay_border_color": { + "hex": "#3E4042FF" + }, + "ui_interface_background_color": { + "hex": "#212121FF" + }, + "ui_interface_border_color": { + "hex": "#3E4042FF" + }, + "ui_interface_title_bar_color": { + "hex": "#575757FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#2B2B2BFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#262626FF" + }, + "ui_interface_area_border_color": { + "hex": "#3B3B3BFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#323232FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#282828FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#34A2F5FF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#147FD0FF" + }, + "ui_interface_widget_border_color": { + "hex": "#3B3B3BFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#717577FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#2B2B2BFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#3B3B3BFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#3B3B3BFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#717577FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#808080FF" + }, + "ui_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_tooltip_background_color": { + "hex": "#2B2B2BFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#31CE05FF" + }, + "error_color": { + "hex": "#ED4545FF" + }, + "warning_color": { + "hex": "#E59B12FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#0394FCFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#404040FF" + }, + "layout_editor_grid_color_center": { + "hex": "#5A5A5AFF" + }, + "layout_editor_element_border_color_normal": { + "hex": "#0394FCFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#03DBFCFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9E2BFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFB52BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#91FF2BFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#E83609C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#25B479FF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#114F34FF" + }, + "menu_bar_close_icon_color": { + "hex": "#DA3C1EFF" + }, + "pip_docking_overlay_color": { + "hex": "#4096FF50" + }, + "pip_docking_overlay_border_color": { + "hex": "#4096FFC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#595B5D64" + }, + "scroll_grabber_color_hover": { + "hex": "#66686864" + }, + "actions_entry_background_color_action": { + "hex": "#3A3F44FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#44494EFF" + }, + "actions_entry_background_color_if": { + "hex": "#263F55FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#2D516EFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#392D4FFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#463A5FFF" + }, + "actions_entry_background_color_else": { + "hex": "#4E3721FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#5F462DFF" + }, + "actions_entry_background_color_while": { + "hex": "#234A42FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#2D5C52FF" + }, + "actions_entry_background_color_delay": { + "hex": "#524C24FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#635C30FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#344660FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#3F5470FF" + }, + "actions_entry_background_color_folder": { + "hex": "#50303CFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#613E4DFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#3A3B3EFF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#47484CFF" + }, + "actions_chain_indicator_color": { + "hex": "#587096B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#64B5F6D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#FFC147DC" + }, + "actions_minimap_background_color": { + "hex": "#181B20C8" + }, + "actions_minimap_border_color": { + "hex": "#5E636CDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF23" + }, + "actions_minimap_viewport_border_color": { + "hex": "#D2DEFF64" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#78AADCDC" + }, + "bullet_list_dot_color_1": { + "hex": "#3E86A0FF" + }, + "bullet_list_dot_color_2": { + "hex": "#AD6C79FF" + }, + "bullet_list_dot_color_3": { + "hex": "#AA823FFF" + }, + "input_field_suggestions_background_color": { + "hex": "#474747FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#CEDDEDFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#64A5ECFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#5B5C5EFF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#899396FF" + }, + "text_editor_text_color": { + "hex": "#9EAAB8FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#EB7F7FFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#EBC97FFF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#BEEB7FFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#7FEBE6FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#7F9EEBFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#967FEBFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#D47FEBFF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#F53636FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#F59236FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#F5E536FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#69F536FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#3689F5FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#FCDF03FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/dark_high_contrast.json b/config/fancymenu/ui_themes/dark_high_contrast.json new file mode 100644 index 0000000..23b9ca3 --- /dev/null +++ b/config/fancymenu/ui_themes/dark_high_contrast.json @@ -0,0 +1,374 @@ +{ + "identifier": "dark_high_contrast", + "display_name": "fancymenu.ui.themes.dark_high_contrast", + "allow_blur": false, + "allow_animations": false, + "interface_corner_rounding_radius": 0.0, + "widget_corner_rounding_radius": 0.0, + "ui_blur_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#000000DC" + }, + "ui_blur_overlay_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_background_tint": { + "hex": "#000000DC" + }, + "ui_blur_interface_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#0C0C0CDC" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#080808DC" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#000000DC" + }, + "ui_blur_interface_area_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFAA0078" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#080808DC" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFAA00C8" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#1E1E1EDC" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFD200DC" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#BEBEBEFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#000000DC" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#FFAA00DC" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#BEBEBEFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#C8C8C8FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#000000E6" + }, + "ui_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_background_color": { + "hex": "#000000FF" + }, + "ui_overlay_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_background_color": { + "hex": "#000000FF" + }, + "ui_interface_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_title_bar_color": { + "hex": "#0C0C0CFF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#080808FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#000000FF" + }, + "ui_interface_area_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFAA00FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#080808FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFAA00FF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#1E1E1EFF" + }, + "ui_interface_widget_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#BEBEBEFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#000000FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#FFAA00FF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#BEBEBEFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#C8C8C8FF" + }, + "ui_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_tooltip_background_color": { + "hex": "#000000FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#00FF80FF" + }, + "error_color": { + "hex": "#FF4040FF" + }, + "warning_color": { + "hex": "#FFD000FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#FFAA00FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#FFFFFF8C" + }, + "layout_editor_grid_color_center": { + "hex": "#FFAA00B4" + }, + "layout_editor_element_border_color_normal": { + "hex": "#FFFFFFFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#FFAA00FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#00C8FFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFD000FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#00FF80FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#FF4040DC" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#000000B4" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#00FFB4FF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#00966EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#FF4040FF" + }, + "pip_docking_overlay_color": { + "hex": "#FFAA0078" + }, + "pip_docking_overlay_border_color": { + "hex": "#FFAA00DC" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#FFFFFF8C" + }, + "scroll_grabber_color_hover": { + "hex": "#FFAA00C8" + }, + "actions_entry_background_color_action": { + "hex": "#0F0F0FFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#1E1E1EFF" + }, + "actions_entry_background_color_if": { + "hex": "#001E3CFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#002D5AFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#23003CFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#37005AFF" + }, + "actions_entry_background_color_else": { + "hex": "#3C2300FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#5A3700FF" + }, + "actions_entry_background_color_while": { + "hex": "#002D28FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#00413AFF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C3200FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#554600FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#001E46FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#002D64FF" + }, + "actions_entry_background_color_folder": { + "hex": "#3C001EFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#55002DFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#141414FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#232323FF" + }, + "actions_chain_indicator_color": { + "hex": "#FFFFFFB4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#FFAA00DC" + }, + "actions_chain_indicator_selected_color": { + "hex": "#FFD000F0" + }, + "actions_minimap_background_color": { + "hex": "#000000DC" + }, + "actions_minimap_border_color": { + "hex": "#FFFFFFDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF28" + }, + "actions_minimap_viewport_border_color": { + "hex": "#FFAA008C" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#FFAA00DC" + }, + "bullet_list_dot_color_1": { + "hex": "#FFAA00FF" + }, + "bullet_list_dot_color_2": { + "hex": "#00C8FFFF" + }, + "bullet_list_dot_color_3": { + "hex": "#00FF80FF" + }, + "input_field_suggestions_background_color": { + "hex": "#000000FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#FFAA00FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#C8C8C8FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#FFFFFFFF" + }, + "text_editor_text_color": { + "hex": "#FFFFFFFF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#FF4040FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#FFD000FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#00FF80FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#00C8FFFF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#78B4FFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#C878FFFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#FF78C8FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#FF6464FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#FFAA00FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#FFE650FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#00FFA0FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#00DCC8FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#FFD000FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/light.json b/config/fancymenu/ui_themes/light.json new file mode 100644 index 0000000..66e5666 --- /dev/null +++ b/config/fancymenu/ui_themes/light.json @@ -0,0 +1,374 @@ +{ + "identifier": "light", + "display_name": "fancymenu.ui.themes.light", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#2C313A0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#2C313AFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#F8FAFDB4" + }, + "ui_blur_overlay_border_color": { + "hex": "#CED4DD96" + }, + "ui_blur_interface_background_tint": { + "hex": "#F8FAFDD2" + }, + "ui_blur_interface_border_color": { + "hex": "#B4B9BEA8" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#EBEFF5D2" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F2F6FB8C" + }, + "ui_blur_interface_area_border_color": { + "hex": "#CCD2DC8C" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#CEE0FF82" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#D8E9FF96" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#E8F2FFAA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#D2E4FFAA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#C6CED996" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#2C313AFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#787E88FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#C6CED996" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#6FA9FFC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#2C313AFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#787E88FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#9197A1FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#2C313AFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFFFFDC" + }, + "ui_icon_button_hover_color": { + "hex": "#363C450D" + }, + "ui_icon_texture_color": { + "hex": "#363C45FF" + }, + "ui_overlay_background_color": { + "hex": "#F2F4F7FF" + }, + "ui_overlay_border_color": { + "hex": "#D2D8E0FF" + }, + "ui_interface_background_color": { + "hex": "#F7F8FAFF" + }, + "ui_interface_border_color": { + "hex": "#D2D8E0FF" + }, + "ui_interface_title_bar_color": { + "hex": "#EBEEF2FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F1F4F8FF" + }, + "ui_interface_area_border_color": { + "hex": "#D6DBE3FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#DCE9FFFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#D8E9FFFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#E6F0FFFF" + }, + "ui_interface_widget_border_color": { + "hex": "#C8CED7FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#2A2E36FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#7A818AFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#C7CED9FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#6FA9FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#2A2E36FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#8C929CFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#969DA8FF" + }, + "ui_interface_generic_text_color": { + "hex": "#2A2E36FF" + }, + "ui_tooltip_background_color": { + "hex": "#F5F7FBFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#16A34AFF" + }, + "error_color": { + "hex": "#DC2626FF" + }, + "warning_color": { + "hex": "#D97706FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#3B82F6FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#8B5CF65A" + }, + "layout_editor_grid_color_center": { + "hex": "#2563EB64" + }, + "layout_editor_element_border_color_normal": { + "hex": "#3B82F6FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#22D3EEFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9333EAFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#F59E0BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#84CC16FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#EF4444C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#10B981FF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#0F766EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#EF4444FF" + }, + "pip_docking_overlay_color": { + "hex": "#3B82F650" + }, + "pip_docking_overlay_border_color": { + "hex": "#3B82F6C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#B0B6BE82" + }, + "scroll_grabber_color_hover": { + "hex": "#969CA5AA" + }, + "actions_entry_background_color_action": { + "hex": "#E8ECF3FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#DDE3ECFF" + }, + "actions_entry_background_color_if": { + "hex": "#E3F1FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2E7FFFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F0E7FFFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E3D6FFFF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF2DFFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE8C4FF" + }, + "actions_entry_background_color_while": { + "hex": "#E3F7F2FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2F0E7FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D9FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFECC0FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E7EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D6E1FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#F8E7EEFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F3D6E1FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#EFF1F4FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E2E6ECFF" + }, + "actions_chain_indicator_color": { + "hex": "#5C7EB28C" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#42A5F5C8" + }, + "actions_chain_indicator_selected_color": { + "hex": "#F59E0BDC" + }, + "actions_minimap_background_color": { + "hex": "#F5F8FCDC" + }, + "actions_minimap_border_color": { + "hex": "#C4CCD6DC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001E" + }, + "actions_minimap_viewport_border_color": { + "hex": "#5A78A078" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#5A8CC8DC" + }, + "bullet_list_dot_color_1": { + "hex": "#3B82F6FF" + }, + "bullet_list_dot_color_2": { + "hex": "#EC4899FF" + }, + "bullet_list_dot_color_3": { + "hex": "#F59E0BFF" + }, + "input_field_suggestions_background_color": { + "hex": "#F5F7FBFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#2A2E36FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#2563EBFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9197A0FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#69717DFF" + }, + "text_editor_text_color": { + "hex": "#2A2E36FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E11D48FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#D97706FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#65A30DFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#0D9488FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#2563EBFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#7C3AEDFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#DB2777FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#EF4444FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#F97316FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#EAB308FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#22C55EFF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#0E7490FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#F59E0BFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/light_high_contrast.json b/config/fancymenu/ui_themes/light_high_contrast.json new file mode 100644 index 0000000..f7f74c4 --- /dev/null +++ b/config/fancymenu/ui_themes/light_high_contrast.json @@ -0,0 +1,374 @@ +{ + "identifier": "light_high_contrast", + "display_name": "fancymenu.ui.themes.light_high_contrast", + "allow_blur": false, + "allow_animations": false, + "interface_corner_rounding_radius": 0.0, + "widget_corner_rounding_radius": 0.0, + "ui_blur_icon_button_hover_color": { + "hex": "#0000000D" + }, + "ui_blur_icon_texture_color": { + "hex": "#000000FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FFFFFFEB" + }, + "ui_blur_overlay_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_background_tint": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#F5F5F5EB" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F5F5F5EB" + }, + "ui_blur_interface_area_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#0078FF8C" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#0078FFD2" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#EBEBEBEB" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#00A0FFEB" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#000000FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#505050FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#000000EB" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#0078FFEB" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#000000FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#505050FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#5A5A5AFF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#000000FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFFFFF5" + }, + "ui_icon_button_hover_color": { + "hex": "#0000000D" + }, + "ui_icon_texture_color": { + "hex": "#000000FF" + }, + "ui_overlay_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_border_color": { + "hex": "#000000FF" + }, + "ui_interface_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_border_color": { + "hex": "#000000FF" + }, + "ui_interface_title_bar_color": { + "hex": "#F5F5F5FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F5F5F5FF" + }, + "ui_interface_area_border_color": { + "hex": "#000000FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#0078FFFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#0078FFFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#EBEBEBFF" + }, + "ui_interface_widget_border_color": { + "hex": "#000000FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#505050FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#0078FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#505050FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#5A5A5AFF" + }, + "ui_interface_generic_text_color": { + "hex": "#000000FF" + }, + "ui_tooltip_background_color": { + "hex": "#FFFFFFFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#009600FF" + }, + "error_color": { + "hex": "#C80000FF" + }, + "warning_color": { + "hex": "#B46E00FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#0078FFFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#0000008C" + }, + "layout_editor_grid_color_center": { + "hex": "#0078FFB4" + }, + "layout_editor_element_border_color_normal": { + "hex": "#000000FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#0078FFFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#8C00FFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#B46E00FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#009600FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#C80000DC" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#000000B4" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#00AA8CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#006E5AFF" + }, + "menu_bar_close_icon_color": { + "hex": "#C80000FF" + }, + "pip_docking_overlay_color": { + "hex": "#0078FF78" + }, + "pip_docking_overlay_border_color": { + "hex": "#0078FFDC" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#0000008C" + }, + "scroll_grabber_color_hover": { + "hex": "#0078FFC8" + }, + "actions_entry_background_color_action": { + "hex": "#FFFFFFFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#EBEBEBFF" + }, + "actions_entry_background_color_if": { + "hex": "#E6F5FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2EBFFFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F5E6FFFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#EBD2FFFF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF0DCFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE4C8FF" + }, + "actions_entry_background_color_while": { + "hex": "#E1F5F0FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D0ECE6FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D6FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBBEFF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D2E0FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#FFE6F0FF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F8D2E2FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F0F0F0FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E1E1E1FF" + }, + "actions_chain_indicator_color": { + "hex": "#000000B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#0078FFDC" + }, + "actions_chain_indicator_selected_color": { + "hex": "#0078FFF0" + }, + "actions_minimap_background_color": { + "hex": "#FFFFFFE6" + }, + "actions_minimap_border_color": { + "hex": "#000000E6" + }, + "actions_minimap_viewport_color": { + "hex": "#00000028" + }, + "actions_minimap_viewport_border_color": { + "hex": "#0078FF8C" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#0078FFDC" + }, + "bullet_list_dot_color_1": { + "hex": "#0078FFFF" + }, + "bullet_list_dot_color_2": { + "hex": "#8C00FFFF" + }, + "bullet_list_dot_color_3": { + "hex": "#009600FF" + }, + "input_field_suggestions_background_color": { + "hex": "#FFFFFFFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#000000FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#0078FFFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#3C3C3CFF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#000000FF" + }, + "text_editor_text_color": { + "hex": "#000000FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#C80000FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#B46E00FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#009600FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#008CA0FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#0078FFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#8C00FFFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#C80078FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#C80000FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#B46E00FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#967800FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#009600FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#006E78FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#0078FFFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/pumpkin_soup.json b/config/fancymenu/ui_themes/pumpkin_soup.json new file mode 100644 index 0000000..63688d7 --- /dev/null +++ b/config/fancymenu/ui_themes/pumpkin_soup.json @@ -0,0 +1,374 @@ +{ + "identifier": "pumpkin_soup", + "display_name": "fancymenu.ui.themes.pumpkin_soup", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#3C2D240D" + }, + "ui_blur_icon_texture_color": { + "hex": "#3C2D24FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FAF4ECB9" + }, + "ui_blur_overlay_border_color": { + "hex": "#D2C0AFA0" + }, + "ui_blur_interface_background_tint": { + "hex": "#F9F2EAD7" + }, + "ui_blur_interface_border_color": { + "hex": "#D2C0AFA0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#EEE3D6D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFAF59B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F4E8DC96" + }, + "ui_blur_interface_area_border_color": { + "hex": "#CCBAAA96" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFD5B096" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFAF59B" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFCC9E9B" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#FFE2C6AF" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFBE80AF" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#C8B8AA96" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#3C2D24FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#84786EFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFAF596" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#C8B8AA96" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#E67E3CD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#3C2D24FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#84786EFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#A09488FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#3C2D24FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFF9F2DC" + }, + "ui_icon_button_hover_color": { + "hex": "#3C2D240D" + }, + "ui_icon_texture_color": { + "hex": "#3C2D24FF" + }, + "ui_overlay_background_color": { + "hex": "#F5EEE5FF" + }, + "ui_overlay_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_background_color": { + "hex": "#FBF5EDFF" + }, + "ui_interface_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_title_bar_color": { + "hex": "#ECE1D4FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFBF6FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F4E9DDFF" + }, + "ui_interface_area_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFD5B0FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFAF5FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFCC9EFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#FFE2C6FF" + }, + "ui_interface_widget_border_color": { + "hex": "#C6B6A8FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#382A22FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#887C70FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFAF5FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#C8B8AAFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#E67E3CFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#382A22FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#968A7EFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#A2968AFF" + }, + "ui_interface_generic_text_color": { + "hex": "#382A22FF" + }, + "ui_tooltip_background_color": { + "hex": "#F8F1E9FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#20996AFF" + }, + "error_color": { + "hex": "#DA4E3AFF" + }, + "warning_color": { + "hex": "#E67E3CFF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#E67E3CFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#DB8C5864" + }, + "layout_editor_grid_color_center": { + "hex": "#C16E4078" + }, + "layout_editor_element_border_color_normal": { + "hex": "#E67E3CFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F4A460FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#AA6836FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#EC9C4EFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#78AA6EFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DA4E3AC8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#5CB08CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#38785EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#E67E3CFF" + }, + "pip_docking_overlay_color": { + "hex": "#E67E3C50" + }, + "pip_docking_overlay_border_color": { + "hex": "#E67E3CC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#BAAA9C8C" + }, + "scroll_grabber_color_hover": { + "hex": "#A09286B4" + }, + "actions_entry_background_color_action": { + "hex": "#EFE8E0FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#E4DBD1FF" + }, + "actions_entry_background_color_if": { + "hex": "#E7F2FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D6E8FAFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F4E9FAFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E8D9F3FF" + }, + "actions_entry_background_color_else": { + "hex": "#FFEFDDFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE2C6FF" + }, + "actions_entry_background_color_while": { + "hex": "#E3F5EFFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2EEE5FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D6FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBBEFF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D2E0FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#FAE5DCFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F3D4C8FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F2ECE6FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E6DED6FF" + }, + "actions_chain_indicator_color": { + "hex": "#AE846AA0" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E67E3CD2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#EC9C4EDC" + }, + "actions_minimap_background_color": { + "hex": "#FAF4ECE1" + }, + "actions_minimap_border_color": { + "hex": "#C6B8AADC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#987E6E78" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E67E3CDC" + }, + "bullet_list_dot_color_1": { + "hex": "#E67E3CFF" + }, + "bullet_list_dot_color_2": { + "hex": "#C07652FF" + }, + "bullet_list_dot_color_3": { + "hex": "#96AA72FF" + }, + "input_field_suggestions_background_color": { + "hex": "#FAF4ECFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#382A22FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#D0682EFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9C9186FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#786E64FF" + }, + "text_editor_text_color": { + "hex": "#382A22FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#DA4E3AFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E67E3CFF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#76A65CFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#369C86FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#4A84D2FF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#A066D2FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#CA5C96FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DA4E3AFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E67E3CFF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#D6AC56FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#58AA76FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#3E828CFF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E67E3CFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/purple_void.json b/config/fancymenu/ui_themes/purple_void.json new file mode 100644 index 0000000..9165a3c --- /dev/null +++ b/config/fancymenu/ui_themes/purple_void.json @@ -0,0 +1,374 @@ +{ + "identifier": "purple_void", + "display_name": "fancymenu.ui.themes.purple_void", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#D2B4FF10" + }, + "ui_blur_icon_texture_color": { + "hex": "#EBEBEEFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#0C0C0EBE" + }, + "ui_blur_overlay_border_color": { + "hex": "#34343CAA" + }, + "ui_blur_interface_background_tint": { + "hex": "#0A0A0CDC" + }, + "ui_blur_interface_border_color": { + "hex": "#34343CAA" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#101012DC" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#0E0E10AA" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#0A0A0C9B" + }, + "ui_blur_interface_area_border_color": { + "hex": "#3A3A40A0" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#3C205C96" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#101012A0" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#16161AA0" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#3C1E60B4" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#A85CF0B4" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#3A3A40AA" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#91919AFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#101012A0" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#3A3A40A0" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#AA60FFD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#91919AFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#787882FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#EBEBEEFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#0C0C0EDC" + }, + "ui_icon_button_hover_color": { + "hex": "#D2B4FF10" + }, + "ui_icon_texture_color": { + "hex": "#EBEBEEFF" + }, + "ui_overlay_background_color": { + "hex": "#0C0C0EFF" + }, + "ui_overlay_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_background_color": { + "hex": "#0A0A0CFF" + }, + "ui_interface_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_title_bar_color": { + "hex": "#101012FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#0E0E10FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#0A0A0CFF" + }, + "ui_interface_area_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#2E1846FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#101012FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#16161AFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#3C1E60FF" + }, + "ui_interface_widget_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#91919AFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#0E0E10FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#34343CFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#AA60FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#91919AFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#787882FF" + }, + "ui_interface_generic_text_color": { + "hex": "#EBEBEEFF" + }, + "ui_tooltip_background_color": { + "hex": "#101012FF" + }, + "info_color": { + "hex": "#AA60FFFF" + }, + "success_color": { + "hex": "#5CC678FF" + }, + "error_color": { + "hex": "#EC4E60FF" + }, + "warning_color": { + "hex": "#ECA84AFF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#AA60FFFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#8652CC78" + }, + "layout_editor_grid_color_center": { + "hex": "#AA60FF8C" + }, + "layout_editor_element_border_color_normal": { + "hex": "#A058F8FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#C884FFFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#BA6AFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#ECA84AFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#60D2AAFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#EC4E60C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#0000008C" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#EBDEFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#60D2AAFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#2E765CFF" + }, + "menu_bar_close_icon_color": { + "hex": "#EC6276FF" + }, + "pip_docking_overlay_color": { + "hex": "#A058F85A" + }, + "pip_docking_overlay_border_color": { + "hex": "#A058F8C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#54545C8C" + }, + "scroll_grabber_color_hover": { + "hex": "#845CBABE" + }, + "actions_entry_background_color_action": { + "hex": "#141418FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_if": { + "hex": "#141418FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#141418FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_else": { + "hex": "#141418FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_while": { + "hex": "#141418FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_delay": { + "hex": "#141418FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#141418FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_folder": { + "hex": "#141418FF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#141418FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#1C1C20FF" + }, + "actions_chain_indicator_color": { + "hex": "#7E62A2B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#AA60FFD2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#C884FFDC" + }, + "actions_minimap_background_color": { + "hex": "#0A0A0CD2" + }, + "actions_minimap_border_color": { + "hex": "#3C3C44DC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#BEBEC878" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#AA60FFDC" + }, + "bullet_list_dot_color_1": { + "hex": "#AA60FFFF" + }, + "bullet_list_dot_color_2": { + "hex": "#8456C4FF" + }, + "bullet_list_dot_color_3": { + "hex": "#60D2AAFF" + }, + "input_field_suggestions_background_color": { + "hex": "#121214FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#AA60FFFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#606068FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#888892FF" + }, + "text_editor_text_color": { + "hex": "#DADAE0FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#C884FFFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#ECA84AFF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#7ED6A6FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#70BAE0FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#868CE8FF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#B478E8FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#DC78C8FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#EC4E60FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#ECA84AFF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#EECC60FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#78DCA0FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#70AAD2FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#C884FFFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/spooky_season.json b/config/fancymenu/ui_themes/spooky_season.json new file mode 100644 index 0000000..b5ded92 --- /dev/null +++ b/config/fancymenu/ui_themes/spooky_season.json @@ -0,0 +1,374 @@ +{ + "identifier": "spooky_season", + "display_name": "fancymenu.ui.themes.spooky_season", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#F2E7D90D" + }, + "ui_blur_icon_texture_color": { + "hex": "#F2E7D9FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#100D14B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#4E4656A0" + }, + "ui_blur_interface_background_tint": { + "hex": "#120F17D7" + }, + "ui_blur_interface_border_color": { + "hex": "#4E4656A0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#1E1822D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#1B161F9B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#130F1796" + }, + "ui_blur_interface_area_border_color": { + "hex": "#564D6296" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#3F2D5096" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#1F192496" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#753F1996" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#322337AA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#915222AA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#564D6296" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#968F9DFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#1B161F96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#564D6296" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#D4782BC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#968F9DFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#857C8DFF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#F2E7D9FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#141019DC" + }, + "ui_icon_button_hover_color": { + "hex": "#F2E7D90D" + }, + "ui_icon_texture_color": { + "hex": "#F2E7D9FF" + }, + "ui_overlay_background_color": { + "hex": "#17131CFF" + }, + "ui_overlay_border_color": { + "hex": "#484152FF" + }, + "ui_interface_background_color": { + "hex": "#15111AFF" + }, + "ui_interface_border_color": { + "hex": "#484152FF" + }, + "ui_interface_title_bar_color": { + "hex": "#221B26FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#1C1721FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#141019FF" + }, + "ui_interface_area_border_color": { + "hex": "#484152FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#3A284AFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#1E1823FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#7A421BFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#2E2134FF" + }, + "ui_interface_widget_border_color": { + "hex": "#484152FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#968F9DFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#1C1721FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#484152FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#D4782BFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#968F9DFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#857C8DFF" + }, + "ui_interface_generic_text_color": { + "hex": "#F2E7D9FF" + }, + "ui_tooltip_background_color": { + "hex": "#18131DFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#69BA5DFF" + }, + "error_color": { + "hex": "#DC5048FF" + }, + "warning_color": { + "hex": "#E88E38FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#D86C2BFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#9658B46E" + }, + "layout_editor_grid_color_center": { + "hex": "#D86C2B82" + }, + "layout_editor_element_border_color_normal": { + "hex": "#D86C2BFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F2984AFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9C58D1FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#E88E38FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#7EBA56FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DC5048C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#F2E7D9FF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#46A88DFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#246052FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E8764AFF" + }, + "pip_docking_overlay_color": { + "hex": "#D86C2B50" + }, + "pip_docking_overlay_border_color": { + "hex": "#D86C2BC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#5A53628C" + }, + "scroll_grabber_color_hover": { + "hex": "#786F81BE" + }, + "actions_entry_background_color_action": { + "hex": "#261F2CFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#30273AFF" + }, + "actions_entry_background_color_if": { + "hex": "#21293AFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#28344BFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#2A213AFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#362B4CFF" + }, + "actions_entry_background_color_else": { + "hex": "#38281CFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#463424FF" + }, + "actions_entry_background_color_while": { + "hex": "#1C312DFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#243E38FF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C341AFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#4B4020FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#232D42FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#2D3A54FF" + }, + "actions_entry_background_color_folder": { + "hex": "#37232DFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#462E3AFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#241F28FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#2E2834FF" + }, + "actions_chain_indicator_color": { + "hex": "#89709EAA" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E88E38D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#D4782BDC" + }, + "actions_minimap_background_color": { + "hex": "#141019D2" + }, + "actions_minimap_border_color": { + "hex": "#5C5568DC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#BEAAC86E" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E88E38DC" + }, + "bullet_list_dot_color_1": { + "hex": "#E88E38FF" + }, + "bullet_list_dot_color_2": { + "hex": "#AA6CCAFF" + }, + "bullet_list_dot_color_3": { + "hex": "#8CBA78FF" + }, + "input_field_suggestions_background_color": { + "hex": "#1E1924FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#E88E38FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#7A7283FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#9C92A5FF" + }, + "text_editor_text_color": { + "hex": "#D8CEC1FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E8764AFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#ECA058FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#84C660FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#5EBEA8FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#6E9CECFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#AA76ECFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#D674B0FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DC5048FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E88E38FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#F2C058FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#6ACA84FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#5EA0AAFF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E88E38FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/user_variables.db b/config/fancymenu/user_variables.db new file mode 100644 index 0000000..117143c --- /dev/null +++ b/config/fancymenu/user_variables.db @@ -0,0 +1,2 @@ +type = user_variables + diff --git a/config/farmandcharm.toml b/config/farmandcharm.toml new file mode 100644 index 0000000..b1d96d0 --- /dev/null +++ b/config/farmandcharm.toml @@ -0,0 +1,155 @@ + +[Blocks] + enableBonemealEffect = true + #Range: 1 ~ 16 + fertilizedSoilRange = 5 + #Range: 1 ~ 32 + waterSprinklerRange = 8 + enableRainGrowthEffect = true + #Range: 0.1 ~ 2.0 + rainGrowthMultiplier = 0.5 + #Range: 1 ~ 16 + feedingTroughRange = 8 + +[Items] + enableFertilizer = true + enableDogFoodTaming = true + enableHorseTaming = true + enableHorseEffects = true + enableChickenEffects = true + enableCatTamingChance = true + + [Items.Nutrition] + #Range: > 0 + oatPancakeNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + oatPancakeSaturationMod = 0.6 + #Range: > 0 + roastedCornNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + roastedCornSaturationMod = 0.5 + #Range: > 0 + potatoWithRoastMeatNutrition = 7 + #Range: 0.0 ~ 1.7976931348623157E308 + potatoWithRoastMeatSaturationMod = 0.7 + #Range: > 0 + bakedLambHamNutrition = 8 + #Range: 0.0 ~ 1.7976931348623157E308 + bakedLambHamSaturationMod = 0.9 + #Range: > 0 + farmersBreakfastNutrition = 12 + #Range: 0.0 ~ 1.7976931348623157E308 + farmersBreakfastSaturationMod = 1.2 + #Range: > 0 + stuffedChickenNutrition = 8 + #Range: 0.0 ~ 1.7976931348623157E308 + stuffedChickenSaturationMod = 0.8 + #Range: > 0 + stuffedRabbitNutrition = 9 + #Range: 0.0 ~ 1.7976931348623157E308 + stuffedRabbitSaturationMod = 0.9 + #Range: > 0 + grandmothersStrawberryCakeNutrition = 4 + #Range: 0.0 ~ 1.7976931348623157E308 + grandmothersStrawberryCakeSaturationMod = 0.7 + #Range: > 0 + farmersBreadNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + farmersBreadSaturationMod = 0.8 + #Range: > 0 + farmerSaladNutrition = 7 + #Range: 0.0 ~ 1.7976931348623157E308 + farmerSaladSaturationMod = 0.6 + #Range: > 0 + goulashNutrition = 8 + #Range: 0.0 ~ 1.7976931348623157E308 + goulashSaturationMod = 0.9 + #Range: > 0 + simpleTomatoSoupNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + simpleTomatoSoupSaturationMod = 0.6 + #Range: > 0 + barleySoupNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + barleySoupSaturationMod = 0.8 + #Range: > 0 + onionSoupNutrition = 7 + #Range: 0.0 ~ 1.7976931348623157E308 + onionSoupSaturationMod = 0.6 + #Range: > 0 + potatoSoupNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + potatoSoupSaturationMod = 0.6 + #Range: > 0 + pastaWithOnionSauceNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + pastaWithOnionSauceSaturationMod = 0.7 + #Range: > 0 + cornGritsNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + cornGritsSaturationMod = 0.5 + #Range: > 0 + oatmealWithStrawberriesNutrition = 4 + #Range: 0.0 ~ 1.7976931348623157E308 + oatmealWithStrawberriesSaturationMod = 0.8 + #Range: > 0 + sausageWithOatPattyNutrition = 8 + #Range: 0.0 ~ 1.7976931348623157E308 + sausageWithOatPattySaturationMod = 0.9 + #Range: > 0 + lambWithCornNutrition = 8 + #Range: 0.0 ~ 1.7976931348623157E308 + lambWithCornSaturationMod = 0.8 + #Range: > 0 + beefPattyWithVegetablesNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + beefPattyWithVegetablesSaturationMod = 0.8 + #Range: > 0 + barleyPattiesWithPotatoesNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + barleyPattiesWithPotatoesSaturationMod = 0.9 + #Range: > 0 + baconWithEggsNutrition = 6 + #Range: 0.0 ~ 1.7976931348623157E308 + baconWithEggsSaturationMod = 0.7 + #Range: > 0 + chickenWrappedInBaconNutrition = 9 + #Range: 0.0 ~ 1.7976931348623157E308 + chickenWrappedInBaconSaturationMod = 0.9 + #Range: > 0 + cookedSalmonNutrition = 7 + #Range: 0.0 ~ 1.7976931348623157E308 + cookedSalmonSaturationMod = 0.9 + #Range: > 0 + cookedCodNutrition = 7 + #Range: 0.0 ~ 1.7976931348623157E308 + cookedCodSaturationMod = 0.9 + #Range: > 0 + roastedChickenNutrition = 5 + #Range: 0.0 ~ 1.7976931348623157E308 + roastedChickenSaturationMod = 0.8 + + [Items.Effects] + #Range: 10 ~ 600 + chickenEffectTickInterval = 120 + #Range: 0 ~ 100 + chickenEffectEggChance = 20 + #Range: 0 ~ 100 + chickenEffectFeatherChance = 20 + #Range: 10 ~ 200 + feastEffectSatiationInterval = 40 + #Range: 50 ~ 600 + feastEffectSustenanceInterval = 200 + #Range: 1 ~ 5 + feastEffectHealAmount = 1 + #Range: 50 ~ 600 + sustenanceEffectInterval = 200 + #Range: 1 ~ 5 + sustenanceEffectHealAmount = 1 + #Range: 1 ~ 20 + sustenanceEffectFoodIncrement = 1 + #Range: 10 ~ 200 + satiationEffectInterval = 40 + #Range: 1 ~ 5 + satiationEffectHealAmount = 1 + diff --git a/config/farmersdelight-client.toml b/config/farmersdelight-client.toml new file mode 100644 index 0000000..bcee76f --- /dev/null +++ b/config/farmersdelight-client.toml @@ -0,0 +1,7 @@ +#If enabled, a gilded overlay will be shown over the food meter when the player has the Nourishment effect. +enableNourishmentHungerOverlay = true +#If enabled, a scrolling overlay will be shown over the health meter when the player has the Comfort effect. +enableComfortHealthOverlay = true +#If enabled, food items will display tooltips showing which effects they grant when eaten, if any. Applies to foods from both Minecraft and this mod. +enableFoodEffectTooltip = true + diff --git a/config/farmersdelight-common.toml b/config/farmersdelight-common.toml new file mode 100644 index 0000000..25b345b --- /dev/null +++ b/config/farmersdelight-common.toml @@ -0,0 +1,67 @@ + +#Game settings +[settings] + #If enabled, Novice and Apprentice Farmer villagers will have a chance to buy crops from this mod. + enableFarmerFDTrades = true + #If enabled, the Wandering Trader will have a chance to sell seeds and plantables from this mod. + enableWanderingTraderFDTrades = true + #If enabled, players will be able to reel back rope, bottom to top, when sneak-using with an empty hand on them. + enableRopeReeling = true + #A list of dye colors that, when used as the background color of a Canvas Sign, should default to white text when placed. + #Dyes: ["white", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", "light_gray", "cyan", "purple", "blue", "brown", "green", "red", "black"] + canvasSignDarkBackgroundList = ["gray", "purple", "blue", "brown", "green", "red", "black"] + +#Farming +[farming] + #The chance (in decimal percentage) of Rich Soil providing a bone meal boost to a crop planted on it. Set to 0.0 to disable. + #Range: 0.0 ~ 1.0 + richSoilBoostChance = 0.2 + #If enabled, tomato crops will be able to climb any rope tagged as farmersdelight:ropes. If disabled, this will be restricted to this mod's rope only. + #Beware: this will convert these blocks into the block specified in defaultTomatoVineRope. + enableTomatoVineClimbingTaggedRopes = true + #Which rope should Tomato Vines leave behind when broken? + defaultTomatoVineRope = "farmersdelight:rope" + +#Crafting +[crafting] + #If enabled, the Cooking Pot will provide a Recipe Book on its interface, similar to the one on Crafting Tables and Furnaces. + enableCookingPotRecipeBook = true + #If enabled, storage crates (3x3) for vanilla crops (similar to Quark and Thermal Cultivation) will become craftable. + enableVanillaCropCrates = true + #How much (in decimal percentage) should each level of Fortune increase the odds of obtaining rare results on the Cutting Board? Set to 0.0 to disable. + #Range: 0.0 ~ 1.0 + cuttingBoardFortuneBonus = 0.1 + +#Vanilla item overrides +[overrides] + #If enabled, soups and stews from Minecraft will grant Nourishment when eaten, similar to meals from this mod. + enableVanillaSoupExtraEffects = true + #If enabled, Rabbit Stew will grant users the jumping prowess of a rabbit when eaten. + enableRabbitStewJumpBoost = true + #If enabled, Pumpkin Pie will require the user to sneak to place it down as a block. + enablePumpkinPieSneakToPlace = false + #If enabled, the Dispenser will be able to operate a Cutting Board in front of itself, using stored items as cutting tools. + enableCuttingBoardDispenserBehavior = true + + #Stack size overrides + [overrides.stack_size] + #If enabled, any BowlFoodItem in the following list become stackable to 16, much like Farmer's Delight's meals. + enableStackableSoupItems = true + #List of targeted food items. They must extend the BowlFoodItem class in code to be affected. Defaults to vanilla soups and stews. + soupItemList = ["minecraft:mushroom_stew", "minecraft:beetroot_soup", "minecraft:rabbit_stew"] + +#World generation +[world] + #If enabled, new loot pools will be added to chest loot across the game, containing items from this mod (ropes, crops, tools etc). + generateFDChestLoot = true + #If enabled, Compost Heaps (structures containing Organic Compost piles) will sometimes generate across Villages. + generateVillageCompostHeaps = true + #If enabled, crops from Farmer's Delight will sometimes replace standard crops in village farm plots. + generateFDCropsOnVillageFarms = true + +#Debug settings (Not meant for gameplay) +[debug] + #Tomato crops hanging on rope will force-place a Rope block when broken. Due to technical limitations, this affects things such as commands, making them fail to 'setblock' at first. + #Disable this if this block is preventing you from editing a region in creative or with commands. For normal gameplay, I recommend leaving this enabled. + enableTomatoRopePermanence = true + diff --git a/config/farmersdelightplus-client.toml b/config/farmersdelightplus-client.toml new file mode 100644 index 0000000..97b88fb --- /dev/null +++ b/config/farmersdelightplus-client.toml @@ -0,0 +1,8 @@ + +#Client settings +[client] + #Should salmon change its texture by secret name tag? + salmonHoneyNameTag = true + #Should meal and drink tooltips display which effects they provide? + foodEffectTooltip = true + diff --git a/config/farmersdelightplus-common.toml b/config/farmersdelightplus-common.toml new file mode 100644 index 0000000..c3108f1 --- /dev/null +++ b/config/farmersdelightplus-common.toml @@ -0,0 +1,15 @@ + +#Game settings +[common] + #Should the Butcher has some of this mod's new trades? + butcherFDPTrades = true + #Should the Wandering Trader has some of this mod's new trades? + wanderingTraderFDPTrades = true + #Should frogspawn be picked up using a bowl? (It can always be obtained with Silk Touch) + enableFrogspawnBowlPickingUp = true + #Should pancakes be picked up using a bowl? + enablePancakeBowlPickingUp = true + #Should pancakes only be cooked in a skillet? + #If true, cooking pancakes on a campfire or stove will be denied. + cookPancakesOnlyInSkillet = true + diff --git a/config/farmersrespite-common.toml b/config/farmersrespite-common.toml new file mode 100644 index 0000000..9b91247 --- /dev/null +++ b/config/farmersrespite-common.toml @@ -0,0 +1,8 @@ + +#Game settings +[settings] + #Are tea bushes bonemealable? + enableBoneMealTeaBush = false + #Are coffee bushes bonemealable? + enableBoneMealCoffeeBush = false + diff --git a/config/farmingforblockheads-common.toml b/config/farmingforblockheads-common.toml new file mode 100644 index 0000000..2fd35f9 --- /dev/null +++ b/config/farmingforblockheads-common.toml @@ -0,0 +1,17 @@ +#The range within animals can be fed by the feeding trough. +feedingTroughRange = 8 +#The chance for Fertilized Farmland to turn back into regular Farmland (per provided bonus). +fertilizerRegressionChance = 0.0 +#If true, merchants will be considered babies (on a technical level only), which may resolve exploits based on merchant death loot (like blood) +treatMerchantsLikeBabies = true +#The chance to get a bonus growth when using Red Fertilizer. +fertilizerBonusGrowthChance = 1.0 +#List of names the merchant can have. +merchantNames = ["Swap-O-Matic", "Emerald Muncher", "Weathered Salesperson"] +#The range at which the chicken nest picks up laid eggs. +chickenNestRange = 8 +#The maximum amount of animals (per type) until the feeding trough stops feeding. +feedingTroughMaxAnimals = 24 +#The chance to get a bonus crop when using Green Fertilizer. +fertilizerBonusCropChance = 1.0 + diff --git a/config/farsight.json b/config/farsight.json new file mode 100644 index 0000000..5b5b3d1 --- /dev/null +++ b/config/farsight.json @@ -0,0 +1,20 @@ +{ + "maxRenderDistance": { + "desc:": "Maximum allowed render distance, requires enableChunkManager enabled. default 64", + "maxRenderDistance": 32 + }, + "enableChunkManager": { + "desc:": "Enables a custom chunk manager, allowing to set higher view distances than 32 and smoothing out chunk loading from the server through caching. Can be disabled for compatibility issues, default true. (false) = vanilla", + "enableChunkManager": true + }, + "chunkPreview": { + "descEnable:": "Enables chunk preview feature, which enables saving and loading previously visited chunks to/from disk, default false", + "enabled": false, + "descSpeed:": "Set the speed at which chunk preview loads chunks from disk, default and minimum 1 Chunk per tick(20 per second)", + "previewChunkLoadSpeed": 1 + }, + "debugLogging": { + "desc:": "Enables debug logging to latest.log, default false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/fastpaintings-common.toml b/config/fastpaintings-common.toml new file mode 100644 index 0000000..fa17643 --- /dev/null +++ b/config/fastpaintings-common.toml @@ -0,0 +1,6 @@ + +[general] + #Makes paintings always drop with their NBT + #Allowed Values: OFF, ALWAYS, WHEN_PLACED_WITH_NBT + nbt_drop = "OFF" + diff --git a/config/fastrecipes-common.toml b/config/fastrecipes-common.toml new file mode 100644 index 0000000..f23773d --- /dev/null +++ b/config/fastrecipes-common.toml @@ -0,0 +1,5 @@ +# Allows recipes to be loaded in parallel, independently of each other. If you're experiencing recipe loading issues during your build, disable this. + +UseAsyncRecipesLoader = true +# Launches the Speed Benchmark when the server starts, namely at the moment of the first tick +BenchmarkMode = false diff --git a/config/fastsuite.cfg b/config/fastsuite.cfg new file mode 100644 index 0000000..ef087cd --- /dev/null +++ b/config/fastsuite.cfg @@ -0,0 +1,24 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# FastSuite Configuration + +general { + # A list of recipe types which may only be looked up on the main thread. Add a recipe type to this list if errors start happening. + # Default: [ + S:"Single Threaded Recipe Types" < + > + + # The max time, in seconds, that a recipe lookup may take before aborting the lookup and logging an error. + # Default: 25; Range: [1 ~ 300] + I:"Max Recipe Lookup Time"=25 + + # If true, the stacks used as recipe inputs will be locked and throw an error if modified during parallel matching. Useful for debugging. + # Default: false + B:"Lock Crafting Input Stacks"=false + + # If true, FastSuite parallelize all recipes without validation. This can cause crashes if a recipe is not thread safe. + # Default: false + B:"Unsafe Mode"=false +} + + diff --git a/config/ferritecore-mixin.toml b/config/ferritecore-mixin.toml new file mode 100644 index 0000000..d9aef76 --- /dev/null +++ b/config/ferritecore-mixin.toml @@ -0,0 +1,23 @@ +#Use a slightly more compact, but also slightly slower representation for block states +compactFastMap = true +#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = false +#Cache the predicate instances used in multipart models +cacheMultipartPredicates = true +#Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled +multipartDeduplication = true +#Deduplicate cached data for blockstates, most importantly collision and render shapes +blockstateCacheDeduplication = true +#Avoid creation of new strings when creating ModelResourceLocations +modelResourceLocations = true +#Use smaller data structures for "simple" models, especially models with few side-specific faces +modelSides = true +#Replace the blockstate neighbor table +replaceNeighborLookup = true +#Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. +populateNeighborTable = false +#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +#Deduplicate vertex data of baked quads in the basic model implementations +bakedQuadDeduplication = true + diff --git a/config/findme.json b/config/findme.json new file mode 100644 index 0000000..3bec04e --- /dev/null +++ b/config/findme.json @@ -0,0 +1,11 @@ +{ + "COMMON": { + "RADIUS_RANGE": 8, + "IGNORE_ITEM_DAMAGE": false + }, + "CLIENT": { + "CONTAINER_TRACK_TIME": 600, + "CONTAINER_TRACKING": true, + "CONTAINER_HIGHLIGHT_COLOR": "#cf9d15" + } +} \ No newline at end of file diff --git a/config/fishofthieves.json b/config/fishofthieves.json new file mode 100644 index 0000000..cd6ab68 --- /dev/null +++ b/config/fishofthieves.json @@ -0,0 +1,67 @@ +{ + "general": { + "trophyMaxHealth": 5.0, + "enableEarthwormsDrop": false, + "enableGrubsDrop": false, + "enableLeechesDrop": false, + "enableWormsAttachedHook": true, + "simpleSpawningCondition": false, + "neutralFishBehavior": false, + "enableFishItemDropWithVariant": false, + "displayAllFishVariantInCreativeTab": false, + "displayTrophySpawnEggInCreativeTab": false, + "displayTrophyBucketInCreativeTab": false + }, + "biome": { + "tropicalIslandBiomeGeneration": true, + "tropicalIslandMinimumWeirdness": -1.2, + "tropicalIslandMaximumWeirdness": 1.2 + }, + "spawnRate": { + "trophyProbability": 0.15, + "variant": { + "umberSplashtailProbability": 0.1, + "brightPondieProbability": 0.1, + "ravenIslehopperProbability": 0.1, + "boneAncientscaleProbability": 0.1, + "bonedustPlentifinProbability": 0.1, + "muddyWildsplashProbability": 0.1, + "forsakenDevilfishProbability": 0.1, + "sandBattlegillProbability": 0.1, + "snowWreckerProbability": 0.1, + "shadowStormfishProbability": 0.1 + }, + "fishWeight": { + "splashtail": 15, + "pondie": 15, + "islehopper": 8, + "ancientscale": 8, + "plentifin": 12, + "wildsplash": 10, + "devilfish": 4, + "battlegill": 5, + "wrecker": 50, + "stormfish": 12 + } + }, + "shoal": { + "chance": 2000, + "chanceRaining": 250, + "spreadDistance": 64, + "maxLifetimeDay": 3, + "weight": { + "riverOrBeach": 96, + "coast": 88, + "tropicalIsland": 92, + "ocean": 10, + "deepOcean": 5, + "swamp": 80 + } + }, + "debug": { + "enableStructureCenterPosRender": true, + "displayStructureCenterPosInfo": true, + "structureCenterPosRangeLimit": 64, + "spawnBeaconAtShoal": false + } +} \ No newline at end of file diff --git a/config/flerovium.json b/config/flerovium.json new file mode 100644 index 0000000..075cb01 --- /dev/null +++ b/config/flerovium.json @@ -0,0 +1,5 @@ +{ + "entityBackFaceCulling": true, + "itemBackFaceCulling": true, + "reduceTerrainParticles": true +} \ No newline at end of file diff --git a/config/flib.toml b/config/flib.toml new file mode 100644 index 0000000..18b1323 --- /dev/null +++ b/config/flib.toml @@ -0,0 +1,8 @@ + +#General settings +[flib] + + [flib.command] + #If true, the /flib command will be registered + enabled = true + diff --git a/config/fluxnetworks-client.toml b/config/fluxnetworks-client.toml new file mode 100644 index 0000000..ba51320 --- /dev/null +++ b/config/fluxnetworks-client.toml @@ -0,0 +1,7 @@ + +[gui] + #Enable navigation buttons sound when pressing it + enableButtonSound = true + #Enable Modern UI + enableGuiDebug = false + diff --git a/config/fluxnetworks-common.toml b/config/fluxnetworks-common.toml new file mode 100644 index 0000000..1714206 --- /dev/null +++ b/config/fluxnetworks-common.toml @@ -0,0 +1,22 @@ +#Most configs are moved to /serverconfig/fluxnetworks-server.toml +#Copy to /defaultconfig/fluxnetworks-server.toml for modpacks +placeholder = true + +#The One Probe +[OneProbe] + #Displays: Network Name, Live Transfer Rate & Internal Buffer + enableOneProbeBasicInfo = true + #Displays: Transfer Limit & Priority etc + enableOneProbeAdvancedInfo = true + #Displays Advanced Info when sneaking only + enableOneProbeSneaking = true + +#Integration +[integration] + #Whether to enable GTCEU integration if GregTech CE Unofficial Modern is installed. + #4 FE = 1 GTEU, not configurable. + #Note that EU-to-FE conversion is provided by GTCEU, instead of Flux Networks. + #Ensure you have enabled GTCEU's nativeEUToPlatformNative and euToPlatformRatio = 4. + #A game/server restart is required to reload this setting. + enableGTCEU = true + diff --git a/config/flywheel-client.toml b/config/flywheel-client.toml new file mode 100644 index 0000000..72c5da5 --- /dev/null +++ b/config/flywheel-client.toml @@ -0,0 +1,14 @@ +#Select the backend to use. Set to "DEFAULT" to let Flywheel decide. +backend = "DEFAULT" +#Enable or disable instance update limiting with distance. +limitUpdates = true +#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect. +#Range: -1 ~ 16 +workerThreads = -1 + +#Config options for Flywheel's built-in backends. +[flw_backends] + #How smooth Flywheel's shader-based lighting should be. May have a large performance impact. + #Allowed Values: FLAT, TRI_LINEAR, SMOOTH, SMOOTH_INNER_FACE_CORRECTED + lightSmoothness = "TRI_LINEAR" + diff --git a/config/fml.toml b/config/fml.toml new file mode 100644 index 0000000..c8e23e7 --- /dev/null +++ b/config/fml.toml @@ -0,0 +1,29 @@ +#Early window height +earlyWindowHeight = 720 +#Enable forge global version checking +versionCheck = false +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window provider +earlyWindowProvider = "SimpleCustomEarlyLoading" +#Early window width +earlyWindowWidth = 1280 +#Early window starts maximized +earlyWindowMaximized = false +#Default config path for servers +defaultConfigPath = "defaultconfigs" +#Disables Optimized DFU client-side - already disabled on servers +disableOptimizedDFU = true +#Skip specific GL versions, may help with buggy graphics card drivers +earlyWindowSkipGLVersions = [] +#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch +earlyWindowLogHelpMessage = false +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Squir? +earlyWindowSquir = false +#Whether to show CPU usage stats in early window +earlyWindowShowCPU = false + diff --git a/config/foolproof-common.toml b/config/foolproof-common.toml new file mode 100644 index 0000000..8007401 --- /dev/null +++ b/config/foolproof-common.toml @@ -0,0 +1,4 @@ +#. +#URL for support, to direct users to. +"Discord URL" = "" + diff --git a/config/forbidden_arcanus-client.toml b/config/forbidden_arcanus-client.toml new file mode 100644 index 0000000..7b0cc68 --- /dev/null +++ b/config/forbidden_arcanus-client.toml @@ -0,0 +1,13 @@ + +[rendering] + + [rendering.orb_of_temporary_flight] + #Should the Orb of Temporary Flight Overlay be rendered? [default: true] + render = true + #X-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] + #Range: 0 ~ 500 + x_position = 1 + #Y-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] + #Range: 0 ~ 500 + y_position = 1 + diff --git a/config/forbidden_arcanus-common.toml b/config/forbidden_arcanus-common.toml new file mode 100644 index 0000000..eaa44f2 --- /dev/null +++ b/config/forbidden_arcanus-common.toml @@ -0,0 +1,94 @@ + +[items] + + [items.orb_of_temporary_flight] + #Flight Time the Orb grants (in ticks) [default: 6000] + #Range: 20 ~ 120000 + time = 6000 + + [items.edelwood_bucket] + #How many Water Blocks the Edelwood Bucket can store [default: 4] + #Range: 1 ~ 10 + water_capacity = 4 + #How many Lava Blocks the Edelwood Bucket can store [default: 3] + #Range: 1 ~ 10 + lava_capacity = 3 + #How much Milk the Edelwood Bucket can store [default: 4] + #Range: 1 ~ 10 + milk_capacity = 4 + #How many Soups/Stews the Edelwood Bucket can store [default: 8] + #Range: 1 ~ 10 + soup_capacity = 8 + + [items.boom_arrow] + #Should Boom Arrow explosions deal Block Damage [default: false] + block_damage = false + #Radius of Boom Arrow explosions [default: 3] + #Range: 1 ~ 10 + explosion_radius = 3 + + [items.mundabitur_dust] + #Should right-clicking a Creeper with Mundabitur Dust charge the Creeper [default: true] + charge_creeper = true + + [items.xpetrified_orb] + #Experience Points the Orb grants on use [default: 91] + #Range: 1 ~ 120000 + experience_points = 91 + + [items.eternal_stella] + #How many times the Eternal Stella can be used before breaking [default: 3] + #Range: 1 ~ 100 + uses = 3 + +[blocks] + + [blocks.stella_arcanum] + #Should Stella Arcanum explode when mined [default: true] + explode = true + #Should Stella Arcanum explosions deal Block Damage (if explosions enabled) [default: true] + block_damage = true + #Radius of Stella Arcanum explosions (if explosions enabled) [default: 3] + #Range: 1 ~ 10 + explosion_radius = 3 + + [blocks.edelwood_ladder] + #The speed multiplier that gets added to the players y movement when on the ladder [default: 2.0 + #Range: 0.0 ~ 10.0 + speed = 2.0 + +[enchantments] + + [enchantments.eternal] + #Should the item be repaired after applying the Eternal modifier [default: true] + repair_item = true + +[aureal] + #Chance that an entity spawns as Aureal Entity [default: 0.25] + #Range: 0.0 ~ 1.0 + aureal_entity_chance = 0.25 + + [aureal.corruption] + #Do you want to completely disable corruption consequences? [default: false] + disable_consequences = false + #How much Corruption should killing a normal Entity give [default: 1] + #Range: 0 ~ 100 + entity_death_increasement_amount = 1 + #How much Corruption should killing an Aureal Entity give [default: 3] + #Range: 0 ~ 100 + aureal_entity_death_increasement_amount = 3 + #Chance that killing a normal Entity increases your Corruption [default: 0.35] + #Range: 0.0 ~ 1.0 + entity_death_increasement_chance = 0.35 + #Chance that killing an Aureal Entity increases your Corruption [default: 0.42] + #Range: 0.0 ~ 1.0 + aureal_entity_death_increasement_chance = 0.42 + #Should the players Corruption value decrease after a certain amount of time [default: true] + natural_decreasement = true + #Time before the players Corruption value is reduced by one (in ticks) [default: 6000] + #Range: > 0 + natural_decreasement_time = 6000 + #Chance that breeding animals decreases your Corruption [default: 0.45] + #Range: 0.0 ~ 1.0 + breeding_decreasement_chance = 0.45 + diff --git a/config/forcecraft-common.toml b/config/forcecraft-common.toml new file mode 100644 index 0000000..12e7c1e --- /dev/null +++ b/config/forcecraft-common.toml @@ -0,0 +1,72 @@ + +#General settings +[general] + #Enable Force Ore generation [Default: true] + generateForceOre = true + #Enable Force Tree generation [Default: true] + generateForceTree = true + #Enable Time Torch [Default: true] + timeTorchEnabled = true + #Print in Log when Time Torch is placed and by who [Default: true] + timeTorchLogging = true + #How many ticks in between ticking neighbour blocks [Default: 5] + #Range: > 0 + timeTorchRate = 5 + #The amount of ticks the Time Torch applies to neighbour blocks [Default: 3] + #Range: > 1 + timeTorchAmount = 3 + #Disable recovery hearts from dropping [Default: false] + disableRecoveryHearts = false + #Enables screen shake when in Liquid Force [Default: false] + enableForceShake = false + #The max amount of food stacks stored in the baconator [Default: 4] + #Range: > 1 + baconatorMaxStacks = 4 + #The max amount of damage blocked when all armor pieces have the Sturdy infusion [Default: 0.75] + #Range: 0.0 ~ 1.0 + sturdyDamageReduction = 0.75 + #The amount of half hearts of damage given by Force Punch given by the Damage infusion on armor [Default: 0.75] + #Range: 0.0 ~ 1.7976931348623157E308 + forcePunchDamage = 2.0 + #The max amount of ticks it takes to charge a tool with Force [Default: 120 (6 seconds)] + #Range: > 20 + forceInfusingTime = 120 + #An additional list of tile entities the Force Furnace can NOT insert into [Syntax: modid:tile_name] + #Examples: "minecraft:shulker_box" would stop it inserting into shulkers + furnaceOutputBlacklist = [""] + +#Fortune messages +[fortunes] + #Adding lines / removing lines specifies what the fortunes can say + fortuneMessages = ["You aren't supposed to eat me.", "Beauty is in the eye of the tiger.", "Creeper!", "Which came first, the chicken or the chunk?", "Whatever happened to Doritos 3D?", "Diabetes, anyone?", "That wasn't a cookie!", "If a tree falls down in the woods, you have a special mod installed.", "The cake is a lie of omission.", "A wise man once said, \"Yes honey, it does make you look fat.\" He never said that again.", "Don't stare directly at the pixels.", "I know where you live.", "Your lucky numbers are 0, -7, and 437922904678137496.708162", "There is never enough redstone.", "What you seek is surrounded by blocks.", "Today is Tuesday, or is it Friday - I can never tell.", "In the event of a creeper explosion, your keyboard can double as a broken keyboard.", "I didn't do it.", "You are 5.6 grams heavier than you were 10 seconds ago.", "I dropped my cookie.", "...Saltpeter? Really?", "We're no strangers to love. You know the rules and so do I.", "Eat another cookie.", "I CAN believe it's not butter.", "Beware enderman with a short fuse...", "Remember to repair your tools.", "Every rose has its bounding box.", "Get out of my chest!", "Please recycle.", "Great, now you've spoiled your dinner!", "Welcome to Hoarders: Minecraft edition!", "Not all Blocks are created equal.", "Don't touch that!", "Always name your machinations.", "Look in your inventory, now back to me - this fortune is now diamonds!", "Who put that there?", "Winners never cheat and cheaters never win, unless the winners cheated, in which case the cheaters won.", "Hi Bob! What, they can't all be zingers.", "Have you ever thought to yourself, \"My, that's an awfully large open grave!\"", "Could you pick up my dry-cleaning?", "Never shower in a thunderstorm. It's less efficient than bathing indoors and you'll freak out your neighbors.", "It is said that everyone experiences hardships, but God must REALLY hate YOU.", "If you play a country song backwards, you waste about 4 minutes of your life listening to garbled nonsense.", "No, you can't make that jump.", "I know they're furry and cuddly, but trust me, they're evil incarnate.", "Do you Dew?", "I see the land, but where exactly are the tracts?", "Creepers were originally from Dr. Who.", "Don't bogart my nasal spray!", "You'll live.", "Don't make me come back there!", "I've burned everything that reminds me of you in a ritualistic bonfire.", "We will be an unstoppable force; to our enemies we bring only death, to our allies we always bring cake.", "Heavy is the head that eats the crayons.", "Beware skinwalkers.", "Don't fear the creeper.", "Goodness and love will always win!", "I told you not to eat that!", "Winner!", "Beware anyone without an eye-patch!", "Don't kill all the animals!", "It's a wonder you get anything done!", "You will find happiness with a new love: Minecraft's latest patch.", "Seriously, who is in charge of the song/cowbell ratio?", "It's not a bug, it's a \"feature.\"", "Do you really need this many cookies?", "NCC1701", "I wanted to be a newspaper.", "Thank you! It was really dark in there!", "Thank you for not eating me.", "Burn the door!", "That's the biggest flapjack I've ever seen!", "Please be kind, de-rind", "It's a secret to everybody.", "I AM ERROR.", "If all else fails use fire.", "Dig it! Dig it! Dig to the center of the earth!", "No! Not into the pit! It BURNS!", "Dawn of the First Day, 72 hours remain.", "Don't stare directly at the potato.", "The chicken is a double-agent.", "Good lord!", "What's all this junk?", "Creepers blow chunks.", "Equivalence is a lie.", "Body by Sycamore.", "I hear 'Innards of the Machine' is on tour.", "Do something else.", "The capital of The Ukraine is Kiev.", "DebugCookie4A73N82", "Point that somewhere else!", "Forking is strictly prohibited.", "Void where prohibited.", "This parrot is no more!", "He's dead, Jim.", "Leave me alone for a bit, okay?", "Don't you dare shift-click me!", "Me again.", "My summer home is a no-bake.", "We can still be friends.", "The night is young, but you are not.", "Keyboard cat has carpal tunnel.", "Pull lever, get key.", "Boats n' Hoes", "Never eat an entire chocolate bunny in one sitting.", "Push that button and die.", "That cookie was mostly spackle.", "Slime Chunkery.", "I hate Thaumic Slimes.", "Inertia is a property of mallard.", "I prefer cake.", "If you can read this, you're literate.", "Don't touch the sides!", "Crunchitize me Cap'n!", "Please head in an orderly fashion to the disintegration chamber.", "It's the deer's ears.", "Happy anniversary, Carol!", "Never startle a ninja.", "If the shoe fits, you probably own it.", "Cattle reproduce by budding.", "Has anyone seen my Fedora?", "I beg to defer.", "Everybody loops.", "Fortune is straight down", "Eekum Bokum.", "Churba wurt!", "Darwa jit!", "Success is often preceded by failure, then followed again by failure.", "Man with Steve skin receive no cake.", "It's all Melnics to me!", "\"Steve\" means \"lazy\" in Swedish.", "Don't attack the cute little endermen - you'll be sorry.", "I miss my sanity, but then again I never used it.", "So this is where germs are born!", "I hate mondays.", "My old nemesis: gravity.", "I'm upgrade fodder!", "You can do anything at Zombo.com.", "Remember to feed the cattle.", "TROGDOR was a man. I mean, he was a dragon-man... Maybe he was just a dragon.", "Charles in charge of our clicks left and right. Charles in charge of every block in sight.", "Charles was never really in charge.", "Remember to use every part of the chicken.", "I'm not responsible for this.", "Every 10 minutes another crappy fortune is written.", "How many licks does it take to get to the center of a Chuck Norris?", "Roundhouse-kick for the win!", "DO NOT feed the beast! (After midnight)", "Please stop doing that.", "I'm not a vending machine!", "Try Ubuntu.", "If you program for more than 20 hours straight, do not blink.", "Ceiling cat is watching you procrastinate.", "Get your hand off my thigh! You can have the leg.", "Protective eyewear is a must!", "It's all in the wristwatch.", "Endermen in the UCB!", "Endermen can move TNT. I'm serious.", "Aww, you got blood all over my new sword!", "The human pancreas can take only so many twinkies.", "Humus is something you eat when you want your innards to cry.", "By Mennen", "Put me back in!", "...I got nothin'.", "We're out of milk.", "Always edit-out the derps.", "I want a lawyer.", "Bring me a shrubbery!", "It's bigger on the inside.", "That's what she said.", "Have you heard the one about the Rabbi and the Priest? Oh I forgot, you're deaf.", "There are worse appendages to get caught sticking inside the cookie jar.", "Ever have the feeling you're being watched? That's me!", "He who handles his NullPointerExceptions is a wise man indeed.", "Taking candy from a baby often prevents choking.", "Texting while driving is a potent form of natural-selection.", "The secret to a good marriage is matching tattoos.", "A sucker is born every minute, however an idiot is born every two seconds.", "Error in Thread Main: ExceptionNotCaughtException: ForceCraft.java:32", "I'll tear YOUR stub!", "Daydreaming is free, cookies are not.", "PINGAS!", "The run is dead.", "You do not aim Yo-Yos at people. They should face the ground.", "A Yo-Yo isn't a tool for hurting people...", "Happy Birthday Darkosto", "Bye Felicia!"] + +#Infusion settings +[infusion] + #The max level of Bleeding that can be applied [Default: 3] + #Range: 1 ~ 5 + bleedCap = 3 + #The max level of Healing that can be applied [Default: 3] + #Range: 1 ~ 5 + healingCap = 3 + #The max level of Sturdy that can be applied on force tools [Default: 3] + #Range: 1 ~ 10 + sturdyToolCap = 3 + #The max level of Luck that can be applied [Default: 4] + #Range: 1 ~ 10 + luckCap = 4 + #The max level of Damage that can be applied [Default: 5] + #Range: 1 ~ 10 + damageCap = 5 + #The max level of Force that can be applied [Default: 2] + #Range: 1 ~ 10 + forceCap = 2 + #The max level of Speed that can be applied [Default: 5] + #Range: 1 ~ 10 + speedCap = 5 + #The max level of Speed that can be applied to a Force Rod [Default: 3] + #Range: 1 ~ 5 + rodSpeedCap = 3 + #The level of Regeneration given to the player when standing in Liquid Force (0 = Regeneration 1) [Default: 0] + #Range: 0 ~ 16 + liquidRegenLevel = 0 + diff --git a/config/forestry-client.toml b/config/forestry-client.toml new file mode 100644 index 0000000..f389b02 --- /dev/null +++ b/config/forestry-client.toml @@ -0,0 +1,17 @@ +#Whether any of Forestry's particles are rendered. +particles = true +#Whether the "Did you know?" ledgers are shown in Forestry menus. +enable_hints = true +#Whether alerts are enabled for Forestry's mail system. +mail_alerts_enable = true +#Whether certain specimens, like Imperial Bees, will have enchantment glints on them. +enable_glints = true + +[jei_bees] + #Set to false to disable display of mutation requirements + show_requirements = true + #Set to false to disable display of secret mutations + show_secret_mutations = true + #Set to false to disable showing identified genome in recipes + show_analyzed_tooltip = true + diff --git a/config/forge-client.toml b/config/forge-client.toml new file mode 100644 index 0000000..32d3edc --- /dev/null +++ b/config/forge-client.toml @@ -0,0 +1,26 @@ + +#Client only settings, mostly things related to rendering +[client] + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = false + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true + #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. + useCombinedDepthStencilAttachment = false + #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always + compressLanIPv6Addresses = true + #During block model baking, manually calculates the normal for all faces. + #This was the default behavior of forge between versions 31.0 and 47.1. + #May result in differences between vanilla rendering and forge rendering. + #Will only produce differences for blocks that contain non-axis aligned faces. + #You will need to reload your resources to see results. + calculateAllNormals = false + #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. + stabilizeDirectionGetNearest = true + #When enabled, Forge will allow mipmaps to be lowered in real-time. This is the default behavior in vanilla. Use this if you experience issues with resource packs that use textures lower than 8x8. + allowMipmapLowering = false + diff --git a/config/fps_overlay/config.json b/config/fps_overlay/config.json new file mode 100644 index 0000000..45cade8 --- /dev/null +++ b/config/fps_overlay/config.json @@ -0,0 +1,59 @@ +{ + "general": { + "enabled": true, + "enableKeybindings": true, + "updateIntervalMs": 250, + "configVersion": 6 + }, + "hud": { + "showFps": true, + "showAverageFps": true, + "showFrameTime": false, + "show1PercentLow": true, + "showMemory": true, + "showPing": true, + "showMspt": true, + "showTps": true, + "showChunks": false, + "showCoordinates": false, + "showBiome": false, + "showGraph": false, + "showMinMaxStats": false, + "showLabels": false, + "metricOrder": [ + "fps", + "avg_fps", + "frame_time", + "one_percent_low", + "memory", + "ping", + "mspt", + "tps", + "chunks", + "coords", + "biome" + ], + "metricDisplayNames": {} + }, + "appearance": { + "position": "TOP_CENTER", + "overlayStyle": "NAVBAR", + "textEffect": "NONE", + "themePreset": "CLASSIC_DARK", + "showBackground": true, + "backgroundOpacity": 180, + "backgroundColor": 2173750, + "labelColor": -8151631, + "valueColor": -1, + "unitColor": -3566234, + "dividerColor": -13286319, + "goodColor": -13708937, + "warningColor": -12032, + "badColor": -47803, + "hudScale": 0.65, + "adaptiveColors": true, + "autoHideF3": true, + "xOffset": 0, + "yOffset": 0 + } +} \ No newline at end of file diff --git a/config/framedblocks-client.toml b/config/framedblocks-client.toml new file mode 100644 index 0000000..4ef59f1 --- /dev/null +++ b/config/framedblocks-client.toml @@ -0,0 +1,92 @@ + +[general] + #Whether ghost blocks are shown when you are holding a framed block + showGhostBlocks = false + #If true, an alternate renderer will be used for the placement preview. May solve issues with certain shaders + altGhostRenderer = false + #Whether certain framed blocks should show fancy hitboxes + fancyHitboxes = false + #If false only full block faces of framed blocks will be culled, if true all outer faces of famed blocks can be culled + detailedCulling = true + #If true, the UV remapping will use discrete steps to avoid floating point errors + discreteUVSteps = true + #Configures how detailed connected textures are supported. + #Use anything above FULL_EDGE at your own risk (performance impact, unexpected behaviour)! + #If NONE, all connected textures support is disabled + #If FULL_FACE, connected textures are supported on full faces + #If FULL_EDGE, connected textures are supported as above and on faces whose connecting edge covers the full block width + #If DETAILED, connected textures are supported as above and on most faces when interacting with other framed blocks + #Allowed Values: NONE, FULL_FACE, FULL_EDGE, DETAILED + conTexMode = "NONE" + #Configures the verbosity of messages displayed when a block cannot be used as a camo + #If NONE, no message will be shown + #If DEFAULT, a message will be shown when the block has a BlockEntity and isn't explicitly allowed or the block is explicitly disallowed + #If DETAILED, a message will be shown as above or when a block is non-solid and not explicitly allowed + #Allowed Values: NONE, DEFAULT, DETAILED + camoMessageVerbosity = "DEFAULT" + #If true, ambient occlusion is applied to framed blocks which glow from applied glowstone dust. + #If false, the vanilla behavior of disabling AO for light-emitting blocks is used + forceAoOnGlowingBlocks = true + #If true, all possible recipes of the Framing Saw will be added to EMI, else only the permutations using the Framed Cube will be added + #This setting only has an effect when EMI is installed + showAllRecipePermutationsInEmi = true + #Configures in which cases a framed block without a camo gets a solid model + #If NEVER, the default frame texture will always be used + #If DEFAULT, certain blocks will use the default frame texture with a solid background texture + #If ALWAYS, all blocks will use the default frame texture with a solid background texture + #Allowed Values: NEVER, DEFAULT, ALWAYS + solidFrameMode = "DEFAULT" + #If enabled, non-wooden buttons and pressure plates will show a material overlay when a camo is applied + #Requires resource reload to take effect + showButtonPlateTypeOverlay = true + #If enabled, special cube blocks will show a type overlay when a camo is applied + #Requires resource reload to take effect + showSpecialCubeTypeOverlay = true + +[overlay] + #If set to HIDDEN, the State Lock overlay will be completely hidden + #If set to ICON, the State Lock overlay will only show an icon + #If set to DETAILED, the State Lock overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + stateLockMode = "DETAILED" + #If set to HIDDEN, the Toggle Waterloggable overlay will be completely hidden + #If set to ICON, the Toggle Waterloggable overlay will only show an icon + #If set to DETAILED, the Toggle Waterloggable overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + toggleWaterlogMode = "DETAILED" + #If set to HIDDEN, the Toggle Slope Face overlay will be completely hidden + #If set to ICON, the Toggle Slope Face overlay will only show an icon + #If set to DETAILED, the Toggle Slope Face overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + toggleYSlopeMode = "DETAILED" + #If set to HIDDEN, the Reinforcement overlay will be completely hidden + #If set to ICON, the Reinforcement overlay will only show an icon + #If set to DETAILED, the Reinforcement overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + reinforcedMode = "DETAILED" + #If set to HIDDEN, the Prism Offset overlay will be completely hidden + #If set to ICON, the Prism Offset overlay will only show an icon + #If set to DETAILED, the Prism Offset overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + prismOffsetMode = "DETAILED" + #If set to HIDDEN, the Collapsible Block Split Line overlay will be completely hidden + #If set to ICON, the Collapsible Block Split Line overlay will only show an icon + #If set to DETAILED, the Collapsible Block Split Line overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + splitLineMode = "DETAILED" + #If set to HIDDEN, the One-Way Window overlay will be completely hidden + #If set to ICON, the One-Way Window overlay will only show an icon + #If set to DETAILED, the One-Way Window overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + oneWayWindowMode = "DETAILED" + #If set to HIDDEN, the Item Frame Background overlay will be completely hidden + #If set to ICON, the Item Frame Background overlay will only show an icon + #If set to DETAILED, the Item Frame Background overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + itemFrameBackgroundMode = "DETAILED" + #If set to HIDDEN, the Camo Rotation overlay will be completely hidden + #If set to ICON, the Camo Rotation overlay will only show an icon + #If set to DETAILED, the Camo Rotation overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + camoRotationMode = "DETAILED" + diff --git a/config/framedblocks-common.toml b/config/framedblocks-common.toml new file mode 100644 index 0000000..837d548 --- /dev/null +++ b/config/framedblocks-common.toml @@ -0,0 +1,5 @@ + +[general] + #If true, framed blocks are completely fire proof + fireproofBlocks = false + diff --git a/config/freecam.toml b/config/freecam.toml new file mode 100644 index 0000000..9107ad7 --- /dev/null +++ b/config/freecam.toml @@ -0,0 +1,46 @@ + +[Freecam] + #The type of flight used by freecam. + #Allowed Values: CREATIVE, DEFAULT + "Flight Mode" = "DEFAULT" + #The horizontal speed of freecam. + #Range: 0.0 ~ 10.0 + "Horizontal Speed" = 1.0 + #The vertical speed of freecam. + #Range: 0.0 ~ 10.0 + "Vertical Speed" = 1.0 + #Allows travelling through transparent blocks in freecam. + "Ignore Transparent Blocks" = true + #Allows travelling through doors/trapdoors/gates in freecam. + "Ignore Openable Blocks" = true + #Allows travelling through all blocks in freecam. + "Ignore All Collision" = true + #Whether 'Initial Perspective' should check for collision, even when using 'Ignore All Collision'. + "Always Check Initial Collision" = false + #The initial perspective of the camera. + #Allowed Values: FIRST_PERSON, THIRD_PERSON, THIRD_PERSON_MIRROR, INSIDE + "Initial Perspective" = "INSIDE" + #Shows your player in its original position. + "Show Player" = true + #Whether you can see your hand in freecam. + "Show Hand" = false + #Increases brightness while in freecam. + "Full Brightness" = false + #Whether you see a fog overlay underwater, in lava, or powdered snow. + "Show Submersion Fog" = false + #Disables freecam when damage is received. + "Disable on Damage" = true + #Prevents player movement while freecam is active. + #WARNING: Multiplayer usage not advised. + "Freeze Player" = false + #Whether you can interact with blocks/entities in freecam. + #WARNING: Multiplayer usage not advised. + "Allow Interaction" = false + #The source of block/entity interactions. + #Allowed Values: CAMERA, PLAYER + "Interaction Mode" = "CAMERA" + #Notifies you when entering/exiting freecam. + "Freecam Notifications" = true + #Notifies you when entering/exiting tripod cameras. + "Tripod Notifications" = true + diff --git a/config/fsr2-client.toml b/config/fsr2-client.toml new file mode 100644 index 0000000..ea895a4 --- /dev/null +++ b/config/fsr2-client.toml @@ -0,0 +1,14 @@ + +#FSR 2.0 Configuration +[fsr] + #FSR 2.0 Quality Mode + #Allowed Values: NATIVE, ULTRA_QUALITY, QUALITY, BALANCED, PERFORMANCE, ULTRA_PERFORMANCE + qualityMode = "BALANCED" + #Enable FSR 2.0 Sharpening + enableSharpening = true + #FSR 2.0 Sharpening Strength (0.0 - 1.0) + #Range: 0.0 ~ 1.0 + sharpeningStrength = 0.8 + #Automatically optimize FSR settings based on system performance + autoOptimize = true + diff --git a/config/ftbpc-client.snbt b/config/ftbpc-client.snbt new file mode 100644 index 0000000..d9b673d --- /dev/null +++ b/config/ftbpc-client.snbt @@ -0,0 +1,53 @@ +{ + # When enabled, toasts regarding the advancement progression will be disabled. + # Default: false + disable_advancements_toasts: false + + # When enabled, toasts regarding the recipe unlocks will be disabled. + # Default: false + disable_recipe_toasts: false + + # When enabled, toasts regarding social interaction will be disabled. + # Default: false + disable_socialinteraction_toasts: false + + # When enabled, toasts regarding the in-game start tutorial will be disabled. + # Default: true + disable_tutorial_toasts: true + + # When enabled, the advancements button will be removed from the pause menu. + # Default: false + remove_advancements_from_pause: false + + # The seed to use for the world. Only used if world_uses_static_seed is enabled. + # Default: "" + static_seed: "" + + # When enabled, the world will always use the same seed, regardless of the world name. + # Default: false + world_uses_static_seed: false + integrations: { + jei: { + # When enabled, the recipe names will be printed to the log when the JEI integration is loaded. + # Default: false + recipe_names_debug: false + + # When enabled, the recipe tabs in JEI will be sorted based on the order specified in the JEI integration. + # Default: false + sort_recipes: false + } + } + pause_screen: { + # When enabled, the support provider will be enabled in the top left of the pause screen. This is used for modpacks to provide support information. + # Default: true + enable_support_provider: false + + # The URL to open when the support provider's Discord icon is clicked. If this is empty, the Discord icon will not be shown. + # Default: "https://go.ftb.team/discord" + support_discord_url: "https://go.ftb.team/discord" + + # The URL to open when the support provider's GitHub icon is clicked. If this is empty, the GitHub icon will not be shown. + # Default: "https://go.ftb.team/support-modpack" + support_github_url: "https://go.ftb.team/support-modpack" + } +} diff --git a/config/ftbpc-common.snbt b/config/ftbpc-common.snbt new file mode 100644 index 0000000..d1f446f --- /dev/null +++ b/config/ftbpc-common.snbt @@ -0,0 +1,31 @@ +{ + # When enabled, players will be able to use beds in the nether. + # Default: false + allow_beds_in_the_nether: false + + # When enabled, light sources near spawners will be broken to allow for mob spawning. + # Default: false + break_light_sources_near_spawners: false + + # If non-zero, set the jigsaw feature size limit to this value. + # Default: 0 + # Range: 0 ~ 256 + extended_jigsaw_range: 0 + + # When enabled, the light level around spawners will be ignored for mob spawning. + # Default: false + ignore_light_level_for_spawners: false + forced-game-rules: { + # Game rules that are forced on the server. The keys must be valid game rule IDs. + rules: { } + } + shaders_notice: { + # The shader pack to use when enabling shaders. Leave empty to use the default shader pack / first available shader pack in the list + # Default: "" + shader_pack_to_use: "" + + # When enabled, the shaders notice will be shown on world start if shaders are included in the pack. + # Default: false + show_on_start: false + } +} diff --git a/config/ftbpc_pad_actions.snbt b/config/ftbpc_pad_actions.snbt new file mode 100644 index 0000000..aea9283 --- /dev/null +++ b/config/ftbpc_pad_actions.snbt @@ -0,0 +1,18 @@ +{ + actions: [ + { + command_action: { + command: "/spawn" + } + name: "ftbpackcompanion.spawn" + icon: "ftblibrary:icons/globe" + } + { + command_action: { + command: "/home" + } + name: "ftbpackcompanion.home" + icon: "ftblibrary:icons/compass" + } + ] +} diff --git a/config/ftbqoptimizer.snbt b/config/ftbqoptimizer.snbt new file mode 100644 index 0000000..be61459 --- /dev/null +++ b/config/ftbqoptimizer.snbt @@ -0,0 +1,13 @@ +# FTBQuestOptimizer config file +# If you're a modpack maker, edit defaultconfigs/ftbqoptimizer-server.snbt instead + +{ + # Enable optimization of quest completion detection + # Default: true + detect_optimization: true + + # Number of tick skips for checking player inventories, 0 to disable tick skipping. Experiment and find the best value for you! + # Default: 5 + # Range: 0 ~ 100 + skip_ticks_amount: 5 +} diff --git a/config/ftbxmodcompat.snbt b/config/ftbxmodcompat.snbt new file mode 100644 index 0000000..7e3bd93 --- /dev/null +++ b/config/ftbxmodcompat.snbt @@ -0,0 +1,13 @@ +{ + # Select the permissions implementation to use + # DEFAULT: use FTB Ranks then Luckperms in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "ftb_ranks", "luckperms" + permission_selector: "default" + + # Select the game stages implementation to use + # DEFAULT: use KubeJS, Game Stages, vanilla in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "vanilla", "kubejs", "gamestages" + stage_selector: "default" +} diff --git a/config/fzzy_config/keybinds.toml b/config/fzzy_config/keybinds.toml new file mode 100644 index 0000000..f7de10a --- /dev/null +++ b/config/fzzy_config/keybinds.toml @@ -0,0 +1,236 @@ +# Don't change this! Version used to track needed updates. +version = 1 + +# Scrolls up a 'page' in the Config GUI + +[pageUp] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "page.up" + +# Scrolls down a 'page' in the Config GUI + +[pageDown] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "page.down" + +# Scrolls to the top of the Config GUI + +[home] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "home" + +# Scrolls to the bottom of the Config GUI + +[end] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "end" + +# Copies the currently hovered or focused config setting + +[copy] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "c" + +# Pastes the last-copied setting into a compatible new setting + +[paste] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "v" + +# Not currently used by Fzzy Config - cuts the selected information to a copy buffer + +[cut] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "x" + +# Saves changes made to the current Config and sends updates to the server + +[save] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "s" + +# Undos changes made from newest to oldest change + +[undo] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "z" + +# Opens the context menu for the currently hovered or selected element + +[contextMouse] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "mouse" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "mouse.right" + +# Backs out to the previous config screen + +[back] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "backspace" + +# Opens the 'Go-To' menu (Not used to focus the search bar) + +[search] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "e" + +# Opens the GUI info menu + +[info] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f1" + +# Fully exits all open config GUIs (and saves them as applicable) + +[fullExit] +ctrl = "false" +shift = "true" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "escape" + +# Focuses the Config GUI search bar + +[[find]] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f" + +[[find]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f3" + +# Opens the context menu for the currently hovered or selected element + +[[contextKeyboard]] +ctrl = "false" +shift = "true" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f10" + +[[contextKeyboard]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "menu" + +# Not currently used by Fzzy Config - A universal 'Enter' keybind + +[[act]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "enter" + +[[act]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "keypad.enter" \ No newline at end of file diff --git a/config/gamemenumodoption-client.toml b/config/gamemenumodoption-client.toml new file mode 100644 index 0000000..1d67153 --- /dev/null +++ b/config/gamemenumodoption-client.toml @@ -0,0 +1,6 @@ + +[General] + "Show notification mod update" = true + "Render mod list background" = true + "ModMenu style" = false + diff --git a/config/genetic-animals-common.toml b/config/genetic-animals-common.toml new file mode 100644 index 0000000..dcb7430 --- /dev/null +++ b/config/genetic-animals-common.toml @@ -0,0 +1,232 @@ + +[general] + #Set this to true to enable omnigenders, meaning the gender of the animal is irrelevant to who can fall pregnant, lay eggs, milk or sire young, False results in gendered animals, Visually nothing changes + "Allow Omnigenders:" = false + "Allow feeding to age/grow animals:" = false + #Allowed Values: RAVENOUS, MORE_HUNGRY, STANDARD, LESS_HUNGRY, NEVER_HUNGRY + "How fast the animals get hungry, Values: RAVENOUS, MORE_HUNGRY, STANDARD, LESS_HUNGRY, NEVER_HUNGRY" = "STANDARD" + #Range: 0 ~ 100 + "How random the genes should be, 100 is all wildtype animals, 0 is completely random which often results in all white animals:" = 90 + "Animal inventory tabs will be on the top if true and tabs will be on the side if false:" = true + #Allowed Values: GREY, SOFT_GREY, BRIGHT, COLOURFUL, SILHOUETTE, EMPTY + "What icon set is used when an icon is displaying full: " = "GREY" + #Allowed Values: GREY, SOFT_GREY, BRIGHT, COLOURFUL, SILHOUETTE, EMPTY + "What icon set is used when an icon is displaying empty: " = "SILHOUETTE" + "Animals will spawn with random biome type" = false + "Genetic animals are immune to all damage unless attacked with an axe by a player" = false + "Force Genetic Animals to use a 16x base texture" = false + +[Trading] + #If true leather workers will have extra trades for some Genetic Animal's items + "Extra leather worker trades" = true + #If true shepards will have extra trades for some Genetic Animal's items + "Extra shepard trades" = true + #If true farmers will have extra trades for some Genetic Animal's items + "Extra farmer trades" = true + #If true wandering traders will have extra trades for some Genetic Animal's items + "Extra wandering traders trades" = true + #If true wandering traders have a chance to bring chickens to trade + "Wandering traders sell chickens" = true + #If true wandering traders have a chance to bring pigs to trade + "Wandering traders sell pigs" = true + #If true wandering traders have a chance to bring cows to trade + "Wandering traders sell cows" = true + #If true wandering traders have a chance to bring sheep to trade + "Wandering traders sell sheep" = true + #If true wandering traders have a chance to bring rabbits to trade + "Wandering traders sell rabbits" = true + #If true wandering traders have a chance to bring llamas to trade + "Wandering traders sell llamas" = true + #If true wandering traders have a chance to bring mooshrooms to trade + "Wandering traders sell mooshrooms" = false + #If true wandering traders have a chance to bring mooblooms to trade + "Wandering traders sell mooblooms" = false + #If true wandering traders have a chance to bring turtles to trade + "Wandering traders sell turtles" = true + #If true wandering traders have a chance to bring axolotls to trade + "Wandering traders sell axolotls" = true + +[pig] + #Range: > 5 + "How many ticks it takes for a Pig to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a pig to become an adult, 24000 = 1 Minecraft Day:" = 60000 + "Allow vanilla minecraft Pigs to spawn/exist:" = true + "Allow Genetic Pigs to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly pig spawning is weighted, larger numbers spawn more, Default is 6" = 6 + #Range: 1 ~ 60 + "The minimum number of pigs you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of pigs you want to find in a group at spawn, Default is 3" = 3 + +[cow] + #Range: > 5 + "How many ticks it takes for a Cow to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a cow to become an adult, 24000 = 1 Minecraft Day:" = 84000 + "Allow vanilla minecraft Cows to spawn/exist:" = true + "Allow Genetic Cows to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly cow spawning is weighted, larger numbers spawn more, Default is 8" = 8 + #Range: 1 ~ 60 + "The minimum number of cows you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of cows you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a cow regains milk, Default is 1 for 1x speed" = 1.0 + +[mooshroom] + #Range: > 5 + "How many ticks it takes for a Mooshroom to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Mooshroom to become an adult, 24000 = 1 Minecraft Day:" = 84000 + "Allow vanilla minecraft Mooshrooms to spawn/exist:" = true + "Allow Genetic Mooshrooms to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Mooshroom spawning is weighted, larger numbers spawn more, Default is 8" = 8 + #Range: 1 ~ 60 + "The minimum number of Mooshrooms you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Mooshrooms you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a mooshroom regains mushroom stew, Default is 1 for 1x speed" = 1.0 + +#Mooshrooms spawn only on Mycylium blocks by default, If you wish to change that you can do so by using a datapack to modify the mooshrooms_spawnable_on block tag +[moobloom] + "Allow Genetic Mooblooms to replace Mooblooms added by other mods" = true + #Range: > 5 + "How many ticks it takes for a Mooblooms to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Mooblooms to become an adult, 24000 = 1 Minecraft Day:" = 84000 + +[llama] + "Allow vanilla minecraft Llamas to spawn/exist:" = true + "Allow Genetic Llamas to continue to spawn/exist:" = true + #Range: > 5 + "How many ticks it takes for a Llama to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a llama to become an adult, 24000 = 1 Minecraft Day:" = 120000 + #Range: 1 ~ 20 + "How highly llama spawning is weighted, larger numbers spawn more, Default is 4" = 4 + #Range: 1 ~ 60 + "The minimum number of llamas you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of llamas you want to find in a group at spawn, Default is 3" = 3 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a llama regains its wool, Default is 1 for 1x speed" = 1.0 + +[sheep] + #Range: > 5 + "How many ticks it takes for a Sheep to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Sheep to become an adult, 24000 = 1 Minecraft Day:" = 72000 + "Allow vanilla minecraft Sheep to spawn/exist:" = true + "Allow Genetic Sheep to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Sheep spawning is weighted, larger numbers spawn more, Default is 12" = 12 + #Range: 1 ~ 60 + "The minimum number of Sheep you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Sheep you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a llama regains it's wool, Default is 1 for 1x speed" = 1.0 + +[chicken] + "Allow vanilla minecraft Chickens to spawn/exist:" = true + "Allow Genetic Chickens to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for a Chicken egg to hatch, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1 + "How many ticks a chicken remains fertile for after being bred, 24000 = 1 Minecraft Day:" = 96000 + "If enabled hens never leave their nests even if they are hungry" = false + #Range: > 1 + "How many ticks it takes before a nest could start to decay, this resets every time an eggs is laid or incubated" = 24000 + #Range: 0.5 ~ 10.0 + "How far away a chicken must be from the centre of the next to start teleporting to guarantee it is aligned, Default is 1 block" = 1.0 + #Range: > 1 + "How many ticks it takes for a Chicken to become an adult, 24000 = 1 Minecraft Day:" = 60000 + #Range: 1 ~ 20 + "How highly Chicken spawning is weighted, larger numbers spawn more, Default is 10" = 10 + #Range: 1 ~ 60 + "The minimum number of Chicken you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Chicken you want to find in a group at spawn, Default is 4" = 4 + "Allow roosters to crow:" = true + #Range: 1 ~ 24000 + "The minimum number of ticks till a rooster might crow, Default is 100ticks" = 100 + #Range: 2 ~ 24000 + "The maximum number of ticks till a rooster might crow, Default is 6000ticks" = 6000 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a chicken prepares to lay an egg, Default is 1 for 1x speed" = 1.0 + #Range: 0 ~ 100 + "This number is a percentage chance for thrown eggs to hatch into chicks, Default is 15%" = 15 + +[rabbit] + #Range: > 5 + "How many ticks it takes for a Rabbit to give birth, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1 + "How many ticks it takes for a Rabbit to become an adult, 24000 = 1 Minecraft Day:" = 48000 + "Allow vanilla minecraft Rabbits to spawn/exist:" = true + "Allow Genetic Rabbits to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Rabbit spawning is weighted, larger numbers spawn more, Default is 4" = 4 + #Range: 1 ~ 60 + "The minimum number of Rabbit you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of Rabbit you want to find in a group at spawn, Default is 3" = 3 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a rabbit with wool regains it's wool, Default is 1 for 1x speed" = 1.0 + +[turtle] + "Allow vanilla minecraft Turtles to spawn/exist:" = true + "Allow Genetic Turtles to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for a Turtle to become an adult, 24000 = 1 Minecraft Day:" = 120000 + #Range: > 1 + "How many ticks it takes for a Turtle to drop its scute, 24000 = 1 Minecraft Day:" = 24000 + #Range: 1 ~ 20 + "How highly Turtle spawning is weighted, larger numbers spawn more, Default is 6" = 6 + #Range: 1 ~ 60 + "The minimum number of Turtle you want to find in a group at spawn, Default is 1" = 1 + #Range: 1 ~ 60 + "The maximum number of Turtle you want to find in a group at spawn, Default is 5" = 5 + #Range: 0 ~ 24000 + "If the eggs are randomly ticked and the time is after this but before hatchingWindowEnd their hatch level will increase" = 21600 + #Range: 0 ~ 24000 + "If the eggs are randomly ticked and the time is after hatchingWindowStart but before this their hatch level will increase" = 22550 + #Range: > 0 + "The chance that eggs won't hatch if their block is ticked, default is 500, use 1 to guarantee they increment hatching" = 500 + +#Turtles only hatch on blocks in the sand tag by default, If you wish to change that you can do so by using a datapack to modify the sand block tag +[horse] + #Range: > 5 + "How many ticks it takes for a Horse to give birth, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1000 + "How many ticks it takes for a Horse to become an adult, 24000 = 1 Minecraft Day:" = 24000 + "Allow vanilla minecraft Horses to spawn/exist:" = false + "Allow Genetic Horse to continue to spawn/exist:" = true + +[axolotl] + "Allow vanilla minecraft Axolotls to spawn/exist:" = true + "Allow Genetic Axolotls to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for an Axolotl to become an adult, 24000 = 1 Minecraft Day:" = 60000 + #Range: > 1 + "How long int ticks it takes an axolotl egg to hatch in temperate biomes, Default is 24000" = 24000 + #Range: 0.0 ~ 100.0 + "How important temperature is to the hatching of axolotl eggs, a value of 0 means they will never hatch unless they are in a temperate or warmer environment, Currently not used" = 1.0 + #Range: 1 ~ 20 + "How highly Axolotl spawning is weighted, larger numbers spawn more, Default is 10" = 10 + #Range: 1 ~ 60 + "The minimum number of Axolotls you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Axolotls you want to find in a group at spawn, Default is 6" = 6 + +[passageOfTime] + "Allow 'Passage of Time' feature, which allows animal pregnancy and similar features to progress after player time away from chunk" = false + "Allow 'Passage of Time' feature for chickens" = false + #Range: 1 ~ 3 + "How many 'stages' can pass for a chicken when it is loaded in, each of these is one stage: Make a nest, lay in the nest, hatch the nest, Default is 2 stages" = 2 + "Disable hatching from passage of time regards of stages setting and time passed" = false + diff --git a/config/geore-client.toml b/config/geore-client.toml new file mode 100644 index 0000000..8976946 --- /dev/null +++ b/config/geore-client.toml @@ -0,0 +1,7 @@ + +#Client settings +[Client] + #The intensity of the spyglass color overlay (0.5 = 50%) [Default: 0.5] + #Range: 0.01 ~ 1.0 + spyglassIntensity = 0.5 + diff --git a/config/geore-common.toml b/config/geore-common.toml new file mode 100644 index 0000000..a7052ff --- /dev/null +++ b/config/geore-common.toml @@ -0,0 +1,69 @@ + +#General settings +[General] + #Generate Coal GeOre [Default: true] + generateCoalGeore = true + #Generate Copper GeOre [Default: true] + generateCopperGeore = true + #Generate Diamond GeOre [Default: true] + generateDiamondGeore = true + #Generate Emerald GeOre [Default: true] + generateEmeraldGeore = true + #Generate Gold GeOre [Default: true] + generateGoldGeore = true + #Generate Iron GeOre [Default: true] + generateIronGeore = true + #Generate Lapis GeOre [Default: true] + generateLapisGeore = true + #Generate Quartz GeOre [Default: true] + generateQuartzGeore = true + #Generate Quartz GeOre in the Nether [Default: true] + generateQuartzInNetherGeore = true + #Generate Redstone GeOre [Default: true] + generateRedstoneGeore = true + #Generate Budding Ancient Debris [Default: true] + generateBuddingAncientDebris = true + #Disable piston push for budding GeOre (Overrides the vanilla behavior of breaking the block upon being pushed) [Default: false] + disablePistonPushForBuddingGeOre = false + +#Modded Generation settings +[ModdedGeneration] + #Generate Ruby GeOre [Default: false] + generateRubyGeore = false + #Generate Sapphire GeOre [Default: false] + generateSapphireGeore = false + #Generate Topaz GeOre [Default: false] + generateTopazGeore = false + #Generate Zinc GeOre [Default: false] + generateZincGeore = false + #Generate Uraninite GeOre [Default: false] + generateUraniniteGeore = false + #Generate Black Quartz GeOre [Default: false] + generateBlackQuartzGeore = false + #Generate Monazite GeOre [Default: false] + generateMonaziteGeore = false + #Generate Aluminum GeOre [Default: false] + generateAluminumGeore = false + #Generate Lead GeOre [Default: false] + generateLeadGeore = false + #Generate Nickel GeOre [Default: false] + generateNickelGeore = false + #Generate Osmium GeOre [Default: false] + generateOsmiumGeore = false + #Generate Platinum GeOre [Default: false] + generatePlatinumGeore = false + #Generate Silver GeOre [Default: false] + generateSilverGeore = false + #Generate Tin GeOre [Default: false] + generateTinGeore = false + #Generate Tungsten GeOre [Default: false] + generateTungstenGeore = false + #Generate Uranium GeOre [Default: false] + generateUraniumGeore = false + #Generate Allthemodium GeOre [Default: false] + generateAllthemodiumGeore = false + #Generate Vibranium GeOre [Default: false] + generateVibraniumGeore = false + #Generate Unobtainium GeOre [Default: false] + generateUnobtainiumGeore = false + diff --git a/config/ghosts.toml b/config/ghosts.toml new file mode 100644 index 0000000..2ff6be7 --- /dev/null +++ b/config/ghosts.toml @@ -0,0 +1,21 @@ +# Ghost spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 8, 1, 2, #minecraft:is_forest +# Range: -Infinity ~ Infinity +GHOST_SPAWN = "14, 1, 2, #minecraft:is_forest" +# Ghost spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 8, 1, 2, minecraft:flower_forest, #minecraft:is_forest, #forge:is_swamp +# Range: -Infinity ~ Infinity +SMALL_GHOST_SPAWN = "8, 1, 2, minecraft:flower_forest, #minecraft:is_forest, #forge:is_swamp" +# Kodama spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 20, 1, 2, minecraft:birch_forest, minecraft:forest, minecraft:old_growth_spruce_taiga, minecraft:dark_forest +# Range: -Infinity ~ Infinity +KODAMA_SPAWN = "20, 1, 2, minecraft:birch_forest, minecraft:forest, minecraft:old_growth_spruce_taiga, minecraft:dark_forest" +# The maximum distance (in blocks) at which ghosts will teleport to their owner. +# +# Default: 10 +# Range: 0 ~ 1000 +GHOSTS_FOLLOW_OWNER_TELEPORT_DISTANCE = 10 + diff --git a/config/goat_man-common.toml b/config/goat_man-common.toml new file mode 100644 index 0000000..26c8ef9 --- /dev/null +++ b/config/goat_man-common.toml @@ -0,0 +1,250 @@ + +["Spawn Conditions"] + #The spawn chance per tick (once the spawn timer is finished) + #Range: 0.0 ~ 1.0 + spawn_chance_per_tick = 0.05 + #Depth at which the GoatMan can start to spawn + spawn_height = 500 + #Allow GoatMan to spawn underground + spawn_in_caves = true + #Whether the GoatMan can spawn on the surface or not + allow_surface_spawn = true + #The maximum sky light level the GoatMan can spawn at + #Range: 0 ~ 15 + sky_light_level = 14 + #The maximum block light level the GoatMan can spawn at + #Range: 0 ~ 15 + block_light_level = 14 + #The maximum amount of GoatMan which can exist at the same time + #Range: 0 ~ 100 + maximum_amount = 1 + #How close to players the GoatMan is allowed to spawn (in blocks) + #Range: 0 ~ 64 + spawn_distance = 18 + #If set to true the GoatMan will try to find a spawn position with a possible path to the player + check_path_to_spawn = true + + ["Spawn Conditions".Dimensions] + #The dimensions where the GoatMan can spawn in (Whitelist) + dimension_whitelist = ["minecraft:overworld"] + + ["Spawn Conditions".Biomes] + #If you don't want to create a datapack to configure the biomes + override_biome_datapack_config = true + #Use the surface biome list either as white- or blacklist + surface_biomes_is_whitelist = false + #Either white- or blacklist of the surface biomes the GoatMan can spawn in (Syntax: modid:biome, e.g. `minecraft:plains`) + surface_biomes = ["minecraft:desert", "minecraft:badlands", "minecraft:eroded_badlands", "minecraft:wooded_badlands", "minecraft:savanna", "minecraft:savanna_plateau", "minecraft:windswept_savanna", "minecraft:swamp", "minecraft:mangrove_swamp", "minecraft:mushroom_fields", "minecraft:ocean", "minecraft:deep_ocean", "minecraft:cold_ocean", "minecraft:deep_cold_ocean", "minecraft:frozen_ocean", "minecraft:deep_frozen_ocean", "minecraft:ice_spikes", "minecraft:lukewarm_ocean", "minecraft:deep_lukewarm_ocean", "minecraft:warm_ocean", "minecraft:beach", "minecraft:snowy_beach", "minecraft:stony_shore", "minecraft:river", "minecraft:frozen_river", "minecraft:deep_dark"] + + ["Spawn Conditions".Timers] + #Modify the timers for the surface (to reduce or increase them), based on the general timer set (e.g. spawn timer of 300 seconds -> 0.3 turns it into 90 seconds and 1.7 turns it into 510 seconds for the surface) + #Range: 0.0 ~ 5.0 + surface_timer_multiplier = 1.0 + + ["Spawn Conditions".Timers.Spawn] + #Minimum time between spawns in seconds + #Range: 0 ~ 86400 + can_spawn_min = 400 + #Maximum time between spawns in seconds + #Range: 0 ~ 86400 + can_spawn_max = 800 + #Chance for a spawn cooldown to occur + #Range: 0.0 ~ 1.0 + can_spawn_cooldown_chance = 0.05 + #Spawn cooldown length in seconds + #Range: 0 ~ 86400 + can_spawn_cooldown = 1200 + + ["Spawn Conditions".Timers.Noise] + #Minimum time between noise occurrences in seconds + #Range: 0 ~ 86400 + reset_noise_min = 340 + #Maximum time between noise occurrences in seconds + #Range: 0 ~ 86400 + reset_noise_max = 460 + + ["Spawn Conditions".Timers.Leave] + #Time (in seconds) it takes for the GoatMan to leave + #Range: 1 ~ 6000 + time_until_leave = 200 + #Time (in seconds) it takes for the GoatMan to leave once a chase begins + #Range: 1 ~ 600 + time_until_leave_chase = 25 + +[Behaviour] + #The distance in blocks at which the GoatMan can detect whether a player is looking at it or not + #Range: 0 ~ 128 + spotting_range = 100 + #Whether the GoatMan can climb or not + can_climb = true + #Allow the GoatMan to follow vanilla riding logic (e.g. boats) + allow_riding = false + #Whether invisible players can be targets or not + target_invisible = false + #Whether the GoatMan can charge on flat ground + charge = true + #Whether the charge can target mobs + charge_on_mobs = true + #If enabled, GoatMan ignores range requirements and immediately charges a player using a shield + charge_shield_rush = true + #Whether the GoatMan can leap directly at the player + leap = true + #Whether the GoatMan can leap on mobs in addition to players + leap_on_mobs = true + #Whether the GoatMan mimics mob sounds (prioritising the last mob it killed) during calm and stalking phases + mimic_sounds = true + #Whether the GoatMan attacks isolated villagers, wandering traders, and wolves that are separated from their group + pick_off_stragglers = true + #Whether the GoatMan can destroy crops + destroy_crops = true + + [Behaviour."Creep Stalk"] + #Chance a GoatMan spawns in creep-stalk mode when underground + #Range: 0.0 ~ 1.0 + creep_stalk_chance_cave = 0.6 + #Chance a GoatMan spawns in creep-stalk mode on the surface + #Range: 0.0 ~ 1.0 + creep_stalk_chance_surface = 0.3 + #Distance at which the creep-stalk hands off to chase/flee + #Range: 1.0 ~ 32.0 + creep_stalk_trigger_distance = 4.0 + #Creep-stalk movement as a FRACTION of normal speed. 0.05 ≈ player crouch speed (very slow), 1.0 = full speed. Lower = creepier/slower + #Range: 0.03 ~ 1.0 + creep_stalk_speed = 0.5 + + [Behaviour.Charge] + #Minimum duration in seconds — shield charge stun / leap shield-disable when GoatMan hits a blocking player + #Range: 1 ~ 60 + shield_stun_disable_min = 5 + #Maximum duration in seconds — shield charge stun / leap shield-disable when GoatMan hits a blocking player + #Range: 1 ~ 60 + shield_stun_disable_max = 10 + #Blocks broken around entities hit by a charge + #Range: 0 ~ 3 + charge_impact_radius = 2 + #How many blocks GoatMan can break when a charge hits a wall + #Range: 0 ~ 4 + charge_break_blocks = 3 + #Minimum distance to start a charge + #Range: 1.0 ~ 32.0 + charge_min_range = 4.0 + #Maximum distance to start a charge + #Range: 1.0 ~ 64.0 + charge_max_range = 12.0 + #Horizontal speed during the charge + #Range: 0.1 ~ 5.0 + charge_speed = 4.0 + #Total ticks the charge lasts including wind-up + #Range: 10 ~ 200 + charge_duration = 10 + #Wind-up ticks before the charge launches (Ravager-style pause) + #Range: 0 ~ 60 + charge_windup_ticks = 3 + #Base damage radius during charge + #Range: 0.0 ~ 8.0 + charge_damage_radius = 2.0 + #Extra forward damage reach during charge + #Range: 0.0 ~ 8.0 + charge_forward_reach = 2.0 + #Minimum seconds between charges + #Range: 1 ~ 120 + charge_cooldown_min = 3 + #Maximum seconds between charges + #Range: 1 ~ 120 + charge_cooldown_max = 6 + + [Behaviour.Leap] + #Maximum distance to trigger a leap + #Range: 1.0 ~ 32.0 + pounce_range = 30.0 + #Minimum distance to trigger a leap (too close = just melee instead) + #Range: 0.5 ~ 16.0 + pounce_min_range = 9.5 + #Speed of the leap — higher = faster + #Range: 0.1 ~ 5.0 + leap_speed = 4.0 + #Minimum seconds between leap + #Range: 1 ~ 120 + leap_cooldown_min = 3 + #Maximum seconds between leap + #Range: 1 ~ 120 + leap_cooldown_max = 6 + #Radius in blocks around the GoatMan that deals damage while leaping (0 = disabled, uses normal melee only) + #Range: 0.0 ~ 8.0 + pounce_damage_radius = 3.0 + #Radius in blocks around the GoatMan that breaks blocks when leaping into them + #Range: 0 ~ 5 + pounce_break_radius = 3 + +[Attributes] + #Maximum Armor + #Range: 0.0 ~ 20.0 + maximum_armor = 20.0 + #Maximum Health + #Range: 1.0 ~ 500.0 + maximum_health = 100.0 + #Attack Damage + #Range: 0.0 ~ 50.0 + attack_damage = 5.0 + #Movement Speed + #Range: 0.0 ~ 5.0 + movement_speed = 0.6 + #Depth Strider (movement speed in water) Bonus + #Range: 1.0 ~ 3.0 + depth_strider_bonus = 2.0 + +["Goat Herd"] + #Whether the GoatMan randomly summons a herd of goats + summon_herd = true + #Whether goats from the herd can only spawn on the surface (not in caves) + summon_herd_surface_only = true + #Minimum number of goats in the summoned herd + #Range: 1 ~ 20 + summon_herd_size_min = 6 + #Maximum number of goats in the summoned herd + #Range: 1 ~ 20 + summon_herd_size_max = 13 + #Spawn frequency for the summoned herd. 1.0 = normal rate (same as chicken/pig/cow), 0.5 = rare. Higher values spawn more frequently. 0.0 = disabled + #Range: 0.0 ~ 1.0 + summon_herd_frequency = 1.0 + + ["Goat Herd"."Goat Omen"] + #Whether goats spawn independently in the world as an omen of the GoatMan's territory — fires regardless of whether GoatMan is active + omen_goat_enabled = true + #Spawn frequency for omen goats. 1.0 = normal animal rate, 0.5 = rare, 0.0 = disabled + #Range: 0.0 ~ 1.0 + omen_goat_frequency = 1.0 + #Minimum number of omen goats per spawn + #Range: 1 ~ 20 + omen_goat_size_min = 2 + #Maximum number of omen goats per spawn + #Range: 1 ~ 20 + omen_goat_size_max = 3 + +[Music] + #Plays music during stalk and chase like traditional Cave Dweller + music_enabled = true + #Volume for stalk phase and chase phase (0.0 = silent, 1.0 = full) + #Range: 0.0 ~ 1.0 + music_volume = 1.0 + + [Music."Legacy Music"] + #Uses the original chase sounds + chase_sound_legacy = false + #Volume for legacy sounds (0.0 = silent, 1.0 = full) + #Range: 0.0 ~ 1.0 + legacy_chase_volume = 1.0 + +[Misc] + #Only play the ambient noises to the current (spawn) target (Note: The target can change when a spawn attempt is not successful) + only_play_noise_to_target = false + #Whether the charge and leap applies blindness, weakness and nausea on hit + charge_and_leap_apply_effects = true + #Duration in seconds of charge and leap status effects + #Range: 1 ~ 30 + charge_and_leap_effect_duration = 3 + #Whether the GoatMan can break blocks (fences, doors, glass, etc.) + break_block = true + #Whether the GoatMan drops blocks + drop_block = true + diff --git a/config/gobber-general.toml b/config/gobber-general.toml new file mode 100644 index 0000000..e5171f7 --- /dev/null +++ b/config/gobber-general.toml @@ -0,0 +1,421 @@ + +#Gobber Tool Material Values +[gobber_tool_material] + #Gobber tool durability [default: 3800] + #Range: 0 ~ 9000 + gobberToolsDurability = 3800 + #Gobber tool mining speed [default: 9.0] + #Range: 1.0 ~ 25.0 + gobberToolsSpeed = 9.0 + #Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + gobberToolsDamage = 9.0 + #Gobber tool enchantability [default: 20] + #Range: 1 ~ 50 + gobberToolsEnchantability = 20 + +#Nether Gobber Tool Material Values +[nether_gobber_tool_material] + #Nether Gobber tool durability [default: 5200] + #Range: 0 ~ 9000 + netherGobberToolsDurability = 5200 + #Nether Gobber tool mining speed [default: 12.0] + #Range: 1.0 ~ 25.0 + netherGobberToolsSpeed = 12.0 + #Nether Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + netherGobberToolsDamage = 9.0 + #Nether Gobber tool enchantability [default: 25] + #Range: 1 ~ 50 + netherGobberToolsEnchantability = 25 + +#End Gobber Tool Material Values +[end_gobber_tool_material] + #End Gobber tool durability [default: 8000] + #Range: 0 ~ 9000 + endGobberToolsDurability = 8000 + #End Gobber tool mining speed [default: 14.0] + #Range: 1.0 ~ 25.0 + endGobberToolsSpeed = 14.0 + #End Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + endGobberToolsDamage = 9.0 + #End Gobber tool enchantability [default: 30] + #Range: 1 ~ 50 + endGobberToolsEnchantability = 30 + #Should Tools be unbreakable when crafted? [true / false, default: true] + endGobberToolsUnbreakable = true + +#Gobber Armor Material Values +[gobber_armor_material] + #Gobber armor durability multiplier [default: 71] + #Range: 1 ~ 200 + gobberArmorDurabilityMultiplier = 71 + #Gobber armor enchantability [default: 25] + #Range: 1 ~ 50 + gobberArmorEnchantability = 25 + #Gobber armor toughness [default: 2.5] + #Range: 0.0 ~ 20.0 + gobberArmorToughness = 2.5 + #Gobber armor knockback [default: 0.1] + #Range: 0.0 ~ 5.0 + gobberArmorKnockback = 0.1 + #Gobber armor head protection [default: 6] + #Range: 1 ~ 30 + gobberHeadProtection = 6 + #Gobber armor chest protection [default: 11] + #Range: 1 ~ 30 + gobberChestProtection = 11 + #Gobber armor leggings protection [default: 9] + #Range: 1 ~ 30 + gobberLeggingsProtection = 9 + #Gobber armor boots protection [default: 6] + #Range: 1 ~ 30 + gobberBootsProtection = 6 + +#Nether Gobber Armor Material Values +[nether_gobber_armor_material] + #Nether Gobber armor durability multiplier [default: 83] + #Range: 1 ~ 200 + netherGobberArmorDurabilityMultiplier = 83 + #Nether Gobber armor enchantability [default: 30] + #Range: 1 ~ 50 + netherGobberArmorEnchantability = 30 + #Nether Gobber armor toughness [default: 2.75] + #Range: 0.0 ~ 20.0 + netherGobberArmorToughness = 2.75 + #Nether Gobber armor knockback [default: 0.1] + #Range: 0.0 ~ 5.0 + netherGobberArmorKnockback = 0.1 + #Nether armor head protection [default: 7] + #Range: 1 ~ 30 + netherHeadProtection = 7 + #Nether armor chest protection [default: 12] + #Range: 1 ~ 30 + netherChestProtection = 12 + #Nether armor leggings protection [default: 10] + #Range: 1 ~ 30 + netherLeggingsProtection = 10 + #Nether armor boots protection [default: 7] + #Range: 1 ~ 30 + netherBootsProtection = 7 + +#End Gobber Armor Material Values +[end_gobber_armor_material] + #End Gobber armor durability multiplier [default: 100] + #Range: 1 ~ 200 + endGobberArmorDurabilityMultiplier = 100 + #End Gobber armor enchantability [default: 30] + #Range: 1 ~ 50 + endGobberArmorEnchantability = 30 + #End Gobber armor toughness [default: 3.0] + #Range: 0.0 ~ 20.0 + endGobberArmorToughness = 3.0 + #End Gobber armor knockback [default: 0.2] + #Range: 0.0 ~ 5.0 + endGobberArmorKnockback = 0.2 + #Should Armor be unbreakable when crafted? [true / false, default: true] + endGobberArmorUnbreakable = true + #End armor head protection [default: 8] + #Range: 1 ~ 30 + endHeadProtection = 8 + #End armor chest protection [default: 13] + #Range: 1 ~ 30 + endChestProtection = 13 + #End armor leggings protection [default: 11] + #Range: 1 ~ 30 + endLeggingsProtection = 11 + #End armor boots protection [default: 8] + #Range: 1 ~ 30 + endBootsProtection = 8 + +#Dragon Armor Material Values +[dragon_armor_material] + #Dragon armor durability multiplier [default: 100] + #Range: 1 ~ 200 + dragonArmorDurabilityMultiplier = 100 + #Dragon armor enchantability [default: 30] + #Range: 1 ~ 50 + dragonArmorEnchantability = 30 + #Dragon armor toughness [default: 3.0] + #Range: 0.0 ~ 20.0 + dragonArmorToughness = 3.0 + #Dragon armor knockback [default: 0.3] + #Range: 0.0 ~ 5.0 + dragonArmorKnockback = 0.3 + #Should Armor be unbreakable when crafted? [true / false, default: true] + dragonArmorUnbreakable = true + #Dragon armor head protection [default: 8] + #Range: 1 ~ 30 + dragonHeadProtection = 8 + #Dragon armor chest protection [default: 13] + #Range: 1 ~ 30 + dragonChestProtection = 13 + #Dragon armor leggings protection [default: 11] + #Range: 1 ~ 30 + dragonLeggingsProtection = 11 + #Dragon armor boots protection [default: 8] + #Range: 1 ~ 30 + dragonBootsProtection = 8 + +#Armor Health Perks Settings +[armor_health_perk_settings] + #Enable/disable Gobber Armor No Fall Damage [true / false, default: true] + gobberArmorNoFallDamage = true + #Enable/disable Gobber Armor fire protection [true / false, default: true] + gobberArmorFireProtection = false + #Enable/disable Gobber Armor water breathing [true / false, default: true] + gobberArmorWaterBreathing = false + #Enable/disable Gobber Armor health perks [true / false, default: true] + gobberArmorHealthPerks = false + #Enable/disable Gobber Nether Armor health perks [true / false, default: true] + gobberNetherArmorHealthPerks = false + #Enable/disable Gobber End Armor health perks [true / false, default: true] + gobberEndArmorHealthPerks = false + #Enable/disable Gobber Dragon Armor health perks [true / false, default: true] + gobberDragonArmorHealthPerks = true + #Enable/disable Gobber Armor auto feeding [true / false, default: true] + gobberArmorAutofeed = false + #Enable/disable Gobber Nether Armor auto feeding [true / false, default: true] + gobberNetherArmorAutofeed = false + #Enable/disable Gobber End Armor auto feeding [true / false, default: true] + gobberEndArmorAutofeed = false + #Enable/disable Gobber Dragon Armor auto feeding [true / false, default: true] + gobberDragonArmorAutofeed = true + #Enable/disable Gobber Nether Armor yellow hearts perks [true / false, default: true] + gobberNetherArmorYellowHeartsPerks = false + #Enable/disable Gobber End Armor yellow hearts perks [true / false, default: true] + gobberEndArmorYellowHeartsPerks = false + #Enable/disable Gobber Dragon Armor yellow hearts perks [true / false, default: true] + gobberDragonArmorYellowHeartsPerks = true + +#Gobber Food Values +[gobber_foods] + #Goo hunger value [default: 7] + #Range: 0 ~ 25 + gooHunger = 7 + #Goo saturation value [default: 0.7] + #Range: 0.0 ~ 5.0 + gooSaturation = 0.7 + #Gooey apple hunger value [default: 8] + #Range: 0 ~ 25 + gooeyAppleHunger = 8 + #Gooey apple saturation value [default: 0.8] + #Range: 0.0 ~ 5.0 + gooeyAppleSaturation = 0.8 + #Gooey bread hunger value [default: 8] + #Range: 0 ~ 25 + gooeyBreadHunger = 8 + #Gooey bread saturation value [default: 0.8] + #Range: 0.0 ~ 5.0 + gooeyBreadSaturation = 0.8 + #Gooey beef hunger value [default: 9] + #Range: 0 ~ 25 + gooeyBeefHunger = 9 + #Gooey beef saturation value [default: 0.9] + #Range: 0.0 ~ 5.0 + gooeyBeefSaturation = 0.9 + #Gooey beefstew hunger value [default: 10] + #Range: 0 ~ 25 + gooeyBeefstewHunger = 10 + #Gooey beefstew saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + gooeyBeefstewSaturation = 1.0 + +#Nether Gobber Food Values +[nether_gobber_foods] + #Nether Goo hunger value [default: 9] + #Range: 0 ~ 25 + netherGooHunger = 9 + #Nether Goo saturation value [default: 0.9] + #Range: 0.0 ~ 5.0 + netherGooSaturation = 0.9 + #Nether Gooey apple hunger value [default: 10] + #Range: 0 ~ 25 + netherGooeyAppleHunger = 10 + #Nether Gooey apple saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + netherGooeyAppleSaturation = 1.0 + #Nether Gooey bread hunger value [default: 10] + #Range: 0 ~ 25 + netherGooeyBreadHunger = 10 + #Nether Gooey bread saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + netherGooeyBreadSaturation = 1.0 + #Nether Gooey beef hunger value [default: 12] + #Range: 0 ~ 25 + netherGooeyBeefHunger = 12 + #Nether Gooey beef saturation value [default: 1.2] + #Range: 0.0 ~ 5.0 + netherGooeyBeefSaturation = 1.2 + #Nether Gooey beefstew hunger value [default: 14] + #Range: 0 ~ 25 + netherGooeyBeefstewHunger = 14 + #Nether Gooey beefstew saturation value [default: 1.5] + #Range: 0.0 ~ 5.0 + netherGooeyBeefstewSaturation = 1.5 + +#Item Cooldown Settings +[item_cooldown_settings] + #Number of ticks duration for the Ring of Blink cooldown [default: 60] + #Range: 0 ~ 3600 + ringBlinkCooldown = 60 + #Number of ticks duration for the Ring of the Miner cooldown [default: 80] + #Range: 0 ~ 3600 + ringMinerCooldown = 80 + #Number of ticks duration for the Ring of Above cooldown [default: 80] + #Range: 0 ~ 3600 + ringAboveCooldown = 80 + #Number of ticks duration for the Ring of the Explorer cooldown [default: 480] + #Range: 0 ~ 3600 + ringExplorerCooldown = 480 + #Number of ticks duration for the Sword of the Sniper cooldown [default: 60] + #Range: 0 ~ 3600 + swordSniperCooldown = 60 + #Number of ticks duration for the Staff of the Sniper cooldown [default: 60] + #Range: 0 ~ 3600 + staffSniperCooldown = 60 + #Number of ticks duration for the Ring of Husbandry cooldown [default: 2400] + #Range: 0 ~ 9600 + ringHusbandryCooldown = 2400 + +#Ring of the Explorer Settings +[ring_explorer_settings] + #Ring of Explorer - Min distance from world spawn to begin searching for a spot [default: 500] + #Range: 0 ~ 100000 + ringExplorerMin = 500 + #Ring of Explorer - Max distance from world spawn to begin searching for a spot [default: 6000] + #Range: 0 ~ 250000 + ringExplorerMax = 6000 + +#Misc Ring/staff Settings +[misc_ring_staff_settings] + #Ring of Acceleration - amount of velocity applied [default: 0.18] + #Range: 0.0 ~ 0.3 + ringAccelerationVelocity = 0.18 + #Ring of Repair - Delay time between repair ticks [default: 120] + #Range: 20 ~ 600 + ringRepairDelay = 120 + #Ring of Attraction - Radius in which items are pulled [default: 8] + #Range: 0 ~ 24 + ringAttractionBlocking = 8 + #Ring of Attraction - Items are instantly placed in player inventory [true / false, default: true] + ringAttractionMode = true + #Ring of Dismissal - Sets the horizontal velocity [default: 0.2] + #Range: 0.0 ~ 15.0 + ringDismissalVelocity = 0.2 + #Ring of Dismissal - Sets the horizontal range to detect mobs [default: 8.0] + #Range: 0.0 ~ 16.0 + ringDismissalLift = 8.0 + #Enable a single use of the Ring of Teleport [true / false, default: false] + limitedUseRingTeleport = false + #Enable Ring of AirWalking placing glass [true / false, default: true] + placeGlassRingAirWalking = true + +#Ring/Staff of Farmer Settings +[farmer_settings] + #Ring of the Farmer base tick delay [default: 20] + #Range: 10 ~ 120 + ringFarmerTickDelay = 20 + #Ring of the Farmer radius from player [default: 12] + #Range: 2 ~ 20 + ringFarmerRadius = 12 + #Staff of the Farmer base tick delay [default: 20] + #Range: 10 ~ 120 + staffFarmerTickDelay = 20 + #Staff of the Farmer radius from player [default: 12] + #Range: 2 ~ 20 + staffFarmerRadius = 12 + +#Auto Replanting Settings +[replanting_settings] + #Should the Staff of Harvest auto-replant? [true / false, default: true] + StaffHarvestReplant = true + #Should the Staff of Harvest break non-replantable crops? [true / false, default: true] + StaffFarmerBreaking = true + #Should the Staff of the Farmer auto-replant? [true / false, default: true] + StaffFarmerReplant = true + +#Armor Hunger/Saturation Settings +[armor_health_settings] + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.02] + #Range: 0.0 ~ 10.0 + gobberArmorSaturation = 0.02 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberNetherArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.05] + #Range: 0.0 ~ 10.0 + gobberNetherArmorSaturation = 0.05 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberEndArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.10] + #Range: 0.0 ~ 10.0 + gobberEndArmorSaturation = 0.1 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberDragonArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.15] + #Range: 0.0 ~ 10.0 + gobberDragonArmorSaturation = 0.15 + +#Medallion of Experience Settings +[medallion_exp_settings] + #Medallion of Experience multiplier for extra XP orbs [default: 5] + #Range: 0 ~ 20 + medallionExpOrbs = 5 + #Medallion of Experience multiplier for extra mob loot [default: 20] + #Range: 5 ~ 100 + medallionExpLoot = 20 + +#Medallion of Healing Settings +[medallion_healing_settings] + #Medallion of Lesser Healing Food [default: 5] + #Range: 0 ~ 10 + medallionLesserHealingFood = 1 + #Medallion of Lesser Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionLesserHealingSat = 0.02 + #Medallion of Healing Food [default: 5] + #Range: 0 ~ 10 + medallionHealingFood = 1 + #Medallion of Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionHealingSat = 0.05 + #Medallion of Greater Healing Food [default: 5] + #Range: 0 ~ 10 + medallionGreaterHealingFood = 1 + #Medallion of Greater Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionGreaterHealingSat = 0.1 + +#Dragon Star Special +[dragonStar_special] + #Enable Dragon Star Offhannd Function [true / false, default: true] + enableDragonStarOffhand = true + +#Enable Dragon Armor Void Protect - immune to /kill command +[dragon_armor_void] + #Enable Dragon Armor Void Protection [true / false, default: false] + enableDragonArmorVoidProtection = false + +#Dragon Armor Fly in Any Dimension +[dragon_armo_fly_anywhere] + #Enable Dragon Armor flight in any dimension [true / false, default: false] + enableDragonArmorFlyAnywhere = false + +#Bow Zoom Value +[bow_zoom] + #Bow zoom valuee [0.0-1.0, default: .45] + #Range: 0.1 ~ 0.9 + bow_zoom_value = 0.45 + +#Hammer/Excavator Full Damage +[full_damage] + #Hammer/Excavator Full Damage [true/false, default: true] + full_damage = false + diff --git a/config/goblintraders-entities.toml b/config/goblintraders-entities.toml new file mode 100644 index 0000000..f2130c5 --- /dev/null +++ b/config/goblintraders-entities.toml @@ -0,0 +1,176 @@ +# If true, prevents the trader from despawning if named +# Valid values: true, false +preventDespawnIfNamed = true + +[goblinTrader] + # If true, the goblin will try to hit back a player or mob that hit them + # Valid values: true, false + canAttackBack = true + # The maximum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMaxSpawnLevel = 50 + # The minimum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMinSpawnLevel = -64 + # The amount of ticks before the trader will despawn + # Valid range: 1 to 2147483647 (inclusive) + traderDespawnDelay = 24000 + # The amount of ticks to wait before trying to spawn a trader again if the spawn failed + # Valid range: 1 to 2147483647 (inclusive) + spawnInterval = 12000 + # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking + # Valid range: -1 to 2147483647 (inclusive) + restockDelay = 48000 + # The amount of ticks before the trader will start spawning in a new world + # Valid range: 1 to 2147483647 (inclusive) + traderSpawnDelay = 24000 + # The chance out of one hundred that the trader will spawn in the over world + # Valid range: 1 to 100 (inclusive) + traderSpawnChance = 25 + # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. + # Valid range: 1 to 1000 (inclusive) + gruntNoiseInterval = 80 + + [goblinTrader.trades] + + [goblinTrader.trades.uncommon] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 5 + + [goblinTrader.trades.common] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 5 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 8 + + [goblinTrader.trades.legendary] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 0.75 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 1 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 1 + + [goblinTrader.trades.rare] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 4 + + [goblinTrader.trades.epic] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 0 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 2 + +[veinGoblinTrader] + # The minimum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMinSpawnLevel = 0 + # If true, the goblin will try to hit back a player or mob that hit them + # Valid values: true, false + canAttackBack = true + # The maximum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMaxSpawnLevel = 128 + # The amount of ticks before the trader will despawn + # Valid range: 1 to 2147483647 (inclusive) + traderDespawnDelay = 24000 + # The amount of ticks to wait before trying to spawn a trader again if the spawn failed + # Valid range: 1 to 2147483647 (inclusive) + spawnInterval = 12000 + # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking + # Valid range: -1 to 2147483647 (inclusive) + restockDelay = 48000 + # The amount of ticks before the trader will start spawning in a new world + # Valid range: 1 to 2147483647 (inclusive) + traderSpawnDelay = 24000 + # The chance out of one hundred that the trader will spawn in the over world + # Valid range: 1 to 100 (inclusive) + traderSpawnChance = 25 + # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. + # Valid range: 1 to 1000 (inclusive) + gruntNoiseInterval = 80 + + [veinGoblinTrader.trades] + + [veinGoblinTrader.trades.uncommon] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 5 + + [veinGoblinTrader.trades.common] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 5 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 8 + + [veinGoblinTrader.trades.legendary] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 0.75 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 1 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 1 + + [veinGoblinTrader.trades.rare] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 4 + + [veinGoblinTrader.trades.epic] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 2 + diff --git a/config/golemoverhaul.jsonc b/config/golemoverhaul.jsonc new file mode 100644 index 0000000..ceaa81a --- /dev/null +++ b/config/golemoverhaul.jsonc @@ -0,0 +1,9 @@ +{ + "allowSpawning": true, + "spawnBarrelGolems": true, + "spawnCoalGolems": true, + "spawnHayGolems": true, + "spawnHoneyGolems": true, + "spawnSlimeGolems": true, + "spawnTerracottaGolems": true +} \ No newline at end of file diff --git a/config/grand_teleport.properties b/config/grand_teleport.properties new file mode 100644 index 0000000..74116fc --- /dev/null +++ b/config/grand_teleport.properties @@ -0,0 +1,429 @@ +#Grand Teleport client settings +#Sat Jul 04 13:23:12 GMT 2026 +configWidget.done_button.height=0.10101010101010101 +configLayoutDebugEnabled=false +configWidget.cross_dimension_travel_toggle.baseHeight=212 +configWidget.body_height_slider.width=0.5 +configWidget.reset_button.height=0.10101010101010101 +configWidget.zoom_in_ticks_field.baseHeight=198 +configWidget.movement_label.baseWidth=371 +configWidget.body_glide_ticks_label.height=0.07179487179487179 +configWidget.movement_toggle.width=0.25067385444743934 +configWidget.status_unlinked.width=0.13043478260869565 +configWidget.custom_volume_slider.baseWidth=551 +configWidget.player_hide_label.baseWidth=368 +configWidget.zoom_out_slider.baseWidth=368 +configWidget.tab_sounds.height=0.09433962264150944 +configLayoutHeight=0.6005665722379604 +configWidget.sounds_description.baseHeight=212 +configWidget.advanced2_description.x=0.11859838274932614 +configWidget.advanced3_description.height=0.05128205128205128 +configWidget.general_title.height=0.050505050505050504 +configWidget.advanced3_description.baseHeight=195 +configWidget.warp_plate_toggle.height=0.10101010101010101 +configWidget.sounds_description.height=0.04716981132075472 +configWidget.advanced2_description.y=0.15566037735849056 +configWidget.body_height_slider.baseHeight=195 +configWidget.linked_slider.x=0.0 +configWidget.linked_slider.y=0.3314285714285714 +configWidget.effect_toggle.x=0.6954177897574124 +configWidget.effect_toggle.y=0.28773584905660377 +configWidget.body_glide_ticks_label.width=0.5652173913043478 +configWidget.sound_mode_label.width=0.483695652173913 +configWidget.zoom_out_ticks_label.width=0.42934782608695654 +configWidget.external_teleport_label.height=0.045454545454545456 +configWidget.zoom_out_ticks_label.baseHeight=198 +configWidget.tab_zoom_stage.width=0.2183288409703504 +configWidget.tab_zoom_stage_2.width=0.2183288409703504 +configWidget.description.baseHeight=212 +configWidget.linked_slider.baseWidth=0 +configWidget.minecraft_volume_slider.height=0.2222222222222222 +configWidget.cross_dimension_travel_label.x=0.05390835579514825 +configWidget.cross_dimension_travel_label.y=0.6132075471698113 +configWidget.zoom_out_slider.x=0.0 +configWidget.zoom_out_slider.y=0.23076923076923078 +configWidget.player_hide_ticks_field.width=0.25 +configWidget.player_hide_ticks_field.baseWidth=368 +configWidget.player_hide_slider.width=0.8695652173913043 +configWidget.title.width=0.13043478260869565 +endZoomHeightsLinked=true +configWidget.advanced1_title.height=0.05128205128205128 +configWidget.advanced1_description.x=0.22826086956521738 +configWidget.advanced3_description.baseWidth=368 +configWidget.advanced1_description.y=0.13333333333333333 +configWidget.reset_button.baseHeight=198 +configWidget.zoom_out_ticks_field.x=0.5760869565217391 +configWidget.tab_sounds.baseHeight=212 +configWidget.zoom_out_ticks_field.y=0.3282828282828283 +configWidget.custom_volume_slider.height=0.2222222222222222 +configWidget.external_teleport_label.baseHeight=198 +configWidget.zoom_out_slider.width=1.0 +configWidget.tab_others.baseHeight=212 +configWidget.dimension_end.height=0.08080808080808081 +configWidget.tab_zoom_stage.x=0.1778975741239892 +configWidget.sound_mode_label.baseWidth=368 +configWidget.tab_zoom_stage.y=-0.13679245283018868 +configWidget.advanced3_title.baseHeight=195 +configWidget.others_title.height=0.050505050505050504 +configWidget.external_teleport_toggle.height=0.10101010101010101 +configWidget.sound_mode_toggle.baseWidth=368 +configWidget.zoom_stage_glide_ticks_label.baseWidth=368 +configWidget.sounds_title.baseWidth=368 +configWidget.zoom_out_ticks_field.width=0.37228260869565216 +configWidget.tab_zoom_stage_2.baseHeight=212 +configWidget.warp_plate_label.height=0.045454545454545456 +configWidget.movement_toggle.x=0.6954177897574124 +configWidget.movement_toggle.y=0.4386792452830189 +configWidget.advanced3_description.y=0.13333333333333333 +configWidget.advanced3_description.x=0.1956521739130435 +configWidget.zoom_in_ticks_label.baseWidth=368 +configWidget.effect_label.height=0.05188679245283019 +configWidget.advanced3_title.baseWidth=368 +configWidget.tab_general.height=0.09433962264150944 +configWidget.player_hide_label.width=0.5652173913043478 +configWidget.zoom_stage_glide_ticks_field.height=0.10256410256410256 +warpPlateTransitionsEnabled=true +configText.sounds_title=Sound Settings +fallbackChunkFadeEnabled=false +configWidget.player_hide_label.baseHeight=195 +configWidget.player_hide_slider.height=0.22564102564102564 +configWidget.minecraft_volume_slider.width=0.5009074410163339 +netherZoomHeightsLinked=true +configWidget.cross_dimension_travel_label.baseWidth=371 +configWidget.tab_others.x=0.8194070080862533 +configWidget.zoom_in_slider.baseWidth=368 +configWidget.tab_others.height=0.09433962264150944 +configWidget.player_hide_slider.baseHeight=195 +configWidget.zoom_in_ticks_label.baseHeight=198 +configWidget.status_linked.height=0.041025641025641026 +configWidget.zoom_out_ticks_field.height=0.10101010101010101 +configWidget.warp_plate_toggle.y=0.3282828282828283 +configWidget.warp_plate_toggle.x=0.6956521739130435 +configWidget.zoom_stage_glide_slider.height=0.22564102564102564 +configWidget.tab_others.y=-0.13679245283018868 +configText.reset_button=Reset +configWidget.general_description.x=0.19137466307277629 +configWidget.linked_slider.baseHeight=0 +configWidget.dimension_overworld.height=0.08080808080808081 +configWidget.others_description.baseHeight=212 +configWidget.zoom_in_slider.height=0.2222222222222222 +configWidget.dimension_overworld.x=0.4266304347826087 +configWidget.warp_plate_toggle.baseWidth=368 +configWidget.general_description.width=0.31266846361185985 +zoomStageGlideTicks=13 +configWidget.fallback_chunk_fade_label.height=0.06060606060606061 +configWidget.sound_mode_toggle.x=0.6331521739130435 +configWidget.sound_mode_toggle.y=0.2727272727272727 +configWidget.dimension_overworld.y=0.8939393939393939 +configWidget.link_button.baseHeight=198 +configWidget.external_teleport_label.x=0.05434782608695652 +configWidget.external_teleport_label.y=0.5707070707070707 +configWidget.general_description.y=0.15566037735849056 +configWidget.warp_plate_label.y=0.35353535353535354 +configWidget.warp_plate_label.x=0.05434782608695652 +configWidget.movement_label.y=0.46226415094339623 +configWidget.movement_label.x=0.05390835579514825 +configWidget.dimension_nether.baseWidth=368 +endZoomInStage3=128 +configWidget.advanced2_description.width=0.7601078167115903 +configWidget.sounds_description.width=0.6522911051212938 +endZoomInStage1=20 +endZoomInStage2=64 +configWidget.custom_volume_slider.x=0.5009074410163339 +zoomOutStage3=164 +configWidget.custom_volume_slider.y=0.4612794612794613 +configWidget.custom_volume_slider.width=0.5009074410163339 +configWidget.player_hide_slider.baseWidth=368 +configWidget.general_description.baseHeight=212 +configWidget.fallback_chunk_fade_label.width=0.483739837398374 +configWidget.dimension_end.baseHeight=198 +configWidget.tab_zoom_stage_2.height=0.09433962264150944 +configWidget.tab_general.baseHeight=212 +configWidget.movement_toggle.height=0.09433962264150944 +zoomOutStage2=100 +configWidget.advanced1_description.width=0.5407608695652174 +zoomOutStage1=20 +configWidget.external_teleport_label.width=0.483695652173913 +configWidget.link_button.height=0.10101010101010101 +configWidget.dimension_nether.x=0.47554347826086957 +minecraftSoundVolume=0.5 +configWidget.dimension_nether.y=0.8939393939393939 +zoomStageGlideHeight=0.5 +externalTeleportTransitionsEnabled=true +localPlayerHideTicks=2 +configWidget.fallback_chunk_fade_label.baseWidth=246 +netherZoomInStage3=128 +netherZoomInStage2=64 +configWidget.tab_others.width=0.2183288409703504 +netherZoomInStage1=20 +configWidget.zoom_in_ticks_field.baseWidth=368 +zoomOutStageTicks2=8 +configWidget.body_glide_ticks_label.y=0.5333333333333333 +zoomOutStageTicks1=16 +configWidget.body_glide_ticks_label.x=0.043478260869565216 +zoomOutStageTicks3=8 +configWidget.minecraft_volume_slider.x=0.0 +configWidget.minecraft_volume_slider.y=0.4612794612794613 +configWidget.tab_general.y=-0.13679245283018868 +configWidget.tab_general.x=-0.03773584905660377 +configWidget.others_title.baseWidth=368 +configWidget.warp_plate_label.baseWidth=368 +configLayoutBaseHeight=353 +configWidget.advanced3_title.width=0.24456521739130435 +configWidget.advanced1_description.height=0.05128205128205128 +configWidget.status_unlinked.baseWidth=368 +configWidget.body_glide_ticks_field.width=0.25 +configWidget.advanced2_description.baseWidth=371 +configWidget.linked_slider.height=0.2571428571428571 +configWidget.advanced1_title.x=0.37771739130434784 +configWidget.advanced1_title.y=0.015384615384615385 +configWidget.zoom_out_ticks_label.y=0.35353535353535354 +configWidget.zoom_out_ticks_label.x=0.05434782608695652 +configWidget.warp_plate_label.width=0.483695652173913 +configWidget.general_title.baseHeight=198 +configWidget.movement_label.baseHeight=212 +configWidget.advanced1_description.baseWidth=368 +configWidget.tab_general.baseWidth=371 +configWidget.others_title.width=0.2826086956521739 +endZoomOutStage1=20 +configWidget.body_glide_slider.y=0.2153846153846154 +endZoomOutStage3=128 +configLayoutWidth=0.5796875 +endZoomOutStage2=64 +configWidget.body_glide_slider.x=0.5 +configWidget.effect_toggle.height=0.09433962264150944 +configWidget.done_button.baseHeight=198 +configWidget.others_description.y=0.15566037735849056 +configWidget.others_description.x=0.08086253369272237 +configWidget.effect_label.baseWidth=371 +playerFreezeEnabled=true +configWidget.tab_sounds.width=0.2183288409703504 +configWidget.link_button.x=0.47282608695652173 +configWidget.link_button.y=0.7929292929292929 +configWidget.dimension_nether.height=0.08080808080808081 +configWidget.dimension_overworld.baseWidth=368 +configWidget.link_button.width=0.05434782608695652 +configWidget.zoom_in_ticks_field.width=0.37228260869565216 +configWidget.movement_toggle.baseWidth=371 +configWidget.body_glide_ticks_field.baseWidth=368 +configWidget.status_linked.x=0.45652173913043476 +configWidget.status_linked.y=0.9179487179487179 +configWidget.fallback_chunk_fade_toggle.x=0.6956521739130435 +configWidget.external_teleport_toggle.y=0.5454545454545454 +crossDimensionTravelEnabled=false +configWidget.fallback_chunk_fade_toggle.y=0.601010101010101 +configWidget.external_teleport_toggle.x=0.6956521739130435 +configWidget.general_title.baseWidth=368 +configWidget.zoom_stage_glide_ticks_label.height=0.06666666666666667 +configWidget.title.baseHeight=198 +configWidget.zoom_stage_glide_slider.baseWidth=368 +configWidget.minecraft_volume_slider.baseHeight=297 +configWidget.sounds_description.baseWidth=371 +configWidget.others_title.baseHeight=198 +configWidget.warp_plate_toggle.baseHeight=198 +configWidget.general_description.baseWidth=371 +configWidget.cross_dimension_travel_toggle.height=0.09433962264150944 +configWidget.external_teleport_toggle.width=0.25 +configWidget.cross_dimension_travel_label.height=0.05660377358490566 +effectEnabled=true +configWidget.reset_button.y=0.7929292929292929 +configWidget.reset_button.x=0.0 +configWidget.movement_toggle.baseHeight=212 +zoomInStageTicks1=32 +configWidget.dimension_end.width=0.043478260869565216 +zoomInStageTicks3=8 +zoomInStageTicks2=16 +configWidget.zoom_stage_glide_slider.width=1.0 +configWidget.effect_label.y=0.3113207547169811 +configWidget.effect_label.x=0.05390835579514825 +configWidget.description.baseWidth=371 +configLayoutSnapEnabled=false +configWidget.sound_mode_label.baseHeight=198 +configLayoutCustom=true +zoomInStage1=20 +configWidget.player_hide_ticks_field.baseHeight=195 +configText.fallback_chunk_fade_label=Vanilla/Sodium chunk-mask fade +zoomInStage3=164 +zoomInStage2=100 +configWidget.fallback_chunk_fade_toggle.baseHeight=198 +configWidget.player_hide_slider.x=0.021739130434782608 +configWidget.player_hide_slider.y=0.5692307692307692 +configWidget.title.height=0.05555555555555555 +configWidget.body_glide_ticks_label.baseWidth=368 +configWidget.body_height_slider.x=0.0 +configWidget.body_height_slider.y=0.2153846153846154 +configWidget.zoom_in_slider.baseHeight=198 +configWidget.movement_label.width=0.4366576819407008 +configLayoutBaseWidth=640 +configWidget.custom_volume_slider.baseHeight=297 +configWidget.title.x=0.43478260869565216 +configWidget.effect_toggle.width=0.25067385444743934 +configWidget.title.y=0.020202020202020204 +configWidget.zoom_stage_glide_slider.baseHeight=195 +configLayoutY=0.23796033994334279 +configWidget.advanced1_title.baseWidth=368 +configLayoutX=0.2109375 +configLayoutEditorButtonVisible=false +configText.zoom_out_ticks_label=Zoom-out stage ticks +configWidget.advanced1_description.baseHeight=195 +configWidget.zoom_stage_glide_ticks_field.baseHeight=195 +configWidget.external_teleport_label.baseWidth=368 +bodyCameraHeight=6.0 +configWidget.general_title.y=0.020202020202020204 +configWidget.status_unlinked.height=0.041025641025641026 +configWidget.general_title.x=0.3451086956521739 +configWidget.dimension_overworld.baseHeight=198 +configWidget.warp_plate_label.baseHeight=198 +configWidget.body_glide_ticks_field.baseHeight=195 +configWidget.fallback_chunk_fade_toggle.height=0.10101010101010101 +configWidget.advanced1_title.baseHeight=195 +configWidget.body_glide_slider.baseWidth=368 +configWidget.body_glide_slider.width=0.5 +configWidget.external_teleport_toggle.baseWidth=368 +configText.advanced2_description=Set tick lengths for each zoom stage. (1st / 2nd / 3rd) +configWidget.body_glide_ticks_field.height=0.10256410256410256 +configWidget.zoom_in_slider.width=1.0 +configWidget.zoom_stage_glide_ticks_label.baseHeight=195 +configWidget.advanced2_title.width=0.24456521739130435 +configWidget.sounds_title.height=0.050505050505050504 +configWidget.sound_mode_toggle.height=0.10101010101010101 +configText.done_button=Close +configWidget.zoom_in_ticks_label.y=0.5707070707070707 +zoomHeightsLinked=true +netherZoomOutStage1=20 +netherZoomOutStage2=64 +configWidget.minecraft_volume_slider.baseWidth=551 +netherZoomOutStage3=128 +configWidget.body_glide_ticks_label.baseHeight=195 +configWidget.zoom_stage_glide_ticks_label.y=0.6153846153846154 +configWidget.zoom_stage_glide_ticks_label.x=0.03804347826086957 +configWidget.zoom_out_ticks_label.height=0.06060606060606061 +configWidget.zoom_in_ticks_label.width=0.42934782608695654 +configWidget.general_title.width=0.3125 +configWidget.zoom_in_ticks_label.x=0.05434782608695652 +configWidget.others_description.width=0.8382749326145552 +configWidget.advanced2_title.y=0.020202020202020204 +configWidget.advanced2_title.x=0.37771739130434784 +configWidget.zoom_stage_glide_slider.x=0.0 +configWidget.zoom_stage_glide_slider.y=0.26153846153846155 +configWidget.advanced3_description.width=0.6059782608695652 +configWidget.external_teleport_toggle.baseHeight=198 +configWidget.tab_sounds.baseWidth=371 +configWidget.status_linked.width=0.08695652173913043 +configWidget.zoom_stage_glide_ticks_field.width=0.25 +configWidget.status_unlinked.baseHeight=195 +configWidget.effect_label.baseHeight=212 +configWidget.others_title.y=0.020202020202020204 +configWidget.others_title.x=0.358695652173913 +configWidget.sounds_title.y=0.020202020202020204 +configWidget.effect_label.width=0.31805929919137466 +configWidget.advanced2_description.baseHeight=212 +configWidget.sounds_title.x=0.35597826086956524 +configWidget.advanced3_title.y=0.015384615384615385 +configWidget.advanced3_title.x=0.37771739130434784 +configWidget.body_glide_slider.baseHeight=195 +bodyGlideHeight=0.5 +configWidget.zoom_stage_glide_ticks_field.baseWidth=368 +configWidget.effect_toggle.baseWidth=371 +configWidget.player_hide_ticks_field.height=0.10256410256410256 +configWidget.zoom_in_ticks_label.height=0.06060606060606061 +configWidget.description.width=0.6738544474393531 +configWidget.zoom_out_slider.baseHeight=195 +configWidget.sounds_title.baseHeight=198 +configWidget.dimension_end.baseWidth=368 +customSoundsEnabled=true +configWidget.tab_zoom_stage.baseWidth=371 +configWidget.others_description.height=0.04716981132075472 +configWidget.dimension_nether.baseHeight=198 +configWidget.advanced2_description.height=0.04716981132075472 +configLayoutGridEnabled=true +configWidget.tab_sounds.x=0.6091644204851752 +configWidget.description.height=0.05188679245283019 +configWidget.cross_dimension_travel_toggle.baseWidth=371 +configWidget.tab_sounds.y=-0.13679245283018868 +customSoundVolume=0.5 +configText.advanced2_title=ZoomStage Settings (2) +configWidget.sound_mode_label.x=0.06521739130434782 +configWidget.sound_mode_label.y=0.29797979797979796 +configWidget.body_glide_ticks_field.x=0.7038043478260869 +configWidget.general_description.height=0.05188679245283019 +configWidget.others_description.baseWidth=371 +configWidget.reset_button.width=0.44565217391304346 +configWidget.body_glide_ticks_field.y=0.5025641025641026 +configWidget.zoom_out_ticks_label.baseWidth=368 +configWidget.fallback_chunk_fade_label.baseHeight=132 +configWidget.tab_zoom_stage_2.y=-0.13679245283018868 +configWidget.tab_zoom_stage_2.x=0.3935309973045822 +configWidget.body_height_slider.baseWidth=368 +configWidget.sound_mode_toggle.width=0.30434782608695654 +configWidget.cross_dimension_travel_label.baseHeight=212 +configWidget.status_linked.baseHeight=195 +configWidget.dimension_end.x=0.5244565217391305 +configWidget.dimension_end.y=0.8939393939393939 +configText.linked_slider=\ camera_zoom 1st / 2nd / 3rd +configWidget.link_button.baseWidth=368 +configWidget.done_button.baseWidth=368 +configWidget.advanced3_title.height=0.05128205128205128 +configWidget.zoom_in_ticks_field.height=0.10101010101010101 +configWidget.done_button.width=0.44565217391304346 +configText.others_title=Other Settings +configWidget.linked_slider.width=1.0 +configWidget.description.y=0.15566037735849056 +configWidget.description.x=0.16172506738544473 +configText.general_title=General Settings +configWidget.tab_zoom_stage_2.baseWidth=371 +configWidget.tab_zoom_stage.height=0.09433962264150944 +configWidget.tab_general.width=0.2183288409703504 +configWidget.player_hide_ticks_field.y=0.6461538461538462 +configWidget.cross_dimension_travel_label.width=0.5417789757412399 +configWidget.player_hide_ticks_field.x=0.7038043478260869 +configWidget.fallback_chunk_fade_toggle.width=0.25 +configWidget.advanced1_title.width=0.24456521739130435 +configText.advanced1_title=GTP Advanced Settings (1) +configWidget.warp_plate_toggle.width=0.25 +configWidget.zoom_in_ticks_field.x=0.5760869565217391 +configWidget.zoom_out_ticks_field.baseHeight=198 +configWidget.zoom_in_ticks_field.y=0.5454545454545454 +configWidget.fallback_chunk_fade_label.x=0.052845528455284556 +configWidget.dimension_overworld.width=0.043478260869565216 +configWidget.fallback_chunk_fade_label.y=0.6287878787878788 +configWidget.sound_mode_toggle.baseHeight=198 +configWidget.reset_button.baseWidth=368 +configWidget.tab_others.baseWidth=371 +configWidget.done_button.y=0.7929292929292929 +configWidget.done_button.x=0.5543478260869565 +configWidget.body_glide_slider.height=0.24102564102564103 +configWidget.sound_mode_label.height=0.05555555555555555 +configText.title=ZoomStage Settings +configWidget.zoom_out_slider.height=0.22564102564102564 +configWidget.tab_zoom_stage.baseHeight=212 +configWidget.zoom_stage_glide_ticks_label.width=0.5652173913043478 +configWidget.sounds_description.x=0.1752021563342318 +configWidget.sounds_description.y=0.15566037735849056 +configWidget.movement_label.height=0.06132075471698113 +configText.advanced3_title=GTP Advanced Settings (3) +configWidget.title.baseWidth=368 +configWidget.zoom_stage_glide_ticks_field.y=0.5897435897435898 +configWidget.zoom_in_slider.x=0.0 +configWidget.zoom_stage_glide_ticks_field.x=0.7092391304347826 +configWidget.advanced2_title.baseWidth=368 +configWidget.zoom_in_slider.y=0.5050505050505051 +configWidget.player_hide_label.height=0.06153846153846154 +configLayoutAspectLocked=false +configWidget.sounds_title.width=0.28804347826086957 +configWidget.fallback_chunk_fade_toggle.baseWidth=368 +configWidget.body_height_slider.height=0.24102564102564103 +configWidget.status_unlinked.y=0.9179487179487179 +configWidget.effect_toggle.baseHeight=212 +configWidget.status_unlinked.x=0.43478260869565216 +configWidget.dimension_nether.width=0.043478260869565216 +configWidget.player_hide_label.x=0.043478260869565216 +configWidget.advanced2_title.baseHeight=198 +configWidget.cross_dimension_travel_toggle.width=0.25067385444743934 +configWidget.cross_dimension_travel_toggle.x=0.6954177897574124 +configWidget.cross_dimension_travel_toggle.y=0.589622641509434 +bodyGlideTicks=10 +configWidget.status_linked.baseWidth=368 +configWidget.zoom_out_ticks_field.baseWidth=368 +configWidget.advanced2_title.height=0.050505050505050504 +configWidget.player_hide_label.y=0.676923076923077 diff --git a/config/grapplemod.toml b/config/grapplemod.toml new file mode 100644 index 0000000..ba86a7c --- /dev/null +++ b/config/grapplemod.toml @@ -0,0 +1,216 @@ +[options.grapplinghook.custom.rope.maxlen] +default_value = 30.0 +enabled = 0 +max = 60.0 +max_upgraded = 200.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.rope.phaserope] +default_value = false +enabled = 0 +[options.grapplinghook.custom.rope.sticky] +default_value = false +enabled = 0 +[options.grapplinghook.custom.hookthrower.hookgravity] +default_value = 1.0 +enabled = 0 +max = 100.0 +max_upgraded = 100.0 +min = 1.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.hookthrower.throwspeed] +default_value = 2.0 +enabled = 0 +max = 5.0 +max_upgraded = 20.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.hookthrower.reelin] +default_value = true +enabled = 0 +[options.grapplinghook.custom.hookthrower.verticalthrowangle] +default_value = 0.0 +enabled = 0 +max = 45.0 +max_upgraded = 90.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.hookthrower.sneakingverticalthrowangle] +default_value = 0.0 +enabled = 0 +max = 45.0 +max_upgraded = 90.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.hookthrower.detachonkeyrelease] +default_value = false +enabled = 0 +[options.grapplinghook.custom.motor.motor] +default_value = false +enabled = 0 +[options.grapplinghook.custom.motor.motormaxspeed] +default_value = 4.0 +enabled = 0 +max = 4.0 +max_upgraded = 10.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.motor.motoracceleration] +default_value = 0.2 +enabled = 0 +max = 0.2 +max_upgraded = 1.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.motor.motorwhencrouching] +default_value = false +enabled = 0 +[options.grapplinghook.custom.motor.motorwhennotcrouching] +default_value = true +enabled = 0 +[options.grapplinghook.custom.motor.smartmotor] +default_value = false +enabled = 0 +[options.grapplinghook.custom.motor.motordampener] +default_value = false +enabled = 1 +[options.grapplinghook.custom.motor.pullbackwards] +default_value = true +enabled = 0 +[options.grapplinghook.custom.swing.playermovementmult] +default_value = 1.0 +enabled = 0 +max = 2.0 +max_upgraded = 5.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.enderstaff.enderstaff] +default_value = false +enabled = 0 +[options.grapplinghook.custom.forcefield.repel] +default_value = false +enabled = 0 +[options.grapplinghook.custom.forcefield.repelforce] +default_value = 1.0 +enabled = 0 +max = 1.0 +max_upgraded = 5.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.magnet.attract] +default_value = false +enabled = 0 +[options.grapplinghook.custom.magnet.attractradius] +default_value = 3.0 +enabled = 0 +max = 3.0 +max_upgraded = 10.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.doublehook.doublehook] +default_value = false +enabled = 0 +[options.grapplinghook.custom.doublehook.smartdoublemotor] +default_value = true +enabled = 0 +[options.grapplinghook.custom.doublehook.angle] +default_value = 20.0 +enabled = 0 +max = 45.0 +max_upgraded = 90.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.doublehook.sneakingangle] +default_value = 10.0 +enabled = 0 +max = 45.0 +max_upgraded = 90.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.doublehook.oneropepull] +default_value = false +enabled = 0 +[options.grapplinghook.custom.rocket.rocketenabled] +default_value = false +enabled = 0 +[options.grapplinghook.custom.rocket.rocket_force] +default_value = 1.0 +enabled = 0 +max = 1.0 +max_upgraded = 5.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.rocket.rocket_active_time] +default_value = 0.5 +enabled = 0 +max = 0.5 +max_upgraded = 20.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.custom.rocket.rocket_refuel_ratio] +default_value = 15.0 +enabled = 0 +max = 30.0 +max_upgraded = 30.0 +min = 15.0 +min_upgraded = 1.0 +[options.grapplinghook.custom.rocket.rocket_vertical_angle] +default_value = 0.0 +enabled = 0 +max = 90.0 +max_upgraded = 90.0 +min = 0.0 +min_upgraded = 0.0 +[options.grapplinghook.blocks] +grapplingBlocks = "any" +grapplingNonBlocks = "none" +grappleBreakBlocks = "none" +[options.grapplinghook.other] +hookaffectsentities = true +rope_snap_buffer = 5.0 +default_durability = 500 +rope_jump_power = 1.0 +rope_jump_at_angle = false +rope_jump_cooldown_s = 0.0 +climb_speed = 0.3 +[options.longfallboots] +longfallbootsrecipe = true +[options.enderstaff] +ender_staff_strength = 1.5 +ender_staff_recharge = 100 +[options.enchantments.wallrun] +wall_jump_up = 0.7 +wall_jump_side = 0.4 +max_wallrun_time = 3.0 +wallrun_speed = 0.1 +wallrun_max_speed = 0.7 +wallrun_drag = 0.01 +wallrun_min_speed = 0.0 +enchant_rarity_wallrun = 0 +[options.enchantments.doublejump] +doublejumpforce = 0.8 +doublejump_relative_to_falling = false +dont_doublejump_if_falling_faster_than = 9.9999999E7 +enchant_rarity_double_jump = 0 +[options.enchantments.slide] +slidingjumpforce = 0.6 +sliding_friction = 0.006666666828095913 +sliding_min_speed = 0.15 +sliding_end_min_speed = 0.01 +enchant_rarity_sliding = 0 +[options.other] +override_allowflight = true +airstrafe_max_speed = 0.7 +airstrafe_acceleration = 0.015 +dont_override_movement_in_air = false +[clientOptions.camera] +wallrun_camera_tilt_degrees = 10.0 +wallrun_camera_animation_s = 0.5 +[clientOptions.sounds] +wallrun_sound_effect_time_s = 0.35 +wallrun_sound_volume = 1.0 +doublejump_sound_volume = 1.0 +slide_sound_volume = 1.0 +wallrunjump_sound_volume = 1.0 +rocket_sound_volume = 1.0 +enderstaff_sound_volume = 1.0 diff --git a/config/gravelminer-common.toml b/config/gravelminer-common.toml new file mode 100644 index 0000000..8701f9c --- /dev/null +++ b/config/gravelminer-common.toml @@ -0,0 +1,18 @@ + +[common] + #Blocks that will fall and break into items when hitting a non-solid block. Format: modid:name + gravelBlocks = ["minecraft:gravel"] + #If set to true, the mod will trigger when mining gravel as well, instead of only when mining a non-gravel block below gravel. + triggerOnGravel = true + #If set to true, GravelMiner will only be active for users who install the mod on their clients (for use in servers). + isOptIn = true + #If set to true, gravel mined via GravelMiner will have a chance of dropping as flint (server-side only). + rollFlintChance = true + +[client] + #Whether GravelMiner is currently enabled for this client (toggled via keybind) + isEnabled = true + #Defines when GravelMiner should activate. Either ALWAYS, WHEN_SNEAKING or WHEN_NOT_SNEAKING + #Allowed Values: ALWAYS, WHEN_SNEAKING, WHEN_NOT_SNEAKING + activation = "ALWAYS" + diff --git a/config/graveyard-1.19.x-common.toml b/config/graveyard-1.19.x-common.toml new file mode 100644 index 0000000..5e91efd --- /dev/null +++ b/config/graveyard-1.19.x-common.toml @@ -0,0 +1,230 @@ + +["The Graveyard - Corrupted Champion Config"] + + ["The Graveyard - Corrupted Champion Config".corruptedChampion] + #Range: 1.0 ~ 1024.0 + healthInCastingPhase = 400.0 + isBossSummonableItem = ["item.minecraft.debug_stick"] + #Range: 1 ~ 100 + maxAmountSkullsInShootSkullSpell = 5 + #Range: 0 ~ 100 + maxSummonedMobs = 30 + #Range: 0 ~ 100000 + ghoulSpawnTimerInFight = 6000 + #Range: 1.0 ~ 2048.0 + damageHuntingPhaseAddition = 40.0 + #Range: 1 ~ 100000 + cooldownTeleportPlayerAndHeal = 600 + #Range: 0 ~ 100000 + durationHuntingPhase = 800 + #Range: 0 ~ 100000 + durationHealingSpell = 700 + #Range: 1.0 ~ 1024.0 + healthInHuntingPhase = 200.0 + #Range: 1 ~ 100 + maxGroupSizeSummonedMobs = 5 + #Range: 1 ~ 100000 + cooldownLevitationSpell = 400 + #Range: 1 ~ 100000 + cooldownCorpseSpell = 400 + #Range: 0.0 ~ 20.0 + armorToughness = 14.0 + isMultiphaseFight = true + #Range: 0.0 ~ 30.0 + armor = 18.0 + #Range: 0 ~ 100000 + durationLevitationSpell = 150 + #Range: 1.0 ~ 2048.0 + damageCastingPhase = 30.0 + isInvulnerableDuringSpells = true + #Range: 0 ~ 100000 + durationFallingCorpseSpell = 400 + isBloodCollectableEntity = ["entity.minecraft.villager"] + summoningNeedsStaffFragments = true + #Range: -64 ~ 100000 + playerTeleportYOffset = -15 + #Range: 0.0 ~ 1024.0 + speedInHuntPhase = 0.15 + +["The Graveyard - Particle Config"] + + ["The Graveyard - Particle Config".particle] + generate = true + #Range: 1 ~ 500 + frequency = 50 + +["The Graveyard - Mob Spawning Config"] + + ["The Graveyard - Mob Spawning Config".acolyte] + canBurnInSunlight = false + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".corruptedVindicator] + canBurnInSunlight = true + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".revenant] + #Range: 1 ~ 100 + maxGroupSizeRevenant = 8 + canBurnInSunlight = true + #Range: 0 ~ 100 + weight = 25 + canBeWithered = true + enabled = true + #Range: 1 ~ 100 + minGroupSizeRevenant = 5 + + ["The Graveyard - Mob Spawning Config".wraith] + canBurnInSunlight = true + canBeWithered = false + enabled = false + + ["The Graveyard - Mob Spawning Config".skeleton_creeper] + #Range: 1 ~ 100 + minGroupSizeSkeletonCreeper = 1 + canBurnInSunlight = true + #Range: 1 ~ 100 + maxGroupSizeSkeletonCreeper = 4 + #Range: 0 ~ 100 + weight = 25 + canBeWithered = true + enabled = true + + ["The Graveyard - Mob Spawning Config".corruptedPillager] + canBurnInSunlight = true + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".ghoul] + canBurnInSunlight = true + #Range: 1 ~ 100 + minGroupSizeGhoul = 2 + #Range: 0 ~ 100 + weight = 25 + #Range: 1 ~ 100 + maxGroupSizeGhoul = 5 + canBeWithered = true + enabled = true + + ["The Graveyard - Mob Spawning Config".reaper] + canBurnInSunlight = true + #Range: 0 ~ 100 + weight = 10 + #Range: 1 ~ 100 + maxGroupSizeGhoul = 3 + canBeWithered = true + enabled = true + #Range: 1 ~ 100 + minGroupSizeReaper = 2 + + ["The Graveyard - Mob Spawning Config".nightmare] + #Range: 1 ~ 100 + minGroupSizeNightmare = 1 + canBurnInSunlight = false + #Range: 0 ~ 100 + weight = 10 + canBeWithered = false + enabled = true + #Range: 1 ~ 100 + maxGroupSizeNightmare = 1 + +["The Graveyard - Horde Config"] + + ["The Graveyard - Horde Config".horde] + #Range: 0 ~ 1000 + mobSpawnAttempts = 40 + #Range: 1 ~ 1000000 + ticksUntilSpawnHorde = 24000 + #Range: 1 ~ 1000000 + additionalRandomizedTicks = 1200 + generate = true + +# Welcome to The Graveyard Config!Welcome to The Graveyard Config! +# +#Structures: +# Enable or disable structure spawns. +# +#Mobs: +#Configure spawning weight and group size of the spawn (ghoul, revenant, reaper, nightmare, skeleton creeper). +# Configure if mobs burn in sunlight and/or if mobs are affected by the wither effect. +# +#Additional: +#Configure graveyard fog particles rising from moss and set the chance of spawning them (higher numbers = lower chance of spawning). +# Configure if hordes of graveyard mobs can spawn and set their size and frequency. +# Configure if urns have a double chest inventory. +# Configure if the wither skeleton spawner in the large graveyard will be replaced by a skeleton spawner. +# +#Configure if boss music plays during the fight against the Corrupted Champion. +# +# +# +#Music: +# +#Incarnated Evil by Rotch Gwylt (Official The Graveyard Soundtrack). +# +["The Graveyard - Structures Config"] + + ["The Graveyard - Structures Config".smallGrave] + generate = true + + ["The Graveyard - Structures Config".smallMountainGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallSavannaGrave] + generate = true + + ["The Graveyard - Structures Config".crypt] + generate = true + + ["The Graveyard - Structures Config".hauntedHouse] + generate = true + + ["The Graveyard - Structures Config".lichPrison] + generate = true + + ["The Graveyard - Structures Config".mediumGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallDesertGraveyard] + generate = true + + ["The Graveyard - Structures Config".giantMushroom] + generate = true + + ["The Graveyard - Structures Config".smallDesertGrave] + generate = true + + ["The Graveyard - Structures Config".altar] + generate = true + + ["The Graveyard - Structures Config".largeGraveyard] + generate = true + + ["The Graveyard - Structures Config".ruins] + generate = true + + ["The Graveyard - Structures Config".mushroomGrave] + generate = true + + ["The Graveyard - Structures Config".deadTree] + generate = true + + ["The Graveyard - Structures Config".memorialTree] + generate = true + +["The Graveyard - Additional Config"] + + ["The Graveyard - Additional Config".urn] + urnHasDoubleInventory = true + + ["The Graveyard - Additional Config".spawner] + disableWitherSkeletonSpawner = false + + ["The Graveyard - Additional Config".bossMusic] + enableBossMusic = true + diff --git a/config/graveyard/the-graveyard-3.0-config.json5 b/config/graveyard/the-graveyard-3.0-config.json5 new file mode 100644 index 0000000..e348900 --- /dev/null +++ b/config/graveyard/the-graveyard-3.0-config.json5 @@ -0,0 +1,201 @@ +{ + /* Welcome to The Graveyard Config! + + Structures: + Enable or disable structure spawns. + + Mobs: + Configure if mobs burn in sunlight and/or if mobs are affected by the wither effect (all graveyard mobs). + Configure the biomes, in which graveyard mobs spawn. + Fabric: + Configure spawning weight and group size of the spawn (ghoul, revenant, nightmare, skeleton creeper). + Forge: + To configure spawning weight and group size, change the .json files in data/graveyard/forge/biome_modifiers. + + + Additional: + Configure graveyard fog particles rising from moss and set the chance of spawning them (higher numbers = lower chance of spawning). + Configure if hordes of graveyard mobs can spawn and set their size and frequency. + Configure if urns have a double chest inventory. + Configure if the wither skeleton spawner in the large graveyard will be replaced by a skeleton spawner. + +*/ + "structureConfigEntries": { + "small_grave": { + "enabled": true + }, + "crypt": { + "enabled": true + }, + "small_graveyard": { + "enabled": true + }, + "small_desert_grave": { + "enabled": true + }, + "memorial_tree": { + "enabled": true + }, + "small_desert_graveyard": { + "enabled": true + }, + "large_graveyard": { + "enabled": true + }, + "small_savanna_grave": { + "enabled": true + }, + "mushroom_grave": { + "enabled": true + }, + "haunted_house": { + "enabled": true + }, + "giant_mushroom": { + "enabled": true + }, + "altar": { + "enabled": true + }, + "ruins": { + "enabled": true + }, + "medium_graveyard": { + "enabled": true + }, + "lich_prison": { + "enabled": true + }, + "dead_tree": { + "enabled": true + }, + "small_mountain_grave": { + "enabled": true + } + }, + "particleConfigEntries": { + "graveyard_fog_particle": { + "canGenerate": true, + "spawnChance": 50 + } + }, + "mobConfigEntries": { + "acolyte": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": false, + "canBeWithered": false + }, + "revenant": { + "enabled": true, + "weight": 25, + "minGroup": 5, + "maxGroup": 8, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "wraith": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "corrupted_vindicator": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "skeleton_creeper": { + "enabled": true, + "weight": 25, + "minGroup": 1, + "maxGroup": 4, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "corrupted_pillager": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "ghoul": { + "enabled": true, + "weight": 25, + "minGroup": 2, + "maxGroup": 5, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "reaper": { + "enabled": true, + "weight": 5, + "minGroup": 2, + "maxGroup": 3, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "nightmare": { + "enabled": true, + "weight": 10, + "minGroup": 1, + "maxGroup": 1, + "canBurnInSunlight": false, + "canBeWithered": false + } + }, + "hordeConfigEntries": { + "horde_spawn": { + "enabled": true, + "mobSpawnAttempts": 40, + "ticksUntilNextSpawn": 24000, + "additionalRandomizedTicks": 1200 + } + }, + "corruptedChampionConfigEntries": { + "corrupted_champion": { + "healthInCastingPhase": 400.0, + "healthInHuntingPhase": 200.0, + "damageCastingPhase": 30.0, + "damageHuntingPhaseAddition": 40.0, + "armor": 14.0, + "armorToughness": 12.0, + "speedInHuntPhase": 0.15, + "durationHuntingPhase": 800, + "durationFallingCorpseSpell": 400, + "durationHealingSpell": 700, + "durationLevitationSpell": 150, + "maxAmountSkullsInShootSkullSpell": 5, + "maxSummonedMobs": 30, + "maxGroupSizeSummonedMobs": 5, + "ghoulSpawnTimerInFight": 6000, + "isBloodCollectableEntity": [ + "entity.minecraft.villager" + ], + "isBossSummonableItem": [ + "item.minecraft.debug_stick" + ], + "summoningNeedsStaffFragments": true, + "isMultiphaseFight": true, + "isInvulnerableDuringSpells": true, + "cooldownCorpseSpell": 400, + "cooldownTeleportPlayerAndHeal": 600, + "cooldownLevitationSpell": 400, + "playerTeleportYOffset": -15 + } + }, + "booleanEntries": { + "disableWitherSkeletonSpawner": false, + "urnHasDoubleInventory": true, + "enableBossMusic": true + } +} diff --git a/config/great_scrollable_tooltips.toml b/config/great_scrollable_tooltips.toml new file mode 100644 index 0000000..993c42c --- /dev/null +++ b/config/great_scrollable_tooltips.toml @@ -0,0 +1,3 @@ +enable = true +sensitivity = 10 +auto_reset = true \ No newline at end of file diff --git a/config/grimoireofgaia-client.toml b/config/grimoireofgaia-client.toml new file mode 100644 index 0000000..4c95ae8 --- /dev/null +++ b/config/grimoireofgaia-client.toml @@ -0,0 +1,6 @@ + +#Client settings +[client] + #When enabled makes the mobs look more gender neutral (default: false) + genderNeutral = false + diff --git a/config/grimoireofgaia-common.toml b/config/grimoireofgaia-common.toml new file mode 100644 index 0000000..44742f8 --- /dev/null +++ b/config/grimoireofgaia-common.toml @@ -0,0 +1,72 @@ + +#General Settings +[General] + #Disable mobs that use the Invisibility status effect when far from a player [Default: false] + disableInvisibility = false + #All mobs are now hostile [Default: false] + allPassiveMobsHostile = false + #Hostile day mobs will no longer attack players on sight [default: false] + passiveHostileMobs = false + #Stop befriended mobs from despawning [Default: false] + friendlyPersistence = false + +#Attribute settings +[Attributes] + + #Tier 1 + [Attributes.Tier1] + #Defines the health of Tier 1 Gaia mobs [40 = 20 Hearts] + #Range: > 1 + tier1maxHealth = 40 + #Defines the attack damage of Tier 1 Gaia mobs [4 = 2 Hearts] + #Range: > 1 + tier1attackDamage = 4 + #Defines the maximum amount of hits required to defeat Tier 1 Gaia mobs (0 = disable) + #Range: > 0 + tier1baseDefense = 2 + + #Tier 2 + [Attributes.Tier2] + #Defines the health of Tier 2 Gaia mobs [80 = 40 Hearts] + #Range: > 1 + tier2maxHealth = 80 + #Defines the attack damage of Tier 2 Gaia mobs [8 = 4 Hearts] + #Range: > 1 + tier2attackDamage = 8 + #Defines the maximum amount of hits required to defeat Tier 2 Gaia mobs (0 = disable) + #Range: > 0 + tier2baseDefense = 4 + + #Tier 3 + [Attributes.Tier3] + #Defines the health of Tier 3 Gaia mobs [160 = 80 Hearts] + #Range: > 1 + tier3maxHealth = 160 + #Defines the attack damage of Tier 3 Gaia mobs [12 = 6 Hearts] + #Range: > 1 + tier3attackDamage = 12 + #Defines the maximum amount of hits required to defeat Tier 3 Gaia mobs (0 = disable) + #Range: > 0 + tier3baseDefense = 8 + +#Damage settings +[Damage] + #Archers arrows deal an additional 1 (0.5 heart) of damage. [Default: true] + baseDamage = true + #Base Damage (melee) won't penetrate Shields. [Default: true] + shieldsBlockPiercing = true + +#Spawn settings +[Spawn] + #Mobs only spawn after a certain amount of days have passed [Default: false] + spawnDaysPassed = false + #Amount of days required to have passed before they can start spawning [Default: 3] + #Range: > 1 + spawnDaysSet = 3 + #Level 3 mobs only spawn when it is raining/snowing [Default: false] + spawnLevel3Rain = false + #Remove spawn conditions related to height (Y-axis) [Default: false] + disableYRestriction = false + #Remove spawn conditions related to weather [Default: false] + spawnWeather = false + diff --git a/config/gtbcs_spell_lib-common.toml b/config/gtbcs_spell_lib-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/config/gtbcs_spell_lib-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/guardvillagers-client.toml b/config/guardvillagers-client.toml new file mode 100644 index 0000000..fda8d21 --- /dev/null +++ b/config/guardvillagers-client.toml @@ -0,0 +1,6 @@ +#Textures not included, make your own textures by making a resource pack that adds guard_steve_0 - 6 +"Have guards use the steve model?" = false +"Have baby villagers have big heads like in bedrock?" = true +#Note that this option will automatically activate if a guard has more hearts than default +"Display guard health in icons" = true + diff --git a/config/guardvillagers-common-1.toml.bak b/config/guardvillagers-common-1.toml.bak new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common-1.toml.bak @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guardvillagers-common-2.toml.bak b/config/guardvillagers-common-2.toml.bak new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common-2.toml.bak @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guardvillagers-common-3.toml.bak b/config/guardvillagers-common-3.toml.bak new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common-3.toml.bak @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guardvillagers-common-4.toml.bak b/config/guardvillagers-common-4.toml.bak new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common-4.toml.bak @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guardvillagers-common-5.toml.bak b/config/guardvillagers-common-5.toml.bak new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common-5.toml.bak @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guardvillagers-common.toml b/config/guardvillagers-common.toml new file mode 100644 index 0000000..b02c78f --- /dev/null +++ b/config/guardvillagers-common.toml @@ -0,0 +1,95 @@ + +["guard stuff"] + #Range: -9999 ~ 9999 + "How low of a reputation of a player should have to be instantly aggroed upon by guards and golems?" = -100 + "Allow players to give guards stuff only if they have the hero of the village effect?" = false + #Angle is determined by taking the arccos of the inputted value, for example -1 is a straight 180 degree angle thus if that value is inputted guards will only check straight ahead to see if any friendly mobs are in the way. + #Range: -1000000.0 ~ 1000000.0 + "Angle of how ranged guards determine if a friendly mob is in front of them before firing" = -0.9 + #Range: 0.0 ~ 1.0E8 + "Guard crossbow attack radius" = 8.0 + #Range: -999.9000244140625 ~ 999.0 + "Chance for guards to lose durability" = 1.0 + #Range: > -2147483648 + "Minimum reputation requirement for guards to give you access to their inventories" = 15 + #How much health a guard regenerates. + #Range: -500.0 ~ 500.0 + "Guard health regeneration amount" = 1.0 + #Range: 0.0 ~ 900.0 + "Guard follow range" = 20.0 + "Allow players to set guard patrol points only if they have hero of the village" = false + #This makes Guards run from polar bears, as anyone with common sense would. + "Have Guards have some common sense?" = false + #If a guard is fighting a mob underwater and the vertical distance between that mob and the guard is larger than this, the guard will instead float up to not take the risk of drowning + #Range: 0 ~ 100000000 + "Depth value for guards fighting underwater mobs" = 5 + "Mobs that guards actively protect when they get targeted" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + #Range: -999.9000244140625 ~ 999.0 + "Chance to drop equipment" = 100.0 + #This makes guards form a phalanx + "Have guards form a phalanx?" = true + #Range: -500.0 ~ 900.0 + "Guard health" = 20.0 + #Mobs in this list also won't get hurt by a guard's arrow if the config option to disable guard arrows hurting villagers is enabled. + "Mobs that guards actively protect when they get hurt" = ["minecraft:villager", "guardvillagers:guard", "minecraft:iron_golem"] + "Have guards patrol the village regularly?" = false + #This lets Guards open doors. + "Have Guards open doors?" = true + #This will make guards raise their shields all the time, on default they will only raise their shields under certain conditions + "Have Guards raise their shield all the time?" = false + "Have guards only follow the player if they have hero of the village?" = true + #Range: -500.0 ~ 900.0 + "Guard speed" = 0.5 + #This is the range in which the guards will be aggroed to mobs that are attacking villagers. Higher values are more resource intensive, and setting this to zero will disable the goal. + #Range: -500.0 ~ 500.0 + Range = 50.0 + #Range: 0 ~ 100000000 + "How many guards should spawn in a village?" = 6 + "Have guards attempt to avoid firing into other friendlies?" = true + "Allow guards to convert to zombie villagers upon being killed by zombies?" = true + "Allow the player to right click on bells to mass order guards to follow them?" = true + "Allow guards to teleport if following the player" = true + "Allow guards to sink temporarily to fight mobs that are under water?" = true + "Allow guard arrows to damage villagers, iron golems, or other guards? The i-frames will still be shown for them but they won't lose any health if this is set to false" = true + +["raids and illagers"] + #This makes Illagers run from polar bears, as anyone with common sense would. + "Have Illagers have some common sense?" = true + #Witches Attack Villagers? + "Witches attack villagers?" = true + #Illagers In Raids Attack Animals? + "Illagers in raids attack animals?" = true + #This will make Illusioners get involved in raids + "Have Illusioners in raids?" = false + +["mob ai in general"] + #Hostiles attack guards, by default only illagers and zombies will attack guards, the mob blacklist below will effect this option + "All mobs attack guards" = false + #Guards will attack all hostiles with this option, when set to false guards will only attack zombies and illagers. + "Guards attack all mobs?" = true + #Guards won't attack mobs in this list at all, for example, putting "minecraft:creeper" in this list will make guards ignore creepers. + "Mob Blacklist" = ["minecraft:villager", "minecraft:iron_golem", "minecraft:wandering_trader", "guardvillagers:guard", "minecraft:creeper", "alexsmobs:komodo_dragon", "minecraft:enderman"] + #Guards will additionally attack mobs ids put in this list, for example, putting "minecraft:cow" in this list will make guards attack cows. + "Mob Whitelist" = [] + +["golem stuff"] + "Allow Iron Golems to float on water?" = false + +["villager stuff"] + #Range: 0 ~ 1000000 + "How many times a cleric can heal a guard in one day" = 3 + "Profession Whitelist for healing ai for clerics" = ["cleric"] + #This makes villagers run from polar bears, as anyone with common sense would. + "Have Villagers have some common sense?" = true + "Profession Whitelist for golem repair ai" = ["armorer", "weaponsmith"] + "Profession Whitelist for guard weaponry repair ai" = ["weaponsmith", "armorer"] + "Have it so clerics heal guards and players with hero of the village?" = true + "Allow armorers and weaponsmiths repair guard items when down below half durability?" = true + #Range: 0 ~ 1000000 + "How many times a villager can heal a guard's equipment in one day" = 3 + #This will make it so villagers will only be converted into guards if the player has hero of the village + "Make it so players have to have hero of the village to convert villagers into guards?" = false + #Range: 0 ~ 1000000 + "How many times a smith villager can heal a golem in one day" = 3 + "Have it so blacksmiths heal golems under 60 health?" = true + diff --git a/config/guiclock.json5 b/config/guiclock.json5 new file mode 100644 index 0000000..005fddb --- /dev/null +++ b/config/guiclock.json5 @@ -0,0 +1,43 @@ +{ + // When enabled, will only show the game time when a clock is present in the inventory. + "mustHaveClockInInventoryForGameTime": true, + // When enabled, will only show the real time when a clock is present in the inventory. + "mustHaveClockInInventoryForRealTime": true, + // Whether the clock in the GUI should be lowered when the player has potion effects to prevent overlap. + "lowerClockWhenPlayerHasEffects": true, + // Sets the format of the clock to the 24-hour format. + "_24hourformat": true, + // When enabled, shows the clock item icon instead of a clock with numbers. + "showOnlyMinecraftClockIcon": false, + // Show both in-game time and real local time. + "showBothTimes": false, + // Show actual local time instead of in-game time. + "showRealTime": false, + // Show the seconds in the clock. + "showRealTimeSeconds": false, + // Show the days played in the world. + "showDaysPlayedWorld": true, + // Places the GUI clock on the left. + "clockPositionIsLeft": false, + // Places the GUI clock in the middle. + "clockPositionIsCenter": false, + // Places the GUI clock on the right. + "clockPositionIsRight": true, + // The vertical offset (y coord) for the Clock. This determines how far down the time should be on the screen. Can be changed to prevent GUIs from overlapping. + // min: 0, max: 3000 + "clockHeightOffset": 5, + // The horizontal offset (x coord) for the Clock. + // min: -3000, max: 3000 + "clockWidthOffset": 0, + // If the text displayed should have a shadow drawn below it. + "drawTextShadow": true, + // The red RGB value for the clock text. + // min: 0, max: 255 + "RGB_R": 255, + // The green RGB value for the clock text. + // min: 0, max: 255 + "RGB_G": 255, + // The blue RGB value for the clock text. + // min: 0, max: 255 + "RGB_B": 255 +} \ No newline at end of file diff --git a/config/guideme.toml b/config/guideme.toml new file mode 100644 index 0000000..ebc77e1 --- /dev/null +++ b/config/guideme.toml @@ -0,0 +1,17 @@ + +[guides] + #Never load translated guide pages for your current language. + ignoreTranslatedGuides = false + #Never show errors in guides when recipes can't be found (i.e. because they were hidden by a datapack). + hideMissingRecipeErrors = false + +[gui] + #Adapt GUI scaling for the Guide screen to fix Minecraft font issues at GUI scale 1 and 3. + adaptiveScaling = true + #Use the full width of the screen for the guide when it is opened. + fullWidthLayout = true + +[debug] + #Show debugging overlays in GUI on mouse-over. + showDebugGuiOverlays = false + diff --git a/config/guiscale.json b/config/guiscale.json new file mode 100644 index 0000000..b6e10c2 --- /dev/null +++ b/config/guiscale.json @@ -0,0 +1,6 @@ +{ + "menuScale": { + "desc:": "UI scale of menus, default = 0(Auto)", + "menuScale": 2 + } +} \ No newline at end of file diff --git a/config/guiscaler-client.toml b/config/guiscaler-client.toml new file mode 100644 index 0000000..1870175 --- /dev/null +++ b/config/guiscaler-client.toml @@ -0,0 +1,11 @@ + +#GUI Scaler Configuration +[general] + #Enable automatic GUI scaling + enableAutoScale = true + #Scaling mode: AUTO (intelligent) or CUSTOM (user-defined rules) + #Allowed Values: AUTO, CUSTOM + mode = "AUTO" + #Custom scaling rules in format 'width:scale' (e.g., '2560:3' means scale 3 for width >= 2560) + customRules = ["2560:3", "1920:2", "1280:1"] + diff --git a/config/handoveryouritems.json5 b/config/handoveryouritems.json5 new file mode 100644 index 0000000..a67ed57 --- /dev/null +++ b/config/handoveryouritems.json5 @@ -0,0 +1,8 @@ +{ + // If enabled, players will receive a message when they have been given an item. + "sendItemReceivedMessage": true, + // If enabled, players will receive a message when they give an item. + "sendItemGivenMessage": true, + // If enabled, players will only be able to give items when they are crouching/sneaking. + "mustCrouchToGiveItem": true +} \ No newline at end of file diff --git a/config/hangglider-client.toml b/config/hangglider-client.toml new file mode 100644 index 0000000..fde7476 --- /dev/null +++ b/config/hangglider-client.toml @@ -0,0 +1,11 @@ +#Multiplier for camera tilt speed when gliding. +#Range: 0.1 ~ 1.0 +gliding_tilt_speed = 0.4 +#Automatically switch to third-person mode while gliding. +auto_third_person_gliding = false +#Tilt camera depending on gliding turn angle. +gliding_camera_tilt = true +#Multiplier for camera tilt amount when gliding. +#Range: 0.1 ~ 1.0 +gliding_tilt_amount = 0.5 + diff --git a/config/hangglider-server.toml b/config/hangglider-server.toml new file mode 100644 index 0000000..dc0e71f --- /dev/null +++ b/config/hangglider-server.toml @@ -0,0 +1,82 @@ + +[wind] + #The size of the wind gusts, larger values mean the gusts push the player around in greater angles from their intended direction. Default is moderately sized. Observable gameplay effects are highly tied with wind frequency. + #Range: 1.0 ~ 100.0 + gust_size = 19.0 + #How much stronger the wind should be while it is raining. 1 means the wind is the same if raining or not, 10 means the wind is 10x stronger while it is raining. + #Range: 1.0 ~ 10.0 + raining_multiplier = 3.0 + #Enables wind, making the player move unpredictably around when gliding. + allow_wind = true + #The frequency of the wind gusts, larger values mean the wind effects occur more often. 0 removes wind. Default is semi-common. Observable gameplay effects are highly tied with gust size. + #Range: 0.0 ~ 5.0 + frequency = 0.15 + #The player's y-level/height changes the overall wind effect by this multiplier. Default is that the higher you are up in the world the stronger the wind is, but only by a moderate amount. 0 means the player's height has no effect on the wind. + #Range: -10.0 ~ 10.0 + height_multiplier = 1.5 + #Enables air resistance, making the player slow down over time when flying. Values conditional on tier of glider. + allow_air_resistance = true + #The glider's durability remaining changes the overall wind effect by this additional amount. 0 means the glider's durability won't effect the wind power, whereas 1 will mean a nearly broken glider is affected by wind about twice as much as a new one. + #Range: 0.0 ~ 5.0 + durability_multiplier = 0.7 + #A quality-of-life option to quickly change the overall power of the wind effect for all gliders. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available below. + #Range: 0.001 ~ 10.0 + overall_power = 1.0 + #When going fast, the overall wind effect is changed by this multiplier. Default is that going fast reduces the wind effect by a moderate amount. 0 means the player's speed has no effect on the wind. + #Range: -10.0 ~ 10.0 + speed_multiplier = 0.4 + +[reinforced_hang_glider] + #A quality-of-life option to quickly change the overall power of the wind effect for this glider. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. + #Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available in the 'wind' section of this config. + #Range: 0.001 ~ 10.0 + overall_wind_power = 0.75 + #The amount of blocks to move forwards (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_forward_movement = 0.08 + #The amount of blocks a player falls (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_fall_movement = 0.55 + #Enables durability usage of the hang glider when gliding. + consume_durability = true + #The timeframe for durability usage, in ticks. Recall that there are 20 ticks in a second, so a value of 20 would damage the item about once a second. + #Default is 1 damage about every 10 seconds of flight, so with a durability of 618 means about 15 minutes of flight time with an undamaged glider. + #Range: 1 ~ 10000 + durability_use_interval = 200 + #The rate at which air resistance hinders your movement. 1 is no resistance, 0.5 is 1/2 as fast each tick. + #Range: 0.0 ~ 1.0 + air_resistance = 0.99 + #The amount of blocks to move forwards (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_forward_movement = 0.04 + #The amount of blocks to fall (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_fall_movement = 0.675 + +[hang_glider] + #A quality-of-life option to quickly change the overall power of the wind effect for this glider. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. + #Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available in the 'wind' section of this config. + #Range: 0.001 ~ 10.0 + overall_wind_power = 1.4 + #The amount of blocks to move forwards (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_forward_movement = 0.05 + #The amount of blocks a player falls (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_fall_movement = 0.55 + #Enables durability usage of the hang glider when gliding. + consume_durability = true + #The timeframe for durability usage, in ticks. Recall that there are 20 ticks in a second, so a value of 20 would damage the item about once a second. + #Default is 1 damage about every 10 seconds of flight, so with a durability of 618 means about 15 minutes of flight time with an undamaged glider. + #Range: 1 ~ 10000 + durability_use_interval = 200 + #The rate at which air resistance hinders your movement. 1 is no resistance, 0.5 is 1/2 as fast each tick. + #Range: 0.0 ~ 1.0 + air_resistance = 0.985 + #The amount of blocks to move forwards (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_forward_movement = 0.025 + #The amount of blocks to fall (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_fall_movement = 0.675 + diff --git a/config/harimt.toml b/config/harimt.toml new file mode 100644 index 0000000..ec1a210 --- /dev/null +++ b/config/harimt.toml @@ -0,0 +1,34 @@ + +["Async Config"] + #Disables parallel processing of entities. + disabled = false + #Maximum worker threads. -1 = auto. + #Range: > -1 + paraMax = -1 + #List of entity IDs or namespaces (*): + # - 'minecraft:zombie' = specific entity + # - 'minecraft:*' = all entities in namespace + synchronizedEntities = ["minecraft:tnt", "minecraft:creeper", "minecraft:experience_orb", "minecraft:end_crystal", "minecraft:wither", "create:*", "minecraft:item", "minecraft:ghast"] + #Enables async entity spawning. WARNING: incompatible with Carpet's lagFreeSpawning. + enableAsyncSpawn = true + #Experimental! Enables async random ticks. + enableAsyncRandomTicks = false + #Enable affinity-based entity routing. + #Routes entities in the same chunk to the same worker thread for better CPU cache locality. + #Workers steal from other lanes when idle. Recommended: true. + enableAffinityRouting = true + #Enable circuit breaker for entity tick crash isolation. + #When an entity type crashes repeatedly during async tick, it is automatically + #moved to synchronous ticking until it stabilizes. Prevents cascade failures. + enableCircuitBreaker = true + #Target number of entities per worker thread. Lower values = more parallelism. + #The system dynamically scales workers based on entity count. + #Recommended: 15-40. Default: 25. + #Range: 5 ~ 200 + entitiesPerWorker = 25 + #Timeout in milliseconds before warning about slow entity tick batches. + #Does NOT cancel ticks (unsafe) - only logs warnings for diagnostics. + #Default: 200ms. + #Range: 50 ~ 5000 + staleTaskTimeoutMs = 200 + diff --git a/config/healingcampfire.json5 b/config/healingcampfire.json5 new file mode 100644 index 0000000..3adfd27 --- /dev/null +++ b/config/healingcampfire.json5 @@ -0,0 +1,26 @@ +{ + // How often in ticks the mod checks for campfires around the player. 1 second = 20 ticks, so by default every 2 seconds. + // min: 1, max: 1200 + "checkForCampfireDelayInTicks": 40, + // The radius around the campfire in blocks where players receive the regeneration effect. + // min: 1, max: 64 + "healingRadius": 16, + // The duration of the regeneration effect which the campfire applies. + // min: 1, max: 600 + "effectDurationSeconds": 60, + // The level of regeneration which the campfire applies, by default 1. + // min: 1, max: 50 + "regenerationLevel": 1, + // When enabled, the campfire heals passive mobs around where the radius is half the width of a bounding box. + "healPassiveMobs": true, + // When enabled, hides the particles from the regeneration effect around the campfire. + "hideEffectParticles": true, + // When enabled, the campfire only has an effect when the block is lit up. + "campfireMustBeLit": true, + // When enabled, the campfire only has an effect when the block is signalling. + "campfireMustBeSignalling": false, + // When enabled, the mod will work with normal campfires. + "enableEffectForNormalCampfires": true, + // When enabled, the mod will work with soul campfires. + "enableEffectForSoulCampfires": true +} \ No newline at end of file diff --git a/config/herbalbrews.toml b/config/herbalbrews.toml new file mode 100644 index 0000000..3d8bddb --- /dev/null +++ b/config/herbalbrews.toml @@ -0,0 +1,27 @@ + +[items] + + [items.banner] + #Enable or disable the effect granted by banners. + giveEffect = true + #Enable or disable the tooltip display for banners. + showTooltip = true + + [items.hat] + #Enable or disable magic damage reduction provided by the hat. + damageReductionEnabled = true + #Percentage of magic damage reduction provided by the hat (0-100). + #Range: 0 ~ 100 + damageReductionAmount = 40 + +[blocks] + #Duration of the drying process in ticks. (20 ticks = 1 second) + #Range: > 0 + dryingDuration = 900 + #Duration of the brewing process in ticks. (20 ticks = 1 second) + #Range: > 0 + brewingDuration = 1200 + #Duration of the jug's effect in ticks. (20 ticks = 1 second) + #Range: > 0 + jugEffectDuration = 900 + diff --git a/config/horseexpert-client.toml b/config/horseexpert-client.toml new file mode 100644 index 0000000..3ce585a --- /dev/null +++ b/config/horseexpert-client.toml @@ -0,0 +1,28 @@ +#Show speed and jump height for llamas. They have those attributes as they inherit all functionality from horses, but don't really use them for anything. +all_llama_attributes = false +#Percentage value below which a value is considered to be low when shown on statistics tooltips. +#Range: 0.0 ~ 1.0 +low_value_percentage = 0.25 +#Only show statistics tooltips while sneaking (still requires a monocle to be worn). +requires_sneaking = false +#Offset on x-axis for statistics tooltips from original position. +#Range: > -2147483648 +offset_x = 0 +#Percentage value above which a value is considered to be high when shown on statistics tooltips. +#Range: 0.0 ~ 1.0 +high_value_percentage = 0.75 +#Offset on y-axis for statistics tooltips from original position. +#Range: > -2147483648 +offset_y = 0 +#Color used for highlighting high attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +high_value_color = "GREEN" +#Color used for highlighting low attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +low_value_color = "RED" +#Color used for highlighting medium attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +medium_value_color = "GOLD" +#Must the mount be tamed for any statistics to show. +must_be_tamed = true + diff --git a/config/horseman-client.toml b/config/horseman-client.toml new file mode 100644 index 0000000..70ffb4e --- /dev/null +++ b/config/horseman-client.toml @@ -0,0 +1,46 @@ +#Adjusts gui to render hunger bar, xp bar and xp level. Makes horse jump bar render only when jumping. Default: true +improved_mount_gui = true +#Fixes small delay when moving camera horizontally while mounted - MC-259512. Default: true +fix_mounted_camera_lag = true +#Prevents horse jump meter from filling up when mount is in the water. Default: true +prevent_jumping_in_water = true +#Offset to horse model head pitch while riding. Lowers the head so it's not blocking the view. Default: 20 +#Range: 0 ~ 45 +horse_model_head_offset = 20 +#Offset to horse model head y position while riding. Lowers the head so it's not blocking the view. Default: true +#Range: 0 ~ 4 +horse_model_y_offset = 2 +#If Lead slot is disabled, but lead is still required for hitching, indication of whether the Lead is equipped will be rendered in Horse inventory screen. Default: true +render_lead_indication_without_slot = true +#Makes horse-type mobs that named 'jeb_' render with rainbow effect, like sheep. Default: true. +jeb_horse = true + +[switch_inventory] + #Adds button and hotkey to switch between player and horse inventory. Default: true + enabled = true + #X position of the button in player's inventory. Default: -14. + #Range: > -2147483648 + player_button_position_x = -14 + #Y position of the button in player's inventory. Default: 9. + #Range: > -2147483648 + player_button_position_y = 9 + #X position of the button in mount's inventory. Default: -14. + #Range: > -2147483648 + horse_button_position_x = -14 + #Y position of the button in mount's inventory. Default: 9. + #Range: > -2147483648 + horse_button_position_y = 9 + +[transparent_horse] + #Makes horse translucent depending on player's look angle. Default: true + enabled = true + #Maximum opacity (at the end angle). 0 - fully transparent. 1 - fully opaque. Default: 0.08. + #Range: 0.0 ~ 1.0 + max_opacity = 0.08 + #Angle at which the horse will start to become transparent. Default: 30. + #Range: -90 ~ 90 + start_angle = 30 + #Angle at which the horse will reach maximum transparency. Default: 65. + #Range: -90 ~ 90 + end_angle = 65 + diff --git a/config/horseman-common.toml b/config/horseman-common.toml new file mode 100644 index 0000000..f3a33fe --- /dev/null +++ b/config/horseman-common.toml @@ -0,0 +1,59 @@ + +[movement] + #Fix horse jitter and reset back when riding up blocks (especially stairs) Mojang bug: MC-100830. Default: true + fix_horse_moved_wrongly = true + #Additional step height added to horses. If set to 1 - horse will be able to step up two blocks. Set to 0 for vanilla behavior. Default 0.1. + #Range: -1.0 ~ 10.0 + horse_step_height_modifier = 0.1 + #Make horse step down one block faster by adding downwards velocity. + #Reduces slowdown when riding off a block, making riding much smoother. Default: true + horse_fast_step_down = true + #Makes 'horse_fast_step_down' work when stepping down two blocks. + #Makes fast step down work better for steep staircases, but may introduce some unwanted behavior elsewhere. Default: false + horse_fast_step_down_two_blocks = false + #Make horse airborne speed faster. Improves jumping distance (horizontal) and speed walking off heights. Default: true + increase_horse_airborne_speed = true + #Controls how much 'increase_horse_airborne_speed' increases over vanilla. + #0 - vanilla speed + #1 - full speed (same as running on the ground) + #Note: there is still small initial slowdown when running off a block (start falling), after which speed increases to proper value. + #Default: 0.5 + #Range: 0.0 ~ 1.0 + increase_horse_airborne_speed_amount = 0.5 + #Horse-type mobs are able to swim when ridden by holding a jump key. Exact types that cannot swim can be controlled by '#horseman:cannot_swim' entity tag. Default: true. + horse_swim_when_ridden = true + #When mounting a horse, rotate it to match player looking direction, instead of rotating the player. Default: true + rotate_horse_instead_of_player = true + #Max distance (in blocks) from last dismount position that saddled horse can wander to. Set to -1 for vanilla behavior. Default: 16 + #Range: -1 ~ 64 + saddled_horse_wander_radius = 16 + #Prevents rearing (horse stopping and standing up) when it's being ridden. Default: true. + ridden_horse_prevent_rearing = true + +[hitching] + #Right-clicking a fence while riding will leash the horse to it. Default: true + enabled = true + #Hitching requires Lead item to be present on a horse. If disabled, 'horse_hitch_lead_slot' will be disabled as well. Default: true + requires_lead = true + #Slot for a lead will be added to horse inventory menu. Default: true + #If disabled, Lead should be added by Sneak+Right-Clicking a Horse with an item. Default: true + lead_slot = true + +[free_camera] + #While horse is stationary - allow moving camera freely, without rotating the horse. Default: true + enabled = true + #Threshold in degrees after which horse will follow player rotation. Default: 100 + #Range: 0.0 ~ 180.0 + angle_threshold = 100.0 + +[misc] + #Additional block breaking speed added when mounted. Set to 0 for vanilla behavior. Default 5 (regular breaking speed (same as without a mount)). + #Range: 0.0 ~ 5.0 + mounted_block_break_speed_modifier = 5.0 + #Horse-type mobs are able to fit in boats. Default: true. + horse_fits_in_boat = true + #Right-clicking a Mule, Donkey or Llama that has chest with shears will remove the chest and drop its items. Default: true + shears_remove_chest = true + #Using Saddle on untamed horse-type mob while in creative mode tames it instantly. Default: true. + horse_creative_taming = true + diff --git a/config/hostilenetworks.cfg b/config/hostilenetworks.cfg new file mode 100644 index 0000000..c3ba175 --- /dev/null +++ b/config/hostilenetworks.cfg @@ -0,0 +1,41 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Hostile Networks Config + +# All entries in this config file are synced from server to client. + + +power { + # The maximum FE stored in the Simulation Chamber. + # Default: 2000000; Range: [1 ~ 2147483647] + I:"Sim Chamber Power Cap"=2000000 + + # The maximum FE stored in the Loot Fabricator. + # Default: 1000000; Range: [1 ~ 2147483647] + I:"Loot Fab Power Cap"=1000000 + + # The FE/t cost of the Loot Fabricator. + # Default: 256; Range: [0 ~ 2147483647] + I:"Loot Fab Power Cost"=256 +} + + +models { + # If true, right clicking a blank data model on a mob will attune it to that mob. If disabled, you will need to provide players with a way to get attuned models! + # Default: true + B:"Right Click To Attune"=true + + # Whether the Simulation Chamber will upgrade the data on a model. (0 = No, 1 = Yes, 2 = Only up to tier boundaries) + # Default: 1; Range: [0 ~ 2] + I:"Sim Chamber Upgrades Model"=1 + + # Whether killing mobs will upgrade the data on a model. Note: If you disable this, be sure to add a way for players to get non-Faulty models! + # Default: true + B:"Killing Upgrades Model"=true + + # If true, the accuracy of the model increases as it gains progress towards the next tier. If false, always uses the base accuracy of the current tier. + # Default: true + B:"Continuous Accuracy"=true +} + + diff --git a/config/iaie-common.toml b/config/iaie-common.toml new file mode 100644 index 0000000..de6a421 --- /dev/null +++ b/config/iaie-common.toml @@ -0,0 +1,6 @@ + +#Immersive Aircraft x Immersive Engineering Configuration +[general] + #If true, solid fuels (such as coal and logs) are disabled in aircraft. Only IE barrels with biodiesel can be used as fuel. + disableSolidFuel = true + diff --git a/config/icarus.jsonc b/config/icarus.jsonc new file mode 100644 index 0000000..fbd8022 --- /dev/null +++ b/config/icarus.jsonc @@ -0,0 +1,23 @@ +{ + "can_loop_de_loop": true, + "armor_slows": true, + "can_slow_fall": false, + // Type: Float + "max_slowed_multiplier": 3.0, + // Type: Float + "wings_speed": 0.0125, + // Type: Integer + "wings_durability": 0, + // Type: Float + "exhaustion_amount": 0.03, + // Type: Float + "required_food_amount": 6.001, + "max_height_enabled": true, + // Type: Integer + "max_height_above_world": 64, + // Type: Float + "flying_target_radius": 0.25, + "client": { + "can_loop_de_loop": true + } +} \ No newline at end of file diff --git a/config/iceandfire-client.toml b/config/iceandfire-client.toml new file mode 100644 index 0000000..d8eeec8 --- /dev/null +++ b/config/iceandfire-client.toml @@ -0,0 +1,9 @@ + +[general] + #Whether to display the dragon on the main menu or not + "Custom main menu" = false + #True if riding dragons should make the player take a 3rd person view automatically. + "Auto 3rd person when riding dragon" = true + #Whether to use the vanilla font in the bestiary or not + "Use Vanilla Font" = false + diff --git a/config/iceandfire-common.toml b/config/iceandfire-common.toml new file mode 100644 index 0000000..59d19d5 --- /dev/null +++ b/config/iceandfire-common.toml @@ -0,0 +1,395 @@ + +[Generation] + + [Generation.Dragon] + #Whether to generate dragon skeletons or not + "Generate Dragon Skeletons" = true + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Skeleton Chance" = 300 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Cave Chance" = 180 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Roost Chance" = 360 + #1 out of this number chance per block that gold will generate in dragon lairs. + #Range: 1 ~ 10000 + "Dragon Den Gold Amount" = 4 + #Ratio of Stone(this number) to Ores in Dragon Caves + #Range: 1 ~ 10000 + "Dragon Cave Ore Ratio" = 45 + + [Generation.Structures-Features] + #How far away dangerous structures(dragon roosts, cyclops caves, etc.) must be from spawn. + #Range: 1 ~ 10000 + "Dangerous World Gen Dist From Spawn" = 800 + #How far away dangerous structures(dragon roosts, cyclops caves, etc.) must be from the last generated structure. + #Range: 1 ~ 10000 + "Dangerous World Gen Dist Seperation" = 300 + #Whether to generate glacier biomes or not + "Generate Glaciers" = true + #Glacier Spawn Weight. Higher number = more common + #Range: 1 ~ 10000 + "Glacier Spawn Weight" = 4 + #True if mausoleums are allowed to generate + "Generate Mausoleums" = true + #Whether to generate graveyards or not + "Generate Graveyards" = true + #True if gorgon temples are allowed to spawn + "Generate Gorgon Temple" = true + +[Dragons] + + [Dragons.Griefing] + #Dragon griefing - 2 is no griefing, 1 is breaking weak blocks, 0 is default. This value is also affected by minecrafts mob griefing rule. + #Range: 0 ~ 2 + "Dragon Griefing" = 0 + #True if tamed dragons can follow the griefing rules. + "Tamed Dragon Griefing" = true + #The percentage chance for a block to drop as an item when a dragon breaks it. + #Range: 0.0 ~ 1.0 + "Dragon Block Breaking Drop Chance" = 0.10000000149011612 + + [Dragons.Attributes] + #How long it takes(in ticks) for a dragon egg to hatch + #Range: > 1 + "Dragon Egg Hatch Time" = 7200 + #Dragon Flap Noise Distance - Larger number, further away you can hear it + #Range: 0 ~ 10000 + "Dragon Flap Noise Distance" = 4 + #Dragon Flute Distance - how many chunks away is the dragon flute effective? + #Range: 0 ~ 10000 + "Dragon Flute Distance" = 4 + #Max dragon health. Health is scaled to this + #Range: 1.0 ~ 100000.0 + "Dragon Health" = 500.0 + #Max dragon attack damage. Attack Damage is scaled to this + #Range: 1 ~ 10000 + "Dragon Attack Damage" = 17 + #Damage dealt from a successful fire breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Fire breath)" = 2.0 + #Damage dealt from a successful ice breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Ice breath)" = 2.5 + #Damage dealt from a successful lightning breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Lightning breath)" = 3.5 + #Change this to slow down or speed up dragon or amphithere flight. + #Range: 0.0 ~ 2.0 + "Dragon Flight Speed Modifier" = 1.0 + #Enable this if your server is being bombarded with moved wrongly or moved too fast console messages. REQUIRES RESTART! + "Dragon Moved Wrongly Error Fix" = true + + [Dragons.Behaviour] + #How high dragons can fly, in Y height. + #Range: > 100 + "Max Dragon Flight Height" = 256 + #How far away dragons will detect gold blocks being destroyed or chests being opened + #Range: 0 ~ 10000 + "Dragon Gold Search Length" = 30 + #Whether the bite attack from a dragon heals them or not. + "Dragon Bite Heal" = true + #True if dragons can despawn. Note that if this is false there may be SERIOUS lag issues. + "Dragons Despawn" = true + #True if tamed dragons go to sleep at night. + "Tamed Dragons Sleep" = true + #True if dragons can break blocks if they get stuck. Turn this off if your dragons randomly explode. + "Dragons Dig When Stuck" = true + #True if dragons can drop their skull on death. + "Dragons Drop Skull" = true + #True if dragons can drop their heart on death. + "Dragons Drop Heart" = true + #True if dragons can drop their blood on death. + "Dragons Drop Blood" = true + #True if dragons fire/ice charges create secondary explosions that launch blocks everywhere. Turn this to true if you like unfair explosions. Or lag. + "Explosive Dragon Breath" = false + #How many blocks away can dragons spot potential prey. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Dragon Target Search Length" = 128 + #How many blocks away can dragons wander from their defined "home" position. + #Range: 1 ~ 10000 + "Dragon Wander From Home Distance" = 40 + #Every interval of this number in ticks, dragon hunger decreases. + #Range: 1 ~ 10000 + "Dragon Hunger Tick Rate" = 3000 + #Every interval of this number in ticks, dragon allowed to break blocks. + #Range: 0 ~ 10000 + "Dragon Block Break Cooldown" = 5 + #True if villagers should run away and hide from dragons and other hostile Ice and Fire mobs. + "Villagers Fear Dragons" = true + #True if animals should run away and hide from dragons and other hostile Ice and Fire mobs. + "Animals Fear Dragons" = true + #A more intelligent dragon pathfinding system, but is also laggier. Turn this on if you think dragons are too stupid. + "Intelligent Dragon Pathfinding" = false + +[Mobs] + + [Mobs.Pixies] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Pixies Chance" = 60 + #size of pixie villages + #Range: 1 ~ 10000 + "Pixie Village Size" = 5 + #True if pixies are allowed to steal from players + "Pixies Steal Items" = true + + [Mobs.Cyclops] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Cyclops Cave Chance" = 100 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Wandering Cyclops Chance" = 100 + #Maximum cyclops health + #Range: 1.0 ~ 10000.0 + "Cyclops Max Health" = 150.0 + #How many blocks away can cyclopes detect sheep. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Cyclopes Sheep Search Length" = 17 + #Cyclops attack strength + #Range: 1.0 ~ 10000.0 + "Cyclops Attack Strength" = 15.0 + #Amount of damage done with cyclops bite attack. + #Range: 1.0 ~ 10000.0 + "Cyclops Bite Strength" = 40.0 + #Whether or not cyclops can break logs or leaves in their way + "Cyclops Griefing" = true + + [Mobs.Sirens] + #Maximum siren health + #Range: 1.0 ~ 10000.0 + "Siren Max Health" = 50.0 + #True to make the screen pink when sirens attract players + "Use Siren Shader" = true + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Sirens Chance" = 400 + #how long(in ticks) can a siren use its sing effect on a player, without a cooldown. + #Range: 100 ~ 24000 + "Siren Max Sing Time" = 12000 + #how long(in ticks) a siren has to wait after failing to lure in a player + #Range: 100 ~ 24000 + "Siren Time Between Songs" = 2000 + + [Mobs.DeathWorms] + #How many blocks away can death worms spot potential prey. Note that increasing this could cause lag + #Range: 1 ~ 10000 + "Death Worm Target Search Length" = 64 + #Default deathworm health, this is scaled to the worm's particular size + #Range: 1.0 ~ 10000.0 + "Death Worm Base Health" = 10.0 + #Default deathworm attack strength, this is scaled to the worm's particular size + #Range: 1.0 ~ 10000.0 + "Death Worm Base Attack Strength" = 3.0 + #True if wild deathworms are allowed to target and attack monsters + "Death Worms Target Monsters" = true + #Deathworm spawn weight. Higher = lower chance to spawn + #Range: 1 ~ 10000 + "Death Worm Spawn Weight" = 30 + + [Mobs.Cockatrice] + #Maximum cockatrice health + #Range: 1.0 ~ 10000.0 + "Cockatrice Health" = 40.0 + #1 out of this number chance per 6000 ticks for a chicken to lay a cockatrice egg. + #Range: > 1 + "Cockatrice chicken Search Length" = 30 + #True if chickens lay rotten eggs. + "Chickens Lay Rotten Eggs" = true + #True if cockatrices are allowed to spawn + "Spawn Cockatrices" = true + #Cockatrice spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Cockatrice Spawn Weight" = 4 + + [Mobs.Stymphalians] + #How many blocks away can stymphalian birds spot potential prey. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Stymphalian Bird Target Search Length" = 64 + #1/this number chance for a stymphalian feather to turn into an item before despawning. Zero means never. + #Range: 0 ~ 10000 + "Stymphalian Bird Feather Drop Chance" = 25 + #Stymphalian bird feather attack strength. + #Range: 0.0 ~ 10000.0 + "Stymphalian Bird Feather Attack Strength" = 1.0 + #How far away stymphalian birds will consider other birds to be in the same flock. + #Range: 1 ~ 10000 + "Stymphalian Bird Flock Length" = 40 + #How high stymphalian birds can fly, in Y height. + #Range: > 10 + "Max Stymphalian Bird Flight Height" = 80 + #True if stymphalian birds can drop items registered in the ore dictionary to ingotCopper, ingotBronze, nuggetCopper, nuggetBronze. + "Stymphalian Birds drop ore dict items" = true + #True if stymphalian birds are allowed to target and attack animals + "Stymphalian Birds Target Animals" = false + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Stymhphalian Bird Chance" = 100 + + [Mobs.Trolls] + #True if trolls are allowed to spawn + "Spawn Trolls" = true + #True if trolls are allowed to drop their weapon on death. + "Trolls Drop Weapon" = true + #Troll spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Troll Spawn Weight" = 40 + #Maximum troll health + #Range: 1.0 ~ 10000.0 + "Troll Max Health" = 50.0 + #Troll attack strength + #Range: 1.0 ~ 10000.0 + "Troll Attack Strength" = 10.0 + + [Mobs.Myrmex] + #How many ticks it takes for a Myrmex Queen to produce an egg. + #Range: 1 ~ 10000 + "Myrmex Gestation Length" = 2500 + #How many ticks it takes for a Myrmex to move from a larva to a pupa, and from a pupa to an adult. + #Range: 1 ~ 100000 + "Myrmex Hatch Length" = 35000 + #One out of this number chance per chunk to generate a myrmex hive. + #Range: 1 ~ 10000 + "Myrmex Colony Gen Chance" = 150 + #How many maximum individuals a myrmex colony can have. + #Range: 10 ~ 10000 + "Myrmex Colony Max Size" = 80 + #Base Myrmex(worker) attack strength + #Range: 1.0 ~ 10000.0 + "Myrmex Base Attack Strength" = 3.0 + #The maximum radius myrmex area allowed to wander/forage + #Range: 25 ~ 4000 + "Myrmex Maximum Wander Radius" = 50 + #Myrmex hives will ignore daytime + "Myrmex Hive Ignore Daytime" = false + + [Mobs.Amphitheres] + #True if amphitheres are allowed to spawn + "Spawn Amphitheres" = true + #Amphithere spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Amphithere Spawn Weight" = 50 + #How many blocks away can ampitheres detect villagers being hurt. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Amphithere Villager Search Length" = 64 + #How many ticks it takes while riding an untamed amphithere to tame it. + #Range: 1 ~ 10000 + "Amphithere Tame Time" = 400 + #How fast amphitheres fly. + #Range: 0.0 ~ 3.0 + "Amphithere Flight Speed" = 1.75 + #Maximum amphithere health + #Range: 1.0 ~ 10000.0 + "Amphithere Max Health" = 50.0 + #Amphithere attack strength + #Range: 1.0 ~ 10000.0 + "Amphithere Attack Strength" = 7.0 + + [Mobs.SeaSerpents] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Sea Serpent Chance" = 250 + #Whether or not sea serpents can break weak blocks in their way + "Sea Serpent Griefing" = true + #Default sea serpent health, this is scaled to the sea serpent's particular size + #Range: 1.0 ~ 10000.0 + "Sea Serpent Base Health" = 20.0 + #Default sea serpent attack strength, this is scaled to the sea serpent's particular size + #Range: 1.0 ~ 10000.0 + "Sea Serpent Base Attack Strength" = 4.0 + + [Mobs.Hippocampus] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Hippocampus Chance" = 40 + #Change this to slow down or speed up hippocampus swimming. + #Range: 0.0 ~ 2.0 + "Hippocampus Swim Speed Modifier" = 1.0 + + [Mobs.Hippogryph] + #True if hippogryphs are allowed to spawn + "Spawn Hippogryphs" = true + #Hippogryph spawn weight. Lower = lower chance to spawn. + #Range: 1 ~ 10000 + "Hippogryph Spawn Weight" = 2 + #Change this to slow down or speed up hippogryph flight. + #Range: 0.0 ~ 2.0 + "Hippogryph Flight Speed Modifier" = 1.0 + + [Mobs.Gorgons] + #Maximum gorgon health + #Range: 1.0 ~ 10000.0 + "Gorgon Max Health" = 100.0 + + [Mobs.Others] + #True if dread liches are allowed to spawn + "Spawn Liches" = true + #Dread Lich spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Lich Spawn Weight" = 2 + #Dread Lich spawn chance. Lower = higher chance to spawn + #Range: 1 ~ 10000 + "Lich Spawn Chance" = 30 + #Maximum hydra health + #Range: 1.0 ~ 10000.0 + "Hydra Max Health" = 250.0 + #One out of this number chance per chunk to generate a hydra cave. + #Range: 1 ~ 10000 + "Hydra Caves Gen Chance" = 60 + #Maximum ghost health. + #Range: 1.0 ~ 10000.0 + "Ghost Max Health" = 30.0 + #Maximum ghost attack strength. + #Range: 0.0 ~ 10000.0 + "Ghost Attack Strength" = 3.0 + #True if ghosts can rarely spawn from brutal PvP deaths. + "Ghost Spawn from PvP deaths" = true + #Villager Scribe House generation weight. Lower = lower chance to spawn + #Range: 0 ~ 10000 + "Villager Scribe House Weight" = 5 + #Allows attributes for mobs to be overridden via the config file. One might want to disable this if other mods are enabled that change mob attributes e.g armor, health etc... + "Allow Attribute Overriding" = true + +[Items] + #Default attack strength of a dragonsteel sword. + #Range: 5.0 ~ 2.147483647E9 + "Dragonsteel Sword Base Attack Strength" = 25.0 + #Default armor value of dragonsteel chestplate. + #Range: > 7 + "Dragonsteel Base Armor" = 12 + #Default armor toughness value of dragonsteel. + #Range: 0.0 ~ 1.7976931348623157E308 + "Dragonsteel Base Armor Toughness" = 6.0 + #Default durability value of dragonsteel tools. + #Range: > 1 + "Dragonsteel Base Durability" = 8000 + #Default durability value of dragonsteel equipment. + #Range: > 1 + "Dragonsteel Base Durability Equipment" = 8000 + #Disable this to remove easter egg with tinkers installed. + Weezer = true + #Percentage of critical strike that will disarm with easter egg tinkers material. + #Range: 0.0 ~ 1.0 + "Easter Egg Tinkers Tool Disarm chance" = 0.20000000298023224 + #True if the summon crystal can load chunks to find dragons. + "Chunk Load Summon Crystal" = true + #True if the dragon bone fire sword ignites attackers. + "Dragon Bone Fire Abilities" = true + #True if the dragon bone ice sword freezes attackers. + "Dragon Bone Ice Abilities" = true + #True if the dragon bone lightning sword strikes attackers. + "Dragon Bone Lightning Abilities" = true + +[Pathfinding] + #Maximum threads to use for dragon/myrmex pathfinding. Increase this number if pathing is slow and you have many cores. + #Range: > 1 + "Dragon Pathfinding Threads" = 3 + #Maximum nodes for dragons/myrmex to path too. Decrease this is dragon pathfinding is super slow or intensive. + #Range: > 1 + "Dragon Max Pathfinding Nodes" = 5000 + #Enables the option to draw the pathfinding nodes when enabled (use a stick on an entity) + "Debug Pathfinding Mode" = false + diff --git a/config/icterine.yml b/config/icterine.yml new file mode 100644 index 0000000..8783671 --- /dev/null +++ b/config/icterine.yml @@ -0,0 +1,36 @@ +# Report issues on Github https://github.com/Mephodio/Icterine/issues +# Discuss, get help or report issues on Discord https://discord.gg/2SpfwvM7dm + +# Enables debug logs +# Will worsen your performance, please do not enable if you don't need it! +debug_mode: false + +# Cancels advancement check when stack becomes empty (for example, when player throws out the whole stack). +# Injects into InventoryChangeTrigger. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_emptied_stacks: true + +# Cancels advancement check when stack size decreases (for example, when player throws out one item from stack). +# Injects into InventoryChangeTrigger, ItemStack, AbstractContainerMenu. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_decreased_stacks: true + +# Optimizes advancement check for advancements that require multiple items (for example, "Cover me in debris" requires full netherite armor set). +# Injects into InventoryChangeTriggerInstance. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +optimize_multiple_predicate_trigger: true + +# Disables advancement check when you just open any container (for example, chest or backpack). +# Injects into AbstractContainerMenu. +# Disable if you have mixin conflict or problems with any container (and also report on github/discord!). +initialize_inventory_last_slots: true + +# Skips advancement check when you pick up or otherwise increase stack size if this change doesn't pass any advancement threshold. +# For example, dirt stack size increased from 52 to 53, but there's no advancement for getting 53 dirt in your modpack. +optimize_triggers_for_increased_stacks: true + +# When checking each item criterion, first check the count requirement and see if it was fulfilled before. +# For example, there is advancement for getting stone block, any amount. You have 52 dirt, and you pick up one more. There is +# no way you can the get stone advancement from this action, because it requires any amount of item, and you already had some. +# Another example: there is no way you can get the advancement for 64 emerald blocks if you don't have dirt and you pick up 5 dirt. +check_count_before_item_predicate_match: true \ No newline at end of file diff --git a/config/illagerinvasion-server.toml b/config/illagerinvasion-server.toml new file mode 100644 index 0000000..2423d98 --- /dev/null +++ b/config/illagerinvasion-server.toml @@ -0,0 +1,51 @@ + +[alchemist] + #Does this illager take part in village raids. + participate_in_raids = true + +[sorcerer] + #Does this illager take part in village raids. + participate_in_raids = true + +[illusioner] + #Does this illager take part in village raids. + participate_in_raids = true + +[basher] + #Does this illager take part in village raids. + participate_in_raids = true + +[necromancer] + #Does this illager take part in village raids. + participate_in_raids = true + +[inquisitor] + #Does this illager take part in village raids. + participate_in_raids = true + +[provoker] + #Does this illager take part in village raids. + participate_in_raids = true + +[archivist] + #Does this illager take part in village raids. + participate_in_raids = true + +[marauder] + #Does this illager take part in village raids. + participate_in_raids = true + +[general] + #Will platinum armor trims provide special effects to the player depending on the piece of armor they are applied to. + #Helmet: More experience from killing mobs. + #Chestplate: Faster block breaking speed when using an incorrect or no tool. + #Leggings: Slower hunger drain when performaing actions. + #Boots: Farmland can no longer be trampled. + platinum_trim_effects = true + +[invoker] + #Show a yellow boss bar when fighting an invoker. + invoker_boss_bar = true + #Does this illager take part in village raids. + participate_in_raids = false + diff --git a/config/illuminations.properties b/config/illuminations.properties new file mode 100644 index 0000000..946f7d1 --- /dev/null +++ b/config/illuminations.properties @@ -0,0 +1,16 @@ +#Fri Feb 27 21:44:56 EST 2026 +planktons-spawn-rate=MEDIUM +density=100 +firefly-rainbow=false +will-o-wisps-spawn-rate=MEDIUM +view-auras-fp=false +firefly-spawn-underground=false +debug-mode=false +display-cosmetics=true +glowworms-spawn-rate=HIGH +chorus-petal-spawn-multiplier=1 +fireflies-spawn-rate=HIGH +eyes-in-the-dark-spawn-rate=MEDIUM +halloween-features=ENABLE +firefly-spawn-always=false +firefly-white-alpha=100 diff --git a/config/immediatelyfast.json b/config/immediatelyfast.json new file mode 100644 index 0000000..e059677 --- /dev/null +++ b/config/immediatelyfast.json @@ -0,0 +1,21 @@ +{ + "REGULAR_INFO": "----- Regular config values below -----", + "font_atlas_resizing": true, + "map_atlas_generation": true, + "hud_batching": true, + "fast_text_lookup": true, + "fast_buffer_upload": true, + "COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----", + "dont_add_info_into_debug_hud": false, + "EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----", + "experimental_disable_error_checking": false, + "experimental_disable_resource_pack_conflict_handling": false, + "experimental_sign_text_buffering": false, + "experimental_screen_batching": true, + "DEBUG_INFO": "----- Debug only config values below (Do not touch) -----", + "debug_only_and_not_recommended_disable_universal_batching": false, + "debug_only_and_not_recommended_disable_mod_conflict_handling": false, + "debug_only_and_not_recommended_disable_hardware_conflict_handling": false, + "debug_only_print_additional_error_information": false, + "debug_only_use_last_usage_for_batch_ordering": false +} \ No newline at end of file diff --git a/config/immersive_aircraft.json b/config/immersive_aircraft.json new file mode 100644 index 0000000..fd797eb --- /dev/null +++ b/config/immersive_aircraft.json @@ -0,0 +1,59 @@ +{ + "enableDropsForNonPlayer": true, + "enableCrashExplosion": true, + "enableCrashBlockDestruction": false, + "enableCrashFire": false, + "crashExplosionRadius": 2.0, + "crashDamage": 2.0, + "preventKillThroughCrash": true, + "healthBarRow": 0, + "damagePerHealthPoint": 30, + "separateCamera": true, + "useThirdPersonByDefault": true, + "enableTrails": true, + "renderDistance": 192.0, + "fuelConsumption": 1.0, + "windClearWeather": 1.0, + "windRainWeather": 3.0, + "windThunderWeather": 3.0, + "repairSpeed": 0.025, + "repairExhaustion": 0.5, + "collisionDamage": true, + "collisionDamageMultiplier": 40.0, + "burnFuelInCreative": false, + "acceptVanillaFuel": true, + "useCustomKeybindSystem": true, + "showHotbarEngineGauge": true, + "weaponsAreDestructive": false, + "dropAircraft": true, + "dropInventory": true, + "dropUpgrades": false, + "regenerateHealthEveryNTicks": 0, + "requireShiftForRepair": false, + "bombBayEntity": { + "minecraft:egg": "minecraft:chicken" + }, + "rotaryCannonDamage": 5.0, + "heavyCrossBowVelocity": 3.0, + "fuelList": { + "minecraft:blaze_powder": 1200 + }, + "validDimensions": { + "minecraft:the_end": true, + "minecraft:overworld": true, + "minecraft:the_nether": true + }, + "gunpowderAmmunition": { + "minecraft:gunpowder": 100 + }, + "arrowAmmunition": { + "minecraft:spectral_arrow": 100, + "minecraft:arrow": 100, + "minecraft:tipped_arrow": 100 + }, + "bombBayAmmunition": { + "minecraft:tnt": 100 + }, + "version": 1, + "name": "immersive_aircraft" +} \ No newline at end of file diff --git a/config/immersive_melodies.json b/config/immersive_melodies.json new file mode 100644 index 0000000..9801433 --- /dev/null +++ b/config/immersive_melodies.json @@ -0,0 +1,42 @@ +{ + "README": "https://github.com/Luke100000/ImmersiveMelodies/wiki/Config", + "getBufferDelay": 75, + "maxAudibleDistance": 48, + "instrumentVolumeFactor": 1.0, + "perceivedLoudnessAdjustmentFactor": 0.5, + "mobInstrumentFactors": { + "minecraft:wither_skeleton": 0.01, + "minecraft:zombified_piglin": 0.01, + "minecraft:piglin": 0.01, + "minecraft:husk": 0.01, + "minecraft:zombie": 0.01, + "minecraft:piglin_brute": 0.01, + "minecraft:pillager": 0.01, + "minecraft:skeleton": 0.01 + }, + "mobInstrumentDropFactor": 0.085, + "showOtherPlayersMelodies": true, + "forceMobsToPickUp": true, + "clickedHelp": true, + "loadInbuiltMidis": true, + "stopGameMusicForPlayers": true, + "stopGameMusicForMobs": false, + "uploadPermissionLevel": 0, + "keycodeToMidi": { + "75": 72, + "81": 61, + "82": 68, + "83": 62, + "84": 70, + "87": 63, + "89": 73, + "65": 60, + "68": 64, + "69": 66, + "70": 65, + "71": 67, + "72": 69, + "74": 71 + }, + "version": 1 +} \ No newline at end of file diff --git a/config/immersive_optimization.json b/config/immersive_optimization.json new file mode 100644 index 0000000..d6a236a --- /dev/null +++ b/config/immersive_optimization.json @@ -0,0 +1,37 @@ +{ + "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/blob/1.20.1/common/src/main/java/net/conczin/immersive_optimization/config/Config.java", + "enableEntities": true, + "enableBlockEntities": true, + "optimizeForceLoadedChunks": false, + "enableDistanceCulling": true, + "enableTrackingCulling": true, + "enableViewportCulling": true, + "minDistance": 6, + "blocksPerLevel": 64, + "blocksPerLevelDistanceCulled": 10, + "blocksPerLevelTrackingCulled": 10, + "blocksPerLevelViewportCulled": 20, + "maxLevel": 20, + "blocksPerLevelBlockEntities": 32, + "stressedThreshold": 45, + "minDecreaseFactor": 0.25, + "dimensions": { + "minecraft:overworld": true, + "minecraft:the_nether": true, + "minecraft:the_end": true + }, + "entities": { + "fromanotherworld:starship": false, + "minecolonies:citizen": false, + "minecraft:player": false, + "minecraft:arrow": false, + "minecraft:ender_dragon": false, + "minecraft:wither": false, + "cataclysm:netherite_monstrosity": false, + "cataclysm:ignis": false, + "cataclysm:the_harbinger": false, + "cataclysm:the_leviathan": false + }, + "version": 2, + "name": "immersive_optimization" +} \ No newline at end of file diff --git a/config/immersiveconvergence-common.toml b/config/immersiveconvergence-common.toml new file mode 100644 index 0000000..bfcf8a5 --- /dev/null +++ b/config/immersiveconvergence-common.toml @@ -0,0 +1,13 @@ + +#Mechanical system global settings +[mechanical] + #Global maximum rotational speed in RPM for all mechanical devices (turbines, alternators, etc.). Default 7200 RPM. Changing this affects speed_factor calculations in turbines. + #Range: 1000 ~ 50000 + max_rpm = 7200 + +#Heat system global settings +[heat] + #Global maximum heat level for all heat-related devices. Default 2000.0 + #Range: 100.0 ~ 10000.0 + max_heat = 2000.0 + diff --git a/config/immersivedamageindicators-client.toml b/config/immersivedamageindicators-client.toml new file mode 100644 index 0000000..e906255 --- /dev/null +++ b/config/immersivedamageindicators-client.toml @@ -0,0 +1,28 @@ +#. +#Custom Immersive Messages font to use, or blank if null. +"Custom Font" = "anton" +#. +#ARGB, Default color for indicators - https://argb-int-calculator.netlify.app/ +#Range: > -2147483648 +"Text Color" = -1 +#. +#RGB, Default color for hurt effects - https://argb-int-calculator.netlify.app/ +#Range: > -2147483648 +"Hurt Color" = -62966 +#. +#0-255 Alpha value +#Range: > -2147483648 +Alpha = 255 +#. +#If true, critical hits will add exclamation points. +"Show Exclamation Point" = true +#. +#If true, hits will change size based on how strong they are. +"Do Size Effects" = true +#. +#If true, hits will turn red based on how strong they are. +"Do Color Effects" = true +#. +#If true, hits will shake based on how strong they are. +"Do Shake Effects" = true + diff --git a/config/immersiveengineering-client.toml b/config/immersiveengineering-client.toml new file mode 100644 index 0000000..c294554 --- /dev/null +++ b/config/immersiveengineering-client.toml @@ -0,0 +1,48 @@ +#Disables most lighting code for certain models that are rendered dynamically (TESR). May improve FPS. +#Affects turrets and garden cloches +disableFancyTESR = false +#Show the text overlay for various blocks, such as the configuration of capacitors or pumps +showTextOverlay = true +#Set the GUI scale of the Engineer's Manual. This uses the same numbers as Vanilla's GUI Scale and is therefor limited to the maximum value available ingame. +#Range: 1 ~ 32 +manualGuiScale = 4 +#Set this to true if you suffer from bad eyesight. The Engineer's manual will be switched to a bold and darker text to improve readability. +badEyesight = false +#Set this to false to change fluid recipes in the manual to use decimals on buckets instead of fractions +fluidFractions = true +#Controls if item tooltips should contain the tags names of items. These tooltips are only visible in advanced tooltip mode (F3+H) +tagTooltips = true +#Increase the distance at which certain TileEntities (specifically windmills) are still visible. This is a modifier, so set it to 1 for default render distance, to 2 for doubled distance and so on. +#Range: 0.0 ~ 1.7976931348623157E308 +increasedTileRenderdistance = 1.5 +#Set this to false to hide the update news in the manual +showUpdateNews = true +#Allows revolvers and other IE items to look properly held in 3rd person. This uses a coremod. Can be disabled in case of conflicts with other animation mods. +fancyItemHolding = true +#Set to false to disable the stencil buffer. This may be necessary on older GPUs. +stencilBufferEnabled = true +#A list of sounds that should not be muffled by the Ear Defenders. Adding to this list requires knowledge of the correct sound resource names. +earDefenders_SoundBlacklist = [] +#Use VBOs to render certain blocks. This is significantly faster than the usual rendering, +#but may not work correctly with visual effects from other mods +enableVBO = true + +#Options to set the RGB color of all IE wire types +[wire_colors] + #Range: > -2147483648 + copper = 11758655 + #Range: > -2147483648 + electrum = 15573061 + #Range: > -2147483648 + steel = 7303023 + #Range: > -2147483648 + structure_rope = 9862765 + #Range: > -2147483648 + structure_steel = 7303023 + #Range: > -2147483648 + redstone = 16723759 + #Range: > -2147483648 + copper_insulated = 16445918 + #Range: > -2147483648 + electrum_insulated = 10323322 + diff --git a/config/immersiveengineering-common.toml b/config/immersiveengineering-common.toml new file mode 100644 index 0000000..16f02e0 --- /dev/null +++ b/config/immersiveengineering-common.toml @@ -0,0 +1,26 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for IE. +#All modifiers for machines, all ore gen, the retrogen features and most other adjustable values have been moved to immersiveengineering-server.toml. +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#A list of preferred Mod IDs that results of IE processes should stem from, aka which mod you want the copper to come from. +#This affects the ores dug by the excavator, as well as those crushing recipes that don't have associated IE items. This list is in oreder of priority. +preferredOres = ["immersiveengineering", "minecraft"] + +[debug] + + [debug.wires] + #Enable detailed logging for the wire network. This can be useful for developers to track down issues related to wires. + enableWireLogger = false + #Run sanity checks on the wire network after every interaction. This will cause a decent amount of lag and a lot of log spam if the wire network isn't fully intact. Only enable when asked to by an IE developer. + validateNets = false + +#A list of all mods that IE has integrated compatability for +#Setting any of these to false disables the respective compat +[compat] + theoneprobe = true + curios = true + computercraft = true + diff --git a/config/immersivelanterns-client.toml b/config/immersivelanterns-client.toml new file mode 100644 index 0000000..dd95a06 --- /dev/null +++ b/config/immersivelanterns-client.toml @@ -0,0 +1,18 @@ + +#. +#Client Settings +[client] + #. + #Whether lantern accessories should switch to the left side or not. + "Left-Handed Lanterns" = false + #. + #Whether lantern accessories should switch to the back of the player or not. + "Back Lanterns" = false + #. + #No performance impact, just cosmetic. + "Enable Lantern Swinging Physics" = true + #. + #How affected by in-world forces lantern physics should be. Default 1f + #Range: 0.10000000149011612 ~ 10.0 + "Lantern Bounciness" = 1.0 + diff --git a/config/immersivemessages-client.toml b/config/immersivemessages-client.toml new file mode 100644 index 0000000..57e244c --- /dev/null +++ b/config/immersivemessages-client.toml @@ -0,0 +1,9 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your world's serverconfig folder! +[client] + #. + #The time to wait before showing the next message in a list. + #Range: 0.0 ~ 3.4028234663852886E38 + timeBetweenMessages = 0.5 + diff --git a/config/immersivepetroleum-client.toml b/config/immersivepetroleum-client.toml new file mode 100644 index 0000000..255afec --- /dev/null +++ b/config/immersivepetroleum-client.toml @@ -0,0 +1,9 @@ + +[GridColors] + #Normal pipe color. (Hex RGB) + normal_pipe_color = "A5A5A5" + #Perforated pipe color. (Hex RGB) + perforated_pipe_color = "54FF54" + #Perforated pipe color. (Hex RGB) + fixed_perforated_pipe_color = "FF515A" + diff --git a/config/immersivetechnology-client.toml b/config/immersivetechnology-client.toml new file mode 100644 index 0000000..d4e8921 --- /dev/null +++ b/config/immersivetechnology-client.toml @@ -0,0 +1,56 @@ + +#Render options +[render] + #This modifies the distance a special multiblock renderer is visible from (Default: 2.5). + #Range: 0.0 ~ 1.7976931348623157E308 + multiblockSpecialRenderDistanceModifier = 2.5 + #This controls if the animations and special client rendering applies to the Gas Turbine (Default: true). + gas_turbine_renderer = true + #This controls if the animations and special client rendering applies to the Steam Turbine (Default: true). + steam_turbine_renderer = true + #This controls if the animations and special client rendering applies to the Solar Reflector (Default: true). + solar_reflector_renderer = true + #Disables most lighting code for certain models that are rendered dynamically (TESR). May improve FPS. Affects various multiblocks. + disableFancyTESR = false + +#Solar Reflector options +[solar_reflector] + #Disable the dance animation and sound for untaken solar reflectors (Default: false). + disable_dance = false + #Loop the dance animation and sound for untaken solar reflectors (Default: false). + loop_dance = false + #Base frequency for the sine-wave based 'dance' animation (higher = faster movement). + #Range: 0.1 ~ 10.0 + base_frequency = 2.09 + #Full cycle duration of the dance animation in seconds. + #Range: 10.0 ~ 300.0 + dance_duration = 63.0 + +#Experimental options +[experimental] + #Display trash can OSD as per tick average instead of per second (Default: false). + per_tick_trash_cans = false + +#Particle options +[particles] + #Enable particle collisions with blocks (Default: false). + collide = false + #Height scale for colored smoke particles (Default: 0.7). + #Range: 0.0 ~ 3.0 + colored_smoke_height = 0.7 + #Height scale for custom smoke particles (Default: 1.0). + #Range: 0.0 ~ 3.0 + custom_smoke_height = 1.0 + +#Advanced Coke Oven Base Heater options +[advanced_coke_oven_baseheater] + #Maximum fan speed for the base heater animation. + #Range: 1.0 ~ 100.0 + max_fan_speed = 35.0 + #Fan acceleration rate for the base heater. + #Range: 0.1 ~ 20.0 + fan_accel = 5.0 + #Fan deceleration rate for the base heater. + #Range: 0.1 ~ 10.0 + fan_decel = 1.0 + diff --git a/config/immersivetechnology-common.toml b/config/immersivetechnology-common.toml new file mode 100644 index 0000000..8b1403f --- /dev/null +++ b/config/immersivetechnology-common.toml @@ -0,0 +1,25 @@ + +#Options shared by all boiler types +[boiler_shared] + #Target heat level for full operation when a recipe does not specify its own requirement (applies to all boilers). + #Range: 0.0 ~ 1.7976931348623157E308 + default_working_heat = 100.0 + +#Solar Tower settings +[solar_tower] + #Default target heat for full-speed operation (when recipe unspecified). + #Range: 100.0 ~ 1.7976931348623157E308 + working_heat_level = 400.0 + +#Solar Melter settings +[solar_melter] + #Default target heat for full-speed operation (when recipe unspecified). + #Range: 100.0 ~ 1.7976931348623157E308 + working_heat_level = 1000.0 + +#Creative mode tools +[creative] + #Output amount per operation for the Creative Barrel in creative mode. + #Range: > 1 + barrel_output_amount = 2147483647 + diff --git a/config/immersivetips-client.toml b/config/immersivetips-client.toml new file mode 100644 index 0000000..a1c92be --- /dev/null +++ b/config/immersivetips-client.toml @@ -0,0 +1,25 @@ +#. +#Sets screens to manually enable tips on. +"Whitelisted Screens" = [] +#. +#Sets screens to manually disable tips on. +"Blacklisted Screens" = [] +#. +#Loads included default tips from the legacy format. +"Enable Legacy Tips" = true +#. +#Loads remote tips from GitHub for the loading screen. +"Enable Remote Loading Screen Tips" = true +#. +#Loads remote item tooltips from GitHub. +"Enable Remote Item Tips" = true +#. +#If disabled, will only show on the pause and death screens. +"Enable On Loading Screens" = true +#. +#If disabled, will only show on the loading and death screens. +"Enable On Pause Screen" = true +#. +#If disabled, will only show on the pause and loading screens. +"Enable On Death Screen" = true + diff --git a/config/immersiveui.yaml b/config/immersiveui.yaml new file mode 100644 index 0000000..10411b8 --- /dev/null +++ b/config/immersiveui.yaml @@ -0,0 +1,34 @@ +# Enables wobbly items in advancement toasts. +enableAdvancementToastItems: true +# Enables curse formatting. +enableCurseFormatting: true +# Enables particles in the enchant(ing/ment) table. +enableEnchantParticles: true +# Enables floating item rotation. +enableFloatingItemRotation: true +# Enables the hotbar selector animation. +enableHotbarSelectorAnimation: true +# Enables hovering of matching items. +enableMatchingItemHovering: true +# Enables particles for rare items. +enableRarityParticles: true +# Enables screen shake. +enableScreenShake: true +# Enables vanilla slot highlighting +enableVanillaSlotHighlighting: true +# Affects the easing speed, that is applied to the rotation of the floating item. +floatingItemEasingSpeed: 0.75 +# Affects the rotation amplitude of the floating item. +floatingItemRotationAmplitude: 1.0 +# Affects the speed of the hotbar selector. +hotbarSelectorSpeed: 3.0 +# Affects the size of the hovered item. +hoveredItemScale: 1.4 +# Affects the hover amplitude of items, that match to the item that is carried in the cursor. +matchingItemHoverAmplitude: 0.8 +# Moves the hotbar selector above the items. You might want to disable this, if you use resource packs that change the default selector texture. +renderHotbarSelectorAboveItems: false +# Screen shake amplitude. +shakeAmplitude: 1.25 +# Screen shake timer in ticks. +shakeTimer: 8 diff --git a/config/industrialforestry-common.toml b/config/industrialforestry-common.toml new file mode 100644 index 0000000..6f16481 --- /dev/null +++ b/config/industrialforestry-common.toml @@ -0,0 +1,104 @@ + +["Scoop settings"] + #Multiplier of the speed at which the Industrial Scoop collects items. + #Range: 0.0 ~ 1.7976931348623157E308 + scoopSpeedMultiplier = 4.0 + #The maximum energy the Industrial Scoop can hold. + #Range: > 1 + scoopMaxEnergy = 10000 + #The amount of energy used per tick by the Industrial Scoop. + #Range: > 1 + scoopEnergyUse = 10 + +["Machines settings"] + + ["Machines settings"."Industrial Centrifuge settings"] + #Multiplier of the ticks needed to process an item in the Industrial Centrifuge. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + tickMultiplier = -0.2 + #Multiplier of the power needed to process an item in the Industrial Centrifuge. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + powerMultiplier = 0.5 + #The maximum energy the Industrial Centrifuge can hold. + #Range: > 1 + industrialCentrifugeMaxEnergy = 1000000 + #How much energy the machine can transfer per tick + #Range: > 1 + industrialCentrifugeMaxTransfer = 100000 + + ["Machines settings"."Industrial Squeezer settings"] + #Multiplier of the ticks needed to process an item in the Industrial Squeezer. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + tickMultiplier = -0.2 + #Multiplier of the power needed to process an item in the Industrial Squeezer. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + powerMultiplier = 0.5 + #The maximum energy the Industrial Squeezer can hold. + #Range: > 1 + industrialSqueezerMaxEnergy = 1000000 + #How much energy the machine can transfer per tick + #Range: > 1 + industrialSqueezerMaxTransfer = 100000 + +[Upgrades] + + [Upgrades."Speed Upgrade"] + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier1_tick_multiplier = -0.2 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier1_power_multiplier = 0.2 + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier2_tick_multiplier = -0.4 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier2_power_multiplier = 0.4 + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier3_tick_multiplier = -0.6 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier3_power_multiplier = 0.6 + + [Upgrades."Efficiency Upgrade"] + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier1_power_multiplier = -0.2 + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier2_power_multiplier = -0.4 + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier3_power_multiplier = -0.6 + + [Upgrades."Chance Upgrade"] + #The additional success chance added by a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_chance_increment = 0.2 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_power_multiplier = 0.2 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_tick_multiplier = 0.0 + #The additional success chance added by a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_chance_increment = 0.4 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_power_multiplier = 0.4 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_tick_multiplier = 0.0 + #The additional success chance added by a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_chance_increment = 0.6 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_power_multiplier = 0.6 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_tick_multiplier = 0.0 + diff --git a/config/infinitybuttons.toml b/config/infinitybuttons.toml new file mode 100644 index 0000000..420867c --- /dev/null +++ b/config/infinitybuttons.toml @@ -0,0 +1,7 @@ +muteAlarmSound = false +alarmSoundType = "RANGE" +alarmSoundRange = 6 +alarmVillagerPanic = true +tooltips = true +diamondParticles = true +forceJadeHiding = true diff --git a/config/infuserapothcompat-common.toml b/config/infuserapothcompat-common.toml new file mode 100644 index 0000000..264fec2 --- /dev/null +++ b/config/infuserapothcompat-common.toml @@ -0,0 +1,5 @@ + +[general] + #Allow cursed enchantments in the Enchanting Infuser without requiring a Treasure Shelf + allowCursedEnchantments = false + diff --git a/config/integrated_lucky_blocks-common.toml b/config/integrated_lucky_blocks-common.toml new file mode 100644 index 0000000..1e1a251 --- /dev/null +++ b/config/integrated_lucky_blocks-common.toml @@ -0,0 +1,12 @@ +#Enables the Lucky Temple structure spawn in the overworld +luckyTemples = true +#Whether breaking a Lucky Block in creative mode should activate its effect +creativeDestroy = false +#Whether the experimental Luck System should be enabled (Enabling this will cause lucky drops to be generally less variant) +enableLuck = false +#A list of loot tables to add Lucky Blocks to +loot_tables = ["minecraft:chests/end_city_treasure", "minecraft:chests/ancient_city", "minecraft:chests/desert_pyramid", "minecraft:chests/jungle_temple", "minecraft:chests/bastion_treasure", "minecraft:gameplay/fishing/treasure"] +#The weight of Lucky Blocks in the loot tables specified above (higher weight = more likely to generate) +#Range: > 0 +lootTableWeight = 3 + diff --git a/config/inventory_pets_illuminati_blacklist.json b/config/inventory_pets_illuminati_blacklist.json new file mode 100644 index 0000000..8a0186e --- /dev/null +++ b/config/inventory_pets_illuminati_blacklist.json @@ -0,0 +1,27 @@ +{ + "minecraft:dirt": 0, + "minecraft:command_block": 0, + "bibliocraft:": 0, + "allthemodium:": 0, + "doom:": 0, + "gobber2:": 0, + "ars_nouveau:": 0, + "ars_elemental:": 0, + "ars_caelum:": 0, + "ars_additions:": 0, + "inventorypets:april_fool_pet": 0, + "inventorypets:pet_nether_portal": 0, + "inventorypets:pet_end_portal": 0, + "inventorypets:item_gift": 0, + "inventorypets:patreon_shirt": 0, + "minecraft:air": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0 +} \ No newline at end of file diff --git a/config/inventoryessentials-common.toml b/config/inventoryessentials-common.toml new file mode 100644 index 0000000..0ba06a4 --- /dev/null +++ b/config/inventoryessentials-common.toml @@ -0,0 +1,21 @@ +#Use the client implementation even on servers that have the mod installed - only useful for development purposes. +forceClientImplementation = false +#Should space-clicking move all items even if an empty slot was clicked? +allowBulkTransferAllOnEmptySlot = false +#Should space-clicking armor in the inventory swap to all matching armor? +bulkTransferArmorSets = true +#Should holding shift and moving your mouse over items quick-transfer them without requiring each to be clicked? +enableShiftDrag = true +#Should space-clicking an item move all items from that inventory at once? +enableBulkTransferAll = true +#Should ctrl-clicking only move one item at a time instead of the full stack? +enableSingleTransfer = true +#Should shift-ctrl-clicking move all items of the same type at once? +enableBulkTransfer = true +#Should shift-ctrl-drop-clicking drop all items of the same type at once? +enableBulkDrop = true +#Should control-space-clicking an item move one of each item from that inventory at once? +enableBulkTransferSingle = true +#Should middle-clicking a slot sort the inventory? +enableMiddleClickSort = true + diff --git a/config/inventorypets-common.toml b/config/inventorypets-common.toml new file mode 100644 index 0000000..fbbf5b8 --- /dev/null +++ b/config/inventorypets-common.toml @@ -0,0 +1,423 @@ + +["Inventory Pets Config Settings"] + #Display the names of the fans who suggested pets (default:true) + showSuggestors = true + #Disable Cloud Pet thunder sounds (default:false) + disableCloudSound = false + #Display the mod update message during startup (default:true) + showUpdateMessage = false + #Display holiday messages during startup (default:true) + showHolidayMessages = false + #Are pets required to eat food (default:true) + petsMustEat = true + #Pets eat rarer items (default:false) + petsEatWholeItems = false + #Turn off all dungeons (default:false) + disableAllDungeons = false + #Turn off Nether dungeons (default:false) + disableNetherDungeons = false + #Turn off Space dungeons (default:false) + disableSpaceDungeons = false + #Turn off Underground dungeons (default:false) + disableUndergroundDungeons = false + #Turn off Sea Cave dungeons (default:false) + disableSeaCaveDungeons = false + #Turn off Sky dungeons (default:false) + disableSkyDungeons = false + #Turn off Tree Tops (default:false) + disableTreeTops = false + #Disable mobs spawning in dungeons (default:false) + disableMobsSpawnInDungeons = false + #Disable Squid Pet swim speed boost ability (default:false) + disableSquidSpeed = false + #Disable Creeper Pet explosion ability (default:false) + disableCreeperExplosion = false + #Disable Cloud Pet lightning strike ability (default:false) + disableCloudLightning = false + #Disable Enderman Pet auto-teleport (default:false) + disableEndermanAutoTeleport = false + #Disable Pingot Pet auto extract ability (default:false) + disablePingotAutoExtract = false + #Disable Sponge Pet absorb water (default:false) + disableSpongeWaterAbsorb = false + #Disable Illuminati Pet gives items ability (default:false) + disableIlluminatiGiveItems = false + #Illuminati Pet only gives craftable items (default:true) + illuminatiCraftedOnly = true + #Disable Machines that can Activate items (default:false) + disableRightClickMachines = false + #Reduce the number of Quantum Crystal Monster Pet minions (default:false) + reduceQuantumCrystalMonsterMinions = false + #Disable Spider Pet jump ability (default:false) + disableSpiderJump = false + #Disable Pets give items ability (default:false) + disablePetsGiveItems = false + #Disable Slime revival sound (default:false) + disableSlimeReviveSound = false + #Allow Black Hole pet abilities to affect other players (default:false) + enableBlackHoleAffectsPlayers = false + #Allow Pufferfish pet abilities to affect other players (default:false) + enablePufferfishAffectsPlayers = false + #Allow Moon pet abilities to affect other players (default:false) + enableMoonAffectsPlayers = false + #Allow Sun pet abilities to affect other players (default:false) + enableDubstepAffectsPlayers = false + #All players must be in bed for Bed Pet sleep ability (default:false) + allPlayersMustBeInBed = false + #Disable all holiday pets (default:false) + disableHolidayPets = false + #Disable the April Fool pet and messages (default:false) + disableAprilFoolHoliday = false + #Allow April Fool all year round (default:false) + yearroundAprilFool = false + #Allow more grieflike April Fools pranks (default:false) + enableAprilFoolGriefPranks = false + #Allow Petrifier to make legendary pets (default:false) + allowPetrifierLegendaries = false + #Disable the Petrifier (default:false) + disablePetrifier = false + #Disable random TNT in Tree Top chests (default:false) + disableTreeTopTNT = false + #Enable Loot Pet with FTBUltimine installed (default:false) + enableLootWithFTBUltimine = false + #Disable Cloud Fly ability (default:false) + disableCloudFly = false + #Cow Pet removes Levitation (default:false) + cowPetRemovesLevitation = false + #Factor by which PacMan Powerup bonus increases with every kill (default: 3) + #Range: 1 ~ 10 + pacManPowerupFactor = 3 + #Cloud Pet fly speed (default:3) + #Range: 1 ~ 4 + cloudFlySpeed = 3 + #Radius blocks of water absorbed by Sponge Pet (default: 8) + #Range: 1 ~ 64 + spongeAbsorbBlockRadius = 8 + #Illuminati cooldown duration in minutes (default: 1) + #Range: 1 ~ 10 + illuminatiCooldown = 1 + #Illuminati invisibility duration in minutes (default: 1) + #Range: 1 ~ 3 + illuminatiInvisibleDuration = 1 + #Item cap for all loaded items, including mods (default: 5000) + #Range: 1 ~ 50000 + illuminatiItemCapLimit = 5000 + #Juggernaut cooldown duration in minutes (default: 1) + #Range: 1 ~ 10 + juggernautCooldown = 1 + #Juggernaut shield wall duration in minutes (default: 1) + #Range: 1 ~ 3 + juggernautShieldWallDuration = 1 + #Frequency of Sky Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySkyDungeons = 5 + #Frequency of Underground Dungeons (default: 5) + #Range: 1 ~ 10 + frequencyUndergroundDungeons = 5 + #Frequency of Sea Cave Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySeaCaveDungeons = 5 + #Frequency of Tree Tops (default: 5) + #Range: 1 ~ 10 + frequencyTreeTops = 5 + #Frequency of Space Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySpaceDungeons = 5 + #Frequency of Nether Dungeons (default: 5) + #Range: 1 ~ 10 + frequencyNetherDungeons = 5 + #Frequency of Pet Eating (default: 120) + #Range: 1 ~ 5000 + petEatTimerFactor = 120 + #Holiday Pet active month (default: 12) + #Range: 1 ~ 12 + holidayPetMonth = 12 + #Chunks Biome Pet will search through (default:96) + #Range: 1 ~ 225 + biomePetChunks = 96 + #Chicken Pet speed (default: 3) + #Range: 1 ~ 10 + chickenEffectLevel = 3 + #Hunger threshold for Pac-man Pet to auto-eats (default: 8) + #Range: 1 ~ 10 + pacManEatLevel = 8 + #Disable the Anvil pet (default:false) + disableAnvil = false + #Disable the Apple pet (default:false) + disableApple = false + #Disable the April Fool pet (default:false) + disableAprilFool = false + #Disable the Banana pet (default:false) + disableBanana = false + #Disable the Bed pet (default:false) + disableBed = false + #Disable the Biome pet (default:false) + disableBiome = false + #Disable the Black Hole pet (default:false) + disableBlackHole = false + #Disable the (default:false) + disableBlaze = false + #Disable the (default:false) + disableBrewingStand = false + #Disable the Blaze pet (default:false) + disableCheetah = false + #Disable the Chest pet (default:false) + disableChest = false + #Disable the Chicken pet (default:false) + disableChicken = false + #Disable the Christmas Tree pet (default:false) + disableChristmasTree = false + #Disable the Cloud pet (default:false) + disableCloud = false + #Disable the Cobblestone pet (default:false) + disableCobblestone = false + #Disable the Cow pet (default:false) + disableCow = false + #Disable the Crafting Table pet (default:false) + disableCraftingTable = false + #Disable the Creeper pet (default:false) + disableCreeper = false + #Disable the Dirt pet (default:false) + disableDirt = false + #Disable the Double Chest pet (default:false) + disableDoubleChest = false + #Disable the Dubstep pet (default:false) + disableDubstep = false + #Disable the Enchanting Table pet (default:false) + disableEnchantingTable = false + #Disable the Ender Chest pet (default:false) + disableEnderChest = false + #Disable the Enderman pet (default:false) + disableEnderman = false + #Disable the End Portal pet (default:false) + disableEndPortal = true + #Disable the Flying Saddle pet (default:false) + disableFlyingSaddle = false + #Disable the Furnace pet (default:false) + disableFurnace = false + #Disable the Ghast pet (default:false) + disableGhast = false + #Disable the Grave pet (default:false) + disableGrave = false + #Disable the Heart pet (default:false) + disableHeart = false + #Disable the House pet (default:false) + disableHouse = false + #Disable the Illuminati pet (default:false) + disableIlluminati = false + #Disable the Iron Golem pet (default:false) + disableIronGolem = false + #Disable the Juggernaut pet (default:false) + disableJuggernaut = false + #Disable the Jukebox pet (default:false) + disableJukebox = false + #Disable the Lead pet (default:false) + disableLead = false + #Disable the Loot pet (default:false) + disableLoot = false + #Disable the Magma Cube pet (default:false) + disableMagmaCube = false + #Disable the Menorah pet (default:false) + disableMenorah = false + #Disable the Meta pet (default:false) + disableMeta = false + #Disable the Mickerson pet (default:false) + disableMickerson = false + #Disable the Mishumaa Saba pet (default:false) + disableMishumaaSaba = false + #Disable the Moon pet (default:false) + disableMoon = false + #Disable the Mooshroom pet (default:false) + disableMooshroom = false + #Disable the Nether Portal pet (default:false) + disableNetherPortal = true + #Disable the Ocelot pet (default:false) + disableOcelot = false + #Disable the PacMan pet (default:false) + disablePacMan = false + #Disable the Pig pet (default:false) + disablePig = false + #Disable the Pingot pet (default:false) + disablePingot = false + #Disable the Pixie pet (default:false) + disablePixie = false + #Disable the Politically Correct pet (default:false) + disablePoliticallyCorrect = false + #Disable the Pufferfish pet (default:false) + disablePufferfish = false + #Disable the Purplicious Cow pet (default:false) + disablePurpliciousCow = false + #Disable the Quantum Crystal Monster pet (default:false) + disableQuantumCrystalMonster = false + #Disable the Quiver pet (default:false) + disableQuiver = false + #Disable the Saddle pet (default:false) + disableSaddle = false + #Disable the Sated Chest pet (default:false) + disableSatedChest = false + #Disable the Sated Double Chest pet (default:false) + disableSatedDoubleChest = false + #Disable the Sheep pet (default:false) + disableSheep = false + #Disable the Shield pet (default:false) + disableShield = false + #Disable the Siamese pet (default:false) + disableSiamese = false + #Disable the Silverfish pet (default:false) + disableSilverfish = false + #Disable the Slime pet (default:false) + disableSlime = false + #Disable the Snow Golem pet (default:false) + disableSnowGolem = false + #Disable the Spider pet (default:false) + disableSpider = false + #Disable the Sponge pet (default:false) + disableSponge = false + #Disable the Squid pet (default:false) + disableSquid = false + #Disable the Sun pet (default:false) + disableSun = false + #Disable the Torch pet (default:false) + disableTorch = false + #Disable the Wither pet (default:false) + disableWither = false + #Disable the Wolf pet (default:false) + disableWolf = false + #Dingot only looks for Inventory Pets structures (default:false) + dingotIPStruturesOnly = false + #Chunks Dingot Pet will search through (default:96) + #Range: 1 ~ 225 + dingotSearchChunks = 96 + #Anvil Pet's favorite food + foodAnvil = "minecraft:iron_nugget" + #Apple Pet's favorite food + foodApple = "minecraft:gold_ingot" + #April Fool Pet's favorite food + foodAprilFool = "minecraft:tripwire_hook" + #Banana Pet's favorite food + foodBanana = "minecraft:glowstone_dust" + #Bed Pet's favorite food + foodBed = "minecraft:white_wool" + #Biome Pet's favorite food + foodBiome = "minecraft:grass_block" + #Black Hole Pet's favorite food + foodBlackHole = "inventorypets:nugget_obsidian" + #Blaze Pet's favorite food + foodBlaze = "minecraft:quartz" + #Brewing Stand Pet's favorite food + foodBrewingStand = "minecraft:nether_wart" + #Cheetah Pet's favorite food + foodCheetah = "minecraft:beef" + #Chest Pet's favorite food + foodChest = "minecraft:oak_planks" + #Chicken Pet's favorite food + foodChicken = "minecraft:wheat_seeds" + #Cloud Pet's favorite food + foodCloud = "minecraft:quartz" + #Cobblestone Pet's favorite food + foodCobblestone = "minecraft:dirt" + #Cow Pet's favorite food + foodCow = "minecraft:wheat" + #Crafting Table Pet's favorite food + foodCraftingTable = "minecraft:oak_planks" + #Creeper Pet's favorite food + foodCreeper = "inventorypets:nugget_emerald" + #Dingot Pet's favorite food + foodDingot = "minecraft:copper_ingot" + #Dirt Pet's favorite food + foodDirt = "minecraft:cobblestone" + #Double Chest Pet's favorite food + foodDoubleChest = "minecraft:oak_log" + #Dubstep Pet's favorite food + foodDubstep = "minecraft:note_block" + #Enchanting Table Pet's favorite food + foodEnchantingTable = "inventorypets:nugget_lapis" + #Ender Chest Pet's favorite food + foodEnderChest = "inventorypets:nugget_ender" + #Enderman Pet's favorite food + foodEnderman = "inventorypets:nugget_obsidian" + #End Portal Pet's favorite food + foodEndPortal = "inventorypets:nugget_ender" + #Flying Saddle Pet's favorite food + foodFlyingSaddle = "inventorypets:nugget_diamond" + #Furnace Pet's favorite food + foodFurnace = "inventorypets:nugget_coal" + #Ghast Pet's favorite food + foodGhast = "minecraft:blaze_powder" + #Grave Pet's favorite food + foodGrave = "minecraft:bone" + #Heart Pet's favorite food + foodHeart = "minecraft:red_tulip" + #House Pet's favorite food + foodHouse = "minecraft:iron_nugget" + #Iron Golem Pet's favorite food + foodIronGolem = "minecraft:iron_ingot" + #Illuminati Pet's favorite food + foodIlluminati = "inventorypets:nugget_emerald" + #Juggernaut Pet's favorite food + foodJuggernaut = "inventorypets:nugget_obsidian" + #Jukebox Pet's favorite food + foodJukebox = "minecraft:redstone" + #Lead Pet's favorite food + foodLead = "minecraft:string" + #Loot Pet's favorite food + foodLoot = "minecraft:gold_nugget" + #Magma Cube Pet's favorite food + foodMagmaCube = "minecraft:quartz" + #Mickerson Pet's favorite food + foodMickerson = "inventorypets:nugget_diamond" + #Moon Pet's favorite food + foodMoon = "inventorypets:nugget_emerald" + #Mooshroom Pet's favorite food + foodMooshroom = "minecraft:red_mushroom" + #Nether Portal Pet's favorite food + foodNetherPortal = "inventorypets:nugget_obsidian" + #Ocelot Pet's favorite food + foodOcelot = "minecraft:cooked_cod" + #Pac-Man Pet's favorite food + foodPacMan = "minecraft:cookie" + #Pig Pet's favorite food + foodPig = "minecraft:carrot" + #Pingot Pet's favorite food + foodPingot = "inventorypets:nugget_diamond" + #Pixie Pet's favorite food + foodPixie = "inventorypets:nugget_emerald" + #Pufferfish Pet's favorite food + foodPufferfish = "minecraft:glowstone_dust" + #Purplicious Cow Pet's favorite food + foodPurpliciousCow = "inventorypets:nugget_diamond" + #Quantum Crystal Monster Pet's favorite food + foodQuantumCrystalMonster = "inventorypets:nugget_lapis" + #Quiver Pet's favorite food + foodQuiver = "minecraft:feather" + #Saddle Pet's favorite food + foodSaddle = "minecraft:iron_nugget" + #Sheep Pet's favorite food + foodSheep = "minecraft:wheat" + #Shield Pet's favorite food + foodShield = "minecraft:iron_nugget" + #Siamese Pet's favorite food + foodSiamese = "minecraft:cooked_chicken" + #Silverfish Pet's favorite food + foodSilverfish = "minecraft:cobblestone" + #Slime Pet's favorite food + foodSlime = "minecraft:golden_apple" + #Snow Golem Pet's favorite food + foodSnowGolem = "minecraft:pumpkin" + #Spider Pet's favorite food + foodSpider = "minecraft:beef" + #Sponge Pet's favorite food + foodSponge = "minecraft:lily_pad" + #Squid Pet's favorite food + foodSquid = "minecraft:cod" + #Sun Pet's favorite food + foodSun = "minecraft:gold_ingot" + #Torch Pet's favorite food + foodTorch = "inventorypets:nugget_coal" + #Wither Pet's favorite food + foodWither = "minecraft:soul_sand" + #Wolf Pet's favorite food + foodWolf = "minecraft:bone" + #Disable the Dingot pet (default:false) + disableDingot = false + diff --git a/config/invtweaks-client.toml b/config/invtweaks-client.toml new file mode 100644 index 0000000..947dc5a --- /dev/null +++ b/config/invtweaks-client.toml @@ -0,0 +1,182 @@ + +#Sorting customization +[sorting] + #Rules for sorting + #Each element is of the form + #A-D is the row from top to bottom + #1-9 is the column from left to right + #POS denotes the target slots + #Exs. POS = D3 means 3rd slot of hotbar + # POS = B means 2nd row, left to right + # POS = 9 means 9th column, bottom to top + # POS = A1-C9 means slots A1,A2,…,A9,B1,…,B9,C1,…,C9 + # POS = A9-C1 means slots A9,A8,…,A1,B9,…,B1,C9,…,C1 + #Append v to POS of the form A1-C9 to move in columns instead of rows + #Append r to POS of the form B or 9 to reverse slot order + #CATEGORY is the item category to designate the slots to + #CATEGORY = /LOCKED prevents slots from moving in sorting + #CATEGORY = /FROZEN has the effect of /LOCKED and, in addition, ignores slot in auto-refill + #CATEGORY = /OTHER covers all remaining items after other rules are exhausted + rules = ["D /LOCKED", "A1-C9 /OTHER"] + + #Categor(y/ies) for sorting + # + #name: the name of the category + # + #spec: + #Each element denotes a series of semicolon-separated clauses + #Items need to match all clauses of at least one element + #Items matching earlier elements are earlier in order + #A clause of the form /tag: matches a tag + #Clauses /instanceof: or /class: check if item is + #instance of class or exactly of that class respectively + #Specifying an item's registry name as a clause checks for that item + #Prepending an exclamation mark at the start of a clause inverts it + [[sorting.category]] + name = "sword" + spec = ["/instanceof:net.minecraft.world.item.SwordItem"] + + [[sorting.category]] + name = "axe" + spec = ["/instanceof:net.minecraft.world.item.AxeItem"] + + [[sorting.category]] + name = "pickaxe" + spec = ["/instanceof:net.minecraft.world.item.PickaxeItem"] + + [[sorting.category]] + name = "shovel" + spec = ["/instanceof:net.minecraft.world.item.ShovelItem"] + + [[sorting.category]] + name = "hoe" + spec = ["/instanceof:net.minecraft.world.item.HoeItem"] + + [[sorting.category]] + name = "acceptableFood" + spec = ["/isFood:; !minecraft:rotten_flesh; !minecraft:spider_eye; !minecraft:poisonous_potato; !minecraft:pufferfish"] + + [[sorting.category]] + name = "torch" + spec = ["minecraft:torch"] + + [[sorting.category]] + name = "cheapBlocks" + spec = ["/tag:forge:cobblestone", "/tag:minecraft:dirt"] + + [[sorting.category]] + name = "blocks" + spec = ["/instanceof:net.minecraft.world.item.BlockItem"] + + #Custom settings per GUI + #x = x-position of external sort button relative to GUI top left + #y = same as above except for the y-position + #Omit x and y to leave position unchanged + #sortRange = slots to sort + #E.g. sortRange = "5,0-2" sorts slots 5,0,1,2 in that order + #sortRange = "" disables sorting for that container + #Out-of-bound slots are ignored + #Omit sortRange to leave as default + [[sorting.containerOverrides]] + containerClass = "appeng.client.gui.implementations.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "appeng.client.gui.me.items.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "de.mari_023.ae2wtlib.wct.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.github.glodblock.epp.client.gui.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "org.cyclops.integrateddynamics.inventory.container.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "org.cyclops.integratedterminals.inventory.container.ContainerTerminalStoragePart" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.refinedmods.refinedstorage.screen.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "net.p3pp3rf1y.sophisticatedbackpacks.common.gui.BackpackContainer" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "net.p3pp3rf1y.sophisticatedstorage.common.gui.StorageContainerMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "tfar.craftingstation.CraftingStationMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "tfar.dankstorage.container.DankContainers" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "mcjty.rftoolsutility.modules.crafter.blocks.CrafterContainer" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "gripe._90.megacells.menu.MEGAInterfaceMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "cofh.thermal.core.client.gui.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "ironfurnaces.gui.furnaces.*" + sortRange = "0-45" + + [[sorting.containerOverrides]] + containerClass = "com.direwolf20.justdirethings.client.screens.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.direwolf20.laserio.client.screens.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.stal111.forbidden_arcanus.client.gui.screen.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "aztech.modern_industrialization.*.gui.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "slimeknights.tconstruct.smeltery.client.screen.HeatingStructureScreen" + x = 41 + y = 0 + sortRange = "" + +#Tweaks +[tweaks] + #Enable debug will log the name of the screens being opened + enableDebug = false + #Enable auto-refill + autoRefill = true + #Enable a quick view of how many items that you're currently holding exists in your inventory by displaying it next your hotbar. + quickView = true + #0 = disable sorting + #1 = player sorting only + #2 = external sorting only + #3 = all sorting enabled (default) + #Range: 0 ~ 3 + enableSort = 3 + #0 = disable buttons (i.e. keybind only) + #1 = buttons for player sorting only + #2 = buttons for external sorting only + #3 = all buttons enabled (default) + #Range: 0 ~ 3 + enableButtons = 3 + diff --git a/config/iris-excluded.json b/config/iris-excluded.json new file mode 100644 index 0000000..c168c6c --- /dev/null +++ b/config/iris-excluded.json @@ -0,0 +1 @@ +{"excluded":["put:valuesHere"]} \ No newline at end of file diff --git a/config/ironbows-common.toml b/config/ironbows-common.toml new file mode 100644 index 0000000..add54ad --- /dev/null +++ b/config/ironbows-common.toml @@ -0,0 +1,21 @@ +#Range: 0.0 ~ 3.4028234663852886E38 +"Iron Bow damage bonus" = 1.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Golden Bow damage bonus" = 1.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Diamond Bow damage bonus" = 2.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Emerald Bow damage bonus" = 3.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Netherite Bow damage bonus" = 5.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Iron Crossbow damage bonus" = 1.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Golden Crossbow damage bonus" = 1.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Diamond Crossbow damage bonus" = 2.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Emerald Crossbow damage bonus" = 3.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Netherite Crossbow damage bonus" = 5.0 + diff --git a/config/ironfurnaces-client.toml b/config/ironfurnaces-client.toml new file mode 100644 index 0000000..15d3f3b --- /dev/null +++ b/config/ironfurnaces-client.toml @@ -0,0 +1,277 @@ + +#Modded Furnace Settings +[modded_furnaces] + + [modded_furnaces.vibranium_furnace] + # How much RF to generate per tick + # Default: 3000 + #Range: 1 ~ 100000 + generation = 3000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 32 + #Range: 1 ~ 64 + mult = 32 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 3 + #Range: 1 ~ 72000 + speed = 3 + + [modded_furnaces.allthemodium_furnace] + # How much RF to generate per tick + # Default: 2000 + #Range: 1 ~ 100000 + generation = 2000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 16 + #Range: 1 ~ 64 + mult = 16 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 5 + #Range: 1 ~ 72000 + speed = 5 + + [modded_furnaces.unobtainium_furnace] + # How much RF to generate per tick + # Default: 5000 + #Range: 1 ~ 100000 + generation = 5000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 64 + #Range: 1 ~ 64 + mult = 64 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 1 + #Range: 1 ~ 72000 + speed = 1 + +#Update Checker Settings +[updates] + + [updates.check_updates] + # true = check for updates, false = don't check for updates. + # Default: true. + updates = true + +#Furnace Settings +[furnaces] + # The capacity of the recipe cache, higher values use more memory. + # Default: 10 + #Range: 1 ~ 100 + recipe_cache = 10 + + [furnaces.iron_furnace] + # How much RF to generate per tick + # Default: 40 + #Range: 1 ~ 100000 + generation = 40 + # What tier this furnace should be. + # Default: 0 + #Range: 0 ~ 2 + tier = 0 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 160 + #Range: 2 ~ 72000 + speed = 160 + + [furnaces.obsidian_furnace] + # How much RF to generate per tick + # Default: 500 + #Range: 1 ~ 100000 + generation = 500 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 20 + #Range: 2 ~ 72000 + speed = 20 + + [furnaces.recipeMaxXPLevel] + # How many levels of experience that can be stored in recipes stored in the furnace, after the experience stored in the recipe reaches this value (in levels) it will be voided. + # Default: 100 + # 100 levels is 30971 XP + #Range: 1 ~ 1000 + level = 100 + + [furnaces.netherite_furnace] + # How much RF to generate per tick + # Default: 1000 + #Range: 1 ~ 100000 + generation = 1000 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 5 + #Range: 2 ~ 72000 + speed = 5 + + [furnaces.copper_furnace] + # How much RF to generate per tick + # Default: 40 + #Range: 1 ~ 100000 + generation = 40 + # What tier this furnace should be. + # Default: 0 + #Range: 0 ~ 2 + tier = 0 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 180 + #Range: 2 ~ 72000 + speed = 180 + + [furnaces.emerald_furnace] + # How much RF to generate per tick + # Default: 320 + #Range: 1 ~ 100000 + generation = 320 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 40 + #Range: 2 ~ 72000 + speed = 40 + + [furnaces.million_furnace] + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + + [furnaces.crystal_furnace] + # How much RF to generate per tick + # Default: 360 + #Range: 1 ~ 100000 + generation = 360 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 40 + #Range: 2 ~ 72000 + speed = 40 + + [furnaces.diamond_furnace] + # How much RF to generate per tick + # Default: 240 + #Range: 1 ~ 100000 + generation = 240 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 80 + #Range: 2 ~ 72000 + speed = 80 + + [furnaces.silver_furnace] + # How much RF to generate per tick + # Default: 100 + #Range: 1 ~ 100000 + generation = 100 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 1 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 140 + #Range: 2 ~ 72000 + speed = 140 + + [furnaces.rainbow_furnace] + # How much power the Rainbow Furnace will generate. + # Default: 50000 + #Range: 1 ~ 100000000 + rainbow_generation = 50000 + # How much RF to generate per tick + # Default: 2000 + #Range: 1 ~ 100000 + generation = 2000 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 20 + #Range: 2 ~ 72000 + speed = 20 + + [furnaces.energy] + # How much energy can be stored in tier 0 furnaces. + # Default: 80 000 + #Range: > 4000 + tier_0 = 80000 + # How much energy can be stored in tier 2 furnaces. + # Default: 1 000 000 + #Range: > 4000 + tier_2 = 1000000 + # How much energy can be stored in tier 1 furnaces. + # Default: 200 000 + #Range: > 4000 + tier_1 = 200000 + + [furnaces.gold_furnace] + # How much RF to generate per tick + # Default: 160 + #Range: 1 ~ 100000 + generation = 160 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 1 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 120 + #Range: 2 ~ 72000 + speed = 120 + +#JEI Settings +[jei] + + [jei.jei] + # Enable or disable the Click Area inside the GUI in all of Iron Furnaces' furnaces. + enable_jei_click_area = true + # Enable or disable the Catalysts in Jei for Iron Furnaces. + enable_jei_catalysts = true + # Enable or disable the JeiPlugin of Iron Furnaces. + enable_jei = true + +#Misc +[misc] + + [misc.misc] + # Enable or disable the Rainbow Content + rainbow = true + # Enable or disable light-updates, furances will no longer emit light, true = disable + lightupdates = false + # Enable or disable version checking and player identification through the web, true = disabled, if your server is using firewall software you might want to disable this + web = false + # Show furnace settings errors in chat, used for debugging + errors = false + diff --git a/config/ironfurnaces.toml b/config/ironfurnaces.toml new file mode 100644 index 0000000..e69de29 diff --git a/config/ironjetpacks-client.toml b/config/ironjetpacks-client.toml new file mode 100644 index 0000000..950a230 --- /dev/null +++ b/config/ironjetpacks-client.toml @@ -0,0 +1,27 @@ + +#General configuration options. +[General] + #Enable jetpack sounds? + jetpackSounds = true + #Enable jetpack particles? + jetpackParticles = true + #Enable jetpack stat tooltips? + advancedTooltips = true + +#HUD configuration options. +[HUD] + #Enable the HUD? + enable = true + #The position preset for the HUD. + #0=Top Left, 1=Middle Left, 2=Bottom Left, 3=Top Right, 4=Middle Right, 5=Bottom Right + #Range: 0 ~ 5 + position = 1 + #The X offset for the HUD. + #Range: > -2147483648 + offsetX = 0 + #The Y offset for the HUD. + #Range: > -2147483648 + offsetY = 0 + #Show HUD over the chat? + showOverChat = false + diff --git a/config/ironjetpacks-common.toml b/config/ironjetpacks-common.toml new file mode 100644 index 0000000..a57c41a --- /dev/null +++ b/config/ironjetpacks-common.toml @@ -0,0 +1,19 @@ + +#General configuration options. +[General] + #Should jetpacks be enchantable? + enchantableJetpacks = false + #Enable Curios integration. + curiosIntegration = true + +#Dynamic recipe options. +[Recipe] + #Enable default recipes for Energy Cells? + cells = true + #Enable default recipes for Thrusters? + thrusters = true + #Enable default recipes for Capacitors? + capacitors = true + #Enable default recipes for Jetpacks? + jetpacks = true + diff --git a/config/irons_spellbooks-client.toml b/config/irons_spellbooks-client.toml new file mode 100644 index 0000000..a59eec6 --- /dev/null +++ b/config/irons_spellbooks-client.toml @@ -0,0 +1,77 @@ + +############################################################################################### +### ## +### ## +### ## +### ## +### ## +### ## +### ATTENTION: These are client configs. For gameplay settings, go to the SERVER CONFIGS ## +### ## +### ## +### ## +### ## +### ## +### ## +############################################################################################### +# +[UI] + + [UI.ManaBar] + #By default (Contextual), the mana bar only appears when you are holding a magic item or are not at max mana. + #Allowed Values: Never, Always, Contextual + manaBarDisplay = "Contextual" + #Used to adjust mana bar's position (11 is one full hunger bar up). + manaBarXOffset = 0 + manaBarYOffset = 0 + manaBarTextVisible = true + #Allowed Values: Hunger, XP, Center, TopLeft, TopRight, BottomLeft, BottomRight + manaBarAnchor = "Hunger" + manaTextXOffset = 0 + manaTextYOffset = 0 + + [UI.SpellBar] + #By default (Always), the spell bar always shows the spells in your equipped spellbook. Contextual will hide them when not in use. + #Allowed Values: Never, Always, Contextual + spellBarDisplay = "Always" + #Used to adjust spell bar's position. + spellBarXOffset = 0 + spellBarYOffset = 0 + #Allowed Values: Hotbar, TopLeft, TopRight, BottomLeft, BottomRight + spellBarAnchor = "Hotbar" + + [UI.RecastOverlay] + #Allowed Values: Center, TopCenter, TopLeft, TopRight, BottomLeft, BottomRight + recastAnchor = "TopCenter" + recastXOffset = 0 + recastYOffset = 0 + + [UI.SpellWheel] + #Whether to Spell Wheel size ignores the Gui scale option + ignoreGuiScale = false + #If ignoreGuiScale is enabled, apply this multiplier to its size + ignoreGuiScaleSizeMultiplier = 1.0 + +[Animations] + #What to render in first person while casting. + showFirstPersonArms = true + showFirstPersonItems = true + +[Renderers] + #By default, both fireballs are replaced with an enhanced model used by fire spells. + replaceGhastFireballs = true + replaceBlazeFireballs = true + +[Music] + enableBossMusic = true + +[Misc] + #Whether shield spells can collide with particles. Can affect performance. Default: true + shieldParticleCollisions = false + +[Summons] + #Whether owned summons appear glowing to yourself. Default: true + ownedSummonsGlow = true + #Hex Color Value of owned summons glow outline. Default: 0xAAFFAA + summonGlowColor = "0xAAFFAA" + diff --git a/config/itemcollectors-common.toml b/config/itemcollectors-common.toml new file mode 100644 index 0000000..84dad84 --- /dev/null +++ b/config/itemcollectors-common.toml @@ -0,0 +1,22 @@ +[General] + # What should be the maximum range of the basic item collector? + # Allowed range: 1 ~ 10 - Default: 5 + basicCollectorMaxRange = 5 + + # Should the basic item collector have a filter? + # Allowed values: true, false - Default: false + basicCollectorFilter = false + + # What should be the maximum range of the advanced item collector? + # Allowed range: 1 ~ 10 - Default: 7 + advancedCollectorMaxRange = 7 + + # Should the advanced item collector have a filter? + # Allowed values: true, false - Default: true + advancedCollectorFilter = true + +[Performance] + # What should be the maximum number of items an item collector should try to pick up and insert in a tick? Reducing this number may improve performance when there's a lot of items laying around, for example when storage is full. A value of -1 indicates no limit on the number of insertions. + # Allowed range: -1 ~ 10000 - Default: 20 + maxInsertions = 20 + diff --git a/config/iwannaskate-client.toml b/config/iwannaskate-client.toml new file mode 100644 index 0000000..be83106 --- /dev/null +++ b/config/iwannaskate-client.toml @@ -0,0 +1,29 @@ + +[display] + #when enabled, shows a skateboard icon on the user HUD that indicates their current inertia. + show_inertia_indicator = true + #when enabled, hides the experience bar when on a skateboard, so that it will not clutter the UI. + hide_experience_bar = true + #determines how far to the left the inertia indicator renders on the screen. Negative numbers will render it on the right. + #Range: -12000 ~ 12000 + inertia_indicator_x = 123 + #determines how far from bottom the inertia indicator renders on the screen. + #Range: -12000 ~ 12000 + inertia_indicator_y = 12 + #when enabled, a skateboard with a banner pattern will flip over when the mouse is over it in the inventory. + flip_board_items = true + #when enabled, a green overlay and zoom effect is applied when the overcaffeniated effect is active. + overcaffeniated_overlay = true + +[animation] + #when enabled, flips the foot used to pedal to the other side, which is also inverted by default if the player's skin is left handed. + invert_side = false + #when enabled, dynamically identifies the parts of each entity model to animate when skating. Mappings of entities are read from the skate_model_mappings folder in the resource pack. If disabled, only humanoid entities will have animations while skating. + animate_all_entity_models = true + #when enabled, the camera will twist and turn when on a board to follow its motion. + rotate_camera_on_board = true + +[sound] + #when enabled, skateboards will play a looping sound whilst moving. + skateboard_loop_sounds = true + diff --git a/config/iwannaskate-common.toml b/config/iwannaskate-common.toml new file mode 100644 index 0000000..2cb38fa --- /dev/null +++ b/config/iwannaskate-common.toml @@ -0,0 +1,36 @@ + +[mobs] + #when enabled, skater skeletons will spawn where applicable. + spawn_skater_skeletons = true + #when enabled, skater skeletons will skate using the skateboards they spawn with or any they pick up. + skater_skeletons_use_skateboards = true + #the chance that a skater skeleton will drop a spooky or snowy wheel when in the month of its respective holiday. 1.0 = 100% chance, 0.0 = disabled. + #Range: 0.0 ~ 1.0 + skater_skeleton_holiday_wheel_drop_chance = 0.25 + #when enabled, wandering skaters will spawn where applicable. + spawn_wandering_skaters = true + #the time in game ticks between each attempt to spawn a wandering skater. + #Range: > 1200 + wandering_skater_spawn_delay = 24000 + #the chance that each time the spawn delay passes, a wandering skater will spawn. If it does not, the next time the chance is increased by this number again. + #Range: 0.0 ~ 1.0 + wandering_skater_spawn_chance = 0.05 + #whether players can give baby villagers energy drinks to turn them into nitwit villagers. + convert_villagers_to_nitwits = true + #whether players can give nitwit villagers a skateboard to turn them into wandering skaters. + convert_nitwits_to_skaters = true + +[slow-motion] + #when enabled, certain skateboards can cause a slow-motion effect to the entities around them. + slow_motion = true + #when enabled, nearby player entities can be slowed down if someone else is using the slow motion feature. + players_slow_motion = true + #determines how far in blocks entities are effected by slow motion. + #Range: 1 ~ 2000 + slow_motion_distance = 30 + +[board-customization] + #Adding enchantments to the skateboard via the anvil is made cheaper by multiplying the total amount of exp cost by this number. 1.0 = disabled, 100% usual exp, 0.0 = 1 exp + #Range: 0.0 ~ 1.0 + skateboard_exp_anvil_rate_modifier = 0.75 + diff --git a/config/jade/hide-blocks.json b/config/jade/hide-blocks.json new file mode 100644 index 0000000..234be58 --- /dev/null +++ b/config/jade/hide-blocks.json @@ -0,0 +1,6 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/config/jade/hide-entities.json b/config/jade/hide-entities.json new file mode 100644 index 0000000..42747f4 --- /dev/null +++ b/config/jade/hide-entities.json @@ -0,0 +1,10 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:area_effect_cloud", + "minecraft:firework_rocket", + "minecraft:interaction", + "minecraft:text_display", + "minecraft:lightning_bolt" + ] +} \ No newline at end of file diff --git a/config/jade/jade.json b/config/jade/jade.json new file mode 100644 index 0000000..738bc80 --- /dev/null +++ b/config/jade/jade.json @@ -0,0 +1,41 @@ +{ + "general": { + "debug": false, + "itemModNameTooltip": true, + "bossBarOverlapMode": "PUSH_DOWN", + "builtinCamouflage": true, + "ttsMode": "PRESS", + "fluidMode": "ANY", + "reachDistance": 0.0, + "displayEntities": true, + "displayBosses": true, + "displayMode": "TOGGLE", + "displayTooltip": true, + "displayBlocks": true, + "hideFromDebug": true, + "hideFromTabList": true, + "enableTextToSpeech": false, + "hintOverlayToggle": true, + "hintNarratorToggle": true, + "previewOverlay": true + }, + "overlay": { + "alpha": 1.0, + "iconMode": "TOP", + "animation": true, + "disappearingDelay": 0.0, + "overlaySquare": false, + "flipMainHand": false, + "autoScaleThreshold": 0.4, + "overlayPosY": 1.0, + "overlayScale": 1.0, + "overlayAnchorX": 0.5, + "overlayAnchorY": 0.0, + "activeTheme": "jade_bdcraft:bdstone", + "themesHash": -328442023, + "overlayPosX": 0.5 + }, + "formatting": { + "modName": "§9§o%s" + } +} \ No newline at end of file diff --git a/config/jade/plugins.json b/config/jade/plugins.json new file mode 100644 index 0000000..253d8b2 --- /dev/null +++ b/config/jade/plugins.json @@ -0,0 +1,133 @@ +{ + "minecraft": { + "item_storage.show_name_amount": 5, + "furnace": true, + "harvest_tool.show_unbreakable": false, + "animal_owner": true, + "harvest_tool.effective_tool": true, + "item_storage.normal_amount": 9, + "item_storage": true, + "harvest_tool": true, + "armor_stand": true, + "fluid_storage.detailed": false, + "energy_storage": true, + "entity_armor.max_for_render": 40, + "breaking_progress": true, + "tnt_stability": true, + "item_storage.items_per_line": 9, + "item_frame": true, + "crop_progress": true, + "command_block": true, + "mob_growth": true, + "waxed": true, + "harvest_tool.new_line": false, + "entity_health.max_for_render": 40, + "entity_health.show_fractions": false, + "mob_spawner": true, + "redstone": true, + "fluid_storage": true, + "chicken_egg": true, + "jukebox": true, + "brewing_stand": true, + "energy_storage.detailed": false, + "note_block": true, + "beehive": true, + "item_storage.detailed_amount": 54, + "player_head": true, + "block_states": false, + "lectern": true, + "entity_armor": true, + "harvest_tool.creative": false, + "horse_stats": true, + "item_tooltip": true, + "entity_health": true, + "enchantment_power": true, + "zombie_villager": true, + "villager_profession": true, + "mob_breeding": true, + "entity_health.icons_per_line": 10, + "total_enchantment_power": true, + "potion_effects": true, + "painting": true, + "chiseled_bookshelf": true + }, + "midnight": { + "traditional_age": true, + "nightstag": true + }, + "immersiveengineering": { + "multiblock_icon": true + }, + "jade": { + "coordinates.rel": false, + "distance": false, + "block_face": false, + "coordinates": false, + "registry_name": "OFF", + "mod_name": true + }, + "expatternprovider": { + "jade_chamber": true, + "jade_wireless": true + }, + "infinitybuttons": { + "hide_secret_buttons": true, + "hide_lantern_buttons": true, + "hide_torch_buttons": true + }, + "balm": { + "jade": true + }, + "ae2": { + "part_icon": true, + "charger": true, + "debug": true, + "part_tooltip": true, + "grid_node_state": true, + "pattern_provider": true, + "part_mod_name": true, + "power_storage": true, + "crafting_monitor": true, + "part_name": true + }, + "ars_nouveau": { + "mob_jar": true + }, + "jadeaddons": { + "equipment_requirement": "" + }, + "exposure": { + "lightroom": true, + "photograph_frame": true + }, + "mysticalagradditions": { + "infused_farmland": true + }, + "supplementaries": { + "hat_stand": true + }, + "dynamictrees": { + "rooty_water": true, + "pod": true, + "fruit": true, + "rooty": true, + "branch": true + }, + "waystones": { + "waystone": true + }, + "engineered_schematics": { + "schematic_info": true + }, + "corpse": { + "corpse": true + }, + "mysticalagriculture": { + "infused_farmland": true, + "crop": true, + "inferium_crop": true + }, + "immersivetechnology": { + "display": true + } +} \ No newline at end of file diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json new file mode 100644 index 0000000..75a41db --- /dev/null +++ b/config/jade/sort-order.json @@ -0,0 +1,162 @@ +{ + "adorablehamsterpets:hamster_bed_info": null, + "adorablehamsterpets:hamster_debug_info": null, + "adorablehamsterpets:hamster_genetics": null, + "adorablehamsterpets:wild_bush_tooltips": null, + "ae2:charger": null, + "ae2:crafting_monitor": null, + "ae2:debug": null, + "ae2:grid_node_state": null, + "ae2:part_icon": null, + "ae2:part_mod_name": null, + "ae2:part_name": null, + "ae2:part_tooltip": null, + "ae2:pattern_provider": null, + "ae2:power_storage": null, + "ae2:server_data": null, + "aether_redux:logicator": null, + "apotheosis:adventure": null, + "apotheosis:ench": null, + "apotheosis:spawner": null, + "ars_nouveau:mob_jar": null, + "balm:jade": null, + "cookingforblockheads:fridge": null, + "cookingforblockheads:milk_jar": null, + "cookingforblockheads:oven": null, + "cookingforblockheads:preservation_chamber": null, + "cookingforblockheads:sink": null, + "cookingforblockheads:toaster": null, + "corpse:corpse": null, + "dimstorage:dim_block_base": null, + "dimstorage:dim_tank": null, + "dtphc2:maple_spile": null, + "dtphc2:passion_fruit_vine": null, + "dynamictrees:branch": null, + "dynamictrees:fruit": null, + "dynamictrees:pod": null, + "dynamictrees:rooty": null, + "dynamictrees:rooty_water": null, + "easy_villagers:breeder": null, + "easy_villagers:converter": null, + "easy_villagers:villager": null, + "engineered_schematics:schematic_info": null, + "expatternprovider:jade_chamber": null, + "expatternprovider:jade_wireless": null, + "expatternprovider:tile_data": null, + "exposure:lightroom": null, + "exposure:photograph_frame": null, + "framedblocks:framed_item_frame": null, + "immersiveengineering:multiblock_icon": null, + "immersiveengineering:multiblock_inventory": null, + "immersiveengineering:multiblock_tank": null, + "immersivetechnology:display": null, + "immersivetechnology:multiblock_energy": null, + "immersivetechnology:multiblock_fluid": null, + "immersivetechnology:status": null, + "jade:block_face": null, + "jade:distance": null, + "jade:mod_name": null, + "jade:object_name": null, + "jade:registry_name": null, + "jadeaddons.create:backtank_capacity": null, + "jadeaddons.create:blaze_burner": null, + "jadeaddons.create:contraption_inv": null, + "jadeaddons.create:crafting_blueprint": null, + "jadeaddons.create:exact_block": null, + "jadeaddons.create:filter": null, + "jadeaddons.create:goggles": null, + "jadeaddons.create:hide_boiler_tanks": null, + "jadeaddons.create:package": null, + "jadeaddons.create:placard": null, + "jadeaddons.create:table_cloth": null, + "jadeaddons.lootr:info": null, + "jadeaddons.lootr:inventory": null, + "jadeaddons.mcjtylib:jadeaddons": null, + "jadeaddons.tconstruct:casting_table": null, + "jadeaddons.tconstruct:duct_fluid": null, + "jadeaddons.tconstruct:duct_item": null, + "jademoddedentities:doggy_talents_next": null, + "jademoddedentities:villager": null, + "mekanism:data_provider": null, + "mekanism:entity_data_provider": null, + "mekanism:remove_builtin": null, + "mekanism:tooltip_renderer": null, + "mekanismcovers:cover_component": null, + "midnight:nightstag": null, + "midnight:traditional_age": null, + "minecraft:animal_owner": null, + "minecraft:armor_stand": null, + "minecraft:beehive": null, + "minecraft:block_display": null, + "minecraft:block_states": null, + "minecraft:brewing_stand": null, + "minecraft:campfire": null, + "minecraft:chicken_egg": null, + "minecraft:chiseled_bookshelf": null, + "minecraft:command_block": null, + "minecraft:crop_progress": null, + "minecraft:enchantment_power": null, + "minecraft:energy_storage": null, + "minecraft:entity_armor": null, + "minecraft:entity_health": null, + "minecraft:falling_block": null, + "minecraft:fluid_storage": null, + "minecraft:furnace": null, + "minecraft:harvest_tool": null, + "minecraft:horse_stats": null, + "minecraft:item_ber": null, + "minecraft:item_display": null, + "minecraft:item_frame": null, + "minecraft:item_storage": null, + "minecraft:item_tooltip": null, + "minecraft:jukebox": null, + "minecraft:lectern": null, + "minecraft:mob_breeding": null, + "minecraft:mob_growth": null, + "minecraft:mob_spawner": null, + "minecraft:note_block": null, + "minecraft:painting": null, + "minecraft:player_head": null, + "minecraft:potion_effects": null, + "minecraft:progress": null, + "minecraft:redstone": null, + "minecraft:tnt_stability": null, + "minecraft:total_enchantment_power": null, + "minecraft:villager_profession": null, + "minecraft:waxed": null, + "minecraft:zombie_villager": null, + "mysticalagradditions:infused_farmland": null, + "mysticalagriculture:crop": null, + "mysticalagriculture:inferium_crop": null, + "mysticalagriculture:infused_farmland": null, + "pipez:pipe": null, + "pneumaticcraft:camo": null, + "pneumaticcraft:entity": null, + "pneumaticcraft:pneumatic": null, + "pneumaticcraft:redstone": null, + "pneumaticcraft:semiblock": null, + "pneumaticcraft:tube_module": null, + "productivebees:canvas_beehive": null, + "productivebees:jar": null, + "productivebees:productive_bee": null, + "productivebees:solitary_nest": null, + "quality_food:quality": null, + "railcraft:locomotive": null, + "railcraft:signals": null, + "railcraft:switch_track": null, + "railcraft:track_component": null, + "reliquary:altar": null, + "reliquary:cauldron": null, + "reliquary:mortar": null, + "reliquary:pedestal": null, + "splendid_slimes:splendid_slime": null, + "storagedrawers:main": null, + "supplementaries:hat_stand": null, + "supplementaries:present": null, + "supplementaries:safe": null, + "theurgy:mercury_flux": null, + "tombstone:decorative_graves": null, + "tombstone:player_graves": null, + "twilightforest:quest_ram_wool": null, + "waystones:waystone": null +} \ No newline at end of file diff --git a/config/jearchaeology-common.toml b/config/jearchaeology-common.toml new file mode 100644 index 0000000..0e8c283 --- /dev/null +++ b/config/jearchaeology-common.toml @@ -0,0 +1,5 @@ +#Enable compatibility with ATM +atm_compat = true +#Enable compatibility with Better Archeology +betterarcheology_compat = true + diff --git a/config/jeed-client.toml b/config/jeed-client.toml new file mode 100644 index 0000000..1aa6bc8 --- /dev/null +++ b/config/jeed-client.toml @@ -0,0 +1,13 @@ +#Show effect colors in tooltip +effect_color = true +#Draw a black box behind effect icons +effect_box = true +#A list of effects that should not be registered nor shown in JEI/REI. You can also use the 'hidden' mob_effect tag +hidden_effects = [""] +#Show ingredients list along with an effect description +ingredients_list = true +#Renders individual slots instead of a big one. Only works for REI +render_slots = false +#Removes vanilla tooltips rendered when an effect renders small (square box) +replace_vanilla_tooltips = true + diff --git a/config/jei/async_incompatible_plugins.json b/config/jei/async_incompatible_plugins.json new file mode 100644 index 0000000..603b602 --- /dev/null +++ b/config/jei/async_incompatible_plugins.json @@ -0,0 +1,9 @@ +{ + "formatVersion": 2, + "phaseIncompatible": { + "Registering recipes": [ + "yungscavebiomes:jei_plugin", + "endergetic:endergetic" + ] + } +} \ No newline at end of file diff --git a/config/jei/blacklist.cfg b/config/jei/blacklist.cfg new file mode 100644 index 0000000..e69de29 diff --git a/config/jei/ingredient-list-mod-sort-order.ini b/config/jei/ingredient-list-mod-sort-order.ini new file mode 100644 index 0000000..083420c --- /dev/null +++ b/config/jei/ingredient-list-mod-sort-order.ini @@ -0,0 +1,153 @@ +Minecraft +Amendments +Comforts +End's Delight +Farmer's Delight +Farmer's Delight: Plus +More Delight +My Nether's Delight +Nature's Compass +Supplementaries +Bountiful +Dynamic Trees +Dynamic Trees Plus +More Villagers +Philips Ruins +Piglet Structures +The Graveyard +Waystones +YUNG's Cave Biomes +Dynamic Trees for Regions Unexplored +Regions Unexplored +Tinkers' Construct +Alex's Delight +Alex's Mobs +Building Gadgets 2 +Deeper and Darker +Exposure +Exposure Polaroid +Exposure: Expanded +Guard Villagers +Iron Chests +XP Tome +[Let's Do Addon] Corn Expansion +[Let's Do] Bakery +[Let's Do] Beachparty +[Let's Do] BloomingNature +[Let's Do] Brewery +[Let's Do] Camping +[Let's Do] Candlelight +[Let's Do] Farm & Charm +[Let's Do] Furniture +[Let's Do] HerbalBrews +[Let's Do] Meadow +[Let's Do] Vinery +[Let's Do] Wilder Nature +cataclysm +AE2WTLib +Animal Feeding Trough +Applied Energistics 2 +Ars Additions +Ars Expanded Combat +Ars Nouveau +Ars Nouveau's Flavors & Delight +Ars Énergistique +Backpacked +Brewin' And Chewin' +Chimes +Chisel Reborn +CoFH Core +Display Delight +Draconic Evolution +Dynamic Trees for Ars Nouveau +EC L_Ender's Cataclysm Plugin +Expanded Combat +ExtendedAE +Factory Blocks +Game Discs +Goblin Traders +Immersive Melodies +Miner's Delight +Mystical Agradditions +Mystical Agriculture +Paraglider +Patchouli +Plushie Buddies +Thermal Series +Animal Pen +CBMicroblock +Easel Does It +Engineered Schematics +Engineers Delight +Grappling Hook Mod +Immersive Engineering +Immersive Petroleum +Immersive Posts +Infinity Buttons +Mighty Mail +Monobank +More Immersive Wires +Pet Cemetery +ProjectRed Core +ProjectRed Illumination +ProjectRed Integration +ProjectRed Transmission +The Midnight +The Undergarden +goat_man +I Wanna Skate +Just Outdoor Stuffs +Measurements +Mobs of Sins +Pirate Hats +Realm RPG: Imps & Demons +Ribbits +SimpleHats +Snad +Sons of Sins +Stardew Fishing +InWitched +Magic Vibe Decorations +Signal Flares +TarotCards +Immersive Technology +[NoCube's] Undergarden Delight +Ars Elemental +Ars Instrumentum +Biomes O' Plenty +Dynamic Trees for Biomes o' Plenty +Mob Compack +Seaworthy Boats +Every Compat +Call of Yucatán +Dynamic Trees for Alex's Mobs +Extended Tools +MEGA Cells +Tinkers' Compatibility +Wardrobe +Yucutan Delight +Compressed Fuel +Immersive Aircraft +Immersive Aircraft: Better Engines +Man of Many Planes +Moving Elevators +Trash Cans +SSDH Backport +Serene Seasons +Voltaic +Assembly Line +Ballistix +Blastcraft +Dynamic Electricity +Electrodynamics +Modular Forcefields +Nuclear Science +Blast Travel [Forge Port] +Piglet +TCIntegrations +Ad Astra +Advent Of Ascension +Aesthetic Stairs +More Slabs Stairs & Walls +VinURL +Crafting Station diff --git a/config/jei/ingredient-list-type-sort-order.ini b/config/jei/ingredient-list-type-sort-order.ini new file mode 100644 index 0000000..911ee34 --- /dev/null +++ b/config/jei/ingredient-list-type-sort-order.ini @@ -0,0 +1,7 @@ +net.minecraft.world.item.ItemStack +net.minecraftforge.fluids.FluidStack +slimeknights.mantle.recipe.ingredient.EntityIngredient$EntityInput +slimeknights.tconstruct.library.modifiers.ModifierEntry +slimeknights.tconstruct.library.recipe.partbuilder.Pattern +slimeknights.tconstruct.library.tools.SlotType$SlotCount +voltaic.api.gas.GasStack diff --git a/config/jei/jei-client.ini b/config/jei/jei-client.ini new file mode 100644 index 0000000..31c3694 --- /dev/null +++ b/config/jei/jei-client.ini @@ -0,0 +1,260 @@ +[appearance] + # Description: Move the JEI search bar to the bottom center of the screen. + # Valid Values: [true, false] + # Default Value: false + CenterSearch = false + + # Description: Max recipe GUI height. + # Valid Values: Any integer greater than or equal to 175 + # Default Value: 350 + RecipeGuiHeight = 350 + + +[cheat_mode] + # Description: Choose if JEI should give ingredients directly to the inventory or pick them up with the mouse. + # Valid Values: [INVENTORY, MOUSE_PICKUP] + # Default Value: MOUSE_PICKUP + GiveMode = MOUSE_PICKUP + + # Description: Enable cheating items into the hotbar by using Shift + numeric keys. + # Valid Values: [true, false] + # Default Value: false + CheatToHotbarUsingHotkeysEnabled = false + + # Description: Enable showing items that are not in the creative menu. + # Valid Values: [true, false] + # Default Value: false + ShowHiddenItems = false + + +[bookmarks] + # Description: Add new bookmarks to the front of the bookmark list instead of the end. + # Valid Values: [true, false] + # Default Value: false + AddBookmarksToFrontEnabled = false + + # Description: Extra features for bookmark tooltips. + # Valid Values: A comma-separated list containing values of: + # [PREVIEW, INGREDIENTS] + # Default Value: PREVIEW + BookmarkTooltipFeatures = PREVIEW + + # Description: Hold Shift to show bookmark tooltip features. + # Valid Values: [true, false] + # Default Value: true + HoldShiftToShowBookmarkTooltipFeatures = true + + # Description: Drag bookmarks to rearrange them in the list. + # Valid Values: [true, false] + # Default Value: true + DragToRearrangeBookmarksEnabled = true + + +[lookupHistory] + # Description: Display or hide the lookup history overlay. + # Valid Values: [true, false] + # Default Value: false + Enabled = false + + # Description: Max number of rows to display in the lookup history overlay. + # Valid Values: An integer in the range [1, 7] (inclusive) + # Default Value: 2 + MaxRows = 2 + + # Description: Max number of lookup history ingredients to save. + # Valid Values: An integer in the range [10, 1000] (inclusive) + # Default Value: 100 + MaxIngredients = 100 + + # Description: Side of the screen to display the lookup history overlay. + # Valid Values: [LEFT, RIGHT] + # Default Value: LEFT + DisplaySide = LEFT + + +[advanced] + # Description: Set low-memory mode (makes search very slow but uses less RAM). + # Valid Values: [true, false] + # Default Value: false + LowMemorySlowSearchEnabled = false + + # Description: Catch render errors from ingredients and attempt to recover from them instead of crashing. + # Valid Values: [true, false] + # Default Value: true + CatchRenderErrorsEnabled = true + + # Description: When looking up recipes with items that contain fluids, also look up recipes for the fluids. + # Valid Values: [true, false] + # Default Value: false + lookupFluidContentsEnabled = false + + # Description: When searching for item tags, also include tags for the default blocks contained in the items. + # Valid Values: [true, false] + # Default Value: true + lookupBlockTagsEnabled = true + + # Description: Show recipes for ingredient tags like item tags and block tags. + # Valid Values: [true, false] + # Default Value: false + showTagRecipesEnabled = false + + # Description: Show creative tab names in ingredient tooltips. + # Valid Values: [true, false] + # Default Value: false + showCreativeTabNamesEnabled = false + + +[input] + # Description: Number of milliseconds before a long mouse click is considered a drag operation. + # Valid Values: An integer in the range [0, 1000] (inclusive) + # Default Value: 150 + dragDelayInMilliseconds = 150 + + # Description: Scroll rate for scrolling the mouse wheel in smooth-scrolling scroll boxes. Measured in pixels. + # Valid Values: An integer in the range [1, 50] (inclusive) + # Default Value: 9 + smoothScrollRate = 9 + + +[sorting] + # Description: Sorting order for the ingredient list. + # Valid Values: A comma-separated list containing values of: + # [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU, TAG, ARMOR, MAX_DURABILITY] + # Default Value: MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + IngredientSortStages = MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + + # Description: Sorting order for displayed recipes. + # Valid Values: A comma-separated list containing values of: + # [BOOKMARKED, CRAFTABLE] + # Default Value: BOOKMARKED, CRAFTABLE + RecipeSorterStages = BOOKMARKED, CRAFTABLE + + +[tags] + # Description: Show tag content in tooltips. + # Valid Values: [true, false] + # Default Value: true + TagContentTooltipEnabled = true + + # Description: Hide tags that only have 1 ingredient. + # Valid Values: [true, false] + # Default Value: true + HideSingleIngredientTagsEnabled = true + + +[search] + # Description: Search mode for mod names (prefix: @). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + ModNameSearchMode = REQUIRE_PREFIX + + # Description: Search mode for tooltips (prefix: #). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: ENABLED + TooltipSearchMode = ENABLED + + # Description: Search mode for tags (prefix: $). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + TagSearchMode = REQUIRE_PREFIX + + # Description: Search mode for colors (prefix: ^). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ColorSearchMode = DISABLED + + # Description: Search mode for resource locations (prefix: &). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ResourceLocationSearchMode = DISABLED + + # Description: Search mode for creative mode tab names (prefix: %). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + CreativeTabSearchMode = DISABLED + + # Description: Search in advanced tooltips (visible with F3 + H). + # Valid Values: [true, false] + # Default Value: false + SearchAdvancedTooltips = false + + # Description: Search mod IDs in addition to mod names. + # Valid Values: [true, false] + # Default Value: true + SearchModIds = true + + # Description: Search by the shorthand first letters of a mod's name. + # Valid Values: [true, false] + # Default Value: true + SearchShortModNames = true + + # Description: Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names. + # Valid Values: [true, false] + # Default Value: true + SearchIngredientAliases = true + + +[IngredientList] + # Description: Max number of rows shown. + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown. + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area. + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: RIGHT + HorizontalAlignment = RIGHT + + # Description: Vertical alignment of the ingredient grid inside the available area. + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Enable this to draw a background texture behind the GUI. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + +[BookmarkList] + # Description: Max number of rows shown. + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown. + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area. + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: LEFT + HorizontalAlignment = LEFT + + # Description: Vertical alignment of the ingredient grid inside the available area. + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Enable this to draw a background texture behind the GUI. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + diff --git a/config/jei/jei-colors.ini b/config/jei/jei-colors.ini new file mode 100644 index 0000000..a0ce6e5 --- /dev/null +++ b/config/jei/jei-colors.ini @@ -0,0 +1,8 @@ +[colors] + # Description: Color values to search for. + # Valid Values: A comma-separated list containing values of: + # Any color name and an RGB hex color, separated by a ':' + # Default Value: White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + SearchColors = White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + + diff --git a/config/jei/jei-debug.ini b/config/jei/jei-debug.ini new file mode 100644 index 0000000..a13e270 --- /dev/null +++ b/config/jei/jei-debug.ini @@ -0,0 +1,32 @@ +[debug] + # Description: Debug mode enabled. + # Valid Values: [true, false] + # Default Value: false + DebugMode = false + + # Description: Debug GUIs enabled. + # Valid Values: [true, false] + # Default Value: false + DebugGuis = false + + # Description: Debug inputs enabled. + # Valid Values: [true, false] + # Default Value: false + DebugInputs = false + + # Description: Add debug information to ingredient tooltips when advanced tooltips are enabled. + # Valid Values: [true, false] + # Default Value: false + debugInfoTooltipsEnabled = false + + # Description: Adds ingredients to JEI that intentionally crash, to help debug JEI. + # Valid Values: [true, false] + # Default Value: false + CrashingTestItemsEnabled = false + + # Description: Log information about the suffix trees used for searching, to help debug JEI. + # Valid Values: [true, false] + # Default Value: false + logSuffixTreeStats = false + + diff --git a/config/jei/jei-mod-id-format.ini b/config/jei/jei-mod-id-format.ini new file mode 100644 index 0000000..11464f2 --- /dev/null +++ b/config/jei/jei-mod-id-format.ini @@ -0,0 +1,11 @@ +[modname] + # Description: Formatting for the mod names in tooltips for JEI GUIs. Leave blank to disable. + # Valid Values: A chat formatting string. + # Use these formatting colors: + # black dark_blue dark_green dark_aqua dark_red dark_purple gold gray dark_gray blue green aqua red light_purple yellow white + # With these formatting options: + # obfuscated bold strikethrough underline italic + # Default Value: blue italic + ModNameFormat = blue italic + + diff --git a/config/jei/recipe-category-sort-order.ini b/config/jei/recipe-category-sort-order.ini new file mode 100644 index 0000000..d51a074 --- /dev/null +++ b/config/jei/recipe-category-sort-order.ini @@ -0,0 +1,204 @@ +minecraft:crafting +minecraft:anvil +minecraft:blasting +minecraft:brewing +minecraft:campfire +minecraft:compostable +minecraft:fuel +minecraft:furnace +minecraft:smithing +minecraft:smoking +minecraft:stonecutting +farmersdelight:cooking +farmersdelight:cutting +farmersdelight:decomposition +farmersdelightplus:pancake_filling +jei:information +mynethersdelight:forgoting +piglet_structures:ancient_furniture_crafter_jei_recipe_type +piglet_structures:clay_cutter_jei_recipe_type +piglet_structures:debowiser_jei_recipe_type +piglet_structures:dirtpetrifier_jei_recipe_type +piglet_structures:gold_upgrader_jei_recipe_type +piglet_structures:minecart_chest_remover_jei_recipe_type +piglet_structures:petrdirtifier_jei_recipe_type +piglet_structures:sandstone_crusher_jei_recipe_type +waystones:warp_plate +tconstruct:alloy +tconstruct:casting_basin +tconstruct:casting_table +tconstruct:entity_melting +tconstruct:foundry +tconstruct:melting +tconstruct:modifiers +tconstruct:molding +tconstruct:part_builder +tconstruct:severing +tconstruct:tool_recipes +tconstruct:worktable +alexsmobs:capsid +bakery:caking +beachparty:mini_fridge_freezing +beachparty:palm_bar_mixing +brewery:brewing +cataclysm:altar_of_amethyst +cataclysm:weapon_infusion +exposure:photograph_printing +exposure:photograph_stacking +farm_and_charm:cooking_pot +farm_and_charm:doughing +farm_and_charm:drying +farm_and_charm:mincer +farm_and_charm:roaster +farm_and_charm:stove +herbalbrews:cauldron_brewing +herbalbrews:tea_kettle_brewing +meadow:cheese +meadow:cooking_cauldron +meadow:woodcutting +vinery:apple_press_fermenting +vinery:apple_press_mashing +vinery:wine_fermentation +ae2:attunement +ae2:certus_growth +ae2:charger +ae2:condenser +ae2:entropy +ae2:inscriber +ae2:item_transformation +ars_additions:locate_structure +ars_nouveau:armor_upgrade +ars_nouveau:budding_conversion +ars_nouveau:crush +ars_nouveau:enchanting_apparatus +ars_nouveau:enchantment_apparatus +ars_nouveau:glyph_recipe +ars_nouveau:imbuement +ars_nouveau:scry_ritual +brewinandchewin:aging +brewinandchewin:fermenting +draconicevolution:fusion_crafting +expanded_combat:fletching +expanded_combat:shield_smithing +expatternprovider:circuit_cutter +justenoughbreeding:allay_duplication +justenoughbreeding:breeding +justenoughbreeding:taming +justenoughbreeding:temper +justenoughbreeding:transformation +justenoughbreeding:trusting +justenoughprofessions:professions +miners_delight:cooking +mysticalagriculture:awakening +mysticalagriculture:crux +mysticalagriculture:enchanter +mysticalagriculture:infusion +mysticalagriculture:reprocessor +mysticalagriculture:soul_extractor +mysticalagriculture:soulium_spawner +plushie_buddies:workbench +thermal:bottler +thermal:brewer +thermal:centrifuge +thermal:chiller +thermal:compression_fuel +thermal:crucible +thermal:crystallizer +thermal:disenchantment_fuel +thermal:furnace +thermal:gourmand_fuel +thermal:insolator +thermal:insolator_catalyst +thermal:lapidary_fuel +thermal:magmatic_fuel +thermal:numismatic_fuel +thermal:press +thermal:pulverizer +thermal:pulverizer_catalyst +thermal:pyrolyzer +thermal:refinery +thermal:rock_gen +thermal:sawmill +thermal:smelter +thermal:smelter_catalyst +thermal:stirling_fuel +thermal:tree_extractor +animal_pen:item_info_animal_cage +animal_pen:item_info_bird_cage +animal_pen:item_info_water_container +immersiveengineering:alloy +immersiveengineering:arc_furnace +immersiveengineering:arc_recycling +immersiveengineering:blast_furnace +immersiveengineering:blast_furnace_fuel +immersiveengineering:blueprint +immersiveengineering:bottling_machine +immersiveengineering:cloche +immersiveengineering:coke_oven +immersiveengineering:crusher +immersiveengineering:fermenter +immersiveengineering:fertilizer +immersiveengineering:metal_press +immersiveengineering:mixer +immersiveengineering:refinery +immersiveengineering:sawmill +immersiveengineering:squeezer +immersivepetroleum:cokerunit +immersivepetroleum:distillation +immersivepetroleum:hydrotreater +sons_of_sins:etheric_blood_imbibation +immersivetechnology:advanced_coke_oven +immersivetechnology:boiler_liquid +immersivetechnology:boiler_solid +immersivetechnology:boiler_tank +immersivetechnology:cooling_tower +immersivetechnology:distiller +immersivetechnology:electrolytic_crucible_battery +immersivetechnology:gas_turbine +immersivetechnology:heat_exchanger +immersivetechnology:melting +immersivetechnology:radiator +immersivetechnology:solar_tower +immersivetechnology:steam_turbine +ars_elemental:armor_upgrade +ars_elemental:netherite_upgrade +call_of_yucutan:divinity_sacrifice +call_of_yucutan:ritual_transmutation +blastcraft:blast_compressor_recipe +electrodynamics:blasting +electrodynamics:chemical_crystallizer_recipe +electrodynamics:chemical_mixer_recipe +electrodynamics:electrolytic_separator_recipe +electrodynamics:energized_alloyer_recipe +electrodynamics:fermentation_plant_recipe +electrodynamics:gas_condensing +electrodynamics:gas_evaporating +electrodynamics:lathe_recipe +electrodynamics:mineral_crusher_recipe +electrodynamics:mineral_grinder_recipe +electrodynamics:mineral_washer_recipe +electrodynamics:oxidation_furnace_recipe +electrodynamics:reinforced_alloyer_recipe +electrodynamics:smelting +electrodynamics:wire_mill_recipe +nuclearscience:chemical_extractor_recipe +nuclearscience:fission_reactor_recipe +nuclearscience:fuel_reprocessor_recipe +nuclearscience:gascentrifuge +nuclearscience:msrfuel_preprocessor_recipe +nuclearscience:nuclear_boiler_recipe +nuclearscience:particalacceleratorantimatter +nuclearscience:particalacceleratordarkmatter +nuclearscience:radioactive_processor_recipe +piglet:vanilla_item_decorations_table_jei_recipe_type +ad_astra:alloying +ad_astra:compressing +ad_astra:cryo_freezing +ad_astra:nasa_workbench +ad_astra:oxygen_loading +ad_astra:refining +aoa3:frame_bench +aoa3:imbuing +aoa3:infusion +aoa3:upgrade_kit +aoa3:whitewashing diff --git a/config/jei/world/local/New_World/lookupHistory.ini b/config/jei/world/local/New_World/lookupHistory.ini new file mode 100644 index 0000000..f4d24f7 --- /dev/null +++ b/config/jei/world/local/New_World/lookupHistory.ini @@ -0,0 +1,100 @@ +T:{Count:1b,id:"cyclic:flint_block"} +T:{Count:1b,id:"itemfilters:tag",tag:{value:"monumental_experience:crafter"}} +T:{Count:1b,id:"draconicevolution:draconium_chest"} +T:{Count:1b,id:"draconicevolution:draconic_wireless_crystal"} +T:{Count:1b,id:"draconicevolution:draconic_relay_crystal"} +T:{Count:1b,id:"draconicevolution:draconic_io_crystal"} +T:{Count:1b,id:"draconicevolution:reactor_stabilizer"} +T:{Count:1b,id:"draconicevolution:reactor_injector"} +T:{Count:1b,id:"draconicevolution:reactor_core"} +T:{Count:1b,id:"draconicevolution:draconic_sword"} +T:{Count:1b,id:"draconicevolution:wyvern_io_crystal"} +T:{Count:1b,id:"draconicevolution:basic_io_crystal"} +T:{Count:1b,id:"minecraft:iron_sword",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:cave_map",tag:{BiomeTargetResourceKey:"alexscaves:magnetic_caves"}} +T:{Count:1b,id:"alexscaves:cave_book"} +T:{Count:1b,id:"alexscaves:cave_codex",tag:{CaveBiome:"alexscaves:magnetic_caves"}} +T:{Count:1b,id:"alexscaves:magnetic_light"} +T:{Count:1b,id:"alexscaves:hologram_projector"} +T:{Count:1b,id:"alexscaves:magnetic_activator"} +T:{Count:1b,id:"alexscaves:heart_of_iron"} +T:{Count:1b,id:"alexscaves:azure_magnet"} +T:{Count:1b,id:"alexscaves:block_of_azure_neodymium"} +T:{Count:1b,id:"alexscaves:azure_neodymium_pillar"} +T:{Count:1b,id:"alexscaves:azure_neodymium_node"} +T:{Count:1b,id:"alexscaves:scarlet_magnet"} +T:{Count:1b,id:"alexscaves:block_of_scarlet_neodymium"} +T:{Count:1b,id:"alexscaves:scarlet_neodymium_pillar"} +T:{Count:1b,id:"alexscaves:scarlet_neodymium_node"} +T:{Count:1b,id:"alexscaves:heavy_bone"} +T:{Count:1b,id:"alexscaves:tough_hide"} +T:{Count:1b,id:"alexscaves:primordial_soup"} +T:{Count:1b,id:"alexscaves:seething_stew"} +T:{Count:1b,id:"alexscaves:serene_salad"} +T:{Count:1b,id:"alexscaves:dinosaur_nugget"} +T:{Count:1b,id:"alexscaves:amber_curiosity"} +T:{Count:1b,id:"alexscaves:pewen_sap"} +T:{Count:1b,id:"alexscaves:pine_nuts"} +T:{Count:1b,id:"alexscaves:cave_tablet",tag:{CaveBiome:"alexscaves:primordial_caves"}} +T:{Count:1b,id:"alexscaves:quarry"} +T:{Count:1b,id:"alexscaves:magnetic_levitation_rail"} +T:{Count:1b,id:"alexscaves:limestone"} +T:{Count:1b,id:"alexscaves:amber_monolith"} +T:{Count:1b,id:"alexscaves:ambersol"} +T:{Count:1b,id:"alexscaves:amber"} +T:{Count:1b,id:"alexscaves:footprint_pottery_sherd"} +T:{Count:1b,id:"alexscaves:dinosaur_pottery_sherd"} +T:{Count:1b,id:"alexscaves:extinction_spear",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:tectonic_shard"} +T:{Count:1b,id:"alexscaves:ominous_catalyst"} +T:{Count:1b,id:"alexscaves:primordial_pants",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:primordial_tunic",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:primordial_helmet",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:limestone_spear"} +T:{Count:1b,id:"alexscaves:primitive_club",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:atlatitan_egg"} +T:{Count:1b,id:"alexscaves:relicheirus_egg"} +T:{Count:1b,id:"alexscaves:tremorsaurus_egg"} +T:{Count:1b,id:"alexscaves:grottoceratops_egg"} +T:{Count:1b,id:"alexscaves:vallumraptor_egg"} +T:{Count:1b,id:"alexscaves:subterranodon_egg"} +T:{Count:1b,id:"alexscaves:curly_fern"} +T:{Count:1b,id:"alexscaves:fiddlehead"} +T:{Count:1b,id:"alexscaves:pewen_wood"} +T:{Count:1b,id:"alexscaves:pewen_pines"} +T:{Count:1b,id:"alexscaves:pewen_sapling"} +T:{Count:1b,id:"alexscaves:pewen_branch"} +T:{Count:1b,id:"alexscaves:pewen_sign"} +T:{Count:1b,id:"alexscaves:cave_codex",tag:{CaveBiome:"alexscaves:toxic_caves"}} +T:{Count:1b,id:"alexscaves:cave_tablet",tag:{CaveBiome:"alexscaves:toxic_caves"}} +T:{Count:1b,id:"alexscaves:volcanic_core"} +T:{Count:1b,id:"alexscaves:flood_basalt"} +T:{Count:1b,id:"alexscaves:primal_magma"} +T:{Count:1b,id:"alexscaves:fern_thatch"} +T:{Count:1b,id:"alexscaves:tree_star"} +T:{Count:1b,id:"alexscaves:ancient_sapling"} +T:{Count:1b,id:"alexscaves:archaic_vine"} +T:{Count:1b,id:"alexscaves:cycad"} +T:{Count:1b,id:"alexscaves:radgill"} +T:{Count:1b,id:"alexscaves:cooked_radgill"} +T:{Count:1b,id:"alexscaves:radon_bottle"} +T:{Count:1b,id:"alexscaves:cinder_brick"} +T:{Count:1b,id:"alexscaves:spelunkie"} +T:{Count:1b,id:"alexscaves:raygun"} +T:{Count:1b,id:"alexscaves:remote_detonator"} +T:{Count:1b,id:"alexscaves:charred_remnant"} +T:{Count:1b,id:"alexscaves:fissile_core"} +T:{Count:1b,id:"alexscaves:hazmat_boots",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_leggings",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_chestplate",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_mask",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:polymer_plate"} +T:{Count:1b,id:"alexscaves:toxic_paste"} +T:{Count:1b,id:"alexscaves:green_soylent"} +T:{Count:1b,id:"alexscaves:slam"} +T:{Count:1b,id:"alexscaves:music_disc_fusion"} +T:{Count:1b,id:"alexscaves:disc_fragment_fusion"} +T:{Count:1b,id:"alexscaves:acidic_radrock"} +T:{Count:1b,id:"alexscaves:radrock_uranium_ore"} +T:{Count:1b,id:"alexscaves:underweed"} +T:{Count:1b,id:"alexscaves:waste_drum"} diff --git a/config/jei/world/server/Industrial_Magic_Reloaded__6_a70939dc/lookupHistory.ini b/config/jei/world/server/Industrial_Magic_Reloaded__6_a70939dc/lookupHistory.ini new file mode 100644 index 0000000..c148351 --- /dev/null +++ b/config/jei/world/server/Industrial_Magic_Reloaded__6_a70939dc/lookupHistory.ini @@ -0,0 +1,54 @@ +T:{Count:1b,id:"minecraft:smoker"} +T:{Count:1b,id:"minecraft:furnace"} +T:{Count:1b,id:"minecraft:iron_ingot"} +T:{Count:1b,id:"thermal:nickel_ingot"} +T:{Count:1b,id:"thermal:invar_ingot"} +T:{Count:1b,id:"thermal:invar_gear"} +T:{Count:1b,id:"thermal:machine_crucible"} +T:{Count:1b,id:"thermal:invar_dust"} +T:{Count:1b,id:"thermal:machine_frame"} +T:{Count:1b,id:"thermal:tin_gear"} +T:{Count:1b,id:"minecraft:magma_cream"} +I:fluid_stack&fluid:minecraft:lava +T:{Count:1b,id:"minecraft:conduit"} +T:{Count:1b,id:"dynamicelectricity:motoraclv"} +T:{Count:1b,id:"dynamicelectricity:stator"} +T:{Count:1b,id:"electrodynamics:tanksteel"} +T:{Count:1b,id:"minecraft:cauldron"} +T:{Count:1b,id:"dynamicelectricity:commutator"} +T:{Count:1b,id:"electrodynamics:coil"} +T:{Count:1b,id:"minecraft:raw_copper"} +T:{Count:1b,id:"dynamicelectricity:ringiron"} +T:{Count:1b,id:"electrodynamics:upgradetransformer"} +T:{Count:1b,id:"thermal:bronze_dust"} +T:{Count:1b,id:"dynamicelectricity:shaftsteel"} +T:{Count:1b,id:"immersiveengineering:hammer",tag:{Damage:0}} +T:{Count:1b,id:"electrodynamics:insulation"} +T:{Count:1b,id:"minecraft:stonecutter"} +T:{Count:1b,id:"minecraft:deepslate_bricks"} +T:{Count:1b,id:"minecraft:deepslate_brick_wall"} +T:{Count:1b,id:"chisel:chisel"} +T:{Count:1b,id:"electrodynamics:battery",tag:{maximumcapacity:1666666.0d}} +T:{Count:1b,id:"electrodynamics:batterybox"} +T:{Count:1b,id:"wardrobe:goat_fur"} +T:{Count:1b,id:"electrodynamics:coalgenerator"} +T:{Count:1b,id:"electrodynamics:wiremill"} +T:{Count:1b,id:"electrodynamics:lathe"} +T:{Count:1b,id:"dynamicelectricity:alternator"} +T:{Count:1b,id:"dynamicelectricity:motordclv"} +T:{Count:1b,id:"electrodynamics:advancedsolarpanel"} +T:{Count:1b,id:"electrodynamics:solarpanelplate"} +T:{Count:1b,id:"electrodynamics:solarpanel"} +T:{Count:1b,id:"aoa3:raw_limonite"} +T:{Count:1b,id:"electrodynamics:electricfurnace"} +T:{Count:1b,id:"electrodynamics:electricfurnacedouble"} +T:{Count:1b,id:"electrodynamics:circuitbasic"} +T:{Count:1b,id:"electrodynamics:motor"} +T:{Count:1b,id:"thermal:steel_plate"} +T:{Count:1b,id:"electrodynamics:electricarcfurnace"} +T:{Count:1b,id:"voltaic:guidebook"} +T:{Count:1b,id:"immersiveengineering:plate_aluminum"} +T:{Count:1b,id:"dynamicelectricity:ringsteel"} +T:{Count:1b,id:"immersive_melodies:vielle",tag:{}} +T:{Count:1b,id:"immersiveengineering:potion_bucket",tag:{Potion:"alexsmobs:bug_pheromones"}} +T:{Count:1b,id:"immersive_melodies:lute",tag:{}} diff --git a/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini b/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini new file mode 100644 index 0000000..5671b97 --- /dev/null +++ b/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini @@ -0,0 +1,69 @@ +T:{Count:1b,id:"ars_nouveau:earth_essence"} +T:{Count:1b,id:"ars_nouveau:fire_essence"} +T:{Count:1b,id:"ars_nouveau:water_essence"} +T:{Count:1b,id:"ars_nouveau:air_essence"} +T:{Count:1b,id:"ars_nouveau:manipulation_essence"} +T:{Count:1b,id:"mysticalagriculture:air_essence"} +T:{Count:1b,id:"mysticalagriculture:earth_essence"} +T:{Count:1b,id:"mysticalagriculture:fire_essence"} +T:{Count:1b,id:"mysticalagriculture:water_essence"} +T:{Count:1b,id:"minecraft:barrier"} +T:{Count:1b,id:"mysticalagriculture:witherproof_glass"} +T:{Count:1b,id:"undergarden:sediment_glass"} +T:{Count:1b,id:"mysticalagriculture:soul_dust"} +T:{Count:1b,id:"mysticalagriculture:soul_glass"} +T:{Count:1b,id:"mcwwindows:one_way_glass"} +T:{Count:1b,id:"gobber2:gobber2_glass"} +T:{Count:1b,id:"gobber2:gobber2_glob_nether"} +T:{Count:1b,id:"gobber2:gobber2_glass_nether"} +T:{Count:1b,id:"mekanism:structural_glass"} +T:{Count:1b,id:"alexscaves:sea_glass_shards"} +T:{Count:1b,id:"alexscaves:depth_glass"} +T:{Count:1b,id:"apotheotic_additions:luminous_glass"} +T:{Count:1b,id:"blue_skies:midnight_glass"} +T:{Count:1b,id:"blue_skies:crystal_glass"} +T:{Count:1b,id:"alexsmobs:rainbow_jelly"} +T:{Count:1b,id:"alexsmobs:rainbow_glass"} +T:{Count:1b,id:"ae2:quartz_vibrant_glass"} +T:{Count:1b,id:"ae2:quartz_glass"} +T:{Count:1b,id:"ae2:quartz_fiber"} +T:{Count:1b,id:"farmersdelight:rice_bag"} +T:{Count:1b,id:"farmersdelight:safety_net"} +T:{Count:1b,id:"farmersdelight:tatami"} +T:{Count:1b,id:"brewery:rope"} +T:{Count:1b,id:"supplementaries:rope"} +T:{Count:1b,id:"beautify:rope"} +T:{Count:1b,id:"farmersdelight:rope"} +T:{Count:1b,id:"minecraft:bone_meal"} +T:{Count:1b,id:"mcwbyg:rope_florus_bridge"} +T:{Count:1b,id:"mcwbyg:florus_rope_bridge_stair"} +T:{Count:1b,id:"farmersdelight:acacia_cabinet"} +T:{Count:1b,id:"farmersdelight:hot_cocoa"} +T:{Count:1b,id:"farmersdelight:milk_bottle"} +T:{Count:1b,id:"farmersdelight:canvas_sign"} +T:{Count:1b,id:"farmersdelight:netherite_knife",tag:{Damage:0}} +T:{Count:1b,id:"minecraft:enchanted_book",tag:{StoredEnchantments:[{id:"farmersdelight:backstabbing",lvl:7s}]}} +T:{Count:1b,id:"farmersdelight:golden_knife",tag:{Damage:0}} +T:{Count:1b,id:"farmersdelight:stove"} +T:{Count:1b,id:"farmersdelight:skillet",tag:{Damage:0}} +T:{Count:1b,id:"farmersdelight:cutting_board"} +T:{Count:1b,id:"farmersdelight:cooking_pot"} +T:{Count:1b,id:"croptopia_additions:pad_thai"} +T:{Count:1b,id:"wfc:chocolate_waffle"} +T:{Count:1b,id:"wfc:waffle_iron",tag:{Damage:0}} +T:{Count:1b,id:"croptopia_additions:frosted_churro"} +T:{Count:1b,id:"croptopia_additions:churro"} +T:{Count:1b,id:"croptopia:knife"} +T:{Count:1b,id:"croptopia:frying_pan"} +T:{Count:1b,id:"croptopia:food_press"} +T:{Count:1b,id:"croptopia:cooking_pot"} +T:{Count:1b,id:"croptopia:tuna_sandwich"} +T:{Count:1b,id:"croptopia:chicken_and_dumplings"} +T:{Count:1b,id:"croptopia:buttered_toast"} +T:{Count:1b,id:"croptopia:scrambled_eggs"} +T:{Count:1b,id:"alltheores:lead_dust"} +T:{Count:1b,id:"alltheores:lead_ingot"} +T:{Count:1b,id:"mcwfurnitures:crimson_desk"} +T:{Count:1b,id:"industrialforestry:industrial_scoop",tag:{}} +T:{Count:1b,id:"industrialforestry:industrial_squeezer"} +T:{Count:1b,id:"industrialforestry:industrial_centrifuge"} diff --git a/config/jei_mekanism_multiblocks-client.toml b/config/jei_mekanism_multiblocks-client.toml new file mode 100644 index 0000000..d830f54 --- /dev/null +++ b/config/jei_mekanism_multiblocks-client.toml @@ -0,0 +1,78 @@ + +[multiblocks] + + [multiblocks.mekanism] + + #JEI 'Building [Dynamic Tank]' page configuration + [multiblocks.mekanism.dynamic_tank] + #Set page visibility + visible = true + + #JEI 'Building [Thermal Evaporation Plant]' page configuration + [multiblocks.mekanism.evaporation_plant] + #Set page visibility + visible = true + + #JEI 'Building [Thermoelectric Boiler]' page configuration + [multiblocks.mekanism.boiler] + #Set page visibility + visible = true + + #JEI 'Building [Supercritical Phase Shifter]' page configuration + [multiblocks.mekanism.sps] + #Set page visibility + visible = true + + #JEI 'Building [Induction Matrix]' page configuration + [multiblocks.mekanism.matrix] + #Set page visibility + visible = true + + [multiblocks.mekanismgenerators] + + #JEI 'Building [Industrial Turbine]' page configuration + [multiblocks.mekanismgenerators.turbine] + #Set page visibility + visible = true + + #JEI 'Building [Fission Reactor]' page configuration + [multiblocks.mekanismgenerators.fission_reactor] + #Set page visibility + visible = true + + #JEI 'Building [Fusion Reactor]' page configuration + [multiblocks.mekanismgenerators.fusion_reactor] + #Set page visibility + visible = true + + [multiblocks.better_fusion_reactor] + + #JEI 'Building [Better Fusion Reactor]' page configuration + [multiblocks.better_fusion_reactor.better_fusion_reactor] + #Set page visibility + visible = true + + [multiblocks.mekanism_extras] + + #JEI 'Building [Reinforced Induction Matrix]' page configuration + [multiblocks.mekanism_extras.extra_matrix] + #Set page visibility + visible = true + + #JEI 'Building [Naquadah Reactor]' page configuration + [multiblocks.mekanism_extras.naquadah_reactor] + #Set page visibility + visible = true + + [multiblocks.evolvedmekanism] + + #JEI 'Building [Antimatter Protomolecular Transmutator]' page configuration + [multiblocks.evolvedmekanism.apt] + #Set page visibility + visible = true + + #JEI 'Building [Induction Matrix]' page configuration + [multiblocks.evolvedmekanism.matrix] + #Set catalyst visibility + visible = true + diff --git a/config/jeiintegration-client.toml b/config/jeiintegration-client.toml new file mode 100644 index 0000000..de911d4 --- /dev/null +++ b/config/jeiintegration-client.toml @@ -0,0 +1,24 @@ + +#Tooltip Settings +# Tooltip Options +# Configure the options below to one of the following: disabled, enabled, onShift, onDebug or onShiftAndDebug +[tooltip_options] + # Configure tooltip for burn time. + burnTimeTooltipMode = "disabled" + # Configure tooltip for durability. + durabilityTooltipMode = "disabled" + # Configure tooltip for enchantability + enchantabilityTooltipMode = "disabled" + # Configure tooltip for hunger and saturation. + foodTooltipMode = "disabled" + # Configure tooltip for max stack size. + maxStackSizeTooltipMode = "disabled" + # Configure tooltip for NBT data. + nbtTooltipMode = "disabled" + # Configure tooltip for registry name. E.g. minecraft:stone + registryNameTooltipMode = "disabled" + # Configure tooltip for tags. E.g. forge:ingot, minecraft:planks + tagsTooltipMode = "disabled" + # Configure tooltip for translation key. E.g. block.minecraft.stone + translationKeyTooltipMode = "disabled" + diff --git a/config/jeioptimizer-client.toml b/config/jeioptimizer-client.toml new file mode 100644 index 0000000..8d5aa9b --- /dev/null +++ b/config/jeioptimizer-client.toml @@ -0,0 +1,32 @@ +#Number of worker threads. 0 = auto (cores - 2, min 2). +#Range: 0 ~ 64 +worker_count = 0 +#Log how long each acceleration phase took. +log_timing = true + +[filter] + #Strategy for accelerating JEI ingredient filter build. + # OFF — vanilla JEI + # BATCH — pack per-item calls into one addAll (~10-15% faster, safe) + # PARALLEL_PREFIX — build each search prefix on its own thread (safe) + # PARALLEL_FULL — also parallelize tokenization inside each prefix (best) + #Default: PARALLEL_FULL + #Allowed Values: OFF, BATCH, PARALLEL_PREFIX, PARALLEL_FULL + mode = "PARALLEL_FULL" + #Build IngredientFilter contents in background — player enters world immediately, + #JEI search becomes available 1-2 sec later. If a player opens JEI before then, + #they see an empty grid until ready. Default false. + async = false + +[plugins] + #EXPERIMENTAL. Phase names of PluginCaller.callOnPlugins to run in parallel. + #Each plugin's handler runs concurrently. Mods NOT thread-safe in their JEI plugins + #WILL crash here (we saw theurgy, ars_nouveau, compactmachines crash in our 1.21.1 test). + #Empty list = disabled (DEFAULT, recommended). + #Try: ["Registering recipes"] only if you've verified your mod set is safe. + parallel_phases = [] + #EXPERIMENTAL. Build CreativeModeTab contents in parallel. + #In our 1.21.1 test pack this LOST 22% of JEI items because some mods' tab builders + #race on internal state. Default OFF (safe). Enable only if your mod set is verified. + parallel_creative_tabs = false + diff --git a/config/jeresources-common.toml b/config/jeresources-common.toml new file mode 100644 index 0000000..d12b6d9 --- /dev/null +++ b/config/jeresources-common.toml @@ -0,0 +1,11 @@ +#Range: 1 ~ 4 +itemsPerColumn = 4 +#Range: 1 ~ 4 +itemsPerRow = 4 +diyData = true +showDevData = false +enchantsBlacklist = ["flimflam", "soulBound"] +hiddenTabs = [] +dimensionsBlacklist = [-11] +disableLootManagerReloading = false + diff --git a/config/jeresources.toml b/config/jeresources.toml new file mode 100644 index 0000000..d12b6d9 --- /dev/null +++ b/config/jeresources.toml @@ -0,0 +1,11 @@ +#Range: 1 ~ 4 +itemsPerColumn = 4 +#Range: 1 ~ 4 +itemsPerRow = 4 +diyData = true +showDevData = false +enchantsBlacklist = ["flimflam", "soulBound"] +hiddenTabs = [] +dimensionsBlacklist = [-11] +disableLootManagerReloading = false + diff --git a/config/jerintegration-client.toml b/config/jerintegration-client.toml new file mode 100644 index 0000000..9598a99 --- /dev/null +++ b/config/jerintegration-client.toml @@ -0,0 +1,18 @@ + +#Jer Integration override options +[jer-integration] + #Enable / Disable patch for Randomite Classic + randomite = true + #Enable / Disable patch for Create + create = true + #Enable / Disable patch for Thermal + thermal = true + #Enable / Disable patch for Immersive Engineering + immersiveengineering = true + #Enable / Disable patch for Tinkers' Construct + tconstruct = true + #Enable / Disable patch for Mekanism + mekanism = true + #Enable / Disable patch for Mining Master + miningmaster = true + diff --git a/config/jmi-client.toml b/config/jmi-client.toml new file mode 100644 index 0000000..0200e09 --- /dev/null +++ b/config/jmi-client.toml @@ -0,0 +1,27 @@ + +#Client-Side Integration +[FTBChunks] + #Enable FTBChunks Integration + ftbChunks = true + #Range: 0.0 ~ 1.0 + claimedChunkOverlayOpacity = 0.22222299873828888 + #Disable conflict functions for FTBChunks (MiniMap, Waypoint beam, Death waypoint) + disableFTBFunction = true + +[Waystones] + #Enable Waystones Integration + waystones = true + #The color code for Waystone marker. You can generate the color code from https://www.mathsisfun.com/hexadecimal-decimal-colors.html + #Range: 0 ~ 16777215 + wayStoneMarkerColor = 16777215 + +[WaypointMessage] + #List of block id and tags for WaypointMessage. e.g., ["#forge:ores/diamond", "minecraft:diamond_block"] + waypointMessageBlocks = [] + emptyHandOnly = true + +["JourneyMap Default Config"] + #When local JM default config version is older than `defaultConfigVersion` it will copy everything under `/config/jmdefaultconfig/` to `/journeymap/` and replace the existing files. Set to -1 to disable. + #Range: > -1 + defaultConfigVersion = -1 + diff --git a/config/jumpoverfences-client.toml b/config/jumpoverfences-client.toml new file mode 100644 index 0000000..18f049a --- /dev/null +++ b/config/jumpoverfences-client.toml @@ -0,0 +1,6 @@ + +#Client settings +[client] + #modid:thingid list of stuff to jump, used for implicit jumping, for example the default list item 'cfm:oak_upgraded_fence + jumpTheseToo = ["cfm:oak_upgraded_fence"] + diff --git a/config/justenoughbreeding-offsets.json b/config/justenoughbreeding-offsets.json new file mode 100644 index 0000000..f4b9c21 --- /dev/null +++ b/config/justenoughbreeding-offsets.json @@ -0,0 +1,117 @@ +{ + "minecraft:cat": { + "scale": -6.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:zoglin": { + "scale": -3.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:witch": { + "scale": -0.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:donkey": { + "scale": -3.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:fox": { + "scale": -17.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:pig": { + "scale": -6.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:allay": { + "scale": -6.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:turtle": { + "scale": -15.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:frog": { + "scale": -26.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:mule": { + "scale": -1.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:sniffer": { + "scale": -3.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:hoglin": { + "scale": -5.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:mooshroom": { + "scale": -3.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:strider": { + "scale": 0.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:ocelot": { + "scale": -2.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:goat": { + "scale": 0.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:chicken": { + "scale": -3.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:wolf": { + "scale": -4.5, + "x": 0.0, + "y": 0.0 + }, + "minecraft:panda": { + "scale": -4.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:horse": { + "scale": -4.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:rabbit": { + "scale": -6.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:bee": { + "scale": -18.0, + "x": 0.0, + "y": 0.0 + }, + "minecraft:axolotl": { + "scale": -12.0, + "x": 0.0, + "y": 0.0 + } +} \ No newline at end of file diff --git a/config/keybindatlas-client.toml b/config/keybindatlas-client.toml new file mode 100644 index 0000000..6de0c91 --- /dev/null +++ b/config/keybindatlas-client.toml @@ -0,0 +1,98 @@ + +[display] + #When enabled, per-frame render timing is logged every 120 frames for performance diagnosis. + renderProfilingEnabled = false + #Default screen scale for Keybind Atlas. Valid values: X1, X2. + #Allowed Values: X1, X2 + defaultPixelScale = "X1" + #Keyboard layout shown by Keybind Atlas. Valid values: US_QWERTY, UK_QWERTY, ABNT2, FRENCH_AZERTY, BELGIAN_AZERTY, GERMAN_QWERTZ, SWISS_QWERTZ, SPANISH, ITALIAN, NORDIC_ISO. Legacy values AZERTY and QWERTZ are still accepted. + #Allowed Values: US_QWERTY, UK_QWERTY, ABNT2, FRENCH_AZERTY, BELGIAN_AZERTY, GERMAN_QWERTZ, SWISS_QWERTZ, SPANISH, ITALIAN, NORDIC_ISO, AZERTY, QWERTZ + keyboardLayout = "US_QWERTY" + #Enables box entrance, connector draw-in, and hover transition animations. + animationsEnabled = true + #When enabled, bindings listed in hiddenBindingLabels stay hidden to reduce clutter. + hiddenBindingsEnabled = true + #When enabled, custom category assignments and colors are applied. Hidden keybinds remain available. + categoriesEnabled = true + #Key labels whose bindings should stay hidden in the atlas. + #Entries for main keyboard keys match physical slots using US QWERTY labels. + #That keeps defaults like W, A, S, D and 1-9 hidden on AZERTY and QWERTZ layouts too. + #Keys outside the main keyboard map, such as numpad and function keys, still match their visible labels. + #To target numpad keys, prefix the label with NUM-, for example "NUM-1" hides the numpad 1 while "1" hides the top-row 1 (case-insensitive). + #Examples: ["SHIFT", "SPACE", "CTRL"] or ["-", "="] for the physical minus and equals slots. + #If the same label appears on multiple keys, all matching keys are affected. + hiddenBindingLabels = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "W", "T", "A", "S", "D", "/"] + #Preset colors shown when creating categories. Format: 'id|Name|#RRGGBBAA'. + #Each entry must use a unique id and color. Defaults include the built-in palette used by the category picker. + presetCategoryColors = ["crimson|Crimson|#B63C47FF", "purple|Purple|#9145D6FF", "emerald|Emerald|#1F9F4DFF", "tangerine|Tangerine|#F97316FF", "amber|Amber|#F59E0BFF", "cyan|Cyan|#06B6D4FF", "rose|Rose|#EC4899FF", "lime|Lime|#84CC16FF", "teal|Teal|#14B8A6FF", "copper|Copper|#B45309FF"] + #User-defined key categories. Format: 'id|Name|#RRGGBBAA|#RRGGBBAA'. + #Defaults include Combat, Magic, Movement, Building, Utility, and Technology. + customCategories = ["combat|Combat|#B63C47FF|#FFFFFFFF", "magic|Magic|#9145D6FF|#FFFFFFFF", "movement|Movement|#1F9F4DFF|#FFFFFFFF", "building|Building|#F59E0BFF|#111318FF", "utility|Utility|#F97316FF|#FFFFFFFF", "technology|Technology|#06B6D4FF|#FFFFFFFF"] + #Per-key custom category assignments. Format: 'KeyTarget::category-id'. + #Targets follow the same key-label rules as hiddenBindingLabels, including the NUM- prefix for numpad keys. + keyCategoryAssignments = [] + #When enabled, F1-F12 keys are shown on the keyboard layout. + fKeysEnabled = false + #When enabled, auxiliary keys (insert, delete, arrows, numpad) feature is available. + allKeysEnabled = true + #When enabled, a dark overlay is drawn behind the atlas for better readability. + backgroundBlurEnabled = false + #Blur strength when background blur is enabled. Each level adds an extra blur pass. Range: 1-5, default: 1. + #Range: 1 ~ 5 + backgroundBlurStrength = 1 + #When enabled, nearby connector lines alternate between the default and alternate line colors. + alternatingLineColorsEnabled = true + #Opacity of panel/info-box backgrounds. Range: 0.0 (transparent) to 1.0 (opaque), default: 0.4. + #Range: 0.0 ~ 1.0 + panelOpacity = 0.4 + #Maximum number of assignments shown in compact (unhovered) binding boxes. Default: 3. + #Range: 1 ~ 20 + maxUnhoveredAssignments = 3 + #Mods that are disabled in the mod filter list. These mod ids/names will be hidden from the atlas when present. + disabledMods = [] + #Individual bindings disabled in the mod filter list. Format: 'ModName::BindingLabel'. + disabledBindings = [] + +#Color values use RGBA hex format, for example #0161CCFF. +[colors] + + #Colors for keys that currently have a visible binding box. + [colors.assignedKey] + fill = "#0161CCFF" + text = "#FFFFFFFF" + + #Colors for keys without any binding. + [colors.unusedKey] + fill = "#2F3136FF" + text = "#9EA2A8FF" + + #Colors for keys whose bindings are intentionally hidden to reduce clutter. + [colors.hiddenBindingKey] + fill = "#1F2125FF" + text = "#B5B5B5FF" + + #Colors for keys in the hover-highlighted state. + [colors.hoveredKey] + fill = "#5EB3FFFF" + text = "#D0D8E0FF" + + #Colors for the binding info boxes. + [colors.bindingBox] + fill = "#3A3D42FF" + hoverFill = "#474B52FF" + border = "#1B1C20FF" + hoverBorder = "#72A8EBFF" + text = "#E5E5E5FF" + sourceText = "#9FA5AEFF" + + #Colors for the keyboard body behind the keys. + [colors.keyboardHousing] + fill = "#1A1C20FF" + border = "#0D0E10FF" + + #Colors for the connector lines between keys and binding boxes. + [colors.connectorLine] + default = "#8A8F96FF" + defaultAlt = "#5C6068FF" + hover = "#86BCFFFF" + diff --git a/config/kiwi-client.yaml b/config/kiwi-client.yaml new file mode 100644 index 0000000..0612468 --- /dev/null +++ b/config/kiwi-client.yaml @@ -0,0 +1,14 @@ +# Use Cloth Config mod for the descriptions. +--- +contributorCosmetic: '' +cosmeticScreenKeybind: true +globalTooltip: false +noMicrosoftTelemetry: true +debug: + tagsTooltip: true + debugTooltipMsg: false + tagsTooltipAppendKeybindHint: true + tagsPerPage: 6 + NBTTooltip: true + F3CopyInInventory: true +suppressExperimentalSettingsWarning: false diff --git a/config/kiwi-common.yaml b/config/kiwi-common.yaml new file mode 100644 index 0000000..f83169a --- /dev/null +++ b/config/kiwi-common.yaml @@ -0,0 +1,6 @@ +# Use Cloth Config mod for the descriptions. +--- +vars: + Author: Snownee +kSwitch: + creativeOnly: false diff --git a/config/kleeslabs-common.toml b/config/kleeslabs-common.toml new file mode 100644 index 0000000..5084524 --- /dev/null +++ b/config/kleeslabs-common.toml @@ -0,0 +1,8 @@ +#Control whether KleeSlabs should trigger ALWAYS, ONLY_WHEN_SNEAKING or ONLY_WHEN_NOT_SNEAKING +#Allowed Values: ALWAYS, ONLY_WHEN_SNEAKING, ONLY_WHEN_NOT_SNEAKING +mode = "ALWAYS" +#IDs of mods whose compatibility should be disabled. +disabledCompat = [] +#Set to true to have KleeSlabs dump a list of items containing the word 'slab' in their name upon world load +dumpSlabs = false + diff --git a/config/konkrete/locals/de_de.local b/config/konkrete/locals/de_de.local new file mode 100644 index 0000000..2da2a5a --- /dev/null +++ b/config/konkrete/locals/de_de.local @@ -0,0 +1,16 @@ +general.width = Breite +general.height = Höhe +general.on = An +general.off = Aus + +popup.done = Fertig + +popup.yesno.confirm = Bestätigen +popup.yesno.cancel = Abbrechen + +popup.notification.accept = Akzeptieren + +popup.choosefile.back = ZURÜCK +popup.choosefile.title = Datei wählen +popup.choosefile.choose = Wählen +popup.choosefile.supported = Unterstützte Dateitypen: diff --git a/config/konkrete/locals/en_us.local b/config/konkrete/locals/en_us.local new file mode 100644 index 0000000..6b4b757 --- /dev/null +++ b/config/konkrete/locals/en_us.local @@ -0,0 +1,19 @@ +general.width = Width +general.height = Height +general.on = On +general.off = Off + +popup.done = Done + +popup.yesno.confirm = Confirm +popup.yesno.cancel = Cancel + +popup.notification.accept = Accept + +popup.choosefile.back = BACK +popup.choosefile.title = Choose File +popup.choosefile.choose = Choose +popup.choosefile.supported = Supported file types: + +configscreen.boolean.enabled = Enabled +configscreen.boolean.disabled = Disabled diff --git a/config/konkrete/locals/pl_pl.local b/config/konkrete/locals/pl_pl.local new file mode 100644 index 0000000..55c0df7 --- /dev/null +++ b/config/konkrete/locals/pl_pl.local @@ -0,0 +1,15 @@ +general.width = Szerokość +general.height = Wysokość +general.on = On +general.off = Off + +popup.done = Gotowe + +popup.yesno.confirm = Potwierdź +popup.yesno.cancel = Anuluj + +popup.notification.accept = Zaakceptuj + +popup.choosefile.back = BACK +popup.choosefile.title = Choose File +popup.choosefile.choose = Choose diff --git a/config/konkrete/locals/pt_br.local b/config/konkrete/locals/pt_br.local new file mode 100644 index 0000000..ed797b2 --- /dev/null +++ b/config/konkrete/locals/pt_br.local @@ -0,0 +1,15 @@ +general.width = Largura +general.height = Altura +general.on = Ligado +general.off = Desligado + +popup.done = Pronto + +popup.yesno.confirm = Confirmar +popup.yesno.cancel = Cancelar + +popup.notification.accept = Aceitar + +popup.choosefile.back = VOLTAR +popup.choosefile.title = Escolher arquivo +popup.choosefile.choose = Escolher diff --git a/config/krypton_fnp.yaml b/config/krypton_fnp.yaml new file mode 100644 index 0000000..18f7fba --- /dev/null +++ b/config/krypton_fnp.yaml @@ -0,0 +1,16 @@ +mixin: + # Enable new encryption optimizations on the client side + clientEncrypt: true + # Optimized RconClient implementation + rconClient: true + # Optimized VarLong implementation + bestVarLong: true + # Optimized VarInt implementation + bestVarInt: true + # Optimized Utf implementation + bestUtf: true +compress: + # The compression level for packets, between 1-9. + compressionLevel: 6 + # Permit Oversized Packets + permitOversizedPackets: true diff --git a/config/l2_configs/l2library-client.toml b/config/l2_configs/l2library-client.toml new file mode 100644 index 0000000..a9efe0b --- /dev/null +++ b/config/l2_configs/l2library-client.toml @@ -0,0 +1,14 @@ +#Info background transparency. 1 means opaque. +#Range: 0.0 ~ 1.0 +infoAlpha = 0.5 +#Info alignment. 0 means top. 1 means middle. 2 means bottom. +#Range: 0 ~ 2 +infoAnchor = 1 +#Info max width. 0.5 means half screen. default: 0.3 +#Range: 0.0 ~ 0.5 +infoMaxWidth = 0.3 +#Render Selection only when pressing shift +selectionDisplayRequireShift = false +#Scroll for selection only when pressing shift +selectionScrollRequireShift = true + diff --git a/config/l2_configs/l2library-common.toml b/config/l2_configs/l2library-common.toml new file mode 100644 index 0000000..ac3553e --- /dev/null +++ b/config/l2_configs/l2library-common.toml @@ -0,0 +1,3 @@ +#Restore full health on respawn +restoreFullHealthOnRespawn = true + diff --git a/config/lazyyyyy.general.json b/config/lazyyyyy.general.json new file mode 100644 index 0000000..3045928 --- /dev/null +++ b/config/lazyyyyy.general.json @@ -0,0 +1,5 @@ +{ + "debug": { + "packCache": false + } +} \ No newline at end of file diff --git a/config/lazyyyyy.mixins.json b/config/lazyyyyy.mixins.json new file mode 100644 index 0000000..0a6dac6 --- /dev/null +++ b/config/lazyyyyy.mixins.json @@ -0,0 +1,13 @@ +{ + "debug": false, + "async_model_baking": false, + "axiom.async_check_commercial": true, + "entity_sound_features.async_sound_events": true, + "lazy_entity_renderers": true, + "moremcmeta.avoid_duplicate_sprites": true, + "toomanyplayers.async_networking": true, + "yacl.lazy_animated_image": true, + "kiwi.faster_annotation": true, + "pack_resources_cache": true, + "avoid_redundant_list_resources": true +} \ No newline at end of file diff --git a/config/leaderboards-client.json b/config/leaderboards-client.json new file mode 100644 index 0000000..1d64679 --- /dev/null +++ b/config/leaderboards-client.json @@ -0,0 +1,3 @@ +{ + "hideButtonWhenOnlyOnePlayerExist": false +} \ No newline at end of file diff --git a/config/leavemybarsalone-client.toml b/config/leavemybarsalone-client.toml new file mode 100644 index 0000000..144c502 --- /dev/null +++ b/config/leavemybarsalone-client.toml @@ -0,0 +1,5 @@ +#Render food bar when riding a mount. +food_bar = true +#Render experience bar when not jumping with a mount. +experience_bar = true + diff --git a/config/leavesbegone-server.toml b/config/leavesbegone-server.toml new file mode 100644 index 0000000..0a30752 --- /dev/null +++ b/config/leavesbegone-server.toml @@ -0,0 +1,7 @@ +#Maximum ticks it takes for leaves to decay. +#Range: > 0 +maximum_decay_ticks = 20 +#Minimum ticks after which leaves will start to decay. +#Range: > 0 +minimum_decay_ticks = 5 + diff --git a/config/legendary_monsters-common.toml b/config/legendary_monsters-common.toml new file mode 100644 index 0000000..9128363 --- /dev/null +++ b/config/legendary_monsters-common.toml @@ -0,0 +1,312 @@ + +["Mob Settings"] + + ["Mob Settings"."General Settings"] + #allow Camera Shake + "Allow Camera Shake" = true + #allow custom bossbars + "Allow Custom Boss Bars" = true + #allow bosses healing when out of combat + "Allow Bosses Natural Healing" = true + #allow boss music + "Allow Boss Music" = true + #Boss Music Volume Multiplier + #Range: 0.0 ~ 1000.0 + "Boss Music Volume Multiplier" = 1.0 + #Allow Falling Cloud Particles + "Allow Falling Cloud Particles" = true + #for example when boss heals up after killing all players the boss will go back to previous phase + "Allow Boss phase reset" = true + #if Boss has no target and is > 15 blocks away from the spawn he will teleport back to the spawn position. That applies to mini bosses too. + "Allow Bosses and Mini Bosses teleport back to their spawn Position" = true + + ["Mob Settings"."Chorusling Settings"] + #Multiplies damage dealt by Chorusling + #Range: 0.0 ~ 1000.0 + "Chorusling Damage Multiplier" = 1.0 + #Multiplies health of Chorusling + #Range: 0.0 ~ 1000.0 + "Chorusling Health Multiplier" = 1.0 + + ["Mob Settings"."Endersent Settings"] + #Multiplies damage dealt by Endersent + #Range: 0.0 ~ 1000.0 + "Endersent Damage Multiplier" = 1.0 + #Multiplies health of Endersent + #Range: 0.0 ~ 1000.0 + "Endersent Health Multiplier" = 1.0 + + ["Mob Settings"."Spiky Worm Settings"] + #Multiplies damage dealt by Spiky Worm + #Range: 0.0 ~ 1000.0 + "Spiky Worm Damage Multiplier" = 1.0 + #Multiplies health of Spiky Worm + #Range: 0.0 ~ 1000.0 + "Spiky Worm Health Multiplier" = 1.0 + + ["Mob Settings"."Ambusher Settings"] + #Multiplies damage dealt by Ambusher + #Range: 0.0 ~ 1000.0 + "Ambusher Damage Multiplier" = 1.0 + #Multiplies health of Ambusher + #Range: 0.0 ~ 1000.0 + "Ambusher Health Multiplier" = 1.0 + #Enables/Disables Projectile Damage For Ambusher + "Allow Ambusher Projectile Immunity" = true + + ["Mob Settings"."Stratling Settings"] + #Multiplies damage dealt by Stratling + #Range: 0.0 ~ 1000.0 + "Stratling Damage Multiplier" = 1.0 + #Multiplies health of Stratling + #Range: 0.0 ~ 1000.0 + "Stratling Health Multiplier" = 1.0 + + ["Mob Settings"."Hovering Hurricane Settings"] + #Multiplies damage dealt by Hovering Hurricane + #Range: 0.0 ~ 1000.0 + "Hovering Hurricane Damage Multiplier" = 1.0 + #Multiplies health of Hovering Hurricane + #Range: 0.0 ~ 1000.0 + "Hovering Hurricane Health Multiplier" = 1.0 + + ["Mob Settings"."Ancient Guardian Settings"] + #Multiplies damage dealt by Ancient Guardian + #Range: 0.0 ~ 1000.0 + "Ancient Guardian Damage Multiplier" = 1.0 + #Multiplies health of Ancient Guardian + #Range: 0.0 ~ 1000.0 + "Ancient Guardian Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Ancient Guardian. §cNOTE: Disabling This may make the bossfight less fun. + "Allow Ancient Guardian Stun Ability" = true + #Enables/Disables Projectile Damage for Ancient Guardian + "Allow Ancient Guardian Projectile Immunity" = true + + ["Mob Settings"."Haunted Knight Settings"] + #Multiplies damage dealt by Haunted Knight + #Range: 0.0 ~ 1000.0 + "Haunted Knight Damage Multiplier" = 1.0 + #Multiplies health of Haunted Knight + #Range: 0.0 ~ 1000.0 + "Haunted Knight Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity For Haunted Knight + "Allow Haunted Knight Projectile Immunity" = true + + ["Mob Settings"."Haunted Guard Settings"] + #Multiplies damage dealt by Haunted Guard + #Range: 0.0 ~ 1000.0 + "Haunted Guard Damage Multiplier" = 1.0 + #Multiplies health of Haunted Guard + #Range: 0.0 ~ 1000.0 + "Haunted Guard Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity For Haunted Guard + "Allow Haunted Guard Projectile Immunity" = true + + ["Mob Settings"."Posessed Paladin Settings"] + #Multiplies damage dealt by Posessed Paladin + #Range: 0.0 ~ 1000.0 + "Posessed Paladin Damage Multiplier" = 1.0 + #Multiplies health of Posessed Paladin. §cNOTE: Disabling This may make the bossfight less fun. + #Range: 0.0 ~ 1000.0 + "Posessed Paladin Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Posessed Paladin + "Allow Posessed Paladin Stun Ability" = true + #Enables/Disables Projectile Immunity for Posessed Paladin + "Allow Posessed Paladin Projectile Immunity" = true + + ["Mob Settings"."Overgrown Colosuss Settings"] + #Multiplies damage dealt by Overgrown Colosuss + #Range: 0.0 ~ 1000.0 + "Overgrown Colosuss Damage Multiplier" = 1.0 + #Multiplies health of Overgrown Colosuss + #Range: 0.0 ~ 1000.0 + "Overgrown Colosuss Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Overgrown Colosuss. §cNOTE: Disabling This may make the bossfight less fun. + "Allow Overgrown Colosuss Stun Ability" = true + #Enables/Disables Projectile Immunity for Overgrown Colosuss + "Allow Overgrown Colosuss Projectile Immunity" = true + + ["Mob Settings"."Mossy Golem Settings"] + #Multiplies damage dealt by Mossy Golem + #Range: 0.0 ~ 1000.0 + "Mossy Golem Damage Multiplier" = 1.0 + #Multiplies health of Mossy Golem + #Range: 0.0 ~ 1000.0 + "Mossy Golem Health Multiplier" = 1.0 + + ["Mob Settings"."Cloud Golem Settings"] + #Multiplies damage dealt by Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Damage Multiplier" = 1.0 + #Multiplies health of Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Health Multiplier" = 1.0 + #Enables Projectile Damage for Cloud Golem + "Allow Cloud Golem Projectile Damage" = false + #Cloud Golem loses Consciousness after Laser Attack + "Allow Cloud Golem Loses Consciousness" = true + #Cloud Golem can Charge once more after missing when he is low on HP + "Allow Cloud Golem Charge once More" = true + #Enables/Disables Cloud Golem Invulnerability Time (this boss is not getting schredded in 0.5seconds by frame - ignore weapons) + "Allow Cloud Golem Invulnerability Time" = true + #Maximum damage that can be dealt to Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Damage Cap" = 18.0 + + ["Mob Settings"."Cloud Golem's Falling Cloud Settings"] + #Multiplies damage dealt by Falling Cloud + #Range: 0.0 ~ 1000.0 + "Falling Cloud Damage Multiplier" = 1.0 + + ["Mob Settings"."Frostbitten Golem Settings"] + #Multiplies damage dealt by Frostbitten Golem + #Range: 0.0 ~ 1000.0 + "Frostbitten Golem Damage Multiplier" = 1.0 + #Multiplies health of Frostbitten Golem + #Range: 0.0 ~ 1000.0 + "Frostbitten Golem Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity for Frostbitten Golem + "Allow Frostbitten Golem Projectile Immunity" = true + + ["Mob Settings"."Dune Sentinel Settings"] + #Multiplies damage dealt by Dune Sentinel + #Range: 0.0 ~ 1000.0 + "Dune Sentinel Damage Multiplier" = 1.0 + #Multiplies health of Dune Sentinel + #Range: 0.0 ~ 1000.0 + "Dune Sentinel Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity for Dune Sentinel + "Allow Dune Sentinel Projectile Immunity" = true + #Multiplies damage dealt by Bomber + #Range: 0.0 ~ 1000.0 + "Bomber Damage Multiplier" = 1.0 + #Multiplies health of Bomber + #Range: 0.0 ~ 1000.0 + "Bomber Health Multiplier" = 1.0 + + ["Mob Settings"."Skeletosaurus Settings"] + #Multiplies damage dealt by Skeletosaurus + #Range: 0.0 ~ 1000.0 + "Skeletosaurus Damage Multiplier" = 1.0 + #Multiplies health of Skeletosaurus + #Range: 0.0 ~ 1000.0 + "Skeletosaurus Health Multiplier" = 1.0 + + ["Mob Settings"."Lava Eater Settings"] + #Multiplies damage dealt by Lava Eater + #Range: 0.0 ~ 1000.0 + "Lava Eater Damage Multiplier" = 1.0 + #Multiplies health of Lava Eater + #Range: 0.0 ~ 1000.0 + "Lava Eater Health Multiplier" = 1.0 + #Disables/Enables Projectile Immunity for Lava Eater + "Allow Lava Eater Projectile Immunity" = true + + ["Mob Settings"."Warped Fungussus Settings"] + #Multiplies damage dealt by Warped Fungussus + #Range: 0.0 ~ 1000.0 + "Warped Fungussus Damage Multiplier" = 1.0 + #Multiplies health of Warped Fungussus + #Range: 0.0 ~ 1000.0 + "Warped Fungussus Health Multiplier" = 1.0 + + ["Mob Settings"."Withered Abomination Settings"] + #Multiplies damage dealt by Withered Abomination + #Range: 0.0 ~ 1000.0 + "Withered Abomination Damage Multiplier" = 1.0 + #Multiplies health of Withered Abomination + #Range: 0.0 ~ 1000.0 + "Withered Abomination Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Withered Abomination + "Allow Withered Abomination Stun Ability" = false + + ["Mob Settings"."Shulker Mimic Settings"] + #Multiplies damage dealt by Shulker Mimic + #Range: 0.0 ~ 1000.0 + "Shulker Mimic Damage Multiplier" = 1.0 + #Multiplies health of Shulker Mimic + #Range: 0.0 ~ 1000.0 + "Shulker Mimic Health Multiplier" = 1.0 + #Enables/Disables Projectile immunity for Shulker Mimic + "Allow Shulker Mimic Projectile Immunity" = true + + ["Mob Settings"."Tamable Knight Settings"] + #Multiplies damage dealt by Knight + #Range: 0.0 ~ 100.0 + "Knight Damage Multiplier" = 1.0 + #Multiplies health of Knight + #Range: 0.0 ~ 100.0 + "Knight Health Multiplier" = 1.0 + + ["Mob Settings"."Tamable Guard Settings"] + #Multiplies damage dealt by Guard + #Range: 0.0 ~ 1000.0 + "Guard Damage Multiplier" = 1.0 + #Multiplies health of Guard + #Range: 0.0 ~ 1000.0 + "Guard Health Multiplier" = 1.0 + + ["Mob Settings"."Skeloraptor Settings"] + #Multiplies damage dealt by Skeloraptor + #Range: 0.0 ~ 1000.0 + "Skeloraptor Damage Multiplier" = 1.0 + #Multiplies health of Skeloraptor + #Range: 0.0 ~ 1000.0 + "Skeloraptor Health Multiplier" = 1.0 + + ["Mob Settings"."Flameborn Guard Settings"] + #Multiplies damage dealt by Flameborn Guard + #Range: 0.0 ~ 1000.0 + "The Flameborn Guard Damage Multiplier" = 1.0 + #Multiplies damage of Flameborn Guard + #Range: 0.0 ~ 1000.0 + "Flameborn Guard Damage Multiplier" = 1.0 + + ["Mob Settings"."Annihilation Pursuer Settings"] + #Multiplies damage of Annihilation Pursuer + #Range: 0.0 ~ 1000.0 + "Annihilation Pursuer Damage Multiplier" = 1.0 + + ["Mob Settings"."The Obliterator Settings"] + #Multiplies damage dealt by The Obliterator + #Range: 0.0 ~ 1000.0 + "The Obliterator Damage Multiplier" = 1.0 + #Multiplies Health of The Obliterator + #Range: 0.0 ~ 1000.0 + "The Obliterator Health Multiplier" = 1.0 + #The bigger it is the stronger the Damage Adaptation is + #Range: 0 ~ 1000 + "The Obliterator Damage Adaptation Multiplier" = 1 + #ON/OFF Obliterator I Frame protection + "The Obliterator Invulnerability Time" = true + #Increases/Decreases Anti Cheese(Airborne Variation) distance which makes the Boss invulnerable when player has a high ground, default is -4 below the boss and 4 above. chaning the value will change both '-' and '+' values. + #Range: 0 ~ 1000 + "Protection against airborne cheese" = 4 + #ON/OFF Annihilation effect that The Obliterator Inflicts after hitting you, it's a stacking debuff that reduces your attack speed. + "The Obliterator Annihilation Debuff Effect" = false + #% Damage for Obliterator's clones(punching) + #Range: 0 ~ 1000 + "% Damage for Obliterator's clones(punching)" = 7 + #% Damage for Obliterator's portals + #Range: 0 ~ 1000 + "% Damage for Obliterator's portals" = 5 + #% Damage for Obliterator's portal Explosion + #Range: 0 ~ 1000 + "% Damage for Obliterator's portal Explosion" = 3 + + ["Mob Settings"."Flame Drifter Settings"] + #Multiplies damage dealt by Flame Drifter + #Range: 0.0 ~ 1000.0 + "Flame Drifter Damage Multiplier" = 1.0 + #Multiplies Health of Flame Drifter + #Range: 0.0 ~ 1000.0 + "Flame Drifter Health Multiplier" = 1.0 + + ["Mob Settings"."Wandering Eye Settings"] + #Multiplies damage dealt by Wandering Eye + #Range: 0.0 ~ 1000.0 + "Wandering Eye Damage Multiplier" = 1.0 + #Multiplies Health of Wandering Eye + #Range: 0.0 ~ 1000.0 + "Wandering Eye Health Multiplier" = 1.0 + diff --git a/config/legendaryblockentities-client.toml b/config/legendaryblockentities-client.toml new file mode 100644 index 0000000..a911d2b --- /dev/null +++ b/config/legendaryblockentities-client.toml @@ -0,0 +1,29 @@ + +#Toggle which block entities to optimize. Changes require restart. +[optimizations] + #Optimize chests, trapped chests, and ender chests. + chests = true + #Optimize all 16 bed colors. + beds = true + #Optimize bells. + bells = true + #Optimize all shulker box variants (17 colors). + shulker_boxes = true + #Optimize Quark variant chests (requires Quark to be installed). + quark_chests = true + #Optimize BetterEnd chests (requires BetterEnd + BCLib). + better_end_chests = true + #Optimize BetterNether chests (requires BetterNether + BCLib). + better_nether_chests = true + #Optimize Iron Chests (requires Iron Chests). Crystal chests are excluded. + iron_chests = true + +[compatibility] + #How to coexist with Vanillin (Flywheel instanced rendering). Changes require restart. + # AUTO - If Vanillin is present and Flywheel's backend is ON, let Vanillin + # handle VANILLA chests/bells/shulkers; LBE keeps optimizing modded chests. + # ALWAYS_LBE - Ignore Vanillin; LBE handles everything (may double-render with Vanillin). + # DEFER_TO_VANILLIN - If Vanillin is present at all, always defer vanilla types to it. + #Note: if you change Flywheel's backend in-game, restart for LBE to re-evaluate. + vanillin_compat_mode = "AUTO" + diff --git a/config/legendarytooltips-common.toml b/config/legendarytooltips-common.toml new file mode 100644 index 0000000..1a08823 --- /dev/null +++ b/config/legendarytooltips-common.toml @@ -0,0 +1,120 @@ + +# Legendary Tooltips Configuration Instructions +# +# *** READ THIS FIRST *** +# +# By default, this mod does not apply special borders to most items. It was designed to work well with mod packs where +# the available selection of items can vary widely, so it is up to the user or mod pack designer to customize as needed. +# There are many options available for setting up which custom borders (also called frames) apply to which items. Follow these steps: +# 1. Decide which items you want to have custom borders, and which borders. Note that each custom border has a number associated with it (starting at 0). +# 2. For each custom border you want to use, fill out the associated list in the "definitions" section. This will be filled out with a list of "selectors", +# each of which tell the mod what items have that border. Please read the information above the definitions section for specifics. +# 3. Selectors for borders are checked in the order provided in the "priorities" section. Once a match is found, that border is displayed. +# For example, if border 0 had the selector "%Diamond" and border 1 had the selector "diamond_sword", they would both match for diamond swords. +# In this case, whichever border number came first in the priority list would be the border that would get drawn in-game. +# 4. Optionally, border colors associated with custom borders can be set in the "colors" section. The start color is the color at the top of the tooltip, +# and the end color is the bottom, with a smooth transition between. Please read the information above the color section for specifics. +[client] + + [client.visual_options] + # Whether item names in tooltips should have a line under them separating them from the rest of the tooltip. + name_separator = true + # If enabled, tooltip border colors will match item rarity colors (except for custom borders). + borders_match_rarity = true + # If enabled, tooltips will display a drop shadow. + tooltip_shadow = true + # If enabled, items showing a custom border will have a special shine effect when hovered over. + shine_effect = true + # If enabled, tooltip titles will be drawn centered. + centered_title = true + # If enabled, tooltips with custom borders will always be at least wide enough to display all border decorations. + enforce_minimum_width = false + # If enabled, some unnecessary text and spacing will be removed from equipment tooltips. + compact_tooltips = true + # Which items should have a 3D model rendered in the tooltip. If set to "equipment", the model will only be rendered for items with durability. + #Allowed Values: NONE, EQUIPMENT, ALL + render_item_model = "EQUIPMENT" + # The speed at which 3D models in tooltips will rotate. Lower values rotate faster, set to 0 to disable rotation. + #Range: 0.0 ~ 50.0 + model_rotation_speed = 12.0 + + # Entry types: + # Match all - Specifying just an asterisk (*) will match all items. Examples: "*" + # Item ID - Use item ID to match single items. Must include mod name for modded items. Examples: "minecraft:stick", "iron_ore", "spoiledeggs:spoiled_egg" + # Tag - $ followed by tag name to match all items with that tag. Examples: "$forge:stone", "$planks" + # Mod name - @ followed by mod identifier to match all items from that mod. Examples: "@spoiledeggs" + # Rarity - ! followed by item's rarity to match all items with that rarity. This is ONLY vanilla rarities. Examples: "!uncommon", "!rare", "!epic" + # Item name color - # followed by color hex code, to match all items with that exact color item name. Examples: "#23F632" + # Display name - % followed by any text. Will match any item with this text (case-sensitive) in its tooltip display name. Examples: "%Netherite", "%Uncommon" + # Tooltip text - ^ followed by any text. Will match any item with this text (case-sensitive) anywhere in the tooltip text (besides the name). Examples: "^Legendary" + # NBT tag - & followed by tag name and optional comparator (=, >, <, or !=) and value, in the format or just . Examples: "&Damage=0", "&Tier>1", "&map!=128", "&Enchantments" + # Negation - ~ followed by any selector above. This selector will be negated, matching every item that does NOT match the selector. Examples: "~minecraft:stick", "~!uncommon", "~@minecraft" + # Combining selectors - Any number of selectors can be combined by separating them with a plus sign. Examples: "minecraft:diamond_sword+&Enchantments", "minecraft:stick+~!common+&Damage=0" + [client.definitions] + level0_entries = ["!epic", "!rare"] + level1_entries = [] + level2_entries = [] + level3_entries = [] + level4_entries = [] + level5_entries = [] + level6_entries = [] + level7_entries = [] + level8_entries = [] + level9_entries = [] + level10_entries = [] + level11_entries = [] + level12_entries = [] + level13_entries = [] + level14_entries = [] + level15_entries = [] + # Enter blacklist selectors here using the same format as above. Any items that match these selectors will NOT show a border. + blacklist = [] + + # Set border priorities here. This should be a list of numbers that correspond to border levels, with numbers coming first being higher priority. + # Optionally, -1 can be inserted to indicate relative priority of data and api-defined borders. If you don't know what that means, you don't need to worry about it. + [client.priorities] + priorities = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + + # The colors used for each tooltip, in this order: top border color, bottom border color, top background color, bottom background color. + # None of these colors are required, though any colors not specified will be replaced with the default tooltip colors. + # + # VALID COLOR FORMATS + # Hex color code - A hex color code is preceded by # or 0x and must be quoted. Supports 3, 4, 6, or 8 digit codes in the formats RGB, ARGB, RRGGBB, AARRGGBB. + # Examples: "#F4C", "0xFEE0", "#40FF2E", "#CC00E2EE" + # + # Decimal color code - A decimal color code, which is just a hex color code converted to decimal. May or may not be quoted. + # Examples: 15614720, "4278251143" + # + # Minecraft color name - One of the standard 16 Minecraft color names. Must be quoted. + # Examples: "red", "dark_purple", "gold" + # + # Web color name - One of the standard 140 web/HTML color names or "transparent". Must be quoted. + # Examples: "chartreuse", "darkorange", "deeppink", "deepskyblue" + # + # Modifiers - Colors specified in any of the above formats can be modified by using modifiers. + # Modifiers are specified after any color in the format "<+, -, or =>". + # The letters represent h - hue, s - saturation, v - value, r - red, g - green, b - blue, a - alpha. + # Valid amounts are 0 to 255 for all types except hue, which accepts 0 to 359. + # Examples: "red+h15", "#saddlebrown-v20+s5", "10_aqua_aqua+v15-h5", "#F4C-r15-v10=a40" + # + # Animated color - An animated color that fades from one to another in sequence. + # A string in the format "_". Must be quoted. + # Examples: "10_black_#7FFF00", "5.5_gold_orange_orangered", "20_red_orange_yellow_green_blue_purple" + [client.colors] + level0_colors = [-6723294, -10864099, -266991104, -401208832] + level1_colors = ["auto", "auto", "auto", "auto"] + level2_colors = ["auto", "auto", "auto", "auto"] + level3_colors = ["auto", "auto", "auto", "auto"] + level4_colors = ["auto", "auto", "auto", "auto"] + level5_colors = ["auto", "auto", "auto", "auto"] + level6_colors = ["auto", "auto", "auto", "auto"] + level7_colors = ["auto", "auto", "auto", "auto"] + level8_colors = ["auto", "auto", "auto", "auto"] + level9_colors = ["auto", "auto", "auto", "auto"] + level10_colors = ["auto", "auto", "auto", "auto"] + level11_colors = ["auto", "auto", "auto", "auto"] + level12_colors = ["auto", "auto", "auto", "auto"] + level13_colors = ["auto", "auto", "auto", "auto"] + level14_colors = ["auto", "auto", "auto", "auto"] + level15_colors = ["auto", "auto", "auto", "auto"] + diff --git a/config/libraryferret_1.properties b/config/libraryferret_1.properties new file mode 100644 index 0000000..8e9e067 --- /dev/null +++ b/config/libraryferret_1.properties @@ -0,0 +1,3 @@ +#Need help? Ask on Discord or Github/Gitlab <3 (ps: it is possible that this file contains nothing it's normal) +#Sun Jul 19 16:06:38 GMT 2026 +boolean.creative.enable_item_group_ferret=false diff --git a/config/lightspeed-common.toml b/config/lightspeed-common.toml new file mode 100644 index 0000000..5f41069 --- /dev/null +++ b/config/lightspeed-common.toml @@ -0,0 +1,20 @@ + +[startup] + #Preload Forge path resource pack indexes on Lightspeed worker threads during startup. + asyncPreloadPacks = true + #Query safe resource-pack segments concurrently while preserving vanilla priority and filter order. + parallelResourceLookup = true + #Minimum safe pack segment size before Lightspeed uses parallel resource lookup. Small segments are faster sequentially. + #Range: 2 ~ 64 + parallelLookupMinPacks = 4 + #Cache per-pack resource existence checks. The persisted cache is loaded lazily so it does not block startup IO. + cacheResourceExistence = true + +[compatibility] + #Complete failed third-party client resource reload listeners instead of letting one mod crash the whole loading overlay. + isolateModdedResourceReloadFailures = true + #Class-name prefixes that may be isolated when resource reload fails. Use * for all non-core mod listeners. + isolatedResourceReloadListenerPatterns = ["*"] + #When Sinytra Connector is installed, avoid startup/resource optimizations that change Fabric resource reload or renderer lookup timing. + connectorCompatibilityMode = true + diff --git a/config/lithium.properties b/config/lithium.properties new file mode 100644 index 0000000..b0f4957 --- /dev/null +++ b/config/lithium.properties @@ -0,0 +1,212 @@ +# This is the configuration file for Radium. +# This file exists for debugging purposes and should not be configured otherwise. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. + + +# --------------------------------------------------------------------------------- +# Global Sections +mixin.math=true +mixin.util=false +mixin.alloc=false +mixin.shapes=true +mixin.profiler=true +mixin.collections=true +mixin.client_tick=true +mixin.experimental.entity=true +mixin.ai=false +mixin.entity=false +mixin.debug=false +mixin.debug.palette=false +mixin.experimental=false +mixin.world=false +mixin.startup=false +mixin.minimal_nonvanilla=false +mixin.gen=false +mixin.chunk=false +mixin.block=false +# --------------------------------------------------------------------------------- + + +# Section: AI --------------------------------------------------------------------- +mixin.ai.non_poi_block_search=true +mixin.ai.poi.tasks=true +mixin.ai.sensor=true +mixin.ai.sensor.replace_streams=true +mixin.ai.sensor.replace_streams.tempting=true +mixin.ai.sensor.secondary_poi=true +mixin.ai.task=true +mixin.ai.task.launch=true +mixin.ai.task.memory_changes=true +mixin.ai.task.replace_streams=true +mixin.ai.task.run=true +mixin.ai.task.run.long_jump_weighted_choice=true +mixin.ai.useless_sensors.goat_item_sensor=true +mixin.ai.poi=true +mixin.ai.pathing=false +mixin.ai.poi.fast_portals=false +mixin.ai.raid=false +mixin.ai.useless_behaviors=false +mixin.ai.useless_behaviors.nitwit_job_search=false +mixin.ai.useless_sensors=false +mixin.ai.useless_sensors.baby_specific_sensors=false + +# Section: ALLOC ------------------------------------------------------------------ +mixin.alloc.deep_passengers=true +mixin.alloc.entity_iteration=false +mixin.alloc.entity_tracker=false +mixin.alloc.enum_values=true +mixin.alloc.enum_values.piston_block=true +mixin.alloc.enum_values.piston_handler=true +mixin.alloc.explosion_behavior=true +mixin.alloc.chunk_random=false +mixin.alloc.composter=false +mixin.alloc.enum_values.redstone_wire=false +mixin.alloc.nbt=false + +# Section: BLOCKS ----------------------------------------------------------------- +mixin.block.fluid=true +mixin.block.fluid.flow=true +mixin.block.redstone_wire=true +mixin.block.flatten_states=false +mixin.block.hopper=false +mixin.block.moving_block_shapes=false +mixin.block_pattern_matching=false + +# Section: CHUNKS ----------------------------------------------------------------- +mixin.chunk.entity_class_groups=false +mixin.chunk.no_locking=false +mixin.chunk.no_validation=false +mixin.chunk.palette=false +mixin.chunk.serialization=false +mixin.chunk_load_tricks=false + +# Section: CLIENT ----------------------------------------------------------------- +mixin.client_tick.entity=true +mixin.client_tick.entity.base_tick=true +mixin.client_tick.entity.base_tick.unused_ambient_sound=false +mixin.client_tick.entity.base_tick.unused_water_supply=false +mixin.client_tick.entity.unused_brain=false +mixin.client_tick.particle=false +mixin.client_tick.particle.biome_particles=false + +# Section: COLLECTIONS ------------------------------------------------------------ +mixin.collections.attributes=true +mixin.collections.block_entity_tickers=true +mixin.collections.brain=true +mixin.collections.chunk_tickets=false +mixin.collections.entity_by_type=true +mixin.collections.entity_filtering=false +mixin.collections.entity_ticking=true +mixin.collections.mob_spawning=true + +# Section: ENTITIES --------------------------------------------------------------- +mixin.entity.collisions=true +mixin.entity.framed_maps=true +mixin.entity.inactive_navigations=true +mixin.entity.replace_entitytype_predicates=true +mixin.entity.sprinting_particles=true +mixin.entity.equipment_tracking.enchantment_ticking=true +mixin.entity.fast_elytra_check=true +mixin.entity.fast_powder_snow_check=true +mixin.entity.fast_retrieval=true +mixin.entity.collisions.block_effects=false +mixin.entity.collisions.intersection=false +mixin.entity.collisions.movement=false +mixin.entity.collisions.unpushable_cramming=false +mixin.entity.equipment_tracking=false +mixin.entity.equipment_tracking.equipment_changes=false +mixin.entity.fast_hand_swing=false +mixin.entity.projectile_projectile_collisions=false + +# Section: EXPERIMENTAL ----------------------------------------------------------- +mixin.experimental.entity.block_caching=false +mixin.experimental.entity.block_caching.block_support=false +mixin.experimental.entity.block_caching.suffocation=false +mixin.experimental.entity.item_entity_merging=false + +# Section: MATH ------------------------------------------------------------------- +mixin.math.fast_blockpos=true +mixin.math.fast_util=true +mixin.math.sine_lut=true + +# Section: NON-VANILLA ------------------------------------------------------------ +mixin.minimal_nonvanilla.collisions=true +mixin.minimal_nonvanilla.collisions.empty_space=true +mixin.minimal_nonvanilla.spawning=true +mixin.minimal_nonvanilla.ai=false +mixin.minimal_nonvanilla.ai.sensor=false +mixin.minimal_nonvanilla.ai.sensor.frog_attackables=false +mixin.minimal_nonvanilla.world=false +mixin.minimal_nonvanilla.world.block_entity_ticking=false +mixin.minimal_nonvanilla.world.block_entity_ticking.support_cache=false +mixin.minimal_nonvanilla.world.expiring_chunk_tickets=false + +# Section: SHAPES ----------------------------------------------------------------- +mixin.shapes.blockstate_cache=true +mixin.shapes.lazy_shape_context=true +mixin.shapes.optimized_matching=true +mixin.shapes.precompute_shape_arrays=true +mixin.shapes.shape_merging=true +mixin.shapes.specialized_shapes=true + +# Section: WORLD ------------------------------------------------------------------ +mixin.world.chunk_ticking.precipitation=true +mixin.world.chunk_ticking.spread_ice=true +mixin.world.explosions=true +mixin.world.explosions.block_raycast=true +mixin.world.explosions.entity_raycast=true +mixin.world.game_events=true +mixin.world.inline_block_access=true +mixin.world.raycast=true +mixin.world.explosions.block_raycast.skip_air.no_air_counting=true +mixin.world.block_entity_ticking.chunk_tickable=false +mixin.world.chunk_ticking=false +mixin.world.block_entity_ticking=false +mixin.world.block_entity_ticking.sleeping=false +mixin.world.block_entity_ticking.sleeping.brewing_stand=false +mixin.world.block_entity_ticking.sleeping.campfire=false +mixin.world.block_entity_ticking.sleeping.campfire.lit=false +mixin.world.block_entity_ticking.sleeping.campfire.unlit=false +mixin.world.block_entity_ticking.sleeping.chest_animation=false +mixin.world.block_entity_ticking.sleeping.crafter=false +mixin.world.block_entity_ticking.sleeping.furnace=false +mixin.world.block_entity_ticking.sleeping.hopper=false +mixin.world.block_entity_ticking.sleeping.sculk_catalyst=false +mixin.world.block_entity_ticking.sleeping.sculk_sensor_shrieker=false +mixin.world.block_entity_ticking.sleeping.shulker_box=false +mixin.world.block_entity_ticking.world_border=false +mixin.world.chunk_access=false +mixin.world.chunk_ticking.random_block_ticking=false +mixin.world.combined_heightmap_update=false +mixin.world.explosions.block_raycast.skip_air=false +mixin.world.game_events.dispatch=false +mixin.world.inline_height=false +mixin.world.temperature_cache=false +mixin.world.tick_scheduler=false + +# Section: CACHING ---------------------------------------------------------------- +mixin.gen.cached_generator_settings=false +mixin.cached_hashcode=true + +# Section: UTILS ------------------------------------------------------------------ +mixin.util.block_entity_retrieval=true +mixin.util.data_storage=true +mixin.util.entity_collection_replacement=true +mixin.util.entity_section_position=true +mixin.util.in_world_tracking=false +mixin.util.in_world_tracking.entity=false +mixin.util.initialization=true +mixin.util.inventory_change_listening=false +mixin.util.inventory_comparator_tracking=false +mixin.util.item_component_and_count_tracking=false +mixin.util.section_data_storage=false +mixin.util.world_border_listener=false +mixin.util.accessors=false +mixin.util.block_tracking=false +mixin.util.chunk_access=false +mixin.util.chunk_status_tracking=false + diff --git a/config/lithostitched.json b/config/lithostitched.json new file mode 100644 index 0000000..65a3b55 --- /dev/null +++ b/config/lithostitched.json @@ -0,0 +1,8 @@ +{ + // If disabled, some mod compat features will be turned off to prioritize parity with vanilla seeds. + // The following features will break if disabled: + // - Custom wood type shipwrecks + // - Structure optimizations + "breaks_seed_parity": true, + "log_debug_messages": false +} \ No newline at end of file diff --git a/config/littlejoys-common.toml b/config/littlejoys-common.toml new file mode 100644 index 0000000..e47b11a --- /dev/null +++ b/config/littlejoys-common.toml @@ -0,0 +1,41 @@ + +[dropRush] + #The base chance for a drop rush to occur. + baseChance = 0.019999999552965164 + +[digSpots] + #The minimum distance between dig spots, preventing them from spawning too close together. + minimumDistanceBetween = 128 + #The distance dig spots will spawn from the player. + spawnDistance = 32 + #The seconds that must pass after a dig spot appeared before another dig spot can appear for a player. + spawnIntervalSeconds = 300.0 + #The seconds that must pass after digging a dig spot before another dig spot can appear for a player. + afterDiggingCooldownSeconds = 600.0 + #The limit of dig spots that can spawn in a given chunk overall. Once this many dig spots have spawned, the chunk will never spawn any again. Set to -1 to disable. + totalLimitPerChunk = 1 + #The offset applied to the spawn area in the direction the player is facing. Set to 0 to center it around the player. + projectForwardDistance = 25 + +[fishingSpots] + #The minimum distance between fishing spots, preventing them from spawning too close together. + minimumDistanceBetween = 128 + #The distance fishing spots will spawn from the player. + spawnDistance = 8 + #The seconds that must pass after a fishing spot appeared before another fishing spot can appear for a player. + spawnIntervalSeconds = 300.0 + #The seconds that must pass after fishing a fishing spot before another fishing spot can appear for a player. + afterFishingCooldownSeconds = 600.0 + #The maximum distance a bobber can be from a fishing spot to still trigger it. + fishingRangeTolerance = 3 + #Fishing spots will lure fish quicker than regular water. Set to -1 to disable. + secondsUntilLured = 2.0 + #The limit of fishing spots that can spawn in a given chunk overall. Once this many fishing spots have spawned, the chunk will never spawn any again. Set to -1 to disable. + totalLimitPerChunk = -1 + #The offset applied to the spawn area in the direction the player is facing. Set to 0 to center it around the player. + projectForwardDistance = 4 + +[goldRush] + #The base chance for a gold rush to occur. + baseChance = 0.019999999552965164 + diff --git a/config/lmft.json b/config/lmft.json new file mode 100644 index 0000000..8ae664a --- /dev/null +++ b/config/lmft.json @@ -0,0 +1,3 @@ +{ + "disableIngameError": true +} \ No newline at end of file diff --git a/config/lodestone-client.toml b/config/lodestone-client.toml new file mode 100644 index 0000000..0f1521a --- /dev/null +++ b/config/lodestone-client.toml @@ -0,0 +1,23 @@ + +[graphics] + #Should lodestone use experimental fabulous graphics layering? You pretty much never wanna turn this on at the moment unless you're a developer. + experimental_fabulous_layering = false + + [graphics.particle] + #Should particles render on the delayed buffer? This means they will properly render after clouds & water do, but could cause issues with mods like sodium. + buffer_particles = true + + [graphics.fire] + #Downwards offset of Minecraft's first-person fire overlay. Higher numbers cause it to visually display lower and free up more screen space. + #Range: 0.0 ~ 1.0 + fire_overlay_offset = 0.0 + +[screenshake] + #Intensity of screenshake. Higher numbers increase amplitude. Disable to turn off screenshake. + #Range: 0.0 ~ 5.0 + screenshake_intensity = 1.0 + +[screen_particles] + #Are screen particles enabled? + enable_screen_particles = true + diff --git a/config/logbegone.toml b/config/logbegone.toml new file mode 100644 index 0000000..bb1f8f3 --- /dev/null +++ b/config/logbegone.toml @@ -0,0 +1,5 @@ + +[logbegone] + regex = ["Disconnecting VANILLA connection attempt", "Channels "] + phrases = ["Disconnecting VANILLA connection attempt", "Channels "] + diff --git a/config/lootintegrations.json b/config/lootintegrations.json new file mode 100644 index 0000000..4b4982d --- /dev/null +++ b/config/lootintegrations.json @@ -0,0 +1,22 @@ +{ + "showcontainerloottable": { + "desc:": "Set to true to print containers loottable to chat on first open: default:false", + "showcontainerloottable": false + }, + "skipMapItems": { + "desc:": "Skips map items during additional item generation, to avoid structure search lag (maps in the original chest still exist): default:true", + "skipMapItems": true + }, + "skipExistingItems": { + "desc:": "Skips adding items already present in the loot, to avoid stacking additional items. Note that this increases the chance for modded loot aswell. default:false", + "skipExistingItems": false + }, + "moddedItemWeight": { + "desc:": "Add additional weight to modded items (e.g. 10 = 10 times more likely), making them more likely to be chosen default:3, minimum:0", + "moddedItemWeight": 3 + }, + "debugOutput": { + "desc:": "Shows the added loot in the log if enabled: default:false", + "debugOutput": false + } +} \ No newline at end of file diff --git a/config/lootr-client.toml b/config/lootr-client.toml new file mode 100644 index 0000000..bdb3624 --- /dev/null +++ b/config/lootr-client.toml @@ -0,0 +1,5 @@ +#set to true to use vanilla textures instead of Lootr special textures. Note: this will prevent previously opened chests from rendering differently +vanilla_textures = false +#set to true to use the old Lootr textures +old_textures = false + diff --git a/config/lootr-common.toml b/config/lootr-common.toml new file mode 100644 index 0000000..9f03ed9 --- /dev/null +++ b/config/lootr-common.toml @@ -0,0 +1,89 @@ +#whether or not the entire forge:chests/wooden tag should be added to the conversion list for structures (if they are backed by RandomizableContainerBlockEntity) +convert_wooden_chests = true +#list of loot tables which will decay (default blank, meaning no chests decay, in the format of (in the format of ["modid:loot_table", "othermodid:other_loot_table"]) +decay_loot_tables = [] +#a list of additional chests that should be converted (in the format of ["modid:name", "modid:other_name"], must be a tile entity instance of RandomizableContainerBlockEntity) +additional_chests = [] +#list of mod IDs whose loot tables will decay (default blank, meaning no chests decay, in the format ["modid", "othermodid"]) +decay_modids = [] +#list of modids whose loot tables shouldn't be converted (in the format of ["modid", "other_modid"]) +loot_modid_blacklist = [] +#allows fake players to destroy Lootr chests without having to sneak, overrides the `disable_break` option for fake players +enable_fake_player_break = false +#a list of additional trapped chests that should be converted (in the format of ["modid:name", "modid:other_name"], must be a tile entity instance of RandomizableContainerBlockEntity) +additional_trapped_chests = [] +#lootr chests cannot be destroyed by any explosion +blast_immune = false +#list of dimensions (to the exclusion of all others) that loot chest should be replaced in (default: blank, allowing all dimensions, e.g., ["minecraft:overworld", "minecraft:the_end"]) +dimension_whitelist = [] +#disables styling of breaking, decaying and refreshing messages sent to players +disable_message_styles = false +#list of dimensions where loot chests should automatically decay (default: blank, e.g., ["minecraft:the_nether", "minecraft:the_end"]) +decay_dimensions = [] +#whether or not the entire forge:chests/trapped tag should be added to the conversion list for structures (if they are backed by RandomizableContainerBlockEntity +convert_trapped_chests = true +#list of structures in which loot chests should automatically decay (in the format of ["modid:structure_name", "modid:other_structure_name"]) +decay_structures = [] +#lootr will automatically log all unresolved tables (i.e., for containers that have a loot table associated with them but, for whatever reason, the lookup for this table returns empty). setting this option to true additionally informs players when they open containers. +report_unresolved_tables = false +#list of dimensions by modid that loot chests should not be replaced in (default: blank, allowing all modids, format e.g., ["minecraft +#othermod"]) +modid_dimension_blacklist = [] +#if true, all block entities will be checked before being added to the ticker for an eligible loot table. enable this if a huge quantity of containers are clogging the conversion system; note that aggressive mode may prevent certain chests from properly converted even though eligible +aggressive_mode = false +#list of loot tables which shouldn't be converted (in the format of ["modid:loot_table", "othermodid:other_loot_table"]) +loot_table_blacklist = [] +#list of dimensions where loot chests should automatically refresh (default: blank, e.g., ["minecraft:overworld", "othermod:otherdimension"]) +refresh_dimensions = [] +#list of mod IDs whose loot tables will refresh (default blank, meaning no chests refresh, in the format of ["modid", "othermodid"]) +refresh_modids = [] +#determine whether or not loot generated is the same for all players using the provided seed, or randomised per player +randomise_seed = true +#allows players to open Lootr containers within spawn protection areas +bypass_spawn_protection = true +#when true, custom inventories will act like trapped chests when opened +trapped_custom = false +#how long (in ticks) a decaying loot containers should take to decay (default 5 minutes = 5 * 60 * 20) +#Range: > 0 +decay_value = 6000 +#list of loot tables which will refresh (default blank, meaning no chests refresh, in the format of ["modid:loot_table", "othermodid:loot_table"]) +refresh_loot_tables = [] +#whether or not the Elytra item frame should be converted into a standard loot chest with a guaranteed elytra +convert_elytras = true +#list of dimensions by modid that loot chest should be replaced in (default: blank, allowing all modids, format e.g., ["minecraft +#othermod"]) +modid_dimension_whitelist = [] +#prevent notifications of decaying or refreshed chests +disable_notifications = false +#overriding refresh_loot_tables, refresh_modids and refresh_dimensions: all chests will refresh after being opened for the first time +refresh_all = false +#overriding decay_loot_tables, decay_modids and decay_dimensions: all chests will decay after being opened for the first time +decay_all = false +#lootr chests cannot be destroyed by creeper or TNT explosions +blast_resistant = false +#list of dimensions that loot chests should not be replaced in (default: blank, allowing all dimensions, format e.g., ["minecraft:overworld", "minecraft:the_end"]) +dimension_blacklist = [] +#allow the destruction of Lootr chests regardless. overrides `disable_break` +enable_break = false +#the maximum age for containers; entries above this age will be discarded [default: 60 * 20 * 15, fifteen minutes] [note: the value 6000 will be corrected to 18000. if you wish to use 6000, please use 6001 or 5999.] +#Range: > 0 +max_age = 18000 +#prevent the destruction of Lootr chests except while sneaking in creative mode +disable_break = false +#whether or not mineshaft chest minecarts should be converted to standard loot chests +convert_mineshafts = true +#when true, comparators on Lootr containers will give an output of 1; when false, they will give an output of 0 +power_comparators = true +#maximum time (in ticks) remaining on a chest before a notification for refreshing or decaying is sent to a player (default 30 seconds, -1 for no delay) +#Range: > -1 +notification_delay = 600 +#if true, no chests will be converted +disable = false +#how long (in ticks) a refreshing loot containers should take to refresh their contents (default 20 minutes = 20 * 60 * 20) +#Range: > 0 +refresh_value = 24000 +#disregard chests and chunks that are outside of the world border; enable this option if you are using a world border and are suffering consistent TPS issues; if you change the world border, you will need to restart your client +check_world_border = false +#list of structures in which loot chests should automatically refresh (in the format of ["modid:structure_name", "othermodid:other_structure_name"]) +refresh_structures = [] + diff --git a/config/lootr_liason-common.toml b/config/lootr_liason-common.toml new file mode 100644 index 0000000..3e1c836 --- /dev/null +++ b/config/lootr_liason-common.toml @@ -0,0 +1,20 @@ +#Ticks to wait after detecting a container before finalizing (allows worldgen to finish) +#Range: 0 ~ 400 +finalization_delay_ticks = 20 +#Max containers to finalize per server tick +#Range: 1 ~ 64 +max_finalizations_per_tick = 8 + +[mimics] + #[mimics] Enable mimic compatibility for the Artifacts mod + enable_artifacts_mimic_compat = true + #[mimics] When to roll for mimic: 'finalization' or 'first_interact' + mimic_roll_timing = "finalization" + #[mimics] Container block IDs excluded from mimic (e.g. minecraft:barrel) + exclude_container_types = ["minecraft:barrel"] + #[mimics] Respect Artifacts mod's mimic config when available + respect_artifacts_config = true + #[mimics] Max mimic evaluations per tick (when using first_interact) + #Range: 1 ~ 64 + max_mimic_checks_per_tick = 8 + diff --git a/config/lucent-client.toml b/config/lucent-client.toml new file mode 100644 index 0000000..9aa350d --- /dev/null +++ b/config/lucent-client.toml @@ -0,0 +1,154 @@ + +[dynamic_lighting_settings] + # + # If enabled, vanilla mobs and items will recieve dynamic lighting. If disabled, only objects specified by external mods or configs will recieve dynamic lighting. + # Default: true + vanillaDynamicLighting = true + # + # If enabled, torches and other vanilla fire-based items will not emit light underwater. + # Default: false + torchesDoNothingInWater = false + # + # A multiplier applied to an entity's light level when in the deep dark. + # Default: 0.5 + #Range: 0.0 ~ 1.0 + deepDarkScaling = 0.5 + # + # The maximum amount of times light tries to refresh in a second. Higher values attempt to refresh more often. This number can be decreased if you experience poor performance. + # Default: 40 + #Range: 1 ~ 240 + lightRefreshRate = 60 + # + # Determines how far away you should be able to see light from an entity (measured in blocks). 0 for infinite distance. Use this to prevent far away entities from causing light updates. + # Default: 128 + #Range: 0 ~ 1024 + maxVisibleDistance = 128 + # + # Determines if dynamic lighting should still occur when an entity is behind a wall. Turning this on may impact performance, but allows light to be seen around corners from far away. Entities within 24 blocks will always emit light. + # Default: false + seeThroughWalls = false + # + # Determines if dynamic lighting smoothly blends as you move. Works best with a high refresh rate. Will result in worse performance since lighting updates typically happen more often. + # Default: true + smoothBlending = false + # + # If enabled, chunks with dynamic lighting will always render off thread. Improves FPS, but may cause strange rendering glitches (Does nothing if Optifine is installed). + # Default: true + threadedRendering = true + + [dynamic_lighting_settings.entity_lighting] + # + # Sets the light level of entities. Allows for adding modded entities. Set the light to -1 to unregister it. + # Example: ["minecraft:blaze=9", "minecraft:creeper=5"] + # Default: [] + entityBrightnessOverrides = [] + + [dynamic_lighting_settings.entity_lighting.burning_entities] + # + # Determines if entities on fire emit light. + # Default: true + burningEntitiesGlow = true + # + # How bright a burning entity should be. + # Default: 10 + #Range: 0 ~ 15 + burningEntityLightLevel = 10 + + [dynamic_lighting_settings.entity_lighting.glowing_entities] + # + # Determines if entities affected with the glowing effect emit light. + # Default: true + glowingEntitiesGlow = true + # + # How bright an entity with the glowing effect be. + # Default: 5 + #Range: 0 ~ 15 + glowingEntityLightLevel = 5 + + [dynamic_lighting_settings.entity_lighting.entity_settings] + # + # Determines if if creepers emit light before they explode. + # Default: true + creepersGlow = true + + [dynamic_lighting_settings.item_lighting] + # + # Modifies the light level of items. Allows for adding modded items. Set the light to -1 to unregister it. + # Example: ["minecraft:torch=14", "minecraft:diamond=10"] + # Default: [] + itemBrightnessOverrides = [] + # + # Determines if items in the world emit light. + # Default: true + itemEntitiesGlow = true + # + # Determines if held or worn items emit light. + # Default: true + heldItemsGlow = true + # + # Determines if item frames with glowing items emit light. + # Default: true + itemFramesGlow = true + +[block_emission_settings] + # + # Determines if block textures can be lit brighter than usual. + # Default: true + blockTexturesGlow = true + # + # Modifies the light level of block textures. Set the light to -1 to unregister it. + # Example: ["minecraft:block/end_portal_frame_eye=12", "minecraft:block/stone=4"] + # Default: [] + blockTextureBrightnessOverrides = [] + +[armor_trim_emission_settings] + # + # Determines if armor trim materials can be lit brighter than usual. + # Default: true + armorTrimsGlow = true + # + # Modifies the light level of armor trim textures based on trim material. Set the light to -1 to unregister it. + # Example: ["minecraft:diamond=10", "minecraft:gold=7"] + # Default: [] + armorTrimBrightnessOverrides = [] + +[debug_settings] + # + # Logs info about registry data. + # Default: false + logRegistry = false + # + # Logs the average time 100 dynamic lighting calculations took, and provides a fastest refresh time for your machine based on these numbers. + # Default: false + logLightCalculationTime = false + # + # Logs when a mod or resource pack is using a deprecated folder structure. + # Default: true + logDeprecatedFolderStructure = true + # + # Logs when dynamic lighting encounters an issue. + # Default: false + logDynamicLightingErrors = false + + [debug_settings.flags] + # + # Disables emissive block textures if an incompatible mod is discovered. + # Default: true + disableBlockTextureGlowIfError = true + # + # Warns when Flywheel is installed since you may see weird dynamic lighting on some blocks from Create. + # Default: true + warnAboutFlywheel = false + # + # Warns when Sodium (or a variation) is installed since dynamic lighting may not work. + # Default: true + warnAboutSodium = true + +[mod_compat] + + [mod_compat.enabled_builtin_plugins] + # + # Enables the plugin for Tinkers' Construct. + # Default: true + tconstruct = true + diff --git a/config/magnumtorch-server.toml b/config/magnumtorch-server.toml new file mode 100644 index 0000000..dce5461 --- /dev/null +++ b/config/magnumtorch-server.toml @@ -0,0 +1,145 @@ + +[diamond_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "ELLIPSOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 32 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL", "PATROL", "STRUCTURE", "JOCKEY"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["MONSTER"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 64 + +[emerald_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "CUBOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 64 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL", "EVENT"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["CREATURE"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 128 + +[amethyst_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "ELLIPSOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 32 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["AMBIENT", "AXOLOTLS", "WATER_AMBIENT", "WATER_CREATURE", "UNDERGROUND_WATER_CREATURE"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 64 + diff --git a/config/mahoutsukai-client.toml b/config/mahoutsukai-client.toml new file mode 100644 index 0000000..dced452 --- /dev/null +++ b/config/mahoutsukai-client.toml @@ -0,0 +1,70 @@ + +[Client] + #Multiplier for Caliburn ring speed + #Range: 0.0 ~ 1.0E8 + POWER_CONSOLIDATION_CALIBURN_RING_SPEED = 1.0 + #Whether to show the circles in the sky + HEAVENS_CUP_CLIENT_CIRCLE = true + #How far away Leylines can be seen + #Range: 0 ~ 100000000 + LEY_RENDER_DISTANCE = 100 + #Toggle for Fae Sounds + FAE_NOISE = true + #X value of Mahou value on screen + #Range: 0 ~ 100000000 + CLIENT_GUI_MAHOU_PLACEMENT_X = 10 + #Y value of Mahou value on screen + #Range: 0 ~ 100000000 + CLIENT_GUI_MAHOU_PLACEMENT_Y = 20 + #Ring speed for the Mystic Code + #Range: 0.0 ~ 1.0E8 + MYSTIC_CODE_RING_SPEED = 1.0 + #Spinning speed for boundaries + #Range: 0.0 ~ 1.0E8 + BOUNDARY_SPEED = 2.0 + #Toggle bleeding potion effect display + SHOW_BLEEDING = true + #Mystic Staff Beam Volume Factor + #Range: 0.0 ~ 10.0 + MYSTIC_STAFF_BEAM_VOLUME_FACTOR = 0.1 + #Added X value to left tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_LEFT_X = 0 + #Added Y value to left tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_LEFT_Y = 0 + #Added X value to right tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_RIGHT_X = 0 + #Added Y value to right tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_RIGHT_Y = 0 + #Added X value to bottom tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_BOTTOM_X = 0 + #Added Y value to bottom tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_BOTTOM_Y = 0 + #Quality of links of the chain, reducing can improve FPS + #Range: 3 ~ 10000 + CHAIN_QUALITY = 11 + #How loud the chains are + #Range: 0.0 ~ 10.0 + CHAIN_VOLUME = 0.01 + #Volume control for Caliburn's Smite attack + #Range: 0.0 ~ 10.0 + SMITE_VOLUME = 1.0 + #Show ability cooldown as a potion effect + SHOW_MORGAN_CALIBURN_COOLDOWN = false + #No Shaders + NO_SHADERS = false + #Old Circle Render + OLD_CIRCLE_RENDER = false + #Old Circle Animation + OLD_CIRCLE_ANIM = false + #Show Selected Entity + SHOW_SELECTED_ENTITY = true + #Selective Displacement Hold Time + #Range: 0 ~ 100000 + SELECTIVE_DISPLACEMENT_HOLD_TIME = 5 + diff --git a/config/majruszlibrary.json b/config/majruszlibrary.json new file mode 100644 index 0000000..f5edf74 --- /dev/null +++ b/config/majruszlibrary.json @@ -0,0 +1,4 @@ +{ + "debug_logs_enabled": false, + "send_new_available_updates_message": true +} \ No newline at end of file diff --git a/config/majruszsaccessories.json b/config/majruszsaccessories.json new file mode 100644 index 0000000..0f7700e --- /dev/null +++ b/config/majruszsaccessories.json @@ -0,0 +1,584 @@ +{ + "accessories": { + "adventurer_kit": { + "chest_size_bonus": { + "multiplier": 1.2, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "any_chest_spawn_chance": 0.025 + }, + "adventurer_rune": { + "chest_size_bonus": { + "multiplier": 1.5, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "extra_archaeology_item": { + "chance": 0.2, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "swim_speed": { + "multiplier": 0.25, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + } + }, + "ancient_scarab": { + "extra_archaeology_item": { + "chance": 0.16, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "suspicious_block_spawn_chance": 0.125, + "suspicious_block_ids": [ + "minecraft:archaeology/desert_well", + "minecraft:archaeology/desert_pyramid", + "minecraft:archaeology/trail_ruins_common", + "minecraft:archaeology/trail_ruins_rare", + "minecraft:archaeology/ocean_ruin_warm", + "minecraft:archaeology/ocean_ruin_cold", + "{regex}.*archaeology.*" + ] + }, + "angler_rune": { + "fishing_luck": { + "bonus": 3.0, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_time": { + "multiplier": 0.25, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "extra_fishing_treasure": { + "chance": 0.06, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "angler_trophy": { + "fishing_luck": { + "bonus": 2.5, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_drop_chance": 0.01 + }, + "certificate_of_taming": { + "animal_bonus": { + "bonus": 0.2, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "taming_drop_chance": 0.1 + }, + "discount_voucher": { + "trading_discount": { + "multiplier": 0.12, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "trading_drop_chance": 0.01 + }, + "dream_catcher": { + "sleep_bonuses": { + "count": 1.0, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 300, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "sleeping_drop_chance": 0.1 + }, + "household_rune": { + "trading_discount": { + "multiplier": 0.15, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "sleep_bonuses": { + "count": 1.2, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 360, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "stronger_potion": { + "duration_penalty": 0.5, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.2, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + } + }, + "idol_of_fertility": { + "breeding_twins": { + "chance": 0.25, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_drop_chance": 0.01 + }, + "lucky_rock": { + "extra_mining_item": { + "chance": 0.03, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_drop_chance": 7.5E-4 + }, + "metal_lure": { + "extra_fishing_treasure": { + "chance": 0.05, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "fish_drop_chance": 0.015, + "fish_ids": [ + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish" + ] + }, + "miner_guide": { + "mining_speed_bonus": { + "multiplier": 0.1, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "underground_chest_spawn_chance": 0.05 + }, + "miner_rune": { + "extra_mining_item": { + "chance": 0.04, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_speed_bonus": { + "multiplier": 0.12, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "mining_free_durability_use": { + "chance": 0.12, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "nature_rune": { + "animal_bonus": { + "bonus": 0.25, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_twins": { + "chance": 0.3, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "double_crops": { + "chance": 0.3, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "secret_ingredient": { + "stronger_potion": { + "duration_penalty": 0.6, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.0, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + }, + "brewing_drop_chance": 0.02 + }, + "soul_of_minecraft": { + "chest_size_bonus": { + "multiplier": 1.8, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "extra_archaeology_item": { + "chance": 0.24, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "swim_speed": { + "multiplier": 0.3, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_luck": { + "bonus": 3.5, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_time": { + "multiplier": 0.3, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "extra_fishing_treasure": { + "chance": 0.07, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "trading_discount": { + "multiplier": 0.18, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "sleep_bonuses": { + "count": 1.5, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 420, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "stronger_potion": { + "duration_penalty": 0.4, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.4, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + }, + "extra_mining_item": { + "chance": 0.05, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_speed_bonus": { + "multiplier": 0.15, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "mining_free_durability_use": { + "chance": 0.15, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "animal_bonus": { + "bonus": 0.3, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_twins": { + "chance": 0.36, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "double_crops": { + "chance": 0.36, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "swimmer_guide": { + "swim_speed": { + "multiplier": 0.2, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "underwater_chest_spawn_chance": 0.05, + "buried_treasure_spawn_chance": 0.25 + }, + "tamed_potato_beetle": { + "double_crops": { + "chance": 0.25, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "harvesting_drop": { + "harvesting_chance": 0.0025, + "potato_multiplier": 2.0 + } + }, + "tool_scraps": { + "mining_free_durability_use": { + "chance": 0.1, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "durability_drop_chance_multiplier": 3.0E-4 + }, + "unbreakable_fishing_line": { + "fishing_time": { + "multiplier": 0.2, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "fishing_drop_chance": 0.005, + "fish_drop_chance": 0.005, + "fish_ids": [ + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish" + ] + } + }, + "boosters": { + "dice": { + "accessory_drop_chance_multiplier": 0.2, + "guardian_drop_chance": 0.05 + }, + "golden_dice": { + "accessory_drop_chance_multiplier": 0.3 + }, + "golden_horseshoe": { + "luck_bonus": 1.5 + }, + "horseshoe": { + "luck_bonus": 1.0, + "skeleton_horseman_drop_chance": 0.334 + }, + "onyx": { + "efficiency_bonus": 0.09, + "warden_drop_chance": 1.0 + }, + "owl_feather": { + "experience_bonus": 0.15, + "vex_drop_chance": 0.1 + }, + "loot_table": "majruszsaccessories:gameplay/nether_accessories", + "nether_chest_chance": 0.1, + "nether_mob_chance": 0.005 + }, + "efficiency": { + "range": { + "min": -0.6, + "max": 0.6 + }, + "average": 0.0, + "standard_deviation": 0.2 + } +} \ No newline at end of file diff --git a/config/majruszsdifficulty.json b/config/majruszsdifficulty.json new file mode 100644 index 0000000..2c19ccf --- /dev/null +++ b/config/majruszsdifficulty.json @@ -0,0 +1,851 @@ +{ + "game_stages": { + "is_per_player_difficulty_enabled": false, + "list": [ + { + "id": "normal", + "format": [ + "WHITE" + ], + "triggers": { + "dimensions": [], + "entities": [] + }, + "messages": [] + }, + { + "id": "expert", + "format": [ + "RED", + "BOLD" + ], + "triggers": { + "dimensions": [ + "{regex}.*" + ], + "entities": [] + }, + "messages": [ + { + "id": "majruszsdifficulty.stages.expert.started", + "format": [ + "RED", + "BOLD" + ] + }, + { + "id": "majruszsdifficulty.undead_army.on_expert", + "format": [ + "DARK_PURPLE" + ] + } + ] + }, + { + "id": "master", + "format": [ + "DARK_PURPLE", + "BOLD" + ], + "triggers": { + "dimensions": [], + "entities": [ + "minecraft:ender_dragon" + ] + }, + "messages": [ + { + "id": "majruszsdifficulty.stages.master.started", + "format": [ + "DARK_PURPLE", + "BOLD" + ] + }, + { + "id": "majruszsdifficulty.undead_army.on_master", + "format": [ + "DARK_PURPLE" + ] + } + ] + } + ], + "crd_penalty": { + "__default": 0.0, + "expert": 0.15, + "master": 0.3 + } + }, + "features": { + "block_illusioner_from_joining_raids": { + "is_enabled": true, + "required_game_stage": "normal" + }, + "creeper_chain_reaction": { + "is_enabled": true, + "required_game_stage": "expert" + }, + "creeper_explode_behind_wall": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false + }, + "creeper_explosion_immunity": { + "is_enabled": true, + "required_game_stage": "expert", + "damage_multiplier": 0.2 + }, + "creeper_spawn_charged": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 0.125, + "is_scaled_by_crd": true + }, + "creeper_spawn_debuffed": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 0.375, + "is_scaled_by_crd": true, + "effects": [ + { + "id": "minecraft:weakness", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:slowness", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:mining_fatigue", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0, + "duration": 60.0 + } + ] + }, + "creeper_split_into_creeperlings": { + "is_enabled": true, + "count": { + "__default": 2, + "expert": 4, + "master": 6 + }, + "chance": 0.666, + "is_scaled_by_crd": true + }, + "deadlier_explosions": { + "is_enabled": true, + "required_game_stage": "normal", + "radius_multiplier": 1.2599, + "fire_chance": 0.75, + "is_scaled_by_crd": true + }, + "double_loot": { + "is_enabled": true, + "chance": { + "__default": 0.0, + "expert": 0.05, + "master": 0.1 + }, + "blacklisted_items": [ + "minecraft:nether_star", + "minecraft:totem_of_undying" + ] + }, + "drowned_lightning_bolt": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false + }, + "enderman_teleport_attack": { + "is_enabled": true, + "required_game_stage": "master", + "chance": 0.5, + "is_scaled_by_crd": true + }, + "evoker_with_totem": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 1.0, + "is_scaled_by_crd": true + }, + "experience_bonus": { + "is_enabled": true, + "extra_multiplier": { + "__default": 0.0, + "expert": 0.2, + "master": 0.4 + } + }, + "jockey_spawn": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 0.125, + "is_scaled_by_crd": false + }, + "mob_groups": { + "piglins": { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:piglin", + "equipment": "majruszsdifficulty:mob_groups/piglin_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:piglin", + "equipment": "majruszsdifficulty:mob_groups/piglin_sidekick" + } + ] + }, + "skeletons": { + "required_game_stage": "normal", + "chance": 0.1, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:mob_groups/skeleton_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:mob_groups/skeleton_sidekick" + } + ] + }, + "undead": { + "required_game_stage": "normal", + "chance": 0.1, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton" + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton" + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob" + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob" + } + ], + "sidekicks_count": { + "min": 2, + "max": 4 + }, + "sidekick_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + } + ] + }, + "zombie_miners": { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:mob_groups/zombie_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:mob_groups/zombie_sidekick" + } + ] + } + }, + "mobs_apply_effects": [ + { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "entity_type": "minecraft:spider", + "effect": { + "id": "minecraft:poison", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "expert", + "chance": 0.5, + "is_scaled_by_crd": true, + "entity_type": "minecraft:slime", + "effect": { + "id": "minecraft:slowness", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "master", + "chance": 0.5, + "is_scaled_by_crd": true, + "entity_type": "minecraft:shulker", + "effect": { + "id": "minecraft:blindness", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "master", + "chance": 0.75, + "is_scaled_by_crd": true, + "entity_type": "minecraft:phantom", + "effect": { + "id": "minecraft:levitation", + "amplifier": 0, + "duration": 7.0 + } + } + ], + "mobs_spawn_stronger": { + "is_enabled": true, + "health_bonus": { + "__default": 0.0, + "expert": 0.15, + "master": 0.3 + }, + "damage_bonus": { + "__default": 0.0, + "expert": 0.1, + "master": 0.2 + }, + "excluded_mobs": [] + }, + "pillager_with_fireworks": { + "is_enabled": true, + "required_game_stage": "master", + "chance": 0.15, + "is_scaled_by_crd": true, + "crossbow_multishot_chance": 0.25, + "firework_drop_chance": 0.25, + "firework_count": 8 + }, + "spawn_blocker": { + "forbidden_entities": { + "__default": [ + "majruszsdifficulty:illusioner", + "majruszsdifficulty:tank", + "majruszsdifficulty:cerberus" + ], + "expert": [ + "majruszsdifficulty:cerberus" + ], + "master": [] + } + }, + "spawn_killer_bunny": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 0.1, + "is_scaled_by_crd": true + }, + "spawn_player_zombie": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false, + "head_chance": 1.0, + "head_drop_chance": 0.1 + }, + "spawn_rate_increaser": { + "is_enabled": true, + "multiplier": { + "__default": 1.0, + "expert": 1.1, + "master": 1.2 + } + } + }, + "blood_moon": { + "is_enabled": false, + "night_trigger_chance": 0.0666, + "spawn_rate_multiplier": 2.0, + "crd_penalty": 0.5 + }, + "undead_army": { + "is_enabled": true, + "reset_all_participants_kills": true, + "wave_duration": 1200.0, + "preparing_duration": 10.0, + "highlight_delay": 300.0, + "extra_size_ratio_per_player": 0.5, + "area_radius": 70, + "kill_requirement": 100, + "kill_requirement_first": 25, + "kill_requirement_warning": 3, + "waves": [ + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + } + ], + "game_stage": "normal", + "exp": 8 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 3 + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 3 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 2 + } + ], + "game_stage": "normal", + "exp": 16 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob", + "count": 3 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton", + "count": 3 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob", + "count": 3 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton", + "count": 3 + } + ], + "boss": { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + "game_stage": "normal", + "exp": 24 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 2 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_skeleton", + "count": 2 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_4_skeleton", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + } + ], + "game_stage": "expert", + "exp": 32 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_skeleton", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_5_skeleton", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 2 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 2 + } + ], + "boss": { + "type": "majruszsdifficulty:cerberus", + "count": 1 + }, + "game_stage": "expert", + "exp": 40 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_6_skeleton", + "count": 1 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_6_skeleton", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_6_wither_skeleton", + "count": 1 + }, + { + "type": "majruszsdifficulty:cerberus", + "count": 1 + } + ], + "boss": { + "type": "majruszsdifficulty:giant", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + "game_stage": "master", + "exp": 48 + } + ] + }, + "mobs": { + "cursed_armor": { + "item_drop_chance": 0.2, + "custom_name_chance": 0.025, + "custom_names": [ + "Freshah" + ], + "locations": [ + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_dungeon", + "chests": [ + "minecraft:chests/simple_dungeon" + ], + "chance": 0.5 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_stronghold", + "chests": [ + "minecraft:chests/stronghold_corridor", + "minecraft:chests/stronghold_crossing", + "minecraft:chests/stronghold_library" + ], + "chance": 0.4 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_portal", + "chests": [ + "minecraft:chests/ruined_portal" + ], + "chance": 1.0 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_nether", + "chests": [ + "minecraft:chests/bastion_bridge", + "minecraft:chests/bastion_hoglin_stable", + "minecraft:chests/bastion_other", + "minecraft:chests/bastion_treasure", + "minecraft:chests/nether_bridge" + ], + "chance": 0.25 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_end", + "chests": [ + "minecraft:chests/end_city_treasure" + ], + "chance": 0.5 + } + ] + } + }, + "items": { + "bandage": { + "normal_effects": [ + { + "id": "majruszsdifficulty:glass_regeneration", + "amplifier": 0, + "duration": 20.0 + } + ], + "golden_effects": [ + { + "id": "majruszsdifficulty:glass_regeneration", + "amplifier": 1, + "duration": 20.0 + }, + { + "id": "majruszsdifficulty:bleeding_immunity", + "amplifier": 0, + "duration": 90.0 + } + ] + }, + "evoker_fang_scroll": { + "attack_damage": 12, + "attack_range": { + "min": 8, + "max": 20 + } + }, + "sonic_boom_scroll": { + "attack_damage": 14, + "attack_range": { + "min": 12, + "max": 30 + } + }, + "wither_sword": { + "effect": { + "id": "minecraft:wither", + "amplifier": 1, + "duration": 6.0 + } + } + }, + "bleeding": { + "chance_multiplier_base": 0.09, + "chance_multiplier_per_armor": 0.03, + "chance_multiplier_per_armor_toughness": 0.03, + "is_enabled": true, + "can_be_cured_with_golden_apples": true, + "is_applicable_to_animals": true, + "is_applicable_to_pillagers": true, + "other_applicable_mobs": [ + "minecraft:player", + "minecraft:villager" + ], + "immune_mobs": [ + "minecraft:zombie_horse", + "minecraft:skeleton_horse" + ], + "effect": { + "__default": { + "amplifier": 0, + "duration": 24.0 + }, + "expert": { + "amplifier": 1, + "duration": 24.0 + }, + "master": { + "amplifier": 2, + "duration": 24.0 + } + }, + "sources": { + "arrows": { + "is_enabled": true, + "chance": 0.333 + }, + "bite": { + "is_enabled": true, + "chance": 0.5, + "blacklisted_animals": [ + "minecraft:llama" + ] + }, + "cactus": { + "is_enabled": true, + "chance": 0.5 + }, + "tools": { + "is_enabled": true, + "list": [ + { + "id": "minecraft:trident", + "chance": 0.3, + "enchantments": [ + { + "id": "minecraft:impaling", + "extra_chance_per_level": 0.04 + } + ] + }, + { + "id": "{regex}.*_sword", + "chance": 0.3, + "enchantments": [ + { + "id": "minecraft:sharpness", + "extra_chance_per_level": 0.04 + }, + { + "id": "{regex}(minecraft:smite)|(minecraft:bane_of_arthropods)|(majruszsenchantments:misanthropy)", + "extra_chance_per_level": 0.02 + } + ] + }, + { + "id": "{regex}.*_axe", + "chance": 0.26, + "enchantments": [ + { + "id": "minecraft:sharpness", + "extra_chance_per_level": 0.04 + }, + { + "id": "{regex}(minecraft:smite)|(minecraft:bane_of_arthropods)|(majruszsenchantments:misanthropy)", + "extra_chance_per_level": 0.02 + } + ] + }, + { + "id": "{regex}(.*_pickaxe)|minecraft:shears", + "chance": 0.22, + "enchantments": [] + }, + { + "id": "{regex}.*_shovel", + "chance": 0.18, + "enchantments": [] + }, + { + "id": "{regex}.*_hoe", + "chance": 0.14, + "enchantments": [] + } + ] + } + } + } +} \ No newline at end of file diff --git a/config/majruszsenchantments.json b/config/majruszsenchantments.json new file mode 100644 index 0000000..48acbf0 --- /dev/null +++ b/config/majruszsenchantments.json @@ -0,0 +1,142 @@ +{ + "is_shield_enchantable": true, + "is_horse_armor_enchantable": true, + "enchantments": { + "death_wish": { + "is_enabled": true, + "damage_multiplier_range": { + "min": 1.0, + "max": 2.0 + }, + "vulnerability_multiplier_range": { + "min": 0.7, + "max": 1.2 + } + }, + "dodge": { + "is_enabled": true, + "dodge_chance_per_level": 0.125 + }, + "enlightenment": { + "is_enabled": true, + "experience_multiplier_per_level": 0.125 + }, + "fishing_fanatic": { + "is_enabled": true, + "extra_loot_chance": 0.33333, + "level_up_chance": { + "__default": 0.06, + "level_2": 0.05, + "level_3": 0.04, + "level_4": 0.03, + "level_5": 0.02, + "level_6": 0.01, + "level_7": 0.004, + "level_8": 0.002 + }, + "level_up_chance_rain_multiplier": 2.0, + "special_drop_chance": { + "__default": 0.0, + "level_4": 0.0025, + "level_5": 0.0075, + "level_6": 0.02, + "level_7": 0.04, + "level_8": 0.06 + }, + "special_drop_id": "majruszsenchantments:gameplay/fishing/fishing_fanatic_extra", + "damage_bonus_per_level": 1.0, + "attack_speed_multiplier_per_level": 0.82 + }, + "fuse_cutter": { + "is_enabled": true, + "max_distance": 6.0, + "shield_cooldown_ratio": 1.5 + }, + "gold_fuelled": { + "is_enabled": true + }, + "harvester": { + "is_enabled": true + }, + "horse_frost_walker": { + "is_enabled": true + }, + "horse_protection": { + "is_enabled": true, + "armor_bonus_per_level": 2.0 + }, + "horse_swiftness": { + "is_enabled": true, + "speed_multiplier_per_level": 0.125 + }, + "hunter": { + "is_enabled": true, + "penalty_multiplier_per_level": -0.1, + "distance_multiplier_per_level": 0.01 + }, + "immortality": { + "is_enabled": true + }, + "leech": { + "is_enabled": true, + "health_chance": 0.1, + "hunger_chance": 0.1, + "effect_chance": 0.1 + }, + "magic_protection": { + "is_enabled": true + }, + "misanthropy": { + "is_enabled": true, + "damage_bonus_per_level": 2.5 + }, + "repulsion": { + "is_enabled": true, + "knockback_strength": 1.0 + }, + "sixth_sense": { + "is_enabled": true, + "glow_duration": 2.0, + "chest_ids": [ + "minecraft:chests/ancient_city", + "minecraft:chests/ancient_city_ice_box" + ], + "loot_id": "majruszsenchantments:chests/ancient_city_sixth_sense" + }, + "smelter": { + "is_enabled": true + }, + "telekinesis": { + "is_enabled": true + } + }, + "curses": { + "breaking_curse": { + "is_enabled": true, + "damage_multiplier_per_level": 1.0 + }, + "corrosion_curse": { + "is_enabled": true, + "damage_dealt_per_level": 0.25, + "damage_cooldown": 3.0 + }, + "fatigue_curse": { + "is_enabled": true, + "speed_multiplier_per_level": { + "mining": 0.8, + "attacking": 0.8, + "moving": 0.95, + "item_using": 0.8, + "item_swinging": 0.8 + } + }, + "incompatibility_curse": { + "is_enabled": true + }, + "slippery_curse": { + "is_enabled": true, + "drop_chance": 0.03, + "drop_cooldown": 1.0 + } + } +} \ No newline at end of file diff --git a/config/malum-client.toml b/config/malum-client.toml new file mode 100644 index 0000000..0fbe66a --- /dev/null +++ b/config/malum-client.toml @@ -0,0 +1,8 @@ + +[codex] + #What theme should the encyclopedia arcana be in? + #Allowed Values: DEFAULT, EASY_READING + bookTheme = "DEFAULT" + #Should the scroll direction be reversed in the encyclopedia arcana entry screen? This simply affects how you move through pages in an entry. + scrollDirection = false + diff --git a/config/malum-common.toml b/config/malum-common.toml new file mode 100644 index 0000000..19ed52f --- /dev/null +++ b/config/malum-common.toml @@ -0,0 +1,39 @@ + +[spirit] + #If set to true, any spirits dropped will simply take the form of an item. + noFancySpirits = false + #If set to true, any spirits dropped through non-entity-means will simply take the form of an item. + noFancySpiritsTotem = true + + [spirit.affinity] + + [spirit.affinity.soul_ward] + #Multiplier for physical damage taken while soul ward is active. + #Range: 0.0 ~ 1.0 + soulWardPhysical = 0.699999988079071 + #Multiplier for magic damage taken while soul ward is active. + #Range: 0.0 ~ 1.0 + soulWardMagic = 0.10000000149011612 + #Base time in ticks it takes for one point of soul ward to recover. + soulWardRate = 100 + + [spirit.spawner] + #If set to true, mob spawners will create soulless mobs instead. + lameSpawners = false + + [spirit.defaults] + #Whether entities without spirit jsons will use the default spirit data for their category. + defaultSpiritValues = true + +[compat] + + [compat.irons_spellbooks] + #Should Iron's Spellbooks' magic damage count as Soul Damage? + ironsSpellbooksPlayerSpiritDrops = true + #Should Iron's Spellbooks' magic damage when dealt by non-players count as Soul Damage + ironsSpellbooksNonPlayerSpiritDrops = true + +[codex] + #If set to true, the first undead enemy a player slays will drop the encyclopedia arcana. + enableCodexDrop = true + diff --git a/config/mantle-client.toml b/config/mantle-client.toml new file mode 100644 index 0000000..ba29ec0 --- /dev/null +++ b/config/mantle-client.toml @@ -0,0 +1,11 @@ +#If not DISABLE, enables the Mantle heart renderer, which stacks hearts by changing the color instead of vertically stacking them. +#WITH_MAX will show the max health in colored containers behind the health bar. NO_MAX will show just the health bar +#If DISABLE, uses the Forge heart renderer. +#Mod authors: this config is not meant for compatibility with your heart renderer, cancel the RenderGameOverlayEvent.Pre event and our logic won't run +#Allowed Values: DISABLE, NO_MAX, WITH_MAX +heartRenderer = "WITH_MAX" +#If true, fluids properly have their lighting adjusted under vanilla fog effects such as blindness. If false, they render as nearly fullbright ignoring fog. +#This config option is provided as the fix breaks shaders, and slightly broken is better than fully broken. +#Best fix is to fix your shaders though, so you can have no broken visuals. +enableFluidFogFix = true + diff --git a/config/matc-client.toml b/config/matc-client.toml new file mode 100644 index 0000000..07c87ec --- /dev/null +++ b/config/matc-client.toml @@ -0,0 +1,11 @@ + +#Whether or not crystals should display 'Uses Left' tooltips +["Uses Left Tooltips"] + #Should crystals display 'Uses Left' on their tooltips? + usesTooltip = true + +#Whether or not crystals should display their upgrade tooltips +["Upgrade Tooltips"] + #Should crystals display upgrade tooltips? + upgradeTooltip = true + diff --git a/config/mcjtylib-client.toml b/config/mcjtylib-client.toml new file mode 100644 index 0000000..1ff0ea1 --- /dev/null +++ b/config/mcjtylib-client.toml @@ -0,0 +1,144 @@ + +#Style settings for all mods using mcjtylib +[style] + #Color: slider top left border + colorSliderTopLeft = "2b2b2b" + #Color: slider bottom right border + colorSliderBottomRight = "ffffff" + #Color: slider background + colorSliderFiller = "636363" + #Color: slider knob top left border + colorSliderKnobTopLeft = "eeeeee" + #Color: slider knob bottom right border + colorSliderKnobBottomRight = "333333" + #Color: slider knob background + colorSliderKnobFiller = "8b8b8b" + #Color: slider knob top left border while dragging + colorSliderKnobDraggingTopLeft = "5c669d" + #Color: slider knob bottom right border while dragging + colorSliderKnobDraggingBottomRight = "bcc5ff" + #Color: slider knob background while dragging + colorSliderKnobDraggingFiller = "7f89bf" + #Color: slider knob top left border while hovering + colorSliderKnobHoveringTopLeft = "a5aac5" + #Color: slider knob bottom right border while hovering + colorSliderKnobHoveringBottomRight = "777c99" + #Color: slider knob background while hovering + colorSliderKnobHoveringFiller = "858aa5" + #Color: slider knob little marker lines + colorSliderKnobMarkerLine = "4e4e4e" + #Color: text normal + colorTextNormal = "303030" + #Color: text as used in lists + colorTextInListNormal = "151515" + #Color: text disabled + colorTextDisabled = "a0a0a0" + #Color: textfield top left border + colorTextFieldTopLeft = "2b2b2b" + #Color: textfield bottom right border + colorTextFieldBottomRight = "ffffff" + #Color: textfield background + colorTextFieldFiller = "c6c6c6" + #Color: textfield backbground while focused + colorTextFieldFocusedFiller = "eeeeee" + #Color: textfield backbground while hovering + colorTextFieldHoveringFiller = "dadada" + #Color: textfield cursor + colorTextFieldCursor = "0" + #Color: energy bar top left border + colorEnergyBarTopLeft = "2b2b2b" + #Color: energy bar bottom right border + colorEnergyBarBottomRight = "ffffff" + #Color: energy bar high energy level + colorEnergyBarHighEnergy = "dd0000" + #Color: energy bar low energy level + colorEnergyBarLowEnergy = "631111" + #Color: energy bar spacer (between every energy level bar) + colorEnergyBarSpacer = "430000" + #Color: energy bar text + colorEnergyBarText = "ffffff" + #Color: list background + colorListBackground = "8b8b8b" + #Color: list separator line + colorListSeparatorLine = "5c5c5c" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient1 = "bbbb00" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient2 = "999900" + #Color: list selected gradient + colorListSelectedGradient1 = "616161" + #Color: list selected gradient + colorListSelectedGradient2 = "414141" + #Color: list highlighted gradient + colorListHighlightedGradient1 = "717120" + #Color: list highlighted gradient + colorListHighlightedGradient2 = "515110" + #Color: standard bevel bright border color + colorBackgroundBevelBright = "ffffff" + #Color: standard bevel dark border color + colorBackgroundBevelDark = "2b2b2b" + #Color: standard background color + colorBackgroundFiller = "c6c6c6" + #Color: toggle button normal top left border + colorToggleNormalBorderTopLeft = "eeeeee" + #Color: toggle button normal bottom right border + colorToggleNormalBorderBottomRight = "777777" + #Color: toggle button normal background + colorToggleNormalFiller = "c6c6c6" + #Color: toggle button disabled top left border + colorToggleDisabledBorderTopLeft = "eeeeee" + #Color: toggle button disabled bottom right border + colorToggleDisabledBorderBottomRight = "777777" + #Color: toggle button disabled background + colorToggleDisabledFiller = "c6c6c6" + #Color: toggle button normal text + colorToggleTextNormal = "303030" + #Color: toggle button disabled text + colorToggleTextDisabled = "a0a0a0" + #Color: cycle button small triangle + colorCycleButtonTriangleNormal = "0" + #Color: cycle button disabled small triangle + colorCycleButtonTriangleDisabled = "888888" + #Color: external border around buttons and some other components + colorButtonExternalBorder = "0" + #Color: button top left border + colorButtonBorderTopLeft = "eeeeee" + #Color: button bottom right border + colorButtonBorderBottomRight = "777777" + #Color: button background + colorButtonFiller = "c6c6c6" + #Color: button background gradient + colorButtonFillerGradient1 = "b1b1b1" + #Color: button background gradient + colorButtonFillerGradient2 = "e1e1e1" + #Color: disabled button top left border + colorButtonDisabledBorderTopLeft = "eeeeee" + #Color: disabled button bottom right border + colorButtonDisabledBorderBottomRight = "777777" + #Color: disabled button background + colorButtonDisabledFiller = "c6c6c6" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient1 = "b1b1b1" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient2 = "e1e1e1" + #Color: selected button top left border + colorButtonSelectedBorderTopLeft = "5c669d" + #Color: selected button bottom right border + colorButtonSelectedBorderBottomRight = "bcc5ff" + #Color: selected button background + colorButtonSelectedFiller = "7f89bf" + #Color: selected button background gradient + colorButtonSelectedFillerGradient1 = "6a74aa" + #Color: selected button background gradient + colorButtonSelectedFillerGradient2 = "949ed4" + #Color: hovering button top left border + colorButtonHoveringBorderTopLeft = "a5aac5" + #Color: hovering button bottom right border + colorButtonHoveringBorderBottomRight = "999ebb" + #Color: hovering button background + colorButtonHoveringFiller = "a2a7c2" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient1 = "8d92ad" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient2 = "babfda" + diff --git a/config/meadow.toml b/config/meadow.toml new file mode 100644 index 0000000..470675b --- /dev/null +++ b/config/meadow.toml @@ -0,0 +1,9 @@ + +[Blocks] + + [Blocks.Banner] + #Set to false to disable the banner's effect. + giveEffect = true + #Set to false to hide the banner's tooltip. If giveEffect is false, showTooltip is automatically false. + showTooltip = true + diff --git a/config/measurements-client.toml b/config/measurements-client.toml new file mode 100644 index 0000000..9aaaf7b --- /dev/null +++ b/config/measurements-client.toml @@ -0,0 +1,19 @@ + +#Client settings +[client] + #Set line color. [Default: YELLOW] + #Allowed Values: RANDOM, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK + lineColor = "YELLOW" + #Set text color. [Default: YELLOW] + #Allowed Values: RANDOM, XYZRGB, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK + textColor = "YELLOW" + #Set text size [Default: 0.02] + #Range: 0.01 ~ 0.1 + textSize = 0.02 + #Set line width (thickness). [Default: 2] + #Range: 1.0 ~ 16.0 + lineWidth = 2.0 + #Set line width when further away (thickness). [Default: 2] + #Range: 1 ~ 16 + lineWidthMax = 2 + diff --git a/config/megacells.json b/config/megacells.json new file mode 100644 index 0000000..30f632e --- /dev/null +++ b/config/megacells.json @@ -0,0 +1,3 @@ +{ + "AllowSpentWaste": false +} \ No newline at end of file diff --git a/config/mekanism_turrets-common.toml b/config/mekanism_turrets-common.toml new file mode 100644 index 0000000..23a773c --- /dev/null +++ b/config/mekanism_turrets-common.toml @@ -0,0 +1,53 @@ + +["Mekanism Turrets Config"] + #Entities which will never be targeted by turrets + blacklistedEntities = ["minecraft:ender_dragon", "minecraft:iron_golem"] + #Cooldown of the Basic Laser Turret + #Range: > 0 + basicLaserTurretCooldown = 50 + #Damage of the Basic Laser Turret + #Range: 0.0 ~ 3.4028234663852886E38 + basicLaserTurretDamage = 1.0 + #Energy Capacity of the Basic Laser Turret + #Range: > 0 + basicLaserTurretEnergyCapacity = 10000 + #Range of the Basic Laser Turret + #Range: 0.0 ~ 1000.0 + basicLaserTurretRange = 15.0 + #Cooldown of the Advanced Laser Turret + #Range: > 0 + advancedLaserTurretCooldown = 40 + #Damage of the Advanced Laser Turret + #Range: 0.0 ~ 2.147483647E9 + advancedLaserTurretDamage = 2.0 + #Energy Capacity of the Advanced Laser Turret + #Range: > 0 + advancedLaserTurretEnergyCapacity = 40000 + #Range of the Advanced Laser Turret + #Range: 0.0 ~ 1000.0 + advancedLaserTurretRange = 25.0 + #Cooldown of the Elite Laser Turret + #Range: > 0 + eliteLaserTurretCooldown = 30 + #Damage of the Elite Laser Turret + #Range: 0.0 ~ 2.147483647E9 + eliteLaserTurretDamage = 3.0 + #Energy Capacity of the Elite Laser Turret + #Range: > 0 + eliteLaserTurretEnergyCapacity = 90000 + #Range of the Elite Laser Turret + #Range: 0.0 ~ 1000.0 + eliteLaserTurretRange = 35.0 + #Cooldown of the Ultimate Laser Turret + #Range: > 0 + ultimateLaserTurretCooldown = 35 + #Damage of the Ultimate Laser Turret + #Range: 0.0 ~ 2.147483647E9 + ultimateLaserTurretDamage = 4.0 + #Energy Capacity of the Ultimate Laser Turret + #Range: > 0 + ultimateLaserTurretEnergyCapacity = 160000 + #Range of the Ultimate Laser Turret + #Range: 0.0 ~ 1000.0 + ultimateLaserTurretRange = 45.0 + diff --git a/config/mekanismcovers.json b/config/mekanismcovers.json new file mode 100644 index 0000000..65eda40 --- /dev/null +++ b/config/mekanismcovers.json @@ -0,0 +1,4 @@ +{ + "disableAdvancedCoverRendering": false, + "enableShaderCompatibleRendering": true +} \ No newline at end of file diff --git a/config/merequester-common.toml b/config/merequester-common.toml new file mode 100644 index 0000000..0015dd2 --- /dev/null +++ b/config/merequester-common.toml @@ -0,0 +1,11 @@ + +[requester] + #The amount of requests a single ME Requester can hold. + #Range: 1 ~ 64 + requests = 5 + #The amount of energy (in AE) the ME Requester drains from the ME network when idle. + #Range: 0.0 ~ 1.7976931348623157E308 + idle_energy = 5.0 + #Whether the ME Requester requires an ME network channel to function. + require_channel = true + diff --git a/config/mffs-client.toml b/config/mffs-client.toml new file mode 100644 index 0000000..e7ce299 --- /dev/null +++ b/config/mffs-client.toml @@ -0,0 +1,5 @@ + +[general] + #Apply a fancy glitch effect on projector mode renders. Reload resources to apply change. + enableProjectorModeGlitch = true + diff --git a/config/mffs-common.toml b/config/mffs-common.toml new file mode 100644 index 0000000..184fafc --- /dev/null +++ b/config/mffs-common.toml @@ -0,0 +1,44 @@ + +[general] + #Turning this to false will make MFFS run without electricity or energy systems required. Great for vanilla! + enableElectricity = true + #Cache allows temporary data saving to decrease calculations required + useCache = true + #How many force field blocks can be generated per tick? Less reduces lag. + #Range: > 0 + maxFFGenPerTick = 1000000 + #Allow server operators to bypass Force Field biometry + allowOpBiometryOverride = true + #Should the interdiction matrix interact with creative players? + interactCreative = true + #Max custom mode field scale + #Range: > 0 + maxCustomModeScale = 200 + #Give players a copy of the MFFS guidebook when they first join a world + giveGuidebookOnFirstJoin = true + +[coercion_deriver] + #FE to convert into 1 Fortron + #Range: > 1 + feCostPerFortron = 400 + #FE to subtract when converting Fortron to FE + #Range: > 0 + fortronToFeLoss = 1 + #Base limit of fortron produced per tick (20 per second). Scales with speed modules and catalyst. + #Range: > 1 + fortronPerTick = 200 + #Production bonus per speed module. production = fortronPerTick + (fortronPerTick * speedModuleCount)... or x2 multiplicative + #Range: > 1 + fortronPerTickSpeedModule = 200 + +[balance] + #Fortron catalyst production multiplier + #Range: 0.0 ~ 10000.0 + catalystMultiplier = 2.0 + #The amount of ticks a single catalyst item lasts for + #Range: 1 ~ 10000 + catalystBurnTime = 200 + #Energy to consume when the Interdiction Matrix kills a player + #Range: > 0 + interdictionMatrixKillEnergy = 0 + diff --git a/config/midnight-client.toml b/config/midnight-client.toml new file mode 100644 index 0000000..705f33d --- /dev/null +++ b/config/midnight-client.toml @@ -0,0 +1,5 @@ +#Limits gamma/brightness in The Midnight by 50%. +limitBrightness = true +#Adds reverb to sounds in the Midnight. +enableReverb = true + diff --git a/config/midnightlib.json b/config/midnightlib.json new file mode 100644 index 0000000..830266a --- /dev/null +++ b/config/midnightlib.json @@ -0,0 +1,3 @@ +{ + "config_screen_list": "TRUE" +} \ No newline at end of file diff --git a/config/mighty_mail.server.toml b/config/mighty_mail.server.toml new file mode 100644 index 0000000..d3b2bc3 --- /dev/null +++ b/config/mighty_mail.server.toml @@ -0,0 +1,35 @@ +# If enabled, this will ban items with an inventory (like a Shulker Box) being sent through +# a Post Box. This prevents players from creating massive NBT on a single item, which can +# cause issues for your server/world save. +# Valid values: true, false +banSendingItemsWithInventories = true +# The maximum amount of items that can be queued for delivery for a mail box +# Valid range: 1 to 6 (inclusive) +mailboxInventoryRows = 1 +# The maximum amount of mailboxes a player is allowed to register/own. +# Valid range: 1 to 2147483647 (inclusive) +maxMailboxesPerPlayer = 16 +# Prevents items contained in this list from being sent through a Post Box. +# An example of how the list is defined: +# bannedItems = [ +# "minecraft:water_bucket", +# "minecraft:diamond", +# "mighty_mail:mailbox" +# ... +# ] +# ^ Note: This is just an example. Write your list below. +bannedItems = [] +# The maximum amount of items that can be queued for delivery for a mail box +# Valid range: 0 to 256 (inclusive) +mailQueueSize = 18 +# A list of dimensions you are allowed to place mailboxes. An empty list means that +# mailboxes can be placed in any dimension. +# An example of how the list is defined: +# allowedDimensions = [ +# "minecraft:overworld", +# "minecraft:the_nether", +# ... +# ] +# ^ Note: This is just an example. Write your list below. +allowedDimensions = [] + diff --git a/config/minecolonies-client.toml b/config/minecolonies-client.toml new file mode 100644 index 0000000..21347d0 --- /dev/null +++ b/config/minecolonies-client.toml @@ -0,0 +1,20 @@ + +#All configuration items related to the core gameplay +[gameplay] + #minecolonies.config.enablecitizenvoices.comment [Default: true] + enablecitizenvoices = true + #By default, when placing a schematic near other buildings, the already-placed buildings will show as if they were at level 5 and have a blue outline around them. You can disable that by setting this to false. [Default: true] + neighborbuildingrendering = true + #How close a building needs to be to another to be considered a neighbor, in blocks. -1 = intersecting, 0 = touching [Default: 4, min: -2, max: 16] + #Range: -2 ~ 16 + neighborbuildingrange = 4 + #How close (in blocks) you need to be to see work orders while wearing the Build Goggles. [Default: 50, min: 1, max: 250] + #Range: 1 ~ 250 + buildgogglerange = 50 + #When true, the colony borders shown when holding the build tool will be in the colony's team color. When false, the colony you're inside will be white and any other colony will be red. [Default: true] + colonyteamborders = true + #Should special holiday content be displayed? [Default: true] + holidayfeatures = true + #When true, dyed leather items will show a tooltip so that you know what color to use. [Default: true] + showdyetooltips = true + diff --git a/config/minecolonies-common.toml b/config/minecolonies-common.toml new file mode 100644 index 0000000..934f30e --- /dev/null +++ b/config/minecolonies-common.toml @@ -0,0 +1,11 @@ + +#All configuration items related to the core gameplay +[gameplay] + #Whether to generate supply ships and camps in loot chests. [Default: true] + generatesupplyloot = false + +#All configurations related to the request system +[requestsystem] + #Should the request system show debug information in the debug.log? Useful if malfunctioning. [Default: false] + enabledebuglogging = false + diff --git a/config/minecolonies_compatibility-common.toml b/config/minecolonies_compatibility-common.toml new file mode 100644 index 0000000..8985855 --- /dev/null +++ b/config/minecolonies_compatibility-common.toml @@ -0,0 +1,9 @@ + +[jobs] + + [jobs.ranger] + canUseCrossbow = true + + [jobs.knight] + canUseAxe = true + diff --git a/config/minecolonies_tweaks-client.toml b/config/minecolonies_tweaks-client.toml new file mode 100644 index 0000000..b49e698 --- /dev/null +++ b/config/minecolonies_tweaks-client.toml @@ -0,0 +1,13 @@ + +[gui] + #ESC key allows return to previous window. + #Applies at Hut/Citizen inventory and Recipe Teach window and Hire window. + escToReturn = true + #Add close button what can return previous window. + #Applies at Hut/Citizen inventory and Recipe Teach window. + addCloseButton = false + +[fields] + #Render selected seed item above field's head. + renderSeed = true + diff --git a/config/minecolonies_tweaks-common.toml b/config/minecolonies_tweaks-common.toml new file mode 100644 index 0000000..6fa77d0 --- /dev/null +++ b/config/minecolonies_tweaks-common.toml @@ -0,0 +1,8 @@ + +[buildings] + customCraftingModules = [] + +[worldGens] + #Range: 0.0 ~ 1.0 + emptyColoniesGenerationChance = 1.0 + diff --git a/config/minecolonies_tweaks-custom_tools.json b/config/minecolonies_tweaks-custom_tools.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/config/minecolonies_tweaks-custom_tools.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/config/mininggadgets-client.toml b/config/mininggadgets-client.toml new file mode 100644 index 0000000..e69de29 diff --git a/config/mininggadgets-common.toml b/config/mininggadgets-common.toml new file mode 100644 index 0000000..671f2b2 --- /dev/null +++ b/config/mininggadgets-common.toml @@ -0,0 +1,64 @@ + +#Power settings +[power] + + #Mining Gadget Settings + [power.mining_gadget] + #Maximum power for the Mining Gadget + #Range: > 0 + maxPower = 1000000 + #Base cost per block broken + #Range: > 0 + baseCost = 200 + + #Upgrade Cost Settings + [power.upgrades] + #Cost per block for Silk Touch upgrade + #Range: > 0 + upgradeSilkCost = 100 + #Cost per block for Magnet upgrade + #Range: > 0 + upgradeMagnet = 25 + #Cost per block for Void Junk upgrade + #Range: > 0 + upgradeVoid = 10 + #Cost per block for Fortune 1 upgrade + #Range: > 0 + upgradeFortune1 = 30 + #Cost per block for Fortune 2 upgrade + #Range: > 0 + upgradeFortune2 = 60 + #Cost per block for Fortune 3 upgrade + #Range: > 0 + upgradeFortune3 = 100 + #Cost per block for Efficiency 1 upgrade + #Range: > 0 + upgradeEfficiency1 = 10 + #Cost per block for Efficiency 2 upgrade + #Range: > 0 + upgradeEfficiency2 = 20 + #Cost per block for Efficiency 3 upgrade + #Range: > 0 + upgradeEfficiency3 = 30 + #Cost per block for Efficiency 4 upgrade + #Range: > 0 + upgradeEfficiency4 = 40 + #Cost per block for Efficiency 5 upgrade + #Range: > 0 + upgradeEfficiency5 = 50 + #Cost per Light Block placed + #Range: > 0 + upgradeLight = 100 + #Cost per block Frozen + #Range: > 0 + upgradeFreeze = 100 + #Capacity Boost from Battery 1 Upgrade + #Range: > 0 + battery1 = 2000000 + #Capacity Boost from Battery 2 Upgrade + #Range: > 0 + battery2 = 5000000 + #Capacity Boost from Battery 3 Upgrade + #Range: > 0 + battery3 = 10000000 + diff --git a/config/misanthropy_ftb_quest_additions-common.toml b/config/misanthropy_ftb_quest_additions-common.toml new file mode 100644 index 0000000..7ec596a --- /dev/null +++ b/config/misanthropy_ftb_quest_additions-common.toml @@ -0,0 +1,44 @@ + +[quest_description] + #Auto-center all quest description text including headings. + #Can be toggled per-quest in-game with Shift+O while the quest panel is open. + #Default: false (left-aligned) + auto_center_text = true + #Disable rendering of quest subtitles in the View Quest Panel. + #Default: false + disable_quest_subtitle = false + #Convert legacy formatting symbols (like &e, &l) to native section formatting (§e, §l) for centering calculations. + #This ensures that formatting codes are not measured as actual, physical characters by the font renderer. + #Default: true + fix_centering_symbols = true + #A list of Snowee's Text Animator tags to ignore from blockquote parsing. + #Match types: + #1. EXACT match (e.g. '' matches '' literally) + #2. PREFIX match (e.g. '' matches any tag starting with '') + snowee_whitelist = ["", ""] + +[search_styling] + #The spotlight/highlight color around matching quests (HEX format, e.g., #38BDF8 or #8838BDF8). + #Default: #38BDF8 + search_spot_color = "#38BDF8" + #The background color of the chapter panel search bar (HEX format, e.g., #1E1F22 or #881E1F22). + #Default: #1E1F22 + search_bar_background_color = "#1E1F22" + #The border color of the chapter panel search bar (HEX format, e.g., #3A3C43). + #Default: #3A3C43 + search_bar_border_color = "#3A3C43" + #The text color of the chapter panel search bar (HEX format, e.g., #E3E5E8, or leave empty for default color). + #Default: #E3E5E8 + search_bar_text_color = "#E3E5E8" + #The vertical position of the search bar in the chapter list panel. + #Allowed values: top, bottom + #Default: top + search_bar_alignment = "top" + #Whether the search bar should stay pinned at the top/bottom of the panel while scrolling, or scroll along with the list. + #Default: true + pin_search_bar = true + #[BETA] Enable the search bar and matching quest highlights in the chapter panel. + #WARNING: The pinned alignment behaves like an experimental overlay and can cause rendering overlaps/clipping when scrolling. + #Default: true + enable_search_bar = true + diff --git a/config/mobcompack-common.toml b/config/mobcompack-common.toml new file mode 100644 index 0000000..63f3b74 --- /dev/null +++ b/config/mobcompack-common.toml @@ -0,0 +1,9 @@ + +#Modify mob parameters +["Mob Configs"] + #Determines whether or not Crystalline Slimes have thorns or not. + crystalSlimeThornToggle = true + #Changes the odds that Crystalline Slime Thorns will trigger + #Range: 0 ~ 100 + crystalSlimeThornChance = 35 + diff --git a/config/modelfix-client.toml b/config/modelfix-client.toml new file mode 100644 index 0000000..19c7058 --- /dev/null +++ b/config/modelfix-client.toml @@ -0,0 +1,21 @@ + +[default] + #quad expansion increment. enlarges each quad. Use to hide gaps. Keep both as close to 0 as possible. Note that increasing it to non 0 will slightly increase the amount of quads per item model. Could be an issue with HD texture packs.Try these values: 0.002 or 0.008 + #Range: -0.1 ~ 0.1 + item_quads_expansion = 0.0 + #quad x/y offset. simply put moves the quad toward the center of the item. Use to hide gaps + #Range: -0.1 ~ 0.1 + item_quads_indent = 0.007 + +[mac_os] + #It has been reported that some mac os systems are affected by atlas bleeding so the mod cant apply its main fix by removing atlas shrinking. Instead it can reduce it as much as possible by multiplying it by shrink_value_multiplier + #quad expansion increment. enlarges each quad. Use to hide gaps. Keep both as close to 0 as possible. Note that increasing it to non 0 will slightly increase the amount of quads per item model. Could be an issue with HD texture packs + #Range: -0.1 ~ 0.1 + item_quads_expansion = 0.0 + #quad x/y offset. simply put moves the quad toward the center of the item. Use to hide gaps + #Range: -0.1 ~ 0.1 + item_quads_indent = 0.0099 + #set to 0 for non macos behavior. 1 keeps vanilla behavior to prevent atlas bleeding + #Range: 0.0 ~ 1.0 + shrink_ratio_multiplier = 1.0 + diff --git a/config/modernfix-common.toml b/config/modernfix-common.toml new file mode 100644 index 0000000..30b8bc5 --- /dev/null +++ b/config/modernfix-common.toml @@ -0,0 +1,3 @@ +#These JEI plugins will be loaded on the main thread +blacklist_async_jei_plugins = ["jepb:jei_plugin"] + diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties new file mode 100644 index 0000000..d94fef8 --- /dev/null +++ b/config/modernfix-mixins.properties @@ -0,0 +1,126 @@ +# This is the configuration file for ModernFix. +# In general, prefer using the config screen to editing this file. It can be accessed +# via the standard mod menu on your respective mod loader. Changes will, however, +# require restarting the game to take effect. +# +# The following options can be enabled or disabled if there is a compatibility issue. +# Add a line with your option name and =true or =false at the bottom of the file to enable +# or disable a rule. For example: +# mixin.perf.dynamic_resources=true +# Do not include the #. You may reset to defaults by deleting this file. +# +# Available options: +# mixin.bugfix.buffer_builder_leak=true # (default) +# mixin.bugfix.chunk_deadlock=true # (default) +# mixin.bugfix.cofh_core_crash=true # (default) +# mixin.bugfix.concurrency=true # (default) +# mixin.bugfix.ctm_resourceutil_cme=true # (default) +# mixin.bugfix.ender_dragon_leak=true # (default) +# mixin.bugfix.entity_pose_stack=true # (default) +# mixin.bugfix.extra_experimental_screen=true # (default) +# mixin.bugfix.fix_config_crashes=true # (default) +# mixin.bugfix.forge_at_inject_error=true # (default) +# mixin.bugfix.forge_vehicle_packets=true # (default) +# mixin.bugfix.missing_block_entities=false # (default) +# mixin.bugfix.model_data_manager_cme=true # (default) +# mixin.bugfix.packet_leak=false # (default) +# mixin.bugfix.paper_chunk_patches=true # (default) +# mixin.bugfix.recipe_book_type_desync=true # (default) +# mixin.bugfix.registry_ops_cme=true # (default) +# mixin.bugfix.removed_dimensions=true # (default) +# mixin.bugfix.restore_old_dragon_movement=false # (default) +# mixin.bugfix.skip_redundant_saves=false # (default) +# mixin.bugfix.unsafe_modded_shape_caches=true # (default) +# mixin.bugfix.world_leaks=true # (default) +# mixin.bugfix.world_screen_skipped=true # (default) +# mixin.devenv=false # (default) +# mixin.feature.blockentity_incorrect_thread=false # (default) +# mixin.feature.branding=true # (default) +# mixin.feature.cause_lag_by_disabling_threads=false # (default) +# mixin.feature.direct_stack_trace=false # (default) +# mixin.feature.integrated_server_watchdog=true # (default) +# mixin.feature.log_stdout_in_log_files=true # (default) +# mixin.feature.mcfunction_profiling=true # (default) +# mixin.feature.measure_time=true # (default) +# mixin.feature.registry_event_progress=false # (default) +# mixin.feature.remove_chat_signing=false # (default) +# mixin.feature.remove_telemetry=true # (default) +# mixin.feature.snapshot_easter_egg=true # (default) +# mixin.feature.spam_thread_dump=false # (default) +# mixin.feature.spark_profile_launch=false # (default) +# mixin.feature.spark_profile_world_join=false # (default) +# mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.suppress_narrator_stacktrace=true # (default) +# mixin.feature.warn_missing_perf_mods=true # (default) +# mixin.launch.class_search_cache=true # (default) +# mixin.perf.attribute_supplier_dedup=true # (default) +# mixin.perf.blast_search_trees=true # (default) +# mixin.perf.blast_search_trees.force=false # (default) +# mixin.perf.cache_blockstate_cache_arrays=true # (default) +# mixin.perf.cache_profile_texture_url=true # (default) +# mixin.perf.cache_strongholds=true # (default) +# mixin.perf.cache_upgraded_structures=true # (default) +# mixin.perf.chunk_meshing=true # (default) +# mixin.perf.clear_mixin_classinfo=false # (default) +# mixin.perf.compact_bit_storage=true # (default) +# mixin.perf.compact_entity_models=false # (default) +# mixin.perf.compact_imposterprotochunks=true # (default) +# mixin.perf.compact_mojang_registries=true # (default) +# mixin.perf.compress_unihex_font=true # (default) +# mixin.perf.datapack_reload_exceptions=true # (default) +# mixin.perf.dedicated_reload_executor=true # (default) +# mixin.perf.deduplicate_climate_parameters=false # (default) +# mixin.perf.deduplicate_location=false # (default) +# mixin.perf.deduplicate_wall_shapes=true # (default) +# mixin.perf.dynamic_dfu=true # (default) +# mixin.perf.dynamic_entity_renderers=false # (default) +# mixin.perf.dynamic_languages=false # (default) +# mixin.perf.dynamic_resources=false # (default) +# mixin.perf.dynamic_resources.ctm=true # (default) +# mixin.perf.dynamic_resources.ldlib=true # (default) +# mixin.perf.dynamic_resources.supermartijncore=true # (default) +# mixin.perf.dynamic_structure_manager=true # (default) +# mixin.perf.fast_forge_dummies=true # (default) +# mixin.perf.fast_registry_validation=true # (default) +# mixin.perf.faster_capabilities=true # (default) +# mixin.perf.faster_capabilities.bytecode_analysis=false # (default) +# mixin.perf.faster_ingredients=true # (default) +# mixin.perf.faster_item_rendering=false # (default) +# mixin.perf.faster_structure_location=true # (default) +# mixin.perf.faster_texture_stitching=true # (default) +# mixin.perf.fix_handshake_stall=true # (default) +# mixin.perf.fix_loop_spin_waiting=true # (default) +# mixin.perf.forge_cap_retrieval=true # (default) +# mixin.perf.forge_registry_alloc=true # (default) +# mixin.perf.forge_registry_lambda=true # (default) +# mixin.perf.ingredient_item_deduplication=false # (default) +# mixin.perf.kubejs=true # (default) +# mixin.perf.lazy_search_tree_registry=true # (default) +# mixin.perf.memoize_creative_tab_build=true # (default) +# mixin.perf.model_optimizations=true # (default) +# mixin.perf.mojang_registry_size=true # (default) +# mixin.perf.object_holder_cleanup=true # (default) +# mixin.perf.optimize_surface_rules=true # (default) +# mixin.perf.patchouli_deduplicate_books=true # (default) +# mixin.perf.potential_spawns_alloc=true # (default) +# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) +# mixin.perf.release_protochunks=true # (default) +# mixin.perf.remove_biome_temperature_cache=true # (default) +# mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.resourcefullib_highlight_deduplication=true # (default) +# mixin.perf.resourcepacks=true # (default) +# mixin.perf.smart_ingredient_sync=true # (default) +# mixin.perf.state_definition_construct=true # (default) +# mixin.perf.suspend_integrated_server_during_load=true # (default) +# mixin.perf.tag_id_caching=true # (default) +# mixin.perf.thread_priorities=false # (overridden for mod compat) +# mixin.perf.ticking_chunk_alloc=true # (default) +# mixin.perf.worldgen_allocation=true # (default) +# mixin.safety=true # (default) +# +# User overrides go here. +mixin.bugfix.packet_leak=true +mixin.perf.clear_mixin_classinfo=true +mixin.perf.deduplicate_climate_parameters=true +mixin.perf.deduplicate_location=true +mixin.perf.ingredient_item_deduplication=true diff --git a/config/modernworldcreation/config.txt b/config/modernworldcreation/config.txt new file mode 100644 index 0000000..3c31a38 --- /dev/null +++ b/config/modernworldcreation/config.txt @@ -0,0 +1,5 @@ +##[general] + +B:show_gamemode_info = 'true'; +F:button_border_thickness = '1.0'; +S:button_border_hex_color = '#e0e0e0'; \ No newline at end of file diff --git a/config/modonomicon-client.toml b/config/modonomicon-client.toml new file mode 100644 index 0000000..9951338 --- /dev/null +++ b/config/modonomicon-client.toml @@ -0,0 +1,10 @@ + +#Quality of Life Settings +[qol] + #Enable smooth zoom in book categories + enableSmoothZoom = true + #Enable keeping the last open page stored when closing an entry. Regardless of this setting it will be stored when closing the entire book with Esc. + storeLastOpenPageWhenClosingEntry = false + #If your locale is not supported by the default Modonomicon font, indicated by the book just rendering blocky shapes instead of characters, add your locale to this list to fall back to the builtin Minecraft font. + fontFallbackLocales = ["zh_cn", "ja_jp", "ko_kr"] + diff --git a/config/mods_optimizer/config.toml b/config/mods_optimizer/config.toml new file mode 100644 index 0000000..c4da94c --- /dev/null +++ b/config/mods_optimizer/config.toml @@ -0,0 +1,9 @@ +# This file was auto-generated by Mods Optimizer +# Last update: 2026-07-08T20:05:08.710408454 + +[Database] +allowRemoteDatabase = "true" + +[Debug] +debugForceSide = "default" +debugEnabled = "false" diff --git a/config/mods_optimizer/mods-database-override.json b/config/mods_optimizer/mods-database-override.json new file mode 100644 index 0000000..7c06c39 --- /dev/null +++ b/config/mods_optimizer/mods-database-override.json @@ -0,0 +1,16 @@ +{ + "description": "Override entries from mods-database.json. This file is never modified automatically.", + "server": [ + "server-override-mod-id" + ], + "client": [ + "immersivedamageindicators", + "notely", + "chat_heads", + "chatnotify", + "derenderpatcher" + ], + "both": [ + "both-override-mod-id" + ] +} diff --git a/config/mods_optimizer/mods-database.json b/config/mods_optimizer/mods-database.json new file mode 100644 index 0000000..6d0700e --- /dev/null +++ b/config/mods_optimizer/mods-database.json @@ -0,0 +1,356 @@ +{ + "description": "Automatically updated database. Please make changes only in mods-database-override.json", + "lastUpdated": "2025-12-12T22:00:00Z", + "server": [ + "adaptive_performance_tweaks_core", + "adaptive_performance_tweaks_gamerules", + "adaptive_performance_tweaks_items", + "adaptive_performance_tweaks_player", + "adaptive_performance_tweaks_spawn", + "adaptive_performance_tweaks", + "alternate-current", + "chunk-sending-forge-fabric", + "deathbackup", + "discordsrv", + "e4mc", + "leaky", + "publicguiannouncement", + "quick-leaf-decay", + "server_side_mod_id", + "simplebackups", + "smoothchunk", + "villagerdeathmessages" + ], + "client": [ + "3dskinlayers", + "advanced-tooltips", + "advancements_tracker", + "advancementscreenshot", + "ambientsounds", + "amecs", + "animatica", + "athena-ctm", + "atum", + "audio-extension-for-fancymenu", + "auth-me", + "auto-third-person", + "auudio", + "beautifiedchatclient", + "bedrockwaters", + "better-animations-collection", + "better-beds", + "better-clouds-reforged", + "better-end-sky", + "better-mount-hud", + "better-ping-display-fabric", + "better-third-person", + "better_clouds", + "better_loading_screen", + "betteradvancements", + "betteranimalmodels", + "betterbiomeblend", + "betterclouds", + "bettercommandblockui", + "betterf3", + "betterfpsdist", + "bettergrass", + "betterhurtcam", + "bettermodsbutton", + "bettersigns", + "betterstats", + "bettertaskbar", + "betterthirdperson", + "bettertitlescreen", + "blur-fabric", + "blur", + "boat-item-view", + "bobby", + "boosted-brightness", + "borderless-mining", + "brb", + "camera-utils", + "capes", + "catalogue", + "cave-dust", + "cavedust", + "cem", + "cfwinfo", + "charmonium", + "chat-heads", + "chatplus", + "chatting", + "cherished-worlds", + "chest-tracker", + "chunkanimator", + "chunks-fade-in", + "cit-resewn", + "citresewn", + "clear-skies", + "cleardespawn", + "clearwater", + "client-crafting", + "client-tweaks", + "client_side_mod_id", + "clienttweaks", + "colormatic", + "connectedness", + "continuity", + "controlify", + "controlling", + "cosmetica", + "craftify", + "craftpresence", + "create_cyber_goggles", + "ctrl-q", + "cull-leaves", + "cull-less-leaves", + "cullleaves", + "custom-crosshair-mod", + "customskinloader", + "dailydad", + "dark-loading-screen", + "dashloader", + "dcwa", + "default-options", + "detail-armor-bar", + "ding", + "distinguished-potions", + "drawerfps", + "drippy-loading-screen", + "drippyloadingscreen", + "dripsounds-fabric", + "durabilitytooltip", + "dynamic-fps", + "dynamiccrosshair", + "dynamicsurroundings_remasteredfabric", + "ears", + "eating-animation", + "eatinganimation", + "ebe", + "effective", + "elytra-flight-hud", + "elytrautilities", + "emi_create_schematics", + "emiffect", + "emitrades", + "emoji-type", + "enchantment-descriptions", + "enhanced-attack-indicator", + "entity-model-features", + "entity_texture_features", + "entityculling", + "entitytexturefeatures", + "equipment-compare", + "essential", + "euphoria_patcher", + "evergreenhud", + "exordium", + "explosive-enhancement", + "extendedclouds", + "extrasounds", + "extremeSoundMuffler", + "fabricskyboxes-interop", + "fabricskyboxes", + "fabrishot", + "fadeless", + "fallingleaves", + "fancymenu", + "farsight_view", + "farsight", + "fastanim", + "fastquit", + "feytweaks", + "first-person-model", + "firstperson", + "fix-gpu-memory-leak", + "flickerfix", + "fm_audio_extension", + "fog", + "forcecloseworldloadingscreen", + "forgematica", + "forgetmechunk", + "fps", + "fpsdisplay", + "fpsreducer", + "freecam", + "fusion-connected-textures", + "gamemenumodoption", + "gamemenuremovegfarb", + "gamma-utils", + "guiclock", + "guicompass", + "guifollowers", + "held-item-info", + "hiddenrecipebook", + "highlight", + "highlighter", + "hold-that-chunk", + "holdmyitemsnf", + "hytils", + "i18nupdatemod", + "iknowwhatimdoing", + "immediatelyfast", + "in-game-account-switcher", + "indium", + "inventory-profiles-next", + "invmove_compat", + "invmove", + "iris", + "item-highlighter", + "item-model-fix", + "itemborders", + "itemphysiclite", + "itemsdontbreak", + "itemzoom", + "jeresources", + "justzoom", + "lambdabettergrass", + "lambdynamiclights", + "language-reload", + "leave-my-bars-alone", + "legendary-tooltips", + "legendarytooltips", + "letsleepingdogslie", + "libipn", + "light-overlay", + "litematica-printer", + "load-my-resources", + "loadmyresources", + "logical-zoom", + "lootbeams", + "low-fire", + "macos-input-fixes", + "mafglib", + "main-menu-credits", + "make_bubbles_pop", + "mcqoy", + "mcwifipnp", + "medievalmusic", + "merchant-markers", + "minimap", + "mixmetica", + "modern-ui", + "modernworldcreation", + "modmenu", + "modnametooltip", + "morechathistory", + "moreculling", + "moreoverlays", + "mouse-tweaks", + "mousetweaks", + "myserveriscompatible", + "namepain", + "neat", + "nebs", + "no-resource-pack-warnings", + "no-telemetry", + "no_fog", + "not-enough-animations", + "notenoughanimations", + "notes", + "noxesium", + "nvidium", + "ob_tooltips", + "obscure-tooltips-fix", + "oculus", + "ok-zoomer", + "optigui", + "paperdoll", + "particle_core", + "particlesenhanced", + "physicsmod", + "pickupnotifier", + "playerhealthindicators", + "presence-footsteps", + "puzzle", + "raised", + "reauth", + "rebind-narrator", + "reeses-sodium-options", + "reforgium", + "replanter", + "replaymod", + "resourcify", + "reward-claim", + "roughly-searchable", + "rrls", + "rubidium-extra", + "rubidium", + "ryoamiclights", + "screenscale", + "screenshot-to-clipboard", + "seamless_loading_screen", + "searchables", + "shouldersurfing", + "shutupexperimentalsettings", + "skyguide", + "smithingtemplateviewer", + "smooth-swapping", + "smoothboot", + "sodium-extra", + "sodium-shadowy-path-blocks", + "sodium", + "sodiumdynamiclights", + "sodiumextra", + "sodiumextras", + "sodiumleafculling", + "sodiumoptionsapi", + "sspb", + "status-effect-bars", + "stendhal", + "stylisheffects", + "textbook", + "textrues-rubidium-options", + "textrues_embeddium_options", + "tia", + "tipthescales", + "title-fixer", + "toastcontrol", + "tool-stats", + "tooltipfix", + "tooltipscroller", + "torohealth", + "totemcounter", + "transparent", + "travelers-titles", + "uiinputundo", + "ukulib", + "visuality", + "voxelmap-updated", + "vulkanmod", + "wavey-capes", + "waveycapes", + "whats-that-slot", + "worldtime", + "wynntils", + "yungsmenutweaks", + "zmedievalmusic", + "zoomify", + "zume" + ], + "both": [ + "advancedbackups", + "ageingspawners", + "appleskin", + "attributefix", + "betterburning", + "betterstrongholds", + "default_side_mod_id", + "distanthorizons", + "easy_mob_farm", + "easy_npc", + "emojiful", + "humancompanions", + "invtweaks", + "kobolds", + "lootr", + "midnightlib", + "mysql-jdbc", + "mysql_jdbc", + "paraglider", + "spyglass_improvements", + "starterkit", + "tumbleweed", + "wakes" + ] +} diff --git a/config/mods_optimizer/mods-database.json.sha256 b/config/mods_optimizer/mods-database.json.sha256 new file mode 100644 index 0000000..91ae80d --- /dev/null +++ b/config/mods_optimizer/mods-database.json.sha256 @@ -0,0 +1 @@ +cd6e0f100089b022189b3c492ef77d3edcc243966f1779c13dc1a86be2fe9cd8 \ No newline at end of file diff --git a/config/modularrouters-client.toml b/config/modularrouters-client.toml new file mode 100644 index 0000000..9d493c9 --- /dev/null +++ b/config/modularrouters-client.toml @@ -0,0 +1,16 @@ + +[Misc] + #Should module tooltips always show module settings (without needing to hold Shift)? + alwaysShowSettings = true + #Should module GUI's be tinted according to the module item colour? + moduleGuiBackgroundTint = true + #Should items being transferred be rendered in-world? Looks good, but many items may incur an FPS hit. + renderFlyingItems = true + #When holding an Item Router, should nearby camouflaged routers be highlighted? + heldRouterShowsCamoRouters = true + +[Sound] + #Volume of the bleep played when various operations are done with modules/upgrades/etc. such as binding to an inventory, setting camo... + #Range: 0.0 ~ 2.0 + bleepVolume = 0.5 + diff --git a/config/modularrouters-common.toml b/config/modularrouters-common.toml new file mode 100644 index 0000000..1fb2116 --- /dev/null +++ b/config/modularrouters-common.toml @@ -0,0 +1,167 @@ + +[Module] + #Base range for Sender Mk1 (no range upgrades) + #Range: > 1 + sender1BaseRange = 8 + #Max range for Sender Mk1 + #Range: > 1 + sender1MaxRange = 16 + #Base range for Sender Mk2 (no range upgrades) + #Range: > 1 + sender2BaseRange = 24 + #Max range for Sender Mk2 + #Range: > 1 + sender2MaxRange = 48 + #Base range for Vacuum (no range upgrades) + #Range: > 1 + vacuumBaseRange = 6 + #Max range for Vacuum + #Range: > 1 + vacuumMaxRange = 12 + #Base range for Extruder Mk1 (no range upgrades) + #Range: > 1 + extruder1BaseRange = 16 + #Max range for Extruder Mk1 + #Range: > 1 + extruder1MaxRange = 32 + #Base range for Extruder Mk2 (no range upgrades) + #Range: > 1 + extruder2BaseRange = 32 + #Max range for Extruder Mk2 + #Range: > 1 + extruder2MaxRange = 64 + #Base range for Puller Mk2 (no range upgrades) + #Range: > 1 + puller2BaseRange = 12 + #Max range for Puller Mk2 + #Range: > 1 + puller2MaxRange = 24 + #Base range for Fluid Mk2 (no range upgrades) + #Range: > 1 + fluid2BaseRange = 12 + #Max range for Fluid Mk2 + #Range: > 1 + fluid2MaxRange = 24 + #Should Sender modules show particle effects when working? + senderParticles = true + #Should Puller modules show particle effects when working? + pullerParticles = true + #Should Placer modules show particle effects when working? + placerParticles = true + #Should Breaker modules show particle effects when working? + breakerParticles = true + #Should Vacuum modules show particle effects when working? + vacuumParticles = true + #Should Flinger modules show smoke effects & play a sound when working? + flingerEffects = true + #Should Extruder Mk1/2 modules play a sound when placing/removing blocks? + extruderSound = true + #Should Extruder Mk1/2 modules push entities along when extruding blocks? + extruderPushEntities = true + #Should Breaker & Extruder Mk1 Modules respect the harvest level of the pickaxe used to craft them? (e.g. craft with an Iron Pickaxe => can't break Obsidian + breakerHarvestLevelLimit = true + #Dimension ID's which the Sender Mk3 cannot send to or from, and the Player Module cannot operate (both router dimension and player dimension are checked). This can be wildcarded, e.g. 'somemod:*' blacklists all dimensions added by the mod 'somemod' + dimensionBlacklist = [] + +[Router] + #Base tick interval (in server ticks) for a router; router will run this often + #Range: > 1 + baseTickRate = 20 + #Number of ticks by which 1 Speed Upgrade will reduce the router's tick interval + #Range: > 1 + ticksPerUpgrade = 2 + #Hard minimum tick interval for a router regardless of Speed Upgrades + #Range: > 1 + hardMinTickRate = 2 + #Router with eco mode enabled will go into low-power mode if idle for this many server ticks + #Range: > 1 + ecoTimeout = 100 + #Tick interval for an eco-mode router which has gone into low-power mode + #Range: > 1 + lowPowerTickRate = 100 + #Base fluid transfer rate (mB/t in each direction) for a router + #Range: > 1 + fluidBaseTransferRate = 50 + #Max fluid transfer rate (mB/t in each direction) for a router + #Range: > 1 + fluidMaxTransferRate = 400 + #Fluid transfer rate increase per Fluid Transfer Upgrade + #Range: > 1 + mBperFluidUpgade = 10 + #FE capacity per Energy Upgrade + #Range: > 1 + fePerEnergyUpgrade = 50000 + #FE transfer rate (FE/t) per Energy Upgrade + #Range: > 1 + feXferPerEnergyUpgrade = 1000 + #Should block-breaking modules drop XP where appropriate? (ore mining etc.) + blockBreakXPDrops = true + +["Energy Costs"] + #Energy cost (FE) to run one right-click operation for the Activator Module + #Range: > 0 + activatorModuleEnergyCost = 0 + #Energy cost (FE) to run one left-click (attack) operation for the Activator Module + #Range: > 0 + activatorModuleEnergyCostAttack = 150 + #Energy cost (FE) to run one operation for the Breaker Module + #Range: > 0 + breakerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Detector Module + #Range: > 0 + detectorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Distributor Module + #Range: > 0 + distributorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Dropper Module + #Range: > 0 + dropperModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Energy Distributor Module + #Range: > 0 + energydistributorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Energy Output Module + #Range: > 0 + energyoutputModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Extruder Module Mk1 + #Range: > 0 + extruderModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Extruder Module Mk2 + #Range: > 0 + extruderModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Flinger Module + #Range: > 0 + flingerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Fluid Module Mk1 + #Range: > 0 + fluidModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Fluid Module Mk2 + #Range: > 0 + fluidModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Placer Module + #Range: > 0 + placerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Player Module + #Range: > 0 + playerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Puller Module Mk1 + #Range: > 0 + pullerModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Puller Module Mk2 + #Range: > 0 + pullerModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk1 + #Range: > 0 + senderModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk2 + #Range: > 0 + senderModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk3 + #Range: > 0 + senderModule3EnergyCost = 0 + #Energy cost (FE) to run one operation for the Vacuum Module + #Range: > 0 + vacuumModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Void Module + #Range: > 0 + voidModuleEnergyCost = 0 + diff --git a/config/monobank-common.toml b/config/monobank-common.toml new file mode 100644 index 0000000..51b60ae --- /dev/null +++ b/config/monobank-common.toml @@ -0,0 +1,38 @@ + +[Monobank] + #Maximum amount of items that can be stored in Monobank. Default: 8192 + #Range: > 1 + Capacity = 8192 + #Combination is required to unlock a Monobank. Default: true + CombinationEnabled = true + +[Ownership] + #Owners can unlock their Monobank without combination. Default: true + OwnerCanUnlockWithoutCombination = true + #If enabled - players will be able to break other player's banks. + #If disabled - monobank will be indestructible if other player owns it. Default: false + CanRelocateOtherPlayersBanks = false + #If enabled - players will be able to change locks in other player's banks. Default: false + CanReplaceOtherPlayersLocks = false + +[Thief] + #Crime severity for attempting to unlock a Monobank (opening combination UI). + #Default: LIGHT + #Allowed Values: NONE, LIGHT, MEDIUM, HEAVY + crime_severity_for_unlocking_attempt = "LIGHT" + #Crime severity for unlocking a Monobank. + #Default: MEDIUM + #Allowed Values: NONE, LIGHT, MEDIUM, HEAVY + crime_severity_for_unlocking = "MEDIUM" + #Crime severity for opening a Monobank. + #Default: HEAVY + #Allowed Values: NONE, LIGHT, MEDIUM, HEAVY + crime_severity_for_opening = "HEAVY" + +[StructureGeneration] + #Vault buildings will generate in villages. + GenerateVaults = true + #Vault building generation weight. Larger number = more chances to generate. + #Range: > 1 + VaultWeight = 15 + diff --git a/config/monolib-common.toml b/config/monolib-common.toml new file mode 100644 index 0000000..4af3438 --- /dev/null +++ b/config/monolib-common.toml @@ -0,0 +1,7 @@ +# enable_debugging permits more console logs, default = false +enable_debugging = false + +# enable_jar_verification checks installed jar files against mod reposting websites, default = true +enable_jar_verification = true + + diff --git a/config/monolib-server.json b/config/monolib-server.json new file mode 100644 index 0000000..14428bb --- /dev/null +++ b/config/monolib-server.json @@ -0,0 +1,4 @@ +{ + "verifyModFilenames": true, + "additionalDebugLogs": false +} \ No newline at end of file diff --git a/config/moonlight-client.toml b/config/moonlight-client.toml new file mode 100644 index 0000000..4653f82 --- /dev/null +++ b/config/moonlight-client.toml @@ -0,0 +1,13 @@ + +[general] + #Merge all dynamic resource packs from all mods that use this library into a single pack + merge_dynamic_resource_packs = true + #Prevents map texture from being upladed to GPU when only map markers have changed.Could increase performance + lazy_map_upload = true + #Renders map textures using mipmap. Vastly improves look from afar as well when inside a Map Atlas from Map Atlases or similar. Set to 0 to have no mipmap like vanilla + #Range: 0 ~ 4 + maps_mipmap = 3 + #Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one + #Allowed Values: FALSE, NO_GUI, TRUE + consistent_entity_renderer_shading = "NO_GUI" + diff --git a/config/moonlight-common.toml b/config/moonlight-common.toml new file mode 100644 index 0000000..1719cf0 --- /dev/null +++ b/config/moonlight-common.toml @@ -0,0 +1,13 @@ + +[general] + #Clears dynamic models and textures from the mod dynamic pack once resource reload is done. This can save up some RAM. Turning off if you notice inconsistencies with pack loading + clear_dynamic_resources = false + #Enables multi-threaded generation for dynamic assets (if supported). This could improve performance on systems with more cores available. + multi_threaded_generation = true + #ONLY for debugging purpose. Turns one some debug functionality like more logging or blocktypes_debug.txt, the file can be found in ~/.minecraft/debug/dynamic_registry_dump... + extra_debug = false + #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. + extra_children_debug = false + #Global datapack folder. A folder where you can store and load datapacks for all your worlds automatically. Set to empty string to disable + global_datapacks_folder = "moonlight-global-datapacks" + diff --git a/config/more_immersive_wires-common.toml b/config/more_immersive_wires-common.toml new file mode 100644 index 0000000..3e10986 --- /dev/null +++ b/config/more_immersive_wires-common.toml @@ -0,0 +1,8 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for More Immersive Wires +#The settings have been moved to more_immersive_wires-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true + diff --git a/config/moremekanismprocessing-client.toml b/config/moremekanismprocessing-client.toml new file mode 100644 index 0000000..d133e1f --- /dev/null +++ b/config/moremekanismprocessing-client.toml @@ -0,0 +1,199 @@ + +#color : ores rgb color +[ores] + + [ores.aluminum] + #if empty, use default + #default : a0c4d8 + color = "" + + [ores.amethyst] + #if empty, use default + #default : cc33cc + color = "" + + [ores.apatite] + #if empty, use default + #default : 3595b2 + color = "" + + [ores.azure_silver] + #if empty, use default + #default : ce9cf3 + color = "" + + [ores.bismuth] + #if empty, use default + #default : e8d8e8 + color = "" + + [ores.bort] + #if empty, use default + #default : 7495af + color = "" + + [ores.cinnabar] + #if empty, use default + #default : 990f0f + color = "" + + [ores.cobalt] + #if empty, use default + #default : 1e66bf + color = "" + + [ores.crimson_iron] + #if empty, use default + #default : f44770 + color = "" + + [ores.desh] + #if empty, use default + #default : ff9f51 + color = "" + + [ores.dilithium] + #if empty, use default + #default : d8c4c4 + color = "" + + [ores.draconium] + #if empty, use default + #default : a351cc + color = "" + + [ores.electrotine] + #if empty, use default + #default : cb4f8 + color = "" + + [ores.green_sapphire] + #if empty, use default + #default : 33cc33 + color = "" + + [ores.iridium] + #if empty, use default + #default : d8d8c4 + color = "" + + [ores.lithium] + #if empty, use default + #default : 808080 + color = "" + + [ores.nickel] + #if empty, use default + #default : e5e09e + color = "" + + [ores.niter] + #if empty, use default + #default : b8afaf + color = "" + + [ores.peridot] + #if empty, use default + #default : 66ff66 + color = "" + + [ores.platinum] + #if empty, use default + #default : a0f0ff + color = "" + + [ores.ruby] + #if empty, use default + #default : cc3333 + color = "" + + [ores.sapphire] + #if empty, use default + #default : 3333cc + color = "" + + [ores.ostrum] + #if empty, use default + #default : 9f616f + color = "" + + [ores.calorite] + #if empty, use default + #default : c44249 + color = "" + + [ores.silver] + #if empty, use default + #default : d8e4ed + color = "" + + [ores.sulfur] + #if empty, use default + #default : d8cc51 + color = "" + + [ores.titanium] + #if empty, use default + #default : 405060 + color = "" + + [ores.tungsten] + #if empty, use default + #default : 333333 + color = "" + + [ores.zinc] + #if empty, use default + #default : cccc8e + color = "" + + [ores.coal] + #if empty, use default + #default : 2d2d2d + color = "" + + [ores.lapis] + #if empty, use default + #default : 2c69c8 + color = "" + + [ores.diamond] + #if empty, use default + #default : 49ead6 + color = "" + + [ores.redstone] + #if empty, use default + #default : ff0000 + color = "" + + [ores.emerald] + #if empty, use default + #default : 17da61 + color = "" + + [ores.quartz] + #if empty, use default + #default : ebe3db + color = "" + + [ores.boron] + #if empty, use default + #default : 7c7c7c + color = "" + + [ores.magnesium] + #if empty, use default + #default : e7b9e5 + color = "" + + [ores.thorium] + #if empty, use default + #default : 2e2e2e + color = "" + + [ores.palladium] + #if empty, use default + #default : b4c9c9 + color = "" + diff --git a/config/moremekanismprocessing-common.toml b/config/moremekanismprocessing-common.toml new file mode 100644 index 0000000..f3978a1 --- /dev/null +++ b/config/moremekanismprocessing-common.toml @@ -0,0 +1,202 @@ + +[general] + #true : show all recipes + #false : hide ore not exist recipes (can hide recipes when some mod not installed) + showOreNotExistRecipes = false + +#processingLevel : set ores processing max level +# 5 : can into up x5 (able all procssing) +# 4 : can into up x4 (disable ore dissolution, slurry crystalizing) +# 3 : can into up x3 (disable injecting) +# 2 : can into up x2 (disable purifying and clumps crushing) +# 1 : reserved (currently same with 0) +# 0 : disable all processing in this mod +#disabled processing items are hided your world +[ores] + + [ores.aluminum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.amethyst] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.apatite] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.azure_silver] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.bismuth] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.bort] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.cinnabar] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.cobalt] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.crimson_iron] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.desh] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.dilithium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.draconium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.electrotine] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.green_sapphire] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.iridium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.lithium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.nickel] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.niter] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.peridot] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.platinum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.ruby] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.sapphire] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.ostrum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.calorite] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.silver] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.sulfur] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.titanium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.tungsten] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.zinc] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.coal] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/coal"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.lapis] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/lapis"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.diamond] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/diamond"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.redstone] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/redstone"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.emerald] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/emerald"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.quartz] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/quartz"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.boron] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.magnesium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.thorium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.palladium] + #Range: 0 ~ 5 + processingLevel = 5 + diff --git a/config/moreoverlays.toml b/config/moreoverlays.toml new file mode 100644 index 0000000..337e130 --- /dev/null +++ b/config/moreoverlays.toml @@ -0,0 +1,94 @@ + +#Settings for the light / mobspawn overlay +[lightoverlay] + #Range of the lightoverlay (positive Y) + #Range: > 0 + uprange = 4 + #Range of the lightoverlay (negative Y) + #Range: > 0 + downrange = 16 + #Range of the lightoverlay (Horizontal N,E,S,W) + #Range: > 0 + hrange = 16 + #Ignore if there in no 2 Block space to spawn. (Less lag if true) + ignoreLayer = false + #Ignore if mobs can actually spawn according to other mods and biome spawn lists and just go by light value + ignoreSpawnList = false + #Blocks can allow/disallow spawns for different entity types. The check for this isn't very performat. + #Setting this to true will increase performance but decrease accuracy. + simpleCheck = false + #Minimum save light level where no mobs can spawn + #Range: > 0 + saveLevel = 1 + #Finished 1.18 migration (internal) + finishedMigration = true + #Render light levels as numbers instead of crosses + spawn_numbers = false + #Only update the light scanner every N client ticks/frames. Set to 1 to update every frame (disables throttling). + #Range: > 1 + update_interval_frames = 1 + +#Settings for the chunk bounds overlay +[chunkbounds] + #Radius (in Chunks) to show the edges (red line) + #Range: > 0 + radius = 1 + #Show the middle of the current Chunk (yellow line) + middle = true + +#General render settings. +#Line thickness, Colors, ... +[rendersettings] + #Color for the chunk edge + #Range: 0 ~ 16777215 + chunk_edge_color = 16711680 + #Color for the chunk grid + #Range: 0 ~ 16777215 + chunk_grid_color = 65280 + #Color for the middle chunk line + #Range: 0 ~ 16777215 + chunk_mid_color = 16776960 + #Line width for chunk boundaries + #Range: 0.0 ~ 1.7976931348623157E308 + chunk_line_width = 1.5 + #Color the X that marks "Spawns always possible" + #Range: 0 ~ 16777215 + spawn_always_color = 16711680 + #Color the X that marks "Spawns at night possible" + #Range: 0 ~ 16777215 + spawn_night_color = 16776960 + #Line width for spawn indication + #Range: 0.0 ~ 1.7976931348623157E308 + spawn_line_width = 2.0 + #Use thicker lines for chunk boundaries + chunk_line_thick = false + #Color for the number that marks "No spawns possible" + #Range: 0 ~ 16777215 + spawn_safe_color = 65280 + #Scale/size of the number overlay when enabled (world units) + #Range: 0.005 ~ 0.5 + spawn_number_scale = 0.07 + +#Settings for the search overlay +[searchoverlay] + #Setting this to false this will disable the functionality to double click the JEI search bar for item searching. + search_enabled = true + #Also searches for the custom name of an item in user inventory (for example items named in anvil) + #Setting this to false will increase performance. + custom_search = true + #Also searches the tooltip of items in the users inventory + #Setting this to false will increase performance. + search_tooltip = true + #Maximum amount of search results for the item searching to be active + #Range: > 256 + search_max_results = 16384 + #Color for the search box when double clicked + #Range: 0 ~ 16777215 + search_box_color = 16776960 + #Color of the filtered out slots + #Range: 0 ~ 16777215 + search_slot_color = 0 + #Transparancy for the filtered out slots + #Range: 0.0 ~ 1.0 + search_slot_alpha = 0.5 + diff --git a/config/morerelics-client.toml b/config/morerelics-client.toml new file mode 100644 index 0000000..a0f9101 --- /dev/null +++ b/config/morerelics-client.toml @@ -0,0 +1,14 @@ + +["Weaver's Spool"] + #The corner which the silk bar is rendered at. + #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT + silkBarCorner = "BOTTOM_RIGHT" + +[Cyberpsychosis] + #Disguises some passive and neutral mobs as hostile mobs while the Cyberpsychosis effect is active. + cyberpsychosisDisguiseEffect = true + +["Wonder of U"] + #The black and white + outline effect of nullification. + nullificationVisualEffect = true + diff --git a/config/morerelics-common.toml b/config/morerelics-common.toml new file mode 100644 index 0000000..109eed2 --- /dev/null +++ b/config/morerelics-common.toml @@ -0,0 +1,21 @@ + +[VertebraX] + #List of effects which can't be filtered/reduced by vertebrax. + excludedEffects = ["minecraft:levitation"] + #Pairs of effects which will grant the opposite version upon filtration. + #Format: 'modid:original_effect|modid:opposite_effect' Example: minecraft:weakness|minecraft:strength + #You can include modded effects here but first effect should be harmful and second effect should be beneficial or it won't work. + oppositeEffectMappings = ["minecraft:weakness|minecraft:strength", "minecraft:slowness|minecraft:speed", "minecraft:unluck|minecraft:luck", "minecraft:blindness|minecraft:night_vision", "minecraft:mining_fatigue|minecraft:haste", "morerelics:vulnerability|minecraft:resistance"] + +#IMPORTANT, This is not where you change relic stats. +#To do that you need to enable enabledExtendedConfigs in relic.yaml and it will auto generate relic config files in config/morerelics/relics upon running the game once. You can change the values from there. +#Although I DO NOT RECOMMEND doing that because it is a very buggy system. If you enable it, when I update the mod it will still try to fetch values from those files. +#This means when I change stat values those won't affect your game and if I change/add an ability to a relic it will crash with "data is null". +#To fix this you would need to delete the updated relics config file in config/morerelics/relics so it can regenerate correctly on your next launch. +[General] + #The relics included here cannot have multiple copies worn. + #Some relics (e.g. Made in Heaven, Gravitum Gloves) are hardcoded to be that way due to interactions, bugs and cannot be changed. + #This config only works with More Relics relics. + #Format Example:["morerelics:guts_orb","morerelics:mass_gauntlet"] + blockWearingCopies = [] + diff --git a/config/morevillagers-common.toml b/config/morevillagers-common.toml new file mode 100644 index 0000000..ab5199c --- /dev/null +++ b/config/morevillagers-common.toml @@ -0,0 +1,32 @@ + +#House generation settings +[houses] + #Should More Villagers houses generate in plains biome villages? + generatePlainsHouses = true + #Should More Villagers houses generate in taiga biome villages? + generateTaigaHouses = true + #Should More Villagers houses generate in savanna biome villages? + generateSavannaHouses = true + #Should More Villagers houses generate in snowy biome villages? + generateSnowyHouses = true + #Should More Villagers houses generate in desert biome villages? + generateDesertHouses = true + + #House weights (spawn frequency) + [houses.weights] + #Woodworker house spawn chance + #Range: > 0 + woodworkerHouseWeight = 10 + #Oceanographer house spawn chance + #Range: > 0 + oceanographerHouseWeight = 10 + #Florist house spawn chance + #Range: > 0 + floristHouseWeight = 10 + #Hunter house spawn chance + #Range: > 0 + hunterHouseWeight = 10 + #Engineer house spawn chance + #Range: > 0 + engineerHouseWeight = 10 + diff --git a/config/movingelevators-common.toml b/config/movingelevators-common.toml new file mode 100644 index 0000000..73382bd --- /dev/null +++ b/config/movingelevators-common.toml @@ -0,0 +1,13 @@ +[General] + # What should be the maximum width of an elevator cabin? Higher numbers may cause lag. + # Allowed range: 1 ~ 15 - Default: 11 + maxCabinHorizontalSize = 11 + + # What should be the maximum height of an elevator cabin? Higher numbers may cause lag. + # Allowed range: 1 ~ 15 - Default: 11 + maxCabinVerticalSize = 11 + + # Is the elevator allowed to move unbreakable blocks? If set to true, this may allow players to move blocks like bedrock and portals using elevators! + # Allowed values: true, false - Default: false + allowUnbreakableBlocks = false + diff --git a/config/mowziesmobs-client.toml b/config/mowziesmobs-client.toml new file mode 100644 index 0000000..520a26a --- /dev/null +++ b/config/mowziesmobs-client.toml @@ -0,0 +1,19 @@ + +[client] + #Toggles the lantern glow effect, which may look bad with certain shaders. + glow_effect = true + #Toggles the Umvuthana footprint effects, which may decrease performance. + umvuthana_footprints = true + #Enable camera shaking during certain mob attacks and abilities. + do_camera_shake = true + #Play boss battle themes during boss encounters. + play_boss_music = true + #Use custom boss health bar textures, if the boss has them. + custom_boss_bar = true + #Use custom player animations. + custom_player_anims = true + #Set to true to hide your own 3rd-person player animations while you are in 1st-person view mode. This is useful with mods that render the 3rd-person model in 1st-person, as some of the Mowzie's Mobs 3rd-person animations can block the camera. + hide_player_anims_in_first_person = false + #Play Umvuthana Crane heal sounds. Turn this off if you are experiencing crashes when Cranes appear during Umvuthi's boss battle. + crane_heal_sounds = true + diff --git a/config/mowziesmobs-common.toml b/config/mowziesmobs-common.toml new file mode 100644 index 0000000..41a4173 --- /dev/null +++ b/config/mowziesmobs-common.toml @@ -0,0 +1,816 @@ + +[tools_and_abilities] + #Cost in minutes of using the supernova ability. + #Range: > 0 + supernova_cost = 60 + + [tools_and_abilities.suns_blessing] + #Duration in minutes of the Sun's Blessing effect. + #Range: > 0 + suns_blessing_duration = 60 + #Range: 0.0 ~ 1.7976931348623157E308 + suns_blessing_attack_multiplier = 1.0 + #Cost in minutes of using the solar beam ability. + #Range: > 0 + solar_beam_cost = 5 + + [tools_and_abilities.wrought_helm] + #Set to true for the Wrought Helm to have limited durability. + breakable = false + + [tools_and_abilities.wrought_helm.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.axe_of_a_thousand_metals] + #Set to true for the Axe of a Thousand Metals to have limited durability. + breakable = false + + [tools_and_abilities.axe_of_a_thousand_metals.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 9.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 0.8999999761581421 + + [tools_and_abilities.sol_visage] + #Set to true for the Sol Visage to have limited durability. + breakable = false + #Maximum number of Umvuthana followers a player can summon at once using the Sol Visage + #Range: 0 ~ 300 + max_followers = 10 + + [tools_and_abilities.sol_visage.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.ice_crystal] + #Multiply all damage done with the ice crystal by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + #Set to true for the ice crystal to have limited durability. + #Prevents regeneration in inventory. + breakable = false + #Ice crystal durability + #Range: > 1 + durability = 600 + #Freeze duration in ticks (applies to frostmaw too!) + #Range: > 1 + freeze_duration = 50 + + [tools_and_abilities.umvuthana_mask] + + [tools_and_abilities.umvuthana_mask.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.geomancerArmor] + + [tools_and_abilities.geomancerArmor.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.spear] + + [tools_and_abilities.spear.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 5.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.600000023841858 + + [tools_and_abilities.naga_fang_dagger] + #Duration in ticks of the poison effect (20 ticks = 1 second). + #Range: > 0 + poison_duration = 40 + #Damage multiplier when attacking from behind + #Range: 0.0 ~ 1.7976931348623157E308 + backstab_damage_mult = 2.0 + + [tools_and_abilities.naga_fang_dagger.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 3.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 2.0 + + [tools_and_abilities.blowgun] + #Duration in ticks of the poison effect (20 ticks = 1 second). + #Range: > 0 + poison_duration = 40 + #Multiply all damage done with the blowgun/darts by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 1.0 + + [tools_and_abilities.earthrend_gauntlet] + #Multiply all damage done with the Earthrend Gauntlet by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + #Set to true for the Earthrend Gauntlet to have limited durability. + #Prevents regeneration in inventory. + breakable = false + #Earthrend Gauntlet durability + #Range: > 1 + durability = 400 + #Set to false to disable the Earthrend Gauntlet's tunneling ability. + enable_tunneling = true + + [tools_and_abilities.earthrend_gauntlet.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 6.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.2000000476837158 + + [tools_and_abilities.sculptor_staff] + #Multiply all damage done with the Sculptor Staff by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [tools_and_abilities.sculptor_staff.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 3.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.0 + + [tools_and_abilities.elokosa_paw] + #How long effects inflicted by Elokosa Paws last in ticks + #Range: > 1 + effect_duration = 600 + #How long players must wait between uses of Elokosa Paws in ticks + #Range: > 0 + cooldown = 1800 + #How many times players can use an Elokosa Paw before it breaks + #Range: > 1 + number_of_uses = 3 + +[mobs] + + [mobs.frostmaw] + #Disable/enable Frostmaw's boss health bar + has_boss_bar = true + #Disable/enable frostmaws healing while asleep + heals_out_of_battle = true + #Allow players to steal frostmaws' ice crystals (only using specific means!) + stealable_ice_crystal = true + #Disable/enable frostmaws resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + + [mobs.frostmaw.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["forge:is_snowy,!minecraft:is_ocean,!minecraft:is_river,!minecraft:is_beach,!minecraft:is_forest,!minecraft:is_taiga"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.frostmaw.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 100.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 50.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.frostmaw.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.umvuthi] + #Disable/enable Umvuthi's boss health bar + has_boss_bar = true + #Disable/enable Umvuthi healing while not in combat + heals_out_of_battle = true + #Which item Umvuthi desires in exchange for the Sun's Blessing + trade_which_item = "minecraft:gold_block" + #How many of the item Umvuthi desires in exchange for the Sun's Blessing + #Range: 0 ~ 64 + trade_how_many = 7 + #Disable/enable Umvuthi resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + #Umvuthi will summon healers whenever he loses this much total health. + #Range: > 0 + spawn_healers_threshold = 45 + + #Generation controls for Umvuthana Groves + [mobs.umvuthi.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_savanna"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.umvuthi.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 100.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 50.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.umvuthi.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.ferrous_wroughtnaut] + #Disable/enable Ferrous Wroughtnaut's boss health bar + has_boss_bar = true + #Disable/enable Ferrous Wroughtnaut healing while not active + heals_out_of_battle = true + #Disable/enable Ferrous Wroughtnaut resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + + [mobs.ferrous_wroughtnaut.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["!minecraft:is_ocean"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.ferrous_wroughtnaut.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 15 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 5 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 50.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 20.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = [] + + [mobs.ferrous_wroughtnaut.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.sculptor] + #How tall (in blocks) the Sculptor's test will be + #Range: 1 ~ 500 + test_height = 60 + #The time limit (in seconds) for completing the Sculptor's test + #Range: 1 ~ 36000 + test_time_limit = 400 + #Disable/enable the Sculptor healing while not in combat + heals_out_of_battle = true + #Disable/enable the Sculptor's boss health bar + has_boss_bar = true + #Which item the Sculptor desires in exchange for a chance to try his challenge + trade_which_item = "mowziesmobs:bluff_rod" + #How many of the item the Sculptor desires in exchange for a chance to try his challenge + #Range: 0 ~ 64 + trade_how_many = 1 + #Set to true for the Sculptor to disappear after a player beats the test and claims the reward. + disappear_after_reward = true + + [mobs.sculptor.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["forge:is_peak"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.sculptor.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 200.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 120.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = [] + + [mobs.sculptor.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.grottol] + + [mobs.grottol.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["!forge:is_mushroom"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.grottol.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 2 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:base_stone_overworld"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = 16 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = -65 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = true + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.grottol.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.lantern] + + [mobs.lantern.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_forest,mowziesmobs:is_magical,!forge:is_snowy"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.lantern.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 2 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 4 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.lantern.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.umvuthana] + + #Controls spawning for Umvuthana hunting groups + #Group size controls how many raptors spawn, not followers + #See Umvuthi config for grove structure controls + [mobs.umvuthana.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_savanna"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.umvuthana.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:sand"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = false + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts", "mowziesmobs:umvuthana_groves"] + + [mobs.umvuthana.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.naga] + + [mobs.naga.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_beach,minecraft:is_mountain", "minecraft:is_beach,minecraft:is_hill"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = ["minecraft:stony_shore"] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.naga.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 20 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 2 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:base_stone_overworld"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 68 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = true + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.naga.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.foliaath] + + [mobs.foliaath.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_jungle"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.foliaath.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 70 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 4 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.foliaath.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.bluff] + + [mobs.bluff.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = [] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.bluff.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 10 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 2 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 3 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = [] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = -65 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = true + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.bluff.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.Elokosa] + + [mobs.Elokosa.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_jungle"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.Elokosa.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = false + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.Elokosa.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + diff --git a/config/musicbox.common.conf b/config/musicbox.common.conf new file mode 100644 index 0000000..521d57e --- /dev/null +++ b/config/musicbox.common.conf @@ -0,0 +1,4 @@ +# Config for musicbox +# The maximum radius of a custom music disc in blocks. Default is 999. +max_disc_radius=999 + diff --git a/config/mystianapiary-common.toml b/config/mystianapiary-common.toml new file mode 100644 index 0000000..85857c5 --- /dev/null +++ b/config/mystianapiary-common.toml @@ -0,0 +1,14 @@ + +[apiary] + #Log bee produce resolution to the console for troubleshooting. + debugBeeProduce = false + #Base speed multiplier for the apiary. 1 = no change, 2 = half the base process time, 4 = quarter, etc. + #Range: 1.0 ~ 1024.0 + apiaryBaseSpeedMultiplier = 2.0 + #Soft cap: maximum slot completions processed per tick to smooth bursts. Set 0 to disable. + #Range: 0 ~ 27 + maxCompletionsPerTick = 12 + #Randomized bees: keep the same selected flower for this many completions before rerolling. 1 = reroll every completion. + #Range: 1 ~ 6000 + randomizedRerollIntervalCompletions = 40 + diff --git a/config/mysticaladaptations-common.toml b/config/mysticaladaptations-common.toml new file mode 100644 index 0000000..11d9b26 --- /dev/null +++ b/config/mysticaladaptations-common.toml @@ -0,0 +1,21 @@ + +["Mystical Agradditions"] + #Set how many augments can be placed on the insanium armor + #Range: 1 ~ 2 + insanium_armor_augments = 2 + #Set how many augments can be placed on the insanium tools + #Range: 1 ~ 2 + insanium_tools_augments = 2 + +["Vampirism Compat"] + #Enable the Thirstless Augment + thirstless_augment = true + #Enable the Daywalker Augment + daywalker_augment = true + +["Mob Drops"] + #Wither drops insanium essence when killed with an Insanium weapon. + wither_insanium = true + #Ender Dragon drops insanium essence when killed with an Insanium weapon. + dragon_insanium = true + diff --git a/config/mysticalagradditions-common.toml b/config/mysticalagradditions-common.toml new file mode 100644 index 0000000..d4b97f1 --- /dev/null +++ b/config/mysticalagradditions-common.toml @@ -0,0 +1,26 @@ + +#General configuration options. +[General] + #The amount of Dragon Scales that an Ender Dragon will drop when killed. + #Range: 0 ~ 64 + dragonScalesAmount = 8 + #The duration of each Essence Apples effects in seconds. + #Range: > 1 + essenceAppleDuration = 180 + #Can tier 6 crops be fertilized using Mystical Fertilizer or Fertilized Essence? + fertilizableTier6Crops = false + #The percentage chance that a Wither will drop a Withering Soul when killed. + #Range: 0.0 ~ 1.0 + witheringSoulChance = 0.35 + +#World generation options. +[World] + #Should End Prosperity Ore generate in the world? + generateEndProsperityOre = true + #Should Nether Prosperity Ore generate in the world? + generateNetherProsperityOre = true + #Should Nether Inferium Ore generate in the world? + generateNetherInferiumOre = true + #Should End Inferium Ore generate in the world? + generateEndInferiumOre = true + diff --git a/config/mysticalagriculture-client.toml b/config/mysticalagriculture-client.toml new file mode 100644 index 0000000..42157cc --- /dev/null +++ b/config/mysticalagriculture-client.toml @@ -0,0 +1,6 @@ + +#General configuration options. +[General] + #Should Growth Accelerators use animated textures? + animatedGrowthAccelerators = true + diff --git a/config/mysticalagriculture-common.toml b/config/mysticalagriculture-common.toml new file mode 100644 index 0000000..f079d42 --- /dev/null +++ b/config/mysticalagriculture-common.toml @@ -0,0 +1,48 @@ + +#General configuration options. +[General] + #The amount of uses the basic Infusion Crystal should have. + #Range: > 10 + infusionCrystalUses = 1000 + #Should the Wither drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? + witherDropsCognizant = true + #Should vanilla crafting recipes for seeds be generated? + seedCraftingRecipes = false + #Should the Wither drop essence when killed with an essence weapon? + witherDropsEssence = true + #Should the Ender Dragon drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? + dragonDropsCognizant = true + #Should wearing a full set of Awakened Supremium armor grant the Plant Growth AOE set bonus? + awakenedSupremiumSetBonus = true + #Should Supremium Tools be enchantable in an Enchanting Table? + enchantableSupremiumTools = true + #The amount of time in seconds between each Growth Accelerator growth tick. + #Range: > 1 + growthAcceleratorCooldown = 10 + #Should fake players be able to use watering cans? + fakePlayerWatering = true + #Should the Ender Dragon drop essence when killed with an essence weapon? + dragonDropsEssence = true + #Should right clicking on Farmland with an Essence create Essence Farmland? + essenceFarmlandConversion = true + #Should crops have a chance of dropping a second seed when harvested? + secondarySeedDrops = true + #The percentage chance that harvesting a Resource Crop will drop a Fertilized Essence. + #Range: 0.0 ~ 1.0 + fertilizedEssenceChance = 0.1 + #The percentage chance that a passive or hostile mob will drop an Inferium Essence when killed. + #Range: 0.0 ~ 1.0 + inferiumDropChance = 0.2 + +#World generation options. +[World] + #The percentage chance a Soulium Ore spawns in a Soulstone cluster. + #Range: 0.0 ~ 1.0 + souliumOreChance = 0.05 + #Should Inferium Ore generate in the world? + generateInferiumOre = true + #Should Prosperity Ore generate in the world? + generateProsperityOre = true + #Should Soulstone generate in the world? + generateSoulstone = true + diff --git a/config/mythicbotany-client.toml b/config/mythicbotany-client.toml new file mode 100644 index 0000000..0df20e3 --- /dev/null +++ b/config/mythicbotany-client.toml @@ -0,0 +1,5 @@ +#Set to false to disable particles from the mythicbotany rings for your own player. You'll still see them from other players. +ring_particles = true +#Set to false to disable the background on Botania HUDs. +hud_backgrounds = true + diff --git a/config/mythicbotany.json5 b/config/mythicbotany.json5 new file mode 100644 index 0000000..3c2459d --- /dev/null +++ b/config/mythicbotany.json5 @@ -0,0 +1,171 @@ +{ + // Whether to add an extra ring slot to curios. + "addExtraRingSlot": true, + + // Whether the alfheim dimension is enabled. When this is set to false, you'll still be able to use + // the mead of kvasir as usual but the portal to alfheim will not work. + "enableAlfheim": true, + + // Whether players that manage to get to alfheim via another mod but have not drunk the mead of kvasir + // should get a blindness effect. + "lockAlfheim": true, + + // Whether to replace the recipe for the Gaia Pylon with a recipe that requires Alfsteel. + "replaceGaiaRecipe": true, + + "alftools": { + + // Jump boost modifier for the alfsteel boots + // Minimum: 0.0 + "jump_modifier": 0.025, + + // Knockback resistance modifier for the alfsteel chestplate + // Minimum: 0.0 + "knockback_resistance_modifier": 1, + + // Reach distance modifier for the alfsteel helmet + // Minimum: 0.0 + "reach_modifier": 2, + + // Speed modifier for the alfsteel leggings + // Minimum: 0.0 + "speed_modifier": 0.05, + + // Armor stats for alfsteel armor. + "armor_values": { + + "boots": { + "defense": 3, + "toughness": 3 + }, + "chestplate": { + "defense": 8, + "toughness": 3 + }, + "helmet": { + "defense": 3, + "toughness": 3 + }, + "leggings": { + "defense": 6, + "toughness": 3 + } + }, + + // Durability stats for alfsteel tools. + // max_durability is the maximum durability, a tool has + // mana_per_durability is the amount of mana consumed per durability loss + "durability": { + + "armor": { + "max_durability": 5200, + "mana_per_durability": 100 + }, + "axe": { + "max_durability": 4600, + "mana_per_durability": 200 + }, + "pickaxe": { + "max_durability": 4600, + "mana_per_durability": 200 + }, + "sword": { + "max_durability": 4600, + "mana_per_durability": 200 + } + }, + + "tool_values": { + + // The attack damage dealt by the alf blade + "sword_damage": 12, + + // The attack speed modifier for the alf blade + "sword_speed": 2.4 + } + }, + + "flowers": { + + // How much mana a wither aconite should generate per nether star. + // Minimum: 1 + "witherAconiteMana": 1200000, + + // Can be used to tweak the multipliers for the raindeletia. All matching values are multiplied + // The result is the mana generated per tick. + "raindeletia": { + + // Base modifier. This one will always be applied + // Minimum: 0.0 + "base": 5, + + // Modifier for dry grass + // Minimum: 0.0 + "dry_grass": 0.5, + + // Modifier for enchanted soil + // Minimum: 0.0 + "enchanted_soil": 5, + + // Modifier for normal rain, not for thunder + // Minimum: 0.0 + "rain": 0.09, + + // Modifier for thundering + // Minimum: 0.0 + "thunder": 3, + + // Modifier for vivid grass + // Minimum: 0.0 + "vivid_grass": 2 + } + }, + + "mjoellnir": { + + // The amount the attack speed increases per level of hammer mobility. + // Minimum: 0.0 + "attack_speed_multiplier": 0.2, + + // The base attack speed attribute for mjoellnir. + "base_attack_speed": -3.5, + + // The base damage for melee attacks. + // Minimum: 1.0 + "base_damage_melee": 25, + + // The base damage for the main target on ranged attacks. + // Minimum: 1.0 + "base_damage_ranged": 25, + + // Enchantment multiplier for sharpness and power enchantments. + // Minimum: 1.0 + "enchantment_multiplier": 5, + + // The cooldown in ticks after a ranged attack, before mjoellnir can be thrown again. + // Minimum: 0 + "ranged_cooldown": 120, + + // What is required for a player to hold mjoellnir. + // nothing - Players will always be able to hold mjoellnir. + // effect - Players need the absorption effect to hold mjoellnir. + // hearts - Players need absorption hearts to hold mjoellnir. + // If they run out of golden hearts but still have the effect, mjoellnir is dropped. + // Allowed values: nothing, effect, hearts + "requirement": "effect", + + // What is required for a player that holds the ring of thor to hold mjoellnir. + // If a player holds the ring of thor, this OR `mjoellnir.requirement` must be met. + // Allowed values: nothing, effect, hearts + "requirement_thor": "nothing", + + // The chance for secondary targets to get lightning effects applied as well on ranged attacks. + // Range: 0.0 - 1.0 + "secondary_lightning_chance": 0.25, + + // The damage dealt to secondary targets on ranged attacks. + // This value is multiplied with the damage to the main target. + // Range: 0.0 - 1.0 + "secondary_target_multiplier": 0.4 + } +} diff --git a/config/nasty-common.toml b/config/nasty-common.toml new file mode 100644 index 0000000..dd4a523 --- /dev/null +++ b/config/nasty-common.toml @@ -0,0 +1,82 @@ + +["Nasty Skeleton"] + #Minimum health + #Range: 4.0 ~ 5000.0 + MinHealth = 20.0 + #Maximum health + #Range: 20.0 ~ 5000.0 + MaxHealth = 30.0 + #Minimum Distance + #Range: 0.0 ~ 1280000.0 + MinDistance = 500.0 + #Maximum Distance + #Range: 0.0 ~ 1280000.0 + MaxDistance = 22500.0 + #Bonus Power + #Range: 0 ~ 10 + BonusPower = 2 + #Bonus Power for Hard + #Range: 0 ~ 20 + BonusHardPower = 4 + #Magic Damage for arrow used by purple skeleton + #Range: 0 ~ 50 + MagicDamage = 2 + #Poison Time + #Range: 1 ~ 30 + PoisonTime = 5 + #Yellow skeleton effect Time + #Range: 1 ~ 30 + YellowTime = 4 + #Spawn in Biome weight + #Range: 0 ~ 200 + SpawnBiome = 60 + #Spawn in Feature weight + #Range: 0 ~ 20 + SpawnFeature = 5 + #Spawn in Dungeon weight + #Range: 0 ~ 200 + SpawnDungeon = 80 + #Spawn light level adjustment (use 0 to be same as normal skeletons) + #Range: 0 ~ 15 + SpawnLightAdj = 0 + #Spawn block level adjustment (use 0 to be same as normal skeletons) + #Range: 0 ~ 15 + SpawnLightAdj2 = 0 + #Arrow Damage Multiplier (damage to skeleton) + #Range: 0.0 ~ 1.0 + ArrowDamageMultiplier = 0.85 + #Add inaccuracy to shot + #Range: 0.0 ~ 1.0 + AddInaccuracy = 0.3 + #Explosive Arrow cause Armor to drop + ExplosiveArrowOnArmor = false + #Explosive Arrow cause Block to drop + ExplosiveArrowOnBlock = false + #Explosive Arrow cause Shield to drop + ExplosiveArrowOnShield = false + #Use blindness instead of nausea for the yellow skeleton + UseBlindness = false + #Explosive Arrow strength + #Range: 1.0 ~ 1500.0 + ExplosiveArrowStrength = 3.0 + #Virus Distance for spreading + #Range: 0.0 ~ 20.0 + VirusDistance = 3.0 + #Virus Chance for spreading + #Range: 0.0 ~ 1.0 + VirusChance = 0.01 + #Spawn type based on Tempature + SpawnTempBased = false + #Spawn weights (Green,Red,Purple,Cyan,Orange,Yellow) + SpawnVariantWeights = "8,4,3,3,4,1" + #Biome adjustments (biome,variant,hp,speed) + BiomeAdjustments = ["minecraft:plains,*,-0.2,0.2", "minecraft:swamp,0,0.2,0.0", "minecraft:swamp,*,0.1,-0.1", "minecraft:badlands,*,0.3,0.3", "minecraft:dark_forest,*,0.3,0.3"] + +["Nasty Wolf"] + #Virus Mode + #Allowed Values: OFF, WILD, UNNAMED + VirusMode = "WILD" + #Virus Chance for spreading + #Range: 0.0 ~ 1.0 + VirusChance = 0.1 + diff --git a/config/naturalist.json b/config/naturalist.json new file mode 100644 index 0000000..8f48aeb --- /dev/null +++ b/config/naturalist.json @@ -0,0 +1,126 @@ +{ + "alligatorRemoved": false, + "bassRemoved": false, + "bearRemoved": true, + "bluejayRemoved": true, + "boarRemoved": true, + "butterflyRemoved": false, + "canaryRemoved": false, + "cardinalRemoved": false, + "catfishRemoved": true, + "coralSnakeRemoved": false, + "deerRemoved": false, + "dragonflyRemoved": false, + "duckRemoved": false, + "elephantRemoved": true, + "finchRemoved": false, + "fireflyRemoved": false, + "forestFoxRemoved": false, + "forestRabbitRemoved": false, + "giraffeRemoved": false, + "hippoRemoved": false, + "lionRemoved": false, + "lizardRemoved": false, + "rattlesnakeRemoved": true, + "rhinoRemoved": true, + "robinRemoved": false, + "snailRemoved": false, + "snakeRemoved": false, + "sparrowRemoved": false, + "tortoiseRemoved": false, + "vultureRemoved": false, + "zebraRemoved": false, + "alligatorSpawnWeight": 10, + "alligatorSpawnMinGroupSize": 2, + "alligatorSpawnMaxGroupSize": 3, + "bassSpawnWeight": 10, + "bassSpawnMinGroupSize": 3, + "bassSpawnMaxGroupSize": 6, + "bearSpawnWeight": 10, + "bearSpawnMinGroupSize": 1, + "bearSpawnMaxGroupSize": 2, + "bluejaySpawnWeight": 10, + "bluejaySpawnMinGroupSize": 3, + "bluejaySpawnMaxGroupSize": 4, + "boarSpawnWeight": 10, + "boarSpawnMinGroupSize": 3, + "boarSpawnMaxGroupSize": 4, + "butterflySpawnWeight": 10, + "butterflySpawnMinGroupSize": 3, + "butterflySpawnMaxGroupSize": 6, + "canarySpawnWeight": 10, + "canarySpawnMinGroupSize": 3, + "canarySpawnMaxGroupSize": 4, + "cardinalSpawnWeight": 10, + "cardinalSpawnMinGroupSize": 3, + "cardinalSpawnMaxGroupSize": 4, + "catfishSpawnWeight": 10, + "catfishSpawnMinGroupSize": 1, + "catfishSpawnMaxGroupSize": 2, + "coralSnakeSpawnWeight": 10, + "coralSnakeSpawnMinGroupSize": 1, + "coralSnakeSpawnMaxGroupSize": 1, + "deerSpawnWeight": 10, + "deerSpawnMinGroupSize": 3, + "deerSpawnMaxGroupSize": 5, + "dragonflySpawnWeight": 10, + "dragonflySpawnMinGroupSize": 2, + "dragonflySpawnMaxGroupSize": 4, + "duckSpawnWeight": 10, + "duckSpawnMinGroupSize": 3, + "duckSpawnMaxGroupSize": 4, + "elephantSpawnWeight": 5, + "elephantSpawnMinGroupSize": 1, + "elephantSpawnMaxGroupSize": 3, + "finchSpawnWeight": 10, + "finchSpawnMinGroupSize": 3, + "finchSpawnMaxGroupSize": 4, + "fireflySpawnWeight": 10, + "fireflySpawnMinGroupSize": 2, + "fireflySpawnMaxGroupSize": 4, + "forestFoxSpawnWeight": 10, + "forestFoxSpawnMinGroupSize": 1, + "forestFoxSpawnMaxGroupSize": 2, + "forestRabbitSpawnWeight": 10, + "forestRabbitSpawnMinGroupSize": 2, + "forestRabbitSpawnMaxGroupSize": 3, + "giraffeSpawnWeight": 5, + "giraffeSpawnMinGroupSize": 1, + "giraffeSpawnMaxGroupSize": 3, + "hippoSpawnWeight": 10, + "hippoSpawnMinGroupSize": 1, + "hippoSpawnMaxGroupSize": 3, + "lionSpawnWeight": 3, + "lionSpawnMinGroupSize": 1, + "lionSpawnMaxGroupSize": 3, + "lizardSpawnWeight": 10, + "lizardSpawnMinGroupSize": 1, + "lizardSpawnMaxGroupSize": 1, + "rattlesnakeSpawnWeight": 10, + "rattlesnakeSpawnMinGroupSize": 1, + "rattlesnakeSpawnMaxGroupSize": 1, + "rhinoSpawnWeight": 1, + "rhinoSpawnMinGroupSize": 1, + "rhinoSpawnMaxGroupSize": 3, + "robinSpawnWeight": 10, + "robinSpawnMinGroupSize": 3, + "robinSpawnMaxGroupSize": 4, + "snailSpawnWeight": 10, + "snailSpawnMinGroupSize": 2, + "snailSpawnMaxGroupSize": 3, + "snakeSpawnWeight": 10, + "snakeSpawnMinGroupSize": 1, + "snakeSpawnMaxGroupSize": 1, + "sparrowSpawnWeight": 10, + "sparrowSpawnMinGroupSize": 3, + "sparrowSpawnMaxGroupSize": 4, + "tortoiseSpawnWeight": 10, + "tortoiseSpawnMinGroupSize": 1, + "tortoiseSpawnMaxGroupSize": 1, + "vultureSpawnWeight": 3, + "vultureSpawnMinGroupSize": 3, + "vultureSpawnMaxGroupSize": 5, + "zebraSpawnWeight": 1, + "zebraSpawnMinGroupSize": 2, + "zebraSpawnMaxGroupSize": 6 +} diff --git a/config/naturesaura-common.toml b/config/naturesaura-common.toml new file mode 100644 index 0000000..ef0551a --- /dev/null +++ b/config/naturesaura-common.toml @@ -0,0 +1,72 @@ + +[general] + #Additional conversion recipes for the Botanist's Pickaxe right click function. Each entry needs to be formatted as modid:input_block[prop1=value1,...]->modid:output_block[prop1=value1,...] where block state properties are optional, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalBotanistPickaxeConversions = [] + #Additional dimensions that map to Aura types that should be present in them. This is useful if you have a modpack with custom dimensions that should have Aura act similarly to an existing dimension in them. Each entry needs to be formatted as dimension_name->aura_type, where aura_type can be any of naturesaura:overworld, naturesaura:nether and naturesaura:end, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + auraTypeOverrides = [] + #Additional blocks that are recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as tag_name->oreWeight->dimension where a higher weight makes the ore more likely to spawn with 5000 being the weight of coal, the default ore with the highest weight, and dimension being any of overworld and nether, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalOres = [] + #Blocks that are exempt from being recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as modid:block[prop1=value1,...] where block state properties are optional, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + oreExceptions = [] + #Blocks that are exept from being fertilized by the plant boost effect. Each entry needs to be formatted as modid:block, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + plantBoostExceptions = [] + #Additional projectile types that are allowed to be consumed by the projectile generator. Each entry needs to be formatted as entity_registry_name->aura_amount, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalProjectiles = [] + #The amount of blocks that can be between two Aura Field Creators for them to be connectable and work together + fieldCreatorRange = 24 + #The Aura to RF ratio used by the RF converter, read as aura*ratio = rf + auraToRFRatio = 0.05 + #The maximum amount of animals that can be around the powder of fertility before it stops working + maxAnimalsAroundPowder = 200 + #The maximum amount of blocks that aura can spread from an initial position before it starts fizzling out. It's recommended to lower this value on a large server to avoid lag caused by players chunk-loading their bases for extended amounts of time without an Aura Detector present. + maxAuraSpreadRange = 100 + +[features] + #If the RF converter block should be enabled + rfConverter = true + #If the chunk loader block should be enabled + chunkLoader = true + #If the Aura Imbalance effect of grass and trees dying in the area if the Aura levels are too low should occur + grassDieEffect = true + #If the Aura Imbalance effect of nether blocks degrading in the area if the Aura levels are too low should occur + netherDecayEffect = true + #If the Aura Imbalance effect of plant growth being boosted if the Aura levels are high enough should occur + plantBoostEffect = true + #If the Aura Imbalance effect of aura containers in players' inventories being filled if the Aura levels are high enough should occur + cacheRechargeEffect = true + #If the Aura Imbalance effect of explosions happening randomly if Aura levels are too low should occur + explosionEffect = true + #If the Aura Imbalance effect of breathlessness if Aura levels are too low should occur + breathlessEffect = true + #If the Aura Imbalance effect of passive mobs being angered if Aura levels are too low should occur + angerEffect = true + #If the Aura Imbalance effect of farm animals being affected in positive ways if Aura levels are too high should occur + animalEffect = true + #If the Aura Imbalance effect of ores spawning in the area if Aura levels are too high should occur + oreEffect = true + #If Aura Blooms and Aura Cacti should generate in the level + auraBlooms = true + #If the Aura Imbalance effect of grass growing on netherrack if the Aura levels are high enough should occur + netherGrassEffect = true + +[client] + #The percentage of particles that should be displayed, where 1 is 100% and 0 is 0% + #Range: 0.0 ~ 1.0 + particleAmount = 1.0 + #If particle spawning should respect the particle setting in Minecraft's video settings screen + respectVanillaParticleSettings = false + #The percentage of particles that should spawn when there is an excess amount of Aura in the environment, where 1 is 100% and 0 is 0% + excessParticleAmount = 1.0 + #The location of the aura bar, where 0 is top left, 1 is top right, 2 is bottom left and 3 is bottom right + #Range: 0 ~ 3 + auraBarLocation = 0 + #The location of the aura cache bar, where 0 is to the left of the hotbar and 1 is to the right of the hotbar + #Range: 0 ~ 1 + cacheBarLocation = 0 + #If debug information about Aura around the player should be displayed in the F3 debug menu if the player is in creative mode + debugText = true + #If, when the F3 debug menu is open and the player is in creative mode, every Aura spot should be highlighted in the level for debug purposes + debugLevel = false + #If certain equippable items, like the Environmental Eye, should be rendered on the player + renderItemsOnPlayer = true + diff --git a/config/naturescompass-client.toml b/config/naturescompass-client.toml new file mode 100644 index 0000000..a60cb99 --- /dev/null +++ b/config/naturescompass-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Displays Nature's Compass information even while chat is open. + displayWithChatOpen = true + #Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills + fixBiomeNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 1 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "LEFT" + diff --git a/config/naturescompass-common.toml b/config/naturescompass-common.toml new file mode 100644 index 0000000..e6d5879 --- /dev/null +++ b/config/naturescompass-common.toml @@ -0,0 +1,29 @@ + +[General] + #Allows a player to teleport to a located biome when in creative mode, opped, or in cheat mode. + allowTeleport = true + #Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. + displayCoordinates = true + #biomeSize * radiusModifier = maxSearchRadius. Raising this value will increase search accuracy but will potentially make the process more resource . + #Range: 0 ~ 1000000 + radiusModifier = 2500 + #biomeSize * sampleSpaceModifier = sampleSpace. Lowering this value will increase search accuracy but will make the process more resource intensive. + #Range: 0 ~ 1000000 + sampleSpaceModifier = 16 + #A list of biomes that the compass will not be able to search for, specified by resource location. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:savanna", "minecraft:desert", "minecraft:*ocean*"] + biomeBlacklist = [] + #The maximum number of samples to be taken when searching for a biome. + #Range: 0 ~ 1000000 + maxSamples = 50000 + #The maximum number of times a player can search for the next instance of a located biome. Set to 0 to disable searching for additional biome instances and make the compass always locate the nearest biome. + #Range: 0 ~ 10000 + maxNextSearches = 25 + #The default number of XP levels consumed when searching for a biome. Individual biomes can be configured via perBiomeXpLevels. + #Range: 0 ~ 3 + defaultXpLevels = 0 + #A list of per-biome XP level costs that override defaultXpLevels, specified as comma-separated "biome_id,num_levels" pairs. Biomes not listed here use defaultXpLevels. Max of 3 levels. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:deep_dark,3", "minecraft:end*,2", "minecraft:*caves,3"] + perBiomeXpLevels = [] + #The number of successful biome searches before the compass breaks and must be repaired. Set to 0 to disable durability. + #Range: 0 ~ 10000 + compassDurability = 0 + diff --git a/config/necronomicon.json5 b/config/necronomicon.json5 new file mode 100644 index 0000000..472a3e6 --- /dev/null +++ b/config/necronomicon.json5 @@ -0,0 +1,17 @@ +{ + // This is used to debug stuff + "debug": false, + // A test boolean + "test": false, + // A list! + // Supports multiple values using List.of() + "list": [ + "test", + "test2" + ], + "exampleColors": { + "red": 255, + "green": 255, + "blue": 255 + } +} \ No newline at end of file diff --git a/config/nerb.yaml b/config/nerb.yaml new file mode 100644 index 0000000..2ead480 --- /dev/null +++ b/config/nerb.yaml @@ -0,0 +1,6 @@ +# Recipe Book mode: +# DISABLED: Removes the recipe book button with its default functionality from your inventory. +# ENABLED: Retains the recipe book button in your inventory, but its default functionality remains disabled. +# DISCOVERED: Automatically unlocks all existing recipes in your recipe book. Does not apply any optimizations. +# TOGGLE: Keeps the recipe book button in your inventory, but instead of toggling the recipe book, it toggles the visibility of the JEI/REI/EMI UI. Its default functionality remains disabled. +buttonMode: TOGGLE diff --git a/config/neruina.json b/config/neruina.json new file mode 100644 index 0000000..1488f1c --- /dev/null +++ b/config/neruina.json @@ -0,0 +1,12 @@ +{ + "min_permission_level_for_messages": 0, + "min_permission_level_for_commands": 2, + "auto_kill_ticking_entities": false, + "kill_players_instead": false, + "ticking_exception_threshold": 10, + "handle_ticking_entities": true, + "handle_ticking_block_entities": true, + "handle_ticking_block_states": true, + "handle_ticking_item_stacks": true, + "handle_ticking_players": true +} \ No newline at end of file diff --git a/config/nightconfigfixes.toml b/config/nightconfigfixes.toml new file mode 100644 index 0000000..8ae9c6a --- /dev/null +++ b/config/nightconfigfixes.toml @@ -0,0 +1,12 @@ +#When single config values need to be corrected (think like the config value is a number 1-10, but the user enters an incompatible input like '5.0', in that case only this single value needs fixing not the whole file), +#Forge restores the built-in default value for that option, but ignores a value that is set in a possibly present default config in 'defaultconfigs'. +#This option fixes this behavior and checks for a value in a default config from 'defaultconfigs' before falling back to the built-in default. +correctConfigValuesFromDefaultConfig = true +#Config loading from a file config appears to occasionally fail and throw a com.electronwill.nightconfig.core.io.ParsingException: Not enough data available. +#This workaround catches the exception, and recreates a fresh file to try config loading for again. If loading fails for the new file the original exception is thrown. +#To make sure any required changes through configs stay intact through such recreations, placed your changed configs in the 'defaultconfigs' directory. +recreateConfigsWhenParsingFails = true +#Prevent server config files from being saved inside the current world directory. Instead, save them to the global config directory in .minecraft/config/. +#This option effectively disables per world server configs, but helps a lot with avoiding user confusion. +forceGlobalServerConfigs = false + diff --git a/config/nostartupmessages-common.toml b/config/nostartupmessages-common.toml new file mode 100644 index 0000000..f92dd23 --- /dev/null +++ b/config/nostartupmessages-common.toml @@ -0,0 +1,3 @@ +#A list of messages that if contained in a message will be stopped. +messages = ["You are using a beta version of Railcraft Reborn", "This game is using an alpha build of Ender IO", "This pack contains Observable", "Ars Nouveau adds bulit in", "Hello, and thank you for downloading Terralith!", "[Mekanism]"] + diff --git a/config/notenoughanimations.json b/config/notenoughanimations.json new file mode 100644 index 0000000..93ce604 --- /dev/null +++ b/config/notenoughanimations.json @@ -0,0 +1,78 @@ +{ + "configVersion": 11, + "animationSmoothingSpeed": 0.2, + "holdingItems": [ + "quad-mstv-mtv:pale_oak_torch", + "quad-mstv-mtv:bamboo_torch", + "minecraft:clock", + "quad-mstv-mtv:spruce_soul_torch", + "minecraft:compass", + "minecraft:soul_torch", + "quad-mstv-mtv:jungle_soul_torch", + "quad-mstv-mtv:birch_soul_torch", + "quad-mstv-mtv:warped_soul_torch", + "minecraft:torch", + "quad-mstv-mtv:bamboo_soul_torch", + "quad-mstv-mtv:mangrove_torch", + "quad-mstv-mtv:cherry_soul_torch", + "minecraft:recovery_compass", + "quad-mstv-mtv:jungle_torch", + "quad-mstv-mtv:mangrove_soul_torch", + "minecraft:soul_lantern", + "quad-mstv-mtv:acacia_torch", + "quad-mstv-mtv:cherry_torch", + "quad-mstv-mtv:spruce_torch", + "quad-mstv-mtv:dark_oak_soul_torch", + "quad-mstv-mtv:warped_torch", + "minecraft:lantern", + "quad-mstv-mtv:crimson_soul_torch", + "quad-mstv-mtv:pale_oak_soul_torch", + "quad-mstv-mtv:birch_torch", + "quad-mstv-mtv:acacia_soul_torch", + "quad-mstv-mtv:crimson_torch", + "quad-mstv-mtv:dark_oak_torch" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": true, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": true, + "enableHorseAnimation": true, + "enableHorseLegAnimation": false, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "limitRotationLockToFP": true, + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "CONFIG", + "holdUpTarget": "CAMERA", + "holdUpCameraOffset": 0.1, + "holdUpOnlySelf": false, + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": false, + "freezingAnimation": true, + "huggingAnimation": false, + "narutoRunning": false, + "enableInWorldBookRendering": false, + "disableLegSmoothing": false, + "bowAnimation": "VANILLA", + "burningAnimation": true +} \ No newline at end of file diff --git a/config/numismatics-utils-client.toml b/config/numismatics-utils-client.toml new file mode 100644 index 0000000..4ce1e56 --- /dev/null +++ b/config/numismatics-utils-client.toml @@ -0,0 +1,13 @@ + +["Numismatics Utils"] + #The horizontal offset of the Bank Meter text (in pixels) + #Default is 2. + hud_x_position = 2 + #The vertical offset of the Bank Meter text (in pixels) + #Default is 2. + hud_y_position = 2 + #The scale of the Bank Meter text. + #Default is 1.0. + #Range: 0.5 ~ 10.0 + hud_scale = 1.0 + diff --git a/config/nyfsspiders.toml b/config/nyfsspiders.toml new file mode 100644 index 0000000..d04778f --- /dev/null +++ b/config/nyfsspiders.toml @@ -0,0 +1,5 @@ +#Whether the path finder debug preview should be enabled. +path_finder_debug_preview = false +#Whether spiders should be prevented from climbing in rain. +prevent_climbing_in_rain = false + diff --git a/config/occultengineering-client.toml b/config/occultengineering-client.toml new file mode 100644 index 0000000..b8e8bd1 --- /dev/null +++ b/config/occultengineering-client.toml @@ -0,0 +1,9 @@ + +#. +#Client-only settings +[client] + #. + #The vision range through Spirit Solution will be multiplied by this factor + #Range: 0.125 ~ 256.0 + spirit_solution = 1.0 + diff --git a/config/occultism-client.toml b/config/occultism-client.toml new file mode 100644 index 0000000..9651fe7 --- /dev/null +++ b/config/occultism-client.toml @@ -0,0 +1,42 @@ + +#Visual Settings +[visual] + #Shows all tags an item has in the tooltip on hover if advanced tooltips (F3+H) are enabled. + showItemTagsInTooltip = false + #Disables the headache- and possibly seizure-inducing visual effects of Demon's Dream. + disableDemonsDreamShaders = false + #Disables holiday themed visual content such as familiar skins. + disableHolidayTheming = false + #When true the old divination rod selected block renderer will be used. + #May work for some people that do not see selected block outlines when using the divination rod. + useAlternativeDivinationRodRenderer = false + #The integer code of the color of the white chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + whiteChalkGlyphColor = 16777215 + #The integer code of the color of the golden chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + goldenChalkGlyphColor = 15783680 + #The integer code of the color of the purple chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + purpleChalkGlyphColor = 10224531 + #The integer code of the color of the red chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness this value should be changed to a green color, we recommend 33289 (= Hex 0x008209) + redChalkGlyphColor = 13369601 + +#Misc Settings +[misc] + #Sync JEI search in storage actuator. + syncJeiSearch = false + #If true, divination rod will render all matching blocks with an outline. Disable if it causes lag. + #This setting will be unused, if Theurgy is installed alongside, as Occultism will use Theurgy's divination rod result rendering instead. + divinationRodHighlightAllResults = false + #The scan range in blocks for the divination rod. Too high might cause lags + #Range: > 1 + divinationRodScanRange = 129 + #Disables the sound played when a spirit fire successfully crafted an item. + disableSpiritFireSuccessSound = false + diff --git a/config/oculus.properties b/config/oculus.properties new file mode 100644 index 0000000..fc02a9c --- /dev/null +++ b/config/oculus.properties @@ -0,0 +1,8 @@ +#This file stores configuration options for Iris, such as the currently active shaderpack +#Sun Jul 19 16:06:37 GMT 2026 +colorSpace=SRGB +disableUpdateMessage=true +enableDebugOptions=false +enableShaders=false +maxShadowRenderDistance=32 +shaderPack=Fantasy Shaders Unbound v1.1.zip diff --git a/config/oculus_shader_bypass-client.toml b/config/oculus_shader_bypass-client.toml new file mode 100644 index 0000000..0b6bac2 --- /dev/null +++ b/config/oculus_shader_bypass-client.toml @@ -0,0 +1,5 @@ + +[shader_bypass] + #Allow unknown shaders to load (bypass restrictions). + allowUnknownShaders = true + diff --git a/config/okzoomer-client.toml b/config/okzoomer-client.toml new file mode 100644 index 0000000..4d700c0 --- /dev/null +++ b/config/okzoomer-client.toml @@ -0,0 +1,84 @@ + +[features] + #Defines the cinematic camera while zooming. + #'OFF' disables the cinematic camera + #'VANILLA' uses Vanilla's cinematic camera. + #'MULTIPLIED' is a multiplied variant of 'VANILLA' + #Allowed Values: OFF, VANILLA, MULTIPLIED + cinematic_camera = "OFF" + #Reduces the mouse sensitivity when zooming. + reduce_sensitivity = true + #Adds transitions between zooms. + #'OFF' disables transitions. + #'SMOOTH' replicates Vanilla's dynamic FOV. + #'LINEAR' removes the smoothiness. + #Allowed Values: OFF, SMOOTH, LINEAR + zoom_transition = "SMOOTH" + #The behavior of the zoom key. + #'HOLD' needs the zoom key to be hold. + #'TOGGLE' has the zoom key toggle the zoom. + #'PERSISTENT' makes the zoom permanent. + #Allowed Values: HOLD, TOGGLE, PERSISTENT + zoom_mode = "HOLD" + #Allows to increase or decrease zoom by scrolling. + zoom_scrolling = true + #Adds zoom manipulation keys along with the zoom key. + #Note that this config will NOT prevent the keybinds from being registered, but they will become unusable if false. + extra_key_binds = true + #Adds an overlay in the screen during zoom. + #'VIGNETTE' uses a vignette as the overlay. + #'SPYGLASS' uses the spyglass overlay with the vignette texture. + #The vignette texture can be found at: assets/okzoomer/textures/misc/zoom_overlay.png + #Allowed Values: OFF, VIGNETTE, SPYGLASS + zoom_overlay = "OFF" + #Determines how the zoom will depend on the spyglass. + #'REQUIRE_ITEM' will make zooming require a spyglass. + #'REPLACE_ZOOM' will replace spyglass's zoom with Ok Zoomer's zoom. + #'BOTH' will apply both options at the same time. + #The 'REQUIRE_ITEM' option is configurable through the okzoomer:zoom_dependencies item tag. + #Allowed Values: OFF, REQUIRE_ITEM, REPLACE_ZOOM, BOTH + spyglass_dependency = "OFF" + #If the OkZoomer overlay should be disabled when the HUD is hidden. (F1 mode) + disable_overlay_no_hud = true + +[values] + #The divisor applied to the FOV when zooming. + #Range: 0.0 ~ 1.7976931348623157E308 + zoom_divisor = 4.0 + #The minimum value that you can scroll down. + #Range: 0.0 ~ 1.7976931348623157E308 + minimum_zoom_divisor = 1.0 + #The maximum value that you can scroll down. + #Range: 0.0 ~ 1.7976931348623157E308 + maximum_zoom_divisor = 50.0 + #The number of steps between the zoom divisor and the maximum zoom divisor. + #Used by zoom scrolling. + #Range: > 0 + upper_scroll_steps = 20 + #The number of steps between the zoom divisor and the minimum zoom divisor. + #Used by zoom scrolling. + #Range: > 0 + lower_scroll_steps = 4 + #The multiplier used for smooth transitions. + #Range: -1.0 ~ 1.0 + smooth_multiplier = 0.75 + #The multiplier used for the multiplied cinematic camera. + #Range: -4.0 ~ 4.0 + cinematic_multiplier = 4.0 + #The minimum value that the linear transition step can reach. + #Range: 0.0 ~ 1.7976931348623157E308 + minimum_linear_step = 0.125 + #The maximum value that the linear transition step can reach. + #Range: 0.0 ~ 1.7976931348623157E308 + maximum_linear_step = 0.25 + +[tweaks] + #Allows resetting the zoom with the middle mouse button. + reset_zoom_with_mouse = true + #If enabled, the spyglass overlay texture is used instead of Ok Zoomer's overlay texture. + use_spyglass_texture = false + #If enabled, the zoom will use spyglass sounds on zooming in and out. + use_spyglass_sounds = false + #Shows toasts when the server imposes a restriction. + show_restriction_toasts = true + diff --git a/config/opolis_utilities.toml b/config/opolis_utilities.toml new file mode 100644 index 0000000..599e497 --- /dev/null +++ b/config/opolis_utilities.toml @@ -0,0 +1,35 @@ + +["Opolis Utilities Config File"] + #Cooldown in ticks of the home stone, default = 6000 + "Home Stone Cooldown" = 6000 + #Does the home stone take damge when teleporting, default = true + "Home Stone Durability" = true + #URL for your discord + "Discord URL" = "https://discord.gg/benbenlaw" + #Modpack name + "Modpack name" = "TESTMODPACK" + #Modpack Version + "Modpack Version" = "VERSION" + #Mobs basic loot bag drop chance 0.0 = always, 1.0 = never, 0.5 = 50% chance, default = 0.75 + "Mob Drop Chance" = 0.95 + #Additional rolls when using the crook on leaves + "Additional Crook Rolls" = 3 + #The max range of the Ender Scrambler + "(WIP)Max Ender Scrambler Range" = 8 + #The min range of the Ender Scrambler + "(WIP)Min Ender Scrambler Range" = 8 + #The number of attempts to grow a sapling per right click + "(WIP)Total Attempts for Sapling Grower" = 128 + #Can the animal net capture hostile mobs, default = false + "Animal Net: Hostile Mobs" = false + #Can the animal net capture water mobs, default = true + "Animal Net: Water Mobs" = true + #Can the animal net capture animal mobs, default = true + "Animal Net: Animal Mobs" = true + #Can the animal net capture villager mobs, default = false + "Animal Net: Villager Mobs" = false + #Does the animal net take damage when capturing mobs, default = true + "Animal Net: Takes Damage?" = true + #Do wooden buttons make a doorbell sound, default = false + "Wooden Buttons Make Doorbell Sound" = false + diff --git a/config/out_of_sight-client.toml b/config/out_of_sight-client.toml new file mode 100644 index 0000000..8a227b9 --- /dev/null +++ b/config/out_of_sight-client.toml @@ -0,0 +1,10 @@ + +#General mod settings +[general] + #Range: 1.0 ~ 30000.0 + tileEntityRenderRangeMax = 48.0 + #Range: 1.0 ~ 30000.0 + entityRenderRangeMax = 48.0 + tileEntityRenderLimitModdedOnly = false + entityRenderLimitModdedOnly = false + diff --git a/config/overflowingbars-client.toml b/config/overflowingbars-client.toml new file mode 100644 index 0000000..656328a --- /dev/null +++ b/config/overflowingbars-client.toml @@ -0,0 +1,62 @@ + +[toughness] + #Render a separate armor bar for the armor toughness attribute (from diamond and netherite armor). + #Having only this option active will make the toughness bar behave just like vanilla's armor bar without any colorful stacking or so. + armor_toughness_bar = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Shift toughness bar up or down by specified number of icon rows. Allows for better mod compat on Fabric, has no effect on Forge. + #Range: -5 ~ 5 + toughness_bar_row_shift = 0 + #Render the toughness bar on the left side above the hotbar (where health and armor is rendered). + left_side = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Don't draw empty armor points, this will make the armor bar potentially shorter. + skip_empty_armor_points = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[health] + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[armor] + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Don't draw empty armor points, this will make the armor bar potentially shorter. + skip_empty_armor_points = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[row_count] + #Color of row count, use any chat formatting color value. + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + row_count_color = "WHITE" + #Only include completely filled rows for the row count. + count_full_rows_only = false + #Force drawing row count using the font renderer, will make numbers display larger. + force_font_renderer = false + #Show row count also when only one row is present. + always_render_row_count = false + #Render an 'x' together with the row count number. + row_count_x = true + +[general] + #Move chat messages above armor/absorption bar. + move_chat_above_armor = true + #Move the experience level display above the experience bar. + move_experience_above_bar = true + diff --git a/config/packetfixer.properties b/config/packetfixer.properties new file mode 100644 index 0000000..44838e2 --- /dev/null +++ b/config/packetfixer.properties @@ -0,0 +1,15 @@ +#Packet Fixer config file. +#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3. +#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. +#Sun Jul 19 16:06:31 GMT 2026 +allSizesUnlimited=true +chunkPacketData=2097152 +decoderSize=8388608 +forceUnlimitedNbtEnabled=false +nbtMaxSize=2097152 +packetSize=1048576 +stringSize=32767 +timeout=120 +varInt=5 +varInt21=3 +varLong=10 diff --git a/config/paintings-client.toml b/config/paintings-client.toml new file mode 100644 index 0000000..c082952 --- /dev/null +++ b/config/paintings-client.toml @@ -0,0 +1,5 @@ + +[general] + #Pick True to show the size of paintings in the painting gui + show_painting_size = true + diff --git a/config/pamhc2trees.toml b/config/pamhc2trees.toml new file mode 100644 index 0000000..b7e8144 --- /dev/null +++ b/config/pamhc2trees.toml @@ -0,0 +1,5 @@ + +["Right-click Fruit Tree Harvesting Settings"] + #Disable/enable right-click harvesting of tree fruits + "Enable right-click harvesting for tree fruits" = true + diff --git a/config/paraglider-common.toml b/config/paraglider-common.toml new file mode 100644 index 0000000..9501754 --- /dev/null +++ b/config/paraglider-common.toml @@ -0,0 +1,27 @@ + +#Easy to access switches to toggle side features on and off. +#Most of them requires server restart or datapack reload. All of them, actually. +[features] + #For those who wants to remove Spirit Orbs generated in the world, more specifically... + # * Spirit Orbs generated in various chests + # * Spirit Orbs dropped by spawners and such + #Note that bargain recipe for Heart Containers/Stamina Vessels will persist, even if this option is disabled. + spiritOrbGens = true + #For those who wants to remove entirety of Heart Containers from the game, more specifically... + # * Heart Containers obtained by "challenges" (i.e. Killing dragon, wither, raid) + # * Bargains using Heart Containers (custom recipes won't be affected) + #Note that if this option is disabled while staminaVessels is enabled, "challenges" will drop stamina vessels instead. + heartContainers = true + #For those who wants to remove entirety of Stamina Vessels from the game, more specifically... + # * Bargains using Stamina Vessels (custom recipes won't be affected) + staminaVessels = true + #For those who wants to remove all structures added by this mod. Requires restart. + structures = true + +[debug] + debugPlayerMovement = false + traceMovementPacket = false + traceVesselPacket = false + traceBargainPacket = false + traceWindPacket = false + diff --git a/config/paraglider-player-states.toml b/config/paraglider-player-states.toml new file mode 100644 index 0000000..dfe959f --- /dev/null +++ b/config/paraglider-player-states.toml @@ -0,0 +1,74 @@ + +#Configuration file for player states. +#You can adjust stamina delta (negative value means consumption / positive value means gain) and +#recovery delay (in ticks) of all player states registered in the game. +#To reload the config, use the following command: /paraglider reloadPlayerStates +# +[paraglider] + + [paraglider.ascending] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.breathing_underwater] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.flying] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.idle] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.midair] + #Range: > -2147483648 + staminaDelta = 0 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.on_vehicle] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.panic_paragliding] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.paragliding] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.running] + #Range: > -2147483648 + staminaDelta = -10 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.swimming] + #Range: > -2147483648 + staminaDelta = -6 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.underwater] + #Range: > -2147483648 + staminaDelta = 3 + #Range: > 0 + recoveryDelay = 0 + diff --git a/config/particle_core_config.toml b/config/particle_core_config.toml new file mode 100644 index 0000000..7fc14c0 --- /dev/null +++ b/config/particle_core_config.toml @@ -0,0 +1,12 @@ +# Don't change this! Version used to track needed updates. +version = 1 +disableParticles = false +byTypeReductions = { } +maxParticlesPerSheet = 8192 +particleRenderDistanceMultiplier = 0.75 +asynchronousTicking = true +reduceAllChance = 0.25 +reduceDecreasedChance = 0.25 +turnOffPotionParticlesV2 = [ + "NONE" +] \ No newline at end of file diff --git a/config/particle_core_disabled_optimizations_v2.json b/config/particle_core_disabled_optimizations_v2.json new file mode 100644 index 0000000..8244f49 --- /dev/null +++ b/config/particle_core_disabled_optimizations_v2.json @@ -0,0 +1,17 @@ +{ + "_Disable_Optimizations_Options": { + "ROTATION": "[Impact: Medium] Disables mixins related to vertex rotation caching (ParticleManagerRotationMixin, BillboardParticleMixin)", + "TYPE": "[Impact: Low to Medium] Disables mixins related to particle disabling and reduction (WorldRendererTypeMixin, ParticleManagerCreatorMixin, FireworksSparkParticleMixin)", + "DECREASE": "[Impact: Low] Disables mixins related particle settings reduction (ALL, DECREASED, MINIMAL) (WorldRendererDecreaseMixin)", + "LIGHTMAP": "[Impact: Medium] Disables mixins related to light map caching (ParticleManagerCachedLightMixin, ParticleBrightnessCacheMixin, ParticleCachePosMixin, ParticleManagerCachedPosMixin)", + "POTION": "[Impact: Low] Disables mixins related to potion particle disabling (LivingEntityMixin)", + "MOVE": "[Impact: Medium] Disables mixins related to particle movement optimization (ParticleMoveAdjustMixin, ParticleCachePosMixin, ParticleManagerCachedPosMixin)", + "VERTEX": "[Impact: HIGH] Disables mixins related to particle vertex drawing optimizations (BillboardParticleVertexMixin, BufferBuilderVertexMixin)", + "COUNT": "[Impact: Variable] Disables mixins related to max particle count setting (ParticleManagerCountMixin)", + "ASYNC": "[Impact: Medium] Disables asynchronous ticking of particles (ParticleManagerAsyncMixin)", + "RENDER_DISTANCE": "[Impact: Variable] Disables mixins that control max particle render distance (ParticleManagerRenderDistanceMixin, ParticleAccessor)" + }, + "disableOptimizations": [ + "NONE" + ] +} \ No newline at end of file diff --git a/config/passiveskilltreeadditions-client.toml b/config/passiveskilltreeadditions-client.toml new file mode 100644 index 0000000..ee3bb4c --- /dev/null +++ b/config/passiveskilltreeadditions-client.toml @@ -0,0 +1,9 @@ + +["Button Settings"] + #X position of the Passive Skill Tree button in the inventory screen + #Range: > 0 + buttonX = 63 + #Y position of the Passive Skill Tree button in the inventory screen + #Range: > 0 + buttonY = 68 + diff --git a/config/patchouli-client.toml b/config/patchouli-client.toml new file mode 100644 index 0000000..ecdf233 --- /dev/null +++ b/config/patchouli-client.toml @@ -0,0 +1,16 @@ +#Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled +disableAdvancementLocking = false +#Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_ +noAdvancementBooks = [] +#Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode +testingMode = false +#Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book. +inventoryButtonBook = "" +#Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature. +useShiftForQuickLookup = false +#Set how text overflow should be coped with: overflow the text off the page, truncate overflowed text, or resize everything to fit. Relogin after changing. +#Allowed Values: OVERFLOW, TRUNCATE, RESIZE +textOverflowMode = "RESIZE" +#How long in ticks the quick lookup key needs to be pressed before the book opens +quickLookupTime = 10 + diff --git a/config/patchouli_library-client.toml b/config/patchouli_library-client.toml new file mode 100644 index 0000000..3a6c621 --- /dev/null +++ b/config/patchouli_library-client.toml @@ -0,0 +1,19 @@ + +[config_v1] + #Horizontal offset for the book button, relative to left of inventory panel. + #Range: > -2147483648 + buttonXOffset = 4 + #Vertical offset for the book button, relative to top of inventory panel. + #Range: > -2147483648 + buttonYOffset = -24 + #Horizontal offset for the pinned books buttons, relative to left of inventory panel. + #Range: > -2147483648 + pinnedBooksXOffset = -21 + #Vertical offset for the pinned books buttons, relative to top of inventory panel. + #Range: > -2147483648 + pinnedBooksYOffset = -24 + #Pinned book ids. + pinnedBooks = [] + #Show Patchouli fumo as books list button icon + patchouliFumoAsButtonIcon = false + diff --git a/config/paxi/datapack_load_order.json b/config/paxi/datapack_load_order.json new file mode 100644 index 0000000..1868fa5 --- /dev/null +++ b/config/paxi/datapack_load_order.json @@ -0,0 +1,3 @@ +{ + "loadOrder": [] +} \ No newline at end of file diff --git a/config/paxi/datapacks/GobberxCreate.zip b/config/paxi/datapacks/GobberxCreate.zip new file mode 100644 index 0000000..15ca306 Binary files /dev/null and b/config/paxi/datapacks/GobberxCreate.zip differ diff --git a/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip b/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip new file mode 100644 index 0000000..10d3a0e Binary files /dev/null and b/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip b/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip new file mode 100644 index 0000000..33ea347 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip new file mode 100644 index 0000000..fa346f7 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip new file mode 100644 index 0000000..3ef0a65 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip new file mode 100644 index 0000000..9028c12 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip new file mode 100644 index 0000000..26a47e0 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip new file mode 100644 index 0000000..4f3b606 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip b/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip new file mode 100644 index 0000000..c579226 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip b/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip new file mode 100644 index 0000000..c0bc1b1 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip b/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip new file mode 100644 index 0000000..d743039 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip b/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip new file mode 100644 index 0000000..f5cc360 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip b/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip new file mode 100644 index 0000000..b35ce27 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip b/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip new file mode 100644 index 0000000..522330d Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip differ diff --git a/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip b/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip new file mode 100644 index 0000000..71e96f3 Binary files /dev/null and b/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip differ diff --git a/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip b/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip new file mode 100644 index 0000000..8fa10e9 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip differ diff --git a/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip b/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip new file mode 100644 index 0000000..16ac578 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip b/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip new file mode 100644 index 0000000..6e6c052 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip b/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip new file mode 100644 index 0000000..dee5be9 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip b/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip new file mode 100644 index 0000000..1be1fed Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip b/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip new file mode 100644 index 0000000..df42b20 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip b/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip new file mode 100644 index 0000000..4605ea1 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip differ diff --git a/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip b/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip new file mode 100644 index 0000000..0340560 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip differ diff --git a/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip b/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip new file mode 100644 index 0000000..addc7ba Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip differ diff --git a/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip b/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip new file mode 100644 index 0000000..e218c28 Binary files /dev/null and b/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip differ diff --git a/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip b/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip new file mode 100644 index 0000000..e05bf1f Binary files /dev/null and b/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip differ diff --git a/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip b/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip new file mode 100644 index 0000000..8b891e2 Binary files /dev/null and b/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip differ diff --git a/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip b/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip new file mode 100644 index 0000000..a785ce0 Binary files /dev/null and b/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip differ diff --git a/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip b/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip new file mode 100644 index 0000000..d5b6678 Binary files /dev/null and b/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip differ diff --git a/config/paxi/resourcepack_load_order.json b/config/paxi/resourcepack_load_order.json new file mode 100644 index 0000000..1868fa5 --- /dev/null +++ b/config/paxi/resourcepack_load_order.json @@ -0,0 +1,3 @@ +{ + "loadOrder": [] +} \ No newline at end of file diff --git a/config/paxi/resourcepacks/alex's naturals.zip b/config/paxi/resourcepacks/alex's naturals.zip new file mode 100644 index 0000000..3764c19 Binary files /dev/null and b/config/paxi/resourcepacks/alex's naturals.zip differ diff --git a/config/paxi/resourcepacks/tconjeidark.zip b/config/paxi/resourcepacks/tconjeidark.zip new file mode 100644 index 0000000..16ed002 Binary files /dev/null and b/config/paxi/resourcepacks/tconjeidark.zip differ diff --git a/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip b/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip new file mode 100644 index 0000000..7470e83 Binary files /dev/null and b/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip differ diff --git a/config/pehkui-client.toml b/config/pehkui-client.toml new file mode 100644 index 0000000..ab243ff --- /dev/null +++ b/config/pehkui-client.toml @@ -0,0 +1,6 @@ + +#Client only settings, mostly things related to rendering +[client] + #Range: 0.0 ~ 0.05 + minimumCameraDepth = 3.051850947599719E-5 + diff --git a/config/pehkui-common.toml b/config/pehkui-common.toml new file mode 100644 index 0000000..400749d --- /dev/null +++ b/config/pehkui-common.toml @@ -0,0 +1,18 @@ + +#General configuration settings +[general] + scaledFallDamage = true + scaledMotion = true + scaledReach = true + scaledAttack = true + scaledDefense = true + scaledHealth = true + scaledItemDrops = true + scaledProjectiles = true + scaledExplosions = true + keepAllScalesOnRespawn = false + accurateNetherPortals = true + scalesKeptOnRespawn = [] + enableCommands = true + enableDebugCommands = false + diff --git a/config/pickletweaks-client.toml b/config/pickletweaks-client.toml new file mode 100644 index 0000000..a41bcea --- /dev/null +++ b/config/pickletweaks-client.toml @@ -0,0 +1,11 @@ + +#General configuration options +[General] + #The harvest level names used by the Tool Info Tweak tooltips. + harvestLevelNames = ["Stone", "Iron", "Diamond", "Obsidian", "Netherite"] + +#Disable features. +[Features] + #Tool Information Tooltips enabled? + toolInfoTooltip = true + diff --git a/config/pickletweaks-common.toml b/config/pickletweaks-common.toml new file mode 100644 index 0000000..24dcfdc --- /dev/null +++ b/config/pickletweaks-common.toml @@ -0,0 +1,96 @@ + +#General configuration options. +[General] + #The effective radius of the Magnet. + #Range: 1.0 ~ 16.0 + magnetRange = 7.0 + #Should fake players be able to use watering cans? + fakePlayerWatering = true + #Here you can specify a list of tools that shouldn't have tool info tooltips. + #Ex. ["minecraft:iron_pickaxe", "minecraft:iron_axe"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also blacklist entire mods by doing :* + #Ex. ["pickletweaks:*"] + toolInfoTooltipBlacklist = ["silentgear:*"] + +#Disable specific features. +[Features] + #Enable Colored Cobblestone? + coloredCobblestone = false + #Enable Smooth Glowstone? + smoothGlowstone = false + #Enable Coal and Charcoal Piece? + coalPiece = false + #Enable Diamond and Emerald Apples? + apples = false + #Enable Watering Can? + wateringCan = false + #Enable Meshes? + meshes = false + #Enable Magnet? + magnet = false + #Enable Night Vision Goggles? + nightVisionGoggles = false + #Enable Paxels? + paxels = false + #Enable Flint tools and armor? + flintGear = false + #Enable Emerald tools and armor? + emeraldGear = false + #Enable right click crop harvesting? + rightClickHarvest = true + #Enable Sickles? + sickles = false + #Enable Scythes? + scythes = false + +#Crafting grid tool repair configuration options. +["Grid Repair"] + #Should Crafting Grid Tool Repairing be enabled? + enabled = true + #How much material required to fully repair a tool. + #Range: 1 ~ 8 + cost = 3 + #How much additional material required to repair enchanted tools. + #Range: 0 ~ 8 + enchantmentCost = 4 + #Crafting grid repair removes all non-curse enchantments. + stripEnchantments = false + #Should default repair materials be disabled? Doing this makes it so ONLY the custom materials work. + disableDefaults = false + #Enabling this makes it so custom repair materials override the default ones for the tools specified. + overrideMode = false + #Makes it so shovels need 50% less material to repair. + cheapShovel = false + #Makes it so shears need 50% less material to repair. + cheapShears = false + #Tools that should not be repairable in the crafting grid. + #Ex: ["minecraft:stone_pickaxe", "minecraft:stone_sword"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also blacklist entire mods by doing :* + #Ex. ["pickletweaks:*"] + blacklist = [] + #Here you can specify custom repair materials for tools. + #Ex: ["minecraft:stone_shovel=minecraft:stick"] + #You can use tags for materials by doing tag:. + #Ex: ["minecraft:stone_shovel=tag:forge:ingots/iron"] + #You can also use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools=tag:forge:ingots/iron"] + #You can specify how effective the material is by appending @ + #Ex: ["minecraft:stone_shovel=minecraft:stick@0.5"] + overrides = ["minecraft:shears=minecraft:iron_ingot", "pickletweaks:flint_shears=minecraft:flint"] + +#Disable and configure tweaks. +[Tweaks] + #Enabled tools not breaking? + toolBreaking = true + #Tools and weapons that should be ineffective. + #Ex: ["minecraft:stone_pickaxe", "minecraft:stone_sword"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also whitelist entire mods by doing :* + #Ex. ["pickletweaks:*"] + uselessTools = [] + diff --git a/config/ping-client.toml b/config/ping-client.toml new file mode 100644 index 0000000..b84e742 --- /dev/null +++ b/config/ping-client.toml @@ -0,0 +1,25 @@ + +[general] + #Maximum distance a Ping can be from you and still be received + #Range: 0.0 ~ 255.0 + pingAcceptDistance = 64.0 + #How many ticks a Ping should remain active before disappearing + #Range: 0 ~ 2147483646 + pingDuration = 125 + #Whether to play a sound when a Ping is received + sound = true + +[visual] + #Whether to render a colored overlay on the Pinged block + blockOverlay = true + #Whether to render the Ping Menu background + menuBackground = true + + [visual.pingColor] + #Range: 0 ~ 255 + red = 255 + #Range: 0 ~ 255 + green = 0 + #Range: 0 ~ 255 + blue = 0 + diff --git a/config/pingwheel.json b/config/pingwheel.json new file mode 100644 index 0000000..15c97c5 --- /dev/null +++ b/config/pingwheel.json @@ -0,0 +1,17 @@ +{ + "pingVolume": 100, + "pingDuration": 7, + "pingDistance": 2048, + "correctionPeriod": 1.0, + "itemIconVisible": true, + "directionIndicatorVisible": true, + "nameLabelForced": false, + "pingSize": 100, + "channel": "", + "removeRadius": 10, + "raycastDistance": 1024, + "safeZoneLeft": 5, + "safeZoneRight": 5, + "safeZoneTop": 5, + "safeZoneBottom": 60 +} \ No newline at end of file diff --git a/config/pingwheel.server.json b/config/pingwheel.server.json new file mode 100644 index 0000000..150134d --- /dev/null +++ b/config/pingwheel.server.json @@ -0,0 +1,6 @@ +{ + "defaultChannelMode": "AUTO", + "playerTrackingEnabled": true, + "msToRegenerate": 1000, + "rateLimit": 5 +} \ No newline at end of file diff --git a/config/pipezlagfix-common.toml b/config/pipezlagfix-common.toml new file mode 100644 index 0000000..d31a5aa --- /dev/null +++ b/config/pipezlagfix-common.toml @@ -0,0 +1,11 @@ + +[general] + #Whether the mod is enabled. + enabled = true + #The initial backoff delay in ticks when an item pipe fails to insert items. + #Range: 1 ~ 1200 + baseBackoffTicks = 2 + #The maximum backoff delay in ticks for item pipes. + #Range: 1 ~ 1200 + maxBackoffTicks = 32 + diff --git a/config/pneumaticcraft-client.toml b/config/pneumaticcraft-client.toml new file mode 100644 index 0000000..7c7ebfc --- /dev/null +++ b/config/pneumaticcraft-client.toml @@ -0,0 +1,84 @@ + +[general] + #Enable Aphorism Tile Drama! http://mc-drama.herokuapp.com/ + aphorism_drama = true + #Defines which widgets are shown in the Programmer GUI: easy, medium, or advanced + #Allowed Values: EASY, MEDIUM, ADVANCED + programmer_difficulty = "EASY" + #Show tank fluids with the The One Probe when sneaking? Note that TOP has its own support for showing tanks, which by default requires a Probe to be held, or a Probe-enabled helmet to be worn. + top_shows_fluids = false + #Tint Logistics configuration GUI backgrounds according to the colour of the logistics frame you are configuring. + logistics_gui_tint = true + #Should GUI side tabs be shown with a beveled edge? Setting to false uses a plain black edge, as in earlier versions of the mod. + gui_bevel = true + #Always show the pressure durability bar for pressurizable items, even when full? + always_show_pressure_durability_bar = true + #Should tube modules emit redstone play redstone particle effects when active? + tube_module_redstone_particles = false + #Should widgets in the GUI Remote Editor be snapped to a 4x4 grid? + gui_remote_grid_snap = true + #Should the SSP game pause when the Programmer GUI is open (does not apply in SMP)? + programmer_gui_pauses = false + #Should players holding an Amadron Tablet get a notification message when offers are shuffled periodically? + notify_amadron_offer_updates = true + #Should Pressure Chambers show air particle effects inside themselves when pressurized? + pressure_chamber_particles = false + #Should the Jackhammer continually show a HUD indicating break modes other than basic single-block? If false, the mode HUD will show only when switching modes + jackhammer_hud = true + +[armor] + #Intensity of the FOV modification when using Pneumatic Leggings speed boost: 0.0 for no FOV modification, higher values zoom out more. Note: non-zero values may cause FOV clashes with other mods. + #Range: 0.0 ~ 1.0 + leggings_fov_factor = 0.0 + #Maximum time, as a percentage of the tick, that the Pneumatic Helmet Block Tracker may take when active and scanning blocks. Larger values mean more rapid update of block information, but potentially greater impact on client FPS. + #Range: 1 ~ 100 + block_tracker_max_time_per_tick = 10 + #Enable the Pneumatic Helmet Coordinate Tracker pathfinder + path_enabled = false + #True if the Pneumatic Helmet Coordinate Tracker pathfinder should draw lines, false for tiles. + wire_path = false + #Should the Pneumatic Helmet Coordinate Tracker pathfinder path be visible through blocks? + xray_enabled = false + #How frequently should the Pneumatic Helmet Coordinate Tracker pathfinder path be recalculated? + #Allowed Values: SLOW, NORMAL, FAST + path_update_setting = "NORMAL" + #True: show pressure as numbers. False: show pressure as horizontal bar. + show_pressure_numerically = true + #Should enchantment glint be shown on Pneumatic Armor pieces? Disable if you don't like the enchantment glint messing up your carefully chosen colour scheme... + show_enchant_glint = true + #Maximum screen roll in degrees when banking left or right during Jet Boots flight - cosmetic only + #Range: 0 ~ 90 + max_jet_boots_roll = 35 + #Which component initialisation messages to display when armor is booting up + #Allowed Values: ALL, ENABLED_ONLY, NONE + component_init_messages = "ALL" + +[sound] + #Volume level of the Elevator while running + #Range: 0.0 ~ 2.0 + elevator_volume_running = 1.0 + #Volume level of the Elevator *clunk* while starting/stopping + #Range: 0.0 ~ 2.0 + elevator_volume_start_stop = 1.0 + #Volume level of air leaks from unconnected tubes/machines. Beware: turning this off could lead to undetected leaks wasting pressure forever! + #Range: 0.0 ~ 2.0 + air_leak_volume = 1.0 + #Volume level of the hand-held Minigun + #Range: 0.0 ~ 2.0 + minigun_volume_held = 0.75 + #Volume level of drone-mounted Miniguns + #Range: 0.0 ~ 2.0 + minigun_volume_drone = 1.0 + #Volume level of the Sentry Turret's Minigun + #Range: 0.0 ~ 2.0 + minigun_volume_sentry_turret = 1.0 + #Volume level of the Jet Boots in normal flight mode + #Range: 0.0 ~ 2.0 + jetboots_volume = 1.0 + #Volume level of the Jet Boots when in Builder Mode + #Range: 0.0 ~ 2.0 + jetboots_volume_builder_mode = 0.3 + #Volume level of the Jackhammer + #Range: 0.0 ~ 2.0 + jackhammer_volume = 0.7 + diff --git a/config/pneumaticcraft-common.toml b/config/pneumaticcraft-common.toml new file mode 100644 index 0000000..519e90d --- /dev/null +++ b/config/pneumaticcraft-common.toml @@ -0,0 +1,366 @@ + +[General] + #Enable mod dungeon loot generation + enable_dungeon_loot = true + #Efficiency of fuel buckets as furnace fuel (default 0.05 means 1 bucket of LPG smelts 450 items in a vanilla furnace) + #Range: 0.0 ~ 1.7976931348623157E308 + fuel_bucket_efficiency = 0.05 + #Maximum number of blocks in the area defined in an Area Programming Puzzle Piece + #Range: > 1 + max_programming_area = 250000 + #Fluids at least as hot as this temperature (Kelvin) will be auto-registered as Liquid Compressor fuels, the quality being dependent on fluid temperature. + #Range: > 0 + min_fluid_fuel_temperature = 373 + #Should dyes be used up when coloring things (Drones, Logistics Modules, Redstone Modules)? + use_up_dyes_when_coloring = false + #Cooldown, in ticks, between subsequent uses of Bandages. Set to 0 to disable cooldowns entirely. + #Range: > 0 + bandage_cooldown = 160 + #Time, in ticks, it takes to use a bandage. + #Range: > 1 + bandage_use_time = 40 + #Health points restored on bandage use (1 health = half a heart). + #Range: 1.0 ~ 1.7976931348623157E308 + bandage_health_restored = 6.0 + +[Worldgen] + #Oil worldgen whitelist by dimension ID: add dimension ID's to this list if you want oil lake worldgen to happen ONLY in those dimensions. You can wildcard the path; e.g 'modid:*' whitelists ALL dimensions of namespace 'modid'. If this is empty, it is ignored, and 'oil_world_gen_dimension_blacklist' will be checked instead. + oil_world_gen_dimension_whitelist = [] + #Oil worldgen blacklist by dimension ID: add dimension ID's to this list if you don't want oil lake worldgen to happen there. You can wildcard this; e.g 'modid:*' blacklists ALL dimensions of namespace 'modid'. + oil_world_gen_dimension_blacklist = [] + +["Machine Properties"] + #Aerial Interface backwards compat: allow pre-0.8.0 behaviour of getting player's armor inventory from top face, even with Dispenser Upgrade installed + aerial_interface_armor_compat = true + #Chance per tick of Crop Supports causing a growth tick. The default, 0.002, is roughly 2.5 times faster than the vanilla growth rate + #Range: 0.0 ~ 1.7976931348623157E308 + crop_sticks_growth_boost_chance = 0.002 + #Changing this value will alter the pressurized air production of the Electric Compressor. The input, EU, will stay the same + #Range: > 0 + electric_compressor_efficiency = 40 + #Base chance (1/x) per tick of a lightning strike on/around the Electrostatic Generator + #Range: > 0 + electrostatic_lightning_chance = 100000 + #The max height of an elevator per stacked Elevator Base block. + #Range: 1 ~ 256 + elevator_base_blocks_per_base = 6 + #The amount of air produced by using 100 FE (Forge Energy) in the flux compressor + #Range: > 0 + flux_compressor_efficiency = 40 + #The amount to multiply the air production of the solar compressor by. + #Range: 0.0 ~ 1.7976931348623157E308 + solar_compressor_multiplier = 1.0 + #Can the Kerosene Lamp burn any kind of fuel? If false, only Kerosene can be burnt + kerosene_lamp_can_use_any_fuel = true + #Kerosene Lamp fuel efficiency: higher values mean fuel will last longer in the lamp + #Range: 0.0 ~ 1.7976931348623157E308 + kerosene_lamp_fuel_efficiency = 1.0 + #The amount of air produced by using 100 MJ (Minecraft Joules) in the flux compressor + #Range: > 0 + kinetic_compressor_efficiency = 40 + #Can the Liquid Hopper absorb/dispense fluids into the world with a Dispenser Upgrade? + liquid_hopper_dispenser = true + #Can the Omnidirectional Hopper dispense items into the world with a Dispenser Upgrade? + omni_hopper_dispenser = true + #Are players in Creative mode exempt from Security Station block protection? If false, only server ops are exempt (command permission >= 2) + security_station_creative_players_exempt = false + #Can Security Stations be hacked? If set to false, Security Stations are purely a grief protection feature with no hacking minigame + security_station_allow_hacking = true + #The amount of air produced for 1 pump cycle in the manual compressor + #Range: > 0 + manual_compressor_air_per_cycle = 1000 + #The amount of hunger consumed from the player for 1 pump cycle step in the manual compressor. For comparison, sprinting consumes 0.1 hunger per meter sprinted. + #Range: 0.0 ~ 40.0 + manual_compressor_hunger_drain_per_cycle_step = 0.1 + #Whether to allow fake players to use the manual compressor + manual_compressor_allow_fake_players = false + #The amount of FE (Forge Energy) produced by using 100mL of air in the Pneumatic Dynamo + #Range: > 0 + pneumatic_dynamo_efficiency = 40 + #The amount of MJ (Minecraft Joules) produced by using 100mL of air in the Pneumatic Dynamo + #Range: > 0 + pneumatic_engine_efficiency = 40 + #Changing this value will alter the pressurized air usage of the Pneumatic Generator. The output, EU, will stay the same. + #Range: > 0 + pneumatic_generator_efficiency = 40 + #Changing this value will alter the hydraulic bar production of the Pneumatic Pump. The input, air, will stay the same + #Range: > 0 + pneumatic_pump_efficiency = 40 + #Minimum pressure required for the Pressurized Spawner to run + #Range: 1.0 ~ 20.0 + pressurized_spawner_min_pressure = 10.0 + #Speed multiplier per speed upgrade: speed mult = speedUpgradeSpeedMultiplier ^ num_of_speed_upgrades + #Range: 1.0 ~ 2.0 + speed_upgrade_speed_multiplier = 1.5 + #Fuel usage / heat gen multiplier per speed upgrade: usage mult = speedUpgradeUsageMultiplier ^ num_of_speed_upgrades + #Range: 1.0 ~ 2.0 + speed_upgrade_usage_multiplier = 1.649999976158142 + #Blacklist items from being allowed in the Pressure Chamber disenchanting system. This is a starts-with string match, so you can match by mod, or individual item names as you need. Blacklisted by default are Quark Ancient Tomes, and all Tetra items; both can lead to enchantment duping as they have special enchantment mechanics. + disenchanting_blacklist = ["quark:ancient_tome", "tetra:"] + #ID's of dimensions in which the Aerial Interface is not allowed to operate. You can use wildcarded dimensions here, e.g. 'somemod:*'. + aerial_interface_dimension_blacklist = [] + #Minimum interval in ticks which the player can use the Vortex Cannon to boost their own speed + #Range: > 1 + vortex_cannon_player_boost_rate = 10 + +["Pneumatic Armor"] + #Jetboots air usage in mL/tick (per Jet Boots Upgrade) + #Range: > 0 + jet_boots_air_usage = 12 + #Jetboots height limit before cutting out, relative to world max build height + #Range: > -2147483648 + jet_boots_height_limit = 64 + #Base Pneumatic Armor startup time in ticks (before Speed Upgrades) + #Range: > 20 + armor_startup_time = 200 + #Flippers Upgrade speed boost when in water and feet on ground + #Range: 0.0 ~ 1.0 + flippers_speed_boost_ground = 0.03 + #Flippers Upgrade speed boost when floating in water + #Range: 0.0 ~ 1.0 + flippers_speed_boost_floating = 0.045 + #Air usage for armor repair, in mL per Item Life Upgrade per point of damage repaired + #Range: > 0 + repair_air_usage = 100 + #Air usage for Magnet Upgrade, in mL per item or XP orb attracted + #Range: > 0 + magnet_air_usage = 20 + #Air used per point of 'player air' restored by the Scuba Upgrade + #Range: > 1 + scuba_multiplier = 8 + +[Advanced] + #When set to true, the Kerosene Lamp's fake air blocks won't be registered and therefore removed from the world. Useful if this causes trouble (it shouldn't though) + disable_kerosene_lamp_fake_air_block = false + #The minimum interval in ticks between which fluid tank contents should be synced to clients. Smaller values mean smoother visual tank updates, but more of a performance cost in terms of network syncing. Note that fluid tank sync packets are also only sent when a fluid tank changes by more than 1% of its capacity, or 1000mB, whichever is smaller. + #Range: 1 ~ 100 + fluid_tank_update_rate = 10 + #Precision to which pressurizable item air levels are synced to client. Default of 10 is precise enough to show pressure to 1 decimal place, which is what is display in client tooltips & pneumatic armor HUD. Lower values will sync less precisely, reducing server->client network traffic. Values higher than 10 are not recommended (will cause extra network traffic for no benefit). + #Range: 1 ~ 100 + pressurizable_sync_precision = 10 + #Don't remove a water source block when picking up (drones, liquid hoppers, gas lift) if it has at least two water source neighbours. This can reduce lag due to frequent block updates, and can also potentially make water import much faster. Set this to false if you want no-infinite-water rules in a world, or want to limit the speed of water importing to vanilla block update rates. + dont_update_infinite_water_sources = true + #When set to true, server will strip NBT data from pressurizable items (pneumatic armor, drones...) which the client doesn't care about. Good for saving on network chatter, but can cause players to be kicked under some circumstances. If this occurs, set this config value to false. + nbt_to_client_modification = true + +["Micromissile Properties"] + #Base explosion damage (modified by missile setup) + #Range: 0.0 ~ 1.7976931348623157E308 + base_explosion_damage = 1.0 + #Do micromissile explosions cause terrain damage? Note: when set to true, the 'tntExplosionDropDecay' gamerule is used to determine block drops. + damage_terrain = false + #Do micromissile explosions start fires? + start_fires = false + #Cooldown for missile firing in ticks + #Range: > 0 + launch_cooldown = 15 + #Base fueled-flight duration in ticks. After this, missiles will drop from the sky. + #Range: > 0 + lifetime = 300 + #Hard missile lifetime in ticks. After this, missiles will immediately explode. Value must be greater than or equal to the 'lifetime' setting. + #Range: > 0 + max_lifetime = 600 + #Number of micromissiles per pod + #Range: > 0 + missile_pod_size = 100 + +["Minigun Properties"] + #Armor Piercing Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + ap_ammo_damage_multiplier = 1.25 + #Armor Piercing Ammo percentage chance to ignore target's armor + #Range: 1 ~ 100 + ap_ammo_ignore_armor_chance = 100 + #Armor Piercing Ammo cartridge size + #Range: 1 ~ 30000 + armor_piercing_ammo_cartridge_size = 250 + #Base bullet damage of the Sentry Gun, Handheld Minigun, and Drone Minigun, before ammo bonuses are considered + #Range: 0.0 ~ 1.7976931348623157E308 + base_damage = 4.0 + #Base range of Minigun, before Range Upgrades are considered + #Range: 5 ~ 100 + base_range = 50 + #Explosive Ammo cartridge size + #Range: 1 ~ 30000 + explosive_ammo_cartridge_size = 125 + #Minigun Explosive Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + explosive_ammo_damage_multiplier = 0.2 + #Explosive Ammo base percentage chance to cause an explosion + #Range: > 0 + explosive_ammo_explosion_chance = 50 + #Minigun Explosive Ammo explosion power (ref: 2 = creeper, 4 = TNT + #Range: 0.0 ~ 1.7976931348623157E308 + explosive_ammo_explosion_power = 1.5 + #Does Minigun Explosive Ammo damage terrain? + explosive_ammo_terrain_damage = false + #Freezing Ammo base percentage chance to form ice or snow on blocks which have been hit + #Range: 0 ~ 100 + freezing_ammo_block_ice_chance = 10 + #Freezing Ammo cartridge size + #Range: > 0 + freezing_ammo_cartridge_size = 500 + #Freezing Ammo base percentage chance to form ice on entities which have been hit + #Range: 0 ~ 100 + freezing_ammo_entity_ice_chance = 20 + #Damage done to entities within the fake 'ice' blocks cause by freezing ammo + #Range: 0.0 ~ 1.7976931348623157E308 + freezing_ammo_fake_ice_damage = 1.0 + #Incendiary ammo base percentage chance to ignite blocks + #Range: 1 ~ 100 + incendiary_ammo_block_ignite_chance = 20 + #Incendiary Ammo cartridge size + #Range: 1 ~ 30000 + incendiary_ammo_cartridge_size = 500 + #Incendiary ammo base percentage chance to ignite entities + #Range: 1 ~ 100 + incendiary_ammo_entity_ignite_chance = 100 + #Incendiary ammo fire duration on target entities (seconds) + #Range: > 0 + incendiary_ammo_fire_duration = 8 + #Percentage chance per shot of potion-tipped ammo proc'ing the potion effect, before Dispenser Upgrades are considered + #Range: 1 ~ 100 + potion_proc_chance = 7 + #Standard Ammo cartridge size + #Range: 1 ~ 30000 + standard_ammo_cartridge_size = 1000 + #Weighted Ammo air usage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_air_usage_multiplier = 8.0 + #Weighted Ammo cartridge size + #Range: 1 ~ 30000 + weighted_ammo_cartridge_size = 250 + #Weighted Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_damage_multiplier = 2.5 + #Weighted Ammo range multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_range_multiplier = 0.2 + #Show particles when a block is hit by minigun fire? Looks good, but consumes some network bandwidth. + block_hit_particles = true + +[Integration] + #Immersive Engineering: External Heater heat/FE. The amount of PneumaticCraft heat added by using 1 FE in the heater. + #Range: 0.0 ~ 1.7976931348623157E308 + ie_external_heater_heat_per_fe = 0.01 + #Immersive Engineering: External Heater FE/t. Set to 0 to disable External Heater integration entirely. + #Range: > 0 + ie_external_heater_fe_per_tick = 100 + #Mekanism thermal resistance multiplier. Larger values mean slower heat transfer between Mekanism and PneumaticCraft blocks. + #Range: 1.0 ~ 1.7976931348623157E308 + mek_thermal_resistance_factor = 5.0 + #Mekanism <-> PneumaticCraft heat conversion efficiency. Set to 0 to disable Mekanism heat integration entirely. Note that Mekanism and PNC use a similar heat system, but scale things quite differently (Mekanism heaters produces a LOT of heat by PneumaticCraft standards), so conversion efficiency tuning is important for inter-mod balance. + #Range: 0.0 ~ 2.0 + mek_thermal_conversion_efficiency = 0.01 + #Volume boost multiplier for pressurizable items with the CoFH Holding enchantment; air volume is multiplied by (1 + level_of_holding_enchantment) x this value. Set to 0 to disallow pressurizable items being enchanted with the Holding enchantment at all. + #Range: 0.0 ~ 1.7976931348623157E308 + cofh_holding_multiplier = 1.0 + +[Recipes] + #Does Molten Plastic solidify to Plastic Sheets when poured into the world? If set to false, then Heat Frame cooling is the only other way to make Plastic Sheets (by default). + in_world_plastic_solidification = true + #Is in-world Yeast crafting allowed (making more Yeast Culture by pouring Water next to a Yeast Culture block with Sugar in it)? If set to false, then the default TPP Mushroom & Water -> Yeast Culture recipe is the only way to get Yeast Culture. + in_world_yeast_crafting = true + +[Amadron] + #Number of periodic offers randomly selected for the 'live' offer list. Note: this a maximum, and the actual number chosen each time may be less. Periodic offers are those offers which have a static: false field in their recipe JSON. + #Range: > 0 + numPeriodicOffers = 10 + #Number of villager offers randomly selected for the 'live' offer list. Note: this a maximum, and the actual number chosen each time may be less. + #Range: > 0 + numVillagerOffers = 20 + #Time in ticks between each periodic offer reshuffle (24000 ticks = one Minecraft day) + #Range: > 1000 + reshuffleInterval = 24000 + #Max number of custom trades a (non-admin) player may add + #Range: > 0 + max_trades_per_player = 50 + #Broadcast a notification when any player adds a custom trade + notify_of_trade_addition = true + #Broadcast a notification when any player removes a custom trade + notify_of_trade_removal = true + #Broadcast a notification when a custom Amadron trade is made + notify_of_deal_made = true + #Amadrone spawn location, relative to the delivery/pickup position. This is a X/Y/Z triple. See also 'amadrone_spawn_location_relative_to_ground_level' for how the drone's Y position is calculated. + amadrone_spawn_location = [30, 30, 0] + #Affects Amadrone Y spawning position: when true, the Y position is relative to ground level at the calculated X/Z position. When false, it is relative to the delivery/pickup position. + amadrone_spawn_location_relative_to_ground_level = true + +[Heat] + #Default thermal resistance for solid blocks + #Range: 4.9E-324 ~ 1.7976931348623157E308 + blockThermalResistance = 500.0 + #Default thermal resistance for fluid blocks + #Range: 4.9E-324 ~ 1.7976931348623157E308 + fluidThermalResistance = 100.0 + #Thermal resistance of air; controls how fast blocks lose heat to air when exposed + #Range: 1.0 ~ 1.7976931348623157E308 + airThermalResistance = 100.0 + #Default heat capacity for fluid blocks + #Range: > 0 + defaultFluidHeatCapacity = 10000 + #Ambient temperature modifier by biome (default 25 gives the Nether a heat boost of 30C) + #Range: 0.0 ~ 1000.0 + ambientTemperatureBiomeModifier = 25.0 + #Ambient temperature increase by altitude, in degrees per block below 48 (or 75% of sea level). Note that temperature decrease per block above 64 is handled by vanilla. + #Range: 0.0 ~ 10.0 + ambientTemperatureHeightModifier = 0.1 + #Automatically register heat properties for all detected modded fluids based on their self-defined temperature? (note: vanilla lava and water are always added) + addDefaultFluidEntries = true + +[Logistics] + #Logistics Module air usage per item per block distance + #Range: 0.0 ~ 1.7976931348623157E308 + item_transport_cost = 1.0 + #Logistics Module air usage per mB of fluid per block distance + #Range: 0.0 ~ 1.7976931348623157E308 + fluid_transport_cost = 0.02 + #Minimum pressure for a Logistics Module to function + #Range: 0.0 ~ 20.0 + min_pressure = 3.0 + +[Jackhammer] + #Max veinmining range (distance from mined block) for Vein Miner Plus mode + #Range: 1 ~ 32 + max_vein_miner_range = 10 + #Base Jackhammer air usage per block broken (speed upgrades increase this) + #Range: > 0 + base_air_usage = 50 + +[Villagers] + #Frequency of PneumaticCraft village house generation? Default value of 8 tends to give 0-2 houses per village with no other mods present. Set to 0 to disable house generation entirely. May need to raise this value if there are many other mods also adding village houses. Note: changing this value won't affect any already-generated houses, only new generation. + #Range: > 0 + addMechanicHouse = 8 + #Which trades should the Pressure Mechanic offer? ALL will offer all trades. PCB_BLUEPRINT will offer *only* the PCB Blueprint, an item required for normal progression through the mod. NONE will offer nothing (but the PCB Blueprint is also available via Amadron by default). Note that changing this won't affect any already-spawned Pressure Mechanics. + #Allowed Values: NONE, PCB_BLUEPRINT, ALL + mechanicTrades = "ALL" + +[Drones] + #Enable Drone Suffocation Damage + enable_drone_suffocation = true + #Drones render their held item (the item in slot 0 of their inventory) ? Note: this is in common config since if enabled, server needs to sync the item data to the client. + drones_render_held_item = true + #Are drones allowed to import Experience Orbs and convert them to Memory Essence fluid? + drones_can_import_xp_orbs = true + #Will Drones automatically get picked up by Boats/Minecarts/etc. if they're close enough? + drones_can_be_picked_up = false + #Show particle trail indicating the currently-debugged drone's planned path + drone_debugger_path_particles = true + #When set to true, Drones will not execute any program. This is useful to set to true when due to a bug Drones are lagging your server or crashing it. Please report any such bugs as a PneumaticCraft: Repressurized issue so it can be investigated. + stop_drone_ai = false + #How far will a drone go to find a Charging Station when it's low on air? Note: drones will teleport, possibly across the world to someone else's base, if this range is very large. + #Range: > 16 + max_drone_charging_station_search_range = 80 + #The maximum distance that a Drone may teleport when it can't find a path to its destination. Default value of 0 means no limit. This is primarily intended to limit abuse of teleportation to other players on PvP servers, but may find other uses. Be careful about setting this value very low. + #Range: > 0 + max_drone_teleport_range = 0 + #When false, drones may not navigate or teleport into unloaded chunks. Setting this true may lead to server performance and stability issues - beware. + allow_navigate_to_unloaded_chunks = false + #If a Drone has found a path, but gets stuck on a block along that path, it will teleport to its destination after this many ticks of being stuck. Set this to 0 to disable teleporting, which will likely leave the drone waiting there forever (or until it runs out of air). Note that getting stuck on a block is usually the fault of the mod that added the block (especially if the block has a non-full-cube shape), but if you encounter this behaviour, please report it as a PneumaticCraft: Repressurized issue so it can be investigated. + #Range: > 0 + stuck_drone_teleport_ticks = 20 + #When true, drones can query the location of any player on the server with the '$player=' variable syntax. Set this to false if you don't want to allow this, e.g. on a PvP server, where this can turn drones into lethal assassins. + allowAnyPlayerVarQuery = true + #When true, drones can teleport into areas protected by Security Stations of other player. You may wish to set this to false on PvP servers. + allowTeleportToProtectedArea = true + diff --git a/config/polymorph-integrations.toml b/config/polymorph-integrations.toml new file mode 100644 index 0000000..99fb6ac --- /dev/null +++ b/config/polymorph-integrations.toml @@ -0,0 +1,6 @@ +# Please be aware that enabling any third-party mod integration introduces instability and performance overheads, caution is strongly advised. +# If crashes or issues arise, disable the related modules as the first step in troubleshooting and report the issue to Polymorph. +fastfurnace = true +fastsuite = true +fastbench = true + diff --git a/config/ponder-client.toml b/config/ponder-client.toml new file mode 100644 index 0000000..dbf745d --- /dev/null +++ b/config/ponder-client.toml @@ -0,0 +1,20 @@ +#. +#Slow down a ponder scene whenever there is text on screen. +comfyReading = false +#. +#Show additional info in the ponder view and reload scene scripts more frequently. +editingMode = false + +#. +#Settings for the Placement Assist +[placementAssist] + #. + #What indicator should be used when showing where the assisted placement ends up relative to your crosshair + #Choose 'NONE' to disable the Indicator altogether + #Allowed Values: TEXTURE, TRIANGLE, NONE + indicatorType = "TEXTURE" + #. + #Change the size of the Indicator by this multiplier + #Range: 0.0 ~ 3.4028234663852886E38 + indicatorScale = 1.0 + diff --git a/config/powah.json5 b/config/powah.json5 new file mode 100644 index 0000000..0914860 --- /dev/null +++ b/config/powah.json5 @@ -0,0 +1,381 @@ +{ + // World generation config options. + "worldgen": { + // Enable this to disable worldgen entirely. If true, the other options have no effect. + "disable_all": false, + "poor_uraninite_veins_per_chunk": 8, + "uraninite_veins_per_chunk": 6, + "dense_uraninite_veins_per_chunk": 3, + "dry_ice_veins_per_chunk": 9 + }, + // Other general config options. + "general": { + // Enable this to get Player Aerial Pearl by right clicking a Zombie or Husk with a Aerial Pearl. + "player_aerial_pearl": true, + // Enable this to get Dimensional Binding card by right clicking an Enderman or Endermite with a Binding card. + "dimensional_binding_card": true, + // Enable this to get Lens Of Ender by right clicking an Enderman or Endermite with a Photoelectric Pane. + "lens_of_ender": true, + // List of fluids used in the Magmator. + "magmatic_fluids": { + "minecraft:lava": 10000 + }, + // List of coolant fluids used in the Reactor and the Thermo Generator. + "coolant_fluids": { + "minecraft:water": 1 + }, + // List of heat source blocks used under Thermo Generator. + "heat_blocks": { + "minecraft:magma_block": 800, + "minecraft:lava": 1000, + "powah:blazing_crystal_block": 2800 + }, + // Energy produced per fuel tick in the Furnator. + "energy_per_fuel_tick": 30, + "energizing_range": 4, + /* Multiplier to the required energy applied after an energizing recipe is read. + Use this to adjust the cost of ALL energizing recipes. + */ + "energizing_energy_ratio": 1.0 + }, + // Configuration of energy values for generators. + "generators": { + "furnators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 80, + "hardened": 200, + "blazing": 800, + "niotic": 2000, + "spirited": 8000, + "nitro": 40000 + } + }, + "magmators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 80, + "hardened": 200, + "blazing": 800, + "niotic": 2000, + "spirited": 8000, + "nitro": 40000 + } + }, + "reactors": { + "capacities": { + "starter": 250000, + "basic": 1000000, + "hardened": 2500000, + "blazing": 10000000, + "niotic": 25000000, + "spirited": 100000000, + "nitro": 500000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "generation_rates": { + "starter": 250, + "basic": 1000, + "hardened": 2500, + "blazing": 10000, + "niotic": 25000, + "spirited": 100000, + "nitro": 500000 + } + }, + "solar_panels": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 60, + "hardened": 100, + "blazing": 200, + "niotic": 400, + "spirited": 800, + "nitro": 2000 + } + }, + "thermo_generators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 60, + "hardened": 100, + "blazing": 200, + "niotic": 400, + "spirited": 800, + "nitro": 2000 + } + } + }, + // Configuration of energy values for other devices. + "devices": { + "batteries": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "cables": { + "transfer_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + }, + "dischargers": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "ender_cells": { + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "channels": { + "starter": 1, + "basic": 2, + "hardened": 3, + "blazing": 5, + "niotic": 7, + "spirited": 9, + "nitro": 12 + } + }, + "ender_gates": { + "transfer_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + }, + "channels": { + "starter": 1, + "basic": 2, + "hardened": 3, + "blazing": 5, + "niotic": 7, + "spirited": 9, + "nitro": 12 + } + }, + "energy_cells": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "energizing_rods": { + "capacities": { + "starter": 10000, + "basic": 40000, + "hardened": 100000, + "blazing": 400000, + "niotic": 1000000, + "spirited": 4000000, + "nitro": 20000000 + }, + "transfer_rates": { + "starter": 100, + "basic": 400, + "hardened": 1000, + "blazing": 4000, + "niotic": 10000, + "spirited": 40000, + "nitro": 200000 + } + }, + "hoppers": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "charging_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + }, + "player_transmitters": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "charging_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + } + } +} \ No newline at end of file diff --git a/config/prefab.toml b/config/prefab.toml new file mode 100644 index 0000000..77860e4 --- /dev/null +++ b/config/prefab.toml @@ -0,0 +1,252 @@ + +[general] + #General + #Determines which starting item a player gets on first world join. Valid values for this option are: "Starting House", "Moderate House", "Nothing". Server configuration overrides client. + "Starting Item" = "Nothing" + #Can new players for a world receive a starting item?. Server configuration overrides client. + "New Players Get Starting Item" = false + #Determines if the spawners for the Monster Masher building are included. Server configuration overrides client. + "Include Spawners in Monster Masher" = true + #Determines if the Preview buttons in structure GUIs and other structure previews functions are enabled. Client side only. + "Include Structure Previews" = true + #Determines if the mineshaft chest is included when building mineshafts for various structures. + "Include Mineshaft Chest" = true + #Determines if the bulldozer item can create drops when it clears an area. + "Bulldozer Creates Drops" = true + #Determines if water can be generated in structures when the current dimension is not the oveworld. Does not affect Nether + "Include Water In Non-Overworld Dimesions" = true + #Play Sound When Generating Blueprint + "Play Building Sound" = true + + [general."chest contents"] + #Chest Options + #Determines if a Stone Sword is added the the chest when the house is created. + "Add Sword" = true + #Determines if a Stone Axe is added the the chest when the house is created. + "Add Axe" = true + #Determines if a Stone Shovel is added the the chest when the house is created. + "Add Shovel" = true + #Determines if a Stone Hoe is added the the chest when the house is created. + "Add Hoe" = true + #Determines if a Stone Pickaxe is added the the chest when the house is created. + "Add Pickaxe" = true + #Determines if Leather Armor is added the the chest when the house is created. + "Add Armor" = true + #Determines if Bread is added the the chest when the house is created. + "Add Food" = true + #Determines if seeds, potatoes and carrots are added the the chest when the house is created. + "Add Crops" = true + #Determines if a stack of dirt is added the the chest when the house is created. + "Add Dirt" = true + #Determines if a stack of cobble is added the the chest when the house is created. + "Add Cobblestone" = true + #Determines if a set of oak saplings are added the the chest when the house is created. + "Add Saplings" = true + #Determines if a set of torches are added the the chest when the house is created. + "Add Torches" = true + + [general."starter house"] + #Starter House Options + #Determines if the bed is included in the starter house. When playing on a server, the server configuration is used + "Add Bed" = true + #Determines if the crafting table is included in the starter house. When playing on a server, the server configuration is used + "Add Crafting Table" = true + #Determines if the furnace is included in the starter house. When playing on a server, the server configuration is used + "Add Furnace" = true + #Determines if chests are included in the starter house. When playing on a server, the server configuration is used + "Add Chests" = true + #Determines if the chest contents is included in the starter house. When playing on a server, the server configuration is used + "Add Chest Contents" = true + #Determines if the mineshaft is included in the starter house. When playing on a server, the server configuration is used + "Add Mineshaft" = true + + [general.recipes] + #Determines if the recipe(s) associated with the Compressed Stone are enabled. + "Compressed Stone" = true + #Determines if the recipe(s) associated with the Compressed Glowstone are enabled. + "Compressed Glowstone" = true + #Determines if the recipe(s) associated with the Compressed Dirt are enabled. + "Compressed Dirt" = true + #Determines if the recipe(s) associated with the Compressed Chest are enabled. + "Compressed Chest" = true + #Determines if the recipe(s) associated with the Pile of Bricks are enabled. + "Pile of Bricks" = true + #Determines if the recipe(s) associated with the Warehouse are enabled. + Warehouse = true + #Determines if the recipe(s) associated with the Upgrade are enabled. + Upgrade = true + #Determines if the recipe(s) associated with the Improved Warehouse are enabled. + "Improved Warehouse" = true + #Determines if the recipe(s) associated with the Bundle of Timber are enabled. + "Bundle of Timber" = true + #Determines if the recipe(s) associated with the Nether Gate are enabled. + "Nether Gate" = true + #Determines if the recipe(s) associated with the Machinery Tower are enabled. + "Machinery Tower" = true + #Determines if the recipe(s) associated with the Defense Bunker are enabled. + "Defense Bunker" = true + #Determines if the recipe(s) associated with the Mineshaft Entrance are enabled. + "Mineshaft Entrance" = true + #Determines if the recipe(s) associated with the Ender Gateway are enabled. + "Ender Gateway" = true + #Determines if the recipe(s) associated with the Magic Temple are enabled. + "Magic Temple" = true + #Determines if the recipe(s) associated with the Instant Bridge are enabled. + "Instant Bridge" = true + #Determines if the recipe(s) associated with the Paper Lantern are enabled. + "Paper Lantern" = true + #Determines if the recipe(s) associated with the Compressed Obsidian are enabled. + "Compressed Obsidian" = true + #Determines if the recipe(s) associated with the Villager Houses are enabled. + "Villager Houses" = true + #Determines if the recipe(s) associated with the Phasic Block are enabled. + "Phasic Block" = true + #Determines if the recipe(s) associated with the Smart Glass are enabled. + "Smart Glass" = true + #Determines if the recipe(s) associated with the Green House are enabled. + "Green House" = true + #Determines if the recipe(s) associated with the House are enabled. + House = true + #Determines if the recipe(s) associated with the Glass Stairs are enabled. + "Glass Stairs" = true + #Determines if the recipe(s) associated with the Glass Slabs are enabled. + "Glass Slabs" = true + #Determines if the recipe(s) associated with the Improved House are enabled. + "Improved House" = true + #Determines if the recipe(s) associated with the Grassy Plains are enabled. + "Grassy Plains" = true + #Determines if the recipe(s) associated with the Aqua Base are enabled. + "Aqua Base" = true + #Determines if the recipe(s) associated with the Watch Tower are enabled. + "Watch Tower" = true + #Determines if the recipe(s) associated with the Bulldozer are enabled. + Bulldozer = true + #Determines if the recipe(s) associated with the Jail are enabled. + Jail = true + #Determines if the recipe(s) associated with the Saloon are enabled. + Saloon = true + #Determines if the recipe(s) associated with the Ski Lodge are enabled. + "Ski Lodge" = true + #Determines if the recipe(s) associated with the Windmill are enabled. + Windmill = true + #Determines if the recipe(s) associated with the Town Hall are enabled. + "Town Hall" = true + #Determines if the recipe(s) associated with the Heap of Timber are enabled. + "Heap of Timber" = true + #Determines if the recipe(s) associated with the Ton of Timber are enabled. + "Ton of Timber" = true + #Determines if the recipe(s) associated with the Workshop are enabled. + Workshop = true + #Determines if the recipe(s) associated with the Modern Buildings are enabled. + "Modern Buildings" = true + #Determines if the recipe(s) associated with the Swift Blade are enabled. + "Swift Blade" = true + #Determines if the recipe(s) associated with the Sickle are enabled. + Sickle = true + #Determines if the recipe(s) associated with the Dirt Recipes are enabled. + "Dirt Recipes" = true + #Determines if the recipe(s) associated with the Bunch of Beets are enabled. + "Bunch of Beets" = true + #Determines if the recipe(s) associated with the Bunch of Carrots are enabled. + "Bunch of Carrots" = true + #Determines if the recipe(s) associated with the Bunch of Potatoes are enabled. + "Bunch of Potatoes" = true + #Determines if the recipe(s) associated with the Bunch of Eggs are enabled. + "Bunch of Eggs" = true + #Determines if the recipe(s) associated with the Wooden Crate are enabled. + "Wooden Crate" = true + #Determines if the recipe(s) associated with the Farm are enabled. + Farm = true + #Determines if the recipe(s) associated with the Improved Farm are enabled. + "Improved Farm" = true + #Determines if the recipe(s) associated with the Advanced Farm are enabled. + "Advanced Farm" = true + #Determines if the recipe(s) associated with the Quartz-Crete are enabled. + Quartz-Crete = true + #Determines if the recipe(s) associated with the Advanced House are enabled. + "Advanced House" = true + #Determines if the recipe(s) associated with the Dark Light Lamp are enabled. + "Dark Light Lamp" = true + #Determines if the recipe(s) associated with the Light Switch are enabled. + "Light Switch" = true + + [general."structure options"] + item_prefab_item_farm_prefab_gui_farm_beef = true + item_prefab_item_farm_prefab_gui_farm_berry = true + item_prefab_item_farm_prefab_gui_farm_cactus = true + item_prefab_item_farm_prefab_gui_farm_chicken = true + item_prefab_item_farm_prefab_gui_farm_elevated = true + item_prefab_item_farm_prefab_gui_farm_horse = true + item_prefab_item_farm_prefab_gui_farm_multi_level = true + item_prefab_item_farm_prefab_gui_farm_rabbit = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_bamboo = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_barn = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_green_house = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_horse = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_melon = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_monster = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_produce = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_tree = true + item_prefab_item_farm_improved_prefab_gui_farm_advanced_barn = true + item_prefab_item_farm_improved_prefab_gui_farm_advanced_green_house = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_automated = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_bee = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_chicken = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_fish = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_sugar_cane = true + item_prefab_item_farm_improved_prefab_gui_farm_mushroom = true + item_prefab_item_modern_buildings_prefab_gui_modern_apartment = true + item_prefab_item_modern_buildings_prefab_gui_modern_cinema = true + item_prefab_item_modern_buildings_prefab_gui_modern_cottage = true + item_prefab_item_modern_buildings_prefab_gui_modern_hipster_fruit_stand = true + item_prefab_item_modern_buildings_prefab_gui_modern_juice_shop = true + item_prefab_item_modern_buildings_prefab_gui_modern_mini_hotel = true + item_prefab_item_modern_buildings_prefab_gui_modern_restaurant = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_bank = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_construction_site = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_gas_station = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_house = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_library = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_mall_store = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_water_park = true + item_prefab_item_nether_gate_item_prefab_item_nether_gate_skull = true + item_prefab_item_nether_gate_item_prefab_item_nether_gate_tree = true + item_prefab_item_villager_houses_prefab_gui_villager_blacksmith = true + item_prefab_item_villager_houses_prefab_gui_villager_house_angled = true + item_prefab_item_villager_houses_prefab_gui_villager_house_fenced = true + item_prefab_item_villager_houses_prefab_gui_villager_house_flat = true + item_prefab_item_villager_houses_prefab_gui_villager_long_house = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower_2 = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower_dark = true + item_prefab_item_house_prefab_gui_house_basic_display = true + item_prefab_item_house_prefab_gui_house_cabin_display = true + item_prefab_item_house_prefab_gui_house_camping_display = true + item_prefab_item_house_prefab_gui_house_desert_display = true + item_prefab_item_house_prefab_gui_house_desert_display2 = true + item_prefab_item_house_prefab_gui_house_hobbit_display = true + item_prefab_item_house_prefab_gui_house_izba_display = true + item_prefab_item_house_prefab_gui_house_loft_display = true + item_prefab_item_house_prefab_gui_house_modern_display = true + item_prefab_item_house_prefab_gui_house_mushroom_display = true + item_prefab_item_house_prefab_gui_house_ranch_display = true + item_prefab_item_house_prefab_gui_house_snowy_display = true + item_prefab_item_house_prefab_gui_house_subaquatic_display = true + item_prefab_item_house_prefab_gui_house_tower_display = true + item_prefab_item_house_prefab_gui_house_tree_display = true + item_prefab_item_house_improved_prefab_gui_house_improved_acacia = true + item_prefab_item_house_improved_prefab_gui_house_improved_acacia_2 = true + item_prefab_item_house_improved_prefab_gui_house_improved_cottage_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_crimson_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_earthen = true + item_prefab_item_house_improved_prefab_gui_house_improved_hobbit_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_jungle = true + item_prefab_item_house_improved_prefab_gui_house_improved_mountain = true + item_prefab_item_house_improved_prefab_gui_house_improved_nether = true + item_prefab_item_house_improved_prefab_gui_house_improved_spruce = true + item_prefab_item_house_improved_prefab_gui_house_improved_tower_house = true + item_prefab_item_house_improved_prefab_gui_modern_house = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_estate = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_manor = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_workshop = true + diff --git a/config/prettybeaches-common.toml b/config/prettybeaches-common.toml new file mode 100644 index 0000000..9005ebe --- /dev/null +++ b/config/prettybeaches-common.toml @@ -0,0 +1,7 @@ +#List of blocks that should be affected by the adjusted water physics. If you want to have all blocks affected, just include "*" in the list. +affectedBlocks = ["minecraft:sand"] +#Whether buckets should be able to retrieve infinite water without destroying sources as well. +infiniteBucketWater = false +#Whether the flooding of adjacent air blocks should be animated or instant. +animatedFlooding = true + diff --git a/config/productivebees-client.toml b/config/productivebees-client.toml new file mode 100644 index 0000000..b54a248 --- /dev/null +++ b/config/productivebees-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Render centrifuge comb inventory on the block. + renderCombsInCentrifuge = false + #Render bees inside bee jars. + renderBeesInJars = false + #Stop bee nest helmets from making sounds. + mutedBeeNestHelmet = false + #Bees wear santa hats. + alwaysChristmas = false + #Render entities inside amber blocks. + renderEntitiesInAmber = false + diff --git a/config/projectile_damage.json b/config/projectile_damage.json new file mode 100644 index 0000000..35c8d50 --- /dev/null +++ b/config/projectile_damage.json @@ -0,0 +1,7 @@ +{ + "status_effect_impact_multiplier_per_stack": 0.2, + "default_bow_damage": 6.0, + "default_crossbow_damage": 9.0, + "add_default_attributes_for_unspecified_bows": false, + "add_default_attributes_for_unspecified_crossbows": false +} \ No newline at end of file diff --git a/config/projectvibrantjourneys-common.toml b/config/projectvibrantjourneys-common.toml new file mode 100644 index 0000000..870de1d --- /dev/null +++ b/config/projectvibrantjourneys-common.toml @@ -0,0 +1,99 @@ + +["World Generation"] + #Enable generation of rocks + enableRocks = true + #Enable generation of twigs + enableTwigs = true + #Enable generation of fallen leaves + enableFallenLeaves = true + #Enable generation of bones + enableBones = true + #Enable generation of charred bones + enableCharredBones = true + #Enable generation of ice chunks + enableIceChunks = true + #Enable generation of pinecones + enablePinecones = true + #Enable generation of seashells + enableSeashells = true + #Enable generation of fallen trees + enableFallenTrees = true + #Enable generation of sea oats + enableSeaOats = true + #Enable generation of cattails + enableCattails = true + #Enable generation of beach grass + enableBeachGrass = true + #Enable generation of bark mushrooms + enableBarkMushrooms = true + #Enable generation of glowcap + enableGlowcap = true + #Enable generation of cindercane + enableCindercane = true + #Enable generation of nether nettles + enableNetherNettles = true + #Enable generation of short grass + enableShortGrass = true + #Enable generation of natural cobwebs + enableNaturalCobwebs = true + #Enable generation of small cacti + enableSmallCacti = true + #Enable generation of prickly bushes + enablePricklyBush = true + #Enable generation of reeds + enableReeds = true + #Enable generation of extra lilypads in lakes + enableExtraLilypads = true + #Enable generation of extra seagrass in lakes + enableExtraSeagrass = true + #Enable generation of extra grass in rivers + enableExtraRiverGrass = true + #Enable moss carpets in old growth taiga biomes + enableMossCarpets = true + #Enable of tide pools in stony shores + enableTidePools = true + #Enable cave roots + enableCaveRoots = true + #Enable better ruined nether portals + enableBetterRuinedNetherPortals = true + #Enable generation of icicles + enableIcicles = true + #Enable generation of sandy sprouts + enableSandySprouts = true + #Enable generation of dried beached kelp + enableDriedBeachedKelp = true + #Enable generation of glowing blue fungus + enableGlowingBlueFungus = true + #Enable generation of muddy bones + enableMuddyBones = true + #Enable generation of lotus ponds in cherry groves + enableLotusPonds = true + #Enable generation of pink lotuses in flower forests + enableFloatingPinkLotus = true + #Enable generation of hot springs + enableHotSprings = true + #Enable generation of bushes + enableBushes = true + #Enable generation of wildflowers + enableWildflowers = true + #Enable generation of slime nodules + enableSlimeNodules = true + #Enable generation of pink vines + enablePinkVines = true + #Enable generation of watergrass + enableWatergrass = true + #Enable generation of gravel pits + enableGravelPits = true + #Enable generation of gold pits + enableGoldPits = true + #Enable generation of beached kelp + enableBeachedKelp = true + +["Entity Options"] + #Enable spawning of tropical fish in jungles + enableJungleTropicalFish = true + +["Misc Options"] + #Enable replaceable groundcover behavior - i.e. makes it behave like tall grass when placing blocks + replaceableGroundcover = true + diff --git a/config/puzzlesapi-iteminteractions-client.toml b/config/puzzlesapi-iteminteractions-client.toml new file mode 100644 index 0000000..f8e74b9 --- /dev/null +++ b/config/puzzlesapi-iteminteractions-client.toml @@ -0,0 +1,36 @@ +#Color item inventories on tooltips according to the container item's color. +colorful_tooltips = true +#Show a tooltip for the item currently selected in a container item's tooltip next to the main tooltip. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Show a tooltip for the item currently selected in a container item's tooltip next to the main tooltip. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +selected_item_tooltips = "ALWAYS" +#Invert scroll wheel direction for extracting / inserting items from a container item in precision mode. +invert_precision_mode_scrolling = false +#Expand container item tooltips to reveal their contents. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Expand container item tooltips to reveal their contents. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +reveal_contents = "ALWAYS" +#Show an indicator on container items when the stack carried by the cursor can be added in your inventory. +container_item_indicator = true +#Select a modifier key required to be held to use precision mode. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +#Select a modifier key required to be held to use precision mode. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +#Allowed Values: SHIFT, CONTROL, ALT +precision_mode = "CONTROL" +#Always show item tooltips while interacting with container items, even when the cursor is currently carrying an item. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Always show item tooltips while interacting with container items, even when the cursor is currently carrying an item. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +carried_item_tooltips = "ALT" +#Disable sounds from inserting and extracting items from playing, as they trigger quite often with all the new interactions. +disable_interaction_sounds = true +#Render a white overlay or the hotbar selected item frame over the slot the next item will be taken out of when right-clicking the container item. +#Allowed Values: HOTBAR, HOVER +slot_overlay = "HOVER" + diff --git a/config/puzzlesapi-iteminteractions-server.toml b/config/puzzlesapi-iteminteractions-server.toml new file mode 100644 index 0000000..eddd1e6 --- /dev/null +++ b/config/puzzlesapi-iteminteractions-server.toml @@ -0,0 +1,8 @@ +#Allow using the mouse wheel to scroll between slots in an item tooltip to choose the next item to extract. +allow_slot_cycling = true +#Allow dragging the mouse while holding a container item to insert hovered items, or to extract container contents to empty hovered slots. +allow_mouse_dragging = true +#Allow extracting / inserting only a single item from a container item instead of all items from the selected slot while a modifier key is held. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +allow_precision_mode = true + diff --git a/config/puzzlesapi-slotcycling-client.toml b/config/puzzlesapi-slotcycling-client.toml new file mode 100644 index 0000000..b1112eb --- /dev/null +++ b/config/puzzlesapi-slotcycling-client.toml @@ -0,0 +1,18 @@ +#Horizontal offset of cycle slots display from default position. +#Allows for compatibility with mods that also add their own displays next to the hotbar. +#Range: > -2147483648 +slots_x_offset = 0 +#Vertical offset of cycle slots display from screen bottom. +#Allows for compatibility with mods that move the hotbar upwards such as the Raised mod (Raised has built-in support on Fabric). +#Range: > -2147483648 +slots_y_offset = 0 +#Cycle slots by pressing a hotbar key when the corresponding slot is already selected. +double_press_hotbar_key = true +#Modifier key required to be held to allow for scrolling through cycle slots. +#Setting to "NONE" will overwrite vanilla hotbar scrolling, making the hotbar only usable with keys. +#Allowed Values: DISABLED, NONE, CONTROL, SHIFT, ALT +scrolling_modifier_key = "ALT" +#Choose when the cycle slots display is shown next to the hotbar: Always, never, or only when the modifier key for scrolling is held. Doesn't disable cycling itself though. +#Allowed Values: ALWAYS, KEY, NEVER +slots_display_state = "ALWAYS" + diff --git a/config/quality_food-client.toml b/config/quality_food-client.toml new file mode 100644 index 0000000..4d31742 --- /dev/null +++ b/config/quality_food-client.toml @@ -0,0 +1,5 @@ +#Enable / disable particles to indicate the quality level of certain blocks (e.g. furnace) +particles = true +#Enable / disable effect tooltips for food items +food_effects = true + diff --git a/config/quark-common.toml b/config/quark-common.toml new file mode 100644 index 0000000..048fa74 --- /dev/null +++ b/config/quark-common.toml @@ -0,0 +1,1954 @@ + +[tweaks] + "Double Door Opening" = false + "Armed Armor Stands" = true + "Automatic Recipe Unlock" = true + "Better Elytra Rocket" = true + "Campfires Boost Elytra" = true + "Compasses Work Everywhere" = true + "Coral On Cactus" = true + "Diamond Repair" = true + "Dragon Scales" = true + "Dyeable Item Frames" = true + Emotes = true + "Enhanced Ladders" = true + "Glass Shard" = true + "Gold Tools Have Fortune" = true + "Grab Chickens" = true + "Hoe Harvesting" = true + "Horses Swim" = true + "Improved Sponges" = true + "Lock Rotation" = true + "Magma Keeps Concrete Powder" = true + "Map Washing" = true + "More Banner Layers" = true + "More Note Block Sounds" = true + "More Villagers" = true + "No Durability On Cosmetics" = true + "Pat The Dogs" = true + "Petals On Water" = true + "Pig Litters" = true + "Poison Potato Usage" = true + "Reacharound Placing" = true + "Renewable Spore Blossoms" = true + "Replace Scaffolding" = true + "Safer Creatures" = true + "Shulker Packing" = true + "Simple Harvest" = true + "Slabs To Blocks" = true + "Slimes To Magma Cubes" = true + "Snow Golem Player Heads" = true + "Utility Recipes" = true + "Vexes Die With Their Masters" = true + "Villagers Follow Emeralds" = true + "Zombie Villagers On Normal" = true + + [tweaks.double_door_opening] + "Enable Doors" = false + "Enable Fence Gates" = false + #This feature disables itself if any of the following mods are loaded: + # - utilitix + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.automatic_recipe_unlock] + #A list of recipe names that should NOT be added in by default + "Ignored Recipes" = [] + "Force Limited Crafting" = false + "Disable Recipe Book" = false + #If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join. + "Filter Recipe Advancements" = true + #This feature disables itself if any of the following mods are loaded: + # - nerb + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.campfires_boost_elytra] + "Boost Strength" = 0.5 + "Max Speed" = 1.0 + + [tweaks.compasses_work_everywhere] + "Enable Compass Nerf" = true + "Enable Clock Nerf" = true + "Enable Nether" = true + "Enable End" = true + + [tweaks.diamond_repair] + #List of changes to apply to repair items, format is "=" as seen in the defualt. + #Multiple repair items can be applied for the same base item, and as long as at least one is provided, any vanilla option will be removed. + #To use multiple items, comma separate them (e.g. "minecraft:diamond_sword=minecraft:diamond,minecraft:emerald")If you want the vanilla option back, you must add it again manually. + "Repair Item Changes" = ["minecraft:netherite_sword=minecraft:diamond", "minecraft:netherite_pickaxe=minecraft:diamond", "minecraft:netherite_axe=minecraft:diamond", "minecraft:netherite_shovel=minecraft:diamond", "minecraft:netherite_hoe=minecraft:diamond", "minecraft:netherite_helmet=minecraft:diamond", "minecraft:netherite_chestplate=minecraft:diamond", "minecraft:netherite_leggings=minecraft:diamond", "minecraft:netherite_boots=minecraft:diamond"] + "Unrepairable Items" = [] + "Enable Jei Hints" = true + + [tweaks.emotes] + #The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it. + "Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"] + #The list of Custom Emotes to be loaded. + #Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ + "Custom Emotes" = [] + #Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly. + #DO NOT ship enabled this in a modpack, please. + "Custom Emote Debug" = false + "Button Shift X" = 0 + "Button Shift Y" = 0 + + [tweaks.enhanced_ladders] + #Allowed values: (,0] + "Fall Speed" = -0.2 + "Allow Freestanding" = true + "Allow Dropping Down" = true + "Allow Sliding" = true + "Allow Inventory Sneak" = true + + [tweaks.gold_tools_have_fortune] + #Allowed values: [0,) + "Fortune Level" = 2 + #Allowed values: [0,4] + "Harvest Level" = 2 + "Display Baked Enchantments In Tooltip" = true + "Italic Tooltip" = true + #Enchantments other than Gold's Fortune/Looting to bake into items. Format is "item+enchant@level", such as "minecraft:stick+sharpness@10". + "Baked Enchantments" = [] + + [tweaks.grab_chickens] + "Needs No Helmet" = true + #Set to 0 to disable + "Slowness Level" = 1 + + [tweaks.hoe_harvesting] + #Allowed values: [1,5] + "Regular Hoe Radius" = 2 + #Allowed values: [1,5] + "High Tier Hoe Radius" = 3 + + [tweaks.improved_sponges] + #The maximum number of water tiles that a sponge can soak up. Vanilla default is 64. + #Allowed values: [64,) + "Maximum Water Drain" = 256 + #The maximum number of water tiles that a sponge can 'crawl along' for draining. Vanilla default is 6. + #Allowed values: [6,) + "Maximum Crawl Distance" = 10 + "Enable Placing On Water" = true + + [tweaks.lock_rotation] + #When true, lock rotation indicator in the same style as crosshair + "Render Like Cross Hair" = true + + [tweaks.map_washing] + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.more_banner_layers] + #Allowed values: [1,16] + "Layer Limit" = 16 + + [tweaks.more_note_block_sounds] + "Enable Amethyst Sound" = true + + [tweaks.more_villagers] + "Ocean Villager" = true + "Beach Villager" = true + + [tweaks.no_durability_on_cosmetics] + #Allow applying cosmetic items such as color runes with no anvil durability usage? Cosmetic items are defined in the quark:cosmetic_anvil_items tag + "Allow Cosmetic Items" = true + + [tweaks.pat_the_dogs] + #How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable + "Dogs Want Love" = -1 + #Whether you can pet all mobs + "Pet All Mobs" = false + #If `petAllMobs` is set, these mobs still can't be pet + "Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"] + #Even if `petAllMobs` is not set, these mobs can be pet + "Pettable Allowlist" = [] + + [tweaks.pig_litters] + #Allowed values: [1,) + "Min Pig Litter Size" = 2 + #Allowed values: [1,) + "Max Pig Litter Size" = 3 + "Pigs Eat Golden Carrots" = true + #Allowed values: [0,) + "Min Golden Carrot Boost" = 0 + #Allowed values: [0,) + "Max Golden Carrot Boost" = 2 + + [tweaks.poison_potato_usage] + Chance = 0.1 + "Poison Effect" = true + + [tweaks.reacharound_placing] + #Allowed values: [0,1] + Leniency = 0.5 + Whitelist = [] + Blacklist = [] + + [tweaks.renewable_spore_blossoms] + "Bone Meal Chance" = 0.2 + + [tweaks.replace_scaffolding] + #How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects. + "Max Bounces" = 1 + + [tweaks.safer_creatures] + #How many blocks should be subtracted from the rabbit fall height when calculating fall damage. 5 is the same value as vanilla frogs + "Height Reduction" = 5.0 + "Enable Slime Fall Damage Removal" = true + + [tweaks.simple_harvest] + #Can players harvest crops with empty hand clicks? + "Empty Hand Harvest" = true + #Does harvesting crops with a hoe cost durability? + "Harvesting Costs Durability" = false + #Should Quark look for(nonvanilla) crops, and handle them? + "Do Harvesting Search" = true + #Should villagers use simple harvest instead of breaking crops? + "Villagers Use Simple Harvest" = true + #Which crops can be harvested? + #Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]" + "Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"] + #Which blocks should right click harvesting simulate a click on instead of breaking? + #This is for blocks like sweet berry bushes, which have right click harvesting built in. + "Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"] + + [tweaks.utility_recipes] + #Can any wool color be dyed? + "Dye Any Wool" = true + #Can other stone-like materials be used for crafting stone tools? + "Better Stone Tool Crafting" = true + #Can a dispenser be crafted by adding a bow to a dropper? + "Enable Dispenser" = true + #Can a repeater be crafted with the pattern for a redstone torch? + "Enable Repeater" = true + #Can you craft a minecart around blocks which can be placed inside? + "Enable Minecarts" = true + #Can you craft a boat around a chest to directly make a chest boat? + "Enable Chest Boats" = true + #Can you craft four chests at once using logs? + "Logs To Chests" = true + #Can Coral be crafted into dye? + "Coral To Dye" = true + #Can cookies, paper, and bread be crafted in a 2x2 crafting table? + "Bent Recipes" = true + #Can Rotten Flesh and Poisonous Potatoes be composted? + "Compostable Toxins" = true + #Does Dragon Breath return a bottle when used as a reagent or material? + "Effective Dragon Breath" = true + #Can torches can be used as fuel in furnaces? + "Torches Burn" = true + #Can bones be smelted down to bone meal? + "Bone Meal Utility" = true + #Can Charcoal be crafted into Black Dye? + "Charcoal To Black Dye" = true + #Can two Logs be used instead of a Chest to make a Hopper? + "Easy Hopper" = true + #Can two Logs be used to craft 16 sticks? + "Easy Sticks" = true + #Can raw ore blocks be smelted, taking 9x the time a normal item? + "Smelt Raw Ore Blocks" = true + +[general] + "Enable 'q' Button" = true + "'q' Button on the Right" = false + "Disable Q Menu Effects" = false + #How many advancements deep you can see in the advancement screen. Vanilla is 2. + #Allowed values: (0,) + "Advancement Visibility Depth" = 2 + #Blocks that Quark should treat as Shulker Boxes. + "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] + #Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box? + "Interpret Shulker Box Like Blocks" = true + #Set to true if you need to find the class name for a screen that's causing problems + "Print Screen Classnames" = false + #A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. + "Allowed Screens" = [] + #If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this. + "Use Screen List Blacklist" = false + #If 'true' and TerraBlender is present, Quark will add a TerraBlender region. The region will contain vanilla biomes and the Glimmering Weald. + "Terrablender Add Region" = true + #Quark will set this weight for its TerraBlender region. + "Terrablender Region Weight" = 1 + #If 'true', Quark will modify the `minecraft:overworld` MultiNoiseBiomeSourceParameterList preset, even when Terrablender is installed. + #This will have various knock-on effects but might make the Weald more common, or appear closer to modded biomes. Who knows? + "Terrablender Modify Vanilla Anyway" = false + #Set to false to disable the popup message telling you that you can config quark in the q menu + "Enable Onboarding" = true + #The amount of slots the chest button system should seek when trying to figure out if a container should be eligible for them. + "Chest Button Slot Target" = 27 + #Set this to false to not generate the Quark Programmer Art resource pack + "Generate Programmer Art" = true + + [general.chest_button_offsets] + "Player X" = 0 + "Player Y" = 0 + "Top X" = 0 + "Top Y" = 0 + "Middle X" = 0 + "Middle Y" = 0 + +[categories] + automation = true + building = true + management = true + tools = true + tweaks = true + world = true + mobs = true + client = true + experimental = true + oddities = true + +[automation] + "Chains Connect Blocks" = true + Chute = true + Crafter = true + "Dispensers Place Blocks" = true + "Ender Watcher" = true + "Feeding Trough" = true + Gravisand = true + "Iron Rod" = true + "Metal Buttons" = true + "Obsidian Plate" = true + "Pistons Move Tile Entities" = true + "Redstone Randomizer" = true + + [automation.crafter] + #Setting this to true will change the Crafter to use Emi's original design instead of Mojang's. + #Emi's design allows only one item per slot, instead of continuing to fill it round robin. + #If this is enabled, Allow Items While Powered should also be set to false for the full design. + "Use Emi Logic" = false + #Set to false to allow items to be inserted into the Crafter even while it's powered. + "Allow Items While Powered" = true + + [automation.dispensers_place_blocks] + Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"] + #Set to false to refrain from registering any behaviors for blocks that have optional dispense behaviors already set. + #An optional behavior is one that will defer to the generic dispense item behavior if its condition fails. + #e.g. the Shulker Box behavior is optional, because it'll throw out the item if it fails, whereas TNT is not optional. + #If true, it'll attempt to use the previous behavior before trying to place the block in the world. + #Requires a game restart to re-apply. + "Wrap Existing Behaviors" = true + + [automation.feeding_trough] + #How long, in game ticks, between animals being able to eat from the trough + #Allowed values: [1,) + Cooldown = 30 + #The maximum amount of animals allowed around the trough's range for an animal to enter love mode + "Max Animals" = 32 + #The chance (between 0 and 1) for an animal to enter love mode when eating from the trough + #Allowed values: (0,1] + "Love Chance" = 0.333333333 + Range = 10.0 + #Chance that an animal decides to look for a through. Closer it is to 1 the more performance it will take. Decreasing will make animals take longer to find one + "Look Chance" = 0.015 + + [automation.iron_rod] + "Use Pre End Recipe" = false + + [automation.metal_buttons] + "Enable Iron" = true + "Enable Gold" = true + + [automation.pistons_move_tile_entities] + "Enable Chests Moving Together" = true + "Render Blacklist" = ["psi:programmer", "botania:starfield"] + "Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"] + "Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"] + +[building] + "Celebratory Lamps" = true + "Compressed Blocks" = true + "Duskbound Blocks" = true + "Framed Glass" = true + "Glass Item Frame" = true + "Gold Bars" = true + Grate = true + Hedges = true + "Hollow Logs" = true + "Industrial Palette" = true + "Japanese Palette" = true + "Leaf Carpet" = true + Midori = true + "More Brick Types" = true + "More Mud Blocks" = true + "More Potted Plants" = true + "Nether Brick Fence Gate" = true + "Rainbow Lamps" = true + "Raw Metal Bricks" = true + Rope = true + "Shear Vines" = true + Shingles = true + "Soul Sandstone" = true + Stools = true + "Sturdy Stone" = true + Thatch = true + "Variant Bookshelves" = true + "Variant Chests" = true + "Variant Furnaces" = true + "Variant Ladders" = true + "Vertical Planks" = true + "Vertical Slabs" = true + "Wooden Posts" = true + "More Stone Variants" = true + + [building.celebratory_lamps] + "Light Level" = 15 + + [building.compressed_blocks] + "Charcoal Block and Blaze Lantern Stay On Fire Forever" = true + #Allowed values: [0,) + "Charcoal Block Fuel Time" = 16000 + #Allowed values: [0,) + "Blaze Lantern Fuel Time" = 24000 + #Allowed values: [0,) + "Stick Block Fuel Time" = 900 + "Enable Charcoal Block" = true + "Enable Sugar Cane Block" = true + "Enable Cactus Block" = true + "Enable Chorus Fruit Block" = true + "Enable Stick Block" = true + "Enable Apple Crate" = true + "Enable Golden Apple Crate" = true + "Enable Potato Crate" = true + "Enable Carrot Crate" = true + "Enable Golden Carrot Crate" = true + "Enable Beetroot Crate" = true + "Enable Cocoa Bean Sack" = true + "Enable Nether Wart Sack" = true + "Enable Gunpowder Sack" = true + "Enable Berry Sack" = true + "Enable Glow Berry Sack" = true + "Enable Blaze Lantern" = true + "Enable Bonded Leather" = true + "Enable Bonded Rabbit Hide" = true + + [building.glass_item_frame] + "Glass Item Frames Update Maps" = true + #Set to true for faster map updates. Default is every 3s + "Glass Item Frames Update Maps Every Tick" = false + #The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0 + "Item Render Scale" = 1.5 + + [building.gold_bars] + "Generate In Nether Fortress" = true + + [building.hollow_logs] + "Enable Auto Crawl" = true + + [building.industrial_palette] + "Enable Iron Plates" = true + "Enable Iron Ladder" = true + + [building.japanese_palette] + "Enable Paper Blocks" = true + "Enable Bamboo Mats" = true + + [building.leaf_carpet] + #This feature disables itself if any of the following mods are loaded: + # - immersive_weathering + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.more_brick_types] + #This also comes with a utility recipe for Red Nether Bricks + "Enable Blue Nether Bricks" = true + #This also includes Red Sandstone Bricks and Soul Sandstone Bricks + "Enable Sandstone Bricks" = true + #This also includes Mossy Cobblestone Bricks + "Enable Cobblestone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Blackstone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Dirt Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Netherrack Bricks" = true + + [building.rainbow_lamps] + "Light Level" = 15 + #Whether Rainbow Lamps should be made from and themed on Corundum if that module is enabled. + "Use Corundum" = true + + [building.rope] + #Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled. + #Note that ropes will still use the same blacklist. + "Force Enable Move Tile Entities" = false + "Enable Dispenser Behavior" = true + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.thatch] + #Allowed values: [0,1] + "Fall Damage Multiplier" = 0.5 + #This feature disables itself if any of the following mods are loaded: + # - environmental + # - goated + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_bookshelves] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_chests] + "Enable Reverting Wooden Chests" = true + "Replace Worldgen Chests" = true + #Chests to put in structures. It's preferred to use worldgen tags for this. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block. + "Structure Chests" = [] + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_ladders] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.vertical_slabs] + #Should Walls and Panes attempt to connect to the side of Vertical Slabs? + "Allow Side Connections" = true + + [building.more_stone_variants] + "Enable Bricks" = true + "Enable Chiseled Bricks" = true + "Enable Pillar" = true + +[management] + "Automatic Tool Restock" = true + "Easy Transfering" = true + "Expanded Item Interactions" = true + "Hotbar Changer" = true + "Inventory Sorting" = true + "Item Sharing" = true + "Quick Armor Swapping" = true + + [management.automatic_tool_restock] + #Enchantments deemed important enough to have special priority when finding a replacement + "Important Enchantments" = ["minecraft:silk_touch", "minecraft:fortune", "minecraft:infinity", "minecraft:luck_of_the_sea", "minecraft:looting"] + #Enable replacing your tools with tools of the same type but not the same item + "Enable Loose Matching" = true + #Enable comparing enchantments to find a replacement + "Enable Enchant Matching" = true + #Allow pulling items from one hotbar slot to another + "Check Hotbar" = false + "Unstackables Only" = false + #Any items you place in this list will be ignored by the restock feature + "Ignored Items" = ["botania:exchange_rod", "botania:dirt_rod", "botania:skydirt_rod", "botania:cobble_rod"] + #This feature disables itself if any of the following mods are loaded: + # - inventorytweaks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [management.easy_transfering] + "Enable Shift Lock" = true + + [management.expanded_item_interactions] + "Enable Armor Interaction" = true + "Enable Shulker Box Interaction" = true + "Enable Lava Interaction" = true + "Allow Opening Shulker Boxes" = true + "Allow Rotating Bundles" = true + + [management.hotbar_changer] + "Animation Time" = 7.0 + + [management.inventory_sorting] + "Enable Player Inventory" = true + "Enable Player Inventory In Chests" = true + "Enable Chests" = true + #Play a click when sorting inventories using keybindings + "Satisfying Click" = true + + [management.item_sharing] + #In ticks. + #Allowed values: [0,) + Cooldown = 100 + "Render Items In Chat" = true + + [management.quick_armor_swapping] + "Swap Off Hand" = true + +[tools] + Abacus = true + "Ambient Discs" = true + "Ancient Tomes" = true + "Beacon Redirection" = true + "Bottled Cloud" = true + "Color Runes" = true + "Endermosh Music Disc" = true + "Parrot Eggs" = true + "Pathfinder Maps" = true + Pickarang = true + "Seed Pouch" = true + "Skull Pikes" = true + "Slime In A Bucket" = true + "Torch Arrow" = true + Trowel = true + + [tools.abacus] + + [tools.abacus.highlight_color] + A = 0.4 + R = 0.0 + G = 0.0 + B = 0.0 + + [tools.ambient_discs] + "Drop On Spider Kill" = true + Volume = 3.0 + + [tools.ancient_tomes] + #Format is lootTable,weight. i.e. "minecraft:chests/stronghold_library,30" + "Loot Tables" = ["minecraft:chests/stronghold_library,20", "minecraft:chests/simple_dungeon,20", "minecraft:chests/bastion_treasure,25", "minecraft:chests/woodland_mansion,15", "minecraft:chests/nether_bridge,0", "minecraft:chests/underwater_ruin_big,0", "minecraft:chests/underwater_ruin_small,0", "minecraft:chests/ancient_city,4", "quark:misc/monster_box,5"] + "Item Quality" = 2 + "Normal Upgrade Cost" = 10 + "Limit Break Upgrade Cost" = 30 + "Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"] + "Overleveled Books Glow Rainbow" = true + #When enabled, Efficiency VI Diamond and Netherite pickaxes can instamine Deepslate when under Haste 2 + "Deepslate Tweak" = true + "Deepslate Tweak Needs Haste2" = true + #Master Librarians will offer to exchange Ancient Tomes, provided you give them a max-level Enchanted Book of the Tome's enchantment too. + "Librarians Exchange Ancient Tomes" = true + #Applying a tome will also randomly curse your item + "Curse Gear" = false + #Allows combining tomes with normal books + "Combine With Books" = true + #Whether a sanity check is performed on the valid enchantments. If this is turned off, enchantments such as Silk Touch will be allowed to generate Ancient Tomes, if explicitly added to the Valid Enchantments. + "Sanity Check" = true + + [tools.beacon_redirection] + "Horizontal Move Limit" = 64 + "Allow Tinted Glass Transparency" = true + + [tools.bottled_cloud] + "Cloud Level Bottom" = 191 + "Cloud Level Top" = 196 + + [tools.color_runes] + "Dungeon Weight" = 10 + "Nether Fortress Weight" = 8 + "Jungle Temple Weight" = 8 + "Desert Temple Weight" = 8 + "Item Quality" = 0 + + [tools.endermosh_music_disc] + "Play Endermosh During Enderdragon Fight" = false + "Add To End City Loot" = true + "Loot Weight" = 5 + "Loot Quality" = 1 + + [tools.parrot_eggs] + #The chance feeding a parrot will produce an egg + Chance = 0.05 + #How long it takes to create an egg + "Egg Time" = 12000 + "Enable Special Awesome Parrot" = true + + [tools.pathfinder_maps] + #In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes. + #Each custom map must be on its own line. + #The format for a custom map is as follows: + #,,,,, + #With the following descriptions: + # - being the biome's ID NAME. You can find vanilla names here - https://minecraft.wiki/w/Biome#Biome_IDs + # - being the Cartographer villager level required for the map to be unlockable + # - being the cheapest (in Emeralds) the map can be + # - being the most expensive (in Emeralds) the map can be + # - being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/ + #Here's an example of a map to locate Ice Mountains: + #minecraft:ice_mountains,2,8,14,7FE4FF + Customs = [] + #Set to false to make it so the default quark Pathfinder Map Built-In don't get added, and only the custom ones do + "Apply Default Trades" = true + #How many steps in the search should the Pathfinder's Quill do per tick? The higher this value, the faster it'll find a result, but the higher chance it'll lag the game while doing so + "Pathfinders Quill Speed" = 32 + #Experimental. Determines if quills should be multithreaded instead. Will ignore quill speed. This could drastically improve performance as it execute the logic off the main thread ideally causing no lag at all + "Multi Threaded" = true + #Allows retrying after a pathfinder quill fails to find a biome nearby. Turn off if you think its op + "Allow Retrying" = true + "Search Radius" = 6400 + "Xp From Trade" = 5 + "Add To Cartographer" = true + "Add To Wandering Trader Forced" = true + "Add To Wandering Trader Generic" = false + "Add To Wandering Trader Rare" = false + "Draw Hud" = true + "Hud On Top" = false + + [tools.pickarang] + "Enable Flamerang" = true + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + + [tools.pickarang.pickarang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 3 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 800 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 2 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.pickarang.flamerang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 4 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 1040 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 3 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.seed_pouch] + "Max Items" = 640 + "Show All Variants In Creative" = true + "Shift Range" = 3 + #Allow putting bone meal into the Seed Pouch (or anything else in the tag 'quark:seed_pouch_fertilizers') + "Allow Fertilizer" = true + "Fertilizer Shift Range" = 3 + + [tools.skull_pikes] + "Pike Range" = 5.0 + + [tools.torch_arrow] + "Extinguish On Miss" = false + + [tools.trowel] + #Amount of blocks placed is this value + 1. + #Set to 0 to make the Trowel unbreakable + #Allowed values: [0,) + "Trowel Max Durability" = 0 + +[world] + "Ancient Wood" = true + "Azalea Wood" = true + "Big Stone Clusters" = true + "Blossom Trees" = true + "Chorus Vegetation" = true + Corundum = true + "Fairy Rings" = true + "Fallen Logs" = true + "Glimmering Weald" = true + "Monster Box" = true + "Nether Obsidian Spikes" = true + "New Stone Types" = true + "No More Lava Pockets" = true + Permafrost = true + "Spiral Spires" = true + + [world.ancient_wood] + "Ancient Fruit Gives Exp" = true + #Allowed values: [1,) + "Ancient Fruit Exp Value" = 10 + #Set to a value other than 0 to enable Ancient City loot chest generation (8 recommended if you do) + #Allowed values: [0,) + "Ancient City Loot Weight" = 0 + #Allowed values: [0,) + "Ancient City Loot Quality" = 1 + #Set to 0 to disable sniffer sniffing. The vanilla loot table has every entry at weight 1, so without editing it, it's impossible to make the sapling more rare + #Allowed values: [0,) + "Sniffing Loot Weight" = 1 + #Allowed values: [0,) + "Sniffing Loot Quality" = 0 + + [world.azalea_wood] + #This feature disables itself if any of the following mods are loaded: + # - caverns_and_chasms + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [world.big_stone_clusters] + #Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension, + #do "block|dimension", as we do for netherrack and end stone by default. + "Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:marble", "quark:limestone", "quark:jasper", "quark:slate"] + + [world.big_stone_clusters.calcite] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.calcite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.calcite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.calcite.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.calcite.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.limestone] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.limestone.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.limestone.biomes.tags] + "Biome Tags" = ["forge:is_swamp", "minecraft:is_ocean"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.limestone.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.jasper] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.jasper.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.jasper.biomes.tags] + "Biome Tags" = ["minecraft:is_badlands", "forge:is_sandy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.jasper.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.shale] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.shale.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.shale.biomes.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.shale.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.myalite] + "Generate In Air" = true + Enabled = true + #Allowed values: [0,) + Rarity = 100 + "Min Y Level" = 58 + "Max Y Level" = 62 + #Allowed values: [0,) + "Horizontal Size" = 20 + #Allowed values: [0,) + "Vertical Size" = 40 + #Allowed values: [0,) + "Horizontal Variation" = 6 + #Allowed values: [0,) + "Vertical Variation" = 10 + + [world.big_stone_clusters.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.big_stone_clusters.myalite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.myalite.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.myalite.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + + [world.blossom_trees] + "Drop Leaf Particles" = true + + [world.blossom_trees.blue] + Rarity = 200 + + [world.blossom_trees.blue.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.blue.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.blue.biome_config.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.blue.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.lavender] + Rarity = 100 + + [world.blossom_trees.lavender.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.lavender.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.lavender.biome_config.tags] + "Biome Tags" = ["forge:is_swamp"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.lavender.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.orange] + Rarity = 100 + + [world.blossom_trees.orange.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.orange.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.orange.biome_config.tags] + "Biome Tags" = ["minecraft:is_savanna"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.orange.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.yellow] + Rarity = 200 + + [world.blossom_trees.yellow.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.yellow.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.yellow.biome_config.tags] + "Biome Tags" = ["forge:is_plains"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.yellow.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.red] + Rarity = 30 + + [world.blossom_trees.red.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.red.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.red.biome_config.tags] + "Biome Tags" = ["minecraft:is_badlands"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.red.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.chorus_vegetation] + Rarity = 150 + Radius = 7 + "Chunk Attempts" = 120 + "Highlands Chance" = 1.0 + "Midlands Chance" = 0.2 + "Other End Biomes Chance" = 0.0 + "Passive Teleport Chance" = 0.2 + "Endermite Spawn Chance" = 0.01 + "Teleport Duplication Chance" = 0.01 + + [world.corundum] + #Allowed values: [0,1] + "Crystal Chance" = 0.16 + #Allowed values: [0,1] + "Crystal Cluster Chance" = 0.2 + #Allowed values: [0,1] + "Crystal Cluster On Sides Chance" = 0.6 + #Allowed values: [0,1] + "Double Crystal Chance" = 0.2 + #The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth. + "Cave Crystal Growth Chance" = 5 + "Crystals Craft Runes" = true + "Enable Collateral Movement" = true + + [world.corundum.generation_settings] + #Allowed values: [0,) + Rarity = 400 + "Min Y Level" = 0 + "Max Y Level" = 64 + #Allowed values: [0,) + "Horizontal Size" = 36 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 8 + #Allowed values: [0,) + "Vertical Variation" = 6 + + [world.corundum.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.corundum.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.corundum.generation_settings.biomes.tags] + "Biome Tags" = ["minecraft:is_ocean"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.corundum.generation_settings.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.fairy_rings] + "Forest Chance" = 0.00625 + "Plains Chance" = 0.0025 + Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"] + + [world.fairy_rings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.fallen_logs] + #Percentage of fallen logs spawning as hollow. Requires Hollow Logs Module to be enabled + "Hollow Chance" = 0.7 + Rarity = 5 + #Chance for logs to spawn on water + "On Water Chance" = 0.1 + "Sparse Biome Rarity" = 12 + #Tags that define which biomes can have which wood types + "Biome Tags" = ["quark:has_fallen_acacia=minecraft:acacia_log", "quark:has_fallen_birch=minecraft:birch_log", "quark:has_fallen_cherry=minecraft:cherry_log", "quark:has_fallen_dark_oak=minecraft:dark_oak_log", "quark:has_fallen_jungle=minecraft:jungle_log", "quark:has_fallen_mangrove=minecraft:mangrove_log", "quark:has_fallen_oak=minecraft:oak_log", "quark:has_fallen_spruce=minecraft:spruce_log"] + + [world.fallen_logs.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.monster_box] + #The chance for the monster box generator to try and place one in a chunk. 0 is 0%, 1 is 100% + #This can be higher than 100% if you want multiple per chunk. + "Chance Per Chunk" = 0.2 + "Min Y" = -50 + "Max Y" = 0 + "Min Mob Count" = 5 + "Max Mob Count" = 8 + "Enable Extra Loot Table" = true + "Activation Range" = 2.5 + #How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces. + "Search Range" = 15 + + [world.monster_box.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.nether_obsidian_spikes] + #The chance for a chunk to contain spikes (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.1 + #The chance for a spike to be big (1 is 100%, 0 is 0%) + "Big Spike Chance" = 0.03 + #Should a chunk have spikes, how many would the generator try to place + "Tries Per Chunk" = 4 + "Big Spike Spawners" = true + + [world.nether_obsidian_spikes.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_nether"] + + [world.new_stone_types] + "Enable Limestone" = true + "Enable Jasper" = true + "Enable Shale" = true + "Enable Myalite" = true + "Add New Stones To Mason Trades" = true + + [world.new_stone_types.limestone] + + [world.new_stone_types.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.limestone.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.limestone.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.jasper] + + [world.new_stone_types.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.jasper.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.jasper.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.shale] + + [world.new_stone_types.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.shale.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.shale.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.myalite] + + [world.new_stone_types.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.new_stone_types.myalite.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.myalite.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.permafrost] + + [world.permafrost.generation_settings] + #Allowed values: [0,) + Rarity = 2 + "Min Y Level" = 105 + "Max Y Level" = 140 + #Allowed values: [0,) + "Horizontal Size" = 72 + #Allowed values: [0,) + "Vertical Size" = 15 + #Allowed values: [0,) + "Horizontal Variation" = 22 + #Allowed values: [0,) + "Vertical Variation" = 4 + + [world.permafrost.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.permafrost.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.permafrost.generation_settings.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.permafrost.generation_settings.biomes.biomes] + Biomes = ["minecraft:frozen_peaks"] + "Is Blacklist" = false + + [world.spiral_spires] + Rarity = 200 + Radius = 15 + "Enable Myalite Viaducts" = true + #Allowed values: [2,1,024] + "Myalite Conduit Distance" = 24 + "Renewable Myalite" = true + + [world.spiral_spires.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.spiral_spires.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.spiral_spires.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.spiral_spires.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + +[mobs] + Crabs = true + Forgotten = true + Foxhound = true + Shiba = true + Stonelings = true + Toretoise = true + Wraith = true + + [mobs.crabs] + "Enable Brewing" = true + #Whether Resilience should be required for 'How Did We Get Here?' and (if brewing is enabled) 'A Furious Cocktail'. + #Keep this on when brewing is disabled if your pack adds an alternative source for the effect. + "Resilience Required For All Effects" = true + "Add Crab Leg To Fisherman Trades" = true + + [mobs.crabs.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.crabs.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.crabs.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_beach"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.crabs.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.forgotten] + #This is the probability of a Skeleton that spawns under the height threshold being replaced with a Forgotten. + "Forgotten Spawn Rate" = 0.05 + "Max Height For Spawn" = 0 + + [mobs.foxhound] + #The chance coal will tame a foxhound + "Tame Chance" = 0.05 + "Foxhounds Speed Up Furnaces" = true + + [mobs.foxhound.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 30 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 2 + + [mobs.foxhound.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.spawn_config.biomes.biomes] + Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"] + "Is Blacklist" = false + + [mobs.foxhound.lesser_spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 2 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.foxhound.lesser_spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + + [mobs.shiba] + "Ignore Areas With Skylight" = false + + [mobs.shiba.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 40 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.shiba.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.shiba.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.shiba.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.stonelings] + "Max Y Level" = 0 + "Enable Diamond Heart" = true + #When enabled, stonelings are much more aggressive in checking for players + "Cautious Stonelings" = false + "Tamable Stonelings" = true + #Disabled if if Pathfinder Maps are disabled. + "Weald Pathfinder Maps" = true + + [mobs.stonelings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.stonelings.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 80 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.stonelings.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.stonelings.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.stonelings.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.toretoise] + "Max Y Level" = 0 + #The number of ticks from mining a tortoise until feeding it could cause it to regrow. + "Cooldown Ticks" = 1200 + #The items that can be fed to toretoises to make them regrow ores. + Foods = ["minecraft:glow_berries"] + "Allow Toretoise To Regrow" = true + #Feeding a toretoise after cooldown will regrow them with a one-in-this-number chance. Set to 1 to always regrow, higher = lower chance. + "Regrow Chance" = 3 + + [mobs.toretoise.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.toretoise.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 120 + #Allowed values: [1,) + "Min Group Size" = 2 + #Allowed values: [1,) + "Max Group Size" = 4 + + [mobs.toretoise.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.toretoise.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.toretoise.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.wraith] + #List of sound sets to use with wraiths. + #Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise) + "Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.endermen.ambient|entity.endermen.hurt|entity.endermen.death", "entity.zombie_pig.ambient|entity.zombie_pig.hurt|entity.zombie_pig.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "quark:entity.frog.idle|quark:entity.frog.hurt|quark:entity.frog.die"] + + [mobs.wraith.spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.wraith.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.wraith.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.wraith.spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + +[client] + "Auto Walk Keybind" = true + "Back Button Keybind" = true + "Buckets Show Inhabitants" = true + Camera = true + "Chest Searching" = true + "Elytra Indicator" = true + "Greener Grass" = true + "Improved Tooltips" = true + "Long Range Pick Block" = true + "Microcrafting Helper" = true + "Soul Candles" = true + "Usage Ticker" = true + "Uses For Curses" = true + "Variant Animal Textures" = true + "Wool Shuts Up Minecarts" = true + + [client.auto_walk_keybind] + "Draw Hud" = true + "Hud Height" = 10 + + [client.buckets_show_inhabitants] + "Show Axolotls" = true + "Show Crabs" = true + "Show Tropical Fish" = true + "Show Shiny Slime" = true + + [client.camera] + #Date format that will be displayed in screenshots. Must be a valid one (i.e. MM/dd/yyyy) + "Date Format" = "MM/dd/yyyy" + + [client.chest_searching] + + [client.chest_searching.overlay_color] + A = 0.67 + R = 0.0 + G = 0.0 + B = 0.0 + + [client.greener_grass] + "Affect Leaves" = true + "Affect Water" = false + "Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass", "grassslabs:grass_carpet", "grassslabs:grass_slab", "grassslabs:grass_stairs", "valhelsia_structures:grass_block"] + "Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine"] + + [client.greener_grass.color_matrix] + R = [0.89, 0.0, 0.0] + G = [0.0, 1.11, 0.0] + B = [0.0, 0.0, 0.89] + + [client.greener_grass.water_matrix] + R = [0.86, 0.0, 0.0] + G = [0.0, 1.0, 0.22] + B = [0.0, 0.0, 1.22] + + [client.improved_tooltips] + "Attribute Tooltips" = true + "Food Tooltips" = true + "Shulker Tooltips" = true + "Map Tooltips" = true + "Enchanting Tooltips" = true + "Fuel Time Tooltips" = true + "Shulker Box Use Colors" = true + "Shulker Box Require Shift" = false + "Map Require Shift" = false + #The value of each shank of food. + #Tweak this when using mods like Hardcore Hunger which change that value. + "Food Divisor" = 2 + "Show Saturation" = true + "Food Compression Threshold" = 4 + "Fuel Time Divisor" = 200 + #Should item attributes be colored relative to your current equipped item? + #e.g. if wearing an Iron Helmet, the armor value in a Diamond Helmet will show as green, and vice versa would be red. + #If set to false, item attributes will show in white or red if they're negative values. + "Show Upgrade Status" = true + "Animate Up Down Arrows" = true + "Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "minecraft:shield", "quark:pickarang", "supplementaries:slingshot", "supplementaries:bubble_blower", "farmersdelight:diamond_knife", "the_bumblezone:stinger_spear", "the_bumblezone:crystal_cannon", "the_bumblezone:honey_crystal_shield", "the_bumblezone:honey_bee_leggings_2"] + #A list of additional stacks to display on each enchantment + #The format is as follows: + #enchant_id=item1,item2,item3... + #So to display a carrot on a stick on a mending book, for example, you use: + #minecraft:mending=minecraft:carrot_on_a_stick + "Enchanting Additional Stacks" = [] + + [client.usage_ticker] + #Switch the armor display to the off hand side and the hand display to the main hand side + Invert = false + "Shift Left" = 0 + "Shift Right" = 0 + "Enable Main Hand" = true + "Enable Off Hand" = true + "Enable Armor" = true + + [client.uses_for_curses] + "Vanish Pumpkin Overlay" = true + "Bind Armor Stands With Player Heads" = true + + [client.variant_animal_textures] + "Enable Cow" = true + "Enable Pig" = true + "Enable Chicken" = true + "Enable Shiny Rabbit" = true + "Enable Shiny Llama" = true + "Enable Shiny Dolphin" = true + "Enable Shiny Slime" = true + "Enable L G B T Bees" = true + "Every Bee Is L G B T" = false + #The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable. + "Shiny Animal Chance" = 2048 + #If a shiny animal should emit occasional sparkles. + "Shiny Sparkles" = true + +[experimental] + "Adjustable Chat" = false + "Climate Control Remover" = false + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + "Enchantment Predicates" = false + "Enchantments Begone" = false + "Game Nerfs" = false + "Narrator Readout" = false + "Overlay Shader" = false + "Spawner Replacer" = false + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + "Variant Selector" = false + "Villager Rerolling Rework" = false + + [experimental.adjustable_chat] + "Horizontal Shift" = 0 + "Vertical Shift" = 0 + + [experimental.climate_control_remover] + #Disables the temperature comparison when choosing biomes to generate. + "Disable Temperature" = false + #Disables the humidity comparison when choosing biomes to generate. + "Disable Humidity" = false + #Disables the 'continentalness' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make oceans act a lot more like rivers. + "Disable Continentalness" = false + #Disables the 'erosion' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably create very extreme height differences, and will make the End more chaotic. + "Disable Erosion" = false + #Disables the 'depth' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make cave biomes appear at unusual heights. + "Disable Depth" = false + #Disables the 'weirdness' comparison when choosing biomes to generate. + #WARNING: Enabling this will... well, probably make things weird. + "Disable Weirdness" = false + #Disables the 'offset' parameter when choosing biomes to generate. + #WARNING: Enabling this will make rarer nether biomes more common. + "Disable Offset" = false + + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + [experimental.enchantment_predicates] + "Items To Change" = [] + "Enchantments To Register" = [] + + [experimental.enchantments_begone] + "Enchantments To Begone" = [] + + [experimental.game_nerfs] + #Makes Mending act like the Unmending mod + #https://www.curseforge.com/minecraft/mc-mods/unmending + "Nerf Mending" = true + #Makes Mending II still work even if mending is nerfed. + #If you want Mending II, disable the sanity check on Ancient Tomes and add minecraft:mending to the tomes. + "No Nerf for Mending II" = false + #Resets all villager discounts when zombified to prevent reducing prices to ridiculous levels + "Nerf Villager Discount" = true + #Makes Iron Golems not drop Iron Ingots + "Disable Iron Farms" = true + #Makes Boats not glide on ice + "Disable Ice Roads" = true + #Makes Sheep not drop Wool when killed + "Disable Wool Drops" = true + #Disables mob griefing for only specific entities + "Enable Selective Mob Griefing" = true + #Force Elytra to only work in specific dimensions + "Enable Dimension Locked Elytra" = true + #Makes falling blocks not able to be duped via dimension crossing + "Disable Falling Block Dupe" = true + #Fixes several piston physics exploits, most notably including TNT duping + "Disable Piston Physics Exploits" = true + #Fixes mushroom growth being able to replace blocks + "Disable Mushroom Block Removal" = true + #Makes tripwire hooks unable to be duplicated + "Disable Tripwire Hook Dupe" = true + #Makes villages spawn less often when close to spawn + "Village Spawn Nerf" = false + #Distance at which villages will spawn as normal. Effect scales linearly from world spawn + "Village Spawn Nerf Distance" = 7000 + "Non Griefing Entities" = ["minecraft:creeper", "minecraft:enderman"] + "Elytra Allowed Dimensions" = ["minecraft:the_end"] + + [experimental.overlay_shader] + #Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic). + #Some useful shaders include 'desaturate', 'oversaturate', 'bumpy' + #Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia' + Shader = "none" + + [experimental.spawner_replacer] + #Mobs to be replaced with other mobs. + #Format is: "mob1,mob2", i.e. "minecraft:spider,minecraft:skeleton" + "Replace Mobs" = [] + + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + [experimental.variant_selector] + #Set this to true to automatically convert any dropped variant items into their originals. Do this ONLY if you intend to take control of every recipe via a data pack or equivalent, as this will introduce dupes otherwise. + "Convert Variant Items" = false + #Enable the hammer, allowing variants to be swapped between eachother, including the original block. Do this ONLY under the same circumstances as Convert Variant Items. + "Enable Hammer" = false + "Show Tooltip" = true + "Align Hud To Hotbar" = false + "Show Simple Hud" = false + "Show Hud" = true + "Enable Green Tint" = true + "Override Held Item Render" = true + "Hud Offset X" = 0 + "Hud Offset Y" = 0 + #When true, selector arrow will render in same style as crosshair + "Render Like Cross Hair" = true + #Uses smaller arrow icon for variant selector overlay + "Smaller Arrow" = false + + [experimental.variant_selector.variants] + #The list of all variant types available for players to use. Values are treated as suffixes to block IDs for scanning. + #Prefix any variant type with ! to make it show up for Manual Variants but not be automatically scanned for. (e.g. '!polish') + "Variant Types" = ["slab", "stairs", "wall", "fence", "fence_gate", "vertical_slab"] + #By default, only a mod's namespace is scanned for variants for its items (e.g. if coolmod adds coolmod:fun_block, it'll search only for coolmod:fun_block_stairs). + # Mods in this list are also scanned for variants if none are found in itself (e.g. if quark is in the list and coolmod:fun_block_stairs doesn't exist, it'll try to look for quark:fun_block_stairs next) + "Tested Mods" = ["quark", "everycomp", "v_slab_compat"] + "Print Variant Map To Log" = false + #Format is 'alias=original' in each value (e.g. 'wall=fence' means that a failed search for, minecraft:cobblestone_fence will try cobblestone_wall next) + Aliases = ["carpet=slab", "pane=fence"] + #Ends of block IDs to try and remove when looking for variants. (e.g. minecraft:oak_planks goes into minecraft:oak_stairs, so we have to include '_planks' in this list for it to find them or else it'll only look for minecraft:oak_planks_stairs) + "Strip Candidates" = ["_planks", "_wool", "_block", "s"] + #Add manual variant overrides here, the format is 'type,block,output' (e.g. polish,minecraft:stone_bricks,minecraft:chiseled_stone_bricks). The type must be listed in Variant Types + "Manual Variants" = [] + # A list of block IDs and mappings to be excluded from variant selection. + #To exclude a block from being turned into other blocks, just include the block ID (e.g. minecraft:cobblestone). + #To exclude a block from having other blocks turned into it, suffix it with = (e.g. =minecraft:cobblestone_stairs) + #To exclude a specific block->variant combination, put = between the two (e.g. minecraft:cobblestone=minecraft:cobblestone_stairs) + Blacklist = ["minecraft:snow", "minecraft:bamboo", "minecraft:bamboo_block"] + + [experimental.villager_rerolling_rework] + #If enabled, the first two trades a villager generates for a profession will always be the same for a given villager. + #This prevents repeatedly placing down a job site block to reroll the villager's trades. + "Seed Initial Villager Trades" = true + #Set to 0 to disable the chance to reroll trades when restocking. + #It's possible for a trade to not restock even when the chance is 1. This happens when the rerolled trade is one the villager already has. + #This chance only guarantees a reroll will be attempted. + #Allowed values: [0,1] + "Chance To Reroll When Restocking" = 0.25 + #Set to 0 to disable the chance to reroll trades when restocking. Set to -1 to allow unlimited rerolling. + #Trades earlier in the list will restock first. + "Maximum Restocks Per Day" = 3 + #If enabled, villagers will reroll when they restock, rather than when they begin work for the day. + #If disabled, players can prevent rerolling by ensuring the villager isn't out of stock on their last restock of the day. + "Reroll On Any Restock" = false + #If enabled, villagers will be able to reroll any trade that has been used AT ALL since the last restock. + "Reroll Even If Not Out Of Stock" = false + +[oddities] + Backpack = true + Crate = true + Magnets = true + "Matrix Enchanting" = true + Pipes = true + "Tiny Potato" = true + "Totem Of Holding" = true + + [oddities.backpack] + #Set this to true to allow the backpacks to be unequipped even with items in them + "Super Op Mode" = false + "Enable Ravager Hide" = true + "Items In Backpack Tick" = true + "Base Ravager Hide Drop" = 1 + "Extra Chance Per Looting" = 0.5 + "Allow Armor Stand Unloading" = true + + [oddities.crate] + "Max Items" = 640 + + [oddities.magnets] + #Any items you place in this list will be derived so that any block made of it will become magnetizable + "Magnetic Derivation List" = ["minecraft:iron_ingot", "minecraft:copper_ingot", "minecraft:exposed_copper", "minecraft:weathered_copper", "minecraft:oxidized_copper", "minecraft:raw_iron", "minecraft:raw_copper", "minecraft:iron_ore", "minecraft:deepslate_iron_ore", "minecraft:copper_ore", "minecraft:deepslate_copper_ore", "quark:gravisand"] + #Block/Item IDs to force-allow magnetism on, regardless of their crafting recipe + "Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil", "minecraft:iron_horse_armor", "minecraft:chainmail_helmet", "minecraft:chainmail_boots", "minecraft:chainmail_leggings", "minecraft:chainmail_chestplate", "#minecraft:cauldrons"] + #Block/Item IDs to force-disable magnetism on, regardless of their crafting recipe + "Magnetic Blacklist" = ["minecraft:tripwire_hook", "minecraft:map"] + "Use Pre End Recipe" = false + #When true magnets will never push something that pistons cant push. Disable to have further control. This allows iron rods to break obsidian for example + "Use Piston Logic" = true + #Allows magnets to push and pull entities in the 'affected_by_magnets' tag (edit it with datapack). Turning off can reduce lag + "Affect Entities" = false + #Allows magnets to push and pull entities having magnetic armor. Requires 'magnetic_entities' config ON + "Affects Armor" = true + #Determines how fast entities are pulled by magnets. Still follows the inverse square law + "Entities Pull Force" = 0.18000000715255737 + #Stonecutters pulled by magnets will silk touch the blocks they cut. + "Stone Cutter Silk Touch" = true + #The maximum hardness of a block that a stonecutter pushed by magnets can cut through. + "Stone Cutter Max Hardness" = 3.0 + + [oddities.matrix_enchanting] + #The maximum enchanting power the matrix enchanter can accept + "Max Bookshelves" = 15 + #Should this be X, the price of a piece increase by 1 every X pieces you generate + "Piece Price Scale" = 9 + #The higher this is, the better enchantments you'll get on books + "Book Enchantability" = 12 + #How many pieces you can generate without any bookshelves + "Base Max Piece Count" = 3 + #How many pieces you can generate without any bookshelves (for Books) + "Base Max Piece Count Book" = 1 + #At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor + "Min Level Cutoff" = 8 + #How many pieces a single Lapis can generate + "Charge Per Lapis" = 4 + #How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff) + "Min Level Scale Factor" = 1.2 + #How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used + "Min Level Scale Factor Book" = 2.0 + #How much to multiply the frequency of pieces where at least one of the same type has been generated + "Dupe Multiplier" = 1.4 + #How much to multiply the frequency of pieces where incompatible pieces have been generated + "Incompatible Multiplier" = 0.0 + #Set to false to disable the ability to create Enchanted Books + "Allow Books" = true + #Set this to true to allow treasure enchantments to be rolled as pieces + "Allow Treasures" = false + #Set this to true to allow undiscoverable enchantments to be rolled as pieces + "Allow Undiscoverable Enchantments" = false + #Any treasure enchantment IDs here will be able to appear in books in matrix enchanting + "Treasure Whitelist" = [] + #Any undiscoverable enchantment IDs here will be able to appear in matrix enchanting + "Undiscoverable Whitelist" = [] + #Set to false to disable the tooltip for items with pending enchantments + "Show Tooltip" = true + #By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour. + "Normalize Rarity" = true + #Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Underwater Enchanting" = true + #Matrix Enchanting can be done with short (<= 3px blocks) instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Short Block Enchanting" = true + #Candles with soul sand below them or below the bookshelves dampen enchantments instead of influence them. + "Soul Candles Invert" = true + #A list of enchantment IDs you don't want the enchantment table to be able to create + "Disallowed Enchantments" = [] + #An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors. + #A minus sign before an enchantment will make the influence decrease the probability of that enchantment. + "Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"] + #An array of influences that other blocks should apply. + #Format is: "blockstate;strength;color;enchantments", i.e. "minecraft:sea_pickle[pickles=1,waterlogged=false];1;#008000;minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide" (etc) or "minecraft:anvil[facing=north];#808080;-minecraft:thorns,minecraft:unbreaking" (etc) + "States To Influences" = [] + #Set to false to disable the ability to influence enchantment outcomes with candles + "Allow Influencing" = true + #The max amount of candles that can influence a single enchantment + "Influence Max" = 4 + #How much each candle influences an enchantment. This works as a multiplier to its weight + "Influence Power" = 0.125 + #If you set this to false, the vanilla Enchanting Table will no longer automatically convert to the Matrix Enchanting table. You'll have to add a recipe for the Matrix Enchanting Table to make use of this. + "Automatically Convert" = true + + [oddities.pipes] + #How long it takes for an item to cross a pipe. Bigger = slower. + "Pipe Speed" = 5 + #Set to 0 if you don't want pipes to have a max amount of items + "Max Pipe Items" = 16 + #When items eject or are absorbed by pipes, should they make sounds? + "Do Pipes Whoosh" = true + "Enable Encased Pipes" = true + "Render Pipe Items" = false + "Emit Vibrations" = true + + [oddities.tiny_potato] + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + #This feature disables itself if any of the following mods are loaded: + # - botania + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [oddities.totem_of_holding] + #Set this to false to remove the behaviour where totems destroy themselves if the player dies again. + "Dark Souls Mode" = true + #Totem will always spawn if the player killer is themselves. + "Spawn Totem on PVP Kill" = false + #Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped + "Destroy Lost Items" = false + #Set this to false to only allow the owner of a totem to collect its items rather than any player + "Allow Anyone To Collect" = true + diff --git a/config/raided-common.toml b/config/raided-common.toml new file mode 100644 index 0000000..5a75fbd --- /dev/null +++ b/config/raided-common.toml @@ -0,0 +1,24 @@ + +#General settings +[General] + #Enable Inquisitor spawning during raids based on the 'inquisitorSpawnsPerWave' setup + spawnInquisitor = true + #The spawns per wave for the Inquisitor before bonus spawns are applied (Must always have 8 values!) + inquisitorSpawnsPerWave = [0, 0, 0, 3, 0, 0, 0, 0] + #Enable Incinerator spawning during raids based on the 'incineratorSpawnsPerWave' setup + spawnIncinerator = true + #The spawns per wave for the Incinerator before bonus spawns are applied (Must always have 8 values!) + incineratorSpawnsPerWave = [0, 0, 0, 0, 1, 0, 0, 1] + #Enable Savager spawning during raids based on the 'savagerSpawnsPerWave' setup + spawnSavager = true + #The spawns per wave for the Savager before bonus spawns are applied (Must always have 8 values!) + savagerSpawnsPerWave = [0, 0, 0, 2, 0, 0, 1, 0] + #Enable Necromancer spawning during raids based on the 'necromancerSpawnsPerWave' setup + spawnNecromancer = true + #The spawns per wave for the Necromancer before bonus spawns are applied (Must always have 8 values!) + necromancerSpawnsPerWave = [0, 0, 1, 0, 0, 1, 0, 0] + #Enable Electromancer spawning during raids based on the 'electromancerSpawnsPerWave' setup + spawnElectromancer = true + #The spawns per wave for the Electromancer before bonus spawns are applied (Must always have 8 values!) + electromancerSpawnsPerWave = [0, 1, 0, 2, 0, 1, 0, 0] + diff --git a/config/railcraft-client.toml b/config/railcraft-client.toml new file mode 100644 index 0000000..4f93e7e --- /dev/null +++ b/config/railcraft-client.toml @@ -0,0 +1,11 @@ +#Change to false to disable Ghost Train rendering +ghostTrainEnabled = true +#Change to false to disable Polar Express (snow) rendering +polarExpressEnabled = true +#Change '14' to a number ranging from '0' to '15' to represent the dynamic lighting of the locomotive when Dynamic Lights mod is present. +#If it is '0' then locomotive lightning will be disabled. +#Range: 0 ~ 15 +locomotiveLightLevel = 14 +#Set to false to disable the message that informs you that you are using a beta version. +showMessageBeta = true + diff --git a/config/railcraft-common.toml b/config/railcraft-common.toml new file mode 100644 index 0000000..3ea0790 --- /dev/null +++ b/config/railcraft-common.toml @@ -0,0 +1,15 @@ + +#General configuration settings +[common] + #Enable season-based item & train effects? + seasonsEnabled = true + #Controls whether Christmas mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + christmas = 0 + #Controls whether Halloween mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + halloween = 0 + #Controls whether Harvest mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + harvest = 0 + diff --git a/config/ramchunks-server.toml b/config/ramchunks-server.toml new file mode 100644 index 0000000..3460301 --- /dev/null +++ b/config/ramchunks-server.toml @@ -0,0 +1,31 @@ + +#RAM Chunk Storage Configuration +[storage] + #Enable RAM-based chunk storage (requires restart) + enableRamStorage = true + #Interval in minutes between auto-saves (min 1, max 120) + #Range: 1 ~ 120 + autoSaveInterval = 5 + #Maximum number of chunks to keep in RAM (0 for unlimited) + #Range: > 0 + maxChunksInRam = 2000 + #Enable NBT compression when saving chunks to disk + enableCompression = true + #Enable debug logging (spammy) + enableDebugLogging = false + #Custom directory to store chunk data (leave empty for default) + customStorageDir = "" + #Number of chunks to unload in a single tick (reduces lag spikes) + #Range: 1 ~ 100 + chunkUnloadBatchSize = 10 + #Automatically unload unused chunks when memory is low + enableAutoUnload = true + #Maximum memory usage in MB before forcing chunk unloads (0 to disable) + #Range: 0 ~ 16384 + maxMemoryUsageMB = 0 + #Enable asynchronous chunk saving (recommended) + enableAsyncSaving = true + #Number of threads to use for async saving (1-8) + #Range: 1 ~ 8 + asyncSaveThreads = 2 + diff --git a/config/rats-client.toml b/config/rats-client.toml new file mode 100644 index 0000000..f4a7bff --- /dev/null +++ b/config/rats-client.toml @@ -0,0 +1,17 @@ + +[general] + #True if player UI has plague hearts render when the effect is active. + "Plague Heart Overlay" = true + #If true, the plague heart overlay will render as a single row of hearts instead of multiple. Turn this on if you have a mod like Mantle or Armor Points ++ installed. + "Single Row Plague Heart Overlay" = false + #If true, being under the effect of Synesthesia will tint your screen yellow. + "Synesthesia Shader" = true + #True if rats flutes can occasionally play the flute sound at the end of the Spongebob intro. Might be smart to disable this while streaming. + "Rat Flutes play Spongebob flute sound" = true + #True if rats should rarely make a funny noise when creating rat nuggets. + "Rat Fart Noises" = true + #If true, rats that have the rat upgrade: god will display with an enchantment overlay. + "Rat God Upgrade Glint" = true + #If true, rats that have the rat upgrade: angel will display with a white overlay when respawning. + "Rat Angel Upgrade Glint" = true + diff --git a/config/rats-common.toml b/config/rats-common.toml new file mode 100644 index 0000000..9afbd42 --- /dev/null +++ b/config/rats-common.toml @@ -0,0 +1,272 @@ + +[Ratlantis] + #If true, the ratlantis datapack will automatically be enabled when creating a new world. + "Ratlantis Datapack Enabled by Default" = false + +[Spawning] + #Percentage for every random tick to spawn a rat for a garbage pile. + #Range: 0.0 ~ 1.0 + "Garbage Pile Spawn Chance" = 0.15000000596046448 + #True if rats should spawn like monsters, meaning they will also despawn when get far away (this only applies to wild rats of course). False if they should only spawn once per world, like pigs and sheep. + "Rats Spawn Like Monsters" = true + #A separate random roll that only spawns rats if a one-out-of-X chance, x being this number. raise this number to make them more rare. + #Range: > 0 + "Rat Spawn Decrease" = 5 + #A separate random roll that only spawns pipers if a one-out-of-X chance, x being this number. raise this number to make them more rare. + #Range: > 0 + "Piper Spawn Decrease" = 2 + +[Villages] + #True if iron golems will attack wild rats + "Golems Target Rats" = true + #True if pet shops can spawn in villages + "Village Pet Shops" = true + #Defines how often Pet Shops should spawn in villages. A higher number means Pet Shops will spawn more often. + #Range: 0 ~ 100 + "Village Pet Shop Weight" = 15 + #Defines how often Pet Shops should spawn in zombie villages. A higher number means Pet Shops will spawn more often. + #Range: 0 ~ 100 + "Zombie Village Pet Shop Weight" = 10 + #True if garbage heaps can spawn in villages + "Village Garbage Heap" = true + #Defines how often Garbage Heaps should spawn in villages. A higher number means Garbage Heaps will spawn more often. + #Range: 0 ~ 100 + "Village Garbage Heap Weight" = 1 + #Defines how often Garbage Heaps should spawn in villages. A higher number means Garbage Heaps will spawn more often. + #Range: 0 ~ 100 + "Zombie Village Garbage Heap Weight" = 5 + +[Cheesemaking] + #True if cheese can be created in cauldrons + Cheesemaking = true + #The time in ticks(20 per second) it takes for milk to turn into cheese in a cauldron + #Range: 20 ~ 1000000 + "Milk Curdling Time" = 150 + #The how many chunks away can a rat here a rat flute + #Range: 1 ~ 100 + "Rat Flute Distance" = 2 + +["Black Death"] + #If true, a plague doctor will be converted into the Black Death when struck by lightning. + "Black Death Lightning Strike" = true + #If true, Black Death will respawn Plague Rats when it has less than the max defined Plague Rats at its command. + "Black Death Constantly Spawns Rats" = false + #Defines the amount of Plague Rats Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Max Plague Rats" = 15 + #If true, Black Death will respawn Plague Clouds when it has less than the max defined Plague Clouds at its command. + "Black Death Constantly Spawns Plague Clouds" = true + #Defines the amount of Plague Clouds Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Max Plague Clouds" = 4 + #If true, Black Death will respawn Plague Beasts when it has less than the max defined Plague Beasts at its command. + "Black Death Constantly Spawns Plague Beasts" = false + #Defines the amount of Plague Beasts Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Plague Beasts" = 3 + +["Rat King"] + #If true, the Rat King will reabsorb rats that circle around it if it doesnt have an active target. + "Rat King Reabsorbs Rats" = true + #Defines the amount of health the Rat King heals when reabsorbing a rat + #Range: 0.0 ~ 3.4028234663852886E38 + "Rat King Absorption Heal Rate" = 0.0 + #If true, the Rat King will respawn Rats when it has less than the max defined Plague Rats at its command. + "Rat King Max Constantly Spawns Rats" = true + #Defines the amount of Rats the Rat King can have at its command at a time. + #Range: 0 ~ 100 + "Rat King Max Rats" = 10 + +["Ratlantean Automaton"] + #If true, the Ratlantean Automaton will only be summonable in Ratlantis. Building it in any other dimension will have no effect. + "Summon Ratlantean Automaton only in Ratlantis" = false + #How often the Ratlantean Automaton will shoot a laser. It will shoot a laser every 1 in X attacks, X being the number defined. + #Range: > 0 + "Ratlantean Automaton Shooting Chance" = 2 + #The distance the Ratlantean Automaton can hit you with its saw. + #Range: > 0 + "Ratlantean Automaton Melee Attack Distance" = 7 + #The distance the Ratlantean Automaton can hit you with its laser. + #Range: > 0 + "Ratlantean Automaton Ranged Attack Distance" = 10 + +[Neo-Ratlantean] + #If true, the Neo-Ratlantean will only be summonable in Ratlantis. Throwing the vial in any other dimension will have no effect. + "Summon Neo-Ratlantean only in Ratlantis" = false + #If true, the Neo-Ratlantean will utilize Laser Portals in its fight that shoot lasers at you. + "Neo-Ratlantean Laser Portals" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Laser Portal attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Laser Portals" = 100 + #If true, the Neo-Ratlantean will occasionally summon lightning bolts nearby. The lightning is completely harmless. + "Neo-Ratlantean Fake Lightning" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Fake Lightning attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Fake Lightning" = 40 + #If true, the Neo-Ratlantean will pick up blocks and throw them in your direction. + "Neo-Ratlantean Throws Blocks" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Block Throwing attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Throwing Blocks" = 40 + #If true, the Neo-Ratlantean will randomly afflict the use with wither, glowing, and levitation for 10 seconds. + "Neo-Ratlantean Adds Harmful Effects" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Mob Effect attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Effects" = 100 + +["Flying Dutchrat"] + #If true, the Flying Dutchrat will only be summonable in Ratlantis. Ringing the bell in any other dimension will have no effect. + "Summon Flying Dutchrat only in Ratlantis" = false + #How many blocks away the dutchrat can fly away from its home point, which is the spot where the bell was when summoned. + #Range: 0 ~ 64 + "Flying Dutchrat Restriction Radius" = 20 + #How often the Flying Dutchrat will throw a sword. It will throw a sword every 1 in X attacks, X being the number defined. + #Range: > 0 + "Flying Dutchrat Sword Throw Chance" = 5 + +["Rat Baron"] + #If true, the Rat Baron will only be summonable in Ratlantis. Activating the siren in any other dimension will have no effect. + "Summon Automaton only in Ratlantis" = false + #The height above the ground the rat baron plane will hover around. A random amount of blocks between 0 and 10 will be added to the number provided at random points to keep things interesting. + #Range: 0 ~ 100 + "Rat Baron Y Hover Height" = 20 + #How often the Rat Baron Plane will fire a bullet. It will fire a bullet every X ticks, X being the number defined. + #Range: > 1 + "Rat Baron Shot Frequency" = 2 + #The amount of damage each bullet fired from the Rat Baron plane does. Setting to 0 will make the bullets purely visual. + #Range: 0.0 ~ 1.7976931348623157E308 + "Rat Baron Bullet Damage" = 0.5 + +["Rat Griefing"] + #True if wild rats will destroy and eat crops + "Rats Raid Crops" = true + #True if wild rats will steal from chests + "Rats Steal From Chests" = true + #True if wild rats should be allowed to climb over tall blocks, such as fences and walls. + "Rats Climb over Fences and Walls" = true + #True if wild rats contaminate food when they steal from chests + "Rats Contaminate Food" = true + #True if rats can dig holes + "Rats Dig Holes" = true + #True if infected mobs with plague can spread it by interacting or attacking. + "Other Mobs can spread Plague" = true + #The max block hardness that rats are allowed to dig through. (Dirt = 0.5F, Cobblestone = 2.0F, Obsidian = 50.0F) + #Range: 0.0 ~ 1000000.0 + "Rat Dig Strength" = 6.0 + #True if tamed rats will destroy crops when they harvest them + "Rats Break Crops on Harvest" = true + +["Rat Upgrades"] + #Defines how much of a multiplier rats get when armor is put on them. For example, putting a diamond helmet on when this is set to 3 gives the rat 9 armor points. + #Range: 1 ~ 1000 + "Rats Armor Multiplier" = 3 + #If true, rats will recharge items held in their main hand when they have an energy upgrade. + "Rats Charge Held Items" = true + #How much RF a rat with a basic energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Basic" = 1000 + #How much RF per tick a rat can charge their held item with a basic energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Basic" = 10 + #How much RF a rat with an advanced energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Advanced" = 5000 + #How much RF per tick a rat can charge their held item with an advanced energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Advanced" = 50 + #How much RF a rat with an elite energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Elite" = 10000 + #How much RF per tick a rat can charge their held item with an elite energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Elite" = 100 + #How much RF a rat with an extreme energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Extreme" = 100000 + #How much RF per tick a rat can charge their held item with an extreme energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Extreme" = 500 + #How far away from players the Rat Upgrade: Voodoo Doll is effective. + #Range: 0.0 ~ 1.7976931348623157E308 + "Voodoo Doll Rat distance" = 32.0 + #Sets a Rat's max health to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 1024.0 + "Warrior Health Upgrade" = 40.0 + #Sets a Rat's Armor to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 30.0 + "Warrior Armor Upgrade" = 2.0 + #Sets a Rat's attack damage to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 2048.0 + "Warrior Damage Upgrade" = 5.0 + #Sets a Rat's max health to this value when they have the God Upgrade. + #Range: 0.0 ~ 1024.0 + "God Health Upgrade" = 150.0 + #Sets a Rat's Armor to this value when they have the God Upgrade. + #Range: 0.0 ~ 30.0 + "God Armor Upgrade" = 10.0 + #Sets a Rat's attack damage to this value when they have the God Upgrade. + #Range: 0.0 ~ 2048.0 + "God Damage Upgrade" = 15.0 + #Sets a Rat's max health to this value when they have the God Upgrade. + #Range: 0.0 ~ 1024.0 + "Dragon Health Upgrade" = 50.0 + #Sets a Rat's Armor to this value when they have the God Upgrade. + #Range: 0.0 ~ 30.0 + "Dragon Armor Upgrade" = 5.0 + #Sets a Rat's attack damage to this value when they have the God Upgrade. + #Range: 0.0 ~ 2048.0 + "Dragon Damage Upgrade" = 8.0 + #Sets a Rat's max health to this value when they have the Demon Upgrade. + #Range: 0.0 ~ 1024.0 + "Demon Health Upgrade" = 40.0 + #Sets a Rat's attack damage to this value when they have the Demon Upgrade. + #Range: 0.0 ~ 2048.0 + "Demon Damage Upgrade" = 4.0 + #Sets a Rat's max health to this value when they have the Voodoo Upgrade. + #Range: 0.0 ~ 1024.0 + "Voodoo Health Upgrade" = 100.0 + #Sets a Rat's Armor to this value when they have the Ratinator Upgrade. + #Range: 0.0 ~ 30.0 + "Ratinator Armor Upgrade" = 15.0 + #Sets a Rat's max health to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 1024.0 + "Nonbeliever Health Upgrade" = 350.0 + #Sets a Rat's Armor to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 30.0 + "Nonbeliever Armor Upgrade" = 20.0 + #Sets a Rat's attack damage to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 2048.0 + "Nonbeliever Damage Upgrade" = 40.0 + #Rats that have an upgrade that regenerates health will regen half a heart every X ticks, X being the number defined here. Set to 0 to disable health regeneration. + #Range: > 0 + "Upgrade Regeneration Rate" = 30 + #If true, Rats that have the Psychic upgrade will pick up blocks and throw them towards enemies. + "Psychic Throws Blocks" = false + #How much damage a rat should take when eaten while having the Carrat Upgrade. + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage per Carrat Upgrade bite" = 0.0 + +["Misc Rat Adjustments"] + #Defines how large the radius staff can get. Do note that the bigger the radius, the larger the performance impact as rats need to search a bigger area for tasks. Going above 16 is not recommended. + #Range: 1 ~ 64 + "Max Staff Radius" = 16 + #Defines the amount of rats you can store in a sack at one time. + #Range: 1 ~ 64 + "Rat Sack Capacity" = 16 + #Rats will continue to breed in cages until there are this many rats in one cage block + #Range: 1 ~ 10000 + "Rat Cage Max Occupancy" = 4 + #The max amount of Baby Rats will be produced when Rats breed. You will get anywhere between 1 and this number of baby rats. + #Range: 1 ~ 10 + "Rat Litter Size" = 1 + #The amount of time it takes after a rat successfully breeds for it to breed again. Time is in ticks. (24000 ticks = 1200 seconds = 20 minutes) + #Range: > 0 + "Rat Breeding Cooldown" = 24000 + #Rats will conduct expensive CPU operations like looking for crops or chests, once every this number of ticks(with added standard deviation for servers) + #Range: 1 ~ 10000 + "Rat Update Delay" = 100 + #If true, wild rats will rarely spawn wearing a santa hat. Rats will spawn with Santa hats during the Christmas season regardless, this will enable you to find them year round. + "Rats Spawn with Santa Hats" = false + #If true, wild rats will rarely spawn wearing a randomly colored party hat. Rats will spawn with Party hats during the New Year's Eve and special dates regardless, this will enable you to find them year round. + "Rats Spawn with Party Hats" = false + diff --git a/config/realistic-landing.properties b/config/realistic-landing.properties new file mode 100644 index 0000000..4549440 --- /dev/null +++ b/config/realistic-landing.properties @@ -0,0 +1,27 @@ +#Realistic Landing 2.0 +#Presets: balanced, realistic, cinematic. Blank values use the preset. +#Hard-landing damage is disabled by default while handling is tuned. +#Sat Jul 18 12:38:18 GMT 2026 +air_throttle_retention=0.998 +approach_height= +bounce_control=true +braking_strength=1.00 +damage_multiplier=1.00 +enabled=true +flare_assist=true +flare_height= +flare_strength= +go_around_throttle=0.94 +hard_landing_damage=false +hud_anchor=middle_left +hud_enabled=true +hud_offset_x=9 +hud_offset_y=42 +minimum_ground_throttle= +payload_effects=true +pitch_smoothing=1.00 +preset=realistic +rating_display_ticks=100 +rollout_retention= +runway_stability=true +surface_physics=true diff --git a/config/rebornstorage-common.toml b/config/rebornstorage-common.toml new file mode 100644 index 0000000..9aecb6f --- /dev/null +++ b/config/rebornstorage-common.toml @@ -0,0 +1,43 @@ + +#General Settings +[general] + #Power requirement for Frame blocks + #Range: 0 ~ 1000 + multiblock_crafter_frame_cost = 0 + #Power requirement for Heat exchanger blocks + #Range: 0 ~ 1000 + multiblock_crafter_heat_cost = 0 + #Power requirement for Crafting Cpu blocks + #Range: 0 ~ 1000 + multiblock_crafter_cpu_cost = 5 + #Power requirement for Storage blocks + #Range: 0 ~ 1000 + multiblock_crafter_storage_cost = 10 + +#Multiblock Settings +[multiblock] + #Maximum X size + #Range: 3 ~ 64 + multiblock_crafter_max_x = 16 + #Maximum Y size + #Range: 3 ~ 64 + multiblock_crafter_max_y = 16 + #Maximum Z size + #Range: 3 ~ 64 + multiblock_crafter_max_z = 16 + #Maximum X size + #Range: 3 ~ 64 + multiblock_crafter_min_x = 3 + #Maximum Y size + #Range: 3 ~ 64 + multiblock_crafter_min_y = 3 + #Maximum Z size + #Range: 3 ~ 64 + multiblock_crafter_min_z = 3 + #Range: > 0 + advanced_wireless_transmitter_range = 1000 + #Range: 0 ~ 100000 + advanced_wireless_transmitter_cost = 100 + #Range: 0 ~ 100000 + advanced_wireless_transmitter_range_booster_range = 500 + diff --git a/config/recipeessentials.json b/config/recipeessentials.json new file mode 100644 index 0000000..87e3561 --- /dev/null +++ b/config/recipeessentials.json @@ -0,0 +1,30 @@ +{ + "disableRecipebook": { + "desc:": "Disables the recipe book entirely, removes the button on client side and removes synced data on server side: default:false", + "disableRecipebook": false + }, + "enableBetterRecipebookSorting": { + "desc:": "Enables better sorting for the list of displayed recipes in the recipebook, craftables and recently used recipes are priotized: default:true", + "enableBetterRecipebookSorting": true + }, + "recipebookShowAll": { + "desc:": "Enables the recipe book to show all recipes from the get go, also enables modded recipes to show and disables network/login overhead: default:true", + "recipebookShowAll": true + }, + "fastItemComparisons": { + "desc:": "Enables faster item comparison for better performance, disable on mod conflicts: default:true", + "fastItemComparisons": true + }, + "smallerRecipePacket": { + "desc:": "Reduces the size of the recipe packet, to prevent errors on too large packets and helps bad connections, requires the mod to be present on both client and server, disable on mod conflicts: default:false", + "smallerRecipePacket": false + }, + "cacheRecipes": { + "desc:": "Caches recipe lookups to greatly improve lookup speed: default:true", + "cacheRecipes": true + }, + "logCachingErrors": { + "desc:": "Enables error logging for recipe caching: default:false", + "logCachingErrors": false + } +} \ No newline at end of file diff --git a/config/refinedstorage-client.toml b/config/refinedstorage-client.toml new file mode 100644 index 0000000..20a3280 --- /dev/null +++ b/config/refinedstorage-client.toml @@ -0,0 +1,23 @@ + +[grid] + #The maximum amount of rows that the Grid can show when stretched + #Range: > 3 + maxRowsStretch = 2147483647 + #Whether the Grid should display a detailed tooltip when hovering over an item or fluid + detailedTooltip = true + #Whether the Grid should use a large font for stack quantity display + largeFont = false + #Whether the Grid should prevent sorting while the shift key is held down + preventSortingWhileShiftIsDown = true + #Whether the Grid should remember the search query when closing and re-opening the Grid + rememberSearchQuery = false + +[crafterManager] + #The maximum amount of rows that the Crafter Manager can show when stretched + #Range: > 3 + maxRowsStretch = 2147483647 + +[cover] + #When true all the possible covers will be added to JEI (Game restart required) + showAllCoversInJEI = false + diff --git a/config/refurbished_furniture.client.toml b/config/refurbished_furniture.client.toml new file mode 100644 index 0000000..d1eb0ed --- /dev/null +++ b/config/refurbished_furniture.client.toml @@ -0,0 +1,24 @@ +# The maximum speed the ceiling fan will spin when powered. This is visual only and does not affect damage. +# Valid range: 1 to 50 (inclusive) +ceilingFanMaxSpeed = 50.0 +# If enabled, shows an overlay on the HUD to help with cutting board slicing and combining recipes. +# Note: This is an experimental feature. +# Valid values: true, false +showCuttingBoardHelper = false +# The maximum distance that electricity nodes and connections can be seen by the camera. +# Valid range: 1 to 128 (inclusive) +electricityViewDistance = 48 +# If enabled, displays a toast notification when another player rings one of your doorbells. +# Valid values: true, false +doorbellNotification = true + +# Experimental options +[experimental] + # This config option is only if you have a shaders mod install, like Iris or Optifine. + # If enabled, this will fix an issue where if an entity with the glow effect is in view + # that it prevents electricity links and nodes from rendering. It may not fix 100% for + # every shader pack. + # WARNING: This will break the entity glow effect, this may or may not be a problem for you. + # Valid values: true, false + electricityShadersFix = false + diff --git a/config/refurbished_furniture.server.toml b/config/refurbished_furniture.server.toml new file mode 100644 index 0000000..edb07d1 --- /dev/null +++ b/config/refurbished_furniture.server.toml @@ -0,0 +1,169 @@ + +# Recipe related properties +[recipes] + # If enabled, the Frying Pan and Grill will inherit all the cooking recipes from the + # vanilla Campfire. + # Valid values: true, false + inheritCampfireRecipes = true + +# Electricity related properties +[electricity] + # The maximum amount of links that can be connected to an Electricity Generator. + # Valid range: 1 to 64 (inclusive) + maximumLinksPerElectricityGenerator = 12 + # The maximum area radius determines the size of the area which electricity nodes must + # be inside of to be powered by a source node (like the Electricity Generator). The + # radius is represented as blocks. The center of the area is the source node providing + # the power, and area radius expands in each cardinal direction, including up and down. + # For example, if we have an area radius of 16 blocks, a source node can provide power + # to other electricity nodes from (x-16,y-16,z-16) to (x+16,y+16,z+16) with x,y,z being + # the block position of the source. Electricity nodes still must be connected with + # links to be powered, this config value just determines the acceptable area. + # Valid range: 1 to 256 (inclusive) + powerableAreaRadius = 80 + # The amount of power that is generated by the electricity generator per fuel tick. + # For example, coal has 1600 ticks of fuel, and at a ratio of 4, it would produce + # 6400 units of power. The default value of 8 means that the electricity generator + # would consume almost 2 coal per in-game day. + # Valid range: 1 to 128 (inclusive) + fuelToPowerRatio = 16 + # The maximum amount of nodes in a network that can be powered by an electricity + # source, like the electricity generator. + # Valid range: 1 to 512 (inclusive) + maximumNodesInNetwork = 64 + # The maximum amount of links that can be connected to a single electricity node. + # Valid range: 1 to 64 (inclusive) + maximumLinksPerElectricityNode = 6 + + # Cheats for electricity. Free power, etc. + [electricity.cheats] + # Makes all blocks that require electricity always be powered without them being + # connected to an Electricity Generator. Warning, some blocks may no longer work as + # expected. Use at your own risk of a downgraded experience. + # Valid values: true, false + everythingIsPowered = false + # Electricity Generators will now output free power, and stay on forever. + # Valid values: true, false + freeGeneratorPower = false + +# Mailing related properties +[mailing] + # Prevents items contained in this list from being sent through a Post Box. + # An example of how the list is defined: + # bannedItems = [ + # "minecraft:water_bucket", + # "minecraft:diamond", + # "refurbished_furniture:mailbox" + # ... + # ] + # ^ Note: This is just an example. Write your list below. + bannedItems = [] + # The maximum amount of mailboxes a player is allowed to register/own. + # Valid range: 1 to 2147483647 (inclusive) + maxMailboxesPerPlayer = 16 + # A list of dimensions you are allowed to place mailboxes. An empty list means that + # mailboxes can be placed in any dimension. + # An example of how the list is defined: + # allowedDimensions = [ + # "minecraft:overworld", + # "minecraft:the_nether", + # ... + # ] + # ^ Note: This is just an example. Write your list below. + allowedDimensions = [] + # The maximum amount of items that can be queued for delivery to a mailbox. Items become + # queued when the receiving mailbox's inventory is full. This is to prevent infinite storage. + # Valid range: 0 to 256 (inclusive) + deliveryQueueSize = 32 + # If enabled, this will ban items with an inventory (like a Shulker Box) being sent through + # a Post Box. This prevents players from creating massive NBT on a single item, which can + # cause issues for your server/world save. + # Valid values: true, false + banSendingItemsWithInventories = true + # The amount of inventory rows in a mailbox. If you change this value from a larger to + # a smaller value, items contained in the removed rows will be deleted. Use caution + # when changing this value to avoid inconvenience and backup your saves. + # Valid range: 1 to 6 (inclusive) + mailboxInventoryRows = 1 + +# Basin related properties +[basin] + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 1000 + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + +# Bath related properties +[bath] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 10000 + +# Kitchen Sink related properties +[kitchenSink] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 3000 + +# Recycle Bin related properties +[recycleBin] + # The maximum amount of experience levels that the recycling bin can hold. Recycling stops once it reaches that level. + # Valid range: 1 to 100 (inclusive) + maximumExperienceLevels = 5 + # The amount of time in ticks that it takes to perform one cycle of recycling + # Valid range: 1 to 2147483647 (inclusive) + processingTime = 10 + # The amount of experience to add when recycling an item. + # Valid range: 0 to 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (inclusive) + experiencePerItem = 0.05 + +# Toilet related properties +[toilet] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 1000 + +# Trampoline related properties +[trampoline] + # The maximum height that can be achieved from bouncing on the trampoline. The maximum + # height is affected the shape of the trampoline, the center trampoline in a 3x3 will + # be able to reach the maximum bounce height, while a single trampoline will only reach + # half. + # Valid range: 0 to 64 (inclusive) + maxBounceHeight = 8.0 + +# Television related properties +[television] + # If enabled, when the weather is thunder, the television will strangely loose signal. + # There should be no reason this should happen, none at all. It might be a good idea + # to turn your television off until it clears up. + # Valid values: true, false + looseSignalDuringThunderstorm = true + diff --git a/config/regions_unexplored/ru-common.toml b/config/regions_unexplored/ru-common.toml new file mode 100644 index 0000000..a47bc4b --- /dev/null +++ b/config/regions_unexplored/ru-common.toml @@ -0,0 +1,119 @@ + +#Config for Regions Unexplored! +[region_configs] + #Enable this before changing the other region config files. If disabled, RU will use builtin biome placement. + toggle_custom_regions = false + #Sets Terrablender region weight for the primary region. + #Range: 0 ~ 2147483646 + primary_region_weight = 11 + #Sets Terrablender region weight for the secondary region. + #Range: 0 ~ 2147483646 + secondary_region_weight = 8 + #Sets Terrablender region weight for the rare region. + #Range: 0 ~ 2147483646 + rare_region_weight = 1 + #Sets Terrablender region weight for Nether region. + #Range: 0 ~ 2147483646 + nether_region_weight = 14 + +[biome_toggles] + #overworld_biomes + toggle_alpha_grove = true + toggle_arid_mountains = true + toggle_smouldering_woodland = true + toggle_autumnal_maple_forest = true + toggle_bamboo_forest = true + toggle_baobab_savanna = true + toggle_barley_fields = true + toggle_bayou = true + toggle_blackwood_taiga = true + toggle_boreal_taiga = true + toggle_chalk_cliffs = true + toggle_clover_plains = true + toggle_cold_boreal_taiga = true + toggle_cold_deciduous_forest = true + toggle_cold_river = true + toggle_deciduous_forest = true + toggle_dry_bushland = true + toggle_eucalyptus_forest = true + toggle_fen = true + toggle_flower_field = true + toggle_frozen_pine_taiga = true + toggle_frozen_tundra = true + toggle_fungal_fen = true + toggle_golden_boreal_taiga = true + toggle_grassland = true + toggle_grassy_beach = true + toggle_gravel_beach = true + toggle_highland_fields = true + toggle_hyacinth_deeps = true + toggle_icy_desert = true + toggle_icy_heights = true + toggle_joshua_desert = true + toggle_magnolia_woodland = true + toggle_maple_forest = true + toggle_marsh = true + toggle_mauve_hills = true + toggle_meadow = true + toggle_mountains = true + toggle_muddy_river = true + toggle_old_growth_bayou = true + toggle_orchard = true + toggle_outback = true + toggle_pine_slopes = true + toggle_pine_taiga = true + toggle_poppy_fields = true + toggle_prairie = true + toggle_pumpkin_fields = true + toggle_rainforest = true + toggle_rocky_reef = true + toggle_redwoods = true + toggle_saguaro_desert = true + toggle_shrubland = true + toggle_silver_birch_forest = true + toggle_sparse_rainforest = true + toggle_sparse_redwoods = true + toggle_spires = true + toggle_steppe = true + toggle_temperate_grove = true + toggle_towering_cliffs = true + toggle_tropical_river = true + toggle_tropics = true + toggle_willow_forest = true + #cave_biomes + toggle_ancient_delta = true + toggle_bioshroom_caves = true + toggle_prismachasm = true + toggle_redstone_caves = true + toggle_scorching_caves = true + #nether_biomes + toggle_blackstone_basin = true + toggle_glistering_meadow = true + toggle_infernal_holt = true + toggle_mycotoxic_undergrowth = true + toggle_redstone_hell = true + +[worldgen_options] + #surface_rules + toggle_custom_dirt = true + +[client_options] + toggle_mauve_leaves_particles = true + toggle_blue_magnolia_leaves_particles = true + toggle_pink_magnolia_leaves_particles = true + toggle_white_magnolia_leaves_particles = true + toggle_red_maple_leaves_particles = true + toggle_orange_maple_leaves_particles = true + toggle_silver_birch_leaves_particles = true + toggle_enchanted_birch_leaves_particles = true + #block_color_options + #Sets Eucalyptus colour transition size. Bigger number = bigger distance between colours. + #Range: 0.0 ~ 200.0 + eucalyptus_transition_size = 25.0 + #Sets Eucalyptus colour saturation. + #Range: 0.0 ~ 1.0 + eucalyptus_saturation = 0.5 + #Sets Eucalyptus colour saturation. + #Range: 0.0 ~ 1.0 + eucalyptus_brightness = 0.8 + diff --git a/config/regions_unexplored/ru-primary-region.toml b/config/regions_unexplored/ru-primary-region.toml new file mode 100644 index 0000000..a93c2a3 --- /dev/null +++ b/config/regions_unexplored/ru-primary-region.toml @@ -0,0 +1,333 @@ + +#Config for Regions Unexplored primary region! +#NOTICE: Make sure 'enable_custom_regions' is enabled in Common configs or this config will have no effect on generation! +#If you have custom regions enabled: to get future update biomes to spawn, you will either need to delete the config and let it regen, or add the new biomes manually. +[-----------------MIDDLE_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:frozen_tundra" + icy_dry = "regions_unexplored:frozen_tundra" + icy_neutral = "regions_unexplored:frozen_pine_taiga" + icy_wet = "regions_unexplored:cold_boreal_taiga" + icy_humid = "regions_unexplored:cold_boreal_taiga" + #cool_biomes + cool_arid = "regions_unexplored:pumpkin_fields" + cool_dry = "regions_unexplored:autumnal_maple_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:orchard" + neutral_dry = "regions_unexplored:shrubland" + neutral_neutral = "regions_unexplored:temperate_grove" + neutral_wet = "regions_unexplored:pine_taiga" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:barley_fields" + warm_dry = "regions_unexplored:prairie" + warm_neutral = "regions_unexplored:grassland" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:redwoods" + #hot_biomes + hot_arid = "regions_unexplored:baobab_savanna" + hot_dry = "regions_unexplored:baobab_savanna" + hot_neutral = "regions_unexplored:saguaro_desert" + hot_wet = "regions_unexplored:outback" + hot_humid = "regions_unexplored:eucalyptus_forest" + +[-----------------MIDDLE_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "regions_unexplored:frozen_pine_taiga" + icy_dry = "regions_unexplored:frozen_tundra" + icy_neutral = "regions_unexplored:frozen_tundra" + icy_wet = "regions_unexplored:cold_boreal_taiga" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:autumnal_maple_forest" + cool_dry = "regions_unexplored:autumnal_maple_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:golden_boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:orchard" + neutral_dry = "regions_unexplored:shrubland" + neutral_neutral = "regions_unexplored:temperate_grove" + neutral_wet = "regions_unexplored:pine_taiga" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:prairie" + warm_dry = "regions_unexplored:deciduous_forest" + warm_neutral = "regions_unexplored:grassland" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:baobab_savanna" + hot_dry = "regions_unexplored:baobab_savanna" + hot_neutral = "regions_unexplored:saguaro_desert" + hot_wet = "regions_unexplored:outback" + hot_humid = "regions_unexplored:eucalyptus_forest" + +[-----------------PLATEAU_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:cold_boreal_taiga" + #cool_biomes + cool_arid = "regions_unexplored:autumnal_maple_forest" + cool_dry = "regions_unexplored:autumnal_maple_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:highland_fields" + neutral_dry = "regions_unexplored:highland_fields" + neutral_neutral = "regions_unexplored:highland_fields" + neutral_wet = "regions_unexplored:highland_fields" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:barley_fields" + warm_dry = "regions_unexplored:deciduous_forest" + warm_neutral = "regions_unexplored:deciduous_forest" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:saguaro_desert" + hot_wet = "regions_unexplored:eucalyptus_forest" + hot_humid = "regions_unexplored:eucalyptus_forest" + +[-----------------PLATEAU_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:autumnal_maple_forest" + cool_dry = "regions_unexplored:autumnal_maple_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:golden_boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:orchard" + neutral_dry = "regions_unexplored:highland_fields" + neutral_neutral = "regions_unexplored:temperate_grove" + neutral_wet = "regions_unexplored:pine_taiga" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:deciduous_forest" + warm_dry = "regions_unexplored:deciduous_forest" + warm_neutral = "regions_unexplored:deciduous_forest" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:saguaro_desert" + hot_wet = "regions_unexplored:eucalyptus_forest" + hot_humid = "regions_unexplored:eucalyptus_forest" + +[-----------------SHATTERED_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:icy_heights" + #cool_biomes + cool_arid = "regions_unexplored:towering_cliffs" + cool_dry = "regions_unexplored:towering_cliffs" + cool_neutral = "regions_unexplored:towering_cliffs" + cool_wet = "regions_unexplored:towering_cliffs" + cool_humid = "regions_unexplored:towering_cliffs" + #neutral_biomes + neutral_arid = "regions_unexplored:towering_cliffs" + neutral_dry = "regions_unexplored:towering_cliffs" + neutral_neutral = "regions_unexplored:towering_cliffs" + neutral_wet = "regions_unexplored:towering_cliffs" + neutral_humid = "regions_unexplored:towering_cliffs" + #warm_biomes + warm_arid = "regions_unexplored:barley_fields" + warm_dry = "regions_unexplored:deciduous_forest" + warm_neutral = "regions_unexplored:deciduous_forest" + warm_wet = "regions_unexplored:sparse_redwoods" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:saguaro_desert" + hot_wet = "regions_unexplored:eucalyptus_forest" + hot_humid = "regions_unexplored:eucalyptus_forest" + +[-----------------SLOPE_BIOMES--------------------] + #slope_biomes + icy_slope_biome = "minecraft:snowy_slopes" + cold_slope_biome = "minecraft:grove" + neutral_slope_biome = "regions_unexplored:pine_slopes" + warm_slope_biome = "regions_unexplored:deciduous_forest" + hot_slope_biome = "regions_unexplored:eucalyptus_forest" + #slope_biomes_variant + icy_slope_biome_variant = "regions_unexplored:cold_deciduous_forest" + cold_slope_biome_variant = "regions_unexplored:pine_slopes" + neutral_slope_biome_variant = "regions_unexplored:pine_slopes" + warm_slope_biome_variant = "regions_unexplored:deciduous_forest" + hot_slope_biome_variant = "regions_unexplored:eucalyptus_forest" + +[-----------------PEAK_BIOMES--------------------] + #peak_biomes + icy_peak_biome = "minecraft:frozen_peaks" + cold_peak_biome = "minecraft:jagged_peaks" + neutral_peak_biome = "regions_unexplored:mountains" + warm_peak_biome = "minecraft:stony_peaks" + hot_peak_biome = "regions_unexplored:arid_mountains" + #peak_biomes_variant + icy_peak_biome_variant = "minecraft:jagged_peaks" + cold_peak_biome_variant = "regions_unexplored:mountains" + neutral_peak_biome_variant = "regions_unexplored:mountains" + warm_peak_biome_variant = "minecraft:stony_peaks" + hot_peak_biome_variant = "regions_unexplored:arid_mountains" + +[-----------------RIVER_BIOMES--------------------] + #icy_biomes + icy_arid = "minecraft:frozen_river" + icy_dry = "minecraft:frozen_river" + icy_neutral = "minecraft:frozen_river" + icy_wet = "minecraft:frozen_river" + icy_humid = "regions_unexplored:cold_river" + #cool_biomes + cool_arid = "regions_unexplored:cold_river" + cool_dry = "regions_unexplored:cold_river" + cool_neutral = "regions_unexplored:muddy_river" + cool_wet = "regions_unexplored:muddy_river" + cool_humid = "regions_unexplored:muddy_river" + #neutral_biomes + neutral_arid = "minecraft:river" + neutral_dry = "minecraft:river" + neutral_neutral = "minecraft:river" + neutral_wet = "minecraft:river" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "minecraft:river" + warm_dry = "minecraft:river" + warm_neutral = "minecraft:river" + warm_wet = "minecraft:river" + warm_humid = "minecraft:river" + #hot_biomes + hot_arid = "minecraft:river" + hot_dry = "minecraft:river" + hot_neutral = "regions_unexplored:tropical_river" + hot_wet = "regions_unexplored:tropical_river" + hot_humid = "regions_unexplored:tropical_river" + +[-----------------RIVER_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "minecraft:frozen_river" + icy_dry = "minecraft:frozen_river" + icy_neutral = "minecraft:frozen_river" + icy_wet = "minecraft:frozen_river" + icy_humid = "regions_unexplored:cold_river" + #cool_biomes + cool_arid = "regions_unexplored:cold_river" + cool_dry = "regions_unexplored:cold_river" + cool_neutral = "regions_unexplored:muddy_river" + cool_wet = "regions_unexplored:muddy_river" + cool_humid = "regions_unexplored:muddy_river" + #neutral_biomes + neutral_arid = "minecraft:river" + neutral_dry = "minecraft:river" + neutral_neutral = "minecraft:river" + neutral_wet = "minecraft:river" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "minecraft:river" + warm_dry = "minecraft:river" + warm_neutral = "minecraft:river" + warm_wet = "minecraft:river" + warm_humid = "minecraft:river" + #hot_biomes + hot_arid = "minecraft:river" + hot_dry = "minecraft:river" + hot_neutral = "regions_unexplored:tropical_river" + hot_wet = "regions_unexplored:tropical_river" + hot_humid = "regions_unexplored:tropical_river" + +[-----------------SWAMP_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:spires" + icy_dry = "regions_unexplored:spires" + icy_neutral = "regions_unexplored:spires" + icy_wet = "regions_unexplored:spires" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:fen" + cool_dry = "regions_unexplored:fen" + cool_neutral = "regions_unexplored:fen" + cool_wet = "regions_unexplored:fen" + cool_humid = "regions_unexplored:fen" + #neutral_biomes + neutral_arid = "regions_unexplored:old_growth_bayou" + neutral_dry = "regions_unexplored:bayou" + neutral_neutral = "regions_unexplored:bayou" + neutral_wet = "regions_unexplored:bayou" + neutral_humid = "regions_unexplored:old_growth_bayou" + #warm_biomes + warm_arid = "regions_unexplored:marsh" + warm_dry = "regions_unexplored:marsh" + warm_neutral = "regions_unexplored:marsh" + warm_wet = "regions_unexplored:marsh" + warm_humid = "regions_unexplored:marsh" + #hot_biomes + hot_arid = "regions_unexplored:fungal_fen" + hot_dry = "regions_unexplored:fungal_fen" + hot_neutral = "regions_unexplored:fungal_fen" + hot_wet = "regions_unexplored:fungal_fen" + hot_humid = "regions_unexplored:fungal_fen" + +[-----------------OCEAN_BIOMES--------------------] + #deep_oceans + deep_icy = "regions_unexplored:hyacinth_deeps" + deep_cool = "minecraft:deep_cold_ocean" + deep_neutral = "minecraft:deep_ocean" + deep_warm = "minecraft:deep_lukewarm_ocean" + deep_hot = "minecraft:warm_ocean" + #oceans + icy = "minecraft:frozen_ocean" + cool = "minecraft:cold_ocean" + neutral = "minecraft:ocean" + warm = "minecraft:lukewarm_ocean" + hot = "regions_unexplored:rocky_reef" + +[-----------------SHORE_BIOMES--------------------] + #beach_biomes + icy_beach_biome = "minecraft:snowy_beach" + cold_beach_biome = "regions_unexplored:gravel_beach" + neutral_beach_biome = "regions_unexplored:grassy_beach" + warm_beach_biome = "regions_unexplored:grassy_beach" + hot_beach_biome = "minecraft:beach" + #stone_beach_biomes + cold_stone_beach_biome = "minecraft:stony_shore" + hot_stone_beach_biome = "regions_unexplored:chalk_cliffs" + +[-----------------UNDERGROUND_BIOMES--------------------] + cave_1_biome = "minecraft:lush_caves" + cave_2_biome = "minecraft:dripstone_caves" + cave_3_biome = "minecraft:deep_dark" + cave_4_biome = "regions_unexplored:bioshroom_caves" + cave_5_biome = "regions_unexplored:ancient_delta" + cave_6_biome = "regions_unexplored:prismachasm" + cave_7_biome = "regions_unexplored:redstone_caves" + cave_8_biome = "regions_unexplored:scorching_caves" + +[-----------------ISLAND_BIOMES--------------------] + icy_island_biome = "regions_unexplored:alpha_grove" + cool_island_biome = "regions_unexplored:alpha_grove" + neutral_island_biome = "regions_unexplored:ashen_woodland" + warm_island_biome = "regions_unexplored:tropics" + hot_island_biome = "regions_unexplored:tropics" + +[-----------------OTHER_BIOMES--------------------] + shattered_cliff_biome = "regions_unexplored:towering_cliffs" + diff --git a/config/regions_unexplored/ru-secondary-region.toml b/config/regions_unexplored/ru-secondary-region.toml new file mode 100644 index 0000000..3022707 --- /dev/null +++ b/config/regions_unexplored/ru-secondary-region.toml @@ -0,0 +1,333 @@ + +#Config for Regions Unexplored secondary region! +#NOTICE: Make sure 'enable_custom_regions' is enabled in Common configs or this config will have no effect on generation! +#If you have custom regions enabled: to get future update biomes to spawn, you will either need to delete the config and let it regen, or add the new biomes manually. +[-----------------MIDDLE_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:frozen_tundra" + icy_dry = "regions_unexplored:frozen_tundra" + icy_neutral = "regions_unexplored:frozen_pine_taiga" + icy_wet = "regions_unexplored:cold_boreal_taiga" + icy_humid = "regions_unexplored:cold_boreal_taiga" + #cool_biomes + cool_arid = "regions_unexplored:poppy_fields" + cool_dry = "regions_unexplored:silver_birch_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:flower_fields" + neutral_dry = "regions_unexplored:rocky_meadow" + neutral_neutral = "regions_unexplored:willow_forest" + neutral_wet = "regions_unexplored:clover_plains" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:mauve_hills" + warm_dry = "regions_unexplored:rocky_meadow" + warm_neutral = "regions_unexplored:bamboo_forest" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:redwoods" + #hot_biomes + hot_arid = "regions_unexplored:dry_bushland" + hot_dry = "regions_unexplored:dry_bushland" + hot_neutral = "regions_unexplored:joshua_desert" + hot_wet = "regions_unexplored:rainforest" + hot_humid = "regions_unexplored:rainforest" + +[-----------------MIDDLE_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "regions_unexplored:frozen_pine_taiga" + icy_dry = "regions_unexplored:frozen_tundra" + icy_neutral = "regions_unexplored:frozen_tundra" + icy_wet = "regions_unexplored:cold_boreal_taiga" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:poppy_fields" + cool_dry = "regions_unexplored:silver_birch_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:golden_boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:flower_fields" + neutral_dry = "regions_unexplored:rocky_meadow" + neutral_neutral = "regions_unexplored:magnolia_woodland" + neutral_wet = "regions_unexplored:clover_plains" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:mauve_hills" + warm_dry = "regions_unexplored:rocky_meadow" + warm_neutral = "regions_unexplored:bamboo_forest" + warm_wet = "regions_unexplored:redwoods" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:dry_bushland" + hot_dry = "regions_unexplored:dry_bushland" + hot_neutral = "regions_unexplored:joshua_desert" + hot_wet = "regions_unexplored:rainforest" + hot_humid = "regions_unexplored:sparse_rainforest" + +[-----------------PLATEAU_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:cold_boreal_taiga" + #cool_biomes + cool_arid = "regions_unexplored:poppy_fields" + cool_dry = "regions_unexplored:silver_birch_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:highland_fields" + neutral_dry = "regions_unexplored:highland_fields" + neutral_neutral = "regions_unexplored:highland_fields" + neutral_wet = "regions_unexplored:highland_fields" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:mauve_hills" + warm_dry = "regions_unexplored:magnolia_woodland" + warm_neutral = "regions_unexplored:magnolia_woodland" + warm_wet = "regions_unexplored:magnolia_woodland" + warm_humid = "regions_unexplored:redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:joshua_desert" + hot_wet = "regions_unexplored:rainforest" + hot_humid = "regions_unexplored:rainforest" + +[-----------------PLATEAU_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:poppy_fields" + cool_dry = "regions_unexplored:silver_birch_forest" + cool_neutral = "regions_unexplored:maple_forest" + cool_wet = "regions_unexplored:boreal_taiga" + cool_humid = "regions_unexplored:golden_boreal_taiga" + #neutral_biomes + neutral_arid = "regions_unexplored:highland_fields" + neutral_dry = "regions_unexplored:highland_fields" + neutral_neutral = "regions_unexplored:magnolia_woodland" + neutral_wet = "regions_unexplored:clover_plains" + neutral_humid = "regions_unexplored:blackwood_taiga" + #warm_biomes + warm_arid = "regions_unexplored:mauve_hills" + warm_dry = "regions_unexplored:magnolia_woodland" + warm_neutral = "regions_unexplored:magnolia_woodland" + warm_wet = "regions_unexplored:magnolia_woodland" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:joshua_desert" + hot_wet = "regions_unexplored:rainforest" + hot_humid = "regions_unexplored:sparse_rainforest" + +[-----------------SHATTERED_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:icy_heights" + icy_dry = "regions_unexplored:icy_heights" + icy_neutral = "regions_unexplored:icy_heights" + icy_wet = "regions_unexplored:icy_heights" + icy_humid = "regions_unexplored:icy_heights" + #cool_biomes + cool_arid = "regions_unexplored:towering_cliffs" + cool_dry = "regions_unexplored:towering_cliffs" + cool_neutral = "regions_unexplored:towering_cliffs" + cool_wet = "regions_unexplored:towering_cliffs" + cool_humid = "regions_unexplored:towering_cliffs" + #neutral_biomes + neutral_arid = "regions_unexplored:towering_cliffs" + neutral_dry = "regions_unexplored:towering_cliffs" + neutral_neutral = "regions_unexplored:towering_cliffs" + neutral_wet = "regions_unexplored:towering_cliffs" + neutral_humid = "regions_unexplored:towering_cliffs" + #warm_biomes + warm_arid = "regions_unexplored:magnolia_woodland" + warm_dry = "regions_unexplored:magnolia_woodland" + warm_neutral = "regions_unexplored:magnolia_woodland" + warm_wet = "regions_unexplored:magnolia_woodland" + warm_humid = "regions_unexplored:sparse_redwoods" + #hot_biomes + hot_arid = "regions_unexplored:steppe" + hot_dry = "regions_unexplored:steppe" + hot_neutral = "regions_unexplored:joshua_desert" + hot_wet = "regions_unexplored:sparse_rainforest" + hot_humid = "regions_unexplored:sparse_rainforest" + +[-----------------SLOPE_BIOMES--------------------] + #slope_biomes + icy_slope_biome = "minecraft:snowy_slopes" + cold_slope_biome = "minecraft:grove" + neutral_slope_biome = "regions_unexplored:pine_slopes" + warm_slope_biome = "regions_unexplored:magnolia_woodland" + hot_slope_biome = "regions_unexplored:rainforest" + #slope_biomes_variant + icy_slope_biome_variant = "regions_unexplored:cold_deciduous_forest" + cold_slope_biome_variant = "regions_unexplored:pine_slopes" + neutral_slope_biome_variant = "regions_unexplored:pine_slopes" + warm_slope_biome_variant = "regions_unexplored:magnolia_woodland" + hot_slope_biome_variant = "regions_unexplored:rainforest" + +[-----------------PEAK_BIOMES--------------------] + #peak_biomes + icy_peak_biome = "minecraft:frozen_peaks" + cold_peak_biome = "minecraft:jagged_peaks" + neutral_peak_biome = "regions_unexplored:mountains" + warm_peak_biome = "minecraft:stony_peaks" + hot_peak_biome = "regions_unexplored:arid_mountains" + #peak_biomes_variant + icy_peak_biome_variant = "minecraft:jagged_peaks" + cold_peak_biome_variant = "regions_unexplored:mountains" + neutral_peak_biome_variant = "regions_unexplored:mountains" + warm_peak_biome_variant = "minecraft:stony_peaks" + hot_peak_biome_variant = "regions_unexplored:arid_mountains" + +[-----------------RIVER_BIOMES--------------------] + #icy_biomes + icy_arid = "minecraft:frozen_river" + icy_dry = "minecraft:frozen_river" + icy_neutral = "minecraft:frozen_river" + icy_wet = "minecraft:frozen_river" + icy_humid = "minecraft:frozen_river" + #cool_biomes + cool_arid = "regions_unexplored:cold_river" + cool_dry = "regions_unexplored:cold_river" + cool_neutral = "regions_unexplored:cold_river" + cool_wet = "regions_unexplored:muddy_river" + cool_humid = "regions_unexplored:muddy_river" + #neutral_biomes + neutral_arid = "minecraft:river" + neutral_dry = "minecraft:river" + neutral_neutral = "minecraft:river" + neutral_wet = "minecraft:river" + neutral_humid = "minecraft:river" + #warm_biomes + warm_arid = "minecraft:river" + warm_dry = "minecraft:river" + warm_neutral = "minecraft:river" + warm_wet = "minecraft:river" + warm_humid = "minecraft:river" + #hot_biomes + hot_arid = "minecraft:river" + hot_dry = "minecraft:river" + hot_neutral = "regions_unexplored:tropical_river" + hot_wet = "regions_unexplored:tropical_river" + hot_humid = "regions_unexplored:tropical_river" + +[-----------------RIVER_BIOMES_VARIANT--------------------] + #icy_biomes + icy_arid = "minecraft:frozen_river" + icy_dry = "minecraft:frozen_river" + icy_neutral = "minecraft:frozen_river" + icy_wet = "minecraft:frozen_river" + icy_humid = "minecraft:frozen_river" + #cool_biomes + cool_arid = "regions_unexplored:cold_river" + cool_dry = "regions_unexplored:cold_river" + cool_neutral = "regions_unexplored:cold_river" + cool_wet = "regions_unexplored:muddy_river" + cool_humid = "regions_unexplored:muddy_river" + #neutral_biomes + neutral_arid = "minecraft:river" + neutral_dry = "minecraft:river" + neutral_neutral = "minecraft:river" + neutral_wet = "minecraft:river" + neutral_humid = "minecraft:river" + #warm_biomes + warm_arid = "minecraft:river" + warm_dry = "minecraft:river" + warm_neutral = "minecraft:river" + warm_wet = "minecraft:river" + warm_humid = "minecraft:river" + #hot_biomes + hot_arid = "minecraft:river" + hot_dry = "minecraft:river" + hot_neutral = "regions_unexplored:tropical_river" + hot_wet = "regions_unexplored:tropical_river" + hot_humid = "regions_unexplored:tropical_river" + +[-----------------SWAMP_BIOMES--------------------] + #icy_biomes + icy_arid = "regions_unexplored:spires" + icy_dry = "regions_unexplored:spires" + icy_neutral = "regions_unexplored:spires" + icy_wet = "regions_unexplored:spires" + icy_humid = "regions_unexplored:spires" + #cool_biomes + cool_arid = "regions_unexplored:fen" + cool_dry = "regions_unexplored:fen" + cool_neutral = "regions_unexplored:fen" + cool_wet = "regions_unexplored:fen" + cool_humid = "regions_unexplored:fen" + #neutral_biomes + neutral_arid = "regions_unexplored:old_growth_bayou" + neutral_dry = "regions_unexplored:bayou" + neutral_neutral = "regions_unexplored:bayou" + neutral_wet = "regions_unexplored:bayou" + neutral_humid = "regions_unexplored:old_growth_bayou" + #warm_biomes + warm_arid = "regions_unexplored:marsh" + warm_dry = "regions_unexplored:marsh" + warm_neutral = "regions_unexplored:marsh" + warm_wet = "regions_unexplored:marsh" + warm_humid = "regions_unexplored:marsh" + #hot_biomes + hot_arid = "regions_unexplored:fungal_fen" + hot_dry = "regions_unexplored:fungal_fen" + hot_neutral = "regions_unexplored:fungal_fen" + hot_wet = "regions_unexplored:fungal_fen" + hot_humid = "regions_unexplored:fungal_fen" + +[-----------------OCEAN_BIOMES--------------------] + #deep_oceans + deep_icy = "regions_unexplored:hyacinth_deeps" + deep_cool = "minecraft:deep_cold_ocean" + deep_neutral = "minecraft:deep_ocean" + deep_warm = "minecraft:deep_lukewarm_ocean" + deep_hot = "minecraft:warm_ocean" + #oceans + icy = "minecraft:frozen_ocean" + cool = "minecraft:cold_ocean" + neutral = "minecraft:ocean" + warm = "minecraft:lukewarm_ocean" + hot = "regions_unexplored:rocky_reef" + +[-----------------SHORE_BIOMES--------------------] + #beach_biomes + icy_beach_biome = "minecraft:snowy_beach" + cold_beach_biome = "regions_unexplored:gravel_beach" + neutral_beach_biome = "regions_unexplored:grassy_beach" + warm_beach_biome = "regions_unexplored:grassy_beach" + hot_beach_biome = "minecraft:beach" + #stone_beach_biomes + cold_stone_beach_biome = "minecraft:stony_shore" + hot_stone_beach_biome = "regions_unexplored:chalk_cliffs" + +[-----------------UNDERGROUND_BIOMES--------------------] + cave_1_biome = "minecraft:lush_caves" + cave_2_biome = "minecraft:dripstone_caves" + cave_3_biome = "minecraft:deep_dark" + cave_4_biome = "regions_unexplored:bioshroom_caves" + cave_5_biome = "regions_unexplored:ancient_delta" + cave_6_biome = "regions_unexplored:prismachasm" + cave_7_biome = "regions_unexplored:redstone_caves" + cave_8_biome = "regions_unexplored:scorching_caves" + +[-----------------ISLAND_BIOMES--------------------] + icy_island_biome = "regions_unexplored:alpha_grove" + cool_island_biome = "regions_unexplored:alpha_grove" + neutral_island_biome = "regions_unexplored:ashen_woodland" + warm_island_biome = "regions_unexplored:tropics" + hot_island_biome = "regions_unexplored:tropics" + +[-----------------OTHER_BIOMES--------------------] + shattered_cliff_biome = "regions_unexplored:towering_cliffs" + diff --git a/config/relics.yaml b/config/relics.yaml new file mode 100644 index 0000000..1a70b1f --- /dev/null +++ b/config/relics.yaml @@ -0,0 +1,4 @@ +# Toggles advanced configuration files, allowing customization of most of the mod's functionality. May contain WIP content that may change in the future. +# +# Activating this feature may lead to unintended consequences, so use it only if you know what you're doing. If any part of the mod update involves changes to the configuration file values, these changes will not be applied automatically. You will need to manually update the necessary sections or reset them to their original state. +enabledExtendedConfigs: false diff --git a/config/reliquary-client.toml b/config/reliquary-client.toml new file mode 100644 index 0000000..69dc003 --- /dev/null +++ b/config/reliquary-client.toml @@ -0,0 +1,54 @@ + +#Client Settings +[client] + #Whether player has to sneak to see additional info in waila + waila_shift_for_info = false + + #Position of mode and/or item display on the screen - used by some of the tools and weapons. + [client.hudPositions] + #Position of Sojouner Staff HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + sojournerStaff = "BOTTOM_RIGHT" + #Position of Handgun HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + handgun = "BOTTOM_RIGHT" + #Position of Alkahestry Tome HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + alkahestryTome = "BOTTOM_RIGHT" + #Position of Destruction Catalyst HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + destructionCatalyst = "BOTTOM_RIGHT" + #Position of Ender Staff HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + enderStaff = "BOTTOM_RIGHT" + #Position of Ice Magus Rod HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + iceMagusRod = "BOTTOM_RIGHT" + #Position of Glacial Staff HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + glacialStaff = "BOTTOM_RIGHT" + #Position of Void Tear HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + voidTear = "BOTTOM_RIGHT" + #Position of Midas Touchstone HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + midasTouchstone = "BOTTOM_RIGHT" + #Position of Infernal Chalice HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + harvestRod = "BOTTOM_RIGHT" + #Position of Ender Staff HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + infernalChalice = "BOTTOM_RIGHT" + #Position of Hero Medallion HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + heroMedallion = "BOTTOM_RIGHT" + #Position of Pyromancer Staff HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + pyromancerStaff = "BOTTOM_RIGHT" + #Position of Rending Gale HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + rendingGale = "BOTTOM_RIGHT" + #Position of Mob Charm HUD + #Allowed Values: BOTTOM_LEFT, LEFT, TOP_LEFT, TOP, TOP_RIGHT, RIGHT, BOTTOM_RIGHT + mobCharm = "RIGHT" + diff --git a/config/reliquary-common.toml b/config/reliquary-common.toml new file mode 100644 index 0000000..c8081d5 --- /dev/null +++ b/config/reliquary-common.toml @@ -0,0 +1,513 @@ +#Determines whether Reliquary items will be generated in chest loot (mostly mob drops, very rarely some lower level items) +chestLootEnabled = true +#Determines wheter Reliquary mob drops have crafting recipes +dropCraftingRecipesEnabled = false +#Whether mobs drop the Reliquary mob drops. This won't remove mob drop items from registry and replace them with something else, but allows to turn off the additional drops when mobs are killed by player. If this is turned off the mob drop crafting recipes turned on by the other setting can be used. +mobDropsEnabled = true + +#Disable sections of the mod +[disable] + #Disable Alkahestry tome and its recipes + alkahestryTome = false + #Disable the HANDGUN, bullets, magazines, and gun parts + handgun = false + #Disable the POTION system including mortar, altar, potions, tipped arrows, and powder + potion = false + #Disable all pedestals + pedestal = false + #Disable all display-only pedestals + passivePedestal = false + #Disable recipes to craft spawn eggs from fragments + disableSpawnEggRecipes = false + #Disable all charms and their recipes + charms = false + +#Potions related settings +[potions] + #Map of POTION ingredients and their effects + potionMap = ["minecraft:sugar=speed|3|0;haste|3|0", "minecraft:apple=instant_health|0|0;health_boost|3|0;reliquary:cure|1|0", "minecraft:coal=blindness|1|0;absorption|3|0;invisibility|1|0;wither|0|0", "minecraft:feather=jump_boost|3|0;weakness|1|0", "minecraft:wheat_seeds=instant_damage|0|0;health_boost|3|0", "minecraft:wheat=instant_health|0|0;health_boost|3|0", "minecraft:flint=instant_damage|0|0;strength|3|0", "minecraft:porkchop=slowness|1|0;mining_fatigue|1|0", "minecraft:leather=resistance|3|0;absorption|3|0", "minecraft:clay_ball=slowness|1|0;health_boost|3|0", "minecraft:egg=absorption|3|0;regeneration|0|0", "minecraft:red_dye=instant_health|0|0;health_boost|3|0", "minecraft:yellow_dye=jump_boost|3|0;weakness|1|0", "minecraft:green_dye=resistance|3|0;absorption|3|0", "minecraft:bone_meal=weakness|1|0;mining_fatigue|1|0", "minecraft:pumpkin_seeds=invisibility|1|0;fire_resistance|1|0", "minecraft:beef=slowness|1|0;saturation|0|5", "minecraft:chicken=nausea|1|0;poison|1|0", "minecraft:rotten_flesh=nausea|1|0;hunger|1|0;wither|0|0", "minecraft:gold_nugget=strength|0|0;haste|0|0", "minecraft:carrot=night_vision|3|0;health_boost|3|0", "minecraft:potato=health_boost|3|0;saturation|0|2", "minecraft:cod=saturation|0|3;water_breathing|1|0", "minecraft:spider_eye=night_vision|4|0;poison|2|0", "minecraft:blaze_powder=strength|4|0;instant_damage|0|0", "minecraft:iron_ingot=resistance|4|0;slowness|2|0", "minecraft:string=slowness|2|0;mining_fatigue|2|0", "minecraft:bread=health_boost|4|0;saturation|0|5", "minecraft:cooked_porkchop=mining_fatigue|2|0;saturation|0|5", "minecraft:slime_ball=resistance|4|0;fire_resistance|2|0", "minecraft:cooked_cod=saturation|0|4;water_breathing|2|0", "minecraft:lapis_lazuli=haste|4|0;strength|4|0", "minecraft:ink_sac=blindness|2|0;invisibility|2|0", "minecraft:bone=weakness|2|0;mining_fatigue|2|0", "minecraft:cookie=instant_health|0|0;saturation|0|3", "minecraft:melon=instant_health|0|0;speed|4|0", "minecraft:cooked_beef=resistance|4|0;saturation|0|5", "minecraft:cooked_chicken=jump_boost|4|0;saturation|0|5", "minecraft:baked_potato=saturation|0|4;regeneration|1|0", "minecraft:poisonous_potato=poison|2|0;wither|1|0", "minecraft:quartz=instant_damage|0|0;strength|4|0", "reliquary:zombie_heart=nausea|2|0;hunger|2|0;wither|1|0", "reliquary:squid_beak=hunger|2|0;water_breathing|2|0", "minecraft:pumpkin_pie=invisibility|1|0;fire_resistance|1|0;speed|3|0;haste|3|0;absorption|3|0;regeneration|0|0", "minecraft:magma_cream=strength|4|0;instant_damage|0|0;resistance|4|0;fire_resistance|2|0", "minecraft:glistering_melon_slice=strength|3|0;haste|3|0;instant_health|0|0;speed|4|0", "minecraft:ghast_tear=regeneration|3|0;absorption|5|0", "minecraft:fermented_spider_eye=night_vision|4|0;poison|2|0;speed|3|0;haste|3|0", "minecraft:golden_carrot=strength|3|0;haste|3|0;health_boost|3|0;night_vision|3|0", "minecraft:gold_ingot=strength|4|0;haste|4|0;reliquary:cure|1|0", "reliquary:rib_bone=weakness|3|0;mining_fatigue|3|0;reliquary:cure|1|0", "minecraft:ender_pearl=invisibility|5|0;speed|5|0", "minecraft:blaze_rod=strength|8|0;instant_damage|0|0", "minecraft:fire_charge=strength|4|0;instant_damage|0|0;blindness|1|0;absorption|3|0", "reliquary:catalyzing_gland=regeneration|3|0;health_boost|5|0", "reliquary:chelicerae=poison|3|0;weakness|3|0", "reliquary:slime_pearl=resistance|5|0;absorption|5|0", "reliquary:kraken_shell_fragment=absorption|5|0;water_breathing|5|0", "reliquary:bat_wing=jump_boost|5|0;weakness|3|0", "minecraft:golden_apple=reliquary:cure|1|1", "minecraft:golden_apple=reliquary:cure|1|2", "minecraft:diamond=resistance|6|1;absorption|6|1;fire_resistance|6|0;reliquary:cure|1|0", "reliquary:withered_rib=wither|2|1;weakness|3|1;slowness|3|1;mining_fatigue|3|1;reliquary:cure|1|0", "minecraft:ender_eye=strength|6|1;invisibility|6|0;speed|6|1;instant_damage|0|1", "minecraft:emerald=haste|6|1;speed|6|1;health_boost|6|1;reliquary:cure|1|1", "minecraft:nether_star=health_boost|24|1;regeneration|24|1;absorption|24|1;reliquary:cure|1|2", "reliquary:molten_core=strength|6|1;fire_resistance|6|0;instant_damage|0|1", "reliquary:eye_of_the_storm=haste|24|1;speed|24|1;jump_boost|24|1;instant_damage|0|1;reliquary:cure|1|1", "reliquary:fertile_essence=health_boost|8|1;regeneration|3|1;instant_health|0|1;saturation|0|4;weakness|9|1;mining_fatigue|9|1;reliquary:cure|1|0", "reliquary:frozen_core=absorption|6|1;slowness|3|1;mining_fatigue|3|1;instant_damage|0|1;fire_resistance|6|0", "reliquary:nebulous_heart=night_vision|6|0;invisibility|6|0;instant_damage|0|1;health_boost|6|1;strength|6|1;speed|6|1;haste|6|1", "reliquary:infernal_claw=instant_damage|0|1;resistance|6|1;fire_resistance|6|0;strength|6|1;saturation|0|5;instant_health|0|1"] + #Maximum number of effects a POTION can have to appear in creative tabs / JEI + #Range: 1 ~ 6 + maxEffectCount = 1 + #Whether potions that are made out of three base ingredients appear in creative tabs / JEI + threeIngredients = false + #Whether potions with the same effect combination, but different duration appear in creative tabs / JEI + differentDurations = false + #Whether potions augmented with Redstone and Glowstone appear in creative tabs / JEI + redstoneAndGlowstone = false + +[items] + + #Alkahestry Tome settings + [items.alkahestryTome] + #Charge limit of the tome + #Range: 0 ~ 9999 + chargeLimit = 1000 + + #Angelic Feather settings + [items.angelicFeather] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 100 + hungerCostPercent = 50 + #Potency of the leaping effect + #Range: 0 ~ 5 + leapingPotency = 1 + + #Angelheart Vial settings + [items.angelheartVial] + #Percent of life that gets healed when the player would die + #Range: 0 ~ 100 + healPercentageOfMaxLife = 25 + #Whether the player gets negative statuses removed + removeNegativeStatus = true + + #Destruction Catalyst settings + [items.destructionCatalyst] + #List of mundane blocks the catalyst will break + mundaneBlocks = ["minecraft:dirt", "minecraft:coarse_dirt", "minecraft:podzol", "minecraft:mycelium", "minecraft:grass_block", "minecraft:gravel", "minecraft:cobblestone", "minecraft:stone", "minecraft:granite", "minecraft:diorite", "minecraft:andesite", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:soul_sand", "minecraft:netherrack", "minecraft:end_stone"] + #Number of gunpowder it costs per catalyst use + #Range: 0 ~ 10 + gunpowderCost = 3 + #Number of gunpowder that gets added to catalyst per one that's consumed from players inventory + #Range: 1 ~ 3 + gunpowderWorth = 1 + #Number of gunpowder that can be stored in destruction catalyst + #Range: 0 ~ 9999 + gunpowderLimit = 250 + #Radius of the explosion + #Range: 1 ~ 5 + explosionRadius = 1 + #Whether the explosion is centered on the block that gets clicked + centeredExplosion = false + #Whether the explosion makes a perfect cube hole + perfectCube = true + + #Emperor Chalice settings + [items.emperorChalice] + #How much saturation is added in addition to filling the hunger + #Range: 0 ~ 10 + hungerSatiationMultiplier = 4 + + #Ender Staff settings + [items.enderStaff] + #Number of ender pearls per use + #Range: 0 ~ 3 + enderPearlCastCost = 1 + #Number of ender pearls per teleportation to the wraith node + #Range: 0 ~ 3 + enderPearlNodeWarpCost = 1 + #Number of ender pearls that get added to the staff per one that's consumed from players inventory + #Range: 1 ~ 10 + enderPearlWorth = 1 + #Number of ender pearls that the ender staff can store + #Range: 0 ~ 9999 + enderPearlLimit = 250 + #Time it takes to teleport to the wraith node + #Range: 10 ~ 120 + nodeWarpCastTime = 60 + + #Fortune Coin settings + [items.fortuneCoin] + #The distance that it pulls from when activated + #Range: 3 ~ 10 + standardPullDistance = 5 + #The distance that it pulls from when right click is held + #Range: 9 ~ 30 + longRangePullDistance = 15 + + #Glacial Staff settings + [items.glacialStaff] + #Number of snowballs the staff can hold + #Range: 0 ~ 9999 + snowballLimit = 250 + #Number of snowballs it costs when the staff is used + #Range: 0 ~ 3 + snowballCost = 1 + #Number of snowballs that get added to the staff per one that's consumed from player's inventory + #Range: 1 ~ 3 + snowballWorth = 1 + #The damage that snowballs cause + #Range: 0 ~ 6 + snowballDamage = 3 + #The damage bonus against entities that are immune to fire + #Range: 0 ~ 6 + snowballDamageBonusFireImmune = 3 + #The damage bonus against blaze + #Range: 0 ~ 12 + snowballDamageBonusBlaze = 6 + + #Handgun settings + [items.handgun] + #Experience level at which handgun has the fastest reload time and shortes cooldown between shots + #Range: 0 ~ 100 + maxSkillLevel = 20 + + #Harvest Rod settings + [items.harvestRod] + #Number of bonemeal the rod can hold + #Range: 0 ~ 9999 + boneMealLimit = 250 + #Number of bonemeal consumed per use + #Range: 0 ~ 3 + boneMealCost = 1 + #Number of bonemeal that gets added to the rod per one that's consumed from player's inventory + #Range: 1 ~ 3 + boneMealWorth = 1 + #Percent chance that a bonemeal will get applied during a luck roll + #Range: 1 ~ 100 + boneMealLuckPercentChance = 33 + #Number of times that a rod may apply additional luck based bonemeal + #Range: 0 ~ 7 + boneMealLuckRolls = 2 + #Radius in which harvest rod breaks crops, bonemeals/plants/hoes blocks + #Range: 0 ~ 5 + aoeRadius = 2 + #Ticks in between bonemealing/planting/hoeing blocks when player is using one of these AOE actions + #Range: 1 ~ 20 + aoeCooldown = 3 + #Maximum number of units harvest rod can hold per plantable item + #Range: 0 ~ 9999 + maxCapacityPerPlantable = 250 + #Range at which harvest rod will automatically hoe/plant/bonemeal/break crops around pedestals + #Range: 1 ~ 20 + pedestalRange = 4 + #Ticks in between harvest rod actions when in pedestals + #Range: 1 ~ 20 + pedestalCooldown = 5 + + #Hero Medallion settings + [items.heroMedallion] + #Cooldown between hero medallion tries to fix mending items in nearby pedestals + #Range: 1 ~ 100 + pedestalCoolDown = 20 + #Range in which pedestals are checked for items with mending enchant that need fixing + #Range: 1 ~ 20 + pedestalRange = 5 + #Maximum amount of xp that is used each time medallion repairs items + #Range: 1 ~ 20 + pedestalRepairStepXP = 5 + + #Ice Magus Rod settings + [items.iceMagusRod] + #Number of snowballs the rod can hold + #Range: 0 ~ 9999 + snowballLimit = 250 + #Number of snowballs it costs when the rod is used + #Range: 0 ~ 3 + snowballCost = 1 + #Number of snowballs that get added to the rod per one that's consumed from player's inventory + #Range: 1 ~ 3 + snowballWorth = 1 + #The damage that snowballs cause + #Range: 0 ~ 4 + snowballDamage = 2 + #Damage bonus against fire immune mobs + #Range: 0 ~ 4 + snowballDamageBonusFireImmune = 2 + #Damage bonus against blaze + #Range: 0 ~ 8 + snowballDamageBonusBlaze = 4 + + #Infernal Chalice settings + [items.infernalChalice] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 10 + hungerCostPercent = 1 + #Millibuckets of lava that the chalice can hold + #Range: > 0 + fluidLimit = 500000 + + #Infernal Claws settings + [items.infernalClaws] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 30 + hungerCostPercent = 5 + + #Infernal Tear settings + [items.infernalTear] + #Whether the infernal tear starts absorbing immediately after it is set to item type + absorbWhenCreated = false + + #Kraken Shell settings + [items.krakenShell] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 50 + hungerCostPercent = 25 + + #Lantern of Paranoia settings + [items.lanternOfParanoia] + #List of torches that are supported by the lantern + torches = ["minecraft:torch"] + #Minimum light level below which the lantern will place torches + #Range: 0 ~ 15 + minLightLevel = 1 + #Radius in which the lantern checks for light levels and places torches + #Range: 1 ~ 15 + placementScanRadius = 6 + + #Midas Touchstone settings + [items.midasTouchstone] + #Gold items that can be repaired by the touchstone + goldItems = [] + #Number of glowstone that the repair costs + #Range: 0 ~ 3 + glowstoneCost = 1 + #Number of glowstone that gets added to the touchstone per one in player's inventory + #Range: 1 ~ 12 + glowstoneWorth = 4 + #Number of glowstone the touchstone can hold + #Range: 0 ~ 9999 + glowstoneLimit = 250 + + #Mob Charm settings + [items.mobCharm] + #Total durability of Mob Charm + #Range: 20 ~ 1000 + durability = 80 + #Damage that Mob Charm takes when player kills mob it protects them from + #Range: 0 ~ 40 + damagePerKill = 1 + #Sets how much durability of Mob Charm gets repaired per special drop + #Range: 1 ~ 200 + dropDurabilityRepair = 20 + #Maximum charms that will get displayed in HUD + #Range: 1 ~ 20 + maxCharmsToDisplay = 6 + #Range in which mob charm or belt in pedestals will keep monsters from attacking players + #Range: 10 ~ 100 + pedestalRange = 21 + #Determines if almost destroyed charms stay displayed in the hud + keepAlmostDestroyedDisplayed = true + #List of hostile entities that are not supposed to have mob charms registered for them + entityBlockList = ["minecraft:ender_dragon", "minecraft:wither"] + + #Mob Charm Fragment Settings + [items.mobCharmFragment] + #Chance of fragment droping from mobs that don't have fragment that can be crafted + #Range: 0.0 ~ 1.0 + dropChance = 0.01666666753590107 + #Additional chance per level of looting + #Range: 0.0 ~ 1.0 + lootingMultiplier = 0.008333333767950535 + + #Phoenix Down settings + [items.PhoenixDown] + #Percent hunger used to heal player per 1 damage that would be taken otherwise + #Range: 0 ~ 50 + hungerCostPercent = 25 + #Potency of the leaping effect + #Range: 0 ~ 5 + leapingPotency = 1 + #Percent of life that gets healed when the player would die + #Range: 0 ~ 100 + healPercentageOfMaxLife = 100 + #Whether the player gets negative statuses removed when they were saved by Phoenix Down + removeNegativeStatus = true + #Whether to give temporary damage resistance when the player would die + giveTemporaryDamageResistance = true + #Whether to give temporary regeneration when the player would die + giveTemporaryRegeneration = true + #Whether to give temporary fire resistance when the player would die. Applies only when the player is being hurt by fire damage. + giveTemporaryFireResistanceIfFireDamageKilledYou = true + #Whether to give temporary damage resistance when the player would die. Applies only when the player is drowning. + giveTemporaryWaterBreathingIfDrowningKilledYou = true + + #Pyromancer Staff settings + [items.pyromancerStaff] + #Number of fire charges the staff can hold + #Range: 0 ~ 9999 + fireChargeLimit = 250 + #Number of fire charges used when the staff is fired + #Range: 0 ~ 3 + fireChargeCost = 1 + #Number of fire charges that get added to the staff per one that's consumed from player's inventory + #Range: 1 ~ 3 + fireChargeWorth = 1 + #Number of fire charges added to the staff per one that was shot by ghast and gets absorbed by the staff + #Range: 0 ~ 3 + ghastAbsorbWorth = 1 + #Number of blaze powder the staff can hold + #Range: 0 ~ 9999 + blazePowderLimit = 250 + #Number of blaze powder used when staff is fired + #Range: 0 ~ 3 + blazePowderCost = 1 + #Number of blaze powder that gets added to the staff per one that's consumed from player's inventory + #Range: 1 ~ 3 + blazePowderWorth = 1 + #Number of blaze powder added to the staff per one fireball that was shot by blaze and gets absorbed by the staff + #Range: 0 ~ 3 + blazeAbsorbWorth = 1 + + #Rending Gale settings + [items.rendingGale] + #Number of feathers the rending gale can hold + #Range: > 0 + chargeLimit = 30000 + #Number of feathers used when the rending gale is cast in flight mode + #Range: 0 ~ 3 + castChargeCost = 1 + #Number of feathers used to cast a lightning bolt + #Range: 0 ~ 250 + boltChargeCost = 100 + #Number of feathers that get added to the rending gale per one that's consumed from player's inventory + #Range: 1 ~ 250 + chargeFeatherWorth = 100 + #How far a lightning block can be cast + #Range: 5 ~ 15 + blockTargetRange = 12 + #Radius in which entities can be pushed/pulled + #Range: 1 ~ 20 + pushPullRadius = 10 + #Whether the rending gale can push projectiles + canPushProjectiles = true + #Range from pedestals at which players will get buffed with flight + #Range: 10 ~ 100 + pedestalFlightRange = 30 + #Cost per second of buffing players with flight + #Range: 1 ~ 20 + pedestalCostPerSecond = 5 + #List of entities that are banned from being pushed by the Rending Gale + pushableEntitiesBlacklist = [] + #List of projectiles that are banned from being pushed by the Rending Gale + pushableProjectilesBlacklist = [] + + #Rod of Lyssa settings + [items.rodOfLyssa] + #Whether level influences stealing failure rate of the rod + useLeveledFailureRate = true + #The experience level cap after which the failure rate is at a minimum and doesn't get better + #Range: 1 ~ 900 + levelCapForLeveledFormula = 100 + #The flat failure rate in case failure rate isn't influenced by player's level + #Range: 0 ~ 100 + flatStealFailurePercentRate = 10 + #If set to false it goes through additional 4 accessible slots and looks for items in case the one selected randomly was empty + stealFromVacantSlots = true + #Whether stealing from an empty slot triggers failure even if otherwise it would be successful + failStealFromVacantSlots = false + #Whether entities get angry at player if stealing fails + angerOnStealFailure = true + #Allows switching stealing from player on and off + stealFromPlayers = true + #List of entities on which lyssa rod doesn't work - full registry name is required here + entityBlockList = [] + + #Seeker Shot settings + [items.seekerShot] + #Entities that are banned from being tracked by seeker shot + huntableEntitiesBlacklist = [] + + #Sojourner Staff settings + [items.sojournerStaff] + #List of torches that are supported by the staff + torches = ["minecraft:torch", "minecraft:soul_torch", "minecraft:lantern", "minecraft:jack_o_lantern", "minecraft:sea_lantern", "minecraft:soul_lantern", "minecraft:shroomlight", "minecraft:glowstone", "minecraft:end_rod"] + #Number of items the staff can store per item type + #Range: 1 ~ 9999 + maxCapacityPerItemType = 1500 + #Maximum range at which torches can be placed + #Range: 1 ~ 30 + maxRange = 30 + #Distance after which there is an additional cost for torch placement. The additional cost is the number of times this distance fits in the distance at which the torch is being placed. + #Range: 6 ~ 30 + tilePerCostMultiplier = 6 + + #Twilight Cloak settings + [items.twilightCloak] + #Maximum light level at which the player is still invisible to the mobs + #Range: 0 ~ 15 + maxLightLevel = 4 + + #Void Tear settings + [items.voidTear] + #Number of items the tear can hold of the item type it is set to + #Range: > 0 + itemLimit = 2000000000 + #Whether the void tear starts absorbing immediately after it is set to item type + absorbWhenCreated = true + +[blocks] + + #Altar of Light settings + [blocks.altar] + #Number of redstone it costs to activate altar + #Range: 0 ~ 10 + redstoneCost = 3 + #Time in minutes it takes for the altar to create glowstone block + #Range: 0 ~ 60 + timeInMinutes = 20 + #Maximum time variance in minutes. A random part of it gets added to the Time in minutes. + #Range: 0 ~ 15 + maximumTimeVarianceInMinutes = 5 + #Light level that the altar outputs while active + #Range: 0 ~ 16 + outputLightLevelWhileActive = 16 + + #Apothecary Cauldron settings + [blocks.apothecaryCauldron] + #Limit of redstone that can be used in cauldron to make POTION last longer + #Range: 0 ~ 5 + redstoneLimit = 3 + #Time it takes to cook POTION + #Range: 20 ~ 32000 + cookTime = 160 + #List of acceptable heat sources + heatSources = [] + #Limit of glowstone that can be used in cauldron to make POTION more potent + #Range: 0 ~ 4 + glowstoneLimit = 2 + + #Lilypad of Fertility settings + [blocks.fertileLilypad] + #Interval in seconds at which the lilypad causes growth tick updates + #Range: 1 ~ 150 + secondsBetweenGrowthTicks = 10 + #Radius in which lilypad causes growh ticks + #Range: 1 ~ 15 + tileRange = 4 + #Radius around lilypad where the growth ticks occur the most often + #Range: 1 ~ 15 + fullPotencyRange = 1 + + #Interdiction Torch settings + [blocks.interdictionTorch] + #Radius in which the torch can push out mobs + #Range: 1 ~ 15 + pushRadius = 5 + #Whether the torch can push projectiles + canPushProjectiles = false + #List of entities that are banned from being pushed by the torch + pushableEntitiesBlacklist = [] + #List of projectiles that are banned from being pushed by the torch + pushableProjectilesBlacklist = [] + + #Pedestal related settings + [blocks.pedestal] + #Range of the melee weapons in which these will attack when in pedestals + #Range: 1 ~ 10 + meleeWrapperRange = 5 + #How long it takes after a melee weapon swing before it can swing again (in ticks) + #Range: 1 ~ 200 + meleeWrapperCooldown = 5 + #Range at which bucket will pickup liquid blocks or milk cows + #Range: 1 ~ 10 + bucketWrapperRange = 4 + #How long it takes in between bucket actions (in ticks) + #Range: 1 ~ 200 + bucketWrapperCooldown = 40 + #How long it takes between shearing actions (in ticks) + #Range: 1 ~ 10 + shearsWrapperRange = 4 + #Range at which shears will shear sheep or shearable blocks + #Range: 1 ~ 200 + shearsWrapperCooldown = 10 + #Range at which pedestals will get turned on if either redstone block gets put in or redstone dust and transmitting pedestals is powered + #Range: 1 ~ 200 + redstoneWrapperRange = 10 + #Success rate of fishing in percent. When unsuccessful it will pull the hook too late to catch a fish. + #Range: 0 ~ 100 + fishingWrapperSuccessRate = 80 + #Delay in seconds before it would start fishing again after retracting the hook. + #Range: 1 ~ 20 + fishingWrapperRetractDelay = 2 + diff --git a/config/resourceful-config-web.json b/config/resourceful-config-web.json new file mode 100644 index 0000000..5fdc620 --- /dev/null +++ b/config/resourceful-config-web.json @@ -0,0 +1,12 @@ +{ + "enabled": false, + "port": 7903, + "validator": { + "uuids": [], + "if": { + "password": "44b61551-40e6-45fe-9b52-8bdba6b74c44", + "type": "password" + }, + "type": "if" + } +} \ No newline at end of file diff --git a/config/resourcepackoverrides.json b/config/resourcepackoverrides.json new file mode 100644 index 0000000..19cbfdf --- /dev/null +++ b/config/resourcepackoverrides.json @@ -0,0 +1,3 @@ +{ + "schema_version": "2" +} \ No newline at end of file diff --git a/config/rftoolsbuilder-client.toml b/config/rftoolsbuilder-client.toml new file mode 100644 index 0000000..5eb5071 --- /dev/null +++ b/config/rftoolsbuilder-client.toml @@ -0,0 +1,21 @@ + +#Settings for the builder +[builder] + #If true a holo hud with current progress is shown above the builder + showProgressHud = true + +#Settings for the scanner, composer, and projector +[scanner] + #Height of the beacon in case beacons are used + #Range: > 0 + locatorBeaconHeight = 30 + #The amount of milliseconds before the client will remove shape render data that hasn't been used. Decreasing this will free memory faster at the cost of having to update shape renders more often + #Range: 100 ~ 1000000 + clientRenderDataTimeout = 10000 + #The amount of milliseconds that a scanline 'flash' will exist on the client + #Range: 10 ~ 1000000 + projectorFlashTimeout = 400 + #The volume for the projector sound (0.0 is off) + #Range: 0.0 ~ 1.0 + baseProjectorVolume = 0.4 + diff --git a/config/rftoolsstorage-client.toml b/config/rftoolsstorage-client.toml new file mode 100644 index 0000000..f17f748 --- /dev/null +++ b/config/rftoolsstorage-client.toml @@ -0,0 +1,22 @@ + +#Settings for the modular storage system +[storage] + #Background color for group lines + #Range: > 0 + groupBackground = 0 + #Foreground color for group lines + #Range: > 0 + groupForeground = 0 + #If true we automatically set the focus on the search field when opening the GUI for the modular storage. Set to false if you don't want that + autofocusSearch = false + #If true we clear the search field when opening the GUI for the modular storage. Set to false if you don't want that + clearSearchOnOpen = true + +#Settings for the storage scanner machine +[storagescanner] + #Time (in seconds) to hilight a block in the world + #Range: > 0 + hilightTime = 5 + #If this is true then opening the storage scanner GUI will automatically select the starred inventory view + hilightStarredOnGuiOpen = true + diff --git a/config/rftoolsutility-client.toml b/config/rftoolsutility-client.toml new file mode 100644 index 0000000..42e21e5 --- /dev/null +++ b/config/rftoolsutility-client.toml @@ -0,0 +1,15 @@ + +#Settings for the screen system +[screen] + #Set to true for TrueType font, set to false for vanilla font + useTruetype = false + #Set to true for force TrueType to be disabled in all cases. Use this in case the truetype font is causing issues + forceNoTruetype = false + #The default truetype font to use + fontName = "rftoolsutility:ubuntu" + #The size of the font + #Range: 0.0 ~ 1000000.0 + fontSize = 40.0 + #Additional characters that should be supported by the truetype system + additionalCharacters = "" + diff --git a/config/ribbits-forge-1_20_1.toml b/config/ribbits-forge-1_20_1.toml new file mode 100644 index 0000000..9767fcf --- /dev/null +++ b/config/ribbits-forge-1_20_1.toml @@ -0,0 +1,12 @@ + +[Ribbits] + + ########################################################################################################### + ## General settings. + ########################################################################################################### + [Ribbits.General] + # If enabled, Pride Ribbits will exist all year instead of only in June. + # Default: false + # + "Show Pride Flags All Year" = false + diff --git a/config/ribbits-options.json b/config/ribbits-options.json new file mode 100644 index 0000000..e02337e --- /dev/null +++ b/config/ribbits-options.json @@ -0,0 +1,3 @@ +{ + "enableSupporterHat": false +} \ No newline at end of file diff --git a/config/rightclickharvest.json5 b/config/rightclickharvest.json5 new file mode 100644 index 0000000..487c3c8 --- /dev/null +++ b/config/rightclickharvest.json5 @@ -0,0 +1,20 @@ +{ + // - default: false + "requireHoe": false, + // - default: true + "harvestInRadius": true, + /* - default: NONE + - must be one of: NONE, LOW, NORMAL, HIGH + */ + "hungerLevel": "NONE", + /* - default: NONE + - must be one of: NONE, COST, REWARD + */ + "experienceType": "NONE", + // - default: true + "showServerWarning": true, + /* Modpack developers, set this to true to stop RCH telling users that they probably need to equip a hoe to harvest crops (if requireHoe is set to true). This message will only be displayed once. + - default: false + */ + "hasUserBeenWarnedForNotUsingHoe": false +} \ No newline at end of file diff --git a/config/rrls.toml b/config/rrls.toml new file mode 100644 index 0000000..afb590f --- /dev/null +++ b/config/rrls.toml @@ -0,0 +1,26 @@ +#text.autoconfig.rrls.option.rgbProgress.@Tooltip +rgbProgress = false +#Allowed Values: PROGRESS, TEXT +type = "PROGRESS" +reloadText = "" +resetResources = false +#text.autoconfig.rrls.option.reInitScreen.@Tooltip +reInitScreen = true +#Allowed Values: ALL, LOADING, RELOADING, NONE +hideType = "RELOADING" +#text.autoconfig.rrls.option.forceClose.@Tooltip +forceClose = false +#text.autoconfig.rrls.option.blockOverlay.@Tooltip +blockOverlay = false +miniRender = true +#text.autoconfig.rrls.option.removeOverlayAtEnd.@Tooltip +removeOverlayAtEnd = true +#text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[0] +#text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[1] +earlyPackStatusSend = false +#Allowed Values: FORCE_LOAD, LOAD, NONE +doubleLoad = "FORCE_LOAD" +#text.autoconfig.rrls.option.animationSpeed.@Tooltip +animationSpeed = 1000.0 +skipForgeOverlay = false + diff --git a/config/rsmixin-common.toml b/config/rsmixin-common.toml new file mode 100644 index 0000000..0364844 --- /dev/null +++ b/config/rsmixin-common.toml @@ -0,0 +1,89 @@ + +[rsmixin] + #Enables extra debug logging (throttle ticks, active node counts, importer activation/sleep, unloaded skips, etc.). Useful for diagnosing issues but spammy in logs. + enableDebugLogging = false + #Master switch for network update throttling. + #When enabled, full RS network updates run only every throttleInterval ticks instead of every tick. + #This reduces server load in large networks but slows down some operations if not bypassed. + enableThrottle = true + #How often (in ticks) full network updates occur when throttling is enabled. + #1 = no throttling (every tick), 20 = every second (default, ~1 operation/sec for non-bypassed nodes). + #Only matters if enableThrottle is true. + #Range: 1 ~ 1000 + throttleInterval = 20 + #Allows specific nodes (importers, exporters, interfaces, etc.) to bypass throttling and update more frequently. + # + #- ENABLED (default): Listed nodes can update every tick (full speed when active; speed upgrades respected). + # Higher performance cost when nodes are busy, but fast transfer rates. + # + #- DISABLED: All nodes strictly follow throttleInterval (~1 operation/sec at interval=20). + # Speed upgrades are ignored (forced to 1) for consistent rate. + # + #Interacts with fastNodeClasses (defines which nodes can bypass) and enableDynamicNodeSleep (controls node sleep behaviour when bypassing). + enableBypassFastNodes = true + #List of node class names that are allowed to bypass throttling when enableBypassFastNodes is true. + #Defaults cover core RS nodes (importers, exporters, interfaces, crafters, etc.) and popular addons. + #Adding extra classes is safe—even if the mod isn't installed (string matching only). + #Only relevant when enableBypassFastNodes is enabled. + fastNodeClasses = ["com.refinedmods.refinedstorage.apiimpl.network.node.ImporterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.ExporterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.InterfaceNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.FluidInterfaceNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.CrafterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.ConstructorNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.DestructorNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.diskmanipulator.DiskManipulatorNetworkNode", "com.ultramega.cabletiers.node.TieredConstructorNetworkNode", "com.ultramega.cabletiers.node.TieredDestructorNetworkNode", "com.ultramega.cabletiers.node.TieredExporterNetworkNode", "com.ultramega.cabletiers.node.TieredImporterNetworkNode", "com.ultramega.cabletiers.node.TieredInterfaceNetworkNode", "com.ultramega.cabletiers.node.TieredRequesterNetworkNode", "com.ultramega.cabletiers.node.diskmanipulatorz.TieredDiskManipulatorNetworkNode", "edivad.extrastorage.nodes.AdvancedExporterNetworkNode", "edivad.extrastorage.nodes.AdvancedImporterNetworkNode", "edivad.extrastorage.nodes.AdvancedCrafterNetworkNode", "com.buuz135.refinedstoragerequestify.proxy.block.network.NetworkNodeRequester", "net.gigabit101.rebornstorage.nodes.CraftingNode", "dev.stevendoesstuffs.refinedcrafterproxy.CrafterProxyNetworkNode"] + #On controller load/reload (world load, relog, chunk load), delay then force a full network rescan. + #Fixes connection issues with capability-based cables (e.g., EnderIO conduits) that aren't detected immediately on load. + #Safe and recommended for most setups. + enableLoadRescan = true + #Ticks to wait after detecting controller load before rescanning. + #Gives time for block entities and capabilities to initialize. Default 20 (~1 second). + #Only matters if enableLoadRescan is true. + #Range: 0 ~ 400 + loadRescanDelay = 20 + #When placing EnderIO conduits next to RS blocks, delay then force a network rescan. + #Fixes runtime detection failures where immediate rescan is too early. + #Safe even without EnderIO installed. + enableConduitPlacementFix = true + #Ticks to wait after conduit placement before rescanning. + #Default 10 (~0.5 seconds). Increase if connections still fail occasionally. + #Only matters if enableConduitPlacementFix is true. + #Range: 0 ~ 200 + conduitPlacementRescanDelay = 10 + #Recalculate network energy usage only when the graph changes instead of every tick. Minor performance improvement. + enableLazyEnergy = true + #Replace ConcurrentHashMap/ConcurrentHashSet with regular HashMap/HashSet in single-threaded contexts. Small performance gain. + enableHashSetOptimize = true + #Skip processing unloaded positions during network graph updates. Improves performance and prevents rare deadlocks on chunk unload. + enableSkipUnloaded = true + #Makes fast nodes sleep when idle (only relevant when enableBypassFastNodes is true and node is in fastNodeClasses). + # + #- ENABLED (default): Nodes update every tick only when work is available. + # When idle for a few cycles, they fall back to throttled updates → lower overhead. + # + #- DISABLED: Nodes always update every tick when bypassing is allowed (full speed even when idle). + enableDynamicNodeSleep = true + #Enables dynamic throttling bypass for the crafting manager. + # + #- ENABLED (default): When there are active crafting tasks, the crafting manager updates every tick → fast crafting while active. + # Falls back to throttled updates when idle → lower overhead. + # + #- DISABLED: Crafting manager strictly follows throttleInterval. + # + #Only relevant when enableThrottle is true, throttleInterval > 1, and enableBypassFastNodes is true. + #Fully respects crafter speed upgrades. + enableDynamicCraftingBypass = true + #Optimizes ticking by only updating nodes that are connected to a network. Disconnected nodes are skipped, reducing unnecessary overhead. + enableConnectedNodeTickOptimize = true + #Registers a passthrough factory for EnderIO's RS conduits to suppress warnings and enable compatibility. + #Disable if EnderIO adds their own registration in a future update. + #Only applies if EnderIO is loaded. + enableEnderioRsFix = true + #Enables saving and applying a type-keyed NBT backup for EnderIO conduit data (filters, upgrades, autocrafting rows, etc.). + #Prevents loss/corruption on world reload when the global graph restore or positional fallback fails. + #Safe to disable if not needed, conflicting, or EnderIO fixes this upstream. + #Default: true (recommended for RS + EnderIO setups). + enableEnderioConduitTypedBackup = true + #Fixes RebornStorage multiblock crafter (v5.0.7): + #- Immediate assembly/GUI access. + #- Requires CPU or storage (no all-air). + #- Allows air during construction. + #- Clean validation messages. + #- No pattern pages with CPU-only (clear message). + #Safe to disable if newer versions fix these. + enableRebornstorageCrafterFix = true + diff --git a/config/rsrequestify-common.toml b/config/rsrequestify-common.toml new file mode 100644 index 0000000..27bbbeb --- /dev/null +++ b/config/rsrequestify-common.toml @@ -0,0 +1,6 @@ + +[COMMON] + #Max amount of items per request + #Range: > 1 + MAX_CRAFT_AMOUNT = 1000 + diff --git a/config/runiclib.json b/config/runiclib.json new file mode 100644 index 0000000..244c699 --- /dev/null +++ b/config/runiclib.json @@ -0,0 +1,3 @@ +{ + "rlCommandsEnabled": true +} \ No newline at end of file diff --git a/config/sanguine_networks-common.toml b/config/sanguine_networks-common.toml new file mode 100644 index 0000000..5b0131f --- /dev/null +++ b/config/sanguine_networks-common.toml @@ -0,0 +1,13 @@ +#How much time in ticks should the virtual sacrificer wait before producing blood [100] +#Range: > 1 +sacrificer_speed = 100 +#The energy capacity of the virtual sacrificer [1000000] +#Range: > 1 +sacrificer_energy = 1000000 +#How much data to give to the model each iteration [1] +#Set to 0 to disable +#Range: > 0 +sacrificer_data = 1 +#Should data be given to faulty models? [true] +faulty_data = true + diff --git a/config/saturn-optimizations.toml b/config/saturn-optimizations.toml new file mode 100644 index 0000000..47afa04 --- /dev/null +++ b/config/saturn-optimizations.toml @@ -0,0 +1,9 @@ +#(default = true) Optimizes memory allocation by caching objects to static final references. +optimizeMemoryAllocations = true +#(default = true) Reduces garbage collection (GC) heap by avoid creating unnecessary objects. +reduceGCHeap = true +#(default = true) Fixes memory leaks which takes the memory continuously. +fixMemoryLeaks = true +#(default = true) Removes duplicated threading detector locks. +removeThreadingDetectorLocks = true + diff --git a/config/seamless_loading_screen.json b/config/seamless_loading_screen.json new file mode 100644 index 0000000..3169df6 --- /dev/null +++ b/config/seamless_loading_screen.json @@ -0,0 +1,20 @@ +{ + "time": 80, + "fade": 20, + "tintColor": -14606047, + "tintStrength": 0.3, + "enableScreenshotBlur": false, + "screenshotBlurStrength": 1.0, + "screenshotBlurQuality": 5.0, + "playSoundEffect": false, + "soundEffect": "minecraft:ui.toast.out", + "soundPitch": 1.0, + "soundVolume": 1.0, + "resolution": "Normal", + "disableCamera": true, + "archiveScreenshots": false, + "updateWorldIcon": false, + "blacklistedAddresses": [ + "play.wynncraft.com" + ] +} \ No newline at end of file diff --git a/config/seasonhud-client.toml b/config/seasonhud-client.toml new file mode 100644 index 0000000..c7e82cf --- /dev/null +++ b/config/seasonhud-client.toml @@ -0,0 +1,102 @@ + +[SeasonHUD] + #Enable the mod? + #(true/false) + #Default is true. + enable_mod = true + + [SeasonHUD.HUD] + #Where to display the Hud when no minimap is installed. + #Default is TOP_LEFT. + #Allowed Values: TOP_LEFT, TOP_CENTER, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT, CUSTOM + hud_location = "BOTTOM_RIGHT" + #The horizontal offset of the HUD when no minimap is installed (in pixels) + #'hudLocation' must be set to 'CUSTOM' to take effect + #Default is 2. + hud_x_position = 2 + #The vertical offset of the HUD when no minimap is installed (in pixels) + #'hudLocation' must be set to 'CUSTOM' to take effect + #Default is 2. + hud_y_position = 2 + #The scale of the HUD when no minimap is installed. + #Default is 1.0. + #Range: 0.5 ~ 10.0 + hud_scale = 1.0 + + [SeasonHUD.HUD.Colors] + #Display the season name in a color? + #(true/false) + #Default is true. + season_name_color = true + #The RGB color (decimal) for spring. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16753595. + #Range: 0 ~ 16777215 + spring_color = 16753595 + #The RGB color (decimal) for summer. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16705834. + #Range: 0 ~ 16777215 + summer_color = 16705834 + #The RGB color (decimal) for autumn. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 12344871. + #Range: 0 ~ 16777215 + autumn_color = 12344871 + #The RGB color (decimal) for winter. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 14679292. + #Range: 0 ~ 16777215 + winter_color = 14679292 + #The RGB color (decimal) for dry tropical season. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16745216. + #Range: 0 ~ 16777215 + dry_color = 16745216 + #The RGB color (decimal) for wet tropical season. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 2068975. + #Range: 0 ~ 16777215 + wet_color = 2068975 + + [SeasonHUD.Season] + #Show the Tropical season (Wet/Dry) while in Tropical Biomes. + #This will not change the season behavior in the biomes, just + #what is displayed on the Hud + #(true/false) + #Default is true. + enable_show_tropical_season = true + #Show sub-season instead of the basic season? + #i.e. Early Winter, Mid Autumn, Late Spring + #(true/false) + # + #If using Fabric Seasons: + #You will want to change the 'seasonLength' options in the + #Fabric Seasons config (seasons.json) to be divisible by 3 + #It defaults to 672000 ticks (28 days) + # + #Default is false. + enable_show_sub_season = true + #Show the current day of the season/sub-season? + #Default is SHOW_DAY. + #Allowed Values: NONE, SHOW_DAY, SHOW_WITH_TOTAL_DAYS + enable_show_day = "SHOW_DAY" + #Show the current fertility of the biome? + #Only shows if not the default fertility of the season + #Default is false. + enable_show_fertility = false + #If the season name should be replaced with the fertility + #value when it differs from the default of the biome + #Default is false. + enable_fertility_replaces_season = false + + [SeasonHUD.Minimap] + #Enable integration with minimap mods? + #(true/false) + #Default is true. + enable_minimap_integration = true + #Show the default SeasonHUD when the minimap is hidden? + #(true/false) + #Default is false. + enable_show_minimap_hidden = true + diff --git a/config/seaworthyboats.json5 b/config/seaworthyboats.json5 new file mode 100644 index 0000000..16bcb24 --- /dev/null +++ b/config/seaworthyboats.json5 @@ -0,0 +1,53 @@ +{ + // Whether a player's own hits deal no damage to boats. When on, hitting a boat tells you to sneak and right-click empty-handed to pick it up instead. Mobs and other sources still damage boats. + "disablePlayerBoatDamage": true, + // Whether to show the boat's health as a row of hearts on the HUD while riding it, like a horse's health. Hides the hunger bar while in a boat, the same way vanilla mounts do. + "showBoatHealthBar": true, + // The amount of health a boat has before it breaks. Each point of incoming damage lowers it by one (a trident hit deals around 8). Vanilla boats break after about 4 damage. + // min: 1, max: 1000 + "boatMaxHealth": 20, + // How much boat health a single plank restores when repairing at a shipyard in repair mode. + // min: 1, max: 100 + "healthPerPlank": 2, + // How close a boat must be to a shipyard block for it to be repaired or upgraded there, in blocks. + // min: 1, max: 16 + "shipyardRange": 4, + // How far down from the top of the screen, in pixels, the shipyard info panel is drawn when you look at a shipyard. Increase it to move the panel below other mods' block tooltips, such as Jade or WAILA. + // min: 0, max: 1000 + "shipyardInfoYOffset": 8, + // Whether a boat must be reinforced one tier at a time, in order: copper, gold, iron, diamond, netherite. When off, a boat can be upgraded straight to any higher tier with the matching material. + "sequentialUpgrades": true, + // How many of a material it costs to reinforce a boat to its tier. Reinforce a boat at a shipyard set to upgrade mode. Netherite reinforcement costs half this amount. + // min: 1, max: 64 + "materialsPerUpgrade": 8, + // How much incoming damage a copper-reinforced boat ignores. 0.0 is no protection, 1.0 is full immunity. + // min: 0.0, max: 1.0 + "copperArmour": 0.07, + // How much incoming damage a gold-reinforced boat ignores. 0.0 is no protection, 1.0 is full immunity. + // min: 0.0, max: 1.0 + "goldArmour": 0.1, + // How much incoming damage an iron-reinforced boat ignores. 0.0 is no protection, 1.0 is full immunity. + // min: 0.0, max: 1.0 + "ironArmour": 0.25, + // How much incoming damage a diamond-reinforced boat ignores. 0.0 is no protection, 1.0 is full immunity. + // min: 0.0, max: 1.0 + "diamondArmour": 0.4, + // How much incoming damage a netherite-reinforced boat ignores. 0.0 is no protection, 1.0 is full immunity. + // min: 0.0, max: 1.0 + "netheriteArmour": 0.8, + // Forward speed multiplier for a copper-reinforced boat. 1.0 is vanilla boat speed, 1.5 is fifty percent faster. + // min: 0.1, max: 20.0 + "copperSpeed": 1.1, + // Forward speed multiplier for a gold-reinforced boat. 1.0 is vanilla boat speed, 1.5 is fifty percent faster. + // min: 0.1, max: 20.0 + "goldSpeed": 1.2, + // Forward speed multiplier for an iron-reinforced boat. 1.0 is vanilla boat speed, 1.5 is fifty percent faster. + // min: 0.1, max: 20.0 + "ironSpeed": 1.35, + // Forward speed multiplier for a diamond-reinforced boat. 1.0 is vanilla boat speed, 1.5 is fifty percent faster. + // min: 0.1, max: 20.0 + "diamondSpeed": 1.55, + // Forward speed multiplier for a netherite-reinforced boat. 1.0 is vanilla boat speed, 1.5 is fifty percent faster. + // min: 0.1, max: 20.0 + "netheriteSpeed": 1.8 +} \ No newline at end of file diff --git a/config/sebastrnlib-client.toml b/config/sebastrnlib-client.toml new file mode 100644 index 0000000..8401570 --- /dev/null +++ b/config/sebastrnlib-client.toml @@ -0,0 +1,3 @@ +#Display a thank you message at spawn? +sayThanksMessage = true + diff --git a/config/securitycraft-client.toml b/config/securitycraft-client.toml new file mode 100644 index 0000000..794dbb4 --- /dev/null +++ b/config/securitycraft-client.toml @@ -0,0 +1,23 @@ +#Send a welcome message containing tips when joining the world +sayThanksMessage = false +#Set the color that reinforced blocks' textures are tinted with. This will be applied the same to all blocks that satisfy the condition set by "reinforced_block_tint_mode". Grayscale values look best. +#Format: 0xRRGGBB +#Range: 0 ~ 16777215 +reinforced_block_tint_color = 10066329 +#Set the radius in which chunks viewed in a frame camera feed should be requested from the server and rendered. If this config has a higher value than the vanilla "Render Distance" option or the "view-distance" server property, the smaller value is used instead. +#Range: 2 ~ 32 +frame_feed_render_distance = 16 +#Set the resolution of the Frame camera feed. This is always a square resolution. Smaller values will be less detailed, higher values may lead to diminishing returns. +#Range: 1 ~ 16384 +frame_feed_resolution = 512 +#The maximum amount of frames per second the Frame camera feed renders at. Higher values will lead to worse performance. +#Range: 10 ~ 260 +frame_feed_fps_limit = 30 +#If this debug feature is enabled, SecurityCraft will attempt to find and report mods that prevent the feature of viewing security cameras from working when they immediately reset the player's camera entity. +debug_camera_reset_tracing = false +#Should Secure Redstone Interfaces in "Receiver" mode be rendered without the spinning disk? This may lead to slight clientside performance gains. +more_performant_sri_rendering = false +#Controls what condition placed reinforced blocks must satisfy in order to be colored compared to their vanilla counterparts. The color of this tint can be defined through the "reinforced_block_tint_color" configuration option. The tint may apply to all reinforced blocks, no reinforced blocks, or only the reinforced blocks that belong or don't belong to the player. +#Allowed Values: ALL, NONE, OWNED, UNOWNED +reinforced_block_tint_mode = "ALL" + diff --git a/config/sereneseasons/fertility.toml b/config/sereneseasons/fertility.toml new file mode 100644 index 0000000..059cb0a --- /dev/null +++ b/config/sereneseasons/fertility.toml @@ -0,0 +1,14 @@ + +[general] + #Whether crops are affected by seasons. + seasonal_crops = true + #How crops behave when out of season. + #0 = Grow slowly + #1 = Can't grow + #2 = Break when trying to grow + out_of_season_crop_behavior = 0 + #Maximum height level for out of season crops to have fertility underground. + underground_fertility_level = 48 + #Whether to include tooltips on crops listing which seasons they're fertile in. Note: This only applies to listed crops. + crop_tooltips = true + diff --git a/config/sereneseasons/seasons.toml b/config/sereneseasons/seasons.toml new file mode 100644 index 0000000..735df11 --- /dev/null +++ b/config/sereneseasons/seasons.toml @@ -0,0 +1,228 @@ + +[aesthetic_settings] + #Change the foliage colour based on the current season + change_foliage_color = true + #Change the grass color based on the current season + change_grass_color = true + #Change the birch colour based on the current season + change_birch_color = true + +[dimension_settings] + #Seasons will only apply to dimensons listed here + whitelisted_dimensions = ["minecraft:overworld"] + +[weather_settings] + #Change the frequency of rain/snow/storms based on the season + change_weather_frequency = true + #Generate snow and ice during the Winter season + generate_snow_ice = true + +[time_settings] + #The starting sub season for new worlds. + #0 = Random, 1 - 3 = Early/Mid/Late Spring + #4 - 6 = Early/Mid/Late Summer + #7 - 9 = Early/Mid/Late Autumn + #10 - 12 = Early/Mid/Late Winter + starting_sub_season = 1 + #The duration of a sub season in days. + sub_season_duration = 8 + #If the season should progress on a server with no players online + progress_season_while_offline = true + #The duration of a Minecraft day in ticks. + #This only adjusts the internal length of a day used by the season cycle. + #It is intended to be used in conjunction with another mod which adjusts the actual length of a Minecraft day. + day_duration = 24000 + +#melt_percent is the 0-1 percentage chance a snow or ice block will melt when chosen. (e.g. 100.0 = 100%, 50.0 = 50%) +#melt_rolls is the number of blocks randomly picked in each chunk, each tick. (High number rolls is not recommended on servers) +#melt_rolls should be 0 if blocks should not melt in that season. +#biome_temp_adjustment is the amount to adjust the biome temperature by from -10.0 to 10.0. +#min_rain_time is the minimum time interval between rain events in ticks. Set to -1 to disable rain. +#max_rain_time is the maximum time interval between rain events in ticks. Set to -1 to disable rain. +#min_thunder_time is the minimum time interval between thunder events in ticks. Set to -1 to disable thunder. +#max_thunder_time is the maximum time interval between thunder events in ticks. Set to -1 to disable thunder. +#grass_colour is the color of grass, from 0 to 0xFFFFFF(16777215). +#grass_saturation is the saturation multiplier of grass color. Set to -1 to disable. +#foliage_colour is the color of foliage, from 0 to 0xFFFFFF(16777215). +#foliage_saturation is the saturation multiplier of foliage color. Set to -1 to disable. +#birch_color is the color of birch foliage, from 0 to 0xFFFFFF(16777215). It will use the same saturation multiplier of foliage_colour +[[season_properties]] + grass_saturation = 0.6 + min_rain_time = 12000 + grass_colour = 11489103 + biome_temp_adjustment = -0.8 + foliage_saturation = 0.6 + birch_color = 11629115 + melt_percent = 0.0 + max_rain_time = 36000 + season = "EARLY_WINTER" + melt_rolls = 0 + max_thunder_time = -1 + foliage_colour = 14364720 + min_thunder_time = -1 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 16777215 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 8431445 + melt_percent = 25.0 + max_rain_time = 96000 + season = "MID_SUMMER" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 16777215 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = 0.6 + min_rain_time = 12000 + grass_colour = 9339265 + biome_temp_adjustment = -0.8 + foliage_saturation = 0.6 + birch_color = 9409119 + melt_percent = 0.0 + max_rain_time = 36000 + season = "LATE_WINTER" + melt_rolls = 0 + max_thunder_time = -1 + foliage_colour = 10842224 + min_thunder_time = -1 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 7307663 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 7646835 + melt_percent = 12.5 + max_rain_time = 96000 + season = "LATE_SPRING" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 6259871 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 7831687 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 8039012 + melt_percent = 25.0 + max_rain_time = 96000 + season = "EARLY_SUMMER" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 7307663 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = 0.45 + min_rain_time = 12000 + grass_colour = 11489103 + biome_temp_adjustment = -0.8 + foliage_saturation = 0.45 + birch_color = 10519117 + melt_percent = 0.0 + max_rain_time = 36000 + season = "MID_WINTER" + melt_rolls = 0 + max_thunder_time = -1 + foliage_colour = 14364720 + min_thunder_time = -1 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 8877943 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 10003787 + melt_percent = 25.0 + max_rain_time = 96000 + season = "LATE_SUMMER" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 10444639 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 6783639 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 7254659 + melt_percent = 8.33 + max_rain_time = 96000 + season = "MID_SPRING" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 5211823 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = 0.85 + min_rain_time = 12000 + grass_colour = 7831687 + biome_temp_adjustment = -0.25 + foliage_saturation = 0.85 + birch_color = 8821352 + melt_percent = 6.25 + max_rain_time = 96000 + season = "EARLY_SPRING" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 7307663 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 10444639 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 14852657 + melt_percent = 8.33 + max_rain_time = 180000 + season = "MID_AUTUMN" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 15671585 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = 0.85 + min_rain_time = 12000 + grass_colour = 11489103 + biome_temp_adjustment = -0.25 + foliage_saturation = 0.85 + birch_color = 13208117 + melt_percent = 6.25 + max_rain_time = 180000 + season = "LATE_AUTUMN" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 14364720 + min_thunder_time = 12000 + +[[season_properties]] + grass_saturation = -1.0 + min_rain_time = 12000 + grass_colour = 9400175 + biome_temp_adjustment = 0.0 + foliage_saturation = -1.0 + birch_color = 11641922 + melt_percent = 12.5 + max_rain_time = 180000 + season = "EARLY_AUTUMN" + melt_rolls = 1 + max_thunder_time = 180000 + foliage_colour = 12861504 + min_thunder_time = 12000 + diff --git a/config/sereneseasonsplus-common.toml b/config/sereneseasonsplus-common.toml new file mode 100644 index 0000000..d81ae01 --- /dev/null +++ b/config/sereneseasonsplus-common.toml @@ -0,0 +1,44 @@ + +[performance] + #Use async tasks for some operations to improve performance. This may cause issues with some mods. + useAsync = true + +[snowPillerAndReplacer] + #Tick interval for snow pillers in ticks. Default is 20 (1 second). + #Range: > 1 + tickSnowPiller = 20 + #Tick interval for snow replacer in ticks. Default is 20 (1 second). + #Range: > 1 + tickSnowReplacer = 100 + +[snowstorm] + #Enable snowstorm mode which increases snow pilling intensity. + enabled = false + +["Grass and Flower Growth"] + #Enable enhanced grass and flower growth during warm seasons. + enabled = true + +[snow] + #Maximum total snow layers allowed per column (8 layers = 1 block). Default 24 = 3 blocks. + #Range: 0 ~ 512 + maxSnowAccumulationLayers = 24 + +[seasonSync] + #Lock seasons to current Canadian calendar months (Eastern time). + realTimeCanadianSeasons = false + +[seasonalDaylightCycle] + #Enable seasonal daylight cycle. This will change the length of day and night based on the current season. + enableSeasonalDaylightCycle = true + #Enable Better Days time-speed compatibility so Serene Seasons Plus can adjust day and night speeds dynamically. + enableBetterDaysDynamicTimeCompat = true + #If true, the day and night lengths will be determined by the custom values set below. If false, the day and night lengths will be determined by the season. + customCycleLength = false + #Custom day length in ticks. Only used if seasonal daylight cycle is disabled. + #Range: 0.05 ~ 100.0 + customDayLength = 1.0 + #Custom night length in ticks. Only used if seasonal daylight cycle is disabled. + #Range: 0.05 ~ 100.0 + customNightLength = 1.0 + diff --git a/config/serializationisbad-remotecache.json b/config/serializationisbad-remotecache.json new file mode 100644 index 0000000..eaaf930 --- /dev/null +++ b/config/serializationisbad-remotecache.json @@ -0,0 +1,388 @@ +{ + "executeBlocking": true, + "patchModules": [ + { + "classesToPatch": [ + "net.bdew.lib.network.SerializedMessageCodec", + "net.bdew.lib.network.NetChannel" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.bdew" + ] + }, + { + "classesToPatch": [ + "com.enderio.core.common.config.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "crazypants", + "com.enderio" + ] + }, + { + "classesToPatch": [ + "p455w0rd.danknull.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.danknull" + ] + }, + { + "classesToPatch": [ + "reborncore.common.network.ExtendedPacketBuffer" + ], + "classAllowlist": [ + "java.math.BigInteger" + ], + "packageAllowlist": [] + }, + { + "classesToPatch": [ + "makeo.gadomancy.common.network.packets.PacketUpdateGolemTypeOrder", + "makeo.gadomancy.common.network.packets.PacketSyncConfigs" + ], + "classAllowlist": [], + "packageAllowlist": [ + "makeo.gadomancy" + ] + }, + { + "classesToPatch": [ + "org.wyldmods.simpleachievements.common.networking.MessageSendAchievements" + ], + "classAllowlist": [], + "packageAllowlist": [ + "org.wyldmods.simpleachievements" + ] + }, + { + "classesToPatch": [ + "immersive_armors.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_armors" + ] + }, + { + "classesToPatch": [ + "immersive_aircraft.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_aircraft" + ] + }, + { + "classesToPatch": [ + "immersive_paintings.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_paintings" + ] + }, + { + "classesToPatch": [ + "gcewing.projectblue.BaseNBTChannel$NBTCodec" + ], + "classAllowlist": [], + "packageAllowlist": [ + "gcewing.projectblue" + ] + }, + { + "classesToPatch": [ + "com.github.technus.tectech.mechanics.spark.RendererMessage" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.github.technus" + ] + }, + { + "classesToPatch": [ + "com.n247s.N2ConfigApi.api.networking.N2ConfigApiMessageHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.n247s.N2ConfigApi" + ] + }, + { + "classesToPatch": [ + "p455w0rd.endermanevo.network.PacketFriendermanRegistrySync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.endermanevo" + ] + }, + { + "classesToPatch": [ + "com.mattdahepic.mdecore.config.sync.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.mattdahepic" + ] + }, + { + "classesToPatch": [ + "com.iconmaster.aec.network.TransferConfigsPacket" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.iconmaster.aec" + ] + }, + { + "classesToPatch": [ + "net.tslat.aoa3.common.packet.leaderboard.PacketLeaderboardStats", + "net.tslat.aoa3.common.packet.leaderboard.PacketIndividualLeaderboardStats" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.tslat.aoa3" + ] + }, + { + "classesToPatch": [ + "pl.asie.lib.util.Base64" + ], + "classAllowlist": [], + "packageAllowlist": [ + "pl.asie" + ] + }, + { + "classesToPatch": [ + "arrowsplus.core.forge.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "arrowsplus" + ] + }, + { + "classesToPatch": [ + "hellfirepvp.astralsorcery.common.network.packet.server.PktSyncConfig" + ], + "classAllowlist": [], + "packageAllowlist": [ + "hellfirepvp.astralsorcery" + ] + }, + { + "classesToPatch": [ + "mal.carbonization.network.MultiblockFurnaceMessageServer" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mal.carbonization" + ] + }, + { + "classesToPatch": [ + "p455w0rd.capes.packet.PacketClientAddFriend", + "p455w0rd.capes.packet.PacketClientRemoveFriend", + "p455w0rd.capes.packet.PacketClientUpdateFriend", + "p455w0rd.capes.packet.PacketServerFriendSync", + "p455w0rd.capes.packet.PacketServerPlayerSync", + "p455w0rd.capes.packet.PacketServerTextureURLSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.capes" + ] + }, + { + "classesToPatch": [ + "gcewing.sg.base.ForgeNBTNetworking$BasePacketHandler", + "gcewing.sg.BaseNBTChannel$NBTCodec", + "gcewing.sg.BaseNBTChannel$BasePacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "gcewing.sg" + ] + }, + { + "classesToPatch": [ + "com.zerren.extrafirma.core.network.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.zerren.extrafirma" + ] + }, + { + "classesToPatch": [ + "journeymap.common.network.impl.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "journeymap" + ] + }, + { + "classesToPatch": [ + "com.polipo.bookshelf.net.MyMessage" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.polipo.bookshelf" + ] + }, + { + "classesToPatch": [ + "mca.PacketHandler", + "mca.core.forge.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mca" + ] + }, + { + "classesToPatch": [ + "logisticspipes.network.abstractpackets.GenericPacket", + "logisticspipes.network.packets.debuggui.DebugInfoUpdate", + "logisticspipes.network.packets.debuggui.DebugTargetResponse", + "logisticspipes.network.packets.debuggui.DebugTypePacket", + "logisticspipes.network.packets.routingdebug.RoutingUpdateTargetResponse" + ], + "classAllowlist": [], + "packageAllowlist": [ + "logisticspipes" + ] + }, + { + "classesToPatch": [ + "aeronicamc.mods.mxtune.network.NetworkSerializedHelper" + ], + "classAllowlist": [], + "packageAllowlist": [ + "aeronicamc.mods.mxtune" + ] + }, + { + "classesToPatch": [ + "p455w0rd.p455w0rdsthings.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.p455w0rdsthings" + ] + }, + { + "classesToPatch": [ + "radixcore.modules.RadixNettyIO" + ], + "classAllowlist": [], + "packageAllowlist": [ + "radixcore" + ] + }, + { + "classesToPatch": [ + "radixcore.network.ByteBufIO" + ], + "classAllowlist": [], + "packageAllowlist": [ + "radixcore", + "mca" + ] + }, + { + "classesToPatch": [ + "net.smart.moving.SmartMovingPacketStream" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.smart.moving" + ] + }, + { + "classesToPatch": [ + "svenhjol.strange.scrolls.message.ClientQuestList" + ], + "classAllowlist": [], + "packageAllowlist": [ + "svenhjol.strange" + ] + }, + { + "classesToPatch": [ + "com.supermartijn642.configlib.ConfigSyncPacket" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.supermartijn642" + ] + }, + { + "classesToPatch": [ + "vazkii.tinkerer.common.network.PacketManager" + ], + "classAllowlist": [], + "packageAllowlist": [ + "vazkii.tinkerer" + ] + }, + { + "classesToPatch": [ + "p455w0rd.tanaddons.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.tanaddons" + ] + }, + { + "classesToPatch": [ + "tterrag.core.common.config.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "tterrag" + ] + }, + { + "classesToPatch": [ + "mods.gra.energymanipulator.client.ClientPacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mods.gra.energymanipulator" + ] + }, + { + "classesToPatch": [ + "com.possible_triangle.brazier.network.ByteConfigSerializer" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.possible_triangle.brazier" + ] + } + ], + "classAllowlist": [ + "boolean", + "byte", + "char", + "short", + "int", + "long", + "float", + "double", + "void" + ], + "packageAllowlist": [ + "java.util", + "java.lang" + ] +} diff --git a/config/serializationisbad.json b/config/serializationisbad.json new file mode 100644 index 0000000..828a442 --- /dev/null +++ b/config/serializationisbad.json @@ -0,0 +1,8 @@ +{ + "useRemoteConfig": true, + "remoteConfigUrl": "https://raw.githubusercontent.com/dogboy21/serializationisbad/master/serializationisbad.json", + "executeBlocking": true, + "patchModules": [], + "classAllowlist": [], + "packageAllowlist": [] +} \ No newline at end of file diff --git a/config/serverconfigcleaner-common.toml b/config/serverconfigcleaner-common.toml new file mode 100644 index 0000000..0941dbf --- /dev/null +++ b/config/serverconfigcleaner-common.toml @@ -0,0 +1,12 @@ +#Patterns used to determine suspicious config keys. Capitalization is ignored. +badConfigPatterns = ["host", "username", "password", "secret", "token", "apikey", "webhook", "jdbc", "sql", "redis", "mongodb", "database"] +#Options to exclude from config syncing +#Format: modid:category.configKey +doNotSync = [] +#Options that are detected by the badConfigPatterns, but should still be synced +#Format: modid:category.configKey; * allowed at the end of an entry +falsePositives = ["rftoolsbuilder:scanner.locatorUsePerTickHostile", "tombstone:player_death.ghostly_shape_duration", "mahoutsukai:secret.*", "create:logistics.seatHostileMobs", "tombstone:general.ghostly_shape_duration", "skinnedlanterns:lanterns.ghost_soul_lantern", "skinnedlanterns:lanterns.ghost_lantern", "goblinsanddungeons:general.Super Secret Settings", "moblassos:hostile_damage_rate", "moblassos:hostile_mob_health", "moblassos:hostile_lasso_time", "notenoughwands:general.wandsettings.capturing_wand.allowHostile", "notenoughwands:general.wandsettings.freezing_wand.freezeAllowHostile", "notenoughwands:general.wandsettings.potion_wand.potionAllowHostile", "sophisticatedbackpacks:server.mobCatcherUpgrade.hostileOverrides", "sophisticatedbackpacks:server.mobCatcherUpgrade.hostileMultiplier"] +#A somewhat obfuscated list of known options containing secrets. +#Ignore unless you know what you are doing. +doNotSyncHashes = [] + diff --git a/config/serverconfigupdater-common.toml b/config/serverconfigupdater-common.toml new file mode 100644 index 0000000..f24652e --- /dev/null +++ b/config/serverconfigupdater-common.toml @@ -0,0 +1,12 @@ + +["Version Configuration"] + # Define a version here. On world load the mod will look up the serverconfig version and reset all files that specified up to the newest version. + # Example: ["1=minecraft","2=forge"] will reset minecraft and forge config on first load, but will only reset forge if the world has been loaded before with only version 1 defined + versions = [""] + +["File Deleter"] + # This is intended for deleting files for pack updates. This is a last resort! Replace with empty files instead when possible. The file will be deleted every launch if it exists! Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs + files = [""] + # By default Folders are only deleted if they are empty. Set to true to change that. + deleteFoldersWithContent = false + diff --git a/config/servertabinfo-client.toml b/config/servertabinfo-client.toml new file mode 100644 index 0000000..3ce1d5c --- /dev/null +++ b/config/servertabinfo-client.toml @@ -0,0 +1,6 @@ + +#Client settings +[client] + #Replace the vanilla player list + replacePlayerList = true + diff --git a/config/servertabinfo-server.toml b/config/servertabinfo-server.toml new file mode 100644 index 0000000..d229f31 --- /dev/null +++ b/config/servertabinfo-server.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #How often should the server send tps updates to clients + #Default is 100 ticks + #Range: 1 ~ 6000 + refreshTicks = 100 + #Only ops can see tps information, this is to stop tps hunters + opOnlyMode = false + #List of dimensions not shown on the TPS list + #In the following forms "mod:dimension" or "mod:*" to block all dimension for that mod + #Examples include + # - "minecraft:overworld" + # - "minecraft:the_nether" + # - "minecraft:the_end" + dimensionBlockList = ["servertabinfo:example"] + diff --git a/config/sfm-client-program-editor.toml b/config/sfm-client-program-editor.toml new file mode 100644 index 0000000..03e8989 --- /dev/null +++ b/config/sfm-client-program-editor.toml @@ -0,0 +1,5 @@ +showLineNumbers = false +#Allowed Values: OFF, BASIC, ADVANCED +intellisenseLevel = "OFF" +preferredEditor = "sfm:v1" + diff --git a/config/sfm-client.toml b/config/sfm-client.toml new file mode 100644 index 0000000..25a5432 --- /dev/null +++ b/config/sfm-client.toml @@ -0,0 +1,3 @@ +showLabelGunReminderOverlay = true +showNetworkToolReminderOverlay = true + diff --git a/config/shetiphiancore-client.toml b/config/shetiphiancore-client.toml new file mode 100644 index 0000000..e7147ed --- /dev/null +++ b/config/shetiphiancore-client.toml @@ -0,0 +1,15 @@ +#Adjust the default way RGB16 handles dyes +#RYB = blending is used to mix the colors +# > Like mixing paint, the dye will be added to the existing color +# > Sneak-Click to set to dye color +# +#RGB = Direct value manipulation +# > Click to increase, Sneak-Click to decrease +# +#RYB is easier to use but RGB is more precise +#Allowed Values: RGB, RYB +color_blend_mode = "RYB" +#Tool Modes can be changed via Sneak+Scroll and/or Keybinding (default PageUp/Down) +#Allowed Values: KEYBINDING, SNEAK_SCROLL, BOTH +tool_mode_change = "BOTH" + diff --git a/config/shetiphiancore.toml b/config/shetiphiancore.toml new file mode 100644 index 0000000..9dd89ff --- /dev/null +++ b/config/shetiphiancore.toml @@ -0,0 +1,18 @@ + +#Core Edits +[core_edits] + #Modifies entity collision checks to work with thinner blocks + #Unmodified ignores blocks bellow 1/5 (slightly thicker then a lower trap door) + #Modified processes blocks down to 3/32 (slightly thicker then carpets) + # + #If you need to disable this to solve a compatibility issue, please report it to me + #Non-living entities and thinner blocks are already exempt to avoid compatibility issues + enable_thin_block_handler = true + #When enabled carpets on top of scaffolding can be passed through just like snow + enable_carpet_passthrough = true + #When enabled using bonemeal on a stripped log restores the bark + bonemeal_restores_bark = true + #When enabled using bonemeal on grass blocks also generates flowers from mods + #By default Minecraft only picks flowers from its own FlowerFeature list, but when mods add flowers they get added to there own list + bonemeal_flowerfix = true + diff --git a/config/shrink-common.toml b/config/shrink-common.toml new file mode 100644 index 0000000..14ce9a9 --- /dev/null +++ b/config/shrink-common.toml @@ -0,0 +1,17 @@ +#Set to false to disable power requirements for personal shrinking device +enablePowerRequirements = true +#Set the amount of power required to use use the personal shrinking device +setPowerUsage = 5000 +#Set the amount of power the personal shrinking device can store +setShrinkingDeviceCapacity = 100000 +#Set to false to disable mobs being put in bottles +enableMobBottles = true +#Set the max size a player can grow too +#Range: 0.0 ~ 100.0 +maxSize = 10.0 +#Set the min size a player can shrink too +#Range: 0.21 ~ 100.0 +minSize = 0.21 +#Set to false to allow shrinking while in spectator mode +enableShrinkInSpectator = false + diff --git a/config/shut_up_gl_error.json5 b/config/shut_up_gl_error.json5 new file mode 100644 index 0000000..6f81073 --- /dev/null +++ b/config/shut_up_gl_error.json5 @@ -0,0 +1,6 @@ +{ + /* - default: SILENT + - must be one of: SILENT, LOG_ONCE, LOG_ALWAYS + */ + "mode": "SILENT" +} \ No newline at end of file diff --git a/config/sidebar_buttons.json b/config/sidebar_buttons.json new file mode 100644 index 0000000..e14c120 --- /dev/null +++ b/config/sidebar_buttons.json @@ -0,0 +1,11 @@ +{ + "leaderboards": { + "leaderboards": true + }, + "ftblibrary": { + "toggle.gamemode": true, + "toggle.rain": true, + "toggle.day": true, + "toggle.night": true + } +} \ No newline at end of file diff --git a/config/simple-custom-early-loading.json b/config/simple-custom-early-loading.json new file mode 100644 index 0000000..c7800a8 --- /dev/null +++ b/config/simple-custom-early-loading.json @@ -0,0 +1,54 @@ +// Check documentation for more information with examples +// https://github.com/lukaskabc/SimpleCustomEarlyLoading#configuration +{ + // texture elements to render + "elements": [ + { + "image": "loading.png", + "position": { + // define which point in the image should be aligned at x, y position on the window + // Possible values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT, CENTER, TOP_CENTER, BOTTOM_CENTER, LEFT_CENTER, RIGHT_CENTER + "position_anchor": "TOP_LEFT", + // The unit for x, y position PIXELS or PERCENTAGE (percentage of the window values: 0-100) + // the position unit can also be defined for each coordinate separately position_unit_x, position_unit_y + "position_unit": "PIXELS", + // The position of the anchor on the screen in position_unit + "x": 0, + "y": 0, + // The unit for width, height - PIXELS or PERCENTAGE (again, percantage of the window) - can't be defined separately + "size_unit": "PERCENTAGE", + // "keep_aspect_ratio": false, // to disable maintaining aspect ratio (enabled by default) + // The width and height of the image in size_unit + // if you specify both values, the aspect ratio is not preserved + // if you specify only one value, the other is calculated to preserve the aspect ratio + "width": 100, + "height": 100 + } + } + ], + // "progress_bar": null to remove the default progress bar element + "progress_bar": { + // 3 is also default when the value is not specified + "bar_count": 3, + "position": { + "position_anchor": "TOP_CENTER", + "position_unit": "PERCENTAGE", + "x": 50, + "y": 65 + // custom width and height is not supported + } + }, + "performance_bar": true, + "fox": true, + "log_messages": true, + "forge_version": true + // I dont think it would be nice to remove the mojang logo and change the branding, so I am not allowing it here + + // When specified, the window resolution will be fixed + // if omited, the window resolution will match the window size in fml.toml + // also note that this resolution is for the frame buffer, some height of the window is taken by the window header + // so if you set the height of the monitor, you will get black bars on sides + // since the frame buffer will be actually higher than the space in the window + // "resolution_width": 854, + // "resolution_height": 480 +} diff --git a/config/simple-custom-early-loading/loading.png b/config/simple-custom-early-loading/loading.png new file mode 100644 index 0000000..5cf8336 Binary files /dev/null and b/config/simple-custom-early-loading/loading.png differ diff --git a/config/simplebackups-common.toml b/config/simplebackups-common.toml new file mode 100644 index 0000000..3b7e2aa --- /dev/null +++ b/config/simplebackups-common.toml @@ -0,0 +1,75 @@ +#If set false, no backups are being made. +enabled = true +#Defines the backup type. +#- FULL_BACKUPS - always creates full backups +#- MODIFIED_SINCE_LAST - only saves the files which changed since last (partial) backup +#- MODIFIED_SINCE_FULL - saves all files which changed after the last full backup +#Allowed Values: FULL_BACKUPS, MODIFIED_SINCE_LAST, MODIFIED_SINCE_FULL +backupType = "FULL_BACKUPS" +#Should a save-all be forced before backup? +saveAll = true +#How often should a full backup be created if only modified files should be saved? This creates a full backup when x minutes are over and the next backup needs to be done. Once a year is default. +#Range: 1 ~ 5259600 +fullBackupTimer = 525960 +#The max amount of backup files to keep. +#Range: 1 ~ 32767 +backupsToKeep = 10 +#The time between two backups in minutes +#5 = each 5 minutes +#60 = each hour +#1440 = each day +#Range: 1 ~ 32767 +timer = 120 +#Compression level: +# 0 = no compression (low CPU usage, larger files) +# 9 = maximum compression (high CPU usage, smaller files) +# -1 = default; balances speed and compression (recommended) +#Range: -1 ~ 9 +compressionLevel = -1 +#Should message be sent when backup is in the making? +sendMessages = true +#The max size of storage the backup folder. If it takes more storage, old files will be deleted. +#Needs to be written as +#Valid storage types: B, KB, MB, GB, TB +maxDiskSize = "25 GB" +#Used to define the output path. +outputPath = "simplebackups" +#Create backups, even if nobody is online +noPlayerBackups = false +#Should sub-directories be generated for each world? +#Keep in mind that all configs above, including backupsToKeep and maxDiskSize, will be calculated for each sub directory. +createSubDirs = false +#Use an internal tick counter instead of the real world time. The value of the timer will be converted to ticks. When the timer is over, the backup will be created. +#Keep in mind that lagging servers will result in larger gaps between two backups, e.g. 10 FPS in average will result in double the time set between backups. +useTickCounter = false + +#WARNING This configuration should stay as default if backups are not monitored properly. +[error_handling] + #I/O Errors will be collected and print into the chat. The mod tries to complete the backup with as many files as possible. Otherwise, it will abort after the first error. + collectErrors = true + #If collectErrors is 'false', backups with errors will be deleted immediately to prevent deleting valid backups. + deleteUnfinishedBackup = true + +#WARNING Please check your configuration before using permanently. +#The backup system will ignore these paths and files. +[to_ignore] + #All directories that should be excluded from backups + #Format: Enter paths relative to the world directory (e.g., 'logs', 'data/cache') + #All files within these directories will also be excluded + ignored_paths = [] + #Specific files that should be excluded from backups + #Format: Enter complete file paths relative to the world directory (e.g., 'level.dat_old', 'stats/player.json') + #Use this for individual files rather than entire directories + ignored_files = [] + #Regular expression pattern to exclude matching files from backups + #All files with paths matching this pattern will be skipped + #Example: '.*\.temp$' excludes all files ending with .temp + #Leave empty to disable regex-based file exclusion + ignored_files_regex = "" + +[mod_compat] + #Should backup notifications be sent to Discord by using mc2discord? (needs to be installed) + mc2discord = true + #Should only worlds be backed up that are marked as favorite by Cherished Worlds mod? + onlyFavorites = false + diff --git a/config/simplehats.json b/config/simplehats.json new file mode 100644 index 0000000..893955c --- /dev/null +++ b/config/simplehats.json @@ -0,0 +1,4983 @@ +{ + "babyturtle": { + "name": "babyturtle", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:splash", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "bandana": { + "name": "bandana", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bandanargb": { + "name": "bandanargb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "baseballeaster": { + "name": "baseballeaster", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "baseballhat": { + "name": "baseballhat", + "rarity": "COMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "baseballhatfestive": { + "name": "baseballhatfestive", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "baseballhatjuly": { + "name": "baseballhatjuly", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "baseballhatrgb": { + "name": "baseballhatrgb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "batwinghat": { + "name": "batwinghat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beanie": { + "name": "beanie", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beanieeaster": { + "name": "beanieeaster", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beaniefestive": { + "name": "beaniefestive", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beaniejuly": { + "name": "beaniejuly", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beaniergb": { + "name": "beaniergb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beaniespooky": { + "name": "beaniespooky", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beehat": { + "name": "beehat", + "rarity": "EPIC", + "weight": 5, + "variants": 2, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:falling_honey", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "bicorne": { + "name": "bicorne", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bigbrain": { + "name": "bigbrain", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bigcrown": { + "name": "bigcrown", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bigeyes": { + "name": "bigeyes", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bigribbon": { + "name": "bigribbon", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bigstevehead": { + "name": "bigstevehead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bluefireeye": { + "name": "bluefireeye", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:soul_fire_flame", + "frequency": 0.1, + "movement": "TRAILING_FEET" + } + }, + "bowler": { + "name": "bowler", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "breadhat": { + "name": "breadhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "brownbrick": { + "name": "brownbrick", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bunnyhat": { + "name": "bunnyhat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "burgerhat": { + "name": "burgerhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "caddycap": { + "name": "caddycap", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "camera": { + "name": "camera", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:flash", + "frequency": 0.002, + "movement": "TRAILING_HEAD" + } + }, + "camerabeard": { + "name": "camerabeard", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:flash", + "frequency": 0.002, + "movement": "TRAILING_HEAD" + } + }, + "candleonhead": { + "name": "candleonhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:small_flame", + "frequency": 0.03, + "movement": "TRAILING_HEAD" + } + }, + "candycane": { + "name": "candycane", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "carrotonstick": { + "name": "carrotonstick", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cartoonegg": { + "name": "cartoonegg", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cheeseslice": { + "name": "cheeseslice", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chefshat": { + "name": "chefshat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chickenhead": { + "name": "chickenhead", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chickenonhead": { + "name": "chickenonhead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "christmascakehat": { + "name": "christmascakehat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "christmastree": { + "name": "christmastree", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:snowflake", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "clockface": { + "name": "clockface", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cowboy": { + "name": "cowboy", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cowboyrgb": { + "name": "cowboyrgb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "crabonhead": { + "name": "crabonhead", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "crown": { + "name": "crown", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cuphead": { + "name": "cuphead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cyclopseye": { + "name": "cyclopseye", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dairyqueen": { + "name": "dairyqueen", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dangereqsue": { + "name": "dangereqsue", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dangeresquejuly": { + "name": "dangeresquejuly", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "demoneyes": { + "name": "demoneyes", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:crimson_spore", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "demonhorns": { + "name": "demonhorns", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:lava", + "frequency": 0.03, + "movement": "TRAILING_FEET" + } + }, + "digger": { + "name": "digger", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dimmahat": { + "name": "dimmahat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "discoball": { + "name": "discoball", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "disguise": { + "name": "disguise", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "doctorhat": { + "name": "doctorhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dorkglassesandteeth": { + "name": "dorkglassesandteeth", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "doubletake": { + "name": "doubletake", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dragonhead": { + "name": "dragonhead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:small_flame", + "frequency": 0.1, + "movement": "TRAILING_FEET" + } + }, + "dragonskull": { + "name": "dragonskull", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:ash", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "dragonskullender": { + "name": "dragonskullender", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:dragon_breath", + "frequency": 0.05, + "movement": "TRAILING_FULL" + } + }, + "drinkinhat": { + "name": "drinkinhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dumhat": { + "name": "dumhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dwarfminerbeard": { + "name": "dwarfminerbeard", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 2, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "easterhead": { + "name": "easterhead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "egghead": { + "name": "egghead", + "rarity": "EPIC", + "weight": 5, + "variants": 1, + "season": "EASTER", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "eggonhead": { + "name": "eggonhead", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "elfhat": { + "name": "elfhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "explorerhat": { + "name": "explorerhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "eyepatch": { + "name": "eyepatch", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "fakeblight": { + "name": "fakeblight", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:entity_effect", + "frequency": 0.05, + "movement": "TRAILING_FULL" + } + }, + "fakefire": { + "name": "fakefire", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:flame", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "farmerbrim": { + "name": "farmerbrim", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": true, + "decimal color": 7895160 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "festiveantlers": { + "name": "festiveantlers", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "festiveribbon": { + "name": "festiveribbon", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "finnhood": { + "name": "finnhood", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "fireworks": { + "name": "fireworks", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:firework", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "fishonhead": { + "name": "fishonhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:splash", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "flagjuly": { + "name": "flagjuly", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "flies": { + "name": "flies", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "floatinghearts": { + "name": "floatinghearts", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:heart", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "floatingstar": { + "name": "floatingstar", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.03, + "movement": "TRAILING_HEAD" + } + }, + "flowercrown": { + "name": "flowercrown", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:spore_blossom_air", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "floweronhead": { + "name": "floweronhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:spore_blossom_air", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "foxhat": { + "name": "foxhat", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "fro": { + "name": "fro", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "frozenhead": { + "name": "frozenhead", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:snowflake", + "frequency": 0.05, + "movement": "TRAILING_FULL" + } + }, + "fullironhelm": { + "name": "fullironhelm", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 3, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "ghostmask": { + "name": "ghostmask", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:soul", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "goggles": { + "name": "goggles", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "grandmadisguise": { + "name": "grandmadisguise", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "greenbirb": { + "name": "greenbirb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "grinchhat": { + "name": "grinchhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "halo": { + "name": "halo", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "headbolts": { + "name": "headbolts", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.03, + "movement": "TRAILING_HEAD" + } + }, + "headphonesblue": { + "name": "headphonesblue", + "rarity": "EPIC", + "weight": 5, + "variants": 3, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:note", + "frequency": 0.01, + "movement": "TRAILING_HEAD" + } + }, + "headshot": { + "name": "headshot", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "hockeymask": { + "name": "hockeymask", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "holyhead": { + "name": "holyhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:glow", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "horsemask": { + "name": "horsemask", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "hosthat": { + "name": "hosthat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:crimson_spore", + "frequency": 0.02, + "movement": "TRAILING_FULL" + } + }, + "icedragonskull": { + "name": "icedragonskull", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:snowflake", + "frequency": 0.04, + "movement": "TRAILING_HEAD" + } + }, + "jackohat": { + "name": "jackohat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "jesterhat": { + "name": "jesterhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "julydouble": { + "name": "julydouble", + "rarity": "RARE", + "weight": 5, + "variants": 2, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "kirbymouthful": { + "name": "kirbymouthful", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "largehorns": { + "name": "largehorns", + "rarity": "COMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "lilbow": { + "name": "lilbow", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "madscientist": { + "name": "madscientist", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "magikarp": { + "name": "magikarp", + "rarity": "EPIC", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "megamanhat": { + "name": "megamanhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "mistletoe": { + "name": "mistletoe", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "mohawk": { + "name": "mohawk", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "monkeyking": { + "name": "monkeyking", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "monocle": { + "name": "monocle", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "moreeyes": { + "name": "moreeyes", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "murdered": { + "name": "murdered", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "nekoears": { + "name": "nekoears", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "palmtree": { + "name": "palmtree", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "paperbag": { + "name": "paperbag", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "partyhat": { + "name": "partyhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "paypay": { + "name": "paypay", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "penguinbaby": { + "name": "penguinbaby", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "penguinhat": { + "name": "penguinhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "pighead": { + "name": "pighead", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "pinhead": { + "name": "pinhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "plaguedoctor": { + "name": "plaguedoctor", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "pog": { + "name": "pog", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "pohatoe": { + "name": "pohatoe", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "policebucket": { + "name": "policebucket", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "policesiren": { + "name": "policesiren", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "poofballhat": { + "name": "poofballhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "poofballrgb": { + "name": "poofballrgb", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "popehat": { + "name": "popehat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "potionhead": { + "name": "potionhead", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:entity_effect", + "frequency": 0.05, + "movement": "TRAILING_FULL" + } + }, + "presentsstack": { + "name": "presentsstack", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "propelhat": { + "name": "propelhat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "questbook": { + "name": "questbook", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rabbitears": { + "name": "rabbitears", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rabbitonhead": { + "name": "rabbitonhead", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rainboworbiters": { + "name": "rainboworbiters", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "ranahat": { + "name": "ranahat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "redeyes": { + "name": "redeyes", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rednose": { + "name": "rednose", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "redstache": { + "name": "redstache", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbbigribbon": { + "name": "rgbbigribbon", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbbowler": { + "name": "rgbbowler", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbdragonskull": { + "name": "rgbdragonskull", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbdrinkinhat": { + "name": "rgbdrinkinhat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbeasterhead": { + "name": "rgbeasterhead", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbfullhelm": { + "name": "rgbfullhelm", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbpartyhat": { + "name": "rgbpartyhat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbsmallbowler": { + "name": "rgbsmallbowler", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbsunglasses": { + "name": "rgbsunglasses", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbtoptophathat": { + "name": "rgbtoptophathat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rgbushanka": { + "name": "rgbushanka", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rock": { + "name": "rock", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rubbernipple": { + "name": "rubbernipple", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sandcastle": { + "name": "sandcastle", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "santaclaus": { + "name": "santaclaus", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "FESTIVE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sausage": { + "name": "sausage", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "seaweedhat": { + "name": "seaweedhat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "SUMMER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "shakehat": { + "name": "shakehat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sheep": { + "name": "sheep", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "shrekears": { + "name": "shrekears", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "shroomcap": { + "name": "shroomcap", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:mycelium", + "frequency": 0.08, + "movement": "TRAILING_FULL" + } + }, + "simsgem": { + "name": "simsgem", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "smokingpipe": { + "name": "smokingpipe", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:smoke", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "snowmanbaby": { + "name": "snowmanbaby", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:snowflake", + "frequency": 0.04, + "movement": "TRAILING_HEAD" + } + }, + "sombrero": { + "name": "sombrero", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sonichood": { + "name": "sonichood", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.1, + "movement": "TRAILING_FEET" + } + }, + "spadesoldier": { + "name": "spadesoldier", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "spiderweb": { + "name": "spiderweb", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "springer": { + "name": "springer", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sprout": { + "name": "sprout", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "spyzombie": { + "name": "spyzombie", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "stackofeggs": { + "name": "stackofeggs", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "EASTER", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "stress": { + "name": "stress", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:warped_spore", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "summerhat": { + "name": "summerhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 11330558 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sunglasses": { + "name": "sunglasses", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sunglassesbig": { + "name": "sunglassesbig", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "supersandhat": { + "name": "supersandhat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "swimmer": { + "name": "swimmer", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tinkerhat": { + "name": "tinkerhat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "topcathat": { + "name": "topcathat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tophat": { + "name": "tophat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "toptophathat": { + "name": "toptophathat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "triangleshades": { + "name": "triangleshades", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tricorne": { + "name": "tricorne", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tvhead": { + "name": "tvhead", + "rarity": "EPIC", + "weight": 5, + "variants": 2, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "unicornhorn": { + "name": "unicornhorn", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:glow", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "ushanka": { + "name": "ushanka", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "vikinghatbeard": { + "name": "vikinghatbeard", + "rarity": "RARE", + "weight": 5, + "variants": 2, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "villagernose": { + "name": "villagernose", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "winghat": { + "name": "winghat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:cloud", + "frequency": 0.03, + "movement": "TRAILING_HEAD" + } + }, + "zigzagwitchhat": { + "name": "zigzagwitchhat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "HALLOWEEN", + "Dye Settings": { + "enabled": true, + "decimal color": 16383998 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:witch", + "frequency": 0.04, + "movement": "TRAILING_FULL" + } + }, + "acornhat": { + "name": "acornhat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "aegishat": { + "name": "aegishat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "alienphil": { + "name": "alienphil", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "amalgalichhat": { + "name": "amalgalichhat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:portal", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "angrymask": { + "name": "angrymask", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "antlers": { + "name": "antlers", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "apple": { + "name": "apple", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "artsy": { + "name": "artsy", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "babydolphin": { + "name": "babydolphin", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:dolphin", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "artsy_doll": { + "name": "artsy_doll", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:glow", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "azumanga_hat": { + "name": "azumanga_hat", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "beret_ribbon": { + "name": "beret_ribbon", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bucket": { + "name": "bucket", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:falling_water", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "burning_m_bison": { + "name": "burning_m_bison", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chalk_stick": { + "name": "chalk_stick", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chi_ears": { + "name": "chi_ears", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "circular_glasses": { + "name": "circular_glasses", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 12763584 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cucumbereyemask": { + "name": "cucumbereyemask", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "dejiko": { + "name": "dejiko", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "fez": { + "name": "fez", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "fishing_hat": { + "name": "fishing_hat", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "lightning_eyes": { + "name": "lightning_eyes", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16777215 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "longfoxears": { + "name": "longfoxears", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 12763584 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "milady_doll": { + "name": "milady_doll", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "nyan_doll": { + "name": "nyan_doll", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:entity_effect", + "frequency": 0.2, + "movement": "TRAILING_FULL" + } + }, + "orange_hat": { + "name": "orange_hat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "peppino": { + "name": "peppino", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16777215 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "pom_moog": { + "name": "pom_moog", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "puchiko": { + "name": "puchiko", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "rabi_en_rose": { + "name": "rabi_en_rose", + "rarity": "RARE", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "raincloud": { + "name": "raincloud", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "scouter": { + "name": "scouter", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 12763584 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "sleepeyemask": { + "name": "sleepeyemask", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:heart", + "frequency": 0.01, + "movement": "TRAILING_HEAD" + } + }, + "sport_sunglasses": { + "name": "sport_sunglasses", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "strawberry_hat": { + "name": "strawberry_hat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "teddy_bear": { + "name": "teddy_bear", + "rarity": "EPIC", + "weight": 5, + "variants": 6, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "the_noise": { + "name": "the_noise", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "toy_story_alien": { + "name": "toy_story_alien", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "twilight_doll": { + "name": "twilight_doll", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:enchant", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "worms_mine": { + "name": "worms_mine", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "alien_antennae": { + "name": "alien_antennae", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 5308240 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "angel_and_devil": { + "name": "angel_and_devil", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "astronaut": { + "name": "astronaut", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "axolotl_on_head": { + "name": "axolotl_on_head", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:dolphin", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "baby_crewmate": { + "name": "baby_crewmate", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16719360 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "bee_on_head": { + "name": "bee_on_head", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:falling_honey", + "frequency": 0.02, + "movement": "TRAILING_HEAD" + } + }, + "beetle_on_head": { + "name": "beetle_on_head", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "binky": { + "name": "binky", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 36095 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cardboard_box": { + "name": "cardboard_box", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cat_hat": { + "name": "cat_hat", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16752640 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "cat_on_head": { + "name": "cat_on_head", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 16743680 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "caterpillar_on_head": { + "name": "caterpillar_on_head", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "chocolate_sauced": { + "name": "chocolate_sauced", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "crystal_horns": { + "name": "crystal_horns", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:glow", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "dipper": { + "name": "dipper", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "druid_antlers": { + "name": "druid_antlers", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 5299200 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "druid_antlers_rare": { + "name": "druid_antlers_rare", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 5299200 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:spore_blossom_air", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "eevee_ears": { + "name": "eevee_ears", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "eyeholder_beeholder": { + "name": "eyeholder_beeholder", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:falling_honey", + "frequency": 0.04, + "movement": "TRAILING_HEAD" + } + }, + "eyeholder_dark": { + "name": "eyeholder_dark", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:soul_fire_flame", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "eyeholder_evil": { + "name": "eyeholder_evil", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:portal", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "eyeholder_warm": { + "name": "eyeholder_warm", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:lava", + "frequency": 0.03, + "movement": "TRAILING_HEAD" + } + }, + "eyeholder_xanath": { + "name": "eyeholder_xanath", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:enchant", + "frequency": 0.2, + "movement": "TRAILING_HEAD" + } + }, + "gnome": { + "name": "gnome", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": true, + "decimal color": 65280 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "gnome_clover_wig": { + "name": "gnome_clover_wig", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "greaser": { + "name": "greaser", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "hat_of_discipline": { + "name": "hat_of_discipline", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "ladybug_on_head": { + "name": "ladybug_on_head", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "lil_bows": { + "name": "lil_bows", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "lil_termagant": { + "name": "lil_termagant", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "medusa": { + "name": "medusa", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "mimic_head": { + "name": "mimic_head", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "mimic_head_dark": { + "name": "mimic_head_dark", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:soul", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "mimic_head_gold": { + "name": "mimic_head_gold", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "mindflayer": { + "name": "mindflayer", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:glow", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "mindflayer_alhoon": { + "name": "mindflayer_alhoon", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:enchant", + "frequency": 0.2, + "movement": "TRAILING_FULL" + } + }, + "octodad": { + "name": "octodad", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:splash", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "pika_ears": { + "name": "pika_ears", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:electric_spark", + "frequency": 0.1, + "movement": "TRAILING_FULL" + } + }, + "right_hand_hat": { + "name": "right_hand_hat", + "rarity": "COMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "round_purple_wig": { + "name": "round_purple_wig", + "rarity": "COMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "round_red_wig": { + "name": "round_red_wig", + "rarity": "COMMON", + "weight": 5, + "variants": 1, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "slime_cube_dnd": { + "name": "slime_cube_dnd", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:soul", + "frequency": 0.05, + "movement": "TRAILING_HEAD" + } + }, + "slime_head": { + "name": "slime_head", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:spore_blossom_air", + "frequency": 0.04, + "movement": "TRAILING_HEAD" + } + }, + "stinkycheeseman": { + "name": "stinkycheeseman", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:mycelium", + "frequency": 0.12, + "movement": "TRAILING_HEAD" + } + }, + "stuck_lollipop": { + "name": "stuck_lollipop", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tanuki_leaf": { + "name": "tanuki_leaf", + "rarity": "UNCOMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "the_noisier": { + "name": "the_noisier", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "thumbnail": { + "name": "thumbnail", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "tick_on_head": { + "name": "tick_on_head", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "toast": { + "name": "toast", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "toilet": { + "name": "toilet", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": true, + "name": "minecraft:splash", + "frequency": 0.1, + "movement": "TRAILING_HEAD" + } + }, + "tomato_splats": { + "name": "tomato_splats", + "rarity": "EPIC", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "traffic_cone": { + "name": "traffic_cone", + "rarity": "RARE", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "udder_hat": { + "name": "udder_hat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + }, + "worm_hat": { + "name": "worm_hat", + "rarity": "COMMON", + "weight": 5, + "variants": 0, + "season": "NONE", + "Dye Settings": { + "enabled": false, + "decimal color": 0 + }, + "Particle Settings": { + "enabled": false, + "name": "minecraft:heart", + "frequency": 0.0, + "movement": "TRAILING_FULL" + } + } +} \ No newline at end of file diff --git a/config/simplehats/client.toml b/config/simplehats/client.toml new file mode 100644 index 0000000..edc87d8 --- /dev/null +++ b/config/simplehats/client.toml @@ -0,0 +1,2 @@ +forceFirstPersonNoRender = false +hatYOffset = 0.0 diff --git a/config/simplehats/common.toml b/config/simplehats/common.toml new file mode 100644 index 0000000..2be5608 --- /dev/null +++ b/config/simplehats/common.toml @@ -0,0 +1,15 @@ +keepHatOnDeath = true +seasonalBagChance = 20 +enableMobLoot = true +enableChestLoot = true +allowHatInHelmetSlot = false +chestNoneWeight = 150 +chestCommonWeight = 20 +chestUncommonWeight = 15 +chestRareWeight = 10 +chestEpicWeight = 5 +entityNoneWeight = 200 +entityCommonWeight = 20 +entityUncommonWeight = 15 +entityRareWeight = 10 +entityEpicWeight = 5 diff --git a/config/skilltree-client.toml b/config/skilltree-client.toml new file mode 100644 index 0000000..3410f6a --- /dev/null +++ b/config/skilltree-client.toml @@ -0,0 +1,4 @@ +favorite_skills = [] +favorite_color_hex = "#42B0FF" +skill_tree_background_parallax = true + diff --git a/config/skilltree-common.toml b/config/skilltree-common.toml new file mode 100644 index 0000000..4334561 --- /dev/null +++ b/config/skilltree-common.toml @@ -0,0 +1,61 @@ + +["Skill Points"] + #Range: 1 ~ 1000 + "Maximum skill points" = 85 + #Range: > 0 + "First skill point cost" = 15 + #Range: > 0 + "Last skill point cost" = 1400 + #You can set cost for each skill point instead + "Use skill points costs array" = false + #This list's size must be equal to maximum skill points. + "Levelup costs" = [15, 19, 24, 30, 37, 45, 54, 64, 75, 87, 100, 114, 129, 145, 162, 180, 199, 219, 240, 262, 285, 309, 334, 360, 387, 415, 444, 474, 505, 537, 570, 604, 639, 675, 712, 750, 789, 829, 870, 912, 955, 999, 1044, 1090, 1137, 1185, 1234, 1284, 1335, 1387, 1440, 1494, 1549, 1605, 1662, 1720, 1779, 1839, 1900, 1962, 2025, 2089, 2154, 2220, 2287, 2355, 2424, 2494, 2565, 2637, 2710, 2784, 2859, 2935, 3012, 3090, 3169, 3249, 3330, 3412, 3495, 3579, 3664, 3750, 3837] + #Disabling this will remove chat messages when you gain a skill point. + "Show chat messages" = true + #Warning: If you disable this make sure you make alternative way of getting skill points. + "Enable exprerience exchange for skill points" = true + +[Gems] + #Range: 0.0 ~ 1.0 + "Base drop chance" = 0.15 + +[Equipment] + #Range: 0 ~ 4 + "Default Helmets Sockets" = 1 + #Range: 0 ~ 4 + "Default Chestplates Sockets" = 1 + #Range: 0 ~ 4 + "Default Leggings Sockets" = 0 + #Range: 0 ~ 4 + "Default Boots Sockets" = 1 + #Range: 0 ~ 4 + "Default Weapons Sockets" = 1 + #Range: 0 ~ 4 + "Default Shields Sockets" = 1 + #Range: 0 ~ 4 + "Default Rings Sockets" = 1 + #Range: 0 ~ 4 + "Default Necklaces Sockets" = 1 + #You can remove sockets from items here + #Example: Blacklisting specific items: ["minecraft:diamond_hoe", "minecraft:golden_hoe"] + #Example: Blacklisting whole mod: [":*"] + #Example: Blacklisting all items: ["*:*"] + "IDs of items that shouldn't have sockets" = [] + +#You can force items from other mods into equipmentType categories here +["Amnesia Scroll"] + #How much levels (percentage) player lose using amnesia scroll + #Range: 0.0 ~ 1.0 + "Amnesia scroll penalty" = 0.2 + "Drop amnesia scrolls from the Ender Dragon" = true + +[Experience] + #Range: 0.0 ~ 1.0 + "Grindstone experience multiplier" = 0.1 + +[Mixtures] + #Range: 0.0 ~ 2.0 + "Effects duration multiplier" = 1.0 + #Range: 0.0 ~ 2.0 + "Effects strength multiplier" = 1.0 + diff --git a/config/skinlayers.json b/config/skinlayers.json new file mode 100644 index 0000000..ff84d7a --- /dev/null +++ b/config/skinlayers.json @@ -0,0 +1,18 @@ +{ + "enableHat": true, + "enableJacket": true, + "enableLeftSleeve": true, + "enableRightSleeve": true, + "enableLeftPants": true, + "enableRightPants": true, + "baseVoxelSize": 1.15, + "bodyVoxelWidthSize": 1.05, + "headVoxelSize": 1.18, + "renderDistanceLOD": 14, + "enableSkulls": true, + "enableSkullsItems": true, + "skullVoxelSize": 1.1, + "fastRender": true, + "compatibilityMode": false, + "firstPersonPixelScaling": 1.1 +} \ No newline at end of file diff --git a/config/smallships-client.toml b/config/smallships-client.toml new file mode 100644 index 0000000..b3cbdac --- /dev/null +++ b/config/smallships-client.toml @@ -0,0 +1,32 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 2 + +# This category holds configs that define ship behaviour. +[Ship] + #Set the speed indication: 0 = km/h, 1 = m/s, 2 = knots, 3 = mph + shipModSpeedUnit = 0 + + #This category holds configs that define general ship behaviour. + [Ship.General] + + #General camera settings for ships. + [Ship.General.Camera] + #Automatically enable third person camera when entering a ship. + shipGeneralCameraAutoThirdPerson = true + + #Zoom camera settings for third person view in ships. + [Ship.General.Camera.Zoom] + #Generally enable the zooming feature. + shipGeneralCameraZoomEnable = true + #Set maximum distance of zoom (value must be smaller than or equal to 50.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMax = 20.0 + #Set minimum distance of zoom (value must be bigger than or equal to 1.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMin = 5.0 + +# This category holds configs that define general mod settings. +[General] + #Enable smallships creative tab in the creative inventory (only takes effect after restart). + smallshipsItemGroupEnable = false + diff --git a/config/smallships-common.toml b/config/smallships-common.toml new file mode 100644 index 0000000..973673c --- /dev/null +++ b/config/smallships-common.toml @@ -0,0 +1,169 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 5 + +# This category holds configs that define ship behaviour. +[Ship] + + #This category holds configs that define general ship behaviour. + [Ship.General] + #The cool-down for sails when increasing or decreasing sail state. + #Range: 0 ~ 1000 + shipGeneralSailCooldown = 30 + #The damage that is delivered to entities on collision with a cruising ship. Set 0 to disable feature. + #Range: 0.0 ~ 100.0 + shipGeneralCollisionDamage = 7.5 + #Should entities be pushed on collision with a cruising ship? + shipGeneralCollisionKnockBack = true + #Should the ship item be dropped when the ship is fully damaged? + shipGeneralDoItemDrop = true + + #General speed modifiers for ships. + [Ship.General.Modifier] + #Maximum speed penalty for a filled container in percent. + #Range: -500.0 ~ 500.0 + shipGeneralContainerModifier = 10.0 + #Speed penalty per cannon in percent. + #Range: -500.0 ~ 500.0 + shipGeneralCannonModifier = 2.5 + #Speed bonus for a paddle ship while paddling in percent. + #Range: -500.0 ~ 500.0 + shipGeneralPaddlingModifier = 35.0 + #Maximum speed bonus and penalty depending on the ship biome type in percent. + #Range: 0.0 ~ 500.0 + shipGeneralBiomeModifier = 20.0 + #Damage reduction per shield in percent. + #Range: -500.0 ~ 500.0 + shipGeneralShieldDamageReduction = 3.0 + #Time in minutes in which sunken ships will despawn. + #Range: 0.0 ~ 600.0 + shipGeneralDespawnTimeSunken = 15.0 + #Entities in this list won't be able to mount a ship, for example: ["minecraft:creeper", "minecraft:sheep", ...] + mountBlackList = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:wither", "minecraft:ghast", "minecraft:warden", "minecraft:ravager", "alexmobs:cachalot_whale"] + #Amount of damage a cannonball does on hit. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDamage = 25.0 + #Amount of destruction a cannonball does when hit the ground. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDestruction = 1.0 + + #This category holds configs that define behaviour of fleeing water animals. + [Ship.General."Fleeing Water Animals"] + #Range: 0.0 ~ 100.0 + waterAnimalFleeRadius = 15.0 + #Range: 0.0 ~ 100.0 + waterAnimalFleeSpeed = 1.5 + #Range: 0.0 ~ 100.0 + waterAnimalFleeDistance = 10.0 + + [Ship.Cog] + + #Default attributes for the Cog. Speed in km/h, Health in default mc health points + [Ship.Cog.Attributes] + #Range: 1.0 ~ 10000.0 + shipAttributeCogMaxHealth = 300.0 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxRotationSpeed = 4.5 + #Range: 0.0 ~ 100.0 + shipAttributeCogAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeCogRotationAcceleration = 0.7 + + #Default configs for the container of the Cog. + [Ship.Cog.Container] + #Set container size for the Cog (value must be divisible by 9 and bigger than 0). + shipContainerCogContainerSize = 108 + + #Cog specific speed modifiers. + [Ship.Cog.Modifier] + #Specify biome type for the Cog. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierCogBiome = "COLD" + + [Ship.Brigg] + + #Default attributes for the Brigg. Speed in km/h, Health in default mc health points + [Ship.Brigg.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeBriggMaxHealth = 450.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxSpeed = 35.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxRotationSpeed = 4.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeBriggRotationAcceleration = 0.55 + + #Default configs for the container of the Brigg. + [Ship.Brigg.Container] + #Set container size for the Brigg (value must be divisible by 9 and bigger than 0). + shipContainerBriggContainerSize = 162 + + #Brigg specific speed modifiers. + [Ship.Brigg.Modifier] + #Specify biome type for the Brigg. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierBriggBiome = "COLD" + + [Ship.Galley] + + #Default attributes for the Galley. Speed in km/h, Health in default mc health points + [Ship.Galley.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeGalleyMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyRotationAcceleration = 1.0 + + #Default configs for the container of the Galley. + [Ship.Galley.Container] + #Set container size for the Galley (value must be divisible by 9 and bigger than 0). + shipContainerGalleyContainerSize = 54 + + #Galley specific speed modifiers. + [Ship.Galley.Modifier] + #Specify biome type for the Galley. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierGalleyBiome = "WARM" + + [Ship.Drakkar] + + #Default attributes for the Drakkar. Speed in km/h, Health in default mc health points + [Ship.Drakkar.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeDrakkarMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarRotationAcceleration = 1.0 + + #Default configs for the container of the Drakkar. + [Ship.Drakkar.Container] + #Set container size for the Drakkar (value must be divisible by 9 and bigger than 0). + shipContainerDrakkarContainerSize = 54 + + #Drakkar specific speed modifiers. + [Ship.Drakkar.Modifier] + #Specify biome type for the Drakkar. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierDrakkarBiome = "COLD" + diff --git a/config/smarterfarmers-common.toml b/config/smarterfarmers-common.toml new file mode 100644 index 0000000..416d0ab --- /dev/null +++ b/config/smarterfarmers-common.toml @@ -0,0 +1,12 @@ + +[general] + #If true, villagers will pick up food items from the regardless of mob griefing gamerule. Needed since with mob griefing on they wont be able to breed. + pickup_food_override = true + #If true, villagers will eat food items they pick up. Eating food will heal them + eat_food = true + #Time for a farmer to harvest a crop once it reached its destination + #Range: 1 ~ 1000 + time_to_harvest = 40 + #If true, will render debug info for farmers. Only works in single player + debug_renderer = false + diff --git a/config/smoothboot.json b/config/smoothboot.json new file mode 100644 index 0000000..ee32868 --- /dev/null +++ b/config/smoothboot.json @@ -0,0 +1,14 @@ +{ + "threadCount": { + "bootstrap": 2, + "main": 1 + }, + "threadPriority": { + "game": 8, + "bootstrap": 3, + "main": 5, + "io": 3, + "integratedServer": 8, + "modLoading": 5 + } +} \ No newline at end of file diff --git a/config/smoothchunk.json b/config/smoothchunk.json new file mode 100644 index 0000000..d39a14a --- /dev/null +++ b/config/smoothchunk.json @@ -0,0 +1,18 @@ +{ + "chunkSaveDelay": { + "desc:": "Delay before a chunk is saved to disk, default: 300 seconds", + "chunkSaveDelay": 180 + }, + "chunkUnloadLimit": { + "desc:": "Maximum amount of chunks unloaded per tick, default: 20, vanilla:200", + "chunkUnloadLimit": 25 + }, + "disableProtoSave": { + "desc:": "Disables saving of protochunks(not fully generated chunks) to reduce saving lag. Default: true", + "disableProtoSave": true + }, + "debugLogging": { + "desc:": "Enables debug logging of how many chunks got saved in a tick. default: false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/smoothgui.json b/config/smoothgui.json new file mode 100644 index 0000000..1cbeabc --- /dev/null +++ b/config/smoothgui.json @@ -0,0 +1,8 @@ +{ + "enableAnimation": true, + "animationTime": 220, + "animationScale": 1.0, + "fadeBackground": true, + "animationStyle": "BACK", + "animationDirection": "DOWN" +} \ No newline at end of file diff --git a/config/snad-common.toml b/config/snad-common.toml new file mode 100644 index 0000000..9e83687 --- /dev/null +++ b/config/snad-common.toml @@ -0,0 +1,5 @@ +#The multiplier for movement speed on Suol Snad +"Movement Speed" = 1.4 +#The multiplier for the chance of growth +"Growth Speed" = 2 + diff --git a/config/snowrealmagic-client.yaml b/config/snowrealmagic-client.yaml new file mode 100644 index 0000000..1c62924 --- /dev/null +++ b/config/snowrealmagic-client.yaml @@ -0,0 +1,4 @@ +# Use Cloth Config mod for the descriptions. +--- +particleThroughLeaves: true +snowVariants: true diff --git a/config/snowrealmagic-common.yaml b/config/snowrealmagic-common.yaml new file mode 100644 index 0000000..189706d --- /dev/null +++ b/config/snowrealmagic-common.yaml @@ -0,0 +1,32 @@ +# Use Cloth Config mod for the descriptions. +--- +snowGravity: true +snowMakingIce: true +snowAlwaysReplaceable: true +thinnerBoundingBox: true +snowNeverMelt: false +snowSpawnMaxLightLevel: 9 +snowPersistMaxLightLevel: 11 +snowReduceFallDamage: true +sustainGrassIfLayerMoreThanOne: true +sneakSnowball: true +fancySnowOnUpperSlab: true +mobSpawningMaxLayers: 8 +snow-cover: + replaceWorldgenFeature: true + placeSnowOnBlock: true + retainOriginalBlocks: false + placeNaturally: true +accumulation: + naturalMelting: true + snowAndIceMeltInWarmBiomes: false + maxLayers: 8 + accumulatesDuringSnowstorm: true + accumulatesDuringSnowfall: false +integration: + accumulationWinterOnly: false +debug: + weatherTickSlowness: 16 + preventWorldgenLogSpam: true + mobSpawningCommand: false + skipSnowLoggingMushroom: true diff --git a/config/snowundertrees-common.toml b/config/snowundertrees-common.toml new file mode 100644 index 0000000..ae4bf90 --- /dev/null +++ b/config/snowundertrees-common.toml @@ -0,0 +1,8 @@ +#Set this to false to disable snow under trees when first generating chunks. +enable_biome_feature = true +#Set this to false to disable snow under trees when it's snowing. +enable_when_snowing = true +#Add biome IDs here to exempt biomes from being affected by the mod (surrounded by ""). You can find the biome ID of the biome you're currently in on the F3 screen. +#For example, the biome ID of the plains biome looks like this: minecraft:plains +filtered_biomes = [] + diff --git a/config/sodium-extra-options.json b/config/sodium-extra-options.json new file mode 100644 index 0000000..1926506 --- /dev/null +++ b/config/sodium-extra-options.json @@ -0,0 +1,64 @@ +{ + "animation_settings": { + "animation": true, + "water": true, + "lava": true, + "fire": true, + "portal": true, + "block_animations": true, + "sculk_sensor": true + }, + "particle_settings": { + "particles": true, + "rain_splash": true, + "block_break": true, + "block_breaking": true, + "other": {} + }, + "detail_settings": { + "sky": true, + "sun_moon": true, + "stars": true, + "rain_snow": true, + "biome_colors": true, + "sky_colors": true + }, + "render_settings": { + "fog_type": "DEFAULT", + "fog_distance": 0, + "fog_start": 100, + "multi_dimension_fog_control": false, + "dimensionFogDistance": { + "minecraft:overworld": 0 + }, + "light_updates": true, + "item_frame": true, + "armor_stand": true, + "painting": true, + "piston": true, + "beacon_beam": true, + "enchanting_table_book": true, + "item_frame_name_tag": true, + "player_name_tag": true + }, + "extra_settings": { + "overlay_corner": "TOP_LEFT", + "text_contrast": "NONE", + "show_fps": false, + "show_f_p_s_extended": true, + "show_coords": false, + "reduce_resolution_on_mac": false, + "use_adaptive_sync": false, + "cloud_height": 192, + "cloud_distance": 150, + "toasts": true, + "advancement_toast": true, + "recipe_toast": true, + "system_toast": true, + "tutorial_toast": true, + "instant_sneak": false, + "prevent_shaders": false, + "steady_debug_hud": true, + "steady_debug_hud_refresh_interval": 2 + } +} \ No newline at end of file diff --git a/config/sodium-extra.properties b/config/sodium-extra.properties new file mode 100644 index 0000000..dde224b --- /dev/null +++ b/config/sodium-extra.properties @@ -0,0 +1,7 @@ +# This is the configuration file for Sodium Extra. +# This file exists for debugging purposes and should not be configured otherwise. +# +# You can find information on editing this file and all the available options here: +# https://github.com/FlashyReese/sodium-extra-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/sodiumdynamiclights-client.toml b/config/sodiumdynamiclights-client.toml new file mode 100644 index 0000000..f152212 --- /dev/null +++ b/config/sodiumdynamiclights-client.toml @@ -0,0 +1,20 @@ + +[sodiumdynamiclights] + #Lighting mode + #Allowed Values: OFF, SLOW, FAST, REALTIME + mode = "FAST" + #Enable entities light source. + entities = false + #Enable first-person player light source. + self = true + #Enable block entities light source. + block_entities = false + #Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water. + water_sensitive_check = true + #TNT lighting mode. May be off, simple or fancy. + #Allowed Values: OFF, SIMPLE, FANCY + tnt = "OFF" + #Creeper lighting mode. May be off, simple or fancy. + #Allowed Values: OFF, SIMPLE, FANCY + creeper = "OFF" + diff --git a/config/sodiumextras-client.toml b/config/sodiumextras-client.toml new file mode 100644 index 0000000..b93c54f --- /dev/null +++ b/config/sodiumextras-client.toml @@ -0,0 +1,131 @@ + +[embeddiumextras] + + [embeddiumextras.general] + #Set Fullscreen mode + #Borderless let you change between screens more faster and move your mouse across monitors + #Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN + fullscreen = "FULLSCREEN" + #Configure FPS Display mode + #Complete mode gives you min FPS count and average count + #Allowed Values: OFF, SIMPLE, ADVANCED + fpsDisplay = "SIMPLE" + #Configure FPS Display gravity + #Places counter on specified corner of your screen + #Allowed Values: LEFT, CENTER, RIGHT + fpsDisplayGravity = "LEFT" + #Shows GPU and memory usage onto FPS display + #Allowed Values: OFF, ON, GPU, RAM + fpsDisplaySystem = "OFF" + #Configure FPS Display margin + #Give some space between corner and text + #Range: 0 ~ 48 + fpsDisplayMargin = 12 + #Toggle FPS Display shadow + #In case sometimes you can't see the text + fpsDisplayShadow = false + + [embeddiumextras.quality] + #Toggle fog feature + #Fog was a vanilla feature, toggling off may increases performance + fog = true + #Raise clouds + #Modify clouds height perfect for a adaptative world experience + #Range: 0 ~ 512 + cloudsHeight = 192 + #Chunks fade in speed + #This option doesn't affect performance, just changes speed + #Allowed Values: OFF, FAST, SLOW + chunkFadeSpeed = "SLOW" + + [embeddiumextras.quality.darkness] + #Configure Darkness Mode + #Each config changes what is considered 'true darkness' + #Allowed Values: PITCH_BLACK, TOTAL_DARKNESS, DARK, DIM, OFF + mode = "OFF" + #Toggle Darkness on Overworld dimension + enableOnOverworld = true + #Toggle Darkness on Nether dimension + enableOnNether = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + netherFogBright = 0.5 + #Toggle Darkness on End dimension + enableOnEnd = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + endFogBright = 0.5 + #Toggle Darkness default mode for modded dimensions + valueByDefault = false + #List of all dimensions to use True Darkness + #This option overrides 'valueByDefault' state + dimensionWhitelist = [] + #Toggle darkness when dimension has no SkyLight + enableOnNoSkyLight = false + #Disables all bright sources of darkness like moon or fog + #Only affects darkness effect + enableBlockLightOnly = false + #Toggles if moon phases affects darkness in the overworld + affectedByMoonPhase = true + #Configure max moon brightness level with darkness + #Range: 0.0 ~ 1.0 + fullMoonBright = 0.25 + #Configure min moon brightness level with darkness + #Range: 0.0 ~ 1.0 + newMoonBright = 0.0 + + [embeddiumextras.performance] + #Toggles JREI item rendering until searching + #Increases performance a little bit and cleans your screen when you don't want to use it + hideJREI = false + #Toggles Minecraft Fonts shadows + #Depending of the case may increase performance + #Gives a flat style text + fontShadows = true + + [embeddiumextras.performance.distanceCulling] + + [embeddiumextras.performance.distanceCulling.tileEntities] + #Toggles distance culling for Block Entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull Block entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 2304 + #Configure vertical max distance before cull Block entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 24 + #List of all Block Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:chest" - Ignores chests only + #Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2 + whitelist = ["waterframes:*"] + + [embeddiumextras.performance.distanceCulling.entities] + #Toggles distance culling for entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 2304 + #Configure vertical max distance before cull entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 24 + #List of all Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:bat" - Ignores bats only + #Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod + whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"] + + [embeddiumextras.others] + #Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen + #Allowed Values: ATTACH, REPLACE, OFF + borderlessAttachModeOnF11 = "OFF" + #Toggles fast language reload + #Embeddedt points it maybe cause troubles to JEI, so ¿why not add it as a toggleable option? + fastLanguageReload = true + diff --git a/config/solcarrot-client.toml b/config/solcarrot-client.toml new file mode 100644 index 0000000..b953c9a --- /dev/null +++ b/config/solcarrot-client.toml @@ -0,0 +1,17 @@ + +["milestone celebration"] + #If true, reaching a new milestone plays a ding sound. + shouldPlayMilestoneSounds = true + #If true, trying a new food spawns particles. + shouldSpawnIntermediateParticles = false + #If true, reaching a new milestone spawns particles. + shouldSpawnMilestoneParticles = false + +[miscellaneous] + #If true, foods indicate in their tooltips whether or not they have been eaten. + isFoodTooltipEnabled = true + #Whether the messages notifying you of reaching new milestones should be displayed above the hotbar or in chat. + shouldShowProgressAboveHotbar = true + #If true, the food book also lists foods that you haven't eaten, in addition to the ones you have. + shouldShowUneatenFoods = true + diff --git a/config/solonion-client.json b/config/solonion-client.json new file mode 100644 index 0000000..d748d3a --- /dev/null +++ b/config/solonion-client.json @@ -0,0 +1,6 @@ +{ + "isFoodTooltipEnabled": true, + "showDiversityChangeInTooltip": true, + "showDisabledTooltip": true, + "shouldShowInactiveBenefits": true +} \ No newline at end of file diff --git a/config/solonion.json b/config/solonion.json new file mode 100644 index 0000000..8ff679f --- /dev/null +++ b/config/solonion.json @@ -0,0 +1,64 @@ +{ + "foodItems": { + "entries": [], + "isWhitelist": false + }, + "trackCount": 32, + "resetOnDeath": true, + "limitProgressionToSurvival": false, + "minFoodsToActivate": 0, + "benefits": [ + { + "threshold": 3, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:2.0d}" + }, + { + "threshold": 5, + "benefit": "{key:\"minecraft:strength\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 7, + "benefit": "{key:\"minecraft:regeneration\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 10, + "benefit": "{key:\"minecraft:speed\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 13, + "benefit": "{key:\"minecraft:generic.armor_toughness\",op:0,type:\"att\",val:2.0d}" + }, + { + "threshold": 18, + "benefit": "{key:\"minecraft:strength\",type:\"eff\",val:1.0d}" + }, + { + "threshold": 25, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:4.0d}" + }, + { + "threshold": 31, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:6.0d}" + } + ], + "shouldExcludedCount": true, + "complexityStandardNutrition": 5, + "complexityStandardSaturation": 0.6, + "complexityBenefitEffectModifier": 0.2, + "complexityNeutralEffectModifier": 0, + "complexityHarmEffectModifier": -0.2, + "foodDiversity": [ + { + "ingredient": "{id:\"item\",item:\"minecraft:golden_carrot\"}", + "diversity": 2 + }, + { + "ingredient": "{id:\"item\",item:\"minecraft:golden_apple\"}", + "diversity": 2 + }, + { + "ingredient": "{id:\"item\",item:\"minecraft:enchanted_golden_apple\"}", + "diversity": 5 + } + ] +} \ No newline at end of file diff --git a/config/sophisticatedbackpacks-common.toml b/config/sophisticatedbackpacks-common.toml new file mode 100644 index 0000000..06712ea --- /dev/null +++ b/config/sophisticatedbackpacks-common.toml @@ -0,0 +1,6 @@ + +#Common Settings +[common] + #Turns on/off loot added to various vanilla chest loot tables + chestLootEnabled = true + diff --git a/config/sophisticatedcore-client.toml b/config/sophisticatedcore-client.toml new file mode 100644 index 0000000..30cd4d3 --- /dev/null +++ b/config/sophisticatedcore-client.toml @@ -0,0 +1,11 @@ + +#Client Settings +[client] + #Positions where sort buttons can display to help with conflicts with controls from other mods + #Allowed Values: TITLE_LINE_RIGHT, BELOW_UPGRADES, BELOW_UPGRADE_TABS, HIDDEN + sortButtonsPosition = "TITLE_LINE_RIGHT" + #Whether click sound should play when custom buttons are clicked in gui + playButtonSound = true + #Whether scrolling in inventory should be handled by Mouse Tweaks mod if it is in the pack + mouseTweaksScrollEnabled = true + diff --git a/config/sophisticatedcore-common.toml b/config/sophisticatedcore-common.toml new file mode 100644 index 0000000..396ed01 --- /dev/null +++ b/config/sophisticatedcore-common.toml @@ -0,0 +1,6 @@ + +#Common Settings +[common] + #Disable / enable any items here (disables their recipes) + enabledItems = ["sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|true", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:compacting_upgrade|true", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:advanced_alchemy_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:inception_upgrade|true", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:smithing_upgrade|true", "sophisticatedbackpacks:anvil_upgrade|true", "sophisticatedbackpacks:xp_pump_upgrade|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smelting_upgrade|true", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|true", "sophisticatedbackpacks:stack_upgrade_tier_2|true", "sophisticatedbackpacks:stack_upgrade_tier_3|true", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:stack_upgrade_omega_tier|true", "sophisticatedbackpacks:stack_upgrade_starter_tier|true", "sophisticatedbackpacks:auto_blasting_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|true", "sophisticatedbackpacks:battery_upgrade|true", "sophisticatedbackpacks:mob_catcher_upgrade|true", "sophisticatedbackpacks:advanced_pump_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:alchemy_upgrade|true", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_jukebox_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|true", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:advanced_mob_catcher_upgrade|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:copper_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:stack_downgrade_tier_2|true", "sophisticatedbackpacks:stack_downgrade_tier_1|true", "sophisticatedbackpacks:stack_downgrade_tier_3|true", "sophisticatedbackpacks:stonecutter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|true", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:pump_upgrade|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:feeding_upgrade|true", "sophisticatedbackpacks:netherite_backpack|true", "sophisticatedbackpacks:infinity_upgrade|true", "sophisticatedbackpacks:survival_infinity_upgrade|true"] + diff --git a/config/sophisticateditemactions-client.toml b/config/sophisticateditemactions-client.toml new file mode 100644 index 0000000..2c40944 --- /dev/null +++ b/config/sophisticateditemactions-client.toml @@ -0,0 +1,41 @@ + +#Client-side Settings +[client] + + #Client-only discoverability nudges for highlight, restock and deposit keybind actions + [client.discoveryNudges] + #Master toggle for discovery nudges + enabled = true + #Global cooldown between any two nudges in ticks (default: 2 hours) + #Range: > 0 + globalCooldownTicks = 6000 + #Maximum total number of nudges shown during one world connection session + #Range: > 0 + maxNudgesPerSession = 3 + #Number of storage opens without transfers before showing highlight hint (-1 disables) + #Range: > -1 + highlightActionThreshold = 4 + #Number of storage sessions with transfer from storage to inventory before showing restock hint (-1 disables) + #Range: > -1 + restockActionThreshold = 3 + #Number of storage sessions with transfer from inventory to storage before showing deposit hint (-1 disables) + #Range: > -1 + depositActionThreshold = 3 + #Whether highlight hint can be shown + highlightEnabled = true + #Whether restock hint can be shown + restockEnabled = true + #Whether deposit hint can be shown + depositEnabled = true + #How often to evaluate nudge state in ticks + #Range: > 1 + checkIntervalTicks = 40 + #Logs nudge state transitions to debug log + debugLogging = false + #Cooldown between repeated nudges or successful uses of the same action in ticks (default: 4 hours) + #Range: > 0 + actionCooldownTicks = 288000 + #Maximum successful uses of one action before its nudge stops appearing + #Range: > 0 + maxSuccessfulUsesBeforeSuppressing = 5 + diff --git a/config/sophisticatedstorage-client.toml b/config/sophisticatedstorage-client.toml new file mode 100644 index 0000000..b6a7b4b --- /dev/null +++ b/config/sophisticatedstorage-client.toml @@ -0,0 +1,8 @@ + +#Client-side Settings +[client] + #Determines whether JEI and creative tab will show tinted storage items for iron and higher tiers. Can help with easily removing many of these items from there. + showHigherTierTintedVariants = true + #Determines whether JEI and creative tab will show only one wood variant of each storage item tier. Makes creative tab and JEI lists smaller. + showSingleWoodVariantOnly = false + diff --git a/config/sophisticatedstorage-common.toml b/config/sophisticatedstorage-common.toml new file mode 100644 index 0000000..2f190cc --- /dev/null +++ b/config/sophisticatedstorage-common.toml @@ -0,0 +1,6 @@ + +#Common Settings +[common] + #Determines whether chests / barrels are always dropped as packed with their contents when broken without the need to use packing tape + dropPacked = false + diff --git a/config/sosorgans-common.toml b/config/sosorgans-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/config/sosorgans-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/soundofrain-client.toml b/config/soundofrain-client.toml new file mode 100644 index 0000000..ba5de48 --- /dev/null +++ b/config/soundofrain-client.toml @@ -0,0 +1,72 @@ + +#Sound of Rain Configuration +#20 ticks = 1 second = 1000ms +["sound behaviour"] + #The radius in blocks that gets checked for blocks. + #Range: 1 ~ 32 + soundRadius = 15 + #Interval in ticks for checking for blocks, starts at the player and goes out in an expanding circle. + #Range: 1 ~ 200 + soundInterval = 2 + #Amount of blocks that will be playing rain sounds per layer. + #Range: 1 ~ 64 + maxSoundsPerCycle = 2 + #shows which blocks get scanned, play a sound and provides logs for debugging. + debugShowSoundBlock = false + #Config version - do not modify + configVersion = "0.5.0" + + ["sound behaviour"."sound chances"] + #Chance for amethyst and lava blocks to chime or sizzle. + #Range: 0.0 ~ 1.0 + amethystChance = 0.1 + #Range: 0.0 ~ 1.0 + lavaChance = 0.1 + + ["sound behaviour"."sound options"] + #Enable or disable sounds. Sand sounds awfull, so its disabled by default + EnableThunderSounds = true + EnableAmethystRain = true + EnableFabricRain = true + EnableFoliageRain = true + EnableGlassRain = true + EnableMetalRain = true + EnableSandRain = false + EnableWoodRain = true + EnableWaterRain = true + EnableLavaRain = true + + ["sound behaviour"."material rain sound blocks"] + #you can add block id's and tags here. Some blocks are backed by their sound types + #Tags/Id's for Amethyst like blocks + amethystTags = [""] + amethystBlocks = [""] + #Tags/Id's for Fabric blocks + fabricTags = ["#minecraft:wool", "#minecraft:wool_carpet", "#minecraft:beds", "#minecraft:banners"] + fabricBlocks = [""] + #Tags/Id's for Foliage blocks + foliageTags = ["#minecraft:leaves", "#minecraft:flowers"] + foliageBlocks = [""] + #Tags/Id's for Glass blocks + glassTags = ["#forge:glass", "#forge:glass_panes"] + glassBlocks = [""] + #Tags/Id's for Metal blocks + metalTags = ["#minecraft:beacon_base_blocks", "#minecraft:anvil"] + metalBlocks = ["minecraft:cauldron", "minecraft:hopper"] + #Tags/Id's for Sand blocks + sandTags = ["#minecraft:sand"] + sandBlocks = [""] + #Tags/Id's for Wood blocks + woodTags = ["#minecraft:logs", "#minecraft:wooden_stairs", "#minecraft:planks", "#minecraft:wooden_slabs", "#minecraft:wooden_fences", "#minecraft:wooden_doors", "#minecraft:wooden_trapdoors", "#minecraft:wooden_pressure_plates", "#minecraft:wooden_buttons"] + woodBlocks = [""] + + ["sound behaviour"."The blacklist"] + #Blacklist entire mods by their namespace (e.g., "modname") + blacklistedMods = ["copycats"] + #Blacklist entire tags by their ID (e.g., "#minecraft:leaves") + blacklistedTags = [""] + #Blacklist specific block IDs (e.g., "minecraft:dirt" + blacklistedBlocks = [""] + #Blacklist blocks by name pattern - blocks containing these strings will be skipped (e.g., "terracotta" + blacklistedBlockNamePatterns = ["Copycat"] + diff --git a/config/sounds/chat.json b/config/sounds/chat.json new file mode 100644 index 0000000..c43dc64 --- /dev/null +++ b/config/sounds/chat.json @@ -0,0 +1,29 @@ +{ + "typingSoundEffect": { + "shouldPlay": true, + "pitch": 1.6, + "volume": 0.4, + "id": "typing", + "soundEvent": "minecraft:block.note_block.hat" + }, + "messageSoundEffect": { + "shouldPlay": true, + "pitch": 2.0, + "volume": 0.8, + "id": "message", + "soundEvent": "minecraft:block.note_block.hat" + }, + "mentionSoundEffect": { + "shouldPlay": true, + "pitch": 1.8, + "volume": 0.9, + "id": "mention", + "soundEvent": "minecraft:block.note_block.chime" + }, + "mentionKeywords": [ + "@_zombieguy" + ], + "ignoreSystemChats": false, + "enableChatSoundCooldown": false, + "chatSoundCooldown": 0.5 +} \ No newline at end of file diff --git a/config/sounds/event.json b/config/sounds/event.json new file mode 100644 index 0000000..86850fd --- /dev/null +++ b/config/sounds/event.json @@ -0,0 +1,31 @@ +{ + "ignoreSilencedStatusEffects": true, + "positiveStatusEffectGainSoundEffect": { + "shouldPlay": true, + "pitch": 2.0, + "volume": 0.1, + "id": "positiveStatusEffectGain", + "soundEvent": "minecraft:item.trident.thunder" + }, + "negativeStatusEffectGainSoundEffect": { + "shouldPlay": true, + "pitch": 0.3, + "volume": 0.2, + "id": "negativeStatusEffectGain", + "soundEvent": "minecraft:entity.illusioner.mirror_move" + }, + "positiveStatusEffectLoseSoundEffect": { + "shouldPlay": true, + "pitch": 0.5, + "volume": 0.1, + "id": "positiveStatusEffectLose", + "soundEvent": "minecraft:item.trident.riptide_1" + }, + "negativeStatusEffectLoseSoundEffect": { + "shouldPlay": true, + "pitch": 0.5, + "volume": 0.1, + "id": "negativeStatusEffectLose", + "soundEvent": "minecraft:item.trident.riptide_1" + } +} \ No newline at end of file diff --git a/config/sounds/mod_utils.json b/config/sounds/mod_utils.json new file mode 100644 index 0000000..767bfc0 --- /dev/null +++ b/config/sounds/mod_utils.json @@ -0,0 +1,3 @@ +{ + "hideSoundsButtonInSoundMenu": false +} \ No newline at end of file diff --git a/config/sounds/ui.json b/config/sounds/ui.json new file mode 100644 index 0000000..2b1537c --- /dev/null +++ b/config/sounds/ui.json @@ -0,0 +1,92 @@ +{ + "hotbarScrollSoundEffect": { + "pitch": 1.8, + "volume": 0.2, + "enabledDynamic": true, + "id": "hotbarScroll", + "soundEvent": "minecraft:block.note_block.hat", + "shouldPlay": true + }, + "hotbarPickSoundEffect": { + "pitch": 1.8, + "volume": 0.2, + "enabledDynamic": true, + "id": "hotbarPick", + "soundEvent": "minecraft:block.note_block.hat", + "shouldPlay": true + }, + "inventoryOpenSoundEffect": { + "pitch": 2.0, + "volume": 0.5, + "enabledDynamic": true, + "id": "inventoryOpen", + "soundEvent": "minecraft:ui.toast.in", + "shouldPlay": true + }, + "inventoryCloseSoundEffect": { + "pitch": 2.0, + "volume": 0.5, + "enabledDynamic": false, + "id": "inventoryClose", + "soundEvent": "minecraft:ui.toast.out", + "shouldPlay": true + }, + "inventoryScrollSoundEffect": { + "shouldPlay": true, + "pitch": 1.8, + "volume": 0.2, + "id": "inventoryScroll", + "soundEvent": "minecraft:block.note_block.hat" + }, + "inventoryTypingSoundEffect": { + "shouldPlay": true, + "pitch": 1.6, + "volume": 0.4, + "id": "inventoryTyping", + "soundEvent": "minecraft:block.note_block.hat" + }, + "ignoreEmptyInventorySlots": false, + "itemDropSoundEffect": { + "pitch": 1.5, + "volume": 0.4, + "enabledDynamic": true, + "id": "itemDrop", + "soundEvent": "minecraft:block.dispenser.launch", + "shouldPlay": true + }, + "itemCopySoundEffect": { + "pitch": 2.0, + "volume": 0.2, + "enabledDynamic": true, + "id": "itemCopy", + "soundEvent": "minecraft:block.fire.extinguish", + "shouldPlay": true + }, + "itemDeleteSoundEffect": { + "pitch": 1.6, + "volume": 0.2, + "enabledDynamic": true, + "id": "itemDelete", + "soundEvent": "minecraft:block.fire.extinguish", + "shouldPlay": true + }, + "itemDragSoundEffect": { + "pitch": 1.6, + "volume": 0.4, + "enabledDynamic": true, + "id": "itemDrag", + "soundEvent": "minecraft:block.stone.hit", + "shouldPlay": true + }, + "itemClickSoundEffect": { + "pitch": 2.0, + "volume": 0.4, + "enabledDynamic": true, + "id": "itemPick", + "soundEvent": "minecraft:block.stone.hit", + "shouldPlay": true + }, + "ignoreEmptyHotbarSlots": false, + "itemSoundCooldown": 0.05, + "enableItemSoundCooldown": true +} \ No newline at end of file diff --git a/config/sounds/world.json b/config/sounds/world.json new file mode 100644 index 0000000..7b0fa49 --- /dev/null +++ b/config/sounds/world.json @@ -0,0 +1,68 @@ +{ + "repeaterUseSoundEffect": { + "pitch": 0.95, + "volume": 0.3, + "enabledDynamic": true, + "id": "repeaterUse", + "soundEvent": "minecraft:block.stone_button.click_on", + "shouldPlay": true + }, + "jukeboxUseSoundEffect": { + "shouldPlay": true, + "pitch": 0.8, + "volume": 0.75, + "id": "jukeboxUse", + "soundEvent": "minecraft:block.note_block.basedrum" + }, + "daylightDetectorUseSoundEffect": { + "shouldPlay": true, + "pitch": 0.8, + "volume": 0.45, + "id": "daylightDetectorUse", + "soundEvent": "minecraft:block.note_block.hat" + }, + "furnaceMinecartFuelSoundEffect": { + "shouldPlay": true, + "pitch": 1.9, + "volume": 0.2, + "id": "furnaceMinecartFuel", + "soundEvent": "minecraft:entity.creeper.hurt" + }, + "frostWalkerSoundEffect": { + "shouldPlay": true, + "pitch": 2.0, + "volume": 0.5, + "id": "frostWalker", + "soundEvent": "minecraft:block.powder_snow.fall" + }, + "leadSnappingSoundEffect": { + "shouldPlay": true, + "pitch": 1.0, + "volume": 0.5, + "id": "leadSnapping", + "soundEvent": "minecraft:entity.leash_knot.break" + }, + "bowPullSoundEffect": { + "shouldPlay": true, + "pitch": 1.0, + "volume": 0.25, + "id": "bowPull", + "soundEvent": "minecraft:item.crossbow.loading_middle" + }, + "plantPotFillSoundEffect": { + "shouldPlay": true, + "pitch": 0.5, + "volume": 0.4, + "id": "plantPotFill", + "soundEvent": "minecraft:block.grass.place" + }, + "cakeEatSoundEffect": { + "shouldPlay": true, + "pitch": 1.2, + "volume": 0.7, + "id": "cakeEat", + "soundEvent": "minecraft:entity.generic.eat" + }, + "enableEnderpearlVariety": true, + "disableBlocksEntirely": false +} diff --git a/config/sparsestructures.json5 b/config/sparsestructures.json5 new file mode 100644 index 0000000..d2179f2 --- /dev/null +++ b/config/sparsestructures.json5 @@ -0,0 +1,40 @@ +// ### THE MOD REQUIRES A RESTART OF THE GAME TO APPLY CHANGES ### +{ + // this is the main spread factor (default is 2) + // + // tips: a spread factor can be a decimal number (such as 1.5) + // a spread factor of 1 means all structure's placements are not modified (useful if you want to use only custom spread factors) + // a spread factor above 1 means all structures are rarer + // a spread factor below 1 means all structures are more common + // a spread factor of 0 disables all structures entirely + "spreadFactor": 1.5, + + // Some structure mods/datapacks do not specify a custom salt or use the same salt for all their structures, which might cause structure overlap. + // Enabling this is supposed to reduce this phenomenon, as all structure sets will have their own salt, hashed from their id. + // If unsure, leave this enabled. + "idBasedSalt": true, + + // this is a list of custom spread factors + "customSpreadFactors": [ + // example of the mansion being doubled in rarity (the mod's default) + { + "structure": "minecraft:mansion", + "factor": 2 + }, + // add the structures you want to modify in the format: + // (don't forget to remove "//", and use dots for decimal numbers) + // + // { + // "structure": "namespace:structure_name", + // "factor": number + // }, + // + // where "structure" is a structure_set or the name of a structure + // /!\ if you put the name of a structure, all structures in its set will be modified + // (example: "minecraft:village_plains" will modify all structures in the "villages" set) + // see https://minecraft.wiki/w/Tutorials/Custom_structures#Structure_Set for more info + // + // tip: you can dump all structure sets in a file by running the custom command /dumpstructuresets + // tip: the same spread factors rules apply here (set to 0 to disable said structure) + ] +} diff --git a/config/splendid_slimes.cfg b/config/splendid_slimes.cfg new file mode 100644 index 0000000..f15855d --- /dev/null +++ b/config/splendid_slimes.cfg @@ -0,0 +1,59 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# ꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦ Splendid Slimes Config! ꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷ + +# All entries in this config file are synced from server to client. + + +slimes { + I:"Slime Starving time"=24000 + + # Maximum happiness value for a Splendid Slime. + # Default: 1000; Range: [3 ~ 2147483147] + I:"Slime Max Happiness"=1000 + + # Minimum amount of happiness a Splendid Slime can have before being considered 'Happy'. + # Default: 600; Range: [0 ~ 2147483647] + I:"Slime Happy Threshold"=600 + + # Maximum amount of happiness a Splendid Slime can have before being considered 'Unhappy'. + # Default: 400; Range: [0 ~ 2147483647] + I:"Slime Unhappy Threshold"=400 + + # Maximum amount of happiness a Splendid Slime can have before being considered 'Furious'. + # Default: 200; Range: [0 ~ 2147483647] + I:"Slime Furious Threshold"=200 + + # How many ticks it takes for a Splendid Slime to try and perform Negative/Positive effects/commands. Setting this value too low may cause performance issues. + # Default: 800; Range: [20 ~ 2147483647] + I:"Slime Effect Cooldown"=800 + + # When true, Slimes will not get hungry or perform effects when their owner is offline. This can help prevent disasters on Multiplayer servers and has no effect in single player. + # Default: true + B:"Slime Owner Offline Check"=true + + # If true, Largo Slimes will turn into Tarrs after eating a 3rd Plort instead of just dying. + # Default: true + B:"Enable Tarrs"=true + + # How much a full slime's hunger will equate to + # Default: 24000; Range: [20 ~ 2147483647] + I:"Slime Hunger Amount"=24000 + + # If true, Tarrs will be persistent and turn back into previous slime when killed + # Default: false + B:"Enable Forgiving Tarrs"=false +} + + +machines { + # Time it takes for Splendid Slimes to incubate in Slime Incubator + # Default: 6000; Range: [1 ~ 2147483647] + I:"Slime Incubation Time"=6000 + + # Time it takes to craft items in a Plort Press + # Default: 1200; Range: [20 ~ 2147483637] + I:"Plort Pressing Time"=1200 +} + + diff --git a/config/stardew_fishing-client.toml b/config/stardew_fishing-client.toml new file mode 100644 index 0000000..8737627 --- /dev/null +++ b/config/stardew_fishing-client.toml @@ -0,0 +1,5 @@ +#When this setting is enabled, audio cues in the minigame will be louder and other sounds will be muted. +isolateAudioCues = false +#When this setting is enabled, the fishing minigame will pause the world in singleplayer. +pauseDuringMinigame = true + diff --git a/config/stonezone-common.toml b/config/stonezone-common.toml new file mode 100644 index 0000000..0a91286 --- /dev/null +++ b/config/stonezone-common.toml @@ -0,0 +1,7 @@ + +[general] + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs + creative_tab = true + #Allow the item_search or searchBar to be visible. + tab_item_search = true + diff --git a/config/stonezone-hazardous.toml b/config/stonezone-hazardous.toml new file mode 100644 index 0000000..e337ec0 --- /dev/null +++ b/config/stonezone-hazardous.toml @@ -0,0 +1,43 @@ + +# ═════════════════════════ Attention ═════════════════════════ +# Don't use this if you don't know what you are doing +# REASON: +# This file is a conditional registration. This is harmless in Singleplayer World, +# but harmful in SERVER because you won't able to join. +# +# ══════════════════════════ Detail ═══════════════════════════ +# This file allow you to exclude StoneTypes, MudType, EntrySet +# 1) You can find their names for StoneTypes, MudType, or EntrySet in `everycomp-entries.toml` +# 2) Leave a value empty to disable that rule. +# +# Module - is a Supported Mod, just a modId is sufficient. +# EntrySet - is a FurnitureType or DecorativeType that Stone-Zone is supporting via the mod. it is either block or item. +# +# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm - if you want to blacklist, then use everycomp-hazardous.toml +# +[stonetype] + #Exclude StoneType from all of Modules + # EXAMPLE: blacklist = [ + # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of StoneType containing "fireproof" from Forestry + # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of StoneType from Wood Mod for any Module + # "biomesoplenty:redwood" COMMENT: exclude redwood from Stone Mod for any module + # ] + # + blacklist = [] + +[mudtype] + #Exclude MudType from all of Modules + # The example is same as StoneType's + blacklist = [] + +[entryset] + #Exclude EntrySet from the module for All of StoneType or MudType + # This is only applied to Stone-Zone. + # EXAMPLE: blacklist = [ + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module + # ] + # + blacklist = [] + diff --git a/config/storagedrawers-client.toml b/config/storagedrawers-client.toml new file mode 100644 index 0000000..203ee86 --- /dev/null +++ b/config/storagedrawers-client.toml @@ -0,0 +1,30 @@ + +[General] + # Invert the behavior of the shift key for extracting items + invertShift = false + # Invert left and right click action on drawers + invertClick = false + +[Integration] + # Enable extended data display in WAILA if present + enableWaila = true + # Enable extended data display in The One Probe if present + enableTheOneProbe = true + +[Render] + # Distance in blocks before item labels stop rendering + labelRenderDistance = 20.0 + # + # Distance in blocks before quantity numbers stop rendering + quantityRenderDistance = 10.0 + # + # Distance in blocks before quantity numbers begin to fade out + quantityFadeDistance = 20.0 + + # Render settings specific to framed drawers. + [Render.FramedDrawers] + # + # Attempts to render 'non-opaque' materials on the translucent render pass. + # This may cause artifacting, particularly if using non-opaque materials on the 'front' face. + renderTranslucentMaterials = true + diff --git a/config/storagedrawers-common.toml b/config/storagedrawers-common.toml new file mode 100644 index 0000000..51055a5 --- /dev/null +++ b/config/storagedrawers-common.toml @@ -0,0 +1,93 @@ + +[General] + #The number of item stacks held in a basic unit of storage. + #1x1 drawers hold 8 units, 1x2 drawers hold 4 units, 2x2 drawers hold 2 units. + #Half-depth drawers hold half those amounts. + baseStackStorage = 4 + #Controller range defines how far away a drawer can be connected + #on X, Y, or Z planes. The default value of 50 gives the controller a very + #large range, but not beyond the chunk load distance. + #Range: 1 ~ 75 + controllerRange = 50 + #Whether redstone upgrades should emit an analog redstone signal, requiring + #the use of a comparator to read it. This will default to true starting with MC 1.21. + enableAnalogRedstone = false + enableUI = true + enableSidedInput = true + enableSidedOutput = true + enableExtraCompactingRules = true + #Allows drawers to be pulled from their block and inserted into another block. + enableDetachedDrawers = true + #Drawers track the capacity upgrades from the block they were taken from. + #Drawers can only be placed back into a block with the same or lower max capacity. + #Drawers can still only be inserted into a block with enough capacity for the items held. + forceDetachedDrawersMaxCapacityCheck = false + debugTrace = false + #List of rules in format "domain:item1, domain:item2, n". + #Creates a compacting drawer rule to convert 1 of item1 into n of item2. + compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"] + #If enabled, carrying filled drawers in your inventory gives slowness debuff, unless a Portability Upgrade is used. + heavyDrawers = false + #If enabled, players can lock drawer interactions to just themselves. + enablePersonalKey = true + +[StorageUpgrades] + #Storage upgrades multiply storage capacity by the given amount. + #When multiple storage upgrades are used together, their multipliers are added before being applied. + #Storage upgrades start at the level 2 multiplier. The resistance upgrade uses level 1. + level1Mult = 2 + level2Mult = 4 + level3Mult = 8 + level4Mult = 16 + level5Mult = 32 + #Storage upgrades increase capacity of drawers. + enableStorageUpgrade = true + #Fill level upgrades add fill bars to the faces of drawers. + enableFillLevelUpgrade = true + #Adds redstone output to drawers based on fill levels. + enableRedstoneUpgrade = true + #Renders drawer labels brighter than the surrounding environment would allow. + enableIlluminationUpgrade = true + #Causes drawers to accept but void compatible items when they are filled to capacity. + enableVoidUpgrade = true + #Balance upgrades allow same-item slots to balance out their amounts when items are + #added or removed from a lot. Works across networks when acting through a controller. + enableBalanceUpgrade = true + #Allows drawers with contents to be freely carried when heavy drawers is enabled. + enablePortabilityUpgrade = true + #Allows a single drawer to connect to a controller remotely. + enableRemoteUpgrade = true + #Allows a drawer and all drawers connected to it to connect to a controller remotely. + enableRemoteGroupUpgrade = true + +[Conversion] + # + #Each type will be combined with each material to create a set of whitelist entries. + #This is mainly a convenience for common ore-based materials. + oreTypeWhitelist = ["forge:storage_blocks", "forge:ingots", "forge:nuggets"] + # + #Each type will be combined with each material to create a set of whitelist entries. + #This is mainly a convenience for common ore-based materials. + oreMaterialWhitelist = ["aluminum", "constantan", "steel", "uranium", "invar", "tin", "lead", "silver", "platinum", "nickel", "osmium", "bronze", "electrum"] + # + #Each whitelist entry should be a fully namespaced tag, e.g. c:ingots/copper + tagWhitelist = [] + # + #Each blacklist entry should be a fully namespaced tag, e.g. c:ingots/copper. + #All items not on the whitelist are blacklisted implicitly. This can be used to exclude + #specific entries created from the ore whitelist set. + tagBlacklist = [] + # + #Each entry is a semicolon-separated list of fully-namespaced items. All items within the + #same entry are considered equivalent and convertible/interchangeable. + #Example: ["thermal:nickel_ore;immersiveengineering:ore_nickel"] + itemEquivalenceGroups = [] + +[Integration] + #When true, shows quantity as NxS + R (by stack size) rather than count + wailaStackRemainder = true + #When true, does not show current quantities unless quantify key was used + wailaRespectQuantifyKey = false + #Add CoFH Core specific features if the mod is loaded + enableCoFHIntegration = true + diff --git a/config/storagedrawers-common.v2.toml b/config/storagedrawers-common.v2.toml new file mode 100644 index 0000000..739ef0d --- /dev/null +++ b/config/storagedrawers-common.v2.toml @@ -0,0 +1,387 @@ + +# General mod configuration +[General] + # Enables excessive logging around certain parts of the mod. + # Can be ignored unless asked by the developer to enable. + debugTrace = false + # + # Whether blocks with UI components are allowed to open them. + # Disabling UI will restrict some mod functionality. + enableUI = true + # + # Whether to log actions such as adding rules or deny list entries. + # You may wish to disable this if you've added many such entries. + logStartupActivity = true + # + # Internal use to record what version the config file was first written with. + configVersion = 2 + +# Configuration around drawer storage blocks +[Drawers] + # A base value multiplied against the storage size of all drawer slots. + # Change this to uniformly increase all storage amounts + baseStackStorage = 1 + + # Configuration for individual drawer configurations. + # Units are the number of stacks a slot holds before the base stack storage value is multiplied. + [Drawers.Blocks] + + [Drawers.Blocks.FullStorage1x1] + unitsPerSlot = 32 + + [Drawers.Blocks.FullStorage1x2] + unitsPerSlot = 16 + + [Drawers.Blocks.FullStorage2x2] + unitsPerSlot = 8 + + [Drawers.Blocks.FullCompacting] + unitsPerSlot = 32 + + [Drawers.Blocks.HalfStorage1x1] + unitsPerSlot = 16 + + [Drawers.Blocks.HalfStorage1x2] + unitsPerSlot = 8 + + [Drawers.Blocks.HalfStorage2x2] + unitsPerSlot = 4 + + [Drawers.Blocks.HalfCompacting] + unitsPerSlot = 16 + + # Configuration around the auto compacting feature + [Drawers.Compacting] + # Whether compacting function is supported. Disabling does not remove the block. + enabled = true + # + # Enables additional rules for some Minecraft items, like quartz, brick, and clay. + # See logs for full set of rules that get added. + enableExtraCompactingRules = true + # + # Compacting drawers require 2-way 2x2 or 3x3 recipes to associate items. + # Add additional rules here in the form: , , + compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"] + + # Configuration around detached drawers, which are individual drawer slots pulled from a drawer block. + [Drawers.Detached] + # Allows individual drawer slots to be pulled out from a drawer block. + enable = true + # + # If enabled, carrying filled drawers in your inventory gives slowness debuff. + # Debuff can be mitigated with portability upgrade, if it's enabled. + heavyDrawers = false + # + # Drawers track the capacity upgrades from the block they were taken from. + # When enabled, drawers can only be placed back into a block with the same or lower max capacity. + # Drawers can still only be inserted into a block with enough capacity for the items held. + forceMaxCapacityCheck = false + # + # Allows detached drawers to be stored in containers like bundles and shulker boxes. + # Due to current limitation, this rule will also apply to storing empty drawers in those containers. + canStoreInContainers = false + + # Configuration around dropped drawer blocks that still have items inside them. + [Drawers.Filled] + # If enabled, carrying filled drawers in your inventory gives slowness debuff. + # Debuff can be mitigated with portability upgrade, if it's enabled. + heavyDrawers = false + # + # Allows filled drawers to be stored in other drawer blocks. + canStoreInDrawers = false + # + # Allows filled drawers to be stored in containers like bundles and shulker boxes. + # Due to current limitation, this rule will also apply to storing empty drawers in those containers. + canStoreInContainers = false + + # Configuration around framed drawers, which take their appearance from other blocks used as materials. + [Drawers.Framed] + # Allows crafting framed drawers. Disabling does not remove existing framed drawers. + enable = true + # + # Attempts to only allow solid, full-cube blocks to be used as materials. + # This check may still allow non-solid blocks if the blocks' properties indicate they should be solid but are not. + # Some non-solid blocks are also counted as non-opaque, and may be restricted by that setting as well. + enforceSolidMaterials = true + # + # Attempts to only allow fully opaque blocks to be used as materials. + # This check may still allow non-opaque blocks if the blocks' properties indicate they should be opaque but are not. + enforceOpaqueMaterials = false + # + # Each entry should be a namespace or fully namespaced block, e.g. minecraft:cobblestone + # Any items on the deny list are prevented from being used as any drawer material. + materialDenyList = [] + + # Configuration around storage of items. + [Drawers.Storage] + # + # Each entry should be a namespace or fully namespaced item, e.g. minecraft:cobblestone + # Any items on the deny list are prevented from being stored in drawers + storeDenyList = ["storagedrawers:creative_vending_upgrade"] + # + # What a drawer should do with its items when broken. Acceptable values are: + # KEEP: Drawer retains all items in the dropped item, like shulker boxes. This is the default behavior. + # DROP: Drawer drops items into the world, up to the dropStackLimit value. Stored items over that limit are voided. + # VOID: Drawer voids all items when dropped. + #Allowed Values: KEEP, DROP, VOID + dropMode = "KEEP" + # + # If dropMode is set to DROP, this is the maximum number of stacks that can be spilled into the world + # from the entire block. By default, this is set to the amount a vanilla chest could drop. + dropStackLimit = 32 + +# Configuration around the controller and drawer networks. +[Controller] + # Controller range defines how far away a drawer can be connected on X, Y, or Z planes. + # The largest recommended range is around 75, or the expected chunk load distance. + # If setting this value higher, drawers will be unavailable if their chunks become unloaded. + controllerRange = 50 + +# Configuration around upgrade items that can be inserted into drawer blocks. +[Upgrades] + + # Storage upgrades multiply storage capacity by the given amount. + # When multiple storage upgrades are used together, their multipliers are added before being applied. + [Upgrades.StorageTiers] + + [Upgrades.StorageTiers.Obsidian] + enableUpgrade = true + storageMultiplier = 2 + + [Upgrades.StorageTiers.Copper] + enableUpgrade = true + storageMultiplier = 4 + + [Upgrades.StorageTiers.Iron] + enableUpgrade = true + storageMultiplier = 8 + + [Upgrades.StorageTiers.Gold] + enableUpgrade = true + storageMultiplier = 16 + + [Upgrades.StorageTiers.Emerald] + enableUpgrade = true + storageMultiplier = 64 + + [Upgrades.StorageTiers.Diamond] + enableUpgrade = true + storageMultiplier = 256 + + [Upgrades.StorageTiers.Netherite] + enableUpgrade = true + storageMultiplier = 2048 + + # Allows same-item slots to balance out their amounts when items are added or removed from a slot. + # Works across networks when acting through a controller. + [Upgrades.Balance] + enableUpgrade = true + + # Allows the automatic conversion of same-type items based on configuration. + [Upgrades.Conversion] + enableUpgrade = true + # + # Each type will be combined with each material to create a set of allow list entries. + # This is mainly a convenience for common ore-based materials. + oreTypeAllowList = ["forge:storage_blocks", "forge:ingots", "forge:nuggets"] + # + # Each type will be combined with each material to create a set of allow list entries. + # This is mainly a convenience for common ore-based materials. + oreMaterialAllowList = ["aluminum", "constantan", "steel", "uranium", "invar", "tin", "lead", "silver", "platinum", "nickel", "osmium", "bronze", "electrum"] + # + # Each allow list entry should be a fully namespaced tag, e.g. c:ingots/copper + tagAllowList = [] + # + # Each deny list entry should be a fully namespaced tag, e.g. c:ingots/copper. + # All items not on the allow list are denied implicitly. This can be used to exclude + # specific entries created from the ore allow list set. + tagDenyList = [] + # + # Each entry is a semicolon-separated list of fully-namespaced items. All items within the + # same entry are considered equivalent and convertible/interchangeable. + # Example: ["thermal:nickel_ore;immersiveengineering:ore_nickel"] + itemEquivalenceGroups = [] + + # Allows storing ~2.1 billion (MAX_INT) items in each drawer slot. + [Upgrades.CreativeStorage] + enableUpgrade = true + + # Allows vending infinite amounts of the items in each drawer slot. + [Upgrades.CreativeVending] + enableUpgrade = true + + # Adds fill bars to the face of drawers. + [Upgrades.FillLevel] + enableUpgrade = true + + # Renders drawer labels brighter than surrounding environment would allow. + [Upgrades.Illumination] + enableUpgrade = true + # + # Renders labels at minimum light level between 0 - 15 + #Range: 0 ~ 15 + illuminationLevel = 13 + # + # Renders labels without upgrade at minimum light level between 0 - 15 + #Range: 0 ~ 15 + minIlluminationLevel = 1 + + # Collects matching items through its top like a vanilla hopper. + [Upgrades.Hopper] + enableUpgrade = true + + # Collects nearby matching items by teleporting them instantly to the drawer + [Upgrades.Magnet] + # + # When multiple magnet upgrades are used, their ranges are added together. + additiveRange = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + # If ranges from multiple upgrades are added, they are not allowed to exceed these values. + maxRange = [24, 8, 0] + + [Upgrades.Magnet.Level1] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [1, 1, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 20 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + [Upgrades.Magnet.Level2] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [4, 2, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 10 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + [Upgrades.Magnet.Level3] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [8, 3, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 5 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + # Restricts capacity of drawer to one stack. + [Upgrades.OneStack] + enableUpgrade = true + + # Allows drawers with contents to be freely carried when heavy drawers is enabled. + [Upgrades.Portability] + enableUpgrade = true + + # Lets drawers emit redstone signals based on their fill level. + [Upgrades.Redstone] + enableUpgrade = true + # + # Min redstone upgrades output the minimum signal of all drawers in block. + enableMinUpgrade = true + # + # Max redstone upgrades output the maximum signal of all drawers in block. + enableMaxUpgrade = true + # + # Whether redstone upgrades should emit an analog redstone signal, + # requiring the use of a comparator to read it. + analogOutput = true + + # Lets drawers connect to a controller wirelessly. + [Upgrades.Remote] + enableUpgrade = true + # + # Group variant connects all drawers connected to the upgraded block. + enableGroupUpgrade = true + # + # Sets the max range of the single-variant remote upgrade. + # The range is capped by the controller range. Set to 0 to match controller range. + maxRange = 0 + # + # Sets the max range of the group-variant remote upgrade. + # The range is capped by the controller range. Set to 0 to match controller range. + maxGroupRange = 0 + + # Causes drawers to accept but void compatible items when they are filled to capacity. + [Upgrades.Void] + enableUpgrade = true + +# Configuration around tools, namely the various 'keys' that can be used on drawers. +[Tools] + + # Drawer keys are used to lock drawers to the items they already hold. + [Tools.DrawerKey] + enable = true + + # Quantify keys are used to show or hide the count of items on the face of drawers. + [Tools.QuantifyKey] + enable = true + # + # Show labels by default on newly placed drawers. + showDefault = false + + # Concealment keys are used to show or hide the item labels on the face of drawers. + # The primary use of this key is for performance by disabling the more expensive dynamic rendering. + [Tools.ConcealmentKey] + enable = true + + # Personal keys allow drawers to be locked to their owners, so only they can place or take items. + [Tools.PersonalKey] + enable = true + + # Priority keys change the priority of drawers when finding a compatible slot to insert items into. + [Tools.PriorityKey] + enable = true + + # Suspend keys stop external interaction, e.g. from hopper or magnet upgrades. + [Tools.PauseKey] + enable = true + +# Configuration around integration with third party mods. +[Integration] + + # Configuration around the CoFH Core mod. + # Adds support for a CoFH groups personal key. + [Integration.CoFHCore] + # Enables CoFH Core integration if mod is present. + enable = true + + # Configuration around the FTB Chunks mod. + # Improves support for claimed chunks. + [Integration.FTBChunks] + # Enables FTB Chunks integration if mod is present. + enable = true + + # Configuration around the FTB Teams mod. + # Adds support for a teams personal key. + [Integration.FTBTeams] + # Enables FTB Teams integration if mod is present. + enable = true + # + # Enables recipe to obtain key from another supported personal key in crafting grid. + enableCycleRecipe = true + + # Configuration around the WAILA/HWYLA/Jade family of block inspection mods. + [Integration.WAILA] + # Enables Jade integration if mod is present. + enable = true + # When true, shows quantity as NxS + R (by stack size) rather than count + stackRemainder = true + # + # When true, does not show current quantities unless quantify key was used + respectQuantifyKey = false + diff --git a/config/strainers.toml b/config/strainers.toml new file mode 100644 index 0000000..b70870e --- /dev/null +++ b/config/strainers.toml @@ -0,0 +1,7 @@ + +["Strainers Config File"] + #Show the strainer meshes in the world, default = true + "Show Meshes" = true + #Show items in / on the strainer in the world, default = true + "Show Items " = true + diff --git a/config/strongfarmland.toml b/config/strongfarmland.toml new file mode 100644 index 0000000..1743e16 --- /dev/null +++ b/config/strongfarmland.toml @@ -0,0 +1,12 @@ + +#If a farmland has moisture, the following entity types will be blocked from trampling it into dirt when the setting is false +[strongfarmland] + #Do players trample farmland + player = false + #Do tamed animals (cats, dogs, etc) trample farmland + tameable = false + #Do tamed horses trample farmland + horse = false + #Do iron golems trample farmland + golem = false + diff --git a/config/structure_gel-client.toml b/config/structure_gel-client.toml new file mode 100644 index 0000000..9f8f512 --- /dev/null +++ b/config/structure_gel-client.toml @@ -0,0 +1,11 @@ + +[rendering] + # + # Displays info on top of Structure Blocks and Jigsaws in world. + # Default: true + show_structure_block_info = true + # + # Makes the render used by the Building Tool operate in a threaded context. + # Default: true + thread_building_tool = true + diff --git a/config/structure_gel-common.toml b/config/structure_gel-common.toml new file mode 100644 index 0000000..ddb7d78 --- /dev/null +++ b/config/structure_gel-common.toml @@ -0,0 +1,31 @@ + +[building_tool] + # + # The amount of undo operations saved by the Building Tool. + # Default: 64 + #Range: 8 ~ 256 + max_undos = 64 + # + # The amount of copied block regions that can be stored at a time with the Clone tool. + # Default: 9 + #Range: 1 ~ 32 + clipboard_size = 9 + # + # The amount hours that a player's actions should stay in memory for. Use -1 to save forever. + # Default: 24 + #Range: -1 ~ 240 + expiration_time = 24 + +[debug] + # + # When true, allows extra debug logging to be printed to the console. + # Default: false + console_debug = false + # + # When true: + # - Gel blocks can be clicked through like air when holding items that don't interact with them. + # - Gel blocks can be replaced like air when not holding gel or crouching. + # - Gel blocks automatically replace destroyed neighboring blocks. + # Default: true + advanced_gel_behavior = true + diff --git a/config/structure_layout_optimizer.jsonc b/config/structure_layout_optimizer.jsonc new file mode 100644 index 0000000..d44d542 --- /dev/null +++ b/config/structure_layout_optimizer.jsonc @@ -0,0 +1,15 @@ +{ + /* + * Whether to use an alternative strategy to make structure layouts generate slightly even faster than + * the default optimization this mod has for template pool weights. This alternative strategy works by + * changing the list of pieces that structures collect from the template pool to not have duplicate entries. + * + * This will not break the structure generation, but it will make the structure layout different than + * if this config was off (breaking vanilla seed parity). The cost of speed may be worth it in large + * modpacks where many structure mods are using very high weight values in their template pools. + * + * Pros: Get a bit more performance from high weight Template Pool Structures. + * Cons: Loses parity with vanilla seeds on the layout of the structure. (Structure layout is not broken, just different) + */ + "deduplicateShuffledTemplatePoolElementList": false +} \ No newline at end of file diff --git a/config/structurecompass-common.toml b/config/structurecompass-common.toml new file mode 100644 index 0000000..75112bc --- /dev/null +++ b/config/structurecompass-common.toml @@ -0,0 +1,14 @@ + +#General settings +[general] + #Sets the range in blocks in which the structure compasses can locate structures [default: 10000] + #Range: > 0 + compassRange = 10000 + #Defines if the structure compass should only locate unexplored structures. A structure is tagged as explored when the compass is used to find it. [default: false]] + locateUnexplored = false + #Defines if the structure compass should locate structures asynchronously [default: false] + locateAsync = false + #Defines which structures can't be searched with the Structure Compass + #(Supports wildcard *, Example: 'minecraft:*' will blacklist anything in the minecraft domain) + structureBlacklist = [""] + diff --git a/config/structureessentials.json b/config/structureessentials.json new file mode 100644 index 0000000..15e50b5 --- /dev/null +++ b/config/structureessentials.json @@ -0,0 +1,65 @@ +{ + "structurePlacementLogging": { + "desc:": "Enables debug logging of structure placement. Warning: This will spam the logs and is only recommended for debugging purposes. Default: false", + "structurePlacementLogging": false + }, + "structureSearchTimeout": { + "desc:": "The maximum time (in seconds) a structure search is allowed to take. Default: 50", + "structureSearchTimeout": 50 + }, + "useFastStructureLookup": { + "desc:": "Enables faster structure search. Default: true", + "useFastStructureLookup": true + }, + "mapSearchRadius": { + "desc:": "Specifies the maximum radius map items can search for structures. Lowering this value reduces the time structure searches stall the server but decreases the range in which structures are found. Vanilla: 50, Default: 40", + "mapSearchRadius": 40 + }, + "locateSearchRadius": { + "desc:": "Sets the search radius for the locate structure command. Vanilla: 100, Default: 110", + "locateSearchRadius": 110 + }, + "globalSearchRadius": { + "desc:": "Sets the global maximum structure search radius. The vanilla locate command uses 100. Lowering this value reduces the time structure searches stall the server but decreases the range in which structures are found. Default: 70", + "globalSearchRadius": 70 + }, + "spacingSeparationModifier": { + "desc:": "Adjusts the structure spacing (average spawn distance) and separation (minimum spawn distance). Increasing the value makes structures spawn farther apart, while decreasing it makes them spawn closer together. Vanilla Default: 1.0", + "spacingSeparationModifier": 1.0 + }, + "logDuplicatedSalt": { + "desc:": "Structure sets use a salt value to determine the randomness of their placement. Duplicated use of the same salt value can cause structures to spawn on the same place, this config enables logging duplicated salt values. Default: true", + "logDuplicatedSalt": true + }, + "minimumStructureDistance": { + "desc:": "Set a minimum distance in blocks between structures generated which prevents structure overlaps(not 100% but close). Not recommended to use higher values, as that may strain the worldgen due to repeated structure retries and can prevent surfaces structures when there is some in a cave below. If you want structures more spaced out than this use the spacing/seperation modifier. Default: 32 blocks, range 16-512", + "minimumStructureDistance": 32, + "enabled": false, + "logOverlaps": false + }, + "autoBiomeCompat": { + "desc:": "Automatically analyzes present biomes and adjust structure spawning to include fitting ones, Note that this may also spawn structures in undesired biomes, check the logging and adjust the strictness up/down to achieve a good result. Default: false", + "enableBiomeCompat": false, + "enableLogging": true, + "strictness": { + "desc:": "Sets a modifier for how strict the autoBiomeCompat is, lower allows adding less similar biomes to be added. E.g. 0.5 decreases the similarity requirements by 50% . Default: 1.2", + "autoBiomeCompatStrictness": 1.2 + }, + "dimensionWhitelist": { + "desc:": "List of allowed dimensions for automatic structure compat, by default only vanilla dimensions", + "dimensions": [ + "minecraft:overworld", + "minecraft:the_nether", + "minecraft:the_end" + ] + } + }, + "warnMissingRegistryEntry": { + "desc:": "Prevents crashes due to missing registry entries (e.g., changes in mod structure IDs) by converting them into log error messages instead. Default: true", + "warnMissingRegistryEntry": true + }, + "disableLegacyRandomCrashes": { + "desc:": "Prevents crashes caused by multithreaded access to thread-specific random number generators. Default: true", + "disableLegacyRandomCrashes": true + } +} \ No newline at end of file diff --git a/config/structurize-client.toml b/config/structurize-client.toml new file mode 100644 index 0000000..09d465c --- /dev/null +++ b/config/structurize-client.toml @@ -0,0 +1,23 @@ + +[blueprint] + + #Affects all previews + [blueprint.renderer] + #If disabled show placeholders as normal blocks, if enabled render: any (light) -> nothing, fluid (blue) -> dimension default fluid, solid (brown) -> worldgen block, tag (transparent) -> content block. Fluid and solid only work in singleplayer/for LAN owner, else it's just best guess. Currently without auto-updating [Default: false] + render_placeholders_nice = false + #Enabling this will send most of your active previews to nearby players [Default: false] + share_previews = false + #Once enabled you will see previews from other players within sensible distance [Default: false] + see_shared_previews = false + #-1 for same as current vanilla world, 0 to 15 (min to max) for static light level [Default: 15, min: -1, max: 15] + #Range: -1 ~ 15 + light_level = 15 + #From 0 (transparent) to 1 (opaque). ALPHA FEATURE, reported bugs may not receive fix. (Minus values also mean disabled) [Default: -1.0, min: -1.0, max: 1.0] + #Range: -1.0 ~ 1.0 + transparency = -1.0 + +#All configuration items related to the core gameplay +[gameplay] + #Sneak+scroll on the hotbar switches scan tool slots [Default: false] + scan_tool_scrolling = false + diff --git a/config/stylisheffects-client.toml b/config/stylisheffects-client.toml new file mode 100644 index 0000000..57c9336 --- /dev/null +++ b/config/stylisheffects-client.toml @@ -0,0 +1,185 @@ + +[renderers] + + [renderers.inventory_renderer] + #Show a tooltip when hovering over an effect widget. + hovering_tooltip = true + #Minimum screen border distance for effect widgets. + #Range: > 0 + screen_border_distance = 3 + #Show remaining status effect duration on tooltip. + tooltip_duration = true + #Maximum amount of status effects rendered in a single row. + #Range: 1 ~ 255 + max_columns = 2 + #Space between individual effect widgets on y-axis. + #Range: > 0 + widget_space_y = 1 + #Alpha value for effect widgets. + #Range: 0.0 ~ 1.0 + widget_alpha = 0.7 + #Space between individual effect widgets on x-axis. + #Range: > 0 + widget_space_x = 1 + #Respect vanilla's "hideParticles" flag which prevents a status effect from showing when set via commands. + respect_hide_particles = false + #Exclude certain menus from showing active status effects. Useful when effect icons overlap with other screen elements. + menu_blacklist = ["curios:curios_container", "minecraft:creative_mode", "blue_skies:arc_inventory", "tconstruct:*"] + #Maximum amount of status effects rendered in a single column. + #Range: 1 ~ 255 + max_rows = 255 + #Print menu type to game chat whenever a new menu screen is opened. Only intended to find menu types to be added to "menu_blacklist". + debug_container_types = false + #Render active status effects in every menu screen, not just in the player inventory. + effects_everywhere = false + #Allow effect renderer to fall back to a more compact version (when available) if not enough screen space exists. Otherwise effect widgets might run off-screen. + allow_fallback = true + #Screen side to render status effects on. + #Allowed Values: LEFT, RIGHT + screen_side = "RIGHT" + #Effect renderer to be used. + #This setting might not be respected when not enough screen space is available. To force this setting disable "allow_fallback". + #Allowed Values: NONE, GUI_SMALL, GUI_COMPACT, INVENTORY_COMPACT, INVENTORY_FULL_SIZE + renderer_type = "GUI_COMPACT" + #Custom scale for effect renderer. + #Range: 1.0 ~ 12.0 + scale = 1.75 + #Prevent status effects with infinite duration from showing. + hide_infinite_effects = false + + [renderers.gui_renderer] + #Respect vanilla's "hideParticles" flag which prevents a status effect from showing when set via commands. + respect_hide_particles = true + #Maximum amount of status effects rendered in a single column. + #Range: 1 ~ 255 + max_rows = 255 + #Allow effect renderer to fall back to a more compact version (when available) if not enough screen space exists. Otherwise effect widgets might run off-screen. + allow_fallback = false + #Maximum amount of status effects rendered in a single row. + #Range: 1 ~ 255 + max_columns = 4 + #Screen side to render status effects on. + #Allowed Values: LEFT, RIGHT + screen_side = "LEFT" + #Offset on x-axis. + #Range: > 0 + offset_x = 3 + #Space between individual effect widgets on y-axis. + #Range: > 0 + widget_space_y = 1 + #Alpha value for effect widgets. + #Range: 0.0 ~ 1.0 + widget_alpha = 0.65 + #Space between individual effect widgets on x-axis. + #Range: > 0 + widget_space_x = 1 + #Effect renderer to be used. + #This setting might not be respected when not enough screen space is available. To force this setting disable "allow_fallback". + #Allowed Values: NONE, GUI_SMALL, GUI_COMPACT, INVENTORY_COMPACT, INVENTORY_FULL_SIZE + renderer_type = "GUI_COMPACT" + #Offset on y-axis. + #Range: > 0 + offset_y = 3 + #Custom scale for effect renderer. + #Range: 1.0 ~ 12.0 + scale = 1.8 + #Prevent status effects with infinite duration from showing. + hide_infinite_effects = false + +[widgets] + + [widgets.inventory_compact] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Display effect duration more compact, allows for always showing duration, even when it is very long. + compact_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + + [widgets.inventory_full_size] + #Effect name color. Setting this to "EFFECT" will use potion color. + #Effect name color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + name_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = true + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + + [widgets.gui_small] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Draw harmful effects on a separate line from beneficial ones. This is turned on in vanilla. + separate_effects = false + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + + [widgets.gui_compact] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Display effect duration more compact, allows for always showing duration, even when it is very long. + compact_duration = false + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Draw harmful effects on a separate line from beneficial ones. This is turned on in vanilla. + separate_effects = false + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + diff --git a/config/supplementaries-client.toml b/config/supplementaries-client.toml new file mode 100644 index 0000000..4859f74 --- /dev/null +++ b/config/supplementaries-client.toml @@ -0,0 +1,260 @@ + +#Tweak and change the various block animations. +#Only cosmetic stuff in here so to leave default if not interested. +#Remember to delete this and server configs and let it refresh every once in a while since I might have tweaked it +[blocks] + + [blocks.globe] + #Enable a random globe texture for each world + random_world = true + #Displays current coordinates when using a globe + show_coordinates = true + + [blocks.notice_board] + #Allows notice board displayed text to be centered instead of being left aligned + centered_text = true + + [blocks.bunting] + #Makes buntings use normal block models with no animation for faster performance. When off this is only active when viewed from a distance + fast_buntings = true + + [blocks.clock_block] + #Display 24h time format. False for 12h format + 24h_format = true + + [blocks.pedestal] + #Enable displayed item spin + spin = true + #Spin speed + #Range: 0.0 ~ 100.0 + speed = 2.0 + #Enable special display types for items like swords, tridents or end crystals + fancy_renderers = false + + [blocks.bubble_block] + #Wobbling intensity. set to 0 to disable + #Range: 0.0 ~ 1.0 + wobble = 0.2 + #How fast it grows when created. 1 to be instant + #Range: 0.0 ~ 1.0 + grow_speed = 0.4 + + [blocks.item_shelf] + #Translate down displayed 3d blocks so that they are touching the shelf. + #Note that they will not be centered vertically this way + supported_blocks = true + + [blocks.wind_vane] + #Wind vane animation swings according to this equation: + #pitch(time) = max_angle_1*sin(2pi*time*pow/period_1) + *sin(2pi*time*pow/) + #where: + # - pow = max(1,redstone_power*) + # - time = time in ticks + # - redstone_power = block redstone power + # = how much frequency changes depending on power. 2 means it spins twice as fast each power level (2* for rain, 4* for thunder) + #increase to have more distinct indication when weather changes + #Range: 1.0 ~ 100.0 + power_scaling = 3.0 + #Amplitude (maximum pitch) of first sine wave + #Range: 0.0 ~ 360.0 + max_angle_1 = 30.0 + #Range: 0.0 ~ 360.0 + max_angle_2 = 10.0 + #Base period in ticks at 0 power of first sine wave + #Range: 0.0 ~ 2000.0 + period_1 = 450.0 + #This should be kept period_1/3 for a symmetric animation + #Range: 0.0 ~ 2000.0 + period_2 = 150.0 + + [blocks.flag] + #How slow a flag will oscillate. (Period of oscillation) + #Lower value = faster oscillation + #Range: 0 ~ 10000 + slowness = 100 + #How wavy the animation will be in pixels. (Wavelength) + #Range: 0.001 ~ 100.0 + wavyness = 4.0 + #How tall the wave lobes will be. (Wave amplitude) + #Range: 0.0 ~ 100.0 + intensity = 1.0 + #How much the wave amplitude increases each pixel. (Amplitude increment per pixel) + #Range: 0.0 ~ 10.0 + intensity_increment = 0.3 + #At which graphic settings flags will have a fancy renderer: 0=fast, 1=fancy, 2=fabulous + #Allowed Values: FAST, FANCY, FABULOUS + fanciness = "FANCY" + #Makes flags render as sideways banner. Ignores many of the previously defined configs + render_as_banner = false + + [blocks.captured_mobs] + #THIS IS ONLY FOR VISUALS! To allow more entities in cages you need to edit the respective tags! + #A list of mobs that can be ticked on client side when inside jars. Mainly used for stuff that has particles. Can cause issues and side effects so use with care + tickable_inside_jars = ["iceandfire:pixie", "druidcraft:dreadfish", "druidcraft:lunar_moth", "alexsmobs:hummingbird"] + + [blocks.hat_stand] + + [blocks.hat_stand.swing_physics] + frequency = 1.5 + collision_considers_entity_hitbox = true + collision_inertia = 1.5 + collision_force = 15.0 + min_angle = 0.0 + max_angle = 54.999996 + damping = 1.625 + + [blocks.turn_table] + #Display visual particles when a block is rotated + turn_particles = true + + [blocks.speaker_block] + #Mute speaker block incoming narrator messages and displays them in chat instead + mute_narrator = false + + [blocks.rope] + #Amplitude of rope wobbling effect + #Range: 0.0 ~ 20.0 + wobbling_amplitude = 1.2 + #Period of rope wobbling effect + #Range: 0.01 ~ 200.0 + wobbling_period = 12.0 + +#Particle parameters +[particles] + + #Rotation particle + [particles.turn_particle] + #An RGBA color + initial_color = "#002A77EA" + #An RGBA color + fade_color = "#0032BEFA" + +#General settings +[general] + #Disables Optifine warn screen + no_optifine_warn_screen = false + #Disables Amendments suggestion screen + no_amendments_screen = false + #Disable incompatible mods warning screen + no_incompatible_mods_screen = false + #Enable Quark style config button on main menu. Needs Configured installed to work + config_button = false + #Config button Y offset + #Range: -10000 ~ 10000 + config_button_y_offset = 0 + #Show some tooltip hints to guide players through the mod + tooltip_hints = true + #Show tooltips items that have been made placeable + placeable_tooltips = true + #Enables custom Configured config screen + custom_configured_screen = true + #I am very boring + unfunny = false + #ignore this + #Range: -10.0 ~ 10.0 + test1 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test2 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test3 = 0.0 + +#Game tweaks +[tweaks] + #Show a slime overlay when you hit an entity with a slimeball + overlay = true + #Allow to right click with a clock to display current time in numerical form + clock_right_click = true + #Adds an overlay to projectile weapons in gui displaying currently selected ammo + projectile_weapon_overlay = true + #Allow to right click with a compass to display current coordinates in numerical form + compass_right_click = false + #Renders an enchantment glint on placeable enchanted booksNote that turning this on will make book piles use tile renderer instead of baked models making them slower to render + placeable_books_glint = false + #Placeable books random colors + placeable_books_random_colors = ["brown", "orange", "yellow", "red", "green", "lime", "cyan", "blue", "purple"] + #Enables banner pattern tooltip image preview + banner_pattern_tooltip = true + #Enables paintings tooltip image preview + paintings_tooltip = true + #Enables sherds tooltip image preview + sherds_tooltip = true + #Size of the tooltip image used for Sherds, Blackboards, Banner patterns and Paintings + #Range: 1 ~ 255 + tooltip_image_size = 80 + #Wearing mob heads will apply post processing + mob_head_shaders = true + #Sends your current chat when you die while typing + send_chat_on_death = true + #Makes enderman heads use vanilla texture. Enable for texture pack support + enderman_head_texture_pack_support = true + + [tweaks.colored_maps] + #Needs the server config with same name on. If on here it will ignore the server one and keep vanilla colors + tinted_blocks_on_maps = true + #Colors tall grass same color as grass + tall_grass_color = true + #Makes colored maps a bit more accurate. Might affect performance + accurate_colors = false + +[items] + + [items.slingshot] + #Adds an overlay to slingshots in gui displaying currently selected ammo + overlay = true + #Render the block outline for distant blocks that are reachable with a slingshot enchanted with Stasis + stasis_block_outline = true + #An RGBA color for the block outline in hex format, for example 0x00000066 for vanilla outline colors + block_outline_color = "#FFFFFFFF" + #How big should a slingshot projectile look + #Range: 0.0 ~ 1.0 + projectile_scale = 0.5 + + [items.lunch_basket] + #Adds an overlay to lunch boxes in gui displaying currently selected food + overlay = true + + [items.altimeter] + #Click action for depth meter which displays current depth + click_action = true + #Allows depth meter to have unique textures per each dimension. Add more dimensions IDs and a matching texture in the correct path replacing ':' with '_' + #This is a list. Add more entries with syntax [[...]] + extra_dimension_textures = ["minecraft:the_nether", "minecraft:the_end"] + #Increasing this to be more than 1 will result in delth meter display image to be shown in float amounts instead of pixel perfect ones + #Range: 1 ~ 10 + texture_precision_multiplier = 1 + + [items.cannonball] + #Render cannonballs as 3D models + 3d_model = true + + [items.quiver] + #Z offset for quiver render when wearing armor. Useful for when you have custom armor bigger than vanilla to void clipping. Leave at -1 for automatic offset + #Range: -1.0 ~ 1.0 + armor_render_offset = -1.0 + #How quivers should render onto players + #Allowed Values: HIDDEN, BACK, HIP, THIGH + render_mode = "THIGH" + #How skeleton with quivers should render it + #Allowed Values: HIDDEN, BACK, HIP, THIGH + skeleton_render_mode = "THIGH" + #Adds an overlay to quivers in gui displaying currently selected arrow + overlay = true + #Allows using your mouse to select an arrow in the quiver GUI + mouse_movement_in_gui = true + #Quiver GUI X offset from default position + #Range: -1000 ~ 1000 + gui_x_offset = 0 + #Quiver GUI Y offset from default position + #Range: -1000 ~ 1000 + gui_y_offset = 0 + + [items.wrench] + #Display visual particles when a block is rotated + turn_particles = true + + [items.flute] + #Display visual particles when a playing a flute + note_particles = true + diff --git a/config/supplementaries-common.toml b/config/supplementaries-common.toml new file mode 100644 index 0000000..673ad5e --- /dev/null +++ b/config/supplementaries-common.toml @@ -0,0 +1,683 @@ + +[redstone] + wind_vane = true + clock_block = true + redstone_illuminator = true + crank = true + cog_block = true + gold_door = true + gold_trapdoor = true + lock_block = true + relayer = true + + [redstone.speaker_block] + enabled = true + #Enable/disable speaker block narrator mode + narrator_enabled = true + #Max text + #Range: 0 ~ 10000 + max_text = 32 + #Maximum block range + #Range: 0 ~ 100000000 + range = 64 + + [redstone.bellows] + enabled = true + #bellows pushes air following this equation: + #air=(sin(2PI*ticks/period)<0), with period = base_period-(redstone_power-1)*power_scaling + #represents base period at 1 power + #Range: 1 ~ 512 + base_period = 78 + #entities with velocity greater than this won't be pushed + #Range: 0.0 ~ 16.0 + power_scaling = 2.0 + #velocity increase uses this equation: + #vel = base_vel*((range-entity_distance)/range) with base_vel = base_velocity_scaling/period + #note that the block will push further the faster it's pulsing + #Range: 0.0 ~ 64.0 + base_velocity_scaling = 5.0 + #maximum range + #note that it will still only keep alive the two fire blocks closer to it + #Range: 0 ~ 16 + range = 5 + + [redstone.spring_launcher] + enabled = true + #spring launcher launch speed + #Range: 0.0 ~ 16.0 + velocity = 1.5 + #fall distance needed to trigger the automatic spring launch + #Range: 0 ~ 512 + fall_height_required = 5 + + [redstone.enderman_head] + enabled = true + drop_head = true + #Time to increase 1 power level when being looked at + #Range: 0 ~ 10000 + ticks_to_increase_power = 15 + #do enderman heads work when looked from any side? + work_from_any_side = false + + [redstone.turn_table] + enabled = true + #can rotate entities standing on it? + rotate_entities = true + #Allows turn table to shuffle containers content when rotated over horizontal axis + shuffle_containers = true + + [redstone.pulley_block] + enabled = true + #Chance for a new mineshaft elevator piece to spawn + #Range: 0.0 ~ 1.0 + mineshaft_elevator = 0.035 + + [redstone.dispenser_minecart] + enabled = true + #Makes projectiles shot from dispenser minecart retain the minecart velocity and be shot at an angle when the minecart is on a rail slope + adjust_projectile_angle = true + + [redstone.faucet] + enabled = true + #Turn off to prevent faucets from dropping items + spill_items = true + #Allows faucets to fill entities inventories + fill_entities_below = false + + [redstone.crystal_display] + enabled = true + #Allows chaining 2 crystal displays, letting one power the other to its left IF its own power exceeds 10. Given power will be its own divided by 10. Note that to work the decimal display must NOT have power directly behind it. Doing so will override the behavior to non chaining mode + chaining = true + +[functional] + fodder = true + hourglass = true + + [functional.rope] + #Allows ropes to be supported & attached to solid block sides + block_side_attachment = true + #Makes sliding down ropes as fast as free falling, still negating fall damage + slide_on_fall = true + #In case you want to disable supplementaries ropes you can specify here another mod rope and they will be used for rope arrows and in mineshafts instead + rope_override = "supplementaries:rope" + #Enables horizontal placement of ropes. Disabling will make ropes always non solid + horizontal_ropes = true + #Use this config to turn allow supplementaries to replace all items tagged as #supplementaies:ropes with supplementaries own rope or turn them to air instead. This is applied to all loot tables (chests and drops) + #Allowed Values: REPLACE, NONE, REMOVE + replace_in_loot_tables = "NONE" + + [functional.jar] + enabled = true + #Jar liquid capacity: leave at 12 for pixel accuracy + #Range: 0 ~ 1024 + capacity = 12 + #Allow right click to instantly eat or drink food or potions inside a placed jar. + #Disable if you think this ability is op (honey for example). Cookies are excluded + drink_from_jar = false + #Allows the player to directly drink from jar items + drink_from_jar_item = false + #Dynamically allows all small mobs inside jars depending on their hitbox size + jar_auto_detect = false + #Allow Jars to capture small mobs + jar_capture = true + #Allow Jars to hold cookies + jar_cookies = true + #Allow Jars to hold liquids from bottles, buckets and bowls + jar_liquids = true + + [functional.cage] + enabled = true + #Allows all entities to be captured by cages and jars. Not meant for survival + allow_all_mobs = false + #Allows all baby mobs to be captured by cages + cage_allow_all_babies = false + #Dynamically allows all small mobs inside cages depending on their hitbox size + cage_auto_detect = false + #Makes it so all (hostile) mobs captured by cages and jars will be set to persistent so they won't despawn when released + persistent_mobs = false + #Health percentage under which mobs will be allowed to be captured by cages and jars. Leave at 100 to accept any health level + #Range: 1 ~ 100 + health_threshold = 100 + #When on, if a mob is tameable, it will only be capturable when tamed. + require_taming = true + + [functional.safe] + enabled = true + #Makes safes only breakable by their owner or by a player in creative + prevent_breaking = false + #Make safes simpler so they do not require keys: + #they will be bound to the first person that opens one and only that person will be able to interact with them + simple_safes = false + + [functional.sack] + enabled = true + #Penalize the player with slowness effect when carrying too many sacks + sack_penalty = true + #Maximum number of sacks after which the overencumbered effect will be applied. Each multiple of this number will increase the effect strength by one + #Range: 0 ~ 50 + sack_increment = 2 + #How many slots should a sack have + #Range: 1 ~ 27 + slots = 9 + + [functional.bamboo_spikes] + enabled = true + tipped_spikes = true + #Allows entities killed by spikes to drop loot as if they were killed by a player + player_loot = false + #Alternative mode for bamboo spikes. Allows only harmful effects to be applied on them and they obtain infinite durability + only_allow_harmful_effects = true + #Populate the creative inventory with all tipped spikes variations + populate_creative_tab = true + + [functional.urn] + enabled = true + #Chance for an urn to spawn a critter from the urn_spawn tag + #Range: 0.0 ~ 1.0 + critter_spawn_chance = 0.01 + cave_urns = true + + [functional.soap] + enabled = true + #Dyed Bock types that cannot be cleaned with soap + clean_blacklist = ["minecraft:glazed_terracotta", "botania:mystical_flower", "mna:chimerite_crystal", "botania:floating_flower", ",minecraft:mushroom", "botania:mushroom", "botania:tall_mystical_flower", "botania:petal_block", "morered:network_cable", "xycraft_world:glowing_shiny_aurey_block", "xycraft_world:shiny_aurey_block", "xycraft_world:rgb_lamp", "xycraft_world:glowing_rgb_viewer", "xycraft_world:glowing_matte_rgb_block", "xycraft_world:rgb_lamp_pole"] + #Allows soap to clean blocks in-world. Disable to prevent in-world block cleaning while keeping soap item and recipes functional + block_cleaning_enabled = true + + #This is a map of special blocks that can be cleaned with soap + [functional.soap.special_blocks] + "quark:dirty_glass_pane" = "minecraft:glass_pane" + "#alexscaves:cave_paintings" = "alexscaves:smooth_limestone" + "quark:dirty_glass" = "minecraft:glass" + + [functional.cannon] + enabled = true + #Makes TNT-like block shot from a cannon explode on impact + #Allowed Values: IGNITE, IGNITE_ON_IMPACT, NONE + explode_tnt = "IGNITE" + #Cannon fire power multiplier + #Range: 0.0 ~ 5.0 + fire_power = 0.6 + #Time for a cannon to fire a projectile after it has been lit up + #Range: 0 ~ 500 + fuse_time = 40 + #Time for a cannon to be able to fire again after it has been fired + #Range: 0 ~ 500 + cooldown = 60 + music_disc_heave_ho = true + + [functional.cannon.cannonball] + enabled = true + #Cannonball power scaling. Higher values will make cannonballs have more energy. Reminder that the damage and breaking power of a cannonball is proportional to its energy (speed squared) times this constant + #Range: 0.0 ~ 100.0 + power_scaling = 3.5 + #Radius of the 'explosion' when a cannonball hits a block. Set to 0 to disable + #Range: 0.0 ~ 10.0 + break_radius = 1.1 + + [functional.present] + enabled = true + trapped_present = true + + [functional.flax] + enabled = true + wild_flax = true + + [functional.lumisene] + enabled = true + #Gives the flammable effext also when merely stepping on lumisene. Turning this off if you think effects are not something that should be applied like that and just by drinking it. + #Range: 0 ~ 10000 + flammable_from_lumisene_block_duration = 50 + + [functional.lumisene.lumisene_bottle] + #Enables lumisene bottles and the flammable effect and lumisene bottles. Turn off if you think its over the top and doesnt match with existing effects + enabled = true + #Duration of the flammable effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + flammable_duration = 300 + #Duration of the glowing effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + glowing_duration = 200 + +[building] + lapis_bricks = true + deepslate_lamp = true + end_stone_lamp = true + blackstone_lamp = true + stone_lamp = true + stone_tile = true + blackstone_tile = true + bunting = true + sconce = true + sconce_lever = true + pancake = true + checker_block = true + raked_gravel = true + feather_block = true + statue = true + doormat = true + flint_block = true + fine_wood = true + candle_holder = true + fire_pit = true + wicker_fence = true + + [building.blackboard] + enabled = true + #Enable to draw directly on a blackboard using any dye. Gui still only works in black and white + colored_blackboard = false + #Interaction mode for blackboards + #Allowed Values: BOTH, GUI, MANUAL + interaction_mode = "BOTH" + + [building.gravel_bricks] + enabled = true + + [building.slidy_block] + enabled = true + #Slidy block speed + #Range: 0.0 ~ 1.0 + speed = 0.125 + + [building.timber_frame] + enabled = true + #Allow placing a timber frame directly on a block by holding shift + swap_on_shift = false + #Allows axes to remove a framed block leaving the contained block intact + axes_strip = true + #Replace a timber frame with wattle and daub block when daub is placed in it + replace_daub = true + + [building.iron_gate] + enabled = true + #Allows two iron gates to be opened simultaneously when on top of the other + double_opening = true + #Makes iron (ang gold) gates behave like their door counterpart so for example iron gates will only be openable by redstone + door-like_gates = false + + [building.item_shelf] + enabled = true + #Makes item shelves climbable + climbable_shelves = false + + [building.sugar_cube] + enabled = true + #Makes sugar cubes dissolve in rain + dissolve_in_rain = true + #Duration in seconts of speed effect garanted to horses that eat a sugar cube + #Range: 0 ~ 1000 + horse_speed_duration = 10 + + [building.planter] + enabled = true + #Makes so saplings that grow in a planter will break it turning into rooted dirt + broken_by_sapling = false + #When Farmers Delight is on planter will also act like rich soil and use it in its recipe + rich_soil_planter = true + + [building.notice_board] + enabled = true + #Allows notice boards to accept and display any item, not just maps and books + allow_any_item = false + #Enables a GUI for the block. Not needed as the block just holds one item which you can place by clicking on it + gui = true + + [building.pedestal] + enabled = true + #If enabled end crystals placed on a pedestals will provide an enchantment power bonus equivalent to 3 bookshelves + #Range: 0.0 ~ 100.0 + crystal_enchanting = 3.0 + + [building.ash] + enabled = true + #Burnable blocks will have a chance to create ash layers when burned. Greater this number the greater the chance will be + #Range: 0.0 ~ 1.0 + ash_from_fire_chance = 1.0 + #Burning mobs will drop ash when they die + ash_from_burning_mobs = true + #Allows rain to wash away ash layers overtime + rain_wash_ash = true + #Use a datapack to tweak rarity + basalt_ash = true + + [building.flag] + enabled = true + #Allows right/left clicking on a stick to lower/raise a flag attached to it + stick_pole = true + #Maximum allowed pole length + #Range: 0 ~ 256 + pole_length = 16 + + [building.goblet] + enabled = true + #Allows drinking from goblets + allow_drinking = true + + [building.globe] + enabled = true + sepia_globe = true + + [building.sign_post] + enabled = true + + [building.sign_post.way_sign] + #Entirely disables them from spawning + enabled = true + #With this option road signs will display the distance to the structure that they are pointing to + show_distance_text = true + + [building.daub] + enabled = true + wattle_and_daub = true + + [building.ash_bricks] + enabled = true + + [building.hat_stand] + enabled = true + #Allow all items to go on hat stand + unrestricted = false + + [building.awning] + enabled = true + #Allows having slanted awnings. Disabled if you feel its cursed. + slant = true + #Allows entities to fall through awnings, when shifting. + shift_through = true + #Bouncing angle of slanted awnings + #Range: 0.0 ~ 90.0 + angle = 69.44395478041653 + + [building.flower_box] + enabled = true + #Makes so flower boxes can only contain one tall flower item per block + simple_mode = true + + [building.netherite_doors] + door = true + trapdoor = true + +[tools] + candy = true + stasis = true + altimeter = true + confetti_popper = true + + [tools.quiver] + enabled = true + #Allows using a quiver without being slowed down + use_without_slow = true + #Arrow stacks that can fit inside a quiver. Requires reboot + #Range: 1 ~ 9 + slots = 6 + #Increase this number to alter the probability for a Skeleton with quiver to spawn. + #Range: 0.0 ~ 1.0 + quiver_skeleton_spawn_chance = 0.025 + #If the chance for a skeleton to spawn with a quiver will be affected by local difficulty. If true, you wont ever see them on easy and very rarely on normal. Similar logic to equipment + quiver_skeleton_spawn_affected_by_local_difficulty = true + #Allows quiver to only be used when in offhand or in curio slot + only_works_in_curio = false + #Arrows you pickup will try to go in a quiver if available provided it has some arrow of the same type + quiver_pickup = true + + [tools.lunch_basket] + enabled = true + #Allows lunch baskets to be placed on the ground + placeable = true + #Arrow stacks that can fit inside a lunch basket. Requires reboot + #Range: 1 ~ 9 + slots = 6 + + [tools.slice_map] + enabled = true + #Multiplier that will be applied by slice maps to lower their range compared to normal maps + #Range: 0.0 ~ 1.0 + range_multiplier = 0.25 + + [tools.bubble_blower] + enabled = true + #Amount of soap consumed per bubble block placed + #Range: 1 ~ 25 + stasis_cost = 5 + + [tools.bubble_blower.bubble_block] + #Max lifetime of bubble blocks. Set to 10000 to have it infinite + #Range: 1 ~ 10000 + lifetime = 1200 + #Can bubble break when touched on? + break_when_touched = true + #If true feather falling prevents breaking bubbles when stepping on them + feather_falling_prevents_breaking = true + + [tools.wrench] + enabled = true + #Allows wrenches to bypass a block interaction action prioritizing their own when on said hand + #Allowed Values: MAIN_HAND, OFF_HAND, BOTH, NONE + bypass_when_on = "MAIN_HAND" + + [tools.rope_arrow] + enabled = true + #Max number of rope items allowed to be stored inside a rope arrow + #Range: 1 ~ 256 + capacity = 32 + #Makes rope arrows exclusive to crossbows + exclusive_to_crossbows = false + + [tools.flute] + enabled = true + #Radius in which an unbound flute will search pets + #Range: 0 ~ 500 + unbound_radius = 64 + #Max distance at which a bound flute will allow a pet to teleport + #Range: 0 ~ 500 + bound_distance = 64 + + [tools.bomb] + enabled = true + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 2.0 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + #Put here any number other than 0 to have your bombs explode after a certain amount of ticks instead than on contact + #Range: 0 ~ 100000 + bomb_fuse = 0 + #Enable bomb item cooldown + cooldown = true + + [tools.bomb.blue_bomb] + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 5.15 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + + [tools.slingshot] + enabled = true + #Slingshot range multiplier. Affect the initial projectile speed + #Range: 0.0 ~ 5.0 + range_multiplier = 1.0 + #Time in ticks to fully charge a slingshot + #Range: 0 ~ 100 + charge_time = 20 + #Deceleration for the stasis projectile + #Range: 0.1 ~ 1.0 + stasis_deceleration = 0.9625 + #Allow enderman to intercept any slingshot projectile + unrestricted_enderman_intercept = true + #Allows buckets to be thrown by slingshots. Thrown buckets will place their content when they land + allow_buckets = true + #Damage that items in the 'supplementaries:slingshot_damageable' tag will deal. Scales with thrown speed. Tag is empty by default. + #Range: 0.0 ~ 100.0 + damageable_damage = 0.5 + #Allows splash potions to be thrown by slingshots + allow_splash_potions = false + #Allows bombs to be thrown by slingshots + allow_bombs = false + #Allows fire charges to be thrown by slingshots + allow_fire_charges = false + #Allows snowballs to be thrown by slingshots + allow_snowballs = false + #Allows enderpearls to be thrown by slingshots + allow_enderpearls = false + + [tools.antique_ink] + enabled = true + +#General settings +[general] + #Enable Creative Tab + creative_tab = false + #Set to false to disable custom dispenser behaviors (i.e: filling jars) if for some reason they are causing trouble + dispensers = true + #Creates a creative tab full of filled jars + jar_tab = false + #Save generated resources to disk in a 'debug' folder in your game directory. Mainly for debug purposes but can be used to generate assets in all wood types for your mods :0 + debug_save_dynamic_pack = false + #Turn this on to disable any interaction on blocks placed by other players. This affects item shelves, signs, flower pots, and boards. Useful for protected servers. Note that it will affect only blocks placed after this is turned on and such blocks will keep being protected after this option is disabled + server_protection = false + #Disable startup messages and sanity check that the mod performs to inform of possible detected crashes that might occur due to issues + sanity_checks_messages = true + #slightly increase this or decrease this number to tweak the red merchant spawn chance. Won't spawn at 0 and will spawn twice as often on 2 + #Range: 0.0 ~ 10.0 + red_merchant_spawn_multiplier = 1.0 + +#Vanilla tweaks +[tweaks] + + [tweaks.dragon_banner_pattern] + #Adds dragon banner pattern made from dragon head + enabled = true + + [tweaks.shulker_helmet] + #Allows wearing shulker shells + enabled = true + + [tweaks.golden_apple_disenchant] + enabled = true + + [tweaks.traders_open_doors] + #Allows traders to open doors (because they couldn't apparently) + enabled = true + + [tweaks.dispenser_tweaks] + #Allows dispensers to use axes on blocks to strip logs and scrape off copper oxidation and wax + axe_strip = true + #Enables shooting ender pearls with dispensers + shoot_ender_pearls = true + #Enables extracting bundles items with dispensers + extract_from_bundles = true + + [tweaks.throwable_bricks] + #Throw bricks at your foes! Might break glass blocks + enabled = true + + [tweaks.placeable_sticks] + #Allow placeable sticks + sticks = true + #Allow placeable blaze rods + blaze_rods = true + + [tweaks.placeable_gunpowder] + #Allow placeable gunpowder + enabled = true + #Number of ticks it takes for gunpowder to burn 1 stage (out of 8). Increase to slow it down + #Range: 0 ~ 20 + speed = 2 + #Age at which it spread to the next gunpowder block. Also affects speed + #Range: 0 ~ 8 + spread_age = 2 + + [tweaks.raked_gravel] + #allow gravel to be raked with a hoe + enabled = true + + [tweaks.bottle_xp] + #Allow bottling up xp by using a bottle on an enchanting table + enabled = false + #bottling health cost + #Range: 0 ~ 20 + cost = 2 + #Block that should be clicked on for bottling to work. Leave blank for enchanting table. You can put another block here from another mod if you find it more fitting + target_block = "" + + [tweaks.map_tweaks] + #Cartographers will sell 'adventurer maps' that will lead to a random vanilla structure (choosen from a thought out preset list). + #Best kept disabled if you are adding custom adventurer maps with datapack (check the wiki for more) + random_adventurer_maps = true + #Select a random structure to look for instead of iterating through all of the ones in the tag returning the closest. Turning on will make ones that have diff structures (aka all different ruined portals) show up more. On could take much more time to compute + random_adventurer_maps_select_random_structure = true + #Enables beacons, lodestones, respawn anchors, beds, conduits, portals to be displayed on maps by clicking one of them with a map + block_map_markers = true + #Shows a death marker on your map when you die. Requires a recovery compass in player inventory or similar + #Allowed Values: OFF, WITH_COMPASS, ALWAYS + death_marker = "WITH_COMPASS" + #If Quark is installed adventurer maps will be replaced by adventurer quills. These will not lag the server when generating + quill_adventurer_maps = true + #If Quark is installed replaces buried treasure and mansion maps with their equivalent quill form. This removes the lag spike they create when generating + quill_vanilla_maps = true + #Miminum search radius for quill. Used to incrase the radius of vanilla searches. For reference buried treasures are at 50 and locate is at 100 chunks + #Range: 10 ~ 600 + min_search_radius = 75 + #Makes blocks tagged as 'tinted_on_map' use their tint color. This allows for accurate biome colors for water and grass as well as other custom block that use any tint + tinted_blocks_on_maps = true + + [tweaks.placeable_books] + #Allows written books to be placed down. Requires shift clicking + written_books = true + #Allow books and enchanted books to be placed on the ground + enabled = true + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + book_power = 1.0 + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + enchanted_book_power = 1.334 + #Allow all books to be placed both vertically and horizontally + mixed_books = false + + [tweaks.zombie_horse] + #Feed a stack of rotten flesh to a skeleton horse to buff him up to a zombie horse + zombie_horse_conversion = true + #Amount of rotten flesh needed + #Range: 1 ~ 1000 + rotten_flesh = 64 + #Allows zombie horses to be ridden underwater + rideable_underwater = true + #Convert a zombie horse back by feeding it a golden carrot + zombie_horse_inverse_conversion = true + + [tweaks.noteblocks_scare] + #Noteblocks with a zombie head will scare off villagers + enabled = true + + [tweaks.bad_luck_tweaks] + #Hit a void cat, get the unluck + cat_unluck = true + #If you have unluck you are more likely to get hit by a lighting + lightning_unluck = true + + [tweaks.item_lore] + #Adds a recipe to add 'lore' strings to an item by combining it with a named nametag + enabled = true + + [tweaks.sus_recipes] + #Adds recipes to craft suspicious gravel and suspicious sand + enabled = true + + [tweaks.slimed_effect] + enabled = true + #Allow slimeballs to be thrown + throwable_slimeballs = true + #Thrown slimeballs will shortly nerf the player jump height. Disable if you don't want this effect as it can be quite powerful + #Allowed Values: NEVER, ALWAYS, NORMAL_DIFFICULTY, HARD_DIFFICULTY + hinders_jump = "NORMAL_DIFFICULTY" + #Duration of the slimed effect in ticks + #Range: 0 ~ 1000 + duration = 300 + #Chance that a slime mob will apply slimed effect on successful attack. Multiplied by the slime size + #Range: 0.0 ~ 1.0 + chance_per_slime_size = 0.15 + diff --git a/config/suppsquared-common.toml b/config/suppsquared-common.toml new file mode 100644 index 0000000..9e69298 --- /dev/null +++ b/config/suppsquared-common.toml @@ -0,0 +1,7 @@ + +[features] + #Enable plaques + plaques = true + #Enable lanterns + lanterns = true + diff --git a/config/swplanets.jsonc b/config/swplanets.jsonc new file mode 100644 index 0000000..d1ce13c --- /dev/null +++ b/config/swplanets.jsonc @@ -0,0 +1,26 @@ +{ + /* + * What should be the radius of the explosion for the laser when the blaster have the Explosion Upgrade. + * Type: Float + */ + "explosionUpgradeRadius": 2.0, + // Should the explosion upgrade for the blaster set the world on fire? + "explosionUpgradeFire": false, + /* + * What is the max energy a blaster can have ? + * Type: Long + */ + "maxBlasterEnergy": 10000, + /* + * What should be the attack modifier for the light sabers? + * Type: Integer + */ + "lightSabersAttackModifier": 13, + // Should jawa's be able to trade ? + "jawaTrade": true, + /* + * What should be the maximum amount of trades a Jawa can do. + * Type: Integer + */ + "jawaMaxTrade": 7 +} \ No newline at end of file diff --git a/config/tarotcards/tarotcards.toml b/config/tarotcards/tarotcards.toml new file mode 100644 index 0000000..19886af --- /dev/null +++ b/config/tarotcards/tarotcards.toml @@ -0,0 +1,47 @@ +# Don't change this! Version used to track needed updates. +version = 0 +tick_rate = 20 +tarot_deck_size = 22 +per_player_deck_size = false +require_card_in_curio = false +tarot_deck_applies_effects = true +level_lock = false +advancement_lock = false +effect_based_targeting = false +min_xp_level_required = { } +required_advancements = { } + +[loot] +default_loot_chance = 0.2 +do_loot_generation = true + +[cards] +death_damagebonus = 0.2 +judgement_damagechance = 0.15 +justice_damagemultiplier = 0.25 +strength_amplifier = 1 +temperance_reduction = 0.25 +wheel_of_fortune_luckbonus = 3.0 +the_tower_damagenegation = 1.0 +the_chariot_speedboost = 0.2 +the_empress_range = 3.0 +the_empress_breeding_enabled = true +the_emperpor_heroofvillagebonus = 2 +the_hanged_man_xpratio = 0.5 +the_hanged_man_xpcap = 25 +the_hermit_allyrange = 10.0 +the_hermit_armorbonus = 10.0 +the_hierophant_xpboost = 1.5 +the_star_reachboost = 0.5 +the_sun_healthboost = 0.25 +the_world_range = 3.0 +the_world_slownessamplifier = 3 +the_lovers_range = 5.0 +the_lovers_regenamplifier = 2 +the_devil_weaknessamplifier = 2 +the_fool_jumpboost = 2 +the_highpriestess_upgradecost = 3 +the_highpriestess_extra_levels = 3 +the_highpriestess_capenchants = false +the_highpriestess_taxfree = false +the_highpriestess_skip_maxed = false \ No newline at end of file diff --git a/config/tcompat-client.toml b/config/tcompat-client.toml new file mode 100644 index 0000000..5b5226f --- /dev/null +++ b/config/tcompat-client.toml @@ -0,0 +1,8 @@ + +[UI] + + [UI."Modifier Cooldowns"] + #Modifier cooldowns only display if a modifier is on cooldown + modifierCooldownsXOffset = 0 + modifierCooldownsYOffset = 0 + diff --git a/config/tconjei-client.toml b/config/tconjei-client.toml new file mode 100644 index 0000000..d699a3e --- /dev/null +++ b/config/tconjei-client.toml @@ -0,0 +1,3 @@ +#Enable tooltip under Tinker's materials +enable_tooltip = true + diff --git a/config/tconstruct-client.toml b/config/tconstruct-client.toml new file mode 100644 index 0000000..e63ac85 --- /dev/null +++ b/config/tconstruct-client.toml @@ -0,0 +1,78 @@ + +#Client only settings +[client] + #Experimental. If true, renders fluids in tanks using a dynamic model, being more efficient when the tank is static + #If false, renders fluids in tanks using a TESR, which is more efficient when the tank contents are changing + tankFluidModel = false + #If true, the game will log all material textures which do not exist in resource packs but can be added, can be helpful for moddevs or resourcepack makers + logMissingMaterialTextures = false + #If true, the game will log all modifier textures which do not exist in resource packs but can be added, can be helpful for moddevs or resourcepack makers + logMissingModifierTextures = false + #Maximum number of quads to render for items in the smeltery. Most blocks are about 6 quads, items like ingots are around 26. + #Setting this lower will cause fewer items to be renderer (but never a partial item). Set to -1 to allow unlimited quads, and 0 to disable the item renderer. + #Range: -1 ~ 32767 + maxSmelteryItemQuads = 3500 + #If true, shows modifier IDs in advanced tooltips for tools and tool parts. + #They are more intrusive than most advanced tooltip content, so this option is provided in case some mod made poor design decisions and put essential gameplay info in tooltips or for pack makers who do not need modifier info. + modifiersIDsInAdvancedTooltips = true + + #JEI configuration + [client.jei] + #If true, modifiers will be added to the JEI ingredient list. If false, they will only be visible in the modifiers recipe tab. + showModifiers = true + #If non-empty, only this material will be shown on tools in JEI (or the first valid material if this is invalid for the tool). + #If empty, all materials will show + showOnlyToolMaterial = "" + #If non-empty, only material will be shown on parts in JEI (or the first valid material if this is invalid for the part). + #If empty, all materials will show + showOnlyPartMaterial = "" + #If true, tables such as the part builder and tinker station will show all variants in JEI. If false the variants only show in the tables tab + showAllTableVariants = false + #If true, anvils will show all metal variants in JEI. If false, the variants only show in the tables tab + showAllAnvilVariants = true + #If true, smeltery and foundry controllers, drains, ducts, and chutes will show all variants in JEI. If false, the variants only shows in the smeltery tab + showAllSmelteryVariants = false + #If true, filled copper cans and fluid gauges will show in JEI. If false only empty ones will show + showFilledFluidTanks = false + #If true, variants of our potion fluid for every potion will show in JEI. If false it will be hidden, but still usable. + showPotionFluid = true + + #Settings related to modifiers + [client.modifiers] + #If true, the shield slot legging modifier will render the next offhand item above the offhand slot. + renderShieldSlotItem = true + #If true, the selected item from sleeves will render next to the offhand slit. + renderSleevesItem = true + + #Settings related to the frame helmet modifier + [client.modifiers.itemFrame] + #If true, the item frame modifier for helmets will render its items. Turning this to false makes the modifier useless. + render = true + #Offset in the X direction for the frame items. + #Range: -32768 ~ 32767 + xOffset = 0 + #Offset in the Y direction for the frame items. + #Range: -32768 ~ 32767 + yOffset = 0 + #Location of the frame on the screen. + #Allowed Values: TOP_LEFT, TOP, TOP_RIGHT, LEFT, RIGHT, BOTTOM_LEFT, BOTTOM, BOTTOM_RIGHT + location = "TOP_LEFT" + #Number of items to display in each row of the item frame. + #Range: 0 ~ 100 + itemsPerRow = 5 + + #Settings related to the minimap modifier + [client.modifiers.minimap] + #Offset in the X direction for the minimap. + #Range: -32768 ~ 32767 + xOffset = 0 + #Offset in the Y direction for the minimap. + #Range: -32768 ~ 32767 + yOffset = 0 + #Size to render the minimap. Set to 0 to disable the renderer + #Range: 0.0 ~ 100.0 + scale = 0.75 + #Location of the minimap on the screen. + #Allowed Values: TOP_LEFT, TOP, TOP_RIGHT, LEFT, RIGHT, BOTTOM_LEFT, BOTTOM, BOTTOM_RIGHT + location = "TOP_LEFT" + diff --git a/config/tconstruct-common.toml b/config/tconstruct-common.toml new file mode 100644 index 0000000..e1191c5 --- /dev/null +++ b/config/tconstruct-common.toml @@ -0,0 +1,128 @@ + +#Everything to do with gameplay +[gameplay] + #Set this to false to disable new players spawning with the Tinkers' Book. + shouldSpawnWithTinkersBook = true + #If true, extends the applicable slots for the fire protection enchantment to work better with shields. Will not impact gameplay with the vanilla enchantment. + #If false, fire protection on a shield will not reduce fire tick time. + extendFireProtectionSlots = true + #If true, extends the applicable slots for the blast protection enchantment to work better with shields. Will not impact gameplay with the vanilla enchantment. + #If false, blast protection on a shield will not reduce explosion knockback. + extendBlastProtectionSlots = true + #If true, makes the knockback resistance attribute sync its value to client side. This allows modifiers such as springing and flinging to work properly. + #If false, knockback resistance will not sync so will hopefully be 0 client side. Can be disabled in case another mod relied on it not syncing. + syncKnockbackResistance = true + #Amount of durability restored by a repair kit in terms of ingots. Does not affect the cost to create the kit, that is controlled by JSON. + #Range: 0.0 ~ 32767.0 + repairKitAmount = 2.0 + #Method of syncing on opening a tool inventory. Options: + #FULL_STACK: syncs the entire tool item stack to client. May cause issues with packet size if too many tools are inside the tool, but best for laggy servers. + #MINIMAL (default): syncs the minimal info to prevent an inventory desync if the client lost the stack. + #DISABLED: syncs nothing. May cause inventory desync issues if the client lost the tool. + #Allowed Values: FULL_STACK, MINIMAL, DISABLED + toolInventorySync = "MINIMAL" + +#Options related to recipes, limited options as a datapack allows most recipes to be modified +[recipes] + #Add a recipe that allows you to craft a piece of flint using 3 gravel + addGravelToFlintRecipe = true + #Makes the recipe to alloy netherite in the smeltery only cost 2 gold per netherite ingot. If false uses the vanilla rate of 4 gold per ingot. Disable if there are crafting duplications. + cheaperNetheriteAlloy = true + #Makes wither skeletons drop necrotic bones + witherBoneDrop = true + #Slimeballs not being usable in vanilla recipes that require slimeballs. Config option exists to disable easily in case this fix is redundant to another mod + slimeRecipeFix = true + #Fixes clear glass not being usable in vanilla recipes that require glass. Config option exists to disable easily in case this fix is redundant to another mod + glassRecipeFix = true + + [recipes.ore_rates] + + #Ore rates when melting in the melter + [recipes.ore_rates.melter] + #Number of nuggets produced per metal ore unit melted. 9 nuggets would give 1 ingot + #Range: 1 ~ 45 + nuggetsPerMetal = 12 + #Number of gem shards produced per gem ore unit melted. 4 gem shards would give 1 gem + #Range: 1 ~ 20 + shardsPerGem = 8 + + #Ore rates when melting in the smeltery + [recipes.ore_rates.smeltery] + #Number of nuggets produced per metal ore unit melted. 9 nuggets would give 1 ingot + #Range: 1 ~ 45 + nuggetsPerMetal = 12 + #Number of gem shards produced per gem ore unit melted. 4 gem shards would give 1 gem + #Range: 1 ~ 20 + shardsPerGem = 8 + + #Ore rates when melting in the foundry + [recipes.ore_rates.foundry] + #Number of nuggets produced per metal ore unit melted. 9 nuggets would give 1 ingot + #Range: 1 ~ 45 + nuggetsPerMetal = 9 + #Number of gem shards produced per gem ore unit melted. 4 gem shards would give 1 gem + #Range: 1 ~ 20 + shardsPerGem = 4 + + #Byproduct rates when melting in the foundry + [recipes.ore_rates.foundry_byproduct] + #Number of nuggets produced per metal ore unit melted. 9 nuggets would give 1 ingot + #Range: 1 ~ 45 + nuggetsPerMetal = 3 + #Number of gem shards produced per gem ore unit melted. 4 gem shards would give 1 gem + #Range: 1 ~ 20 + shardsPerGem = 4 + + #Entity head drops when killed by a charged creeper + [recipes.heads] + blaze = true + enderman = true + stray = true + husk = true + drowned = true + spider = true + cave_spider = true + piglin_brute = true + zombified_piglin = true + +#Options related to loot table injections. Note some of the changes are done via global loot managers, these only control injecting loot into loot pools +#If your modpack makes extensive loot table changes, many of these may be automatically disabled. You can also manually set up tables for more control. +[loot] + #Adds slimy saplings and seeds into various loot chests. Helps for worlds without slime islands + slimy_loot = true + #If true, ender dragons will drop scales when damaged by explosions + drop_dragon_Scales = true + #Weight of the ancient tool trade for the wandering trader. All traders randomly choose 1 rare trade, so this is roughly the chance the trade occurs compared to the vanilla options (of which there are 6). + #Range: 0 ~ 100 + wanderer_ancient_tool_weight = 6 + +#Configuration related to integration with other mods +[compatability] + #If true, integration alloy materials will be enabled if any of their components is present, allowing creating them from their molten liquid forms. + #If false, they will only be only be present if another mod adds an ingot. + #This config option is provided as while most players prefer the additional materials, some dislike having no proper ingot. Note we do have NBT ingots for these materials. + allowIngotlessAlloys = true + #Amount of fluid each chemthrower shot projectile from Immersive Engineering is worth towards our fluid effect registry. + #IE launches 8 projectiles per tick while consuming the value in their config, so dividing it by 8 makes them comparable to our projectiles. + #However, keeping it as a separate config option gives pack makers more control over how strong TiC ends up in the chemthrower. + #Range: 0.0 ~ 2.147483647E9 + immersive_engineering_chemthrower_shot_value = 1.25 + #If true, monsters will run melee modifiers when attacking with a modifiable weapon. Provided to work around potential issues with addons allowing more monsters to use tools. + #Note that if its just a specific mob or damage source that has an issue, there are tag blacklists. + allowMonsterMeleeModifiers = true + +#Features to use in debugging gameplay and mechanics, generally should not be enabled in packs +[debug] + #If true, forces integration materials to be enabled, even if the relevant metal is missing. Useful for testing material balance. + #Does not provide recipes for any of them, they will only be available to cheat in creative. + forceIntegrationMaterials = false + #Set to true if you wish to test whether a side inventory works without constantly reloading datapacks. + #Once you find an inventory works, add it to the block entity tag `tconstruct:side_inventories` and disable this option; leaving it enabled will lead to crashes and dupe bugs. + disableSideInventoryWhitelist = false + #If true, modifier crystals and creative slots can be applied to tools in the inventory on right click for operators in survival. If false, this only works for players in creative mode. + #This option makes testing of tools and modifiers easier, but may cause misleading assumptions about how these items will function for non-operators. + quickApplyToolModifiersSurvival = false + #If STACKTRACE, logs the stacktrace whenever a tool stack is created from a non-modifiable item. If WARNING (default), logs a shorter but more efficient error. If IGNORE, disables logging (useful for modpacks/players *after* they reported the issue). The stacktrace helps debug which mod is causing it, but is rather expensive on the chance they are doing it a lot. + #Allowed Values: STACKTRACE, WARNING, IGNORED + logInvalidToolStack = "IGNORED" + diff --git a/config/tectonic.json b/config/tectonic.json new file mode 100644 index 0000000..22b4a1d --- /dev/null +++ b/config/tectonic.json @@ -0,0 +1,56 @@ +{ + "biomes": { + "temperature_multiplier": 1.0, + "temperature_offset": 0.0, + "temperature_scale": 0.25, + "vegetation_multiplier": 1.0, + "vegetation_offset": 0.0, + "vegetation_scale": 0.25 + }, + "caves": { + "carvers_enabled": true, + "cheese_additive": 0.27, + "cheese_enabled": true, + "depth_cutoff_size": 0.1, + "depth_cutoff_start": 0.1, + "noodle_additive": -0.075, + "noodle_enabled": true, + "spaghetti_enabled": true + }, + "continents": { + "continents_scale": 0.13, + "erosion_scale": 0.25, + "flat_terrain_skew": 0.1, + "jungle_pillars": true, + "ocean_offset": -0.8, + "ridge_scale": 0.25, + "river_lanterns": true, + "rolling_hills": true, + "underground_rivers": true + }, + "general": { + "mod_enabled": true, + "snow_start_offset": 128 + }, + "global_terrain": { + "elevation_boost": 0.0, + "lava_tunnels": true, + "max_y": 320, + "min_y": -64, + "ultrasmooth": false, + "vertical_scale": 1.125 + }, + "islands": { + "enabled": true, + "noise_multiplier": 1.0, + "noise_offset": 0.0, + "noise_scale": 0.11 + }, + "minor_version": 1, + "oceans": { + "deep_ocean_depth": -0.45, + "monument_offset": -30, + "ocean_depth": -0.22, + "remove_frozen_ocean_ice": false + } +} \ No newline at end of file diff --git a/config/tempad-client.jsonc b/config/tempad-client.jsonc new file mode 100644 index 0000000..073497d --- /dev/null +++ b/config/tempad-client.jsonc @@ -0,0 +1,9 @@ +{ + /* + * The color of the Tempad's gui text and the portals. + * Type: Integer + */ + "color": -37120, + // Whether or not to render the blur on summoned Timedoors. This feature is experimental, having it enabled may make it incompatible with certain mods. + "renderBlur": false +} \ No newline at end of file diff --git a/config/tempad.jsonc b/config/tempad.jsonc new file mode 100644 index 0000000..c82a101 --- /dev/null +++ b/config/tempad.jsonc @@ -0,0 +1,51 @@ +{ + /* + * The distance from the player that the Tempad is summoned. + * Range: 1 - 10 + */ + "distanceFromPlayer": 3, + /* + * The amount of time in ticks that the timedoor will wait before closing itself after the owner walked through it. + * Type: Integer + */ + "timedoorWaitTime": 60, + /* + * The amount of time in ticks that the Tempad will add to the wait time when the player is in the Tempad. + * Type: Integer + */ + "timedoorAddWaitTime": 40, + // Whether or not the Tempad should allow interdimensional travel. + "allowInterdimensionalTravel": true, + // Whether or not the Tempad should allow exporting of locations onto Location Cards. + "allowExporting": true, + // Whether or not the Tempad should consume a cooldown when exporting a location. + "consumeCooldown": true, + // Whether or not the Tempad should allow teleporting to waystones. + "waystonesCompat": true, + // Whether or not the Tempad should allow teleporting to waystones from the Fabric version of Waystones by LordDeatHunter (fwaystones) (ignore on forge). + "fabricWaystonesCompat": true, + /* + * The amount of fuel that the timedoor will consume on opening of the timedoor. + * Type: Integer + */ + "timedoorFuelAmount": 180, + /* + * The amount of fuel that the timedoor can hold. + * Type: Integer + */ + "timedoorFuelCapacity": 1000, + /* + * The amount of fuel that the advanced timedoor will consume on opening of the timedoor. + * Type: Integer + */ + "advancedTimedoorFuelAmount": 1, + /* + * The amount of fuel that the advanced timedoor can hold. + * Type: Integer + */ + "advancedTimedoorFuelCapacity": 1000, + // The type of fuel that the timedoor will consume. + "timedoorFuelType": "tempad:timer", + // The type of fuel that the advanced timedoor will consume. + "advancedTimedoorFuelType": "tempad:unlimited" +} \ No newline at end of file diff --git a/config/terrablender.toml b/config/terrablender.toml new file mode 100644 index 0000000..5b07633 --- /dev/null +++ b/config/terrablender.toml @@ -0,0 +1,18 @@ +#General settings +general = {} + +#Generation settings +[generation_settings] + #The size of overworld biome regions from each mod that uses TerraBlender. + #Range: 2-6 + overworld_region_size = 3 + #The weighting of vanilla biome regions in the nether. + #Range: 0-2147483647 + vanilla_nether_region_weight = 10 + #The size of nether biome regions from each mod that uses TerraBlender. + #Range: 2-6 + nether_region_size = 2 + #The weighting of vanilla biome regions in the overworld. + #Range: 0-2147483647 + vanilla_overworld_region_weight = 10 + diff --git a/config/tgears-client.toml b/config/tgears-client.toml new file mode 100644 index 0000000..55d2c12 --- /dev/null +++ b/config/tgears-client.toml @@ -0,0 +1,5 @@ + +["The Client Settings"] + #Enable the goggles when looking at TConstruct blocks + is_goggles_enabled = true + diff --git a/config/tgears-common.toml b/config/tgears-common.toml new file mode 100644 index 0000000..946b315 --- /dev/null +++ b/config/tgears-common.toml @@ -0,0 +1,29 @@ + +["The Blaze Burner Factors(temperature = 800 * factor, rate = 10 * factor)"] + #Factor when the burner is extinguished + extinguished_factor = 0.5 + #Factor when the burner is kindled + kindled_factor = 1.0 + #Factor when the burner is seething + seething_factor = 2.0 + +["The Polishing Percentages"] + #The damage to item when polishing + polishing_damage = 0.1 + #The shield provided when polishing + polishing_shield = 0.1 + +["The Crushing"] + #The damage to tool with crushing modifier + crushing_damage = 5 + +["The Tinker's Machines"] + #The ratio of the range to the normal fan + fan_range = 1.5 + #The ratio of the speed to the normal drill + drill_speed = 2.0 + #The damage to entity from the silk touch drill + silk_touch_drill_damage = 1.0 + #The fortune level of the fortune drill + fortune_drill_level = 3 + diff --git a/config/thermal-client.toml b/config/thermal-client.toml new file mode 100644 index 0000000..65e2968 --- /dev/null +++ b/config/thermal-client.toml @@ -0,0 +1,13 @@ + +[Sounds] + #If TRUE, some 'Thermal Series' Blocks will have ambient sounds. + "Ambient Block Sounds" = true + #If TRUE, some 'Thermal Series' Mobs will have ambient sounds. + "Ambient Mob Sounds" = true + +[Holidays] + #If TRUE, some Mobs will have festive hats on certain days. Disabling this will disable it for ALL mobs, including vanilla. May require client restart. + "Festive Mobs" = true + #If TRUE, some vanilla Mobs will also have festive hats on certain days. May require client restart. + "Festive Vanilla Mobs" = true + diff --git a/config/thermal-common.toml b/config/thermal-common.toml new file mode 100644 index 0000000..b86fad8 --- /dev/null +++ b/config/thermal-common.toml @@ -0,0 +1,41 @@ + +[World] + + [World.Features] + + [World.Features."Oil Sand"] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Silver] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Lead] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Nickel] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features."Rubberwood Trees"] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Cinnabar] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Sulfur] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Tin] + #Whether this feature should naturally spawn in the world. + Enable = true + + [World.Features.Niter] + #Whether this feature should naturally spawn in the world. + Enable = true + diff --git a/config/thermal_integration-common.toml b/config/thermal_integration-common.toml new file mode 100644 index 0000000..a1579f2 --- /dev/null +++ b/config/thermal_integration-common.toml @@ -0,0 +1,31 @@ + +[Materials] + #If TRUE, Thermal Series' Rose Gold material and recipes are enabled. + "Rose Gold" = true + #If TRUE, Thermal Series' Steel material and recipes are enabled. + Steel = true + +["Mod Compatibility"] + #If TRUE, mod integration support for Biomes O' Plenty is enabled, if the mod is loaded. + "Biomes O' Plenty" = true + #If TRUE, mod integration support for Create is enabled, if the mod is loaded. + Create = true + #If TRUE, mod integration support for Dyenamics is enabled, if the mod is loaded. + Dyenamics = true + #If TRUE, mod integration support for Farmer's Delight is enabled, if the mod is loaded. + "Farmer's Delight" = true + #If TRUE, mod integration support for Immersive Engineering is enabled, if the mod is loaded. + "Immersive Engineering" = true + #If TRUE, mod integration support for Mekanism is enabled, if the mod is loaded. + Mekanism = true + #If TRUE, mod integration support for Mystical Agriculture is enabled, if the mod is loaded. + "Mystical Agriculture" = true + #If TRUE, mod integration support for Quark is enabled, if the mod is loaded. + Quark = true + #If TRUE, mod integration support for Redstone Arsenal is enabled, if the mod is loaded. + "Redstone Arsenal" = true + #If TRUE, mod integration support for Refined Storage is enabled, if the mod is loaded. + "Refined Storage" = true + #If TRUE, mod integration support for Tinker's Construct is enabled, if the mod is loaded. + "Tinker's Construct" = true + diff --git a/config/theurgy-client.toml b/config/theurgy-client.toml new file mode 100644 index 0000000..ea91131 --- /dev/null +++ b/config/theurgy-client.toml @@ -0,0 +1,7 @@ + +#Rendering Settings +[rendering] + #True to show the icon of the source item on top of the sulfur jar icon, false to hide it (source item will still be shown on hover in item name). + #Disabling this setting may improve performance in inventories with lots of sulfur item stacks. + renderSulfurSourceItem = true + diff --git a/config/tinkerslevellingaddon-client.toml b/config/tinkerslevellingaddon-client.toml new file mode 100644 index 0000000..e1bc150 --- /dev/null +++ b/config/tinkerslevellingaddon-client.toml @@ -0,0 +1,12 @@ + +#Client only settings +[client] + #If true, shows chat message on tool level ups. + message = true + #If true, uses alternative level name suffix for high level tools. + #Instead of appending '+' signs for each consecutive level appearance, +1, +2, +3, etc. notation will be used. + squashPluses = false + # + #Allowed Values: NONE, CHIME, SNARE_DRUM, YAY, BONK + sound = "SNARE_DRUM" + diff --git a/config/toastcontrol-common.toml b/config/toastcontrol-common.toml new file mode 100644 index 0000000..c340ac8 --- /dev/null +++ b/config/toastcontrol-common.toml @@ -0,0 +1,50 @@ + +#Client Configuration +[client] + + [client.blocked_toasts] + #If advancement toasts are blocked. + advancements = true + #If recipe toasts are blocked. + recipes = true + #If system toasts are blocked. + system = false + #If tutorial toasts are blocked. + tutorial = true + #If all vanilla toasts are blocked. + global_vanilla = false + #If all non-vanilla toasts are blocked. + global_modded = false + #If all toasts are blocked. + global = false + #Toast Classes that are blocked from being shown. + blocked_classes = [] + + [client.visual_options] + #How long a toast must be on the screen for, in ticks. Use 0 to use the default time. + #Range: 0 ~ 4000 + force_time = 0 + #If toasts are translucent. + translucent = true + #If toasts are transparent. Overrides translucency. + transparent = false + #How many toasts will be displayed on screen at once. + #Range: 1 ~ 7 + toast_count = 3 + #The X offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + x_offset = 0 + #The Y offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + y_offset = 0 + #If toasts automatically pop into the screen without animations. + no_slide = false + #If toasts show on the left of the screen. + start_left = false + #If toasts will come in from the top of the screen, rather than the side. + top_down = false + + [client.debug] + #If toast classes are printed when they are shown. + print_classes = false + diff --git a/config/tombstone-client.toml b/config/tombstone-client.toml new file mode 100644 index 0000000..da6dffa --- /dev/null +++ b/config/tombstone-client.toml @@ -0,0 +1,80 @@ + +#Personal Options that can be edited even on server +[client] + #Shows the magic circles when using some items [false/true|default:true] + show_magic_circle = true + #Shows all the infos in the tooltip of items [false/true|default:true] + show_enhanced_tooltips = true + #Highlights the tomb from far when holding the key [false/true|default:true] + highlight = true + #Skips the Respawn Screen [false/true|default:false] + skip_respawn_screen = false + #Shows shield particles on villager [false/true|default:true] + show_shield_particle = true + #Allows the ghost to appear around you during Halloween [false/true|default:true] + allow_halloween_ghost = true + #Shows only the elapsed minecraft days since the death on graves [false/true|default:false] + date_in_mc_time = false + #Display or not the messages of gain of points in knowledge of death [false/true|default:true] + display_knowledge_message = true + #Display or not the messages of earned of points in Alignment [false/true|default:true] + display_alignment_message = true + #Equips elytra in priority when recovering your lost items [false/true|default:false] + equip_elytra_in_priority = false + #Equips shield in priority when recovering your lost items [false/true|default:false] + equip_shield_in_priority = false + #Sorts the inventory by filling the last slots first [false/true|default:false] + reverse_inventory_sorting = false + #Automatically equip magic books in Curios slot [false/true|default:false] + equip_curio_slot_magic_book = false + #Shows the use of the Tombstone's enchantments in tooltip [false/true|default:true] + show_info_on_enchantment = true + #Favor the tools on the hotbar when recovering a grave [false/true|default:false] + priorize_tool_on_hotbar = false + #Allows to activate a grave by sneaking [false/true|default:true] + activate_grave_by_sneaking = true + #Allows your grave to appear in water [false/true|default:true] + allow_grave_in_water = true + #Decimal value for the color of the particles when using magic items [0..16777215|default:125656] + #Range: 0 ~ 16777215 + particle_casting_color = 14937088 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_death_date = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_rip = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:5991302] + #Range: 0 ~ 16777215 + text_color_owner = 5991302 + #Decimal value of the fog color [0..16777215|default:125656] + #Range: 0 ~ 16777215 + fog_color = 16777215 + #Fog density around the graves [NONE/LOW/NORMAL/HIGH|default:NORMAL] + #Allowed Values: NONE, LOW, NORMAL, HIGH + fog_density = "NORMAL" + #Favorite grave + #Allowed Values: GRAVE_SIMPLE, GRAVE_NORMAL, GRAVE_CROSS, TOMBSTONE, SUBARAKI_GRAVE, GRAVE_ORIGINAL + favorite_grave = "GRAVE_SIMPLE" + #Favorite grave marble + #Allowed Values: DARK, WHITE, BLUE, GREEN, CARMIN + favorite_grave_marble = "DARK" + #Defines the rule to use for grave's skin [DEFAULT/FORCE_NORMAL/FORCE_HALLOWEEN|default:DEFAULT] + #Allowed Values: DEFAULT, FORCE_NORMAL, FORCE_HALLOWEEN, FORCE_CHRISTMAS, FORCE_SPRING_BLOOM + grave_skin_rule = "DEFAULT" + #Defines when to automatically equip your items [NEVER/GRAVE_RECOVERY/DEATH_RESPAWN/ALWAYS|default:ALWAYS] + #Allowed Values: NEVER, GRAVE_RECOVERY, DEATH_RESPAWN, ALWAYS + auto_equip_rule = "ALWAYS" + #Defines the type of marker when holding in hand some items like the Grave's Key [WING/SPARK/NOTE/BOX|default:WING] + #Allowed Values: WING, SPARK, NOTE, BOX + marker_type = "WING" + #Defines the font to use in Tombstone's screens (only for english, french and spanish languages) [FANTASY/VANILLA|default:FANTASY] + #Allowed Values: FANTASY, VANILLA + font_rule = "FANTASY" + #Display the combinations in item tooltip [false/true|default:true] + show_tooltip_combine = true + #Prevent night vision from flashing when less than 5 seconds left [false/true|default:true] + no_blinking_nightvision = true + #Scales Tombstone guiscreens to be larger as possible [false/true|default:true] + scale_guiscreens = true + diff --git a/config/tombstone-common.toml b/config/tombstone-common.toml new file mode 100644 index 0000000..22bc6d8 --- /dev/null +++ b/config/tombstone-common.toml @@ -0,0 +1,205 @@ + +#Options related to player's death +[player_death] + #Whether to unlock access to a grave if the player has been killed by another player [false/true|default:true] + pvp_unlock_grave = true + #Whether to restore beneficial effects after a player dies [false/true|default:true] + restore_effects_on_death = false + #Only abandoned graves can have losses of items (based on the decay_time) [false/true|default:true] + loss_on_death_only_for_abandoned_grave = true + #Only stackable items can be lost on death [false/true|default:true] + loss_on_death_only_for_stackable_items = true + #Prevents death outside the borders of the world [false/true|default:true] + prevent_death_outside_world_border = true + #Prevents death outside the build height [false/true|default:false] + prevent_death_outside_build_height = false + #Allows to fill an existing grave instead of creating a new one [false/true|default:true] + allow_to_fill_existing_grave = true + #Caps the duration of Ghostly Shape effect to 10 seconds when teleporting with a Grave's Key [false/true|default:true] + nerf_ghostly_shape_teleport_with_key = true + #The radius in which items should be collected when a grave is spawned [1..10|default:5] + #Range: 1 ~ 10 + sniffer_range = 5 + #The chance that creatures appear after the contents of a grave are retrieved [0..100|default:0] + #Range: 0 ~ 100 + chance_mob_on_grave_recovery = 0 + #Percent of stolen experience by killing a player when PvP mode is enabled [0..100|default:30] + #Range: 0 ~ 100 + pvp_stolen_xp = 30 + #The chance that some items are lost on death [0..100|default:0] + #Range: 0 ~ 100 + chance_loss_on_death = 0 + #The percentage of items that are lost on death [0..100|default:0] + #Range: 0 ~ 100 + percent_loss_on_death = 0 + #Graveless Dimensions + no_grave_dimension = [] + +#Options related to player's alignment +[alignment] + #Points for freeing a soul in a receptacle [0..500|default:50] + #Range: 0 ~ 500 + points_free_soul_receptacle = 50 + #Points for plundering a player's grave [-500..0|default:-10] + #Range: -500 ~ 0 + points_plunder_player_grave = -10 + #Points for zombie villager exorcism [0..500|default:20] + #Range: 0 ~ 500 + points_exorcism_zombie_villager = 20 + #Points for zombifying a villager [-500..0|default:-20] + #Range: -500 ~ 0 + points_zombify_villager = -20 + #Points for killing some entities decreasing alignment [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_decreasing_alignment = -10 + #Points for killing some entities increasing alignment [0..500|default:10] + #Range: 0 ~ 500 + points_kill_increasing_alignment = 10 + #Points for tablet of cupidity [-500..0|default:-10] + #Range: -500 ~ 0 + points_tablet_of_cupidity = -10 + #Points for Pray of Protection [0..500|default:20] + #Range: 0 ~ 500 + points_pray_of_protection = 20 + #Points for using a Potion of Earthly Garden [0..500|default:10] + #Range: 0 ~ 500 + points_earthly_garden = 10 + #Points for killing one of your tamed creatures [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_tamed_creature = -10 + +#Miscellaneous options +[general] + #Allows teleportation to other dimensions [false/true|default:true] + teleport_dim = true + #Increases the minimum time without sleeping for phantom spawn around player based on their level in Knowledge of Death [false/true|default:true] + knowledge_reduce_phantom_spawn = true + #Minimum time without sleeping for phantom to spawn around players [1200..MAX|default:72000] + #Range: > 1200 + time_for_phantom_spawn = 72000 + #Cooldown in minutes to use the command tbrequestteleport [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_request_teleport = -1 + #Cooldown in minutes to use the command tbteleportdeath [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_teleport_death = -1 + #Beneficial effects that can't used by certain features such as ankh of prayer, lollipop, scroll of preservation, alchemy perk and magic siphon enchantment + unhandled_beneficial_effects = ["astralsorcery:potiontimefreeze"] + #Harmful effects that can't used by certain features such as tablet of cupidity and the enchantment plague bringer + unhandled_harmful_effects = ["minecraft:nausea"] + #Allows to limit the damages done by Decrepitude + #Range: > 1 + decrepitude_max_damage = 2147483647 + +#Allows to define the conditions for a village siege to begin +[village_siege] + #Allows to handle village sieges [false/true|default:true] + handle_village_siege = true + #Logs the different states of a village siege while searching for an adequate place [false/true|default:false] + log_siege_state = false + #The creatures of the siege have a glowing effect (only uses this for test purposes) [false/true|default:false] + glowing_creature_test = false + #Allows to use the positions of creative players to define the siege location [false/true|default:true] + allow_creative_players_for_siege = true + #Undeads always wear a helm when sieging [false/true|default:false] + undead_wear_helm_in_siege = false + #Mobs in siege are persistent [false/true|default:false] + persistent_mob_in_siege = false + #Shuffles the list of players before testing the siege location [false/true|default:true] + shuffle_players_for_siege = true + #Chance for a siege to occur [0..100|default:10] + #Range: 0 ~ 100 + siege_chance = 10 + #Maximum of creatures appearing in a siege [0..100|default:20] + #Range: 0 ~ 100 + siege_max_creature = 20 + #Delay in seconds for a second test of siege when the first failed [0..1200|default:200] + #Range: 0 ~ 1200 + delay_siege_test = 200 + +#For settings related to magic items +[magic_item] + #Damaged items can be recycled with the Book of Recycling + can_recycle_damaged_item = true + #The items that can't be recycled by the Book of Recycling + denied_item_to_recycle = [] + #Allows to disenchant enchanted books with the Book of Disenchantment + can_disenchant_enchanted_book = false + #Allows lost tablets to find locations outside the current world [false/true|default:true] + lost_tablet_search_outside_world = true + #Allows lost tablets to find modded structures [false/true|default:true] + lost_tablet_modded_structure = true + #The structures that can't be discovered by lost tablets + lost_tablet_denied_structures = [] + #The worlds that can't be discovered by lost tablets + lost_tablet_denied_worlds = [] + +#For settings related to decorative tombs and magic items +[decorative_grave] + #Allows to replace a grave plate already set on a grave [false/true|default:true] + can_replace_grave_plate = true + #Allows the merchant grave gardian [false/true|default:true] + allow_grave_gardian = true + #Minimum distance between Grave Gardians to spawn [10..200|default:100] + #Range: 10 ~ 200 + distance_between_grave_guardian = 100 + #Time in minutes for a Grave Guardian to restock its offers [1..1000|default:60] + #Range: 1 ~ 1000 + restock_time_grave_guardian = 60 + #Time in minutes to check if a soul appears on a grave [1..10000|default:10] + #Range: 1 ~ 10000 + soul_time = 10 + #Chance on 100 that a soul appears on a grave [0..100|default:25] + #Range: 0 ~ 100 + soul_chance = 25 + +#Options related to the command recovery and auto-save of players +[recovery] + #Enables to backup automatically players [false/true|default:true] + recovery_player_enable = true + #Backup players on death [false/true|default:false] + backup_on_death = true + #Time in minutes between players' backups [10..1000|default:40] + #Range: 5 ~ 1000 + recovery_player_timer = 19 + #Maximum number of backups per player [5..100|default:15] + #Range: 5 ~ 100 + recovery_player_max_saves = 15 + #Log when players are automatically back up [false/true|default:false] + log_auto_backup = false + +#Options related to looted items +[loot] + #Maximum xp rewarded with a Lost Page of Erdös [100..200000|default:2000] + #Range: 100 ~ 200000 + max_xp_lost_page = 2000 + #Denied mods for equipment drops + denied_modid_for_equipment = ["tombstone"] + #Only vanilla drops for equipment [false/true|default:false] + only_vanilla_for_equipment = false + +#Allows to enable some features related to others mods +[compatibility] + #Allows to auto-equip the slots from Curio mod [false/true|default:true] + curio_auto_equip = true + #Allows to provide a default support for bundle in Curio mod [false/true|default:true] + curio_bundle_support = true + #Allows to provide a magic book slot in Curio mod used to enchant with a soul [false/true|default:true] + curio_magic_book_support = true + #Keeps the cosmetic armor when you die [false/true|default:true] + keep_cosmetic_armor = true + #Ensure the potion effects to stay on the player after returning from end conquered [false/true|default:true] + preserve_effects_on_return_end_conquered = true + +#Allows to enable special events +[special_events] + #Allows Halloween [false/true|default:true] + allow_halloween = true + #Allows Christmas [false/true|default:true] + allow_christmas = true + #Allows Spring Bloom [false/true|default:true] + allow_spring_bloom = true + #Allows you to set a Special Event as permanent [NONE/HALLOWEEN/CHRISTMAS/SPRING_BLOOM|default:NONE] + #Allowed Values: NONE, HALLOWEEN, CHRISTMAS, SPRING_BLOOM + force_special_event = "NONE" + diff --git a/config/tombstone-server.toml b/config/tombstone-server.toml new file mode 100644 index 0000000..4f63d9a --- /dev/null +++ b/config/tombstone-server.toml @@ -0,0 +1,191 @@ + +#Options related to player's death +[player_death] + #The time in minutes before a grave is unlocked to anyone [-1..MAX|default:-1|disabled:-1] + #Range: > -1 + decay_time = -1 + #Experience lost on death [0..100|default:95] + #Range: 0 ~ 100 + xp_loss_on_death = 95 + #The duration of the Ghostly Shape effect in seconds [0..MAX|default:120] + #Range: > 0 + ghostly_shape_duration = 120 + +#Allows to customize or disable the enchantments +[enchantments] + #Enables the enchantment Spectral Bite [false/true|default:true] + enable_enchantment_spectral_bite = true + #Enables the enchantment Soulbound [false/true|default:true] + enable_enchantment_soulbound = true + #Enables the enchantment Magic Siphon [false/true|default:true] + enable_enchantment_magic_siphon = true + #Enables the enchantment Plague Bringer [false/true|default:true] + enable_enchantment_plague_bringer = true + #Enables the enchantment Curse of Bones [false/true|default:true] + enable_enchantment_curse_of_bones = true + #Enables the enchantment Blessing [false/true|default:true] + enable_enchantment_blessing = true + #Enables the enchantment Frostbite [false/true|default:true] + enable_enchantment_frostbite = true + #Enables the enchantment Spectral Conjurer [false/true|default:true] + enable_enchantment_spectral_conjurer = true + #Enables the enchantment Incurable Wounds [false/true|default:true] + enable_enchantment_incurable_wounds = true + #Enables the enchantment Decrepitude [false/true|default:true] + enable_enchantment_decrepitude = true + #Enables the enchantment Sanctified [false/true|default:true] + enable_enchantment_sanctified = true + #Enables the enchantment Ruthless Strike [false/true|default:true] + enable_enchantment_ruthless_strike = true + #Allows Soulbound at enchanting table [false/true|default:false] + soulbound_enchanting_table = true + #Allows Spectral Bite at enchanting table [false/true|default:false] + spectral_bite_enchanting_table = true + #Allows Magic Siphon at enchanting table [false/true|default:false] + magic_siphon_enchanting_table = true + #Allows Plague Bringer at enchanting table [false/true|default:false] + plague_bringer_enchanting_table = true + #Allows Curse of Bones at enchanting table [false/true|default:false] + curse_of_bones_enchanting_table = true + #Allows Blessing at enchanting table [false/true|default:false] + blessing_enchanting_table = true + #Allows Frostbite at enchanting table [false/true|default:false] + frostbite_enchanting_table = true + #Allows Spectral Conjurer at enchanting table [false/true|default:false] + spectral_conjurer_enchanting_table = true + #Allows Incurable Wounds at enchanting table [false/true|default:false] + incurable_wounds_enchanting_table = true + #Allows Decrepitude at enchanting table [false/true|default:false] + decrepitude_enchanting_table = true + #Allows Sanctified at enchanting table [false/true|default:false] + sanctified_enchanting_table = true + #Allows Ruthless Strike at enchanting table [false/true|default:false] + ruthless_strike_enchanting_table = true + +#Allows to customize or disable the potions +[potions] + #Allows Earthly Garden [false/true|default:true] + allow_earthly_garden = true + #Allows Bait [false/true|default:true] + allow_bait = true + #Allows Frostbite [false/true|default:true] + allow_frostbite = true + #Allows Darkness [false/true|default:true] + allow_darkness = true + #Allows Discretion [false/true|default:true] + allow_discretion = true + #Allows Restoration [false/true|default:true] + allow_restoration = true + +#For settings related to magic items +[magic_item] + #Chance for players to obtain an enchanted Grave's Key on death (-1 disables the Perk Jailer) [-1..100|default:0] + #Range: -1 ~ 100 + chance_enchanted_grave_key = 0 + #Prevents to craft Enchanted Grave Key [false/true|default:false] + disable_enchanted_grave_key_recipe = false + #Scroll duration [1200..120000|default:12000] + #Range: 1200 ~ 120000 + scroll_duration = 12000 + #Defines experience lost when storing experience in a Scroll of Knowledge + #Range: 0 ~ 90 + scroll_of_knowledge_loss = 0 + #Cooldown in second after using a tablet [60..1200|default:300] + #Range: 60 ~ 1200 + tablet_cooldown = 300 + #The cooldown in minutes to reset the perks with the Book of Oblivion [20..1440|default:120] + #Range: 20 ~ 1440 + cooldown_reset_perk = 120 + +#For settings related to decorative tombs and magic items +[decorative_grave] + #The cooldown in minutes to pray with the Ankh [1..60|default:60] + #Range: 1 ~ 60 + prayer_cooldown = 60 + +#Allows to disable some magic items +[allowedMagicItems] + #Voodoo Poppet [false/true|default:true] + allow_voodoo_poppet = true + #Receptacle of Familiar [false/true|default:true] + allow_receptacle_of_familiar = true + #Book of Disenchantment [false/true|default:true] + allow_book_of_disenchantment = true + #Scroll of Preservation [false/true|default:true] + allow_scroll_of_preservation = true + #Grave's Key [false/true|default:true] + allow_grave_key = true + #Scroll of Knowledge [false/true|default:true] + allow_scroll_of_knowledge = true + #Tablet of Recall [false/true|default:true] + allow_tablet_of_recall = true + #Tablet of Home [false/true|default:true] + allow_tablet_of_home = true + #Tablet of Assistance [false/true|default:true] + allow_tablet_of_assistance = true + #Tablet of Guard [false/true|default:true] + allow_tablet_of_guard = true + #Tablet of Cupidity [false/true|default:true] + allow_tablet_of_cupidity = true + #Scroll of Unstable Intangibility [false/true|default:true] + allow_scroll_of_unstable_intangibility = true + #Scroll of Feather Fall [false/true|default:true] + allow_scroll_of_feather_fall = true + #Scroll of Purification [false/true|default:true] + allow_scroll_of_purification = true + #Scroll of True Sight [false/true|default:true] + allow_scroll_of_true_sight = true + #Lost Tablet [false/true|default:true] + allow_lost_tablet = true + #Scroll of Reach [false/true|default:true] + allow_scroll_of_reach = true + #Scroll of Lightning Resistance [false/true|default:true] + allow_scroll_of_lightning_resistance = true + #Scroll of Frost Resistance [false/true|default:true] + allow_scroll_of_frost_resistance = true + #Scroll of Aquatic Life [false/true|default:true] + allow_scroll_of_aquatic_life = true + #Scroll of Mercy [false/true|default:true] + allow_scroll_of_mercy = true + #Dust of Vanishing [false/true|default:true] + allow_dust_of_vanishing = true + #Dust of Frost [false/true|default:true] + allow_dust_of_frost = true + #Enchanted Bundle [false/true|default:true] + allow_enchanted_bundle = true + #Book of Recycling [false/true|default:true] + allow_book_of_recycling = true + #Book of Repairing [false/true|default:true] + allow_book_of_repairing = true + #Book of Magic Impregnation [false/true|default:true] + allow_book_of_magic_impregnation = true + #Book of Scribe [false/true|default:true] + allow_book_of_scribe = true + #Book of Soulbound [false/true|default:true] + allow_book_of_soulbound = true + #Book of Oblivion [false/true|default:true] + allow_book_of_oblivion = true + #Smoke Ball [false/true|default:true] + allow_smoke_ball = true + #Seeker Rod [false/true|default:true] + allow_seeker_rod = true + #Christmas Hat [false/true|default:true] + allow_christmas_hat = true + #Bag of Seeds [false/true|default:true] + allow_bag_of_seeds = true + #Magic Scroll [false/true|default:true] + allow_magic_scroll = true + #Gemstone of Familiar [false/true|default:true] + allow_gemstone_of_familiar = true + #Gemstone of Merchant [false/true|default:true] + allow_gemstone_of_merchant = true + #Gemstone of Prayer [false/true|default:true] + allow_gemstone_of_prayer = true + #Gemstone of Guardian [false/true|default:true] + allow_gemstone_of_guardian = true + +#Allows to enable some features related to others mods +[compatibility] + #fix the RepairCost:0 added by the anvil & grindstone in nbt preventing theses items to stack [false/true|default:true] + fix_repair_cost_zero = true + diff --git a/config/toms_storage-common.toml b/config/toms_storage-common.toml new file mode 100644 index 0000000..f207293 --- /dev/null +++ b/config/toms_storage-common.toml @@ -0,0 +1,14 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for Tom's Simple Storage +#The settings have been moved to toms_storage-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#List of multiblock inventory blocks +multiblockInv = [""] +#List of mod ids whose blocks is ignored by the inventory connector +blockedMods = [""] +#List of block ids ignored by the inventory connector +blockedBlocks = [""] + diff --git a/config/toolbelt-client.toml b/config/toolbelt-client.toml new file mode 100644 index 0000000..a335174 --- /dev/null +++ b/config/toolbelt-client.toml @@ -0,0 +1,20 @@ + +#Options for customizing the display of tools on the player +[display] + #If set to FALSE, the belts and tools will NOT draw on players. + showBeltOnPlayers = true + #Changes the scale of items on the belt. + #Range: 0.1 ~ 2.0 + beltItemScale = 0.5 + +#Options for customizing the radial menu +[menu] + #If set to TRUE, releasing the menu key (R) will activate the swap. Requires a click otherwise (default). + releaseToSwap = false + #If set to TRUE, the radial menu will try to prevent the mouse from leaving the outer circle. + clipMouseToCircle = false + #If set to TRUE, the radial menu will allow clicking outside the outer circle to activate the items. + allowClickOutsideBounds = false + #If set to TRUE, the radial menu will always display all the slots, even when empty, and will allow choosing which empty slot to insert into. + displayEmptySlots = false + diff --git a/config/toolbelt-common.toml b/config/toolbelt-common.toml new file mode 100644 index 0000000..a7c07ad --- /dev/null +++ b/config/toolbelt-common.toml @@ -0,0 +1,14 @@ + +[general] + #If set to FALSE, support for sewing recipes will not be enabled regardless of the mod's presence. + enableSewingKitSupport = true + #If AUTO, the crafting and upgrade recipes will use the Sewing mechanics if the Sewing Kit mod is present. Off disables anvil upgrading regardless. + #Allowed Values: OFF, AUTO, ON + anvilUpgrading = "AUTO" + #If AUTO, the belt and pouch crafting recipes will be disabled if the Sewing Kit mod is present, sewing recipes will be used instead. + #Allowed Values: OFF, AUTO, ON + enableGridCraftingRecipes = "AUTO" + #If AUTO, the belt slot will be disabled if Curios is present. If OFF, the belt slot will be disabled permanently. + #Allowed Values: OFF, AUTO, ON + customBeltSlotMode = "ON" + diff --git a/config/toolstats.json b/config/toolstats.json new file mode 100644 index 0000000..f44dafa --- /dev/null +++ b/config/toolstats.json @@ -0,0 +1,12 @@ +{ + "showEnchantability": true, + "alwaysShowEnchantability": false, + "showRepairCost": true, + "alwaysShowRepairCost": false, + "showHarvestLevel": true, + "showEfficiency": true, + "showSwordEfficiency": false, + "showDurability": true, + "alwaysShowDurability": false, + "showHorseArmorProtection": true +} \ No newline at end of file diff --git a/config/torchmaster.toml b/config/torchmaster.toml new file mode 100644 index 0000000..e0b98aa --- /dev/null +++ b/config/torchmaster.toml @@ -0,0 +1,50 @@ + +[General] + #Show additional information in the tooltip of certain items and blocks + beginnerTooltips = true + #By default, mega torches only block natural spawns (i.e. from low light levels). Setting this to false will also block spawns from spawners + blockOnlyNaturalSpawns = true + #If this setting is enabled, the mega torch will block all natural spawn attempts from Lycanites Mobs in its radius + lycanitesMobsBlockAll = true + #If this setting is enabled, the mega torch will block village sieges from zombies + blockVillageSieges = true + #The radius of the mega torch in each direction (cube) with the torch at its center + #Range: > 0 + megaTorchRadius = 64 + #The radius of the dread lamp in each direction (cube) with the torch at its center + #Range: > 0 + dreadLampRadius = 64 + #Use this setting to override the internal lists for entity blocking + #You can use this to block more entities or even allow certain entities to still spawn + #The + prefix will add the entity to the list, effectivly denying its spawns + #The - prefix will remove the entity from the list (if necessary), effectivly allowing its spawns + #Note: Each entry needs to be put in quotes! Multiple Entries should be separated by comma. + #Block zombies: "+minecraft:zombie" + #Allow creepers: "-minecraft:creeper" + megaTorchEntityBlockListOverrides = [] + #Same as the mega torch block list override, just for the dread lamp + #Block squid: +minecraft:squid + #Allow pigs: -minecraft:pig + dreadLampEntityBlockListOverrides = [] + #The radius in which the feral flare should try to place lights + #Range: 1 ~ 127 + feralFlareRadius = 16 + #Controls how often the flare should try to place lights. 1 means every tick, 10 every 10th tick, etc + #Range: > 1 + feralFlareTickRate = 5 + #The target minimum light level to place lights for + #Range: 0 ~ 15 + feralFlareMinLightLevel = 10 + #The maximum amount of invisble lights a feral flare lantern can place. Set to 0 to disable light placement. + #Warning: Setting this value too high in conjunction with the feralFlareMinLightLevel and Radius can lead to world corruption! + #(Badly compressed packet error) + #Range: 0 ~ 32767 + feralFlareLanternLightCountHardcap = 255 + #Durability of the frozen pearl. Each removed light will remove one charge from the pearl. Set to 0 to disable durability + #Range: 0 ~ 32767 + frozenPearlDurability = 1024 + #Print entity spawn checks to the debug log + logSpawnChecks = false + #Configures the spawn check to be more aggressive, effectivly overriding the CheckSpawn results of other mods + aggressiveSpawnChecks = false + diff --git a/config/tradingpost-server.toml b/config/tradingpost-server.toml new file mode 100644 index 0000000..9e9523d --- /dev/null +++ b/config/tradingpost-server.toml @@ -0,0 +1,17 @@ +#Range on xz plane trading post should search for merchants. +#Range: 1 ~ 96 +horizontal_range = 24 +#Disable traders on the trading screen when they wander out of range. +enforce_range = false +#Teleport xp from trading from villagers on top of the trading post. +teleport_xp = true +#Range on y axis trading post should search for merchants. +#Range: 1 ~ 96 +vertical_range = 16 +#Trader entities disabled from being found by the trading post. +#Modders may add their own incompatible trader entities via the "tradingpost:blacklisted_traders" entity tag. +#Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. +trader_blacklist = [] +#Close trading post interface when all traders have become unavailable. +close_empty_screen = true + diff --git a/config/transition.json b/config/transition.json new file mode 100644 index 0000000..9467fb4 --- /dev/null +++ b/config/transition.json @@ -0,0 +1,5 @@ +{ + "version": 1, + "userConsentedToSendCrashReports": false, + "disableRecipeBookCodes": false +} \ No newline at end of file diff --git a/config/transmog.json b/config/transmog.json new file mode 100644 index 0000000..762c30b --- /dev/null +++ b/config/transmog.json @@ -0,0 +1,5 @@ +{ + "renderOption": "IN_WORLD", + "tooltipDetailLevel": "FULL", + "pvpDisableDuration": 0 +} \ No newline at end of file diff --git a/config/trashcans-common.toml b/config/trashcans-common.toml new file mode 100644 index 0000000..b8414d3 --- /dev/null +++ b/config/trashcans-common.toml @@ -0,0 +1,3 @@ +# Allowed values: true, false - Default: false +allowVoidingNuclearWaste = false + diff --git a/config/trashslot-common.toml b/config/trashslot-common.toml new file mode 100644 index 0000000..dacc058 --- /dev/null +++ b/config/trashslot-common.toml @@ -0,0 +1,11 @@ +#TrashSlot will show a hint the first time the trash slot is toggled off or can be enabled on a supported screen. Set to false to disable. +enableHints = true +#Not recommended, but this will allow you to use the keybinds for deleting items even if the trash slot itself is hidden. +allowDeletionWhileTrashSlotIsInvisible = false +#List of items that cannot be deleted, in comma-separated format of "modid:name". +deletionDenyList = [] +#This causes the deletion slot to delete items instantly, similar to Creative Mode. +instantDeletion = false +#Set to true if you want the delete keybindings to work in creative as well. Note: Items will be deleted permanently in creative, regardless of instantDeletion setting! +enableDeleteKeysInCreative = true + diff --git a/config/travelerstitles-forge-1_20.toml b/config/travelerstitles-forge-1_20.toml new file mode 100644 index 0000000..776bb89 --- /dev/null +++ b/config/travelerstitles-forge-1_20.toml @@ -0,0 +1,216 @@ + +["Traveler's Titles"] + + ########################################################################################################### + ## Biome Title settings. + ########################################################################################################### + ["Traveler's Titles"."Biome Titles"] + "Enable Biome Titles" = true + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 50 + "Text Display Time" = 50 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-Out Time" = 10 + # The minimum amount of time in ticks that must pass after a biome title is displayed before + # another can be displayed. + # Useful for preventing the player from being spammed if they are traveling quickly. + # 20 ticks = 1 second. + # Default: 80 + "Text Cooldown Time" = 80 + # The text's default RGB color. + # Default: "ffffff" + "Default Text Color" = "ffffff" + # The text's scale. + # Default: 2.1 + "Text Size" = 2.1 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -33.0 + "Text Y Offset" = -33 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Biomes that should not have any title displayed when the player enters them. + # Example: "[minecraft:plains, minecraft:desert]" + # Default: "[minecraft:the_end, minecraft:river, minecraft:frozen_river]" + "Blacklisted Biomes" = "[minecraft:the_end, minecraft:river, minecraft:frozen_river]" + # Traveler's Titles tracks a list of biomes the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few biomes. + # This is the size of that list. + # For example, if this value is 5, then your 5 most recent biomes will be saved. + # Default: 5 + "Number of Most Recent Biomes Saved" = 5 + # Whether or not the biome text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # Traveler's Titles tracks a list of biomes the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few biomes. + # This option determines whether or not that list should be cleared every time + # the player changes dimensions. + # Default: true + "Reset Biome Cache When Changing Dimensions" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display biome titles when the player is exposed to the skylight. + # This prevents biome titles from showing while the player is underground. + # Default: true + "Only Show Biome Titles When Exposed To Skylight" = true + + ########################################################################################################### + ## Dimension Title settings. + ########################################################################################################### + ["Traveler's Titles"."Dimension Titles"] + "Enable Dimension Titles" = true + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 70 + "Text Display Time" = 70 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 20 + "Text Fade-Out Time" = 20 + # The text's default RGB color. + # Default: "ffffff" + "Default Text Color" = "ffffff" + # The text's scale. + # Default: 3.0 + "Text Size" = 3.0 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -32.0 + "Text Y Offset" = -32 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Dimensions that should not have any title displayed when the player enters them. + # Example: "[minecraft:overworld, minecraft:the_nether]" + # Default: "[]" + "Blacklisted Dimensions" = "[]" + # Whether or not the dimension text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display dimension titles when the player is exposed to the skylight. + # This prevents dimension titles from showing while the player is underground. + # Default: false + "Only Show Dimension Titles When Exposed To Skylight" = false + + ########################################################################################################### + ## Waystone title settings. Only used if the Waystones mod is installed. + ########################################################################################################### + ["Traveler's Titles"."Waystone Titles"] + "Enable Waystone Titles" = true + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 50 + "Text Display Time" = 50 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-Out Time" = 10 + # The minimum amount of time in ticks that must pass after a Waystone title is displayed before + # another can be displayed. + # Useful for preventing the player from being spammed if they are traveling quickly. + # 20 ticks = 1 second. + # Default: 80 + "Text Cooldown Time" = 80 + # The text's default RGB color. + # Default: "c2b740" + "Default Text Color" = "c2b740" + # The text's scale. + # Default: 2.1 + "Text Size" = 2.1 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -33.0 + "Text Y Offset" = -33 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Traveler's Titles tracks a list of Waystones the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few Waystones. + # This is the size of that list. + # For example, if this value is 5, then your 5 most recent Waystones will be saved. + # Default: 3 + "Number of Most Recent Waystones Saved" = 3 + # Whether or not the Waystone text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # Traveler's Titles tracks a list of Waystones the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few Waystones. + # This option determines whether or not that list should be cleared every time + # the player changes dimensions. + # Default: true + "Reset Waystone Cache When Changing Dimensions" = true + # The distance from a Waystone (in blocks) at which the Waystone's title will trigger. + # Default: 30 + "Waystone Title Range" = 30 + # Whether or not Waystone titles should override Biome titles. + # That is, if a player enters the area for a Waystone while also entering a new biome, + # the Waystone title will take precedence. + # Default: true + "Waystone Titles Override Biome Titles" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display Waystone titles when the player is exposed to the skylight. + # This prevents Waystone titles from showing while the player is underground. + # Default: false + "Only Show Waystone Titles When Exposed To Skylight" = false + + ########################################################################################################### + ## Sound settings. These will only be used if you add custom sounds via a resource pack. + ## For information on how to do this, visit the CurseForge page. + ########################################################################################################### + ["Traveler's Titles"."Custom Sound Settings"] + # The volume of the sound that plays when a biome title displays. + # Default: 1.0 + "Biome Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a biome title displays. + # Default: 1.0 + "Biome Sound Effect Pitch" = 1.0 + # The volume of the sound that plays when a dimension title displays. + # Default: 1.0 + "Dimension Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a dimension title displays. + # Default: 1.0 + "Dimension Sound Effect Pitch" = 1.0 + # The volume of the sound that plays when a Waystone title displays. + # The Waystones mod must be installed for this to have any effect. + # Default: 1.0 + "Waystone Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a Waystone title displays. + # The Waystones mod must be installed for this to have any effect. + # Default: 1.0 + "Waystone Sound Effect Pitch" = 1.0 + diff --git a/config/trender.json b/config/trender.json new file mode 100644 index 0000000..f07510e --- /dev/null +++ b/config/trender.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "style": "VANILLA_OLD" +} \ No newline at end of file diff --git a/config/trimseffects-config2.json b/config/trimseffects-config2.json new file mode 100644 index 0000000..a370e64 --- /dev/null +++ b/config/trimseffects-config2.json @@ -0,0 +1,105 @@ +// TrimsEffects v2.1.X configuration JSON file +// Make sure that your config file version matches the mod version! + +// CurseForge: https://www.curseforge.com/minecraft/mc-mods/trimseffects +// Modrinth: https://modrinth.com/mod/trimseffects + +// === JSON EDITING TIPS === +// - Always use quotes around both keys and values: "key": "value" +// - Don't put commas after the last item in a list or object: +// CORRECT: WRONG: +// { { +// "a": "1", "a": "1", +// "b": "2" "b": "2", <- Extra comma! +// } } +// - Use square brackets [] for lists and curly braces {} for objects +// - Keep all the original punctuation (colons, commas, brackets) when editing +// ======================= + +{ + + // Maps armor trim patterns to their associated potion effects + // Note: The "minecraft:" prefix is omitted from all pattern and effect names + // For patterns/effects from other mods, include the full name (e.g., "othermod:custom_pattern") + "effects": { + // Format: "pattern": ["effect1", "effect2", ...] + // You can specify multiple effects per pattern! + + // Example with multiple effects: + // "wild": ["hero_of_the_village", "strength", "resistance"], + + // Example with a modded armor trim pattern and potion effect: + // "othermod:fancy_pattern": ["othermod:fancy_effect"], + + // Default values: + "sentry": ["resistance"], + "dune": ["speed"], + "coast": ["water_breathing"], + "wild": ["hero_of_the_village"], + "ward": ["absorption"], + "eye": ["regeneration"], + "vex": ["invisibility"], + "tide": ["conduit_power"], + "snout": ["fire_resistance"], + "rib": ["haste"], + "spire": ["strength"], + "wayfinder": ["slow_falling"], + "shaper": ["luck"], + "silence": ["health_boost"], + "raiser": ["saturation"], + "host": ["glowing"], + "flow": ["jump_boost"], + "bolt": ["dolphins_grace"] + }, + + // Controls potion effect level based on number of matching armor pieces + // Format: [1 piece, 2 pieces, 3 pieces, 4 pieces] + // Default: No effect for 1-2 pieces, level 1 for 3 pieces, level 2 for 4 pieces + "matchingEffectLevels": [0, 0, 1, 2], + + // Legacy v1 feature: Override potion effect levels based on trim material + // Note: The "minecraft:" prefix is omitted from material names + // When enabled, gives effects even with just one armor piece! + "materialEffectLevels": { + // Format: "material": level + // Uncomment to enable: + /* + "copper": 0, + "iron": 0, + "redstone": 0, + "lapis": 0, + "quartz": 0, + "gold": 0, + "emerald": 0, + "amethyst": 0, + "resin": 1, + "diamond": 1, + "netherite": 2 + */ + }, + + // Legacy v1 feature: Minimum number of matching armor pieces required before an + // effect is applied when using "materialEffectLevels" + "materialEffectLevelsMinimumMatching": 4, + + // Override potion effects based on trim material instead of pattern + // Note: The "minecraft:" prefix is omitted from material and effect names + "materialEffectOverrides": { + // Format: "material": ["effect1", "effect2", ...] + + // Example with multiple effects: + // "gold": ["haste", "luck"], + + // Default values: + "resin": ["night_vision"] + }, + + // If true, mobs wearing trimmed armor will get the effects + // Disable this if your modpack already has powerful mobs + "applyToMobs": true, + + // Prevents absorption effect from making players invincible + // Waits this many seconds after damage before refreshing absorption hearts + "absorptionStunSeconds": 12.0 + +} diff --git a/config/tumbleweed-common.toml b/config/tumbleweed-common.toml new file mode 100644 index 0000000..05cab7d --- /dev/null +++ b/config/tumbleweed-common.toml @@ -0,0 +1,14 @@ +#Should tumbleweeds drop items upon destroying. +#The drop list is configurable using loot tables (using vanilla data packs or a mod like CraftTweaker). +enableDrops = true +#Chance a tumbleweed spawns in a chunk. +#Spawner blocks and allowed biomes are customizable using data packs through block and biome tags. +#Tumbleweeds can spawn in non-solid blocks with a solid block below and sky access above. +spawnChance = 0.5 +#Maximum number of tumbleweeds existing per player (technically per 17x17 loaded chunks). +maxPerPlayer = 8 +#Should tumbleweeds destroy crops they land upon. +damageCrops = true +#Drop items only when destroyed by player (normally also drops on lava and cactus damage, for example). +dropOnlyByPlayer = false + diff --git a/config/twilightdelight-client.toml b/config/twilightdelight-client.toml new file mode 100644 index 0000000..bfe4d0b --- /dev/null +++ b/config/twilightdelight-client.toml @@ -0,0 +1,4 @@ +#Period for aurora color change +#Range: 0 ~ 10000 +auroraPeriod = 30 + diff --git a/config/twilightdelight-common.toml b/config/twilightdelight-common.toml new file mode 100644 index 0000000..27a4dc7 --- /dev/null +++ b/config/twilightdelight-common.toml @@ -0,0 +1,7 @@ +#Range for hostile effects, such as fire/frost/poison +#Range: 0 ~ 128 +effectRange = 6 +#Range for aurora range +#Range: 0 ~ 128 +auroraRange = 24 + diff --git a/config/twilightforest-client.toml b/config/twilightforest-client.toml new file mode 100644 index 0000000..d8164df --- /dev/null +++ b/config/twilightforest-client.toml @@ -0,0 +1,24 @@ +#Make cicadas silent for those having sound library problems, or otherwise finding them annoying. +silentCicadas = false +#Make cicadas silent when sitting on your head. If the above option is already true, this won't have any effect. +silentCicadasOnHead = false +#Controls whether various effects from the mod are rendered while in first-person view. Turn this off if you find them distracting. +firstPersonEffects = true +#Rotate trophy heads on item model. Has no performance impact at all. For those who don't like fun. +rotateTrophyHeadsGui = true +#Disable the nag screen when Optifine is installed. +disableOptifineNagScreen = false +#Disables the toasts that appear when a biome is locked. Not recommended if you're not familiar with progression. +disableLockedBiomeToasts = false +#Renders a little check mark or x above your crosshair depending on if fed the Quest Ram that color of wool. Turn this off if you find it intrusive. +questRamWoolIndicator = true +#Renders precipitation underneath cloud blocks. -1 sets it to be synced with the common config. +#Set this to a lower number if you're experiencing poor performance, or set it to 0 if you wish to turn it off +#Range: > -1 +cloudBlockPrecipitationDistance = -1 +#List of player UUIDs whose skins the giants of Twilight Forest should use. +#If left empty, the giants will appear the same as the player viewing them does. +giantSkinUUIDs = [] +#Defines which biomes the aurora shader effect will appear in. Leave the list empty to disable the effect. +auroraBiomes = ["twilightforest:glacier"] + diff --git a/config/twilightforest-common.toml b/config/twilightforest-common.toml new file mode 100644 index 0000000..436d0e0 --- /dev/null +++ b/config/twilightforest-common.toml @@ -0,0 +1,110 @@ +#The dimension you can always travel to the Twilight Forest from, as well as the dimension you will return to. Defaults to the overworld. (domain:regname). +originDimension = "minecraft:overworld" +#Allow portals to the Twilight Forest to be made outside of the 'origin' dimension. May be considered an exploit. +allowPortalsInOtherDimensions = false +#Allow portals only for admins (Operators). This severely reduces the range in which the mod usually scans for valid portal conditions, and it scans near ops only. +adminOnlyPortals = false +#Disable Twilight Forest portal creation entirely. Provided for server operators looking to restrict action to the dimension. +disablePortalCreation = false +#Determines if new portals should be pre-checked for safety. If enabled, portals will fail to form rather than redirect to a safe alternate destination. +#Note that enabling this also reduces the rate at which portal formation checks are performed. +checkPortalDestination = false +#Set this true if you want the lightning that zaps the portal to not set things on fire. For those who don't like fun. +portalLightning = false +#If false, the return portal will require the activation item. +shouldReturnPortalBeUsable = true +#Use a valid advancement resource location as a string. For example, using the string "minecraft:story/mine_diamond" will lock the portal behind the "Diamonds!" advancement. Invalid/Empty Advancement resource IDs will leave the portal entirely unlocked. +portalUnlockedByAdvancement = "" +#The max amount of water spaces the mod will check for when creating a portal. Very high numbers may cause issues. +#Range: > 4 +maxPortalSize = 64 +#If true, Keepsake Caskets that are spawned when a player dies will not be accessible by other players. Use this if you dont want people taking from other people's death caskets. NOTE: server operators will still be able to open locked caskets. +uuid_locking = false +#If true, disables the ability to make Skull Candles by right clicking a vanilla skull with a candle. Turn this on if you're having mod conflict issues for some reason. +skull_candles = false +#If false, items that come enchanted when you craft them (such as ironwood or steeleaf gear) will not show this way in the creative inventory. +#Please note that this doesnt affect the crafting recipes themselves, you will need a datapack to change those. +default_item_enchantments = true +#If true, Twilight Forest's bosses will put their drops inside of a chest where they originally spawned instead of dropping the loot directly. +#Note that the Knight Phantoms are not affected by this as their drops work differently. +boss_drop_chests = true +#Dictates how many blocks down from a cloud block should the game logic check for handling weather related code. +#Lower if experiencing low tick rate. Set to 0 to turn all cloud precipitation logic off. +#Range: > 0 +cloudBlockPrecipitationDistance = 32 + +#Settings that are not reversible without consequences. +["Dimension Settings"] + #If true, players spawning for the first time will spawn in the Twilight Forest. + newPlayersSpawnInTF = false + #If true, the return portal will spawn for new players that were sent to the TF if `spawn_in_tf` is true. + portalForNewPlayer = false + +#Settings for all things related to the uncrafting table. +["Uncrafting Table"] + #Multiplies the total XP cost of uncrafting an item and rounds up. + #Higher values means the recipe will cost more to uncraft, lower means less. Set to 0 to disable the cost altogether. + #Note that this only affects reversed crafting recipes, uncrafting recipes will still use the same cost as they normally would. + #Range: 0.0 ~ 1.7976931348623157E308 + uncraftingXpCostMultiplier = 1.0 + #Multiplies the total XP cost of repairing an item and rounds up. + #Higher values means the recipe will cost more to repair, lower means less. Set to 0 to disable the cost altogether. + #Range: 0.0 ~ 1.7976931348623157E308 + repairingXpCostMultiplier = 1.0 + #If you don't want to disable uncrafting altogether, and would rather disable certain recipes, this is for you. + #To add a recipe, add the mod id followed by the name of the recipe. You can check this in things like JEI. + #Example: "twilightforest:firefly_particle_spawner" will disable uncrafting the particle spawner into a firefly jar, firefly, and poppy. + #If an item has multiple crafting recipes and you wish to disable them all, add the item to the "twilightforest:banned_uncraftables" item tag. + #If you have a problematic ingredient, like infested towerwood for example, add the item to the "twilightforest:banned_uncrafting_ingredients" item tag. + disableUncraftingRecipes = ["twilightforest:giant_log_to_oak_planks"] + #If true, this will invert the above uncrafting recipe list from a blacklist to a whitelist. + flipRecipeList = false + #Here, you can disable all items from certain mods from being uncrafted. + #Input a valid mod id to disable all uncrafting recipes from that mod. + #Example: "twilightforest" will disable all uncrafting recipes from this mod. + blacklistedUncraftingModIds = [] + #If true, this will invert the above option from a blacklist to a whitelist. + flipIdList = false + #If true, the uncrafting table will also be allowed to uncraft shapeless recipes. + #The table was originally intended to only take shaped recipes, but this option remains for people who wish to keep the functionality. + enableShapelessCrafting = false + #Disables the uncrafting function of the uncrafting table. Recommended as a last resort if there's too many things to change about its behavior (or you're just lazy, I dont judge). + #Do note that special uncrafting recipes are not disabled as the mod relies on them for other things. + disableUncrafting = false + #Disables any usage of the uncrafting table, as well as prevents it from showing up in loot or crafted. + #Please note that table has more uses than just uncrafting, you can read about them here! http://benimatic.com/tfwiki/index.php?title=Uncrafting_Table + #It is highly recommended to keep the table enabled as the mod has special uncrafting exclusive recipes, but the option remains for people that dont want the table to be functional at all. + #If you are looking to just prevent normal crafting recipes from being reversed, consider using the 'disableUncrafting' option instead. + disableUncraftingTable = false + +#Settings for all things related to the magic trees. +["Magic Trees"] + #If true, prevents the Timewood Core from functioning. + disableTimeCore = false + #Defines the radius at which the Timewood Core works. Can be a number anywhere between 1 and 128. + #Range: 1 ~ 128 + timeCoreRange = 16 + #If true, prevents the Transformation Core from functioning. + disableTransformationCore = false + #Defines the radius at which the Transformation Core works. Can be a number anywhere between 1 and 128. + #Range: 1 ~ 128 + transformationCoreRange = 16 + #If true, prevents the Minewood Core from functioning. + disableMiningCore = false + #Defines the radius at which the Minewood Core works. Can be a number anywhere between 1 and 128. + #Range: 1 ~ 128 + miningCoreRange = 16 + #If true, prevents the Sortingwood Core from functioning. + disableSortingCore = false + #Defines the radius at which the Sortingwood Core works. Can be a number anywhere between 1 and 128. + #Range: 1 ~ 128 + sortingCoreRange = 16 + +#We recommend downloading the Shield Parry mod for parrying, but these controls remain for without. +["Shield Parrying"] + #Set to true to parry non-Twilight projectiles. + parryNonTwilightAttacks = false + #The amount of ticks after raising a shield that makes it OK to parry a projectile. + #Range: > 0 + shieldParryTicksArrow = 40 + diff --git a/config/twilighttweaks-common.toml b/config/twilighttweaks-common.toml new file mode 100644 index 0000000..3459362 --- /dev/null +++ b/config/twilighttweaks-common.toml @@ -0,0 +1,15 @@ + +#Here you can set what command gets executed when the final boss spawner is activated. +#Type in the command you want to happen the exact same way as you would in game. +#For example, typing "summon minecraft:skeleton ~ ~ ~" will summon a normal skeleton and typing "summon zombie ~ ~ ~ {Invulnerable:1,HandItems:[{Count:1,id:wooden_sword},{}]}" will summon an invincible zombie that is holding a wooden sword. +#By default, the spawner runs "function twilighttweaks:final_boss_example", which is a mcfunction made for the mod that runs several commands in a row. Mcfunctions are a vanilla feature and you can google how to make one of your own. +#Any command can be ran once, after which the spawner will break itself. +["FINAL BOSS SPAWNER"] + "The command that the spawner should run: " = "function twilighttweaks:final_boss_example" + +#With this mod installed, boss spawners now leave remnants behind (usually, after the actual boss has been killed). +#Additionally, killed hostile mobs in the Twilight Forest dimension have a chance (0.5%) to drop Time powder. +#Using Time powder on boss spawner remnants brings the spawner back, allowing the boss to be fought again. +["BOSS SPAWNER REMNANTS"] + "The boss spawner feature is enabled: " = true + diff --git a/config/undergarden-client.toml b/config/undergarden-client.toml new file mode 100644 index 0000000..1b381c2 --- /dev/null +++ b/config/undergarden-client.toml @@ -0,0 +1,3 @@ +#Toggles the Undergarden's special fog parameters. Set false to disable it, and return to the vanilla fog. +"Toggle Undergarden Fog" = true + diff --git a/config/undergarden-common.toml b/config/undergarden-common.toml new file mode 100644 index 0000000..9aec534 --- /dev/null +++ b/config/undergarden-common.toml @@ -0,0 +1,5 @@ +#Determines what block the game will generate Undergarden return portals out of +#Use the block tag undergarden:portal_frame_blocks to determine what blocks portals can be built with +#If value entered here is not a valid block it will default to generating minecraft:stone_bricks +"Return Portal Frame Block ID" = "minecraft:stone_bricks" + diff --git a/config/underground_villages-common.toml b/config/underground_villages-common.toml new file mode 100644 index 0000000..cb4b373 --- /dev/null +++ b/config/underground_villages-common.toml @@ -0,0 +1,7 @@ + +#Generation settings +[Generation] + #The Y level it'll try to generate villages at [default: -20] + #Range: > -2147483648 + yLevel = -20 + diff --git a/config/unusualend-common.toml b/config/unusualend-common.toml new file mode 100644 index 0000000..c1a9f9d --- /dev/null +++ b/config/unusualend-common.toml @@ -0,0 +1,82 @@ + +["Main Config"] + #Probability in % for Chorus to summon an Endermite when broken. Includes all blocks in the 'unusualend:endermites_infested' tag + "Endermite Infestation Probability" = 8.0 + #Probability in % for Gloopy Urns to summon an Endermite when broken. Includes all blocks in the 'unusualend:more_endermites_infested' tag + "Frequent Endermite Infestation Probability" = 20.0 + #Probability in % for the Chorus Helmet ability to trigger + "Chorus Helmet Trigger Probability" = 20.0 + #Maximal amount of damages the Chorus Helmet will negate when dodging an attack. Attacks superior to this value won't be affected or reduced + "Chorus Helmet Dodged Damages" = 8.0 + #Probability in % for an Endermite or Enderblob to infect you when hurt + "Blob Infection Probability" = 10.0 + #Maximal amount of Warped Infusions a player can drink in a row with the Warped Tenacity effect stacking + "Max Warped Infusions" = 5.0 + #Number of attempts the Citrine Totem will do to try and find a plant to fertilize (every 2 seconds) + "Citrine Totem Accuracy" = 3.0 + #Probability in % for Draglings to inflict Disruption + "Dragling Disruption" = 20.0 + #Whether 'Le Fishe au Chocolat' should play each time a Chocolate Bluk is eaten + "Fishe Music" = false + #Whether players will be affected by the Endblob Shield knockback (Multiplayer PvP) + "Blob Shields PvP" = true + #Whether Endblob bouncing properties should apply to all mobs. Standing on an Endblob block will make entities bounce infinitely, which could be abused + "Universal Bounce" = true + #Whether players can bonemeal End Stone + "Endstone Bonemeal" = true + #Whether players can bonemeal Raw Purpur + "Purpur Bonemeal" = true + #Whether players can bonemeal Gloopstone and Gloopslate + "Gloopy Bonemeal" = true + #Whether a Warped Balloon that missed or is unable to capture its target will drop the Warped Ballon back at the target's localisation. + "Get Warped Ballons Back" = true + #Probability in % for an Undead Enderling to spawn with an Enderling Mask + "Enderling Mask Probability" = 22.0 + #Whether the Crystal Flower should inflict Nausea to entities interacting with it + "Crystal Flower Nausea" = true + #The Y altitude under which the Void Totem will be triggered + "Void Totem Altitude" = -1.0 + #The scale the Ancient Podium will display items as + "Podium Item Size" = 0.55 + #The scale the Ancient Podium will display blocks at + "Podium Block Size" = 0.4 + #Whether the player will be able to obtain Everlasting (makes items never despawn) + "Can Everlasting be obtained" = true + #Probability in % for Orbs to trigger + "Orb Activation" = 5.0 + +["Cooldowns (in tick)"] + "Prismatic Mirror" = 6000.0 + "Totem of the Void" = 120.0 + "Floating Pouch" = 100.0 + "Shiny Charge" = 100.0 + "Warped Balloon" = 100.0 + +["Teleportation Anchor"] + #Can players link the Teleportation Anchor to a Prismatic Mirror + "Mirror Link" = true + #Can players link the Teleportation Anchor to a Totem of the Void + "Void Totem Link" = true + #Can players link the Teleportation Anchor to a Totem of Undying + "Undying Totem Link" = true + #Whether a Teleportation Anchor is needed to teleport with a Linked Prismatic Mirror to it. If false, teleporting to a broken Anchor will instead randomly teleport the player in a 1000 block radius around the dimension's center + "Mirror requiere Anchor" = true + #Whether a Teleportation Anchor is needed to teleport with a Totem of the Void or Totem of Undying. If false, teleporting to a broken Anchor will instead randomly teleport the player in a 1000 block radius around the dimension's center + "Totems requiere Anchor" = false + +[Biomes] + "Fog inside of the Gloopstone Biomes" = false + "Fog inside of the Warped Reef" = false + +[Generation] + "End Highlands Vegetation" = true + "End Highlands Raw Purpur" = true + "Infested Endstone" = true + "Overgrown Small End Islands" = true + +["Potion Effect Durations (in seconds)"] + "Wandering Stew" = 600.0 + "Bolok Fin" = 600.0 + "Cooked Bolok Fin" = 1200.0 + "Warped Infusion" = 60.0 + diff --git a/config/unusualprehistory-common.toml b/config/unusualprehistory-common.toml new file mode 100644 index 0000000..8cb9371 --- /dev/null +++ b/config/unusualprehistory-common.toml @@ -0,0 +1,30 @@ +#unusualprehistory Config +#All screen shakes +screen_shake = true +#Screen shake brachi +screen_shake_brachi = true +#Screen shake brachi range +screen_shake_brachi_range = 10.0 +#Screen shake brachi teen range +screen_shake_brachi_teen_range = 5.0 +#Screen shake brachi amplifier +screen_shake_brachi_amplifier = 1 +#Screen shake brachi teen amplifier +screen_shake_brachi_teen_amplifier = 0 +#Brachi sound volume +brachi_sound_volume = 3.0 +#Brachi teen sound volume +brachi_teen_sound_volume = 1.5 +#Brachi footprints +brachi_experimental_footprints = false +#Screen shake rex +screen_shake_rex = true +#Screen shake rex range +screen_shake_rex_range = 10.0 +#Screen shake rex amplifier +screen_shake_rex_amplifier = 1 +#Rex sound volume +rex_sound_volume = 0.5 +#Turn natural dino spawning on or off +dino_natural_spawn = false + diff --git a/config/upgrade_aquatic-client.toml b/config/upgrade_aquatic-client.toml new file mode 100644 index 0000000..1851916 --- /dev/null +++ b/config/upgrade_aquatic-client.toml @@ -0,0 +1,11 @@ + +[misc] + #If unimplemented items should show that they are unobtainable in their item description + "Show unobtainable description" = true + #The amount of days till the insomnia overlay is rendered + #Setting to 3 will make the overlay indicate phantom spawns + #Setting to 0 will disable the overlay + "Days until insomnia overlay" = 0 + #If Glow Squids should use our Glow Squid Renderer. + "Replace Glow Squid Renderer" = true + diff --git a/config/upgrade_aquatic-common.toml b/config/upgrade_aquatic-common.toml new file mode 100644 index 0000000..a414be9 --- /dev/null +++ b/config/upgrade_aquatic-common.toml @@ -0,0 +1,47 @@ + +[items] + #Turtle Shells now give unlimited Water Breathing as long as they are on, but run out of durability as they do so + "Turtle Shell rework" = true + + [items.trades] + "Clerics buy thrasher teeth" = true + "Leatherworkers sell bedrolls" = true + +[generation] + + [generation.structures] + #If Mossy Cobblestone and Stone Bricks are replaced with Kelpy Cobblestone and Stone Bricks in Ocean Ruins + "Kelpy Ocean Ruins" = true + +[mobs] + #The max height that Nautilus can spawn at + #Range: -64 ~ 320 + "Nautilus max spawn height" = 30 + + [mobs.thrasher] + #The max height that Thrashers can spawn at + #Range: -64 ~ 320 + "Thrasher max spawn height" = 30 + #The chance of a Thrasher spawning during the daytime + #Range: 0.0 ~ 1.0 + "Thrasher daytime spawn chance" = 0.75 + #The chance a Thrasher has of spawning as a Great Thrasher in Deep Frozen Oceans + #Range: 0.0 ~ 1.0 + "Great Thrasher spawn chance" = 0.25 + + [mobs.squid] + #If Squids give nearby entities Blindness when releasing ink + "Squids give Blindness" = true + #If Glow Squids give nearby entities Night Vision when releasing ink + "Glow Squids give Night Vision" = true + +[misc] + + [misc.renewable_sand] + #If Sand variants should be renewable by placing their respective Sandstone above a Bubble Column + "Renewable Sand" = true + #If 'drag' Bubble Columns from Magma Blocks should be required to renew Sand and Gravel + "Renewable Sand requires Magma Blocks" = true + #If Gravel should be renewable by placing Cobblestone above a Bubble Column + "Renewable Gravel" = true + diff --git a/config/valhelsia_structures-client.toml b/config/valhelsia_structures-client.toml new file mode 100644 index 0000000..01a050e --- /dev/null +++ b/config/valhelsia_structures-client.toml @@ -0,0 +1,3 @@ +#Show a warning if Valhelsia Furniture is not installed before world creation. +furniture_warning = true + diff --git a/config/valhelsia_structures-common.toml b/config/valhelsia_structures-common.toml new file mode 100644 index 0000000..47d82f6 --- /dev/null +++ b/config/valhelsia_structures-common.toml @@ -0,0 +1,20 @@ + +[structures] + + [structures.global] + #How flat does terrain need to be for surface structures to spawn? (in blocks) [default: 4] + #Range: 0 ~ 64 + flatness_delta = 4 + #How many chunks need to be at least between two structures? (in chunks) [default: 5] + #Range: 0 ~ 64 + min_structure_distance = 5 + #The default margin around a valhelsia structure if not otherwise specified in the structure json file. [default: 12] + default_margin = 12 + +[blocks] + + [blocks.doused_torch] + #Enable/Disable the Doused Torch Feature. If disabled Water will no longer transform normal Torches into Doused Torches. + # Doused Torches will however still generate in structures. [default: false] + disable = false + diff --git a/config/vanillabackport-client.toml b/config/vanillabackport-client.toml new file mode 100644 index 0000000..fe47f68 --- /dev/null +++ b/config/vanillabackport-client.toml @@ -0,0 +1,16 @@ + +["Bats and Pots"] + #Use the updated bat model for bats + updated_bat_model = true + +["Spring to Life"] + #allow falling leaves particles to generate + falling_leaves = true + #how often should falling leaves particles generate + #Range: 0.0 ~ 1.0 + falling_leaves_frequency = 0.01 + #use the legacy spawn egg textures + use_legacy_spawn_eggs = false + #toggle the colored sheep wool undercoat + use_sheep_wool_undercoat = true + diff --git a/config/vanillabackport-common.toml b/config/vanillabackport-common.toml new file mode 100644 index 0000000..5cb0126 --- /dev/null +++ b/config/vanillabackport-common.toml @@ -0,0 +1,95 @@ + +["Armored Paws"] + #allow armadillos to generate in the overworld + armadillo = true + #allow variants for wolves to generate + wolf_variants = true + #adds wolves to more biomes for natural spawning + updated_wolf_spawns = true + +["Bundles of Bravery"] + #toggle the updated controls and UI for bundles + has_updated_bundles = true + #allow bundles to appear on chests at villages + bundle_loot = false + #toggle the modern rendering for bundles + has_modern_bundle_graphics = true + #toggle whether bundles should be dyeable + has_dyeable_bundle_recipe = true + +["The Garden Awakens"] + #allow resin to be obtainable from creaking hearts + resin = true + #allow resin to appear on chests at woodland mansions + resin_loot = true + #allow creakings to spawn from creaking hearts + creaking = true + #allow the pale garden to generate in the overworld + pale_garden = true + #allow features from 'The Garden Awakens' to be obtainable through wandering traders + pale_trades = true + #creaking heart trail particle color (gray by default) + creaking_particle_color = 6250335 + #creaking heart trail particle reverse color (orange by default) + creaking_particle_reverse_color = 16545810 + #allow Creaking Hearts to generate Creakings even during the day + do_creaking_hearts_work_on_day = false + +["Spring to Life"] + #allow bushes to generate in the overworld + bushes = true + #allow firefly bushes to generate in the overworld + firefly_bushes = true + #allow wildflowers to generate in the overworld + wildflowers = true + #allow dry grass to generate in the overworld + dry_grass = true + #allow fallen trees to generate in the overworld + fallen_trees = true + #allow leaf litter to generate in the overworld + leaf_litter = true + #allow cactus flowers to generate + cactus_flowers = true + #allow variants for pigs, cows and chickens to generate + farm_animal_variants = true + #allow wolfs to have variants for their sounds + wolf_sound_variants = true + #allow features from 'Spring to Life' to be obtainable through wandering traders + spring_trades = true + #allow camels to spawn outside of villages + camel_spawns = true + #allow lodestones to appear on chests at ruined portals + lodestone_loot = true + +["Chase the Skies"] + #allow dried ghasts to be obtainable through nether fossils and piglin bartering + dried_ghasts = true + #toggle whether leashes drop their connections when boosting with a firework rocket + leash_drop_connections = true + #allows ghasts drop the tears music disc + tears_music_disc = true + #apply a modifier to the speed of happy ghasts when ridden, 1.0 is default speed + happy_ghast_speed_modifier = 1.0 + +["Hot as Lava"] + #allows chicken jockeys to drop the lava chicken music disc + lava_chicken_music_disc = true + +["Chaos Cubed"] + #allow the generation of Sulfur Cave biomes + has_sulfur_caves = true + #allow the generation of Sulfur Springs on top of Sulfur Caves + has_sulfur_springs = true + #allow Potent Sulfur Blocks to generate Geysers + do_geysers_erupt = true + #allow Sulfur Cubes to spawn on Sulfur Caves + has_sulfur_cubes = true + #allow Sulfur Cubes with exploding archetypes to explode + do_sulfur_cubes_explode = true + #allow Sulfur Cubes with damaging archetypes to deal damage + do_sulfur_cubes_damage = true + #allow Wanderer traders to sell contents from Chaos Cubed + do_merchant_trade_chaos_cubed_contents = true + #allows the bounce music disc to generate on abandoned mineshafts + has_bounce_music_disc = true + diff --git a/config/villagernames.json5 b/config/villagernames.json5 new file mode 100644 index 0000000..ae95e0f --- /dev/null +++ b/config/villagernames.json5 @@ -0,0 +1,20 @@ +{ + // Use the custom name list, editable in ./mods/villagernames/customnames.txt, seperated by a comma. If custom names are found, the default name list is ignored. + "useCustomNames": true, + // Use the list of pre-defined female names when naming villagers. + "useDefaultFemaleNames": true, + // Use the list of pre-defined male names when naming villagers. + "useDefaultMaleNames": true, + // Disabled by default. Whether both custom and default names should be used to name villagers. Custom names will probably not be chosen often due to the amount of default names. + "useBothCustomAndDefaultNames": false, + // If enabled, also gives modded villagers a name. If you've found a 'villager'-entity that isn't named let me know by opening an issue so I can add it in. + "nameModdedVillagers": true, + // Whether the profession should be added to the villager's trade screen next to their name. + "showProfessionOnTradeScreen": true, + // If enabled, switches the name and profession on the villager trading screen. Result: - . + "switchNameAndProfessionTradeScreen": false, + // Whether the merchant level (novice, apprentice etc.) should be hidden on the trade screen. + "hideMerchantLevelTradeScreen": false, + // If enabled, the mod capitalizes each word in the custom name list. + "shouldCapitalizeNames": true +} \ No newline at end of file diff --git a/config/vinery.toml b/config/vinery.toml new file mode 100644 index 0000000..a5f488d --- /dev/null +++ b/config/vinery.toml @@ -0,0 +1,81 @@ + +[Blocks] + #Total fermentation time in ticks + #Range: > 1 + totalFermentationTime = 6000 + #Maximum fluid level in the Fermentation Barrel + #Range: 10 ~ 1000 + maxFluidLevel = 100 + #How much Fluid a Grapejuice Bottle fills + #Range: 1 ~ 1000 + maxFluidPerJuice = 25 + #Apple Press mashing time in ticks + #Range: 1 ~ 1000 + applePressMaxMashingProgress = 600 + #Apple Press fermenting time in ticks + #Range: 1 ~ 1000 + applePressMaxFermentingProgress = 800 + #Chance for cherries to grow + #Range: 0.0 ~ 1.0 + cherryGrowthChance = 0.4 + #Chance for apples to grow + #Range: 0.0 ~ 1.0 + appleGrowthChance = 0.4 + #Chance for grapes to grow + #Range: 0.0 ~ 1.0 + grapeGrowthChance = 0.5 + +[Items] + + [Items.Wine] + #Maximum level for wine + #Range: 1 ~ 10 + maxLevel = 5 + #Start duration for wine in seconds + #Range: 1 ~ 100000 + startDuration = 1800 + #Duration per year in seconds + #Range: 1 ~ 10000 + durationPerYear = 200 + #Days per year + #Range: 1 ~ 100 + daysPerYear = 24 + #Years per effect level + #Range: 1 ~ 100 + yearsPerEffectLevel = 6 + #Maximum duration in seconds + #Range: 1 ~ 100000 + maxDuration = 15000 + + [Items.Banner] + #Set to false to disable the banner's effect. + giveEffect = true + #Set to false to hide the banner's tooltip. If giveEffect is false, showTooltip is automatically false. + showTooltip = true + + [Items.Basket] + #List of item IDs that are blacklisted from being placed in the picnic basket. Format: 'modid:itemname' + basketBlacklist = ["vinery:basket"] + + [Items.WanderingTrader] + #Chance for the custom trader to spawn. Range: 0.0 to 1.0 + #Range: 0.0 ~ 1.0 + spawnChance = 0.5 + #If true, the trader will spawn with mules. + spawnWithMules = true + #Spawn delay for the trader in ticks. + #Range: > 1 + spawnDelay = 48000 + + [Items.VillagerTrades] + #List of trades for Level 1. Format: item|price|quantity|maxUses|isSelling + level1Trades = ["vinery:red_grape|5|4|5|false", "vinery:white_grape|5|4|5|false", "vinery:red_grape_seeds|2|1|1|true", "vinery:white_grape_seeds|2|1|1|true"] + #List of trades for Level 2. Format: item|price|quantity|maxUses|isSelling + level2Trades = ["vinery:wine_bottle|1|2|7|true"] + #List of trades for Level 3. Format: item|price|quantity|maxUses|isSelling + level3Trades = ["vinery:flower_box|3|1|10|true", "vinery:white_grape_bag|7|1|10|true", "vinery:red_grape_bag|7|1|10|true"] + #List of trades for Level 4. Format: item|price|quantity|maxUses|isSelling + level4Trades = ["vinery:basket|4|1|10|true", "vinery:flower_pot_big|5|1|10|true", "vinery:window|12|1|10|true", "vinery:dark_cherry_beam|6|1|10|true", "vinery:taiga_red_grape_seeds|2|1|5|true", "vinery:taiga_white_grape_seeds|2|1|5|true"] + #List of trades for Level 5. Format: item|price|quantity|maxUses|isSelling + level5Trades = ["vinery:wine_box|10|1|10|true", "vinery:lilitu_wine|4|1|10|true", "vinery:calendar|12|1|15|true"] + diff --git a/config/visual_workbench.json b/config/visual_workbench.json new file mode 100644 index 0000000..a8ff2ed --- /dev/null +++ b/config/visual_workbench.json @@ -0,0 +1,276 @@ +{ + "__comment": "Crafting table blocks to enable Visual Workbench support for.", + "values": [ + "minecraft:crafting_table", + "blue_skies:bluebright_crafting_table", + "blue_skies:starlit_crafting_table", + "blue_skies:frostbright_crafting_table", + "blue_skies:lunar_crafting_table", + "blue_skies:dusk_crafting_table", + "blue_skies:maple_crafting_table", + "blue_skies:cherry_crafting_table", + "blocksplus:spruce_crafting_table", + "blocksplus:birch_crafting_table", + "blocksplus:jungle_crafting_table", + "blocksplus:acacia_crafting_table", + "blocksplus:dark_oak_crafting_table", + "blocksplus:crimson_crafting_table", + "blocksplus:warped_crafting_table", + "blocksplus:bamboo_crafting_table", + "blocksplus:mushroom_crafting_table", + "mctb:spruce_crafting_table", + "mctb:birch_crafting_table", + "mctb:acacia_crafting_table", + "mctb:jungle_crafting_table", + "mctb:dark_oak_crafting_table", + "mctb:warped_crafting_table", + "mctb:crimson_crafting_table", + "mctb:cherry_crafting_table", + "mctb:dead_crafting_table", + "mctb:fir_crafting_table", + "mctb:hellbark_crafting_table", + "mctb:jacaranda_crafting_table", + "mctb:magic_crafting_table", + "mctb:mahogany_crafting_table", + "mctb:palm_crafting_table", + "mctb:redwood_crafting_table", + "mctb:umbran_crafting_table", + "mctb:willow_crafting_table", + "mctb:azalea_crafting_table", + "mctb:blossom_crafting_table", + "betternether:rubeus_crafting_table", + "betternether:nether_sakura_crafting_table", + "betternether:crafting_table_crimson", + "betternether:wart_crafting_table", + "betternether:crafting_table_warped", + "betternether:anchor_tree_crafting_table", + "betternether:willow_crafting_table", + "betternether:nether_mushroom_crafting_table", + "betternether:stalagnate_crafting_table", + "betternether:mushroom_fir_crafting_table", + "betternether:nether_reed_crafting_table", + "betterend:helix_tree_crafting_table", + "betterend:mossy_glowshroom_crafting_table", + "betterend:end_lotus_crafting_table", + "betterend:pythadendron_crafting_table", + "betterend:jellyshroom_crafting_table", + "betterend:tenanea_crafting_table", + "betterend:dragon_tree_crafting_table", + "betterend:lucernia_crafting_table", + "betterend:lacugrove_crafting_table", + "betterend:umbrella_tree_crafting_table", + "betterendforge:helix_tree_crafting_table", + "betterendforge:mossy_glowshroom_crafting_table", + "betterendforge:end_lotus_crafting_table", + "betterendforge:pythadendron_crafting_table", + "betterendforge:jellyshroom_crafting_table", + "betterendforge:tenanea_crafting_table", + "betterendforge:dragon_tree_crafting_table", + "betterendforge:lucernia_crafting_table", + "betterendforge:lacugrove_crafting_table", + "betterendforge:umbrella_tree_crafting_table", + "crumbs:spruce_crafting_table", + "crumbs:birch_crafting_table", + "crumbs:jungle_crafting_table", + "crumbs:acacia_crafting_table", + "crumbs:dark_oak_crafting_table", + "crumbs:crimson_crafting_table", + "crumbs:warped_crafting_table", + "biomeswevegone:aspen_crafting_table", + "biomeswevegone:baobab_crafting_table", + "biomeswevegone:blue_enchanted_crafting_table", + "biomeswevegone:cherry_crafting_table", + "biomeswevegone:cika_crafting_table", + "biomeswevegone:cypress_crafting_table", + "biomeswevegone:ebony_crafting_table", + "biomeswevegone:fir_crafting_table", + "biomeswevegone:green_enchanted_crafting_table", + "biomeswevegone:holly_crafting_table", + "biomeswevegone:jacaranda_crafting_table", + "biomeswevegone:mahogany_crafting_table", + "biomeswevegone:mangrove_crafting_table", + "biomeswevegone:maple_crafting_table", + "biomeswevegone:pine_crafting_table", + "biomeswevegone:rainbow_eucalyptus_crafting_table", + "biomeswevegone:redwood_crafting_table", + "biomeswevegone:skyris_crafting_table", + "biomeswevegone:willow_crafting_table", + "biomeswevegone:witch_hazel_crafting_table", + "biomeswevegone:zelkova_crafting_table", + "biomeswevegone:sythian_crafting_table", + "biomeswevegone:embur_crafting_table", + "biomeswevegone:palm_crafting_table", + "biomeswevegone:lament_crafting_table", + "biomeswevegone:bulbis_crafting_table", + "biomeswevegone:nightshade_crafting_table", + "biomeswevegone:ether_crafting_table", + "biomeswevegone:imparius_crafting_table", + "vct:spruce_crafting_table", + "vct:birch_crafting_table", + "vct:jungle_crafting_table", + "vct:acacia_crafting_table", + "vct:dark_oak_crafting_table", + "vct:mangrove_crafting_table", + "vct:crimson_crafting_table", + "vct:warped_crafting_table", + "vct:bop_cherry_crafting_table", + "vct:bop_dead_crafting_table", + "vct:bop_fir_crafting_table", + "vct:bop_hellbark_crafting_table", + "vct:bop_jacaranda_crafting_table", + "vct:bop_magic_crafting_table", + "vct:bop_mahogany_crafting_table", + "vct:bop_palm_crafting_table", + "vct:bop_redwood_crafting_table", + "vct:bop_umbran_crafting_table", + "vct:bop_willow_crafting_table", + "vct:canopy_crafting_table", + "vct:darkwood_crafting_table", + "vct:twilight_mangrove_crafting_table", + "vct:minewood_crafting_table", + "vct:sortingwood_crafting_table", + "vct:timewood_crafting_table", + "vct:transwood_crafting_table", + "vct:twilight_oak_crafting_table", + "vct:aspen_crafting_table", + "vct:grimwood_crafting_table", + "vct:kousa_crafting_table", + "vct:morado_crafting_table", + "vct:rosewood_crafting_table", + "vct:yucca_crafting_table", + "vct:maple_crafting_table", + "vct:bamboo_crafting_table", + "vct:azalea_crafting_table", + "vct:poise_crafting_table", + "vct:cherry_crafting_table", + "vct:willow_crafting_table", + "vct:wisteria_crafting_table", + "vct:driftwood_crafting_table", + "vct:river_crafting_table", + "vct:jacaranda_crafting_table", + "vct:redbud_crafting_table", + "vct:cypress_crafting_table", + "vct:brown_mushroom_crafting_table", + "vct:red_mushroom_crafting_table", + "vct:glowshroom_crafting_table", + "vct:twisted_crafting_table", + "vct:petrified_crafting_table", + "vct:eco_azalea_crafting_table", + "vct:eco_flowering_azalea_crafting_table", + "vct:eco_coconut_crafting_table", + "vct:eco_walnut_crafting_table", + "vct:fairy_ring_mushroom_crafting_table", + "vct:azure_crafting_table", + "vct:araucaria_crafting_table", + "vct:heidiphyllum_crafting_table", + "vct:liriodendrites_crafting_table", + "vct:metasequoia_crafting_table", + "vct:protojuniperoxylon_crafting_table", + "vct:protopiceoxylon_crafting_table", + "vct:zamites_crafting_table", + "vct:quark_azalea_crafting_table", + "vct:quark_blossom_crafting_table", + "vct:grongle_crafting_table", + "vct:smogstem_crafting_table", + "vct:wigglewood_crafting_table", + "vct:congealed_crafting_table", + "vct:echo_crafting_table", + "vct:ebony_crafting_table", + "vct:pream_crafting_table", + "vct:verdant_crafting_table", + "vct:jaboticaba_crafting_table", + "vct:ramboutan_crafting_table", + "vct:bm_ancient_oak_crafting_table", + "vct:bm_blighted_balsa_crafting_table", + "vct:bm_swamp_cypress_crafting_table", + "vct:bm_willow_crafting_table", + "vct:rue_baobab_crafting_table", + "vct:rue_blackwood_crafting_table", + "vct:rue_cherry_crafting_table", + "vct:rue_cypress_crafting_table", + "vct:rue_dead_crafting_table", + "vct:rue_eucalyptus_crafting_table", + "vct:rue_joshua_crafting_table", + "vct:rue_larch_crafting_table", + "vct:rue_maple_crafting_table", + "vct:rue_mauve_crafting_table", + "vct:rue_palm_crafting_table", + "vct:rue_pine_crafting_table", + "vct:rue_redwood_crafting_table", + "vct:rue_willow_crafting_table", + "variantcraftingtables:acacia_crafting_table", + "variantcraftingtables:birch_crafting_table", + "variantcraftingtables:dark_oak_crafting_table", + "variantcraftingtables:jungle_crafting_table", + "variantcraftingtables:spruce_crafting_table", + "variantcraftingtables:mangrove_crafting_table", + "variantcraftingtables:crimson_crafting_table", + "variantcraftingtables:warped_crafting_table", + "variantcraftingtables:rubber_crafting_table", + "variantcraftingtables:bamboo_crafting_table", + "variantcraftingtables:charred_crafting_table", + "variantcraftingtables:legacy_crafting_table", + "variantcraftingtables:white_oak_crafting_table", + "variantcraftingtables:herringbone_acacia_crafting_table", + "variantcraftingtables:herringbone_birch_crafting_table", + "variantcraftingtables:herringbone_dark_oak_crafting_table", + "variantcraftingtables:herringbone_jungle_crafting_table", + "variantcraftingtables:herringbone_oak_crafting_table", + "variantcraftingtables:herringbone_spruce_crafting_table", + "variantcraftingtables:herringbone_white_oak_crafting_table", + "variantcraftingtables:herringbone_bamboo_crafting_table", + "variantcraftingtables:herringbone_charred_crafting_table", + "variantcraftingtables:herringbone_crimson_crafting_table", + "variantcraftingtables:herringbone_warped_crafting_table", + "variantcraftingtables:cherry_oak_crafting_table", + "variantcraftingtables:dark_amaranth_crafting_table", + "variantcraftingtables:palm_crafting_table", + "variantcraftingtables:cypress_crafting_table", + "variantcraftingtables:dragons_blood_crafting_table", + "variantcraftingtables:elder_crafting_table", + "variantcraftingtables:juniper_crafting_table", + "variantcraftingtables:dreamwood_crafting_table", + "variantcraftingtables:livingwood_crafting_table", + "variantcraftingtables:mossy_dreamwood_crafting_table", + "variantcraftingtables:mossy_livingwood_crafting_table", + "variantcraftingtables:shimmerwood_crafting_table", + "variantcraftingtables:black_crafting_table", + "variantcraftingtables:blue_crafting_table", + "variantcraftingtables:brown_crafting_table", + "variantcraftingtables:cyan_crafting_table", + "variantcraftingtables:gray_crafting_table", + "variantcraftingtables:green_crafting_table", + "variantcraftingtables:light_blue_crafting_table", + "variantcraftingtables:light_gray_crafting_table", + "variantcraftingtables:lime_crafting_table", + "variantcraftingtables:magenta_crafting_table", + "variantcraftingtables:orange_crafting_table", + "variantcraftingtables:pink_crafting_table", + "variantcraftingtables:purple_crafting_table", + "variantcraftingtables:red_crafting_table", + "variantcraftingtables:white_crafting_table", + "variantcraftingtables:yellow_crafting_table", + "variantcraftingtables:ancient_oak_crafting_table", + "variantcraftingtables:blighted_balsa_crafting_table", + "variantcraftingtables:swamp_cypress_crafting_table", + "variantcraftingtables:willow_crafting_table", + "variantcraftingtables:mango_crafting_table", + "variantcraftingtables:wisteria_crafting_table", + "variantcraftingtables:bamboo_crafting_table_ve", + "variantcraftingtables:redwood_crafting_table", + "variantcraftingtables:azalea_crafting_table", + "variantcraftingtables:coconut_crafting_table", + "variantcraftingtables:flowering_azalea_crafting_table", + "variantcraftingtables:walnut_crafting_table", + "variantcraftingtables:stripped_bamboo_crafting_table", + "variantcraftingtables:crystal_crafting_table", + "variantcraftingtables:golden_oak_crafting_table", + "variantcraftingtables:orange_crafting_table_pl", + "variantcraftingtables:skyroot_crafting_table", + "variantcraftingtables:wisteria_crafting_table_pl", + "variantcraftingtables:cinnamon_crafting_table", + "variantcraftingtables:jade_crafting_table", + "variantcraftingtables:moon_crafting_table", + "variantcraftingtables:shadow_crafting_table" + ] +} \ No newline at end of file diff --git a/config/visualworkbench-client.toml b/config/visualworkbench-client.toml new file mode 100644 index 0000000..7cacbe5 --- /dev/null +++ b/config/visualworkbench-client.toml @@ -0,0 +1,7 @@ +#Rotate crafting table contents so they always face the closest player. +rotate_ingredients = true +#Makes crafting table contents lay flat on the table instead of floating above. +flat_rendering = false +#Render the result of the crafting operation in addition to crafting table contents. +render_result = true + diff --git a/config/voidtotem-client.toml b/config/voidtotem-client.toml new file mode 100644 index 0000000..e769c59 --- /dev/null +++ b/config/voidtotem-client.toml @@ -0,0 +1,6 @@ +#Void Totem Client Config +#Whether the void totem is displayed on the chest when worn in the curios charm slot (curios mod must be installed). +display_totem_on_chest = true +#This sets whether a tooltip is shown on the totem. +show_totem_tooltip = true + diff --git a/config/voidtotem-common.toml b/config/voidtotem-common.toml new file mode 100644 index 0000000..0c201d3 --- /dev/null +++ b/config/voidtotem-common.toml @@ -0,0 +1,17 @@ +#Void Totem Common Config +#Whether the void totem should be added to the end city treasure. +add_end_city_treasure = true +#Dimensions in this blacklist will prevent the functionality of the void totem. Example: "minecraft:overworld" +blacklisted_dimensions = [] +#Whether you get the regeneration and absorption effect on the void totem execution. This also removes all previous effects. +give_totem_effects = true +#Whether the blacklist is inverted, meaning the void totem only works in whitelisted dimensions. +is_inverted_blacklist = false +#Whether you need a totem to prevent death when falling into the void. +needs_totem = true +#The height offset from the world height you will be teleported if you can't be placed on a block. +#Range: 0 ~ 1024 +teleport_height_offset = 64 +#Whether you can use the void totem from anywhere in your inventory. +use_totem_from_inventory = false + diff --git a/config/watut-client.toml b/config/watut-client.toml new file mode 100644 index 0000000..df0e3ff --- /dev/null +++ b/config/watut-client.toml @@ -0,0 +1,61 @@ + +#General mod settings +[general] + #SETTING THESE CLIENT SIDE SETTINGS TO FALSE WILL OVERRIDE ANY OF THE SAME SERVER SETTINGS THAT ARE SET TO TRUE (for your client only) + dummySetting = true + #Sends relative mouse position and clicking + sendMouseInfo = true + #Sends a calculated rate of typing. If off, uses a default value on server + sendTypingSpeed = true + #Sends when you open a Gui, and what Gui + sendActiveGui = true + #Sends when you go idle / return + sendIdleState = true + #Enables or disables idle visual in the server player list tab screen + showIdleStatesInPlayerList = true + #Enables or disables idle visual above player head + showIdleStatesInPlayerAboveHead = true + #Setting false disables all animations + showPlayerAnimations = true + #Enables or disables typing animation + showPlayerAnimation_Typing = true + #Enables or disables idle animation + showPlayerAnimation_Idle = true + #Enables or disables the non typing animations used when showing the open Gui, such as head looking, arms moving up, arms pointing and clicking + showPlayerAnimation_Gui = true + #Show any Gui they're using that isn't chat typing related in world + showPlayerActiveNonChatGui = true + #Show the chat typing Gui in world + showPlayerActiveChatGui = true + #This is for the older non dynamic GUI only. If there isnt an exact Gui available for what the player is using, it will show the Chest Gui. If this is false, it will show nothing, lots of modded Guis will use this for now + showPlayerActiveGuiIfNotExactMatch = true + #Show 'Player is typing...' on the chat screen + screenTypingVisible = true + #Adjust the X position where the 'Player is typing...' text shows in the chat Gui + #Range: > -2147483648 + screenTypingRelativePosition_X = 0 + #Adjust the Y position where the 'Player is typing...' text shows in the chat Gui + #Range: > -2147483648 + screenTypingRelativePosition_Y = 0 + #Max characters allowed before it switches to using string set in screenTypingMultiplePlayersText + #Range: > -2147483648 + screenTypingCharacterLimit = 50 + #String to use when too many people are typing determined by screenTypingCharacterLimit + screenTypingMultiplePlayersText = "Several people are typing" + #String to use next to the typing player(s) name + screenTypingText = " is typing" + #Plays a sound when a player opens some Guis + playScreenOpenSounds = true + #Plays a sutble sound when a player clicks their mouse in a Gui + playMouseClickSounds = true + #Adjusts the size of the gui visual that appears infront of a player, 2 = twice the size + #Range: 0.1 ~ 1.7976931348623157E308 + particleSizeScale = 1.0 + #Delay between ticks your client will accept and update new image of another players gui, you can only increase the delay from what the server/other client is set to, 10 = twice a second + #Range: > -2147483648 + tickReceiveAndRenderRateOfGUIUpdates = 10 + #Privacy setting, if you dont want to send very detailed info of your screen for everyone to see and instead use the old basic gui visual, set this to true + dontSendDetailedGUIInfo = false + #Privacy setting, if you dont want to show the items you are transferring to and from yourself and containers, set this to true + dontSendItemInfo = false + diff --git a/config/watut-common.toml b/config/watut-common.toml new file mode 100644 index 0000000..2f99ace --- /dev/null +++ b/config/watut-common.toml @@ -0,0 +1,9 @@ + +#General mod settings +[general] + #- + announceIdleStatesInChat = false + #Default 5 minutes + #Range: > -2147483648 + ticksToMarkPlayerIdle = 6000 + diff --git a/config/watut-item-arm-adjustments.json b/config/watut-item-arm-adjustments.json new file mode 100644 index 0000000..12f8e21 --- /dev/null +++ b/config/watut-item-arm-adjustments.json @@ -0,0 +1,94 @@ +{ + "comment1": "These client side filters and adjustments affect all watut animations in the same way", + "comment2": "filters support @ for mod id, and * at the start or end of the match for partial matches", + "comment3": "in adjustments section, you can specify 'DISABLED' to outright disable any animation on that hand and axis, or use degrees to adjust by a certain amount", + "comment4": "matchingHandX and matchingHandY are probably all you need, for watuts animations, X is the main up/down, and Y is left/right, Z is available but usually not needed", + "comment5": "matchingHand is for adjusting the hand that actually has the item, otherHand is for adjusting the other hand if matchingHand matched something", + "comment6": "using otherHand along with matchingHand is useful for disabling or adjusting movement when using items that change both hands, like gun mods or 2 handed weapons", + "comment7": "you can make a rule only active if a specfic mod is installed by using 'only_if_mod_installed' with a mod id, see its use below for an example", + "comment8": "matching priority order is first to last, so in this file, highest to lowest, higher overrides lower if both match", + "comment9": "use '/watut reloadJSON' (forge builds only) to reload this config in game to see your changes instantly", + "held_item_arm_adjustments": [ + { + "comment1": "example1", + "filters": [ + "themodid:someitem" + ], + "adjustment": { + "matchingHandX": "-90", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "comment1": "example2", + "filters": [ + "themodid:ingot_*" + ], + "adjustment": { + "matchingHandX": "45" + } + }, + { + "comment1": "example3", + "filters": [ + "*_wacky_tornado_item_*" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "DISABLED", + "otherHandY": "DISABLED", + "otherHandZ": "DISABLED" + } + }, + { + "filters": [ + "artifacts:umbrella" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "filters": [ + "tacz:modern_kinetic_gun" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "-90", + "otherHandY": "60" + } + }, + { + "only_if_mod_installed": "notenoughanimations", + "filters": [ + "minecraft:compass", "minecraft:recovery_compass", "minecraft:torch", "minecraft:soul_torch" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "only_if_mod_installed": "notenoughanimations", + "filters": [ + "minecraft:filled_map" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "DISABLED", + "otherHandY": "DISABLED", + "otherHandZ": "DISABLED" + } + } + ] +} \ No newline at end of file diff --git a/config/watut-server.toml b/config/watut-server.toml new file mode 100644 index 0000000..542c9df --- /dev/null +++ b/config/watut-server.toml @@ -0,0 +1,50 @@ + +#General mod settings +[general] + #SETTING THESE SERVER SIDE SETTINGS TO FALSE WILL OVERRIDE ANY OF THE SAME CLIENT SETTINGS THAT ARE SET TO TRUE (for all clients) + dummySetting = true + #Disable new dynamic gui system and use old simple visual. + dynamicGuiUseOldSimpleGUIVisual = false + #Delay in ticks before sending a new image of a gui to other clients, 10 = twice a second, 0 = no delay, 20 = once a second, more frequent might affect performance and network load + #Range: > 5 + dynamicGuiTickSendRateOfGUIUpdates = 10 + #If enabled, only sends the initial image of a players gui, does not constantly update after it's been opened. + dynamicGuiDontSendConstantGUIUpdates = false + #Blur is used to prevent nasty aliasing/flicker artifacts at the cost of clarity + #Range: 0 ~ 2 + dynamicGuiBlurLevel = 1 + #Adjust the size of the circle used to cut off extra info beyond their main area of their gui, visual issues may occur of too big. Set to -1 to disable + #Range: 4.9E-324 ~ 1.7976931348623157E308 + dynamicGuiSizeRadiusInPixelsToShow = 112.0 + #Show a clients entire screen instead of using dynamicGuiSizeRadiusInPixelsToShow for a circle fade in a 512x512 area, WARNING: experimental, has cpu and network performance impact. Tweak dynamicGuiSizeRadiusInPixelsToShow to -1 or something large if you use this setting. + dynamicGuiShowClientsEntireScreen = false + #Disables the background rendering for most guis, might hide things like JEI or other things count as background rendering + dynamicGuiDisableBackgroundRendering = true + #Show items being transferred between player and container + showItemsBeingTransferredBetweenPlayerAndContainer = true + #How close another player has to be to another player to see what they're doing in GUI, item transferring, mouse movement, etc + #Range: > 0 + distanceRequiredToShowGUIInfo = 10 + #Enables or disables idle visual in the server player list tab screen + showIdleStatesInPlayerList = true + #Enables or disables idle visual above player head + showIdleStatesInPlayerAboveHead = true + #Setting false disables all animations + showPlayerAnimations = true + #Enables or disables typing animation + showPlayerAnimation_Typing = true + #Enables or disables idle animation + showPlayerAnimation_Idle = true + #Enables or disables the non typing animations used when showing the open Gui, such as head looking, arms moving up, arms pointing and clicking + showPlayerAnimation_Gui = true + #Show any Gui they're using that isn't chat typing related in world + showPlayerActiveNonChatGui = true + #Show the chat typing Gui in world + showPlayerActiveChatGui = true + #Show 'Player is typing...' on the chat screen + screenTypingVisible = true + #Plays a sound when a player opens some Guis + playScreenOpenSounds = true + #Plays a sutble sound when a player clicks their mouse in a Gui + playMouseClickSounds = true + diff --git a/config/waystones-common.toml b/config/waystones-common.toml new file mode 100644 index 0000000..51e9c4d --- /dev/null +++ b/config/waystones-common.toml @@ -0,0 +1,110 @@ + +[inventoryButton] + #Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone. + inventoryButton = "" + #The x position of the warp button in the inventory. + warpButtonX = 58 + #The y position of the warp button in the inventory. + warpButtonY = 60 + #The y position of the warp button in the creative menu. + creativeWarpButtonX = 88 + #The y position of the warp button in the creative menu. + creativeWarpButtonY = 33 + +[cooldowns] + #The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone. + globalWaystoneCooldownMultiplier = 1.0 + #The cooldown between usages of the warp stone in seconds. This is bound to the player, not the item, so multiple warp stones share the same cooldown. + warpStoneCooldown = 30 + #The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click. + warpStoneUseTime = 32 + #The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for. + warpPlateUseTime = 20 + #The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click. + scrollUseTime = 32 + #The cooldown between usages of the inventory button in seconds. + inventoryButtonCooldown = 300 + +[worldGen] + #Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in. + #Allowed Values: DEFAULT, MOSSY, SANDY, BLACKSTONE, DEEPSLATE, END_STONE, BIOME + worldGenStyle = "BIOME" + #Approximate chunk distance between waystones generated freely in world generation. Set to 0 to disable generation. + frequency = 25 + #List of dimensions that waystones are allowed to spawn in through world gen. If left empty, all dimensions except those in worldGenDimensionDenyList are used. + dimensionAllowList = ["minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"] + #List of dimensions that waystones are not allowed to spawn in through world gen. Only used if worldGenDimensionAllowList is empty. + dimensionDenyList = [] + #Set to 'PRESET_FIRST' to first use names from the custom names list. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names. + #Allowed Values: PRESET_FIRST, RANDOM_ONLY, PRESET_ONLY, MIXED + nameGenerationMode = "PRESET_FIRST" + #These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info. + customWaystoneNames = [] + #Set to true if waystones should be added to the generation of villages. Some villages may still spawn without a waystone. + spawnInVillages = true + #Ensures that pretty much every village will have a waystone, by spawning it as early as possible. In addition, this means waystones will generally be located in the center of the village. + forceSpawnInVillages = false + +[restrictions] + #If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe. + restrictToCreative = false + #If enabled, only the owner of a waystone (the one who placed it) can rename it. + restrictRenameToOwner = false + #If enabled, waystones generated in worldgen are unbreakable. + generatedWaystonesUnbreakable = false + #If enabled, leashed mobs will be teleported with you + transportLeashed = true + #Whether to take leashed mobs with you when teleporting between dimensions + transportLeashedDimensional = true + #List of leashed mobs that cannot be taken with you when teleporting + leashedDenyList = ["minecraft:wither"] + #Set to 'ALLOW' to allow dimensional warp in general. Set to 'GLOBAL_ONLY' to restrict dimensional warp to global waystones. Set to 'DENY' to disallow all dimensional warps. + #Allowed Values: ALLOW, GLOBAL_ONLY, DENY + dimensionalWarp = "ALLOW" + #List of dimensions that players are allowed to warp cross-dimension from and to. If left empty, all dimensions except those in dimensionalWarpDenyList are allowed. + dimensionalWarpAllowList = [] + #List of dimensions that players are not allowed to warp cross-dimension from and to. Only used if dimensionalWarpAllowList is empty. + dimensionalWarpDenyList = [] + #Set to true if players should be able to teleport between waystones by simply right-clicking a waystone. + allowWaystoneToWaystoneTeleport = true + #Set to false to allow non-creative players to make waystones globally activated for all players. + globalWaystoneSetupRequiresCreativeMode = true + +[client] + #If enabled, the text overlay on waystones will no longer always render at full brightness. + disableTextGlow = false + +[xpCost] + #Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel. + inverseXpCost = false + #The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels. + blocksPerXpLevel = 1000 + #The minimum base xp cost (may be subceeded by multipliers defined below) + minimumBaseXpCost = 0.0 + #The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs + maximumBaseXpCost = 3.0 + #How much xp is needed per leashed animal to travel with you + xpCostPerLeashed = 0 + #The base xp level cost when travelling between dimensions. Ignores block distance. + dimensionalWarpXpCost = 3 + #The multiplier applied to the base xp cost when teleporting to a global waystone through any method. + globalWaystoneXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, Konstantin) + warpStoneXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting from one waystone to another. + waystoneXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting from one sharestone to another. + sharestoneXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting from a portstone. + portstoneXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting from one warp plate to another. + warpPlateXpCostMultiplier = 0.0 + #The multiplier applied to the base xp cost when teleporting via the inventory button. + inventoryButtonXpCostMultiplier = 0.0 + +[compatibility] + #If enabled, JourneyMap waypoints will be created for each activated waystone. + displayWaystonesOnJourneyMap = true + #If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed + preferJourneyMapIntegration = true + diff --git a/config/weather2_additions-common.toml b/config/weather2_additions-common.toml new file mode 100644 index 0000000..adb534e --- /dev/null +++ b/config/weather2_additions-common.toml @@ -0,0 +1,27 @@ +#These configs will persist across saves on Singleplayer. +# +#Resolution of mapped blocks (1 = 1 block, 16 = 1 chunk, will reduce radius) +#Range: > 1 +mapResolution = 16 +#How often the radar should query random chunks (1 = 1 tick, 20 = 1 second) (Small values will cause lag!) +#Range: > 1 +radarMaxTimer = 20 +#The odds of the radar mapping a chunk (1.0 / (Math.abs(x) + Math.abs(z)) * loadChance > Math.random; basically pseudo-increases distance) (Small values will cause lag on non-pregenerated worlds) +#Range: 1.401298464324817E-45 ~ 3.4028234663852886E38 +radarLoadChance = 120.0 +#The radius of the blocks that will be loaded around the player passively in blocks (Limited by server render distance!) +#Range: > 1 +loadRadius = 6 +#How often the tablet should query random chunks (1 = 1 tick, 20 = 1 second) (Small values will cause lag or become buggy!) +#Range: > 5 +tabletLoadChance = 20 +#The radius of the tablet map (low values tend to be buggy, large values tend to be laggy) +#Range: > 1 +tabletRadius = 50 +#Rate at which pixels will be plotted around the player +#Range: > 5 +loadRate = 13 +#What Operator level is required to run config commands +#Range: 0 ~ 4 +opLevel = 0 + diff --git a/config/wesleys-roguelike-dungeons-config.toml b/config/wesleys-roguelike-dungeons-config.toml new file mode 100644 index 0000000..4c549d9 --- /dev/null +++ b/config/wesleys-roguelike-dungeons-config.toml @@ -0,0 +1,30 @@ + +#Wesley's Roguelike Dungeons Configurations +[common] + #Size of the dungeons, 0 = small | 1 = medium | 2 = large + #Range: 0 ~ 2 + CFDungeonSize = 1 + #Difficulty of the dungeons, 0 = easy | 1 = normal | 2 = hard + #Range: 0 ~ 2 + CFDungeonDifficulty = 1 + #Chance of mobs spawning with modifiers + #Range: 0 ~ 100 + CFModifierChance = 1 + #Allow for mobs to spawn with modifiers + CFAllowModifiers = true + #If the dungeon dimension timer is too fast, you can slow it down here + #Range: 0 ~ 200 + CFSlowerDungeonCounter = 100 + #Allow for players to generate dungeons using Vessels of Vision + CFAllowVesselofVision = true + #Allow for dungeons to randomly generate into the world + CFAllowNaturalDungeons = false + #Allow mobs with modifiers to always show their name + CFShowModifierNames = true + #Changes the rarity of naturally generated dungeons if enabled (amount of structures per 1.000.000 chunks) + #Range: 0 ~ 10000 + CFDungeonRarity = 250 + #Changes the rarity of naturally generated nether dungeons if enabled (amount of structures per 1.000.000 chunks) + #Range: 0 ~ 10000 + CFNetherDungeonRarity = 300 + diff --git a/config/whitenoise-client.toml b/config/whitenoise-client.toml new file mode 100644 index 0000000..5dffed2 --- /dev/null +++ b/config/whitenoise-client.toml @@ -0,0 +1,4 @@ +#Show advanced tooltips. Requires advanced tooltips (F3+H) +#Shows NBT data, tags and durability information. +showAdvancedTooltips = false + diff --git a/config/wildernature.toml b/config/wildernature.toml new file mode 100644 index 0000000..79e13a7 --- /dev/null +++ b/config/wildernature.toml @@ -0,0 +1,148 @@ +#Remove Savanna Animals +removeSavannaAnimals = true +#Remove Swamp Animals +removeSwampAnimals = true +#Remove Jungle Animals +removeJungleAnimals = true +#Remove Forest Animals +removeForestAnimals = true +#Add Jungle Animals +addJungleAnimals = true +#Spawn Hazelnut Bush +spawnHazelnutBush = true +#Pelican Spawn Weight +#Range: 0 ~ 1000 +pelicanSpawnWeight = 5 +#Pelican Min Group Size +#Range: 1 ~ 10 +pelicanMinGroupSize = 3 +#Pelican Max Group Size +#Range: 1 ~ 10 +pelicanMaxGroupSize = 5 +#Deer Spawn Weight +#Range: 0 ~ 1000 +deerSpawnWeight = 12 +#Deer Min Group Size +#Range: 1 ~ 10 +deerMinGroupSize = 2 +#Deer Max Group Size +#Range: 1 ~ 10 +deerMaxGroupSize = 4 +#Raccoon Spawn Weight +#Range: 0 ~ 1000 +raccoonSpawnWeight = 8 +#Raccoon Min Group Size +#Range: 1 ~ 10 +raccoonMinGroupSize = 2 +#Raccoon Max Group Size +#Range: 1 ~ 10 +raccoonMaxGroupSize = 3 +#Squirrel Spawn Weight +#Range: 0 ~ 1000 +squirrelSpawnWeight = 8 +#Squirrel Min Group Size +#Range: 1 ~ 10 +squirrelMinGroupSize = 2 +#Squirrel Max Group Size +#Range: 1 ~ 10 +squirrelMaxGroupSize = 2 +#Red Wolf Spawn Weight +#Range: 0 ~ 1000 +redWolfSpawnWeight = 10 +#Red Wolf Min Group Size +#Range: 1 ~ 10 +redWolfMinGroupSize = 2 +#Red Wolf Max Group Size +#Range: 1 ~ 10 +redWolfMaxGroupSize = 4 +#Owl Spawn Weight +#Range: 0 ~ 1000 +owlSpawnWeight = 12 +#Owl Min Group Size +#Range: 1 ~ 10 +owlMinGroupSize = 3 +#Owl Max Group Size +#Range: 1 ~ 10 +owlMaxGroupSize = 3 +#Boar Spawn Weight +#Range: 0 ~ 1000 +boarSpawnWeight = 14 +#Boar Min Group Size +#Range: 1 ~ 10 +boarMinGroupSize = 4 +#Boar Max Group Size +#Range: 1 ~ 10 +boarMaxGroupSize = 5 +#Bison Spawn Weight +#Range: 0 ~ 1000 +bisonSpawnWeight = 10 +#Bison Min Group Size +#Range: 1 ~ 10 +bisonMinGroupSize = 3 +#Bison Max Group Size +#Range: 1 ~ 10 +bisonMaxGroupSize = 5 +#Turkey Spawn Weight +#Range: 0 ~ 1000 +turkeySpawnWeight = 12 +#Turkey Min Group Size +#Range: 1 ~ 10 +turkeyMinGroupSize = 3 +#Turkey Max Group Size +#Range: 1 ~ 10 +turkeyMaxGroupSize = 5 +#Dog Spawn Weight +#Range: 0 ~ 1000 +dogSpawnWeight = 2 +#Dog Min Group Size +#Range: 1 ~ 10 +dogMinGroupSize = 1 +#Dog Max Group Size +#Range: 1 ~ 10 +dogMaxGroupSize = 1 +#MiniSheep Spawn Weight +#Range: 0 ~ 1000 +minisheepSpawnWeight = 8 +#MiniSheep Min Group Size +#Range: 1 ~ 10 +minisheepMinGroupSize = 2 +#MiniSheep Max Group Size +#Range: 1 ~ 10 +minisheepMaxGroupSize = 4 +#Penguin Spawn Weight +#Range: 0 ~ 1000 +penguinSpawnWeight = 10 +#Penguin Min Group Size +#Range: 1 ~ 10 +penguinMinGroupSize = 2 +#Penguin Max Group Size +#Range: 1 ~ 10 +penguinMaxGroupSize = 5 +#Cassowary Spawn Weight +#Range: 0 ~ 1000 +cassowarySpawnWeight = 12 +#Cassowary Min Group Size +#Range: 1 ~ 10 +cassowaryMinGroupSize = 3 +#Cassowary Max Group Size +#Range: 1 ~ 10 +cassowaryMaxGroupSize = 4 +#Flamingo Spawn Weight +#Range: 0 ~ 1000 +flamingoSpawnWeight = 9 +#Flamingo Min Group Size +#Range: 1 ~ 10 +flamingoMinGroupSize = 3 +#Flamingo Max Group Size +#Range: 1 ~ 10 +flamingoMaxGroupSize = 6 +#Hedgehog Spawn Weight +#Range: 0 ~ 1000 +hedgehogSpawnWeight = 10 +#Hedgehog Min Group Size +#Range: 1 ~ 10 +hedgehogMinGroupSize = 2 +#Hedgehog Max Group Size +#Range: 1 ~ 10 +hedgehogMaxGroupSize = 4 + diff --git a/config/wirelesschargers-common.toml b/config/wirelesschargers-common.toml new file mode 100644 index 0000000..c6b6843 --- /dev/null +++ b/config/wirelesschargers-common.toml @@ -0,0 +1,53 @@ +[General] + [General."Basic Wireless Block Charger"] + # In what range should the Basic Wireless Block Charger power blocks? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 5 - Default: 2 + basicBlockChargerRange = 2 + + # How much energy should the Basic Wireless Block Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 25000 + basicBlockChargerCapacity = 25000 + + # How much energy per tick per block should the Basic Wireless Block Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 50 + basicBlockChargerTransferRate = 50 + + [General."Advanced Wireless Block Charger"] + # In what range should the Advanced Wireless Block Charger power blocks? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 5 - Default: 3 + advancedBlockChargerRange = 3 + + # How much energy should the Advanced Wireless Block Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 100000 + advancedBlockChargerCapacity = 100000 + + # How much energy per tick per block should the Advanced Wireless Block Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 200 + advancedBlockChargerTransferRate = 200 + + [General."Basic Wireless Player Charger"] + # In what range should the Basic Wireless Player Charger power players' items? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 10 - Default: 4 + basicPlayerChargerRange = 4 + + # How much energy should the Basic Wireless Player Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 25000 + basicPlayerChargerCapacity = 25000 + + # How much energy per tick per block should the Basic Wireless Player Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 50 + basicPlayerChargerTransferRate = 50 + + [General."Advanced Wireless Player Charger"] + # In what range should the Advanced Wireless Player Charger power players' items? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 10 - Default: 6 + advancedPlayerChargerRange = 6 + + # How much energy should the Advanced Wireless Player Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 100000 + advancedPlayerChargerCapacity = 100000 + + # How much energy per tick per block should the Advanced Wireless Player Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 200 + advancedPlayerChargerTransferRate = 200 + diff --git a/config/woot_revived-common.toml b/config/woot_revived-common.toml new file mode 100644 index 0000000..1f79b20 --- /dev/null +++ b/config/woot_revived-common.toml @@ -0,0 +1,114 @@ + +#Cell +[cell] + #The tank capacity of the Copper Vitality Cell [Default: 30000] + copperCapacity = 30000 + #The tank capacity of the Iron Vitality Cell [Default: 100000] + ironCapacity = 100000 + #The tank capacity of the Gold Vitality Cell [Default: 250000] + goldCapacity = 250000 + #The tank capacity of the Diamond Vitality Cell [Default: 500000] + diamondCapacity = 500000 + #The tank capacity of the Netherite Vitality Cell [Default: 1000000] + netheriteCapacity = 1000000 + +#Dye Liquifier +[dye_liquifier] + #The energy capacity of the Dye Liquifier [Default: 25000] + energyCapacity = 25000 + #The max energy in/out transfer rate of the Dye Liquifier [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Dye Liquifier [Default: 50] + energyProcessTransfer = 50 + #The fluid transfer rate of the Dye Liquifier [Default: 500] + fluidTransfer = 500 + #The output tank capacity of the Dye Liquifier [Default: 25000] + outputTankCapacity = 25000 + #The reference amount of color produce per dye [Default: 125] + colorProduceAmount = 125 + #Amount of pure dye produced after conversion conditions are met [Default: 500] + pureDyeProduceAmount = 500 + #The internal red tank capacity of the Dye Liquifier [Default: 12500] + redTankCapacity = 12500 + #The internal yellow tank capacity of the Dye Liquifier [Default: 12500] + yellowTankCapacity = 12500 + #The internal blue tank capacity of the Dye Liquifier [Default: 12500] + blueTankCapacity = 12500 + #The internal white tank capacity of the Dye Liquifier [Default: 12500] + whiteTankCapacity = 12500 + +#Enchanted Liquifier +[enchanted_liquifier] + #The energy capacity of the Enchanted Liquifier [Default: 100000] + energyCapacity = 100000 + #The max energy in/out transfer rate of the Enchanted Liquifier [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Enchanted Liquifier [Default: 100] + energyProcessTransfer = 100 + #The fluid transfer rate of the Enchanted Liquifier [Default: 500] + fluidTransfer = 500 + #The output tank capacity of the Enchanted Liquifier [Default: 50000] + outputTankCapacity = 50000 + #The enchanted fluid produced per enchant level [Default: 2500] + perEnchantFluid = 2500 + #The energy used per enchant level [Default: 5000] + perEnchantEnergy = 5000 + #The max level of enchantment that can be converted [Default: 10] + maxEnchantLevel = 10 + +#Fluid Infuser +[fluid_infuser] + #The energy capacity of the Fluid Infuser [Default: 50000] + energyCapacity = 50000 + #The max energy in/out transfer rate of the Fluid Infuser [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Fluid Infuser [Default: 250] + energyProcessTransfer = 250 + #The fluid transfer rate of the Fluid Infuser [Default: 50000] + fluidTransfer = 50000 + #The input tank capacity of the Fluid Infuser [Default: 50000] + inputTankCapacity = 50000 + #The output tank capacity of the Fluid Infuser [Default: 50000] + outputTankCapacity = 50000 + +#Item Infuser +[item_infuser] + #The energy capacity of the Item Infuser [Default: 50000] + energyCapacity = 50000 + #The max energy in/out transfer rate of the Item Infuser [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Item Infuser [Default: 250] + energyProcessTransfer = 250 + #The fluid transfer rate of the Item Infuser [Default: 500] + fluidTransfer = 500 + #The input tank capacity of the Item Infuser [Default: 25000] + inputTankCapacity = 25000 + +#Mob Shard +[mob_shard] + #Number of kills to program the shard [Default: 5] + numOfKills = 5 + +#Guide +[guide] + #Should give the woot guide book on player first connection [Default: true] + shouldGiveOnSpawn = false + +#Magmator +[magmator] + #The tick rate for the Copper Magmator [Default: 50] + copperTickRate = 50 + #The tick rate for the Iron Magmator [Default: 20] + ironTickRate = 20 + #The tick rate for the Gold Magmator [Default: 10] + goldTickRate = 10 + #The tick rate for the Diamond Magmator [Default: 5] + diamondTickRate = 5 + #The tick rate for the Netherite Magmator [Default: 1] + netheriteTickRate = 1 + +#Upgrades +[upgrades] + #Should the mass upgrade reroll the loot table or otherwise duplicate the already rolled items [Default: true] + massRerollLoot = true + diff --git a/config/world-gen.json b/config/world-gen.json new file mode 100644 index 0000000..45f00b2 --- /dev/null +++ b/config/world-gen.json @@ -0,0 +1,2966 @@ +[ + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000038937344250623;30,0.0000016687433250267001;31,0.0000030593627625489495;32,0.00000400498398006408;33,0.00000361561053755785;34,0.00000322623709505162;35,0.00000706434674261303;36,0.00001090245639017444;37,0.000010902456390174439;38,0.00001012370950516198;39,0.0000105687077251691;40,0.00001251557493770025;41,0.00001707680669277323;42,0.0000177999288002848;43,0.000019246173015307944;44,0.000018078052687789246;45,0.000021304289782840872;46,0.000029926130295478824;47,0.00003860359558561766;48,0.0000422748309006764;49,0.00004689168743325027;50,0.00005657039871840514;51,0.000058851014595941625;52,0.00006419099323602706;53,0.00007186721253114989;54,0.00007943218227127093;55,0.00008466091135635458;56,0.0000823246707013172;57,0.00008961151655393379;58,0.00010312833748665006;59,0.00011447579209683162;60,0.00011547703809184766;61,0.00012037201851192595;62,0.00017749866500533997;63,0.00030393378426486295;64,0.00045400943396226425;65,0.0005157529369882521;66,0.0005467359380562478;67,0.0005571933962264151;68,0.0005090223389106444;69,0.0004361538803844784;70,0.0003300218049127803;71,0.00017204743681025275;72,0.00000105687077251691;73,0.00000189124243503026;74,0.0000021137415450338204;75,0.00000194686721253115;76,0.00000266998932004272;77,0.00000272561409754361;78,0.0000026699893200427198;79,0.00000266998932004272;80,0.0000030593627625489495;81,0.00000233624065503738;82,0.0000011124955500178;83,0.00000205811676753293;84,0.0000025031149875400496;85,0.0000014462442150231399;86,0.00000161311854752581;87,0.0000025031149875400496;88,0.0000021137415450338204;89,0.0000021137415450338195;90,0.0000018356176575293698;91,0.00000283686365254539;92,0.00000361561053755785;93,0.0000030037379850480596;94,0.0000016687433250267;95,0.00000272561409754361;96,0.00000317061231755073;97,0.00000394935920256319;98,0.00000456123175507298;99,0.000003448736205055179;100,0.00000233624065503738;101,0.00000378248487006052;102,0.00000545122819508722;103,0.00000461685653257387;104,0.000004116233535065861;105,0.00000489498042007832;106,0.00000550685297258811;107,0.00000467248131007476;108,0.0000044499822000712;109,0.00000433873264506942;110,0.000004616856532573869;111,0.00000472810608757565;112,0.0000035043609825560708;113,0.0000025031149875400505;114,0.00000233624065503738;115,0.0000015574937700249199;116,0.0000021693663225347094;117,0.0000030593627625489495;118,0.00000383810964756141;119,0.000004116233535065859;120,0.000004338732645069419;121,0.00000283686365254539;122,0.00000211374154503382;123,0.0000010012459950160199;124,0.00000205811676753293;125,0.00000183561765752937;126,0.0000010012459950160199;127,0.00000216936632253471;128,0.00000127936988252047;129,0.0000022249911000355997;130,0.0000026143645425418303;131,0.0000021693663225347102;132,0.0000012237451050195799;133,0.0000017243681025275898;134,0.0000025587397650409404;135,0.00000255873976504094;136,0.00000116812032751869;137,0.0000003893734425062299;138,0.00000022249911000355996;139,0.00000027812388750444997;140,0.00000038937344250622997;141,0;142,0.00000027812388750445;143,0.0000003337486650053401;144,0.00000005562477750089002;145,0.000000055624777500889984;146,0;147,0;148,0.00000016687433250266998;149,0.000000055624777500889984;150,0;151,0;152,0;153,0.00000022249911000355996;154,0.00000016687433250266998;155,0.000000055624777500889984;156,0.000000055624777500889984;157,0;158,0;159,0;160,0.00000022249911000355996;161,0.00000011124955500177998;162,0.00000027812388750444997;163,0.0000004449982200071199;164,0.00000016687433250266998;165,0.0000006674973300106799;166,0.0000006118725525097898;167,0;168,0;169,0;170,0.00000011124955500177997;171,0.00000005562477750088999;172,0.00000027812388750444997;173,0.00000033374866500533997;174,0.00000027812388750444997;175,0.00000022249911000355996;176,0;177,0;178,0;179,0.00000011124955500177998;180,0.00000050062299750801;181,0.00000033374866500533997;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0.00000022249911000355996;191,0.00000022249911000355996;192,0.00000027812388750444997;193,0.00000022249911000355996;194,0.00000022249911000355996;195,0.0000003893734425062299;196,0.0000004449982200071199;197,0.00000027812388750444997;198,0;199,0;200,0;201,0;202,0;203,0.00000005562477750088999;204,0.00000005562477750088999;205,0.00000005562477750088999;206,0;207,0.00000005562477750088999;208,0.00000016687433250267;209,0.00000011124955500177998;210,0.00000011124955500177998;211,0;212,0;213,0;214,0.00000016687433250267;215,0.00000011124955500177998;216,0;217,0;218,0.00000005562477750088999;219,0;220,0;221,0.00000011124955500177998;222,0;223,0;224,0.0000004449982200071199;225,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.000039660466358134574;2,0.000058795389818440726;3,0.00007793031327874688;4,0.00009712086151655394;5,0.0001162557849768601;6,0.00014184318262726948;7,0.00015647249911000357;8,0.00015663937344250622;9,0.0001647049661801353;10,0.0001757742969028124;11,0.000199247953008188;12,0.00023990966536133857;13,0.00026900142399430407;14,0.00028491011035955855;15,0.0003027656639373442;16,0.0003386992702029192;17,0.00037285288358846565;18,0.00038776032395870417;19,0.0003905415628337487;20,0.0003793609825560698;21,0.0003937121751512994;22,0.0004157952118191527;23,0.00044549884300462803;24,0.00046847187611249563;25,0.00047837308650765405;26,0.0005096898362406551;27,0.0005405615877536491;28,0.0005535221609113564;29,0.0005736027055891777;30,0.0006000244749021005;31,0.0006028613385546458;32,0.0005929601281594874;33,0.0006046969562121752;34,0.0006207168921324314;35,0.0006114275542897828;36,0.0006256118725525097;37,0.0006504761480954076;38,0.0006602661089355643;39,0.0006550373798504806;40,0.0006594317372730509;41,0.0006712241901032396;42,0.0006990365788536845;43,0.0007275164649341403;44,0.0007694019223923104;45,0.0008050574047703809;46,0.0008368191527233891;47,0.0008344272872908509;48,0.0008214110893556425;49,0.0008367079031683874;50,0.000877369615521538;51,0.0009059607511569955;52,0.0009190325738697045;53,0.0009287112851548594;54,0.0009305469028123888;55,0.0009382787468850125;56,0.0009494593271626914;57,0.0009788292096831615;58,0.001013817194731221;59,0.0010284465112139552;60,0.001052309540761837;61,0.00107811943752225;62,0.0010848500355998575;63,0.0010654926130295478;64,0.0010805113029547881;65,0.0009606399074403704;66,0.0008317016731933073;67,0.0006869103773584906;68,0.000516754182983268;69,0.0003996640263438946;70,0.00028285199359202564;71,0.00014490254538981846;72,0.000004616856532573869;73,0.00000428310786756853;74,0.0000050062299750801;75,0.000004116233535065859;76,0.00000456123175507298;77,0.0000032262370950516196;78,0.0000026699893200427198;79,0.00000239186543253827;80,0.0000036156105375578493;81,0.0000033931114275542897;82,0.0000016687433250267;83,0.0000028924884300462798;84,0.000006063100747597009;85,0.000005339978640085439;86,0.0000025587397650409395;87,0.0000025031149875400496;88,0.0000015018689925240298;89,0.0000007787468850124599;90,0.0000012793698825204698;91,0.0000011124955500177999;92,0.0000010012459950160199;93,0.00000116812032751869;94,0.0000029481132075471697;95,0.00000495060519757921;96,0.000005006229975080099;97,0.0000013906194375222498;98,0.0000012237451050195799;99,0.00000211374154503382;100,0.00000205811676753293;101,0.0000025587397650409404;102,0.0000032262370950516204;103,0.000004505606977572089;104,0.0000027812388750444995;105,0.00000311498754004984;106,0.00000495060519757921;107,0.0000043943574225703095;108,0.00000367123531505874;109,0.0000036712353150587396;110,0.0000018912424350302597;111,0.0000021693663225347102;112,0.0000008343716625133501;113,0.0000015574937700249197;114,0.0000022249911000356;115,0.00000378248487006052;116,0.0000012793698825204698;117,0.00000194686721253115;118,0.00000272561409754361;119,0.00000116812032751869;120,0.0000015574937700249197;121,0.00000461685653257387;122,0.0000033931114275542893;123,0.00000478373086507654;124,0.00000194686721253115;125,0.00000305936276254895;126,0.00000478373086507654;127,0.00000378248487006052;128,0.0000032818618725525095;129,0.00000211374154503382;130,0.0000018912424350302595;131,0.0000018356176575293696;132,0.00000194686721253115;133,0.0000020581167675329296;134,0.0000022806158775364896;135,0.0000010568707725169098;136,0.00000011124955500177998;137,0.00000016687433250266998;138,0.00000022249911000356;139,0.00000038937344250622997;140,0.0000009456212175151297;141,0.0000005006229975080099;142,0.00000033374866500533997;143,0.0000006118725525097898;144,0.00000005562477750088999;145,0.00000050062299750801;146,0.00000022249911000355996;147,0.0000005562477750089;148,0.0000010012459950160199;149,0.0000014462442150231395;150,0.0000008343716625133498;151,0.0000010012459950160199;152,0.0000009456212175151299;153,0.0000013349946600213599;154,0.00000100124599501602;155,0.00000022249911000355996;156,0.00000027812388750444997;157,0.00000027812388750444997;158,0.00000016687433250266998;159,0.00000066749733001068;160,0.0000009456212175151297;161,0.00000044499822000712003;162,0.00000050062299750801;163,0.00000038937344250623013;164,0;165,0;166,0;167,0;168,0;169,0.00000005562477750089;170,0.0000005006229975080098;171,0.0000006118725525097899;172,0.00000033374866500533997;173,0;174,0;175,0;176,0;177,0.00000072312210751157;178,0.0000008343716625133498;179,0.0000006118725525097898;180,0;181,0;182,0.00000011124955500178;183,0.00000094562121751513;184,0.0000010012459950160199;185,0.0000006118725525097899;186,0.0000007231221075115697;187,0.0000008899964400142396;188,0.00000016687433250266998;189,0.00000172436810252759;190,0.00000200249199003204;191,0.0000016687433250266997;192,0.00000083437166251335;193,0.0000005562477750088999;194,0.0000017243681025275898;195,0.0000025031149875400496;196,0.0000024474902100391597;197,0.00000194686721253115;198,0.0000018356176575293696;199,0.0000010012459950160199;200,0.0000007787468850124598;201,0.0000009456212175151297;202,0.0000005562477750088999;203,0.00000016687433250266998;204,0;205,0.00000011124955500177998;206,0.00000027812388750444997;207,0.00000011124955500178;208,0.00000005562477750089;209,0.00000016687433250266996;210,0.00000033374866500534;211,0.00000022249911000355996;212,0;213,0.00000005562477750088999;214,0.0000011124955500178;215,0.0000014462442150231397;216,0.00000066749733001068;217,0.0000008899964400142402;218,0.00000133499466002136;219,0.00000116812032751869;220,0.00000005562477750089;221,0;222,0.00000005562477750088999;223,0;224,0;225,0;226,0;227,0;228,0.00000005562477750088999;229,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.00044978195087219653;2,0.0005733802064791741;3,0.0007006496974012105;4,0.0008197979708081168;5,0.0009464555891776432;6,0.0010495283018867926;7,0.0011627803488786046;8,0.0012650743147027414;9,0.0013965712887148453;10,0.0014991433784264864;11,0.0016877669989320042;12,0.001949425952296191;13,0.002240788536845853;14,0.0024563345496618014;15,0.002577763438946244;16,0.0027227772338910645;17,0.002880028479886081;18,0.0029618525275898902;19,0.00308061142755429;20,0.00320749154503382;21,0.003374254627981488;22,0.003501190370238519;23,0.0035797325560697753;24,0.0037090601637593448;25,0.0038326584193663226;26,0.003993970274118904;27,0.004048538180847276;28,0.004200449448202208;29,0.004302409665361338;30,0.004474846475614098;31,0.00458565103239587;32,0.004685275008899965;33,0.004832235671057316;34,0.0049511058205767185;35,0.005076261569953721;36,0.0051793342826628695;37,0.005343983624065504;38,0.0054309251512993945;39,0.005533886614453543;40,0.00568312789248843;41,0.005687689124243504;42,0.005512248576005697;43,0.005364842915628339;44,0.005179834905660378;45,0.005083993414026345;46,0.004978417586329656;47,0.00481310074759701;48,0.004656350124599503;49,0.004568796724813101;50,0.004388794944820221;51,0.0042671435564257745;52,0.004166017710929156;53,0.004032740744037025;54,0.0038807182271270915;55,0.003705277678889284;56,0.003582958793164827;57,0.003486783552865788;58,0.0033515040939836246;59,0.0031832391420434317;60,0.0030432315770736913;61,0.0029398251156995377;62,0.0027656639373442506;63,0.0025904458882164473;64,0.002429801530793877;65,0.0020230175329298684;66,0.001639429067283731;67,0.0012698580455678178;68,0.0009609736561053757;69,0.0006515330188679245;70,0.00040995461018155933;71,0.0001983579565681737;72,0.00000328186187255251;73,0.00000383810964756141;74,0.0000027812388750445;75,0.0000025031149875400496;76,0.0000027812388750445;77,0.0000024474902100391597;78,0.0000034487362050551796;79,0.00000205811676753293;80,0.0000014462442150231399;81,0.00000061187255250979;82,0.0000005562477750088999;83,0.00000016687433250266998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000022249911000356;22,0;23,0;24,0.0000005006229975080099;25,0.0000008899964400142398;26,0.0000010012459950160196;27,0.0000005562477750088999;28,0.0000012237451050195799;29,0.0000030037379850480596;30,0.0000038937344250623;31,0.0000020581167675329296;32,0.0000005562477750088998;33,0.00000155749377002492;34,0.00000367123531505874;35,0.00000383810964756141;36,0.000004283107867568531;37,0.000004561231755072981;38,0.00000550685297258811;39,0.000005117479530081881;40,0.00000372686009255963;41,0.0000012793698825204698;42,0.0000018356176575293698;43,0.00000239186543253827;44,0.00000261436454254183;45,0.00000183561765752937;46,0.00000205811676753293;47,0.00000189124243503026;48,0.00000239186543253827;49,0.0000027256140975436092;50,0.0000018356176575293698;51,0.0000017799928800284797;52,0.0000037268600925596304;53,0.0000052843538625845505;54,0.0000072312210751157;55,0.000006841847632609469;56,0.000005562477750088999;57,0.0000058406016375934494;58,0.000006674973300106797;59,0.000006786222855108578;60,0.000007008721965112137;61,0.000004116233535065859;62,0.00000517310430758277;63,0.000005451228195087219;64,0.0000043387326450694205;65,0.00007705422303310786;66,0.0001381997597009612;67,0.00019885857956568174;68,0.00024794744571021715;69,0.00027272133098967606;70,0.00027787357600569604;71,0.00029609069063723755;72,0.00029970630117479534;73,0.00026049083303666785;74,0.00021799350302598787;75,0.00019101548593805623;76,0.0001523562655749377;77,0.00010323958704165184;78,0.0000633009967960128;79,0.000027756763972944114;80,0.0000105687077251691;81,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0.0000014942713072992693;111,0.000001120703480474452;112,0.0000006238793255788223;113,0.000000250311498754005;114,0;115,0.00000005562477750089;116,0.0000006205639239943041;117,0.0000019173404418200396;118,0.0000008849077608889984;119,0.0000016341039828541107;120,0.000002013047779578924;121,0.0000017252270991922775;122,0.0000018397077146985531;123,0.000001987655157595302;124,0.00000167198110322736;125,0.00000099398614354072;126,0.0000012159739963981322;127,0.0000015109222066422234;128,0.0000016310186340355828;129,0.000002085214613557687;130,0.0000025874179498976963;131,0.000001077242699269833;132,0.0000006744504271982912;133,0.000001095112807048772;134,0.000001836357309870214;135,0.0000021482002766841877;136,0.000001610125905342432;137,0.0000005813469251279354;138,0.0000004852852831235733;139,0.0000009967207986731178;140,0.0000018076958658360438;141,0.0000008401999939794359;142,0.0000015364299756036272;143,0.0000017775590449490386;144,0.000002783154301464141;145,0.0000009511452292513658;146,0.000000958402646168827;147,0.000001072821995476724;148,0.0000017504422169811323;149,0.000001059018052530731;150,0.0000010073810807697944;151,0;152,0.00000038556278888901536;153,0.00000006257787468850125;154,0.000000795209365118422;155,0.000001795944102988294;156,0.0000009166567123074392;157,0.0000006837553072581827;158,0.0000003528423315355506;159,0.00000043600009423491713;160,0.0000007210770789269783;161,0.000000055624777500890004;162,0.0000003424400364898541;163,0.0000005180057404770382;164,0.0000002955066304734781;165,0.00000023988185297258816;166,0.00000011994092648629408;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0.00000005562477750088999;20,0.00000005562477750088999;21,0;22,0;23,0;24,0;25,0.0000005562477750088999;26,0.0000012793698825204702;27,0.0000013349946600213603;28,0.00000305936276254895;29,0.0000026143645425418294;30,0.00000211374154503382;31,0.0000016131185475258102;32,0.000002558739765040941;33,0.00000294811320754717;34,0.0000037268600925596304;35,0.0000052287290850836606;36,0.0000043943574225703095;37,0.000004505606977572089;38,0.0000050062299750801;39,0.000004616856532573869;40,0.000004616856532573869;41,0.0000057849768600925595;42,0.000005562477750089;43,0.0000037824848700605202;44,0.00000550685297258811;45,0.0000067862228551085785;46,0.0000066193485226059105;47,0.00000622997508009968;48,0.000009233713065147738;49,0.000011347454610181558;50,0.00000912246351014596;51,0.00000784309362762549;52,0.000009567461730153078;53,0.00001201495194019224;54,0.000010179334282662869;55,0.00000940058739765041;56,0.00001201495194019224;57,0.000011236205055179781;58,0.00000734247063011748;59,0.0000077874688501246;60,0.00001145870416518334;61,0.000015630562477750088;62,0.000019301797792808833;63,0.00001818930224279103;64,0.00001635368458526166;65,0.0002456390174439302;66,0.00046663625845496623;67,0.0006797347810608759;68,0.0008875489498042008;69,0.0010839044143823424;70,0.0012483312566749735;71,0.0013868925774296902;72,0.001489186543253827;73,0.0014276655393378429;74,0.0013932894268422927;75,0.0013586351904592382;76,0.0012920523317906728;77,0.001197935208259167;78,0.0011292942328230689;79,0.0011160555357778569;80,0.0011148317906728373;81,0.0010307827518689925;82,0.0009525186899252403;83,0.000893556425774297;84,0.0008209104663581346;85,0.0007486538803844786;86,0.0007127202741189036;87,0.0006605442328230687;88,0.0006044188323246708;89,0.0005642577429690282;90,0.0005047948558205768;91,0.00043470763616945533;92,0.0003834215913136348;93,0.00033480553577785684;94,0.00027873576005695987;95,0.00022394535421858312;96,0.00018161489854040584;97,0.00012543387326450697;98,0.00006903034887860448;99,0.00003198424706301175;100,0.000009233713065147738;101,0.0000008343716625133497;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0.00000005562477750089;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000011994092648629405;48,0.0000005736305179779282;49,0;50,0;51,0.0000004762871573513706;52,0.00000035982277945888214;53,0.00000197822565613394;54,0.0000012650464961356566;55,0.0000005475564035243858;56,0.0000001825188011747953;57,0.0000006796652500889996;58,0.0000012498192194731221;59,0.0000006292552954788181;60,0.0000010533942239231046;61,0.0000032167113395479242;62,0.0000006987862673549308;63,0.0000018981955322178715;64,0.0000013993108090067642;65,0.0000016457285671573727;66,0.0000008569692283730865;67,0.0000011124955500177999;68,0.00000904090378516696;69,0.00000028681525898896404;70,0.00000061187255250979;71,0.0000005701539693841225;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0.00000011994092648629405;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.0000008995917017764752;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0.0000008995917017764752;200,0.0000008995917017764752;201,0;202,0.0000004497958508882376;203,0.000002698775105329425;204,0.0000004497958508882376;205,0;206,0.0000004497958508882376;207,0.0000004497958508882376;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0.0000003893734425062298;33,0.0000008343716625133498;34,0.0000004449982200071199;35,0.0000007231221075115697;36,0.00000016687433250266998;37,0;38,0;39,0;40,0.00000005562477750089;41,0.00000016687433250267;42,0.00000027812388750445;43,0.00000022249911000356004;44,0.00000033374866500533997;45,0.00000016687433250266998;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.00000016687433250267;61,0.00000005562477750089;62,0;63,0;64,0.00000061187255250979;65,0.0001457369170523318;66,0.00029058383766464936;67,0.00042653079387682446;68,0.0005549127803488786;69,0.0006661623353506586;70,0.0007648963154147383;71,0.0008554534531861873;72,0.0009376668743325028;73,0.0009451762192951229;74,0.0008786489854040585;75,0.0008650209149163402;76,0.0008207435920256318;77,0.0008083392666429336;78,0.000800496173015308;79,0.0007813056247775008;80,0.0007643400676397295;81,0.0007561076005695979;82,0.0007232889818440726;83,0.0006813478996084016;84,0.0006527011391954433;85,0.0006532017621929512;86,0.0006229418832324671;87,0.0005743814524741902;88,0.0005628671235315059;89,0.0005487384300462798;90,0.0005227060341758634;91,0.00048777367390530444;92,0.0004790405838376647;93,0.00044750133499466005;94,0.00042018956924172305;95,0.0003810297258810965;96,0.0003696266464934141;97,0.0003645091669633322;98,0.0003719628871484514;99,0.00037902723389106444;100,0.00038230909576361693;101,0.0003629516731933072;102,0.0003553310786756853;103,0.0003557760768956924;104,0.0003487117301530794;105,0.00034559674261302954;106,0.00035360671057315773;107,0.00035188234247063017;108,0.00034631986472054115;109,0.00034793298326806697;110,0.0003197868458526166;111,0.0002913625845496618;112,0.0002799038803844785;113,0.0002557627269490922;114,0.00024118903524385907;115,0.0002487540049839801;116,0.00022188723745105024;117,0.00021938412246351018;118,0.00021654725881096475;119,0.00021120728017087932;120,0.00021810475258098966;121,0.00021015040939836242;122,0.0002121529013883945;123,0.00020647917408330368;124,0.00019930357778568885;125,0.00018773362406550374;126,0.00016331434674261304;127,0.0000871640263438946;128,0.000013906194375222502;129,0.00000016687433250266998;130,0;131,0.0000005562477750089;132,0.00000033374866500534;133,0.0000004449982200071199;134,0.00000038937344250622997;135,0.00000022249911000356;136,0.0000002781238875044499;137,0.00000033374866500533997;138,0.00000011124955500177998;139,0.00000011124955500178002;140,0.00000033374866500533997;141,0.00000022249911000355996;142,0.00000016687433250266996;143,0;144,0.00000005562477750088999;145,0;146,0.00000022249911000355996;147,0.00000011124955500177998;148,0.00000022249911000355996;149,0.00000033374866500533997;150,0.00000022249911000355996;151,0.00000011124955500177997;152,0.00000011124955500177997;153,0;154,0;155,0;156,0.00000011124955500177998;157,0.00000005562477750088999;158,0.00000011124955500177998;159,0;160,0;161,0;162,0.00000016687433250266998;163,0.00000005562477750088999;164,0.00000016687433250266998;165,0;166,0.00000005562477750088998;167,0.0000004449982200071199;168,0.00000033374866500533997;169,0.00000016687433250266998;170,0;171,0.00000005562477750088999;172,0.00000005562477750088999;173,0;174,0.00000016687433250266998;175,0.00000016687433250266998;176,0.00000016687433250266998;177,0.00000022249911000356;178,0.00000005562477750089;179,0;180,0;181,0.00000033374866500533997;182,0.00000016687433250266998;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0;234,0;235,0;236,0;237,0;238,0;239,0;240,0;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0;249,0;250,0;251,0;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;274,0;275,0.000000055624777500890004;276,0.000000055624777500890004;277,0;278,0;279,0;280,0;281,0;282,0;283,0.00000011124955500178001;284,0;285,0.000000055624777500890004;286,0;287,0;288,0;289,0.000000055624777500890004;290,0;291,0;292,0;293,0;294,0;295,0.00000005562477750088999;296,0.00000005562477750088999;297,0;298,0;299,0;300,0;301,0;302,0;303,0.000000055624777500889984;304,0;305,0.00000005562477750088999;306,0.00000005562477750088999;307,0.00000011124955500177998;308,0.00000005562477750088999;309,0.00000005562477750088999;310,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000011124955500178;45,0.00000934496262014952;46,0.00006441349234603063;47,0.00015942061231755074;48,0.00026343894624421504;49,0.0003543298326806693;50,0.0004579587931648273;51,0.0005590846386614454;52,0.0006673304556781773;53,0.0007854774830900677;54,0.0009130250978996085;55,0.0009942372730509079;56,0.0011037624599501603;57,0.0012135657707369172;58,0.001315303488786045;59,0.0014085862406550374;60,0.001514551441794233;61,0.0016322534709861162;62,0.001722810608757565;63,0.0018223789604841583;64,0.001913992969028124;65,0.0017255362228551087;66,0.0015249532751868992;67,0.0013270403168387326;68,0.0011234536311854754;69,0.0008729196333214668;70,0.000616489409042364;71,0.00032401432894268425;72,0.000005562477750088999;73,0.0000035599857600569594;74,0.000007008721965112139;75,0.00000800996796012816;76,0.000008399341402634389;77,0.000008121217515129939;78,0.00000923371306514774;79,0.00001123620505517978;80,0.00001106933072267711;81,0.00000806559273762905;82,0.00000884433962264151;83,0.000010457458170167321;84,0.00000856621573513706;85,0.00001012370950516198;86,0.00001040183339266643;87,0.000009011213955144179;88,0.000009066838732645071;89,0.0000061187255250979;90,0.0000083437166251335;91,0.00000912246351014596;92,0.00000856621573513706;93,0.0000088999644001424;94,0.00001045745817016732;95,0.00000845496618013528;96,0.000010012459950160202;97,0.0000094562121751513;98,0.000012571199715201139;99,0.000012960573157707369;100,0.00001351682093271627;101,0.0000116812032751869;102,0.00000856621573513706;103,0.00001090245639017444;104,0.00001346119615521538;105,0.00001290494838020648;106,0.000012181826272694909;107,0.000011124955500178;108,0.00001184807760768957;109,0.000011792452830188679;110,0.00001329432182271271;111,0.0000105687077251691;112,0.000009678711285154861;113,0.00000990121039515842;114,0.00000789871840512638;115,0.00000806559273762905;116,0.000008621840512637949;117,0.000009845585617657531;118,0.000007731844072623708;119,0.000006786222855108579;120,0.000005951851192595229;121,0.0000057293520825916705;122,0.0000052287290850836606;123,0.0000067305980776076895;124,0.000006396849412602349;125,0.0000062855998576005695;126,0.000004616856532573869;127,0.0000040606087575649685;128,0.0000030037379850480596;129,0.000004283107867568531;130,0.0000037824848700605202;131,0.00000433873264506942;132,0.0000036156105375578493;133,0.0000013906194375222498;134,0.0000011124955500178;135,0.0000010012459950160199;136,0.0000020581167675329296;137,0.00000305936276254895;138,0.00000261436454254183;139,0.0000015018689925240296;140,0.0000012237451050195799;141,0.00000127936988252047;142,0.0000005562477750088998;143,0.00000116812032751869;144,0.0000012793698825204698;145,0.0000012237451050195799;146,0.0000010012459950160199;147,0.00000116812032751869;148,0.00000044499822000712003;149,0.0000005006229975080099;150,0.0000003893734425062299;151,0.0000007231221075115698;152,0.00000088999644001424;153,0.0000012793698825204696;154,0.0000005006229975080099;155,0.0000009456212175151299;156,0.00000094562121751513;157,0.0000005562477750088999;158,0.00000016687433250266998;159,0.0000005562477750088999;160,0.00000027812388750444997;161,0.00000016687433250266998;162,0.0000004449982200071199;163,0.00000005562477750088999;164,0.00000022249911000355996;165,0.00000016687433250266996;166,0.00000022249911000355996;167,0.00000005562477750089;168,0.00000005562477750089;169,0.00000022249911000356;170,0.00000016687433250266998;171,0;172,0;173,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00036962664649341405;2,0.0004854930580277679;3,0.0006350680847276611;4,0.0007752425240299039;5,0.0008660777856888572;6,0.0009935697757208972;7,0.0011069886970452119;8,0.0011931514773940903;9,0.0012661311854752582;10,0.0013280415628337486;11,0.0014965846386614454;12,0.0017402767888928445;13,0.0020823135457458167;14,0.0022987495550017803;15,0.002402879138483446;16,0.0025023362406550375;17,0.0026320532217871126;18,0.0027960350658597366;19,0.002932427020291919;20,0.0030256541473834106;21,0.00312188501245995;22,0.003209549661801353;23,0.0032859781060875755;24,0.003425985671057316;25,0.0036186699003203987;26,0.003790939836240655;27,0.0039032462620149522;28,0.003959872285510858;29,0.0040621662513349935;30,0.0040973211107155575;31,0.004141987807048772;32,0.004239331167675329;33,0.004417330455678178;34,0.00454943930224279;35,0.004691226860092561;36,0.004784732111071556;37,0.004881463599145604;38,0.004935252758988965;39,0.005017855553577786;40,0.00515880873976504;41,0.005376079120683518;42,0.0055298260056959765;43,0.005642577429690281;44,0.005704320932716269;45,0.005832591669633323;46,0.006056425774296903;47,0.006288325471698114;48,0.006352015841936633;49,0.00637993948024208;50,0.006433951139195444;51,0.006530126379494482;52,0.00668871262014952;53,0.006898418031327874;54,0.007075026699893201;55,0.007185275008899964;56,0.007176375044499821;57,0.007257086596653615;58,0.007353818084727662;59,0.007360715557137772;60,0.007145447668209327;61,0.0069834683161267355;62,0.006838565770736918;63,0.006718527500889998;64,0.0065749599501602;65,0.005616600658597366;66,0.00464872953008188;67,0.003763850569597722;68,0.0029168520825916698;69,0.0021455032929868284;70,0.0013929556781772873;71,0.0007151121395514419;72,0.000015519312922748313;73,0.0000116812032751869;74,0.000012237451050195798;75,0.00001351682093271627;76,0.000011569953720185119;77,0.00001346119615521538;78,0.000014073068707725169;79,0.00001401744393022428;80,0.00001329432182271271;81,0.000010234959060163758;82,0.00000906683873264507;83,0.000008621840512637952;84,0.000008899964400142399;85,0.00001145870416518334;86,0.00001162557849768601;87,0.00000873309006763973;88,0.000008009967960128159;89,0.000006341224635101459;90,0.000004728106087575651;91,0.00000428310786756853;92,0.00000584060163759345;93,0.000005173104307582771;94,0.0000052287290850836606;95,0.00000517310430758277;96,0.00000428310786756853;97,0.00000367123531505874;98,0.0000033931114275542897;99,0.00000328186187255251;100,0.00000367123531505874;101,0.0000033374866500533994;102,0.0000027256140975436097;103,0.0000030593627625489495;104,0.00000161311854752581;105,0.00000266998932004272;106,0.00000228061587753649;107,0.00000150186899252403;108,0.00000200249199003204;109,0.00000133499466002136;110,0.00000094562121751513;111,0.00000083437166251335;112,0.00000150186899252403;113,0.00000100124599501602;114,0.00000027812388750445;115,0.0000003893734425062301;116,0.0000003893734425062301;117,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000022249911000355994;30,0.00000161311854752581;31,0.00000294811320754717;32,0.0000043943574225703095;33,0.00000528435386258455;34,0.000005951851192595229;35,0.0000047837308650765405;36,0.000005061854752580989;37,0.000006841847632609469;38,0.000007286845852616591;39,0.000006174350302598789;40,0.000007453720185119261;41,0.0000057849768600925595;42,0.000005506852972588111;43,0.000005673727305090781;44,0.000004728106087575651;45,0.00000522872908508366;46,0.00000756496974012104;47,0.000007509344962620149;48,0.000005562477750088999;49,0.000008399341402634389;50,0.000008955589177643291;51,0.000009289337842648629;52,0.0000100124599501602;53,0.000011347454610181558;54,0.000012904948380206478;55,0.000014239943040227841;56,0.000013461196155215382;57,0.000012348700605197583;58,0.000014295567817728728;59,0.00001685430758276967;60,0.00001629805980776077;61,0.00001763305446778213;62,0.00001590868636525454;63,0.00001479619081523674;64,0.00001907929868280527;65,0.0003370861516553934;66,0.0006706123175507299;67,0.001003804734781061;68,0.0013171947312210753;69,0.0016512215201139196;70,0.0019439747241011037;71,0.002241177910288359;72,0.002554957280170879;73,0.002598678355286579;74,0.002552954788180847;75,0.00255935163759345;76,0.0025244749021003914;77,0.0025498954254182986;78,0.002564691616233535;79,0.0025532885368458524;80,0.0025381029725881094;81,0.002600402723389107;82,0.002566304734781061;83,0.0025695865966536132;84,0.002578486561053756;85,0.0025700872196511215;86,0.0025763171947312214;87,0.0025395492168031326;88,0.002536434229263083;89,0.0025185230509077966;90,0.002490043164827341;91,0.002489653791384834;92,0.0024866500533997863;93,0.0024922681559273767;94,0.0025259211463154146;95,0.00245499955500178;96,0.0024512170701317193;97,0.0024486027055891776;98,0.00242562967248131;99,0.0023643311676753297;100,0.0023285644357422574;101,0.002366611783552866;102,0.002341691883232467;103,0.002278669010323959;104,0.0022936320754716986;105,0.002313656995372019;106,0.00229185208259167;107,0.0022446822712709155;108,0.0022188167497330016;109,0.0021717581879672487;110,0.002030860626557494;111,0.001854808205767177;112,0.0018004627981488075;113,0.001741667408330367;114,0.0016665739587041653;115,0.001570565592737629;116,0.0014875177999288005;117,0.001470329743681025;118,0.0014412936098255607;119,0.0013946800462798148;120,0.001373876379494482;121,0.0013781594873620508;122,0.0013527389640441438;123,0.0013371640263438946;124,0.0012861561053755784;125,0.001274308027767889;126,0.001106432449270203;127,0.0005860070309718761;128,0.00010457458170167318;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000014062639061943753;66,0.0000008639223255606978;67,0.00000023814357867568525;68,0.0000007717937878248486;69,0.00000240403335261659;70,0.0000009577891375934498;71,0.0000021502453052687793;72,0.0000035252202741189046;73,0.0000005249588376646492;74,0.00000023988185297258816;75,0.000002023351281594874;76,0.000004403048794054824;77,0.000005614625978996083;78,0.0000035165289026343897;79,0.00000029376835617657533;80,0.0000008691371484514061;81,0.0000021346008365966537;82,0.0000013123970941616234;83,0.0000005997046324314703;84,0.00000066749733001068;85,0.000001251557493770025;86,0.000000750934496262015;87,0.000002140032943774475;88,0.00001112430364731666;89,0.000003075224515508188;90,0.000000815250645247419;91,0.0000004797637059451762;92,0.0000004797637059451762;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.0000003337486650053399;11,0.0000006674973300106798;12,0.0000006674973300106798;13,0.00000027812388750444997;14,0.00000022249911000355996;15,0;16,0;17,0;18,0;19,0;20,0.00000005562477750089;21,0.00000044499822000712;22,0.00000011124955500178;23,0;24,0.00000044499822000712;25,0.00000088999644001424;26,0.00000066749733001068;27,0.00000044499822000712;28,0.00000005562477750088999;29,0.0000005006229975080099;30,0.0000017243681025275902;31,0.0000020581167675329296;32,0.0000015018689925240298;33,0.0000016687433250266997;34,0.0000027256140975436097;35,0.00000255873976504094;36,0.0000020581167675329296;37,0.00000433873264506942;38,0.000004616856532573869;39,0.00000589622641509434;40,0.00000656372374510502;41,0.00000695309718761125;42,0.00000506185475258099;43,0.0000035599857600569607;44,0.00000367123531505874;45,0.000005506852972588109;46,0.00000661934852260591;47,0.000007787468850124601;48,0.00000784309362762549;49,0.00000823246707013172;50,0.00000906683873264507;51,0.0000105687077251691;52,0.00001212620149519402;53,0.00000812121751512994;54,0.000008510590957636169;55,0.000010179334282662869;56,0.000014907440370238521;57,0.000017521804912780346;58,0.00001885679957280171;59,0.00001741055535777857;60,0.000019246173015307937;61,0.00001735493058027768;62,0.0000155749377002492;63,0.000014851815592737629;64,0.00001702118191527234;65,0.0004042252580989676;66,0.0007916518333926665;67,0.0012069464222143112;68,0.0016320865966536133;69,0.0020926597543609827;70,0.0025403835884656467;71,0.002967748754004984;72,0.0034021782662869353;73,0.0034130807226771093;74,0.003395725792096832;75,0.003500189124243503;76,0.003558483891064436;77,0.003576728818084728;78,0.0036012593449626204;79,0.0036386948202207195;80,0.0036976014595941614;81,0.0037464956390174447;82,0.003803232912068352;83,0.0038316571733713065;84,0.003878270736917052;85,0.0038947912958348166;86,0.0039255517977928095;87,0.003999254627981488;88,0.004039805090779638;89,0.004082079921680313;90,0.00409064613741545;91,0.004044866945532218;92,0.004064947490210039;93,0.004156617123531506;94,0.00418682137771449;95,0.00413002847988608;96,0.004094428622285512;97,0.003974779725881097;98,0.0039201005695977224;99,0.0038146916162335354;100,0.0036856421324314706;101,0.0036260123709505165;102,0.0035552576539693848;103,0.0034892866678533294;104,0.0034261525453898184;105,0.003376368369526522;106,0.003285755606977572;107,0.003228907084371663;108,0.003209104663581346;109,0.0031366255784976865;110,0.0029191326984692066;111,0.0025458348166607337;112,0.002387304200783197;113,0.002264929690281239;114,0.002188556870772517;115,0.002098945354218583;116,0.001975124599501602;117,0.0018519157173371307;118,0.001740109914560342;119,0.0017300418298326807;120,0.0017467848878604487;121,0.0017056781772872907;122,0.0016540027589889645;123,0.0015760724457102174;124,0.00150186899252403;125,0.0014223255606977572;126,0.0013806626023495907;127,0.0013222009611961554;128,0.0012403212887148452;129,0.0011632809718761126;130,0.0010807894268422926;131,0.0010175440548237807;132,0.000952129316482734;133,0.0009301019045923817;134,0.0009056826272694909;135,0.0008531172125311499;136,0.0007683450516197935;137,0.0007131096475614097;138,0.0006771760412958348;139,0.0006554823780704878;140,0.0006253337486650053;141,0.0006049750800996796;142,0.0005313834994660022;143,0.0004795412068351727;144,0.00048721742613029546;145,0.0005011792452830189;146,0.00047570309718761127;147,0.0004200226949092204;148,0.00038358846564613745;149,0.0003540517087931648;150,0.0003288536845852616;151,0.0003066037735849057;152,0.0002648851904592382;153,0.00024647338910644355;154,0.00022700471698113207;155,0.0002060898006407974;156,0.00017877803488786047;157,0.00016403746885012462;158,0.00015814124243503026;159,0.00015730687077251693;160,0.00014273317906728374;161,0.00012699136703453185;162,0.00012493325026699894;163,0.00012804823780704876;164,0.0001090245639017444;165,0.00009628648985404058;166,0.00009940147739409045;167,0.00009439524741901034;168,0.00007325783196867213;169,0.00005812789248843004;170,0.00005623665005339979;171,0.000053511035955856175;172,0.00004644668921324315;173,0.00003954921680313279;174,0.000032039871840512635;175,0.000025754271982912068;176,0.000024363652545389818;177,0.00002208303666785333;178,0.000020859291562833746;179,0.00001974679601281595;180,0.00001507431470274119;181,0.00000856621573513706;182,0.00000673059807760769;183,0.00000645247419010324;184,0.00000700872196511214;185,0.000009178088287646851;186,0.000009122463510145958;187,0.00000645247419010324;188,0.00000311498754004984;189,0.0000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0.00000016687433250266998;21,0.00000005562477750088998;22,0.00000016687433250266998;23,0.00000027812388750444997;24,0.0000006674973300106799;25,0.0000005562477750088999;26,0.0000007231221075115699;27,0.00000033374866500533997;28,0.00000033374866500534;29,0.0000003893734425062299;30,0.00000011124955500178002;31,0;32,0;33,0.00000016687433250267;34,0.00000005562477750089;35,0;36,0;37,0.00000011124955500178002;38,0;39,0;40,0.00000011124955500178;41,0;42,0.00000016687433250267;43,0.00000005562477750089001;44,0;45,0;46,0;47,0;48,0.00000016687433250267;49,0.00000005562477750089;50,0;51,0;52,0.00000016687433250267;53,0.00000050062299750801;54,0.0000006118725525097899;55,0.00000061187255250979;56,0.00000044499822000712003;57,0.00000016687433250267;58,0.00000016687433250267;59,0.00000016687433250267;60,0.0000008343716625133498;61,0.00000066749733001068;62,0.0000005562477750089;63,0.0000006118725525097899;64,0.0000007231221075115699;65,0.00011442016731933073;66,0.00022216536133855467;67,0.0003249599501601994;68,0.0004132364720541118;69,0.0004992880028479886;70,0.0005821132965468138;71,0.0006328430936276255;72,0.0006848522605909577;73,0.0006548705055179778;74,0.0006257231221075115;75,0.0005990232289070844;76,0.0005709883410466358;77,0.0005482378070487718;78,0.0005260991456034177;79,0.0004856043075827697;80,0.00045156194375222503;81,0.0004068952474190103;82,0.00039276655393378427;83,0.00036528791384834455;84,0.0003266286934852261;85,0.0003063256496974012;86,0.0002770670167319331;87,0.00024847588109647563;88,0.00022617034531861874;89,0.00020280793876824494;90,0.00015636124955500182;91,0.0001223188857244571;92,0.00009650898896404415;93,0.00007053221787112852;94,0.000043721075115699546;95,0.000016298059807760773;96,0.0000035599857600569594;97,0.0000011681203275186898;98,0.0000022249911000355997;99,0.0000018356176575293698;100,0.0000012793698825204698;101,0.0000012237451050195797;102,0.00000094562121751513;103,0.0000006674973300106798;104,0.00000033374866500533997;105,0.0000008899964400142396;106,0.0000008899964400142396;107,0.00000016687433250267;108,0.0000012237451050195797;109,0.00000194686721253115;110,0.0000015574937700249199;111,0.0000008899964400142397;112,0.0000014462442150231397;113,0.0000017243681025275896;114,0.0000011124955500177996;115,0.0000016131185475258094;116,0.0000016131185475258098;117,0.00000083437166251335;118,0.0000010012459950160196;119,0.0000013349946600213599;120,0.0000009456212175151301;121,0.0000007231221075115697;122,0.00000038937344250622987;123,0.0000008899964400142398;124,0.0000006118725525097899;125,0.0000004449982200071199;126,0.0000005562477750088999;127,0.0000013349946600213595;128,0.0000009456212175151297;129,0.0000006674973300106798;130,0.000000055624777500889984;131,0.00000044499822000711987;132,0.0000009456212175151299;133,0.0000006674973300106798;134,0.0000003893734425062299;135,0.0000002781238875044499;136,0.0000005006229975080098;137,0.0000005006229975080098;138,0.0000002781238875044499;139,0.00000033374866500533997;140,0.0000006674973300106798;141,0.00000022249911000355996;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0.0000004449982200071201;153,0.00000038937344250623;154,0.00000016687433250267;155,0.00000005562477750088999;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.00022416785332858672;2,0.0011841402634389462;3,0.002113797169811321;4,0.0022931314524741904;5,0.0023033664115343537;6,0.002306425774296903;7,0.002267210306158775;8,0.0022706034175863296;9,0.0022884589711641154;10,0.0022403991634033465;11,0.0023189969740121043;12,0.002514573691705234;13,0.002660699982200071;14,0.002735737807048772;15,0.002752258365966536;16,0.0026970785866856535;17,0.0027047548059807762;18,0.002711207280170879;19,0.0026728818084727664;20,0.0026370038269846923;21,0.0026309407262370956;22,0.0025874421502313995;23,0.0025666384834460666;24,0.0025354329832680675;25,0.0025295923816304735;26,0.002550451673193307;27,0.0025523429156283375;28,0.0025436654503381987;29,0.0024942150231399077;30,0.0024610626557493775;31,0.0024819775720897118;32,0.0024471008365966537;33,0.002451105820576718;34,0.0024609514061943753;35,0.002424572801708794;36,0.002423849679601282;37,0.0024375889996440013;38,0.002437978373086508;39,0.0024233490566037737;40,0.002433584015663938;41,0.002451105820576718;42,0.0024430958526165903;43,0.002419622196511214;44,0.0024249065503737987;45,0.002404714756140976;46,0.002351426219295123;47,0.0023843004627981485;48,0.0023756786222855104;49,0.0023648317906728375;50,0.0023667786578853685;51,0.0023474768600925595;52,0.002352649964400143;53,0.0023609380562477755;54,0.0023305669277322886;55,0.002353929334282663;56,0.0023271181915272337;57,0.002332625044499822;58,0.002347866233535066;59,0.002327229441082236;60,0.002317050106799573;61,0.0023153813634745465;62,0.002315881986472054;63,0.0022731621573513707;64,0.002216647383410466;65,0.0019414159843360625;66,0.0016831501423994306;67,0.0013727082591669633;68,0.001111494304022784;69,0.0008225792096831614;70,0.0005475146849412602;71,0.00027534264862940543;72,0.0000053399786400854395;73,0.000006007475970096121;74,0.0000048949804200783195;75,0.0000049506051975792085;76,0.000006229975080099679;77,0.00000472810608757565;78,0.000005562477750089;79,0.000005506852972588111;80,0.000004004983980064079;81,0.0000050062299750801;82,0.0000057293520825916705;83,0.000005395603417586329;84,0.00000461685653257387;85,0.00000495060519757921;86,0.0000036712353150587396;87,0.0000021693663225347102;88,0.00000016687433250267004;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022249911000356;50,0.00000027812388750444997;51,0.00000027812388750444997;52,0.00000005562477750089;53,0.00000033374866500534;54,0.00000011124955500177998;55,0.00000027812388750444997;56,0.0000012793698825204698;57,0.0000013906194375222498;58,0.00000116812032751869;59,0.00000194686721253115;60,0.00000094562121751513;61,0.0000007787468850124602;62,0.00000211374154503382;63,0.0000029481132075471697;64,0.00000272561409754361;65,0.00004177420790316839;66,0.00008460528657885369;67,0.00013400008899964403;68,0.00018968049127803492;69,0.0002424127803488786;70,0.000303377536489854;71,0.0003700160199359203;72,0.0004318707725169099;73,0.00044739008543965826;74,0.0004680825026699894;75,0.0004831568173727306;76,0.0005052954788180848;77,0.0005165873086507654;78,0.000509189213243147;79,0.000525932271270915;80,0.0005540227839088644;81,0.0005662046101815592;82,0.0005803889284442863;83,0.0005957413670345319;84,0.0006150431648273406;85,0.0006378493236027056;86,0.0006397961908152368;87,0.000642188056247775;88,0.0006247218761124957;89,0.0006015819686721253;90,0.000594183873264507;91,0.0005767176931292274;92,0.0005467915628337486;93,0.0005397828408686366;94,0.0005184785510857957;95,0.0005098010857956569;96,0.0004975080099679602;97,0.00047297748309006765;98,0.00045061632253470986;99,0.0004269201673193307;100,0.0004198001957992168;101,0.0003812522249911001;102,0.0003611160555357779;103,0.0003386436454254183;104,0.0003287424350302599;105,0.0003149474902100392;106,0.00029887192951228196;107,0.00028446511213955146;108,0.00026744393022427914;109,0.00025298148807404775;110,0.00021721475614097543;111,0.00018817862228551088;112,0.00017560742257030973;113,0.0001602549839800641;114,0.00013895069419722324;115,0.00012204076183695267;116,0.00010663269846920612;117,0.00009383899964400141;118,0.0000945064969740121;119,0.00007943218227127092;120,0.0000644691171235315;121,0.000052120416518333925;122,0.000040884211463154154;123,0.00003999421502313991;124,0.00002964800640797437;125,0.000020469918120327523;126,0.00000990121039515842;127,0.00000328186187255251;128,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.000006452474190103239;37,0.000049561676753292995;38,0.0001240988786044856;39,0.00020152856888572447;40,0.0002741745283018868;41,0.00033981176575293706;42,0.0004241945532217872;43,0.0005146404414382343;44,0.0005878982734069064;45,0.000666551708793165;46,0.0007655081879672481;47,0.0008322022961908152;48,0.0008960595407618369;49,0.0009821110715557137;50,0.001074615076539694;51,0.0011617234781060876;52,0.001225691972232111;53,0.001305680402278391;54,0.0014019112673549308;55,0.0014474679601281597;56,0.0015208370416518336;57,0.0016231866322534711;58,0.0017181381274474902;59,0.0017746529013883943;60,0.001844740121039516;61,0.001921557938768245;62,0.001981632698469206;63,0.002014896315414738;64,0.002058450516197935;65,0.002136102705589178;66,0.002200293698825205;67,0.0022828964934140266;68,0.0023243925774296906;69,0.002392254805980776;70,0.002446767087931649;71,0.0025024474902100398;72,0.0025900008899964397;73,0.0025992346030615883;74,0.0024691838732645074;75,0.002370449893200427;76,0.002305480153079387;77,0.0022681559273762903;78,0.002213365521537914;79,0.002104785955856177;80,0.002019179423282307;81,0.0019890307938768247;82,0.0018958036667853328;83,0.0018139239943040229;84,0.0017252580989676044;85,0.001686487629049484;86,0.0016246328764684941;87,0.0015234514061943753;88,0.0014387904948380205;89,0.001368369526521894;90,0.001287991723033108;91,0.0011941527233891064;92,0.0011182805268778926;93,0.0010499733001067997;94,0.0009669811320754718;95,0.0009105219829120684;96,0.0008298660555357779;97,0.0007806937522249913;98,0.0006951984692061231;99,0.0006187700249199004;100,0.0005544677821288715;101,0.0004750355998576006;102,0.00040867524029903886;103,0.00035138171947312214;104,0.0002849101103595586;105,0.00022566972232111073;106,0.00015458125667497328;107,0.00009039026343894624;108,0.00003381986472054112;109,0.00000467248131007476;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.001900364898540406;2,0.0018794499822000713;3,0.0018686587753648986;4,0.0017975146849412602;5,0.0017816059985760059;6,0.0017495661267354931;7,0.0017269268422926308;8,0.0017242012281950873;9,0.0016597321110715557;10,0.001595318618725525;11,0.001540361338554646;12,0.0015499288002847988;13,0.0015289582591669632;14,0.0015210595407618372;15,0.0015066527233891067;16,0.001462319775720897;17,0.001427554289782841;18,0.0014155949626201494;19,0.001371985137059452;20,0.0013620283018867924;21,0.0013304334282662868;22,0.001312633499466002;23,0.001283374866500534;24,0.0012581768422926308;25,0.0012598455856176576;26,0.00122374510501958;27,0.0011983245817016731;28,0.001182805268778925;29,0.0011793565325738699;30,0.0011508210217159131;31,0.0011313523495906017;32,0.0010995906016375936;33,0.0010811788002847988;34,0.0010508076717693129;35,0.0010537001601993593;36,0.0010483601815592738;37,0.0009970741367034534;38,0.0009952941438234248;39,0.0009649786400854397;40,0.0009408931114275544;41,0.0009529080633677465;42,0.0009159175863296546;43,0.0009023451406194377;44,0.000879872730509078;45,0.0008846564613741545;46,0.0008523384656461373;47,0.0008330922926308296;48,0.0008176842292630831;49,0.0008185186009255964;50,0.0008011636703453187;51,0.0007597232111071555;52,0.0007456501423994304;53,0.0007146671413314347;54,0.0006989809540761837;55,0.0006733935564257744;56,0.0006446355464578142;57,0.0006538692595229618;58,0.0006194375222499111;59,0.0004887192951228195;60,0.00036189480242079027;61,0.00031661623353506583;62,0.0003027656639373443;63,0.00028613385546457813;64,0.0002565970986116056;65,0.00020881541473834105;66,0.00017149118903524388;67,0.00013366634033463868;68,0.00009278212887148452;69,0.00006335662157351371;70,0.00003999421502313991;71,0.00001624243503025988;72,0.00000050062299750801;73,0.0000003337486650053399;74,0.00000033374866500533997;75,0.00000016687433250266998;76,0.00000011124955500177997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.0000011507375845496617;40,0.0000014053404479741455;41,0.0000023014751690993234;42,0.000002556078032523807;43,0.000006904425507297971;44,0.000006008290786172793;45,0.0000034522127536489854;46,0.00000025460286342448376;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000955816183137505;97,0.000000955816183137505;98,0.00000191163236627501;99,0.000000955816183137505;100,0.000004779080915687525;101,0.00000382326473255002;102,0;103,0;104,0.0000018886698153287637;105,0.0000009443349076643818;106,0.0000037773396306575273;107,0.0000037773396306575273;108,0.000002833004722993146;109,0.0000009443349076643818;110,0.0000009443349076643818;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0.0000005092057268489676;140,0.0000005092057268489676;141,0.0000010184114536979352;142,0.0000020368229073958705;143,0.0000010184114536979352;144,0.0000005092057268489676;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000033374866500534;22,0.00000100124599501602;23,0.00000066749733001068;24,0.0000005006229975080099;25,0.0000020024919900320397;26,0.00000250311498754005;27,0.0000014462442150231399;28,0.0000027812388750444995;29,0.000005228729085083659;30,0.000005562477750088997;31,0.0000040606087575649685;32,0.0000071755962976148095;33,0.000009511836952652192;34,0.000010068084727661093;35,0.000010290583837664652;36,0.0000116812032751869;37,0.00001079120683517266;38,0.000010401833392666429;39,0.00000967871128515486;40,0.00001101370594517622;41,0.000010346208615165538;42,0.00001195932716269135;43,0.00001218182627269491;44,0.00001240432538269847;45,0.00001346119615521538;46,0.000016687433250266996;47,0.000019134923460306162;48,0.000019635546457814167;49,0.00002486427554289783;50,0.000024641776432894266;51,0.00002419677821288715;52,0.000029759255962976147;53,0.00003248487006051976;54,0.000030816126735493056;55,0.000029870505517977925;56,0.000030093004627981488;57,0.00003715735137059452;58,0.00004199670701317195;59,0.00004477794588821645;60,0.000043832324670701324;61,0.000039215468138127455;62,0.000042330455678177296;63,0.00004594606621573515;64,0.000045890441438234256;65,0.0008630740477038094;66,0.0016324759700961197;67,0.00235253871484514;68,0.0030368903524385905;69,0.0036928177287290855;70,0.0042912290850836594;71,0.004946600213599146;72,0.005619548771804914;73,0.00548810742257031;74,0.0052108179067283725;75,0.005072757208971164;76,0.0049428733535065855;77,0.004811320754716981;78,0.004701962442150232;79,0.004622808383766466;80,0.004537313100747597;81,0.004373442506229975;82,0.004226036845852616;83,0.004162791473834105;84,0.004092148006407975;85,0.004013438946244215;86,0.0038651989142043435;87,0.0037258032217871136;88,0.003551642043431827;89,0.0034363875044499826;90,0.003324915450338199;91,0.0031929178533285866;92,0.0030755495728017087;93,0.0029795412068351727;94,0.0028385323958704167;95,0.002712097276610894;96,0.002656027500889996;97,0.0025595185119259524;98,0.0023795723567105733;99,0.0022219317372730507;100,0.0020780304378782482;101,0.0019812989498042013;102,0.0018565325738697047;103,0.0016987250800996798;104,0.0015227282840868637;105,0.001392677554289783;106,0.0013165272338910646;107,0.0012136213955144179;108,0.001098311231755073;109,0.0010034153613385547;110,0.0008664671591313636;111,0.0006861316304734781;112,0.0005591402634389463;113,0.00047987495550017804;114,0.00040494838020647923;115,0.0003142243681025276;116,0.0002339021893912424;117,0.00017271493414026343;118,0.00010446333214667142;119,0.00003988296546813813;120,0.00000973433606265575;121,0.00000072312210751157;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004099546101815593;2,0.0005202029191883233;3,0.0006201606443574227;4,0.0007517132431470275;5,0.0008668565325738698;6,0.0009455655927376292;7,0.0010543120327518689;8,0.0011746284264862942;9,0.001284542986828053;10,0.0013586351904592382;11,0.0015398050907796368;12,0.0017862228551085795;13,0.002065570487718049;14,0.002231777322890709;15,0.0023703386436454256;16,0.002564691616233535;17,0.002692239231043076;18,0.0027815169989320048;19,0.0028041562833748665;20,0.002922803933784265;21,0.0030433428266286935;22,0.0031913047347810605;23,0.003281472499110004;24,0.003367134656461374;25,0.003512537824848701;26,0.0037450493948024207;27,0.003928499911000357;28,0.003977950338198648;29,0.0040389150943396235;30,0.004124021003915984;31,0.0042792141331434675;32,0.0043890730687077256;33,0.004513005072979708;34,0.004614687166251335;35,0.004777222766108936;36,0.004867501779992879;37,0.005007064346742612;38,0.005042664204343183;39,0.005076317194731221;40,0.005132831968672125;41,0.005311498754004984;42,0.005454398807404771;43,0.005561921502313991;44,0.005711663403346386;45,0.0058246929512281945;46,0.005993681025275898;47,0.006163169722321111;48,0.006220463243147029;49,0.00630312166251335;50,0.006471164115343538;51,0.006684985760056959;52,0.0067606910822356715;53,0.006772094161623353;54,0.006825104574581703;55,0.006954654681381275;56,0.007062622374510502;57,0.007227382965468138;58,0.0073698936454254195;59,0.0073947579209683156;60,0.007240287913848344;61,0.00704181870772517;62,0.006832725169099324;63,0.00661500978996084;64,0.006344450872196511;65,0.005395825916696333;66,0.004468338376646493;67,0.003678911534353863;68,0.0029332057671769317;69,0.002137827073691705;70,0.0014093093627625488;71,0.0007071577963688146;72,0.00001346119615521538;73,0.00001368369526521894;74,0.000014907440370238518;75,0.00001440681737273051;76,0.000014184318262726952;77,0.000015018689925240301;78,0.00001207057671769313;79,0.000013850569597721609;80,0.000014239943040227841;81,0.00001418431826272695;82,0.00001362807048771805;83,0.00001129182983268067;84,0.000013238697045211821;85,0.000011514328942684228;86,0.00001129182983268067;87,0.00000956746173015308;88,0.000006563723745105021;89,0.00000684184763260947;90,0.0000062855998576005695;91,0.00000634122463510146;92,0.00000817684229263083;93,0.000011625578497686008;94,0.000010624332502669988;95,0.00000561810252758989;96,0.00000695309718761125;97,0.000005896226415094339;98,0.00000617435030259879;99,0.000006897472410110361;100,0.000007119971520113919;101,0.00000522872908508366;102,0.000004060608757564969;103,0.00000183561765752937;104,0.0000024474902100391597;105,0.00000233624065503738;106,0.00000133499466002136;107,0.00000161311854752581;108,0.0000020581167675329296;109,0.0000020581167675329296;110,0.0000012793698825204698;111,0.0000018356176575293698;112,0.0000008343716625133501;113,0.00000022249911000356;114,0.00000022249911000355996;115,0.0000006118725525097899;116,0.00000033374866500533997;117,0.00000027812388750445007;118,0;119,0.00000016687433250266996;120,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.000616433784264863;2,0.0008057249021003916;3,0.0009878404236383057;4,0.0011133299216803134;5,0.00124499377002492;6,0.0013853350836596653;7,0.0015406950872196511;8,0.0016790339088643648;9,0.001877002491990032;10,0.0020427087041651835;11,0.00220997241011036;12,0.002531928622285511;13,0.002948224457102172;14,0.003250545122819509;15,0.0033790383588465644;16,0.0035404058383766467;17,0.0037055558027767896;18,0.003934173638305448;19,0.004115510412958349;20,0.004292063456746173;21,0.004428677910288359;22,0.004570799216803133;23,0.004708637415450338;24,0.004899819775720897;25,0.005049839800640797;26,0.005199804200783197;27,0.005389373442506231;28,0.005616656283374866;29,0.005870861516553935;30,0.006019602171591314;31,0.006123509255962977;32,0.006226415094339622;33,0.006377325115699536;34,0.0065546569063723754;35,0.006693273851904593;36,0.006872997508009968;37,0.007071856087575651;38,0.007265930936276256;39,0.00737873798504806;40,0.007459393912424351;41,0.007554734781060876;42,0.00772183161267355;43,0.007910232734069064;44,0.008128337486650053;45,0.008316460484158064;46,0.008526444019223924;47,0.008686699003203985;48,0.00876435119259523;49,0.00872252135991456;50,0.008625734247063012;51,0.008523329031683874;52,0.008232912068351727;53,0.007897216536133855;54,0.007609247063011748;55,0.007480197579209683;56,0.0074208459416162335;57,0.007277445265218939;58,0.007133933339266643;59,0.006918387326450694;60,0.0067536823602705595;61,0.0065620550017799935;62,0.006328987184051263;63,0.0061487629049483804;64,0.005928544410822357;65,0.005076428444286223;66,0.0042301530793876834;67,0.0033318129227483087;68,0.002517188056247775;69,0.001819430847276611;70,0.0011662847098611606;71,0.0005770514417942328;72,0.0000100124599501602;73,0.000011848077607689571;74,0.00000934496262014952;75,0.00001045745817016732;76,0.00000928933784264863;77,0.000010457458170167318;78,0.000012571199715201139;79,0.000011403079387682449;80,0.000011069330722677109;81,0.000012014951940192238;82,0.000012237451050195798;83,0.000009789960840156639;84,0.000007286845852616589;85,0.00000884433962264151;86,0.0000057849768600925595;87,0.000005673727305090781;88,0.000004672481310074761;89,0.00000422748309006764;90,0.0000031706123175507297;91,0.0000019468672125311502;92,0.0000011124955500177999;93,0.0000006118725525097899;94,0.00000016687433250266998;95,0.0000012793698825204698;96,0.0000011681203275186898;97,0.00000061187255250979;98,0.00000027812388750445007;99,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.00047887370950516197;2,0.0004742012281950872;3,0.00047192061231755074;4,0.0006980353328586686;5,0.0007279058383766465;6,0.0007414226593093628;7,0.0007492657529369884;8,0.0007466513883944464;9,0.0007630606977572091;10,0.0007632831968672125;11,0.0007810831256674975;12,0.0007741856532573871;13,0.0007888149697401211;14,0.0007941549483802064;15,0.0007983824314702742;16,0.000805558027767889;17,0.0008160154859380563;18,0.0008204654681381276;19,0.0008345385368458526;20,0.0008319241723033109;21,0.0008658552865788538;22,0.0008790383588465646;23,0.000894001423994304;24,0.0009126357244571021;25,0.000938501245995016;26,0.0009403924884300464;27,0.0009377224991100038;28,0.0009356087575649698;29,0.0009384456212175151;30,0.0009579699181203275;31,0.0009324937700249199;32,0.0009356087575649696;33,0.0009625311498754003;34,0.000965256763972944;35,0.0009953497686009255;36,0.0009863941794232825;37,0.0009947378960484157;38,0.0010288358846564614;39,0.0010995349768600927;40,0.0011778546635813456;41,0.00126373932004272;42,0.0013512927198291208;43,0.0014104218583125669;44,0.0014944152723389108;45,0.001588866144535422;46,0.0016722476860092559;47,0.0017500111249555005;48,0.0018441838732645073;49,0.0019687833748665007;50,0.0020723010857956565;51,0.0021533463866144544;52,0.0022708815414738343;53,0.0023795723567105733;54,0.0024823669455322182;55,0.00257186721253115;56,0.002747808383766465;57,0.0027592114631541475;58,0.0028486561053755787;59,0.002893155927376291;60,0.0030004004983980063;61,0.0031126512993948025;62,0.0032536601103595585;63,0.0033863808294766823;64,0.003523440281238875;65,0.0032344695621217517;66,0.0028473211107155573;67,0.0024492702029191883;68,0.0020198469206123178;69,0.0015635012459950162;70,0.0010849056603773584;71,0.0005579721431114276;72,0.000004227483090067641;73,0.0000032818618725525095;74,0.000004338732645069419;75,0.0000030593627625489495;76,0.00000322623709505162;77,0.0000036712353150587396;78,0.00000372686009255963;79,0.00000328186187255251;80,0.00000328186187255251;81,0.0000043943574225703095;82,0.0000033374866500534;83,0.0000026699893200427198;84,0.0000029481132075471697;85,0.0000025031149875400496;86,0.0000037268600925596304;87,0.00000328186187255251;88,0.00000311498754004984;89,0.00000228061587753649;90,0.0000016687433250267;91,0.00000189124243503026;92,0.00000266998932004272;93,0.00000127936988252047;94,0.00000233624065503738;95,0.00000211374154503382;96,0.0000015018689925240298;97,0.0000012237451050195799;98,0.0000017799928800284801;99,0.00000211374154503382;100,0.0000017799928800284797;101,0.00000155749377002492;102,0.0000021693663225347102;103,0.00000150186899252403;104,0.00000116812032751869;105,0.0000012237451050195799;106,0.0000010012459950160199;107,0.00000083437166251335;108,0.0000010568707725169098;109,0.00000105687077251691;110,0.00000100124599501602;111,0.0000007231221075115698;112,0.0000006118725525097899;113,0.00000050062299750801;114,0.0000007787468850124598;115,0.00000033374866500533997;116,0.0000005006229975080101;117,0.00000005562477750089;118,0.0000003893734425062301;119,0.00000022249911000356001;120,0.00000016687433250267004;121,0.00000011124955500178;122,0.0000005006229975080099;123,0;124,0;125,0;126,0.0000004449982200071201;127,0.00000022249911000355996;128,0.00000011124955500178;129,0.00000016687433250266998;130,0.00000005562477750088999;131,0.00000005562477750088999;132,0.00000011124955500178;133,0;134,0.00000005562477750089;135,0.00000005562477750089;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0.00000011124955500177997;185,0.000000055624777500889984;186,0;187,0;188,0;189,0;190,0;191,0.00000005562477750088999;192,0;193,0;194,0;195,0;196,0.00000005562477750088999;197,0;198,0;199,0;200,0.00000033374866500534;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0.00000005562477750088999;211,0.00000016687433250267;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0.00000005562477750088999;220,0;221,0;222,0;223,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00027100391598433604;2,0.00034771048415806335;3,0.00040917586329654684;4,0.00048510368458526165;5,0.0005632008721965112;6,0.0006309518511925952;7,0.0007027078141687434;8,0.000761058205767177;9,0.0008157929868280527;10,0.0008989520291918832;11,0.0009951272694909221;12,0.0011484847810608759;13,0.001311632253470986;14,0.0014392354930580276;15,0.0015601637593449628;16,0.0016063879494482023;17,0.0016651833392666432;18,0.001777879138483446;19,0.0018798949804200785;20,0.0019251735493058027;21,0.0020002113741545034;22,0.002064291117835529;23,0.002086930402278391;24,0.002124699626201495;25,0.002249132253470986;26,0.0023430825026699888;27,0.0023722298860804555;28,0.002422292185831257;29,0.0024884300462798153;30,0.0025836596653613384;31,0.0026736049305802778;32,0.0027352928088287647;33,0.0028354174083303667;34,0.0028918765574937697;35,0.0029853818084727662;36,0.003089122018511926;37,0.0031099256852972585;38,0.003141631808472766;39,0.003192917853328587;40,0.0032800818796724814;41,0.0033985070309718764;42,0.0034740454788180844;43,0.003491011035955856;44,0.003561988252046992;45,0.0036423104307582773;46,0.0037444931470274117;47,0.003805068529725881;48,0.0038719295122819518;49,0.003957647294410823;50,0.004006597098611606;51,0.004064279992880029;52,0.004149219028123888;53,0.004205455678177287;54,0.004265252313990744;55,0.004380228729085084;56,0.004411434229263084;57,0.004459772160911356;58,0.0044980976326094695;59,0.004583259166963333;60,0.004648395781416874;61,0.004749911000355999;62,0.004802198291206835;63,0.0047715490388038455;64,0.004625923371306515;65,0.003993636525453898;66,0.003377647739409043;67,0.0026998042007831966;68,0.0021096253114987543;69,0.0015818017977928091;70,0.0010361227305090781;71,0.0005128048237807048;72,0.00000995683517265931;73,0.000009011213955144179;74,0.00001051308294766821;75,0.00000990121039515842;76,0.000008899964400142399;77,0.000009233713065147738;78,0.00001023495906016376;79,0.00001067995728017088;80,0.000009400587397650409;81,0.00001218182627269491;82,0.0000088999644001424;83,0.000007676219295122821;84,0.00000856621573513706;85,0.00000828809184763261;86,0.00000495060519757921;87,0.00000517310430758277;88,0.000006897472410110359;89,0.0000066749733001068;90,0.0000071199715201139205;91,0.000006118725525097901;92,0.000004227483090067639;93,0.00000467248131007476;94,0.000005117479530081879;95,0.000004283107867568529;96,0.00000266998932004272;97,0.000004950605197579209;98,0.00000417185831256675;99,0.0000039493592025631895;100,0.00000467248131007476;101,0.0000043387326450694205;102,0.00000322623709505162;103,0.0000034487362050551796;104,0.00000311498754004984;105,0.0000035599857600569594;106,0.0000021137415450338204;107,0.0000012793698825204698;108,0.00000177999288002848;109,0.0000011124955500177999;110,0.0000017243681025275898;111,0.00000127936988252047;112,0.00000155749377002492;113,0.0000015574937700249197;114,0.00000094562121751513;115,0.00000144624421502314;116,0.0000015018689925240298;117,0.00000139061943752225;118,0.0000010012459950160199;119,0.0000003337486650053399;120,0.00000038937344250622997;121,0.00000066749733001068;122,0.00000044499822000712;123,0.00000050062299750801;124,0.00000027812388750445;125,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0.0000003337486650053399;16,0.0000004449982200071199;17,0.00000038937344250622997;18,0.00000005562477750088999;19,0.00000050062299750801;20,0.00000139061943752225;21,0.0000018356176575293698;22,0.0000014462442150231397;23,0.00000083437166251335;24,0.00000161311854752581;25,0.0000033374866500534002;26,0.0000039493592025631895;27,0.00000439435742257031;28,0.000006063100747597009;29,0.000007843093627625492;30,0.000010624332502669988;31,0.000012960573157707367;32,0.000015296813812744753;33,0.000016965557137771445;34,0.000017132431470274116;35,0.00001657618369526522;36,0.000017188056247775008;37,0.000015296813812744746;38,0.00001852305090779637;39,0.00002008054467782129;40,0.000017688679245283016;41,0.00001885679957280171;42,0.00002313990744037024;43,0.000025531772872908515;44,0.00002319553221787113;45,0.000022861783552865786;46,0.00002208303666785333;47,0.000024363652545389824;48,0.00002074804200783197;49,0.00002219428622285511;50,0.000024864275542897826;51,0.000028368636525453897;52,0.00003415361338554645;53,0.00003632297970808117;54,0.00003220674617301531;55,0.0000294811320754717;56,0.00002842426130295479;57,0.000033819864720541126;58,0.000035599857600569596;59,0.00003749110003559986;60,0.0000350436098255607;61,0.00003493236027055893;62,0.00003927109291562835;63,0.000040717337130651476;64,0.00003771359914560342;65,0.0007647294410822357;66,0.0014560898006407974;67,0.0021037847098611608;68,0.002597287735849057;69,0.003127336240655038;70,0.003621618013527946;71,0.00407000934496262;72,0.004487250800996796;73,0.004421112940548238;74,0.004166017710929157;75,0.004009767710929157;76,0.00375684184763261;77,0.003562377625489498;78,0.0033962264150943396;79,0.0033032217871128517;80,0.0031473611605553576;81,0.0030242079031683874;82,0.002793031327874689;83,0.0026121951762192947;84,0.0024496595763616943;85,0.0023131007475970097;86,0.0021711463154147383;87,0.0019541540583837666;88,0.0018148139907440373;89,0.0016860982556069779;90,0.0015099345852616591;91,0.0013383877714489142;92,0.0011882008721965111;93,0.0010322846208615168;94,0.0008628515485938056;95,0.0007048215557137772;96,0.0005523540405838378;97,0.0003840334638661446;98,0.00021176352794588824;99,0.00008594028123887505;100,0.00002219428622285511;101,0.00000228061587753649;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000022249911000355996;13,0;14,0.00000005562477750088999;15,0.00000016687433250267;16,0;17,0.00000005562477750088999;18,0.00000005562477750088999;19,0;20,0;21,0.00000011124955500177998;22,0.00000022249911000355996;23,0.0000004449982200071201;24,0.0000008343716625133501;25,0.00000027812388750445;26,0.0000008343716625133501;27,0.0000005006229975080099;28,0.00000139061943752225;29,0.0000005006229975080099;30,0.00000094562121751513;31,0.00000139061943752225;32,0.00000116812032751869;33,0.00000183561765752937;34,0.0000017799928800284801;35,0.0000016687433250267001;36,0.0000025031149875400496;37,0.0000023362406550373795;38,0.0000020581167675329296;39,0.0000017243681025275898;40,0.00000189124243503026;41,0.0000020581167675329296;42,0.0000013349946600213599;43,0.0000014462442150231399;44,0.0000015018689925240302;45,0.0000015574937700249199;46,0.0000019468672125311502;47,0.0000023918654325382703;48,0.0000014462442150231399;49,0.00000250311498754005;50,0.000004283107867568531;51,0.0000027812388750445004;52,0.00000194686721253115;53,0.00000211374154503382;54,0.00000294811320754717;55,0.00000350436098255607;56,0.0000027812388750445;57,0.0000025031149875400496;58,0.00000261436454254183;59,0.0000020581167675329296;60,0.0000013349946600213599;61,0.0000011124955500177999;62,0.00000272561409754361;63,0.0000030106910822356715;64,0.00000322623709505162;65,0.00003445607311320755;66,0.000060429367657529374;67,0.00008123303444286223;68,0.00009689836240655037;69,0.00010892026744393022;70,0.00011880583337041651;71,0.00012245968594250625;72,0.00012384509055713777;73,0.00011309212575649698;74,0.00009175133221342116;75,0.00007610512526699893;76,0.00005922648184407262;77,0.000041461318529725886;78,0.0000262062233001068;79,0.000007293798949804201;80,0.0000008899964400142401;81,0;82,0;83,0;84,0;85,0.00000027812388750445007;86,0.00000050062299750801;87,0.00000027812388750445007;88,0.0000003893734425062301;89,0.00000016687433250267004;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0;234,0;235,0;236,0;237,0;238,0;239,0;240,0;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0;249,0;250,0;251,0;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0.00000005562477750088999;270,0;271,0;272,0;273,0;274,0;275,0.00000005562477750088999;276,0;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0.000000055624777500890004;287,0.00000005562477750088999;288,0.000000055624777500890004;289,0.000000055624777500890004;290,0.000000055624777500890004;291,0.000000055624777500890004;292,0;293,0;294,0;295,0;296,0;297,0;298,0;299,0;300,0;301,0.00000005562477750088999;302,0.00000005562477750088999;303,0;304,0;305,0;306,0.00000005562477750088999;307,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.0000011507375845496617;40,0.0000011507375845496617;41,0.000004602950338198647;42,0.0000011507375845496617;43,0;44,0.000004602950338198647;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000955816183137505;97,0.000000955816183137505;98,0.000000955816183137505;99,0.000000955816183137505;100,0.00000191163236627501;101,0.000000955816183137505;102,0.00000191163236627501;103,0;104,0;105,0;106,0.0000018886698153287637;107,0.0000009443349076643818;108,0.0000037773396306575273;109,0;110,0.0000009443349076643818;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0.0000007638085902734514;139,0.0000007638085902734514;140,0;141,0;142,0.0000045828515416407085;143,0.0000015276171805469028;144,0.0000007638085902734514;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000004858212139841658;110,0.000026162426345539186;111,0.0000565471209582553;112,0.00008970281374309284;113,0.00012387021995729952;114,0.00014679186060769346;115,0.00017037994050809124;116,0.00018929463217269414;117,0.00022648119410919096;118,0.00026919172724124314;119,0.0003005809554547108;120,0.00031432038886314566;121,0.0003444850028344452;122,0.0003641270867151586;123,0.000383153065723335;124,0.0004000891477752024;125,0.0003946553401116559;126,0.0004280787271382164;127,0.00044529077912900306;128,0.00043698481328696974;129,0.00042899018748694033;130,0.0004327601643397774;131,0.000429829698395201;132,0.00043775913890909654;133,0.0004567728366314795;134,0.00045337677769533496;135,0.00045120287674419953;136,0.00042803307854363695;137,0.0004241616393758609;138,0.0004408061825972805;139,0.0004506450796377521;140,0.00046140922985560783;141,0.0004652416334288467;142,0.00047715754152268723;143,0.00047102411624320897;144,0.0004358128007365689;145,0.00040665544114318114;146,0.0003672031142378148;147,0.0003455300835726005;148,0.00033049042099008233;149,0.00029886252015793566;150,0.00028455648490585385;151,0.0002526609276205558;152,0.0002139738948686868;153,0.00019159315983320304;154,0.00017642433591271068;155,0.00017083438587101632;156,0.00015791572023929297;157,0.00014307301169232825;158,0.00012610832369170524;159,0.00010537158046680314;160,0.00009620305268778924;161,0.00008851988029547883;162,0.00008300607422570311;163,0.00006875222499110005;164,0.00006172264373442506;165,0.00004797637059451763;166,0.0000415934273762905;167,0.00004109975747597009;168,0.00003485587620149519;169,0.000029119571021715918;170,0.00002495466580633678;171,0.000020177888038447845;172,0.000014650175774296906;173,0.000010123709505161982;174,0.00000684184763260947;175,0.00000255873976504094;176,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000016687433250267;47,0.00000027812388750445;48,0.0000003337486650053401;49,0.0000005006229975080099;50,0.00000027812388750444997;51,0.00000088999644001424;52,0.00000161311854752581;53,0.00000172436810252759;54,0.00000150186899252403;55,0.0000021693663225347102;56,0.0000025587397650409395;57,0.00000239186543253827;58,0.00000378248487006052;59,0.00000339311142755429;60,0.00000339311142755429;61,0.00000317061231755073;62,0.0000044499822000712;63,0.000005284353862584549;64,0.0000057293520825916705;65,0.0001101926842292631;66,0.00022383410466358136;67,0.0003603373086507654;68,0.0004885524207903168;69,0.0006470274118903524;70,0.0007952118191527234;71,0.0009050707547169812;72,0.0010005784976860092;73,0.00099312477750089;74,0.0009278212887148451;75,0.0008681359024563901;76,0.0008403235137059452;77,0.000795934941260235;78,0.0007541051085795658;79,0.0007049328052687789;80,0.0006594873620505519;81,0.0006096475614097545;82,0.0005721564613741545;83,0.0005143066927732289;84,0.000497619259522962;85,0.00046090690637237453;86,0.0004038358846564614;87,0.00035944731221075116;88,0.00031895247419010326;89,0.0002762326450694197;90,0.00022622597009611963;91,0.00018617613029547883;92,0.00014417942328230689;93,0.00010168209327162692;94,0.00005757164471342114;95,0.00002536489854040584;96,0.0000038937344250623;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0.000002285896049084977;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.0000005680105334089942;22,0.0000011360210668179884;23,0.0000005680105334089942;24,0;25,0;26,0.0000005680105334089942;27,0.0000022720421336359768;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000032143596410050726;44,0.0000032143596410050726;45,0;46,0.0000017040316002269828;47,0.0000017040316002269828;48,0;49,0;50,0.0000022720421336359768;51,0.0000017144220368137324;52,0.000002285896049084977;53,0.0000011429480245424884;54,0;55,0.0000034184536370407146;56,0.0000034184536370407146;57,0;58,0;59,0;60,0.000002427079198599282;61,0.00000031410583578969854;62,0;63,0;64,0;65,0.0000008740336300235091;66,0.0000008740336300235091;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00041229085083659665;2,0.0005260991456034177;3,0.0006433005517977929;4,0.0007503226237095051;5,0.0008556759522961909;6,0.0009822779458882164;7,0.001082180046279815;8,0.0011779659131363476;9,0.0013111316304734782;10,0.0014373442506229973;11,0.0015652812388750447;12,0.0017373286756852974;13,0.0019755139729441084;14,0.002204020558917764;15,0.0023668899074403707;16,0.0025417742079031683;17,0.002727616589533642;18,0.0028249599501602;19,0.002894045923816305;20,0.0029986761302954784;21,0.0030864520291918832;22,0.0031634367212531158;23,0.0033018867924528303;24,0.0034105776076895694;25,0.0034639773940904235;26,0.0035764506941972233;27,0.003672681559273763;28,0.0038504583481666077;29,0.003987350925596298;30,0.004112395425418298;31,0.004193941349234603;32,0.004344350747597009;33,0.004536979352082592;34,0.004592937878248487;35,0.004602449715201139;36,0.00468566438234247;37,0.004862996173015308;38,0.005008899964400142;39,0.0050928933784264874;40,0.005104685831256675;41,0.005244860270558919;42,0.005437711374154504;43,0.005580833926664294;44,0.005655704877180491;45,0.005759000088999645;46,0.005835094784620862;47,0.005908575115699538;48,0.005957024296902813;49,0.006114664916340335;50,0.006264907440370239;51,0.0063625289248843;52,0.006408474991100036;53,0.0065257876468494125;54,0.006669077073691706;55,0.006755962976148095;56,0.006873553755784977;57,0.007038258721965113;58,0.007126312744749021;59,0.007103339711641154;60,0.0070501067995728025;61,0.006855141954432183;62,0.00667247018511926;63,0.006515107689569242;64,0.006423159932360271;65,0.0055250422748309;66,0.004567072356710573;67,0.0036707346920612323;68,0.002862784798860805;69,0.0021442795478818087;70,0.001396181915272339;71,0.0006711129405482378;72,0.000012571199715201139;73,0.000010234959060163758;74,0.000014184318262726948;75,0.000013572445710217162;76,0.00001596431114275543;77,0.00001824492702029192;78,0.00001568618725525098;79,0.000011236205055179778;80,0.00001123620505517978;81,0.00000800996796012816;82,0.00001073558205767177;83,0.00001034620861516554;84,0.00001385056959772161;85,0.000014406817372730511;86,0.000011403079387682449;87,0.00000795434318262727;88,0.000008232467070131722;89,0.00000895558917764329;90,0.0000057849768600925595;91,0.00000695309718761125;92,0.00000895558917764329;93,0.0000083437166251335;94,0.000007286845852616589;95,0.000005618102527589889;96,0.0000035599857600569602;97,0.0000037268600925596304;98,0.0000035599857600569602;99,0.0000037268600925596304;100,0.00000433873264506942;101,0.000006396849412602349;102,0.00000622997508009968;103,0.000004060608757564969;104,0.00000228061587753649;105,0.00000205811676753293;106,0.00000144624421502314;107,0.0000015574937700249199;108,0.00000228061587753649;109,0.0000027812388750445;110,0.0000016131185475258098;111,0.00000083437166251335;112,0.00000061187255250979;113,0.00000066749733001068;114,0.00000033374866500533997;115,0.0000005006229975080099;116,0;117,0.00000005562477750089001;118,0;119,0.00000022249911000356;120,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00010908018867924529;2,0.00014295567817728728;3,0.00017488430046279816;4,0.0002064235493058028;5,0.0002436921502313991;6,0.0002792363830544678;7,0.0002987050551797793;8,0.0003385880206479174;9,0.000381808472766109;10,0.0004103439836240655;11,0.0004702518689925241;12,0.0005455678177287291;13,0.0005816682983268066;14,0.0005873976504093985;15,0.000629060608757565;16,0.0006864653791384834;17,0.0007601682093271627;18,0.0008270291918832324;19,0.00088187522249911;20,0.0008987851548593806;21,0.0008977839088643646;22,0.0008978395336418654;23,0.00092437255250979;24,0.0009654792630829478;25,0.0010093115877536489;26,0.0010661601103595588;27,0.001079120683517266;28,0.0010752825738697047;29,0.00112311988252047;30,0.0011710128159487362;31,0.001184307137771449;32,0.0012205188679245283;33,0.0012724167853328588;34,0.0013120772516909932;35,0.0013529614631541476;36,0.0014076962442150234;37,0.0014545879316482733;38,0.001450304823780705;39,0.0014564791740833039;40,0.0014586485404058385;41,0.0015350213599145605;42,0.0016014929690281242;43,0.0016135079209683165;44,0.0016130072979708083;45,0.0016612339800640796;46,0.001695498843004628;47,0.0017387749199003206;48,0.001775376023495906;49,0.001787057226771093;50,0.0018327807938768245;51,0.0018591469384122467;52,0.0018920211819152726;53,0.0019819664471342115;54,0.002019290672837309;55,0.0020201250444998224;56,0.0020021582413670344;57,0.002024686276254895;58,0.0020168988074047703;59,0.002099000978996084;60,0.002179211908152368;61,0.0021962330900676397;62,0.002133710840156639;63,0.0020859847810608756;64,0.002100669722321111;65,0.001897249911000356;66,0.0016517777678889283;67,0.0014024118903524386;68,0.0011468716625133498;69,0.0008780927376290497;70,0.0005886213955144181;71,0.00029453319686721256;72,0.00000550685297258811;73,0.0000057849768600925595;74,0.00000606310074759701;75,0.000006285599857600569;76,0.0000077874688501246;77,0.000006396849412602349;78,0.00000411623353506586;79,0.00000567372730509078;80,0.0000066193485226059105;81,0.000007843093627625488;82,0.000010012459950160199;83,0.000009511836952652189;84,0.000006953097187611249;85,0.00000812121751512994;86,0.00000928933784264863;87,0.00000695309718761125;88,0.00000817684229263083;89,0.00000973433606265575;90,0.00000745372018511926;91,0.000008399341402634389;92,0.000007398095407618368;93,0.0000074537201851192616;94,0.00000762059451762193;95,0.000007620594517621929;96,0.00000806559273762905;97,0.0000068418476326094684;98,0.0000057849768600925595;99,0.00000428310786756853;100,0.00000578497686009256;101,0.000007008721965112141;102,0.000007898718405126379;103,0.00000901121395514418;104,0.000007286845852616589;105,0.000009066838732645071;106,0.00001145870416518334;107,0.000008454966180135281;108,0.0000048949804200783195;109,0.0000048949804200783195;110,0.0000039493592025631895;111,0.00000406060875756497;112,0.0000028368636525453903;113,0.00000161311854752581;114,0.00000189124243503026;115,0.0000043387326450694205;116,0.0000038381096475614106;117,0.0000033374866500534;118,0.00000506185475258099;119,0.00000578497686009256;120,0.0000028924884300462798;121,0.0000017799928800284801;122,0.00000411623353506586;123,0.00000606310074759701;124,0.000004950605197579209;125,0.00000572935208259167;126,0.0000044499822000712;127,0.0000030037379850480596;128,0.0000028924884300462798;129,0.000004950605197579209;130,0.0000043943574225703095;131,0.00000478373086507654;132,0.00000328186187255251;133,0.00000355998576005696;134,0.00000361561053755785;135,0.0000017243681025275902;136,0.0000017243681025275898;137,0.0000024474902100391597;138,0.0000015018689925240298;139,0.00000194686721253115;140,0.0000018912424350302597;141,0.0000012237451050195799;142,0.0000003337486650053399;143,0.00000177999288002848;144,0.0000007231221075115697;145,0.00000027812388750444997;146,0.0000008343716625133498;147,0.00000027812388750444997;148,0.0000002781238875044499;149,0.00000127936988252047;150,0.0000017799928800284797;151,0.00000100124599501602;152,0.0000010012459950160199;153,0.00000183561765752937;154,0.0000018912424350302595;155,0.00000183561765752937;156,0.00000088999644001424;157,0.0000021693663225347094;158,0.00000088999644001424;159,0.0000003337486650053399;160,0.00000005562477750089;161,0.00000022249911000356;162,0.00000044499822000712;163,0.0000008343716625133497;164,0.0000008343716625133498;165,0.00000016687433250266998;166,0.0000003893734425062299;167,0.00000011124955500178001;168,0.00000005562477750089;169,0.00000044499822000712003;170,0.0000002781238875044499;171,0.00000022249911000355996;172,0.0000008343716625133498;173,0.0000008899964400142398;174,0.00000005562477750089;175,0.00000044499822000712;176,0.0000005562477750089;177,0.0000006674973300106801;178,0.0000002781238875044499;179,0.0000005562477750089;180,0.00000022249911000356;181,0.00000005562477750089;182,0.00000005562477750088999;183,0.00000005562477750089001;184,0.00000022249911000356;185,0.00000094562121751513;186,0.0000010568707725169098;187,0.0000004449982200071198;188,0;189,0.00000011124955500177998;190,0.0000007787468850124599;191,0.0000015018689925240296;192,0.0000026699893200427193;193,0.0000021693663225347094;194,0.0000008899964400142398;195,0.0000007231221075115699;196,0.00000033374866500533997;197,0.00000005562477750088999;198,0.00000072312210751157;199,0.0000012237451050195799;200,0.0000010568707725169098;201,0.00000022249911000356001;202,0.00000016687433250266998;203,0.00000033374866500534;204,0.00000016687433250266998;205,0;206,0.0000003893734425062299;207,0.0000009456212175151299;208,0.0000005562477750088999;209,0;210,0.00000005562477750088999;211,0.0000005562477750088999;212,0.0000012793698825204702;213,0.0000011124955500177999;214,0.0000011681203275186898;215,0.00000016687433250266996;216,0.0000007231221075115698;217,0.00000155749377002492;218,0.0000011124955500178;219,0.00000016687433250267;220,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00000011124955500178;62,0.00000038937344250623;63,0.0000007787468850124599;64,0.0000021137415450338204;65,0.00003682360270558918;66,0.00007448157707369172;67,0.00011764640441438236;68,0.0001579743681025276;69,0.00020408730865076541;70,0.0002380184229263083;71,0.0002688901744393023;72,0.00029903880384478463;73,0.00030259878960484164;74,0.0002965913136347455;75,0.0003036556603773585;76,0.0003044900320398719;77,0.0002962575649697401;78,0.00029809318262726946;79,0.00030093004627981487;80,0.00030404503381986474;81,0.00031683873264506945;82,0.00031261124955500185;83,0.00031522561409754363;84,0.00030932938768244925;85,0.00030560252758988967;86,0.000306436899252403;87,0.00031033063367746526;88,0.0003032662869348523;89,0.0002964800640797437;90,0.0002960350658597366;91,0.00028674572801708795;92,0.00029114008543965823;93,0.0002962019401922392;94,0.0002933650765396939;95,0.00029025008899964406;96,0.00028607823068707724;97,0.00028418698825204695;98,0.00027601014595941614;99,0.00026455144179423284;100,0.00025442773228907085;101,0.0002560964756140975;102,0.0002637170701317195;103,0.000262437700249199;104,0.00026549706301174796;105,0.0002692239231043076;106,0.00027083704165183347;107,0.0002739520291918832;108,0.00026811142755428985;109,0.0002549283552865789;110,0.00023985404058383768;111,0.0002156016375934496;112,0.00020547792808828767;113,0.00019591046635813458;114,0.00019440859736561054;115,0.00018434051263794947;116,0.0001737161801352795;117,0.00017493992524029902;118,0.0001696555713777145;119,0.00016654058383766464;120,0.00016414871840512638;121,0.000161812477750089;122,0.00015230064079743683;123,0.00015441438234247063;124,0.00014551441794232822;125,0.0001456812922748309;126,0.00014940815236739053;127,0.00014401254894980418;128,0.0001346119615521538;129,0.00012754761480954078;130,0.00012103951584193663;131,0.00011447579209683162;132,0.00010997018511925953;133,0.00010679957280170881;134,0.00010001334994660023;135,0.00009539649341402636;136,0.00009066838732645069;137,0.00008688590245639017;138,0.00008749777500889996;139,0.00008699715201139195;140,0.00008304779280882878;141,0.00007932093271626915;142,0.00007820843716625134;143,0.00007765218939124244;144,0.00007470407618369527;145,0.00007303533285866857;146,0.00007359158063367747;147,0.00006969784620861516;148,0.00006752847988608045;149,0.000060130384478462084;150,0.00005301041295834816;151,0.000053344161623353504;152,0.00005128604485582058;153,0.000047503559985760056;154,0.00004366545033819865;155,0.000038714845140619443;156,0.00003715735137059452;157,0.00003476548593805625;158,0.000034987985048059806;159,0.00003120550017799929;160,0.00002987050551797793;161,0.000030204254182983266;162,0.000030148629405482374;163,0.00002686676753292987;164,0.0000250311498754005;165,0.0000244749021003916;166,0.000025809896760412957;167,0.000025142399430402278;168,0.000025086774652901392;169,0.000024141153435386258;170,0.000022249911000356;171,0.00002147116411534354;172,0.00002024741901032396;173,0.000018801174795300818;174,0.00001652055891776433;175,0.00001618681025275899;176,0.00001652055891776433;177,0.000015185564257742972;178,0.00001596431114275543;179,0.00001329432182271271;180,0.00001040183339266643;181,0.00001017933428266287;182,0.000010068084727661091;183,0.00001006808472766109;184,0.00000789871840512638;185,0.00000634122463510146;186,0.0000057293520825916705;187,0.00000561810252758989;188,0.000005006229975080099;189,0.000005562477750089;190,0.00000328186187255251;191,0.0000017243681025275902;192,0.00000061187255250979;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000011124955500178;45,0.00000011124955500177998;46,0.00000083437166251335;47,0.0000010568707725169098;48,0.00000022249911000356001;49,0.00000050062299750801;50,0.0000025587397650409404;51,0.0000032818618725525103;52,0.00000261436454254183;53,0.0000027256140975436105;54,0.000005618102527589891;55,0.00001118058027767889;56,0.000013461196155215384;57,0.000014295567817728732;58,0.000015797436810252765;59,0.00001996929512281951;60,0.000023751779992880024;61,0.000026143645425418298;62,0.000029648006407974372;63,0.000030816126735493056;64,0.00022934095763616944;65,0.0004896649163403347;66,0.000747374510501958;67,0.0010654926130295478;68,0.0014040250088999645;69,0.0017696466714133144;70,0.002156072000711997;71,0.002545723567105732;72,0.002972866233535066;73,0.003064202118191527;74,0.0031337887148451407;75,0.003231521448914204;76,0.0033065592737629053;77,0.003435775631897473;78,0.003532117746529014;79,0.003609547436810253;80,0.0037004939480242078;81,0.0038565214489142043;82,0.003952418565325739;83,0.00408558428266287;84,0.004206123175507298;85,0.004304189658241368;86,0.0043668787824848706;87,0.004473010857956568;88,0.004607900943396226;89,0.004679434407262371;90,0.004705133054467783;91,0.0047754427732289075;92,0.004836463154147383;93,0.004961841402634391;94,0.0050881652723389105;95,0.005070587842648629;96,0.005092670879316483;97,0.005209872285510858;98,0.0052624933250267;99,0.005289248843004628;100,0.005281127625489499;101,0.005324848700605197;102,0.005402612139551443;103,0.005414849590601638;104,0.005359224813100747;105,0.005461908152367391;106,0.0054340401388394445;107,0.005460962531149876;108,0.005530159754360983;109,0.005509745461018156;110,0.005252703364186544;111,0.004723934229263083;112,0.004504883855464578;113,0.00424628426486294;114,0.003953252936988252;115,0.003678855909576362;116,0.003487896048415807;117,0.0033401010145959415;118,0.00322184273762905;119,0.0031595986116055535;120,0.0030104685831256676;121,0.002922247686009256;122,0.0028088287646849414;123,0.0027142110181559275;124,0.0026405081879672483;125,0.0025443329476682094;126,0.002374065503737985;127,0.002218538625845497;128,0.00208998976504094;129,0.001965390263438946;130,0.0018458526165895336;131,0.0017636948202207191;132,0.0016032173371306514;133,0.0015028146137415453;134,0.0014601504093983623;135,0.0013782151121395515;136,0.0012724167853328588;137,0.0012135657707369172;138,0.0011597209861160555;139,0.001058428266286935;140,0.0009651455144179422;141,0.0009410599857600571;142,0.0009146938412246351;143,0.0008656327874688502;144,0.0007907062121751513;145,0.0007194508721965111;146,0.0006591536133855465;147,0.0006384055713777145;148,0.0005970763616945532;149,0.00054812655749377;150,0.0005082992168031328;151,0.00045962753648985406;152,0.0004038358846564614;153,0.0003521604663581346;154,0.00031183250266998935;155,0.00028274074403702385;156,0.0002632164471342115;157,0.00024613964044143825;158,0.00021042853328586688;159,0.0001841736383054468;160,0.0001718805624777501;161,0.00016331434674261304;162,0.00014662691349234602;163,0.00012810386258454968;164,0.00010891331434674262;165,0.00009022338910644358;166,0.0000806559273762905;167,0.00006608223567105732;168,0.0000545122819508722;169,0.00004627981488074048;170,0.00003676797792808829;171,0.00003404236383054468;172,0.000023751779992880028;173,0.00001362807048771805;174,0.00000533997864008544;175,0.00000183561765752937;176,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005562477750089002;8,0.00000005562477750089002;9,0;10,0.00000005562477750089001;11,0.00000005562477750089001;12,0;13,0.00000011124955500177998;14,0.00000011124955500177998;15,0;16,0;17,0;18,0;19,0;20,0.0000005562477750089002;21,0.0000002781238875044501;22,0.0000002781238875044501;23,0.00000022249911000356007;24,0;25,0;26,0;27,0;28,0;29,0.00000016687433250266998;30,0.00000033374866500533997;31,0.00000005562477750089;32,0.00000033374866500533997;33,0.0000003337486650053401;34,0.00000005562477750089001;35,0;36,0;37,0;38,0;39,0.00000016687433250267;40,0;41,0;42,0.00000011124955500178;43,0;44,0.00000011124955500177998;45,0.00000033374866500534;46,0.00000011124955500177998;47,0.00000005562477750089;48,0.00000005562477750089;49,0.00000016687433250267;50,0.0000005562477750088999;51,0.0000008343716625133501;52,0.00000127936988252047;53,0.00000066749733001068;54,0.0000003337486650053401;55,0.00000011124955500178003;56,0.00000033374866500534;57,0.00000022249911000356001;58,0.00000038937344250623;59,0.0000007231221075115699;60,0.00000088999644001424;61,0.0000006118725525097899;62,0.0000005562477750088999;63,0.00000022249911000356001;64,0.0000004449982200071201;65,0.00043320576717693134;66,0.0009072401210395158;67,0.0013783819864720544;68,0.0018408463866144537;69,0.0023707280170879317;70,0.002930535777856889;71,0.0035166540583837663;72,0.004105664827340691;73,0.004187711374154504;74,0.004197946333214667;75,0.0043041340334638665;76,0.004435186009255963;77,0.00461630028479886;78,0.00466625133499466;79,0.004626924617301531;80,0.004512671324314703;81,0.004473789604841581;82,0.004429679156283376;83,0.004313701495194019;84,0.004150665272338911;85,0.004087086151655393;86,0.0039746128515485936;87,0.003811298504805981;88,0.0037164026343894626;89,0.0036023162157351367;90,0.003487673549305803;91,0.003370805891776433;92,0.003251490744037024;93,0.0031357355820576718;94,0.003020091669633322;95,0.0028587798148807407;96,0.0027409109113563546;97,0.0026125289248843005;98,0.0025200805446778216;99,0.002416507208971164;100,0.0022742746529013885;101,0.0021349902100391603;102,0.0020541117835528658;103,0.0019395247419010326;104,0.0018024652901388397;105,0.0016886013705945178;106,0.0015924817550729798;107,0.0015273451406194376;108,0.0014114231043075827;109,0.0012750311498754005;110,0.0011070443218227127;111,0.0009401699893200428;112,0.0008501690993236027;113,0.0007272383410466359;114,0.0006140419188323247;115,0.0005236516553933784;116,0.0004447200961196156;117,0.0003710728907084372;118,0.00029898317906728374;119,0.0002425240299038804;120,0.00020976103595585614;121,0.00020325293698825205;122,0.0002074247953008188;123,0.00019824670701317198;124,0.00018367301530793878;125,0.00018612050551797794;126,0.00017900053399786403;127,0.00017310430758276968;128,0.00016598433606265577;129,0.0001589756140975436;130,0.00015636124955500176;131,0.00014762815948736205;132,0.0001494637771448914;133,0.0001363363296546814;134,0.00012437700249199005;135,0.00006741723033107868;136,0.00000973433606265575;137,0.00000255873976504094;138,0.0000024474902100391597;139,0.00000266998932004272;140,0.00000133499466002136;141,0.0000026699893200427198;142,0.000010513082947668208;143,0.000024808650765396944;144,0.0000417185831256675;145,0.00005918476326094696;146,0.00007075471698113208;147,0.00007754093983624066;148,0.00008477216091135636;149,0.0001035177109291563;150,0.00011881452474190105;151,0.00012120639017443931;152,0.00012699136703453185;153,0.00013244259522961907;154,0.00012749199003203989;155,0.00012710261658953364;156,0.0001296057315770737;157,0.00012927198291206834;158,0.00014217693129227484;159,0.0001462931648273407;160,0.00014223255606977573;161,0.00014162068351726594;162,0.00014940815236739053;163,0.0001477950338198647;164,0.00015113252046991814;165,0.00014612629049483804;166,0.0001485181559273763;167,0.00013678132787468852;168,0.00013539070843716623;169,0.00014679378782484872;170,0.00014184318262726948;171,0.00013088510145959416;172,0.00012003826984692062;173,0.00011892577429690283;174,0.00011887014951940194;175,0.00011525453898184406;176,0.00010574270202919188;177,0.00010479708081167677;178,0.00010590957636169457;179,0.00010262771448914205;180,0.00010223834104663582;181,0.00008799839800640799;182,0.0000839934140263439;183,0.00007965468138127448;184,0.0000817127981488074;185,0.00007854218583125668;186,0.00007181158775364898;187,0.00007348033107867569;188,0.00006814035243859024;189,0.00006535911356354574;190,0.00006496974012103952;191,0.00005751601993592026;192,0.00005295478818084727;193,0.000049839800640797437;194,0.000052009166963332154;195,0.00005089667141331436;196,0.00004705856176575293;197,0.000043554200783196876;198,0.000040105464578141687;199,0.00004016108935564258;200,0.00004049483802064791;201,0.00003331924172303311;202,0.000033486116055535785;203,0.000033875489498042005;204,0.00003120550017799929;205,0.00003254049483802065;206,0.000030704877180491285;207,0.00002875800996796013;208,0.000026477394090423642;209,0.000023251156995372023;210,0.000024808650765396944;211,0.00002119304022783909;212,0.00001857867568529726;213,0.000018356176575293702;214,0.00001429556781772873;215,0.00001129182983268067;216,0.00001245995016019936;217,0.00001429556781772873;218,0.000010791206835172659;219,0.00000873309006763973;220,0.000007286845852616591;221,0.0000075649697401210405;222,0.0000063412246351014585;223,0.000005117479530081881;224,0.00000361561053755785;225,0.000004505606977572089;226,0.0000038937344250623;227,0.00000322623709505162;228,0.00000183561765752937;229,0.00000189124243503026;230,0.0000017799928800284801;231,0.0000035599857600569602;232,0.000004060608757564969;233,0.0000014462442150231397;234,0.0000017799928800284797;235,0.0000020581167675329305;236,0.0000015018689925240302;237,0.0000011681203275186902;238,0.0000010012459950160199;239,0.0000009456212175151301;240,0.0000010012459950160199;241,0.0000012237451050195803;242,0.00000077874688501246;243,0.00000066749733001068;244,0.00000100124599501602;245,0.0000007231221075115698;246,0.0000010568707725169098;247,0.0000011681203275186902;248,0.0000009456212175151301;249,0.0000010568707725169098;250,0.0000005562477750088999;251,0.0000011681203275186902;252,0.0000015018689925240302;253,0.0000008899964400142398;254,0.00000133499466002136;255,0.0000017799928800284797;256,0.0000008343716625133501;257,0.00000066749733001068;258,0.0000007231221075115698;259,0.00000100124599501602;260,0.0000008899964400142398;261,0.0000012793698825204702;262,0.0000004449982200071199;263,0.00000038937344250623;264,0.0000013906194375222498;265,0.0000009456212175151301;266,0.0000010568707725169098;267,0.00000077874688501246;268,0.0000008899964400142398;269,0.00000066749733001068;270,0.00000011124955500177998;271,0.00000016687433250267;272,0.00000027812388750445;273,0.0000005562477750088999;274,0.00000016687433250267;275,0.00000027812388750444997;276,0.00000027812388750444997;277,0.00000038937344250623;278,0.0000004449982200071199;279,0.0000005562477750089;280,0.00000066749733001068;281,0.00000033374866500534;282,0.00000050062299750801;283,0.00000038937344250623;284,0.0000004449982200071199;285,0.00000050062299750801;286,0.00000033374866500534;287,0;288,0;289,0;290,0.00000005562477750088999;291,0.00000022249911000355996;292,0.00000011124955500177998;293,0.00000022249911000355996;294,0.00000027812388750445;295,0.00000027812388750444997;296,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000011576906817372729;43,0.000008682680113029546;44,0.000010419216135635456;45,0.0000011576906817372729;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.00000191163236627501;54,0;55,0.0000017156767310430756;56,0;57,0;58,0;59,0.0000015277084268185304;60,0.0000028634092607730066;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.000000857838365521538;85,0;86,0;87,0;88,0.00000028594612184051265;89,0;90,0.0000011576906817372729;91,0;92,0;93,0.0000011576906817372729;94,0;95,0.0000005788453408686364;96,0;97,0.000000857838365521538;98,0;99,0;100,0;101,0.00000028594612184051265;102,0.00000028594612184051265;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0.0000018886698153287637;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0.00000044499822000712;18,0.00000133499466002136;19,0.0000016687433250267;20,0.0000013906194375222498;21,0.0000010012459950160196;22,0.00000038937344250622997;23,0.00000038937344250623013;24,0.0000020024919900320397;25,0.00000367123531505874;26,0.00000483935564257743;27,0.0000023362406550373795;28,0.0000016687433250267;29,0.0000017243681025275902;30,0.00000361561053755785;31,0.000006508098967604131;32,0.000006229975080099681;33,0.000006118725525097901;34,0.000006897472410110361;35,0.000009567461730153081;36,0.00001229307582769669;37,0.00000928933784264863;38,0.00000912246351014596;39,0.0000133499466002136;40,0.000013739320042719831;41,0.000011124955500177998;42,0.000007231221075115701;43,0.00000800996796012816;44,0.00001045745817016732;45,0.000012960573157707369;46,0.000013961819152723389;47,0.000017188056247775008;48,0.00001930179779280883;49,0.000017799928800284798;50,0.000019468672125311493;51,0.00001752180491278035;52,0.000020914916340334635;53,0.000024864275542897833;54,0.000030816126735493056;55,0.00003215112139551443;56,0.00003715735137059452;57,0.000038937344250623006;58,0.0000494504271982912;59,0.00005651477394090425;60,0.00005417853328586687;61,0.000053733535065859745;62,0.000054345407618369534;63,0.00005818351726593094;64,0.000057182271270914906;65,0.0008285310608757567;66,0.0015635012459950162;67,0.0023178844784620864;68,0.003020926041295835;69,0.0037218538625845496;70,0.004382843093627626;71,0.004975525097899609;72,0.005501346119615521;73,0.005367123531505874;74,0.005094673371306514;75,0.004986427554289783;76,0.004888583570665718;77,0.0047781683873264515;78,0.00464244393022428;79,0.004585039159843361;80,0.004508110092559629;81,0.004382231221075116;82,0.004207235671057316;83,0.004130139729441082;84,0.003965379138483447;85,0.003827763438946244;86,0.0037700805446778214;87,0.003766075560697757;88,0.0036374154503381988;89,0.0034741011035955855;90,0.0032645069419722323;91,0.0031692216981132077;92,0.003098800729797081;93,0.003019312922748309;94,0.002821455589177644;95,0.0025654147383410465;96,0.002398985404058384;97,0.0023400231399074403;98,0.0023117101281594876;99,0.0022030749377002492;100,0.0020704654681381277;101,0.0019261747953008188;102,0.001827107066571734;103,0.0016947200961196156;104,0.001572679334282663;105,0.001432171146315415;106,0.001306181025275899;107,0.001202607689569242;108,0.0010934162513349947;109,0.0010049728551085797;110,0.0009038470096119616;111,0.00074687388750445;112,0.0006118725525097899;113,0.0004937811498754006;114,0.0004061721253114988;115,0.0003145024919900321;116,0.00022895158419366325;117,0.00014762815948736205;118,0.00008404903880384479;119,0.000029870505517977932;120,0.000006730598077607689;0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000011124955500177998;15,0.00000022249911000355996;16,0.00000038937344250622997;17,0.0000003337486650053399;18,0;19,0;20,0.00000005562477750088999;21,0.00000016687433250266996;22,0.00000011124955500177998;23,0;24,0;25,0;26,0.00000011124955500178;27,0.00000022249911000356;28,0.00000022249911000356;29,0;30,0.00000033374866500533997;31,0.0000006118725525097899;32,0.00000038937344250622987;33,0.0000012793698825204698;34,0.0000015018689925240298;35,0.00000139061943752225;36,0.0000007787468850124598;37,0.00000116812032751869;38,0.00000177999288002848;39,0.0000011124955500177999;40,0.0000012793698825204702;41,0.0000018356176575293698;42,0.00000228061587753649;43,0.00000216936632253471;44,0.0000011681203275186898;45,0.00000127936988252047;46,0.00000211374154503382;47,0.00000172436810252759;48,0.0000011124955500177999;49,0.0000008343716625133501;50,0.0000007231221075115702;51,0.00000255873976504094;52,0.00000406060875756497;53,0.00000383810964756141;54,0.0000033374866500534002;55,0.0000027812388750444995;56,0.00000294811320754717;57,0.00000294811320754717;58,0.00000361561053755785;59,0.00000372686009255963;60,0.000003726860092559629;61,0.00000367123531505874;62,0.0000025587397650409404;63,0.00000233624065503738;64,0.00000250311498754005;65,0.000037491100035599864;66,0.00006958659665361339;67,0.00010880206479174084;68,0.00014011881452474193;69,0.00017532929868280527;70,0.00020453230687077253;71,0.00023390218939124246;72,0.0002666095585617658;73,0.00027573202207191173;74,0.00027378515485938055;75,0.00027245016019935924;76,0.000270503292986828;77,0.00027812388750444994;78,0.00028268511925952296;79,0.00027790138839444643;80,0.00026777767888928444;81,0.00027161578853684585;82,0.00027384077963688144;83,0.00026744393022427914;84,0.0002703920434318263;85,0.0002752870238519046;86,0.0002878582235671057;87,0.0002764551441794233;88,0.00026516331434674266;89,0.00026360582057671767;90,0.000261436454254183;91,0.0002621039515841937;92,0.0002699470452118192;93,0.0002797370060519758;94,0.00027723389106443577;95,0.00027723389106443577;96,0.0002663870594517622;97,0.00025670834816660733;98,0.00024308027767888928;99,0.00024341402634389463;100,0.0002574870950516198;101,0.00026037958348166607;102,0.00024908775364898545;103,0.00024758588465646135;104,0.0002475858846564614;105,0.00024925462798148807;106,0.00024513839444642224;107,0.00024613964044143825;108,0.00024346965112139553;109,0.00023451406194375225;110,0.0002236116055535778;111,0.0002001379494482022;112,0.00018790049839800642;113,0.00018055802776788894;114,0.00017321555713777147;115,0.00016487184051263795;116,0.0001580856176575294;117,0.00015191126735493058;118,0.00014979752580989678;119,0.00015141064435742258;120,0.00015697312210751158;121,0.00015775186899252402;122,0.00012126201495194019;123,0.0000717559629761481;124,0.00002419677821288715;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.000304434407262371;57,0.0006092025631897473;58,0.0006104819330722676;59,0.0006069219473122107;60,0.0006097588109647562;61,0.0006046413314346744;62,0.0005826695443218227;63,0.0005920701317194731;64,0.0005880651477394091;65,0.0005778858134567462;66,0.0005735470808116768;67,0.0005632564969740121;68,0.0005692083481666074;69,0.0005683183517265931;70,0.0005716002135991457;71,0.000570376468494126;72,0.000560308383766465;73,0.0005540227839088644;74,0.0005474590601637593;75,0.0005664827340690637;76,0.0005516309184763261;77,0.0005525209149163403;78,0.0005561921502313991;79,0.0005474590601637593;80,0.0005558027767888929;81,0.0005575271448914205;82,0.0005486828052687791;83,0.0005461796902812388;84,0.0005388372196511214;85,0.0005443440726237096;86,0.000552242791028836;87,0.0005503515485938057;88,0.0005477928088287647;89,0.0005356109825560699;90,0.000538559095763617;91,0.0005411178355286579;92,0.0005447890708437166;93,0.0005421747063011749;94,0.0005381697223211107;95,0.0005219272872908508;96,0.0005327184941260235;97,0.0005210372908508366;98,0.0002599902100391599;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00000016687433250267004;66,0.00000016687433250267004;67,0;68,0;69,0;70,0;71,0;72,0;73,0.00000016687433250267004;74,0.0000006674973300106801;75,0;76,0.00000033374866500534;77,0.000000453689591491634;78,0.0000004797637059451762;79,0.00000035982277945888224;80,0;81,0;82,0;83,0.00000011994092648629405;84,0.0000019968754209669716;85,0.000003843857506225942;86,0;87,0.0000033984575400444636;88,0;89,0;90,0;91,0;92,0;93,0.00000011994092648629408;94,0.0000004797637059451763;95,0.00000023988185297258816;96,0;97,0.0000009608639400128955;98,0.0000009052391625120055;99,0.0000006674973300106799;100,0.0000008448013082947669;101,0.0000004137092826628694;102,0.00000011820265218939126;103,0.00000016687433250267;104,0.0000007405048504805982;105,0.0000006188256496974012;106,0.0000008030861194855734;107,0.0000007022696045816843;108,0.0000014023957943756315;109,0.0000042797626085741875;110,0.0000014910376005682532;111,0.000004135499419197151;112,0.0000026600927100351275;113,0.0000003441783107867569;114,0.0000007578875934496262;115,0.0000005927515352438591;116,0.00000011994092648629408;117,0.0000004137092826628694;118,0.00000100124599501602;119,0.0000041745381574447845;120,0.000005549543675143174;121,0.000003991138883385389;122,0.000003919939829115306;123,0.0000044844772294343605;124,0.0000036939641705179415;125,0.0000005805836151655394;126,0.000002545768352613901;127,0.000002455790018298736;128,0.0000024818743157017;129,0.00000036156444807225896;130,0.0000022311407048744916;131,0.0000011937926957978724;132,0.000005382763294758754;133,0.000003758280319503344;134,0.0000027713422650369064;135,0.000007547849576350939;136,0.0000073400907019195875;137,0.0000010164887175137854;138,0.00000469174719420605;139,0.0000025005732208944275;140,0.000005907722132423403;141,0.000008707238889330446;142,0.000008712855458395516;143,0.000009226219054810337;144,0.0000026670458072227378;145,0.000004366274577244969;146,0.000003685272799033426;147,0.0000030133641384807572;148,0.000004184157522244533;149,0.0000022193745309705316;150,0.000008430892919177568;151,0.00000765991280665086;152,0.000000775280519368076;153,0.00000005910132609469563;154,0.0000005962280838376648;155,0.0000017330594740121036;156,0.000003605713927550256;157,0.000005773875011561887;158,0.000002511404612850204;159,0.0000030164389409002027;160,0.0000042084933624011725;161,0.0000009282384745461019;162,0.000004443592687505678;163,0.000011347306348999728;164,0.000006402226073940787;165,0.0000042084933624011725;166,0.0000005892749866500534;167,0.000001936437566749733;168,0.00000251447941526965;169,0.0000031559026308267877;170,0.0000014844862495550017;171,0.000004552671673187929;172,0.00000022249911000355994;173,0.0000004797637059451762;174,0.000007641576004577826;175,0.000009515466245487322;176,0.000006334373367408066;177,0.000003483562788689768;178,0.0000005006229975080098;179,0.000002151180087216962;180,0.000010119551659612518;181,0.0000008343716625133501;182,0.0000003893734425062299;183,0.00000016687433250267;184,0.0000042849876144143175;185,0.0000018730561997125122;186,0.000002394538488783356;187,0.0000018730561997125122;188,0.0000025488431550333464;189,0.000004248071925055578;190,0.0000032441528737944714;191,0.00000295907588910241;192,0.0000019356340744010137;193,0.0000033166884561870977;194,0.0000033166884561870977;195,0.00000034765485938056244;196,0.00000034765485938056244;197,0.0000005266971119615521;198,0.000000860445776966892;199,0.00000033374866500534;200,0;201,0;202,0;203,0;204,0.0000008496143850111155;205,0.0000025488431550333464;206,0.00000066749733001068;207,0.0000006674973300106799;208,0.000003601765440879159;209,0.0000020129521846617227;210,0;211,0;212,0;213,0.00000011994092648629408;214,0.0000004797637059451763;215,0.0000004884618660626383;216,0.0000003685209395763442;217,0;218,0;219,0;220,0;221,0;222,0.00000023988185297258816;223,0.0000003546079565681738;224,0.0000003546079565681738;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000017410555357778568;19,0.000036879227483090074;20,0.00003710172659309363;21,0.00003487673549305803;22,0.00003432048771804913;23,0.00003476548593805624;24,0.00003521048415806337;25,0.00003843672125311499;26,0.000038547970808116766;27,0.00003420923816304736;28,0.00003365299038803845;29,0.000035043609825560705;30,0.000033263616945532215;31,0.00003354174083303667;32,0.000033374866500534;33,0.00003215112139551442;34,0.000034097988608045574;35,0.00003287424350302599;36,0.000033152367390530443;37,0.000031427999288002846;38,0.00003198424706301175;39,0.00003498798504805981;40,0.00003076050195799217;41,0.000033764239943040226;42,0.00003365299038803845;43,0.000031928622285510864;44,0.00003092737629049484;45,0.00003120550017799929;46,0.00003231799572801709;47,0.00003354174083303667;48,0.00003343049127803489;49,0.000033597365610537556;50,0.0000317061231755073;51,0.00003320799216803132;52,0.00003309674261302955;53,0.000033263616945532215;54,0.00003426486294054824;55,0.00002959238163047348;56,0.00003215112139551442;57,0.000034097988608045574;58,0.00002981488074047704;59,0.00003070487718049128;60,0.00003148362406550374;61,0.00003370861516553934;62,0.00003254049483802065;63,0.00003398673905304379;64,0.00003064925240299039;65,0.00003064925240299039;66,0.000031928622285510864;67,0.00003087175151299395;68,0.000031928622285510864;69,0.00003109425062299751;70,0.0000305936276254895;71,0.00002953675685297259;72,0.000034487362050551794;73,0.00003137237451050195;74,0.00003242924528301887;75,0.00002953675685297259;76,0.00003031550373798505;77,0.000028424261302954793;78,0.00002981488074047704;79,0.000029091758632965468;80,0.00003092737629049484;81,0.000032929868280526874;82,0.00002881363474546102;83,0.000027812388750445;84,0.000029258632965468135;85,0.00002998175507297971;86,0.000030816126735493056;87,0.00003014862940548238;88,0.000029147383410466357;89,0.000028646760412958346;90,0.000029759255962976147;91,0.00002742301530793877;92,0.000026533018867924528;93,0.00002797926308294767;94,0.000029759255962976147;95,0.000028591135635457457;96,0.00002825738697045212;97,0.000027589889640441444;98,0.0000305936276254895;99,0.00002597677109291563;100,0.000028813634745461016;101,0.00002625489498042008;102,0.000025587397650409404;103,0.0000250311498754005;104,0.00002475302598789605;105,0.000012682449270202919;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000038937344250623;49,0.00000066749733001068;50,0.0000008343716625133501;51,0.0000012237451050195799;52,0.0000017799928800284797;53,0.00000139061943752225;54,0.0000015018689925240298;55,0.00000155749377002492;56,0.00000216936632253471;57,0.00000233624065503738;58,0.0000017799928800284801;59,0.0000023362406550373795;60,0.00000172436810252759;61,0.00000127936988252047;62,0.00000216936632253471;63,0.0000017243681025275898;64,0.00000200249199003204;65,0.00004049483802064792;66,0.00008204654681381274;67,0.00011558828764684943;68,0.00015313501245995016;69,0.0001962442150231399;70,0.00022822846208615167;71,0.00027645514417942333;72,0.00031478061587753654;73,0.0003173949804200783;74,0.0003020425418298327;75,0.0003096631363474546;76,0.00031183250266998935;77,0.0003113318796724813;78,0.00031683873264506945;79,0.0003087175151299395;80,0.00030532440370238515;81,0.00030910688857244573;82,0.0003132231221075116;83,0.00032017621929512284;84,0.00031856310074759707;85,0.0003121106265574938;86,0.00030838376646493413;87,0.00030410065859736563;88,0.0002943663225347099;89,0.00029948380206479177;90,0.00029025008899964395;91,0.00029058383766464936;92,0.000296313189747241;93,0.0003042119081523674;94,0.0002970919366322535;95,0.0002973144357422571;96,0.0002869126023495907;97,0.0002879138483446066;98,0.00029381007475970096;99,0.0002842426130295479;100,0.00027728951584193666;101,0.0002719495372018512;102,0.00024591714133143474;103,0.00013394446422214314;104,0.00002046991812032752;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0.00000005562477750088999;14,0.00000016687433250266996;15,0;16,0;17,0;18,0.00000011124955500177998;19,0.0000005006229975080098;20,0.0000010012459950160196;21,0.0000007787468850124598;22,0.00000066749733001068;23,0.0000007787468850124598;24,0.0000006674973300106798;25,0.0000010012459950160199;26,0.00000161311854752581;27,0.0000021137415450338204;28,0.00000283686365254539;29,0.00000422748309006764;30,0.000005506852972588111;31,0.000008899964400142399;32,0.00000800996796012816;33,0.000005840601637593449;34,0.00000561810252758989;35,0.0000066749733001068;36,0.000009623086507653972;37,0.000007509344962620149;38,0.00000522872908508366;39,0.000005562477750089;40,0.000007620594517621929;41,0.00000589622641509434;42,0.0000061743503025987905;43,0.00000550685297258811;44,0.00000450560697757209;45,0.0000067305980776076895;46,0.00000928933784264863;47,0.000007509344962620149;48,0.000008065592737629051;49,0.000007954343182627271;50,0.0000088999644001424;51,0.00001034620861516554;52,0.000008733090067639732;53,0.00000762059451762193;54,0.0000050062299750801;55,0.00000550685297258811;56,0.00000684184763260947;57,0.00000650809896760413;58,0.00000884433962264151;59,0.00000873309006763973;60,0.00000839934140263439;61,0.000006452474190103238;62,0.00000767621929512282;63,0.00000628559985760057;64,0.000006063100747597009;65,0.000100124599501602;66,0.00016898807404770383;67,0.0002137660199359203;68,0.0002611027055891777;69,0.00031483624065503743;70,0.00038064035243859026;71,0.0004378782484870061;72,0.000491055535777857;73,0.000490999911000356;74,0.0004935586507653969;75,0.0004952273940904237;76,0.0004981755072979708;77,0.00047848433606265583;78,0.00048488118547525814;79,0.0004841580633677465;80,0.0004933361516553934;81,0.0004910555357778569;82,0.00048710617657529373;83,0.0004901099145603419;84,0.00047336685653257395;85,0.0004434963510145959;86,0.0002369615521537914;87,0.00003793609825560698;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00013800507297970807;82,0.0005053511035955857;83,0.0008619059273762905;84,0.0010181003025987896;85,0.0010343427376290496;86,0.0010270558917764329;87,0.001030560252758989;88,0.0010262771448914204;89,0.001004249733001068;90,0.000984002313990744;91,0.0009858379316482735;92,0.001002191616233535;93,0.001028557760768957;94,0.0010343983624065503;95,0.000999187878248487;96,0.0010000222499110005;97,0.0009811654503381986;98,0.0009492924528301887;99,0.0009599167853328586;100,0.0009709861160555359;101,0.0009876179245283019;102,0.0009737673549305803;103,0.000921925062299751;104,0.000922815058739765;105,0.0009204231933072269;106,0.000915305713777145;107,0.0009059051263794946;108,0.0008857133321466715;109,0.0008680246529013885;110,0.0008163492346030617;111,0.0007432582769668922;112,0.000705878426486294;113,0.0007022071911712354;114,0.0006879116233535067;115,0.0006473055357778569;116,0.0005847832858668566;117,0.0005457346920612316;118,0.0005454009433962264;119,0.0005417853328586685;120,0.0005595296368814525;121,0.0005603640085439659;122,0.0005120817016731933;123,0.0004953386436454255;124,0.0005098567105731577;125,0.0005115810786756853;126,0.000494559896760413;127,0.00048387993948024213;128,0.0004486694553221788;129,0.00042742079031683874;130,0.0004201339444642221;131,0.00040817461730153083;132,0.00040339088643645424;133,0.0003759122463510146;134,0.00036250667497330014;135,0.00036000355998576004;136,0.00033747552509789963;137,0.0003158931114275543;138,0.00030048504805980773;139,0.0002983713065147739;140,0.00027845763616945535;141,0.0002712264150943396;142,0.00026232645069419725;143,0.0002475302598789605;144,0.00023373531505873978;145,0.00024046591313634744;146,0.00024091091135635458;147,0.00023501468494126025;148,0.00022444597721609112;149,0.00020341981132075473;150,0.00020542230331078678;151,0.00019546546813812744;152,0.00017132431470274118;153,0.00016398184407262373;154,0.00015441438234247063;155,0.00014718316126735494;156,0.00014273317906728374;157,0.00013077385190459238;158,0.00013044010323958705;159,0.0001351125845496618;160,0.0001252113741545034;161,0.00012048326806692774;162,0.0001146982912068352;163,0.00010134834460662158;164,0.00009739898540405839;165,0.00009205900676397295;166,0.00008905526877892489;167,0.0000794878070487718;168,0.00007309095763616945;169,0.00006686098255606978;170,0.00006652723389106444;171,0.00006641598433606266;172,0.00006864097543609826;173,0.00006958659665361339;174,0.00006085350658597366;175,0.000045946066215735135;176,0.000045834816660733364;177,0.00004711418654325383;178,0.00003737985048059808;179,0.00003493236027055892;180,0.00003343049127803489;181,0.00003693485226059097;182,0.000029425507297970806;183,0.000012960573157707369;184,0.0000028368636525453903;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0.0000012160966981132076;56,0.0000012160966981132076;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.0000011207099559940174;85,0;86,0;87,0;88,0.0000005603549779970087;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0.0000015876724376581915;98,0;99,0;100,0;101,0;102,0.0000005603549779970087;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0.0000006840543926886792;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0.0000007938362188290958;202,0;203,0.000005556853531803671;204,0.000007144525969461862;205,0.0000023815086564872875;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0.000008732198407120054;215,0.00001508288815775282;216,0.000012701379501265532;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0.00000011124955500177998;14,0.00000016687433250266996;15,0.00000016687433250266996;16,0.0000004449982200071199;17,0.0000004449982200071199;18,0.00000016687433250266996;19,0.00000038937344250622997;20,0.00000016687433250266996;21,0.0000004449982200071199;22,0.0000005006229975080099;23,0.0000008343716625133501;24,0.0000010568707725169102;25,0.0000010012459950160199;26,0.00000189124243503026;27,0.0000012237451050195803;28,0.00000122374510501958;29,0.0000018912424350302603;30,0.0000027256140975436092;31,0.00000150186899252403;32,0.0000027256140975436105;33,0.0000035599857600569602;34,0.00000406060875756497;35,0.00000411623353506586;36,0.0000031149875400498394;37,0.0000022806158775364896;38,0.00000328186187255251;39,0.0000036156105375578497;40,0.0000033931114275542893;41,0.000004616856532573869;42,0.00000506185475258099;43,0.00000606310074759701;44,0.00000344873620505518;45,0.00000317061231755073;46,0.0000033931114275542897;47,0.0000044499822000711994;48,0.000004561231755072979;49,0.000005951851192595229;50,0.000004505606977572089;51,0.000006841847632609469;52,0.00000767621929512282;53,0.0000061743503025987905;54,0.0000061187255250979;55,0.00000762059451762193;56,0.000007286845852616589;57,0.000005506852972588109;58,0.000006063100747597009;59,0.00000856621573513706;60,0.00000728684585261659;61,0.0000088999644001424;62,0.00000934496262014952;63,0.000010012459950160202;64,0.00001329432182271271;65,0.00019807983268066927;66,0.0003934896760412959;67,0.0005906795122819508;68,0.0007667319330722677;69,0.0009708192417230332;70,0.0011647272160911358;71,0.001316304734781061;72,0.0015092670879316484;73,0.0015287913848344608;74,0.0014702184941260234;75,0.001474112228551086;76,0.0014652678889284444;77,0.0014675485048059808;78,0.0014541429334282664;79,0.0014750022249911;80,0.0014549216803132789;81,0.0014685497508009969;82,0.0014846809362762548;83,0.0014742791028835886;84,0.0014660466358134567;85,0.001427109291562834;86,0.001443296101815593;87,0.001464433517265931;88,0.0014357311320754719;89,0.00145436543253827;90,0.001446800462798149;91,0.001437066126735493;92,0.0014283330366678536;93,0.001418932449270203;94,0.0014096431114275544;95,0.0014131474724101104;96,0.0013867813278746885;97,0.001381941972232111;98,0.001380551352794589;99,0.001376935742257031;100,0.0013747107511569952;101,0.0013595251868992527;102,0.001333492791028836;103,0.0012848211107155572;104,0.0012634611961552156;105,0.001266798682805269;106,0.0013185853506585974;107,0.001302676664293343;108,0.0012600680847276611;109,0.0012226882342470631;110,0.0011637815948736204;111,0.001062377625489498;112,0.0009998553755784978;113,0.000951628693485226;114,0.0009378893734425062;115,0.0009059051263794945;116,0.0008543965824136705;117,0.0008289760590957636;118,0.0008210773406906373;119,0.0008177954788180849;120,0.0007905393378426486;121,0.0007773006407974369;122,0.000745872641509434;123,0.0007415339088643646;124,0.0007236227305090779;125,0.0007090490388038448;126,0.0006824603951584194;127,0.0006443017977928089;128,0.0006243881274474902;129,0.0006132075471698114;130,0.0005931270024919902;131,0.0005722677109291563;132,0.0005368903524385903;133,0.0005125266998932004;134,0.00048260056959772166;135,0.00046569063723745106;136,0.000459627536489854;137,0.0004369326272694909;138,0.0004281439124243503;139,0.00041523896404414395;140,0.0003903190637237451;141,0.0003864253292986828;142,0.0003292986828052688;143,0.00016932182271270916;144,0.000029592381630473476;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022249911000356;50,0.00000033374866500534;51,0.00000066749733001068;52,0.0000005562477750088999;53,0.0000005562477750089;54,0.00000100124599501602;55,0.0000020581167675329296;56,0.0000008343716625133497;57,0.0000005006229975080098;58,0.00000094562121751513;59,0.0000014462442150231395;60,0.0000014462442150231397;61,0.0000022249911000355997;62,0.0000027812388750445;63,0.0000028924884300462798;64,0.00000244749021003916;65,0.000042274830900676404;66,0.00009812210751156997;67,0.0001425106799572802;68,0.00019390797436810259;69,0.00024708526165895337;70,0.0003188412246351015;71,0.00038648095407618375;72,0.00045662379850480603;73,0.00046608001067995725;74,0.00046240877536489857;75,0.0004891086685653257;76,0.0005365566037735849;77,0.0005561921502313991;78,0.0005738252046991811;79,0.000574492702029192;80,0.0005893445176219296;81,0.0005924595051619793;82,0.0006172125311498754;83,0.0006252781238875046;84,0.0006409643111427554;85,0.0006629917230331079;86,0.0006805691527233891;87,0.0006911934852260591;88,0.0006955322178711286;89,0.0007240121039515842;90,0.0007299639551441794;91,0.0007404214133143467;92,0.0007702919188323247;93,0.000778301886792453;94,0.0007822512459950161;95,0.000804056158775365;96,0.0008146248665005342;97,0.0008426597543609826;98,0.0008396003915984337;99,0.0008527278390886438;100,0.0008624621751512995;101,0.0008517265930936276;102,0.0008504472232111072;103,0.0008532284620861516;104,0.0008613496796012817;105,0.0008262504449982201;106,0.0008129561231755073;107,0.0007928199537201852;108,0.0007621150765396939;109,0.0007232889818440726;110,0.000689691616233535;111,0.0006161556603773585;112,0.0005658152367390531;113,0.0005178666785332858;114,0.00047548059807760775;115,0.0004602394090423639;116,0.00043365076539693837;117,0.0004188545745817017;118,0.0003888171947312211;119,0.00036779102883588465;120,0.000370127269490922;121,0.00036695665717337126;122,0.00034331612673549306;123,0.0003225680847276611;124,0.00029681381274474904;125,0.00027656639373442506;126,0.00025509522961908156;127,0.00024246840512637952;128,0.00023073157707369175;129,0.00021287602349590604;130,0.00020914916340334638;131,0.00019752358490566035;132,0.0001808917764328943;133,0.00015953186187255252;134,0.00014595941616233536;135,0.0001367257030971876;136,0.00012065014239943041;137,0.0001139195443218227;138,0.00010479708081167675;139,0.00010496395514417942;140,0.00009072401210395158;141,0.00008065592737629051;142,0.000072812833748665;143,0.00007297970808116768;144,0.00006663848344606621;145,0.0000545679067283731;146,0.000050562922748309004;147,0.00004744793520825917;148,0.00004422169811320755;149,0.000035933606265574943;150,0.000027923638305446778;151,0.00002319553221787113;152,0.00001907929868280527;153,0.000018578675685297258;154,0.00001568618725525098;155,0.000011291829832680667;156,0.000007286845852616589;157,0.0000067305980776076895;158,0.00000394935920256319;159,0.0000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000011124955500177998;12,0.0000007787468850124599;13,0.0000011124955500177999;14,0.00000027812388750444997;15,0;16,0;17,0;18,0;19,0;20,0.0000006118725525097899;21,0.00000116812032751869;22,0.0000015018689925240298;23,0.0000011124955500177999;24,0.0000012237451050195799;25,0.0000016687433250267;26,0.0000027812388750444995;27,0.0000028368636525453894;28,0.00000317061231755073;29,0.0000050062299750801;30,0.00000584060163759345;31,0.00000467248131007476;32,0.0000030593627625489495;33,0.000005840601637593449;34,0.000007119971520113919;35,0.000009678711285154861;36,0.00000800996796012816;37,0.00001062433250266999;38,0.000009567461730153078;39,0.0000105687077251691;40,0.000013961819152723389;41,0.0000144624421502314;42,0.000015185564257742972;43,0.000013794944820220722;44,0.00001240432538269847;45,0.000014573691705233177;46,0.00001568618725525098;47,0.00001429556781772873;48,0.000014073068707725169;49,0.00001640930936276255;50,0.00001896804912780349;51,0.000022305535777856896;52,0.000022249911000356;53,0.000022138661445354218;54,0.000022861783552865793;55,0.00002820176219295123;56,0.00003977171591313635;57,0.00004516731933072269;58,0.00004789293342826629;59,0.000042997953008187965;60,0.00003788047347810609;61,0.000031872997508009965;62,0.000027478640085439665;63,0.00002825738697045212;64,0.00004366545033819865;65,0.0008481109825560698;66,0.0016022160911356351;67,0.0022936320754716986;68,0.0030009011213955146;69,0.0036759077963688146;70,0.004281772872908507;71,0.004871673638305447;72,0.005400442773228907;73,0.005275676397294411;74,0.005119871395514418;75,0.005021638038447846;76,0.004836630028479887;77,0.004703853684585261;78,0.004635101459594161;79,0.0045502736739053045;80,0.004392243681025276;81,0.004287112851548593;82,0.0041748064257742966;83,0.004024953275186899;84,0.003924939925240299;85,0.0038818863474546104;86,0.003856966447134212;87,0.0037511124955500177;88,0.003522439035243859;89,0.0034161400854396586;90,0.003283474991100036;91,0.0031199937700249203;92,0.0029847699359202566;93,0.002953063812744749;94,0.0028416473834104662;95,0.0026576962442150234;96,0.002485760056959772;97,0.0024062166251334997;98,0.002327618814524742;99,0.002173371306514774;100,0.0020427643289426846;101,0.001923004182983268;102,0.001783552865788537;103,0.0016957213421146316;104,0.0015640018689925242;105,0.0014194330722677108;106,0.0012821511213955143;107,0.0012016064435742256;108,0.0011290717337130653;109,0.00101687655749377;110,0.0008759789960840157;111,0.0007111071555713777;112,0.000590178889284443;113,0.00047459060163759347;114,0.00037785911356354575;115,0.00030243191527233896;116,0.00024035466358134566;117,0.00016737495550017803;118,0.00009650898896404415;119,0.0000422748309006764;120,0.000013071822712709149;121,0.0000008343716625133498;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000011820265218939126;53,0.00000011820265218939126;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000000083437166251335;70,0.0000009212853773584905;71,0.00000031288937344250626;72,0;73,0;74,0.00000020337809273762903;75,0.0000009056409086863652;76,0.0000006535911356354576;77,0.0000010568707725169102;78,0.0000024509667586329655;79,0.0000017261063768244927;80,0.000004489993057748231;81,0.0000023536539468546736;82,0.0000006918331701673194;83,0.0000008100358223567107;84,0.0000005266971119615522;85,0;86,0.000009922724917888139;87,0.000011311606081113486;88,0.000002793410189439293;89,0.0000036630905566139453;90,0.000004547460244613697;91,0.0000013280415628337483;92,0.000001696555713777145;93,0.000004733452200065822;94,0.0000011346913697031767;95,0;96,0;97,0;98,0.0000004797637059451762;99,0.00000041544755695977203;100,0.0000013206867194717776;101,0.0000028617325284758524;102,0.0000015379710065846293;103,0.000004601343353501208;104,0.0000035153236641113098;105,0.000003270628734422373;106,0.0000010790665922022866;107,0.000003627909747235633;108,0.0000011820265218939124;109,0.0000016548371306514772;110,0.000004019021464038766;111,0.00000023988185297258816;112,0.0000007665789649341403;113,0.0000009608639400128955;114,0.000001921727880025791;115,0.0000012563705704863736;116,0.0000005840601637593449;117,0.0000005805836151655393;118,0;119,0.0000015766283645567465;120,0.000004655229856705195;121,0.0000008726136970452118;122,0.0000014810097009611964;123,0.000003602237378956451;124,0.000006816437843529213;125,0.000005633074793512759;126,0.000006441379130205515;127,0.00000531793447589837;128,0.000007916363727294335;129,0.000010609081902796255;130,0.00000550270422124505;131,0.0000070705879939967186;132,0.000002120718402436749;133,0.0000038012380843168308;134,0.0000023445404632969554;135,0.000005944641216098619;136,0.00000296255583201269;137,0.0000027986521668617937;138,0.000004766378670955777;139,0.000005687694597162534;140,0.000000963007354800632;141,0.000003005510202509702;142,0.00000702106190658761;143,0.000008100219056591673;144,0.000010216633657870578;145,0.000008823753093227024;146,0.0000023566982004258543;147,0.000002342390259876272;148,0.000002088602212528461;149,0.0000014601504093983626;150,0.000005293186706617948;151,0.000005628261716796411;152,0.000005032435379133106;153,0.0000009786484291562834;154,0.0000006118725525097898;155,0.000001175073424706301;156,0.00000013906194375222498;157,0.0000024258376090770284;158,0.0000023719511058730414;159,0.0000015692599439288796;160,0.000005687363042891106;161,0.000002375819217691785;162,0.0000007596258677465291;163,0.000001725704630650133;164,0.000004215446459588784;165,0.0000017535204137170516;166,0.000004255440345683445;167,0.0000039946856238821265;168,0.0000009560508632965469;169,0;170,0.0000012168123737308122;171,0.0000016965760796759883;172,0.000002394538488783356;173,0.000006796915080088924;174,0.0000015157887641651482;175,0.00000042413892844428616;176,0.0000007787468850124598;177,0.0000015105603640085438;178,0.0000014983924439302246;179,0.000002152918361513865;180,0.000001699228770022231;181,0.0000006553294099323601;182,0.000000592751535243859;183,0.000002558780496838627;184,0.0000007266088390547974;185,0.0000005527814093645161;186,0.0000005527814093645161;187,0.000004975032684280647;188,0.000004975032684280647;189,0.0000015171117150217955;190,0.000002896498014413909;191,0.0000010846967385332509;192,0.000000083437166251335;193,0.0000005701539693841225;194,0.0000019121017265930937;195,0.0000010164887175137854;196,0;197,0;198,0.00000017382742969028122;199,0.0000019030086089342199;200,0.000004410133180841899;201,0.000004618254158392945;202,0.000003573953052128714;203,0.00000034765485938056244;204,0.00000034765485938056244;205,0;206,0.00000034765485938056244;207,0.00000034765485938056244;208,0.0000009456212175151299;209,0.00000042413892844428616;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00015096564613741547;2,0.00020581167675329303;3,0.00024708526165895337;4,0.0003074937700249199;5,0.0003805291028835885;6,0.0004169077073691706;7,0.0004386569953720186;8,0.0004714199893200427;9,0.0005221497864008543;10,0.0005461796902812389;11,0.0006301174795300819;12,0.0007311320754716981;13,0.0008267510679957281;14,0.0008782039871840512;15,0.0009495705767176932;16,0.00100124599501602;17,0.001058873264506942;18,0.0011096586863652545;19,0.001143367301530794;20,0.0012098389106443574;21,0.0012904948380206478;22,0.001308684140263439;23,0.0013133009967960128;24,0.0013574670701317197;25,0.0014198224457102173;26,0.0014355642577429692;27,0.0014830121929512283;28,0.0014920234069063726;29,0.001529069508721965;30,0.0015958192417230331;31,0.0016954432182271272;32,0.0017367724279102885;33,0.001751735493058028;34,0.0017775453898184407;35,0.0018645425418298326;36,0.001927120416518334;37,0.00196310964756141;38,0.002008443841224635;39,0.002067684229263083;40,0.0021248108757564972;41,0.0021751512993948025;42,0.0021623576005695977;43,0.0021949537201851194;44,0.002220763616945532;45,0.0022755540227839093;46,0.002322946333214667;47,0.0023864698291206836;48,0.0024645113919544324;49,0.002530482378070488;50,0.002603017087931648;51,0.0025962864898540407;52,0.002626323869704521;53,0.002685508632965468;54,0.002743970274118904;55,0.0027253915984336062;56,0.002739854040583838;57,0.00280999688501246;58,0.002854274207903168;59,0.002979207458170168;60,0.003055246529013884;61,0.003071155215379139;62,0.003034943485226059;63,0.003027601014595941;64,0.0030623665005339983;65,0.0026820042719829123;66,0.0022934652011391953;67,0.0019298460306158777;68,0.0015663381096475614;69,0.0011929289782840872;70,0.0008231910822356711;71,0.0004132920968316127;72,0.00000951183695265219;73,0.000010068084727661091;74,0.00000828809184763261;75,0.00000856621573513706;76,0.00001095808116767533;77,0.00001229307582769669;78,0.000013572445710217157;79,0.000012849323602705591;80,0.000008121217515129939;81,0.000007008721965112138;82,0.00000784309362762549;83,0.000010457458170167321;84,0.00001212620149519402;85,0.000009011213955144179;86,0.00000839934140263439;87,0.000006007475970096119;88,0.00000617435030259879;89,0.000008232467070131718;90,0.0000083437166251335;91,0.000011124955500178;92,0.000011792452830188679;93,0.000011458704165183341;94,0.000012793698825204699;95,0.00001145870416518334;96,0.00000851059095763617;97,0.00001034620861516554;98,0.00001051308294766821;99,0.00000806559273762905;100,0.000006563723745105018;101,0.00000567372730509078;102,0.0000036156105375578493;103,0.0000036712353150587405;104,0.00000578497686009256;105,0.00000517310430758277;106,0.000005117479530081879;107,0.00000422748309006764;108,0.00000394935920256319;109,0.00000522872908508366;110,0.00000417185831256675;111,0.0000031149875400498394;112,0.00000417185831256675;113,0.00000411623353506586;114,0.000005896226415094339;115,0.000005173104307582769;116,0.00000533997864008544;117,0.000004728106087575651;118,0.00000439435742257031;119,0.00000411623353506586;120,0.00000417185831256675;121,0.0000028924884300462798;122,0.000005061854752580991;123,0.00000717559629761481;124,0.00000495060519757921;125,0.0000031706123175507297;126,0.0000018356176575293696;127,0.0000014462442150231399;128,0.0000024474902100391597;129,0.0000027256140975436092;130,0.0000029481132075471697;131,0.0000031149875400498394;132,0.0000028368636525453894;133,0.00000233624065503738;134,0.0000012793698825204698;135,0.0000015018689925240298;136,0.00000050062299750801;137,0.00000033374866500533997;138,0.00000100124599501602;139,0.0000004449982200071199;140,0.0000008899964400142398;141,0.0000009456212175151297;142,0.0000010568707725169095;143,0.0000011681203275186898;144,0.0000021693663225347094;145,0.0000003893734425062299;146,0.0000005562477750089;147,0.0000015018689925240298;148,0.0000016687433250266995;149,0.0000012793698825204698;150,0.0000018912424350302601;151,0.0000020024919900320397;152,0.00000027812388750444997;153,0.00000016687433250266998;154,0.00000027812388750444997;155,0.00000094562121751513;156,0.00000016687433250266998;157,0.00000022249911000355996;158,0.00000022249911000355996;159,0;160,0;161,0.00000011124955500177998;162,0.00000027812388750444997;163,0.0000005006229975080099;164,0.0000007787468850124599;165,0.0000005562477750088999;166,0.00000022249911000355996;167,0.0000010568707725169098;168,0.0000008899964400142398;169,0.0000003893734425062299;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.00000011124955500177998;179,0.00000016687433250266998;180,0.00000005562477750088999;181,0.00000011124955500178;182,0.00000016687433250266998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000011124955500178;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000005997046324314704;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000000055624777500890004;19,0;20,0;21,0;22,0;23,0.00000016687433250266998;24,0.0000006674973300106799;25,0.0000010012459950160196;26,0.0000018217114631541471;27,0.0000008343716625133498;28,0;29,0.00000016687433250267;30,0;31,0;32,0;33,0;34,0;35,0.00000016687433250267;36,0;37,0.00000016687433250267;38,0;39,0;40,0.00000005562477750089;41,0;42,0;43,0.00000005562477750088999;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000027812388750445;53,0.00000033374866500534;54,0.00000038937344250623;55,0.0000005562477750089;56,0.00000016687433250267;57,0.00000027812388750445;58,0.00000016687433250267;59,0.00000033374866500534;60,0.00000033374866500534;61,0.00000027812388750444997;62,0;63,0.00000005562477750088999;64,0;65,0.00000019468672125311499;66,0.000000668108075033916;67,0.0000007804851593093627;68,0.0000006231713354396582;69,0.0000010325349323602704;70,0.0000014731874666251334;71,0.0000013975725347098611;72,0.0000016916462633980545;73,0.0000012275270261250035;74,0.0000011976709905660378;75,0.0000013361691696814294;76,0.0000013831025756978053;77,0.000002602501994975128;78,0.000001831577344298731;79,0.0000016982939880740477;80,0.0000015601011814702742;81,0.000002185010791206835;82,0.000002723566305406877;83,0.0000011368313901744392;84,0.0000021583729121164594;85,0.0000024860845974690425;86,0.000002304434933442699;87,0.0000017785599782431951;88,0.000002589464937748357;89,0.00000189124243503026;90,0.0000026396165002333235;91,0.000003409930405886484;92,0.000002700409120238519;93,0.000002707103825300915;94,0.0000030970410324439786;95,0.000003626044881377907;96,0.0000023438044972482273;97,0.0000027694233078642015;98,0.0000034099304058864846;99,0.000002996268103610018;100,0.0000054295467467623375;101,0.000004677179348715038;102,0.00000430171210058403;103,0.0000031411086348897853;104,0.000003939328890066197;105,0.000003969396337363975;106,0.000003773229733939172;107,0.0000025309743566768976;108,0.000004510868780849201;109,0.000003434007853917908;110,0.000003250314543083044;111,0.000004516036623353507;112,0.000005342891424042412;113,0.000004248083989505258;114,0.000004717418049669017;115,0.0000057862453305254345;116,0.000004987155938200572;117,0.000004527123994544562;118,0.000004323745901806933;119,0.000004388062050792336;120,0.000005220648458622381;121,0.000005389261065421954;122,0.0000054788291720988525;123,0.0000069132108395552904;124,0.0000046922130723639266;125,0.0000072732450307529845;126,0.000006895217351563028;127,0.00000670626693548969;128,0.000006318979422139744;129,0.000008388394972602542;130,0.000007502438845818941;131,0.0000063193317750377645;132,0.000006476246265623046;133,0.000008644743451009303;134,0.000005644787387066667;135,0.000007879432956508038;136,0.000007513690648362406;137,0.000008608286671160747;138,0.000009476813074588918;139,0.00000867377732980622;140,0.00000848082888285001;141,0.000007780609713709793;142,0.000009241276907358588;143,0.00000804482740683902;144,0.000009499762993346675;145,0.000009319240858593997;146,0.000011482358789737137;147,0.00000962496572311008;148,0.000007681786470911548;149,0.000008559920363359088;150,0.000008923783456048608;151,0.000008103364968296884;152,0.000006679154554496647;153,0.000008961414745557235;154,0.000007536335194608547;155,0.00000876574143618966;156,0.000009335237680164143;157,0.000009878190005821057;158,0.00000867934450559495;159,0.000008337468233741929;160,0.00000884452754418712;161,0.000009413507003911174;162,0.00000915563166294632;163,0.000008904239615305053;164,0.000009028690658886013;165,0.000006738208900204939;166,0.000008235567775634303;167,0.000007413270072426467;168,0.000007784133242690002;169,0.000008567484205569934;170,0.000009860196517828796;171,0.000008789419550936663;172,0.000007714602270813888;173,0.000010692876886431645;174,0.000007603305735425707;175,0.000007809596612120309;176,0.000007026715453104403;177,0.000007133924694875546;178,0.000009923901921790962;179,0.000005343502169065648;180,0.000007921409931758922;181,0.0000061558400303560945;182,0.000006575938645569742;183,0.000006742812978072412;184,0.000005929864371758729;185,0.000011341521263734103;186,0.0000051407818017376585;187,0.000005388133536148288;188,0.000004714810638223663;189,0.000007106676070761933;190,0.000005982576365302647;191,0.000005007404484740169;192,0.000005282709549060453;193,0.000005669123227223307;194,0.000005551531320057152;195,0.000004425693340300963;196,0.0000035148376087238886;197,0.000003971393003786093;198,0.000009704630640688488;199,0.0000032505729352082587;200,0.000010282348452283457;201,0.000004619769316530842;202,0.000010127031294835872;203,0.000004345121977620197;204,0.0000035976640299519885;205,0.0000033004191251816073;206,0.000002336851400060616;207,0.000009540058347119554;208,0.0000027395202919188323;209,0.0000024660474626682575;210,0.000002360576495194019;211,0.000002122432916518334;212,0.000001361068774474902;213,0.0000008986878114987542;214,0.0000009630039604841582;215,0.0000010099373665005339;216,0.0000005562477750089;217,0.00000116812032751869;218,0.000000806559273762905;219,0.0000012515574937700252;220,0.0000003424400364898541;221,0.000000250311498754005;222,0.0000006674973300106799;223,0.000000472810608757565;224,0.000000139061943752225;225,0.00000019468672125311499;226,0.00000016687433250267;227,0.00000036156105375578497;228,0.00000016687433250267;229,0.00000013906194375222498;230,0.00000030593627625489497;231,0.00000036156105375578487;232,0.000000083437166251335;233,0;234,0.000000083437166251335;235,0.00000005562477750088999;236,0.00000013906194375222498;237,0;238,0.00000016687433250267;239,0.00000033374866500534;240,0.00000030593627625489507;241,0.00000005562477750088999;242,0.000000083437166251335;243,0.00000019468672125311499;244,0.00000016687433250267;245,0.000000083437166251335;246,0;247,0;248,0.00000005562477750088999;249,0.00000005562477750088999;250,0.000000083437166251335;251,0.00000005562477750088999;252,0;253,0.000000083437166251335;254,0;255,0;256,0;257,0;258,0.000000083437166251335;259,0;260,0;261,0.00000005562477750088999;262,0;263,0.00000005562477750088999;264,0.00000005562477750088999;265,0;266,0;267,0.00000005562477750088999;268,0.000000083437166251335;269,0.00000005562477750088999;270,0.00000013906194375222498;271,0.00000005562477750088999;272,0.00000011124955500177998;273,0.00000011124955500177998;274,0.00000022249911000355996;275,0.00000033374866500534;276,0.00000016687433250267;277,0.00000027812388750445;278,0.00000038937344250623;279,0.00000005562477750088999;280,0.00000016687433250267;281,0.00000038937344250623;282,0.00000038937344250623;283,0.0000005562477750089;284,0.00000077874688501246;285,0.0000011124955500178;286,0.0000013071822712709151;287,0.00000200249199003204;288,0.00000066749733001068;289,0.0000009456212175151301;290,0.0000004449982200071199;291,0.0000006118725525097901;292,0.0000008899964400142398;293,0.00000077874688501246;294,0.0000010568707725169098;295,0.00000155749377002492;296,0.00000127936988252047;297,0.00000200249199003204;298,0.00000228061587753649;299,0.00000038937344250623;300,0.00000033374866500534;301,0.00000005562477750088999;302,0.00000011124955500177998;303,0.00000011124955500177998;304,0;305,0.00000016687433250267;306,0.00000022249911000355996;307,0.00000027812388750445;308,0.00000050062299750801;309,0.00000038937344250623;310,0.00000005562477750088999;311,0;312,0;313,0;314,0;315,0;316,0;317,0;318,0;319,0;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0.0000014253849234603063;2,0.0000005701539693841225;3,0.00000028507698469206126;4,0;5,0;6,0;7,0;8,0.00000028507698469206126;9,0.0000017104619081523675;10,0.0000005701539693841225;11,0.0000005701539693841225;12,0.00000028507698469206126;13,0.0000004797637059451762;14,0.00000017382742969028122;15,0.0000008691371484514061;16,0.00000017382742969028122;17,0;18,0.00000011994092648629405;19,0.0000005997046324314703;20,0.00000011994092648629405;21,0;22,0;23,0.0000008552309540761838;24,0.0000005701539693841225;25,0.0000008552309540761838;26,0.000003420923816304735;27,0.0000022858307004271987;28,0.000004404787068351727;29,0.000003831156550373799;30,0.0000014253849234603063;31,0.00000028507698469206126;32,0.0000002398818529725881;33,0.0000006900948958704164;34,0.0000008410180054132724;35,0.0000016313193019286744;36,0.0000027374752633342403;37,0.0000009751718805624776;38,0.0000003824203453186187;39,0;40,0;41,0.0000002868152589889641;42,0.000002539618747775009;43,0.000003911117168031328;44,0.00000028507698469206126;45,0.000004669004761480954;46,0.000004856738385546458;47,0.000001140307938768245;48,0.0000017278446511213954;49,0.000002325811009255963;50,0.0000016391926619793523;51,0.000005050913849653424;52,0.0000049518322147299645;53,0.0000005875367123531507;54,0.0000012328454822210124;55,0.000002913143218750655;56,0.0000020807143333926667;57,0.000002068546413314347;58,0.0000005997046324314701;59,0.0000018530004004983978;60,0.000011070417144112673;61,0.000004982328703497686;62,0.000001194194441972232;63,0.0000024474902100391597;64,0.000003043718293876825;65,0.000003933714733891065;66,0.0000024040333526165896;67,0.0000006565564270831151;68,0.0000011496128188281364;69,0.0000007074776388394447;70,0.0000004137092826628694;71,0.00000043630684852260596;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.00000011124955500178002;11,0;12,0;13,0;14,0.00000005562477750088999;15,0.00000016687433250266996;16,0.00000022249911000355996;17,0.00000016687433250266996;18,0.00000038937344250622987;19,0.00000127936988252047;20,0.0000015018689925240298;21,0.00000105687077251691;22,0.0000008343716625133501;23,0.00000139061943752225;24,0.00000294811320754717;25,0.0000029481132075471697;26,0.00000250311498754005;27,0.0000027812388750445;28,0.0000035599857600569607;29,0.0000036712353150587405;30,0.0000052287290850836606;31,0.00000539560341758633;32,0.000006452474190103239;33,0.000006786222855108581;34,0.000008288091847632611;35,0.000009845585617657528;36,0.000008566215735137061;37,0.000010290583837664649;38,0.000015185564257742972;39,0.00001240432538269847;40,0.000014629316482734068;41,0.00001195932716269135;42,0.00000995683517265931;43,0.00001173682805268779;44,0.00001190370238519046;45,0.000013238697045211818;46,0.000013183072267710929;47,0.000013461196155215382;48,0.000013405571377714488;49,0.000012515574937700248;50,0.000013850569597721613;51,0.00001507431470274119;52,0.00001713243147027412;53,0.000016186810252758988;54,0.00001579743681025276;55,0.000018189302242791028;56,0.00001702118191527234;57,0.000016186810252758988;58,0.000018244927020291924;59,0.00001846742613029548;60,0.00001746618013527946;61,0.000015352438590245642;62,0.000015797436810252758;63,0.00001679868280526878;64,0.00001885679957280171;65,0.0002993725525097899;66,0.0005628671235315059;67,0.0007954899430402279;68,0.0009613630295478818;69,0.0011040962086151657;70,0.001256118725525098;71,0.0013567439480242078;72,0.0014096987362050553;73,0.0012736961552153791;74,0.0011444241723033107;75,0.0010292808828764686;76,0.000905182004271983;77,0.0007971030615877537;78,0.0006824603951584194;79,0.0005595852616589534;80,0.0004355420078319687;81,0.00030093004627981487;82,0.0001801130295478818;83,0.00006903034887860448;84,0.000011959327162691351;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00000011994092648629405;70,0;71,0;72,0.0000006796652500889997;73,0.000001371498420256319;74,0.0000003459165850836597;75,0.00000017382742969028122;76,0.0000005875367123531506;77,0.00000041370928266286936;78,0.00000027756012286761667;79,0.0000009317620035263102;80,0.0000019382228214330384;81,0.0000013697601459594162;82,0.000000509314368992524;83,0.00000034244003648985404;84,0.0000027784200518603326;85,0.0000008616202866269615;86,0.000001008971855689341;87,0.00000556528209593355;88,0.0000024067064088616753;89,0.0000012672019624421504;90,0.0000002868152589889641;91,0.00000011994092648629405;92,0.0000005353884834460662;93,0.00000011994092648629405;94,0.0000006548126256819297;95,0.0000039495374725490565;96,0.0000004797637059451763;97,0.000006993199691833077;98,0.0000033166884561870977;99,0.0000010673004182983269;100,0.0000013610687744749021;101,0.0000012411278479886083;102,0.000004053864659226236;103,0.000005191229085174498;104,0.0000029625524376962157;105,0.000004011164133751237;106,0.000009422101920380129;107,0.000008493431150811401;108,0.0000007787468850124599;109,0.0000004589044143823425;110,0.0000020468836294027934;111,0.000001930419251510305;112,0.0000007747535521682239;113,0.000000886003107170004;114,0.0000005910200495799043;115,0.0000004867235917657354;116,0.00000011820265218939126;117,0.0000040311893841170854;118,0.0000061393279373517345;119,0.000004789076977566712;120,0.000002152192578414558;121,0.00000020746538635467084;122,0.0000005805836151655393;123,0.0000031976212139524562;124,0.000003672794419296056;125,0.0000006142249661464029;126,0.0000009039026343894625;127,0.0000020598550418298325;128,0.000002185010791206835;129,0.000003513987135988767;130,0.000003997230784844223;131,0.000002009458664485547;132,0.0000008274253539586866;133,0.000006620428171419452;134,0.0000038433441162919854;135,0.000004653396910231066;136,0.0000061871825480503955;137,0.000011595119118479247;138,0.00000777895289435371;139,0.000005171500717201805;140,0.000008337026107144815;141,0.000011612879847407322;142,0.000007193151061980988;143,0.000005746474551935224;144,0.00000504420494735354;145,0.0000042315062517011645;146,0.000008474788860255709;147,0.0000016618105937379323;148,0.000005330291028926723;149,0.0000014868352688751404;150,0.0000008673988741545034;151,0.0000016635285021359912;152,0.0000023250075169072434;153,0.0000039720914523388635;154,0.0000009595409891562484;155,0.0000007121388800427414;156,0.000000603791926048512;157,0.0000010951162013652458;158,0.000004227557765030067;159,0.00000307800093872919;160,0.000002809986045743128;161,0.0000031141840477011205;162,0.0000031485477874648168;163,0.000003202481271055207;164,0.00000094392992360463;165,0.0000006327318440726238;166,0.0000017695937830953284;167,0.000002381466335605118;168,0.0000036613387050511465;169,0.0000028825918200386862;170,0.000004813412817723351;171,0.00000386083850302061;172,0.000001701253752417423;173,0.0000007648406906372377;174,0.0000006466380384478463;175,0.0000006953097187611249;176,0.000008863673393102279;177,0.000007782456597479308;178,0.000001394106169065477;179,0.000002010801981241038;180,0.0000017987223340694727;181,0.000002728287153788696;182,0.0000054648639328875465;183,0.00000533061506585167;184,0.0000014603594082472387;185,0.0000002665667124493664;186,0;187,0;188,0;189,0.000004975032684280647;190,0.000008926271633689624;191,0.0000030607400224691803;192,0;193,0.000000815250645247419;194,0.0000008135123709505161;195,0.0000005075760946956213;196,0.0000006953097187611249;197,0.0000010151521893912425;198,0.00000066749733001068;199,0;200,0.0000004797637059451762;201,0.0000004797637059451762;202,0;203,0.0000007370418791526884;204,0.00000016687433250267;205,0.00000066749733001068;206,0.0000004797637059451762;207,0.00000035982277945888203;208,0.0000010164887175137856;209,0;210,0;211,0;212,0;213,0;214,0;215,0.00000005562477750088999;216,0.00000077874688501246;217,0.00000016687433250267004;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0007581100925596298;2,0.0007593338376646493;3,0.0008110092559629762;4,0.0008632965468138127;5,0.0008835439658241367;6,0.0009275987896048415;7,0.0009656461374154503;8,0.0009816104485582057;9,0.0010006341224635105;10,0.0010567595229619084;11,0.0010761725703097187;12,0.0010905237629049483;13,0.0011275698647205412;14,0.0011101036845852616;15,0.0008986182805268779;16,0.0006880228729085082;17,0.0006654392132431472;18,0.0006906928622285512;19,0.0007106621573513706;20,0.000753437611249555;21,0.0007948780704877181;22,0.0008305891776432895;23,0.0008360404058383767;24,0.0008169611071555715;25,0.0008764239943040229;26,0.0009273206657173373;27,0.0009356643823424707;28,0.0009581924172303311;29,0.0010244971520113918;30,0.0010303933784264864;31,0.001063434496262015;32,0.0010953631185475258;33,0.0011095474368102527;34,0.001151377269490922;35,0.0011564947490210037;36,0.001200048949804201;37,0.0012416562833748666;38,0.0012597899608401569;39,0.0012891598433606268;40,0.0013211440904236384;41,0.0013636414204343185;42,0.00142438367746529;43,0.0014367323780704877;44,0.0014419054823780705;45,0.0014556448024207905;46,0.0014897427910288362;47,0.0015262882698469208;48,0.0015078208437166252;49,0.001466436009255963;50,0.0014435186009255961;51,0.0014084749911000356;52,0.0013559095763616947;53,0.0013347165361338553;54,0.0013027879138483448;55,0.001259623086507654;56,0.0012264150943396227;57,0.0011937077251690997;58,0.0011611116055535778;59,0.0011359135813456744;60,0.0011122174261302955;61,0.001088243147027412;62,0.0010707213421146315;63,0.0010162090601637595;64,0.0010020247419010326;65,0.0008566771982912069;66,0.0007111627803488786;67,0.0005819464222143111;68,0.0004366545033819865;69,0.0003276299394802421;70,0.0002146560163759345;71,0.0000961752402990388;72,0.00000027812388750445;73,0.00000083437166251335;74,0.0000008899964400142401;75,0.00000027812388750445;76,0.00000044499822000712003;77,0.00000011124955500177998;78,0.000000055624777500889984;79,0.00000027812388750445;80,0.0000006118725525097899;81,0.00000022249911000355996;82,0.00000005562477750089001;83,0.00000016687433250266998;84,0.0000005562477750089;85,0.00000050062299750801;86,0.0000005006229975080101;87,0.00000033374866500533997;88,0;89,0.000000055624777500890004;90,0;91,0;92,0.000000055624777500889984;93,0.000000055624777500889984;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.0008472209861160557;2,0.0009467337130651477;3,0.0010324514951940192;4,0.0011311298504805983;5,0.0012015508187967249;6,0.0013301553043787826;7,0.0013962375400498397;8,0.0014528635635457459;9,0.0015335751156995373;10,0.0015866967782128872;11,0.0017388861694553224;12,0.0019895870416518336;13,0.002259756585973656;14,0.002460117034531862;15,0.0025471698113207547;16,0.0026482956568173724;17,0.002694130473478106;18,0.002788025097899609;19,0.0028582235671057313;20,0.0029494482022071914;21,0.003033052242791029;22,0.003121495639017444;23,0.0032351370594517624;24,0.0032875912246351016;25,0.003330756051975792;26,0.003418643200427198;27,0.003486727928088288;28,0.0035321733713065146;29,0.0036699559451762193;30,0.0037519468672125317;31,0.0038254271982912065;32,0.003888338821644714;33,0.003875378248487006;34,0.00382998843004628;35,0.0036902589889640444;36,0.003535065859736562;37,0.0034898429156283374;38,0.0034191994482022075;39,0.0033031105375578495;40,0.0031754516731933072;41,0.003057137771448915;42,0.002958960039159844;43,0.002896994037023852;44,0.0027811832502669994;45,0.0026620349768600926;46,0.0025715334638661443;47,0.002436476504093984;48,0.0023188300996796014;49,0.002292241456034176;50,0.0022461285154859382;51,0.0021235315058739765;52,0.002003437611249555;53,0.0019422503559985759;54,0.00182249021003916;55,0.0016802576539693842;56,0.0015875311498754006;57,0.0014900765396938414;58,0.0014321155215379138;59,0.001316694108223567;60,0.0011936521003915984;61,0.00110125934496262;62,0.0010172659309362763;63,0.0009310475258098967;64,0.0008258054467782129;65,0.0006657729619081523;66,0.0004874399252402991;67,0.00033925551797792813;68,0.0002530371128515486;69,0.0001884011213955144;70,0.0001256563723745105;71,0.00006140975436098256;72,0.00000183561765752937;73,0.0000012237451050195799;74,0.0000014462442150231399;75,0.00000116812032751869;76,0.0000015018689925240302;77,0.00000127936988252047;78,0.0000017799928800284801;79,0.0000015018689925240298;80,0.0000017243681025275902;81,0.0000016131185475258098;82,0.0000016687433250267;83,0.0000010012459950160199;84,0.00000161311854752581;85,0.00000116812032751869;86,0.00000050062299750801;87,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000011124955500177998;15,0.00000022249911000355996;16,0.00000038937344250622997;17,0.0000003337486650053399;18,0;19,0;20,0.00000005562477750088999;21,0.00000016687433250266996;22,0.00000011124955500177998;23,0;24,0;25,0;26,0.00000011124955500178;27,0.00000022249911000356;28,0.00000022249911000356;29,0;30,0.00000033374866500533997;31,0.0000006118725525097899;32,0.00000038937344250622987;33,0.0000012793698825204698;34,0.0000015018689925240298;35,0.00000139061943752225;36,0.0000007787468850124598;37,0.00000116812032751869;38,0.00000177999288002848;39,0.0000011124955500177999;40,0.0000012793698825204702;41,0.0000018356176575293698;42,0.00000228061587753649;43,0.00000216936632253471;44,0.0000011681203275186898;45,0.00000127936988252047;46,0.00000211374154503382;47,0.00000172436810252759;48,0.0000011124955500177999;49,0.0000008343716625133501;50,0.0000007231221075115702;51,0.00000255873976504094;52,0.00000406060875756497;53,0.00000383810964756141;54,0.0000033374866500534002;55,0.0000027812388750444995;56,0.00000294811320754717;57,0.00000294811320754717;58,0.00000361561053755785;59,0.00000372686009255963;60,0.000003726860092559629;61,0.00000367123531505874;62,0.0000025587397650409404;63,0.00000233624065503738;64,0.00000250311498754005;65,0.000037491100035599864;66,0.00006958659665361339;67,0.00010880206479174084;68,0.00014011881452474193;69,0.00017532929868280527;70,0.00020453230687077253;71,0.00023390218939124246;72,0.0002666095585617658;73,0.00027573202207191173;74,0.00027378515485938055;75,0.00027245016019935924;76,0.000270503292986828;77,0.00027812388750444994;78,0.00028268511925952296;79,0.00027790138839444643;80,0.00026777767888928444;81,0.00027161578853684585;82,0.00027384077963688144;83,0.00026744393022427914;84,0.0002703920434318263;85,0.0002752870238519046;86,0.0002878582235671057;87,0.0002764551441794233;88,0.00026516331434674266;89,0.00026360582057671767;90,0.000261436454254183;91,0.0002621039515841937;92,0.0002699470452118192;93,0.0002797370060519758;94,0.00027723389106443577;95,0.00027723389106443577;96,0.0002663870594517622;97,0.00025670834816660733;98,0.00024308027767888928;99,0.00024341402634389463;100,0.0002574870950516198;101,0.00026037958348166607;102,0.00024908775364898545;103,0.00024758588465646135;104,0.0002475858846564614;105,0.00024925462798148807;106,0.00024513839444642224;107,0.00024613964044143825;108,0.00024346965112139553;109,0.00023451406194375225;110,0.0002236116055535778;111,0.0002001379494482022;112,0.00018790049839800642;113,0.00018055802776788894;114,0.00017321555713777147;115,0.00016487184051263795;116,0.0001580856176575294;117,0.00015191126735493058;118,0.00014979752580989678;119,0.00015141064435742258;120,0.00015697312210751158;121,0.00015775186899252402;122,0.00012126201495194019;123,0.0000717559629761481;124,0.00002419677821288715;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.001532851993592026;2,0.0015380250978996085;3,0.001516553933784265;4,0.0014856265574937702;5,0.0014896871662513351;6,0.0014887971698113209;7,0.0014753359736561055;8,0.0015079877180491277;9,0.001491745283018868;10,0.001466380384478462;11,0.001522561409754361;12,0.0016499977750089002;13,0.0017715935386258454;14,0.0018058584015663939;15,0.0018187077251690994;16,0.0018539738341046637;17,0.0018340045389818442;18,0.0017996840512637948;19,0.0017769335172659311;20,0.001772316660733357;21,0.001770814791740833;22,0.0017488986294054826;23,0.0017398874154503383;24,0.0017372730509077965;25,0.0017498442506229976;26,0.0017270937166251337;27,0.001727983713065148;28,0.0017372174261302956;29,0.0016816482734069065;30,0.001658508365966536;31,0.00166062210751157;32,0.0016655170879316485;33,0.0016548371306514776;34,0.0016487184051263797;35,0.0016573958704165183;36,0.0016453809184763264;37,0.0016725814346742612;38,0.0016792007831968672;39,0.0016487184051263795;40,0.0016295278568885727;41,0.0016416540583837663;42,0.0016255784976860093;43,0.001631808472766109;44,0.0016456590423638306;45,0.0016299728551085798;46,0.0016300841046635814;47,0.001619682271270915;48,0.001620794766820933;49,0.0016702451940192238;50,0.0016730820576717695;51,0.0016300284798860807;52,0.0016268578675685298;53,0.0016498309006763973;54,0.001645436543253827;55,0.0016312522249911003;56,0.0015829699181203276;57,0.0015783530615877538;58,0.0016066660733357067;59,0.0016346453364186543;60,0.0016276366144535423;61,0.0016410978106087579;62,0.001602382965468138;63,0.0015537112851548595;64,0.0015197801708793169;65,0.0013402233891064434;66,0.0011754071733713067;67,0.0009757698469206124;68,0.0007687900498398007;69,0.0005831145425418298;70,0.000388372196511214;71,0.00018923549305802778;72,0.00000545122819508722;73,0.00000456123175507298;74,0.00000517310430758277;75,0.00000317061231755073;76,0.00000367123531505874;77,0.0000035599857600569602;78,0.0000033374866500534;79,0.0000033374866500534;80,0.000005395603417586329;81,0.0000044499822000712;82,0.00000372686009255963;83,0.00000283686365254539;84,0.000004060608757564969;85,0.0000032818618725525107;86,0.00000406060875756497;87,0.00000350436098255607;88,0.00000311498754004984;89,0.00000328186187255251;90,0.0000025587397650409404;91,0.00000266998932004272;92,0.0000030037379850480596;93,0.00000283686365254539;94,0.00000428310786756853;95,0.0000033374866500534;96,0.0000032262370950516196;97,0.0000033374866500534;98,0.0000030037379850480596;99,0.0000029481132075471697;100,0.0000031706123175507297;101,0.00000355998576005696;102,0.0000025587397650409395;103,0.00000255873976504094;104,0.00000328186187255251;105,0.00000283686365254539;106,0.00000283686365254539;107,0.00000305936276254895;108,0.00000194686721253115;109,0.0000025031149875400496;110,0.00000183561765752937;111,0.0000016687433250267;112,0.00000133499466002136;113,0.0000015018689925240298;114,0.0000013349946600213599;115,0.00000155749377002492;116,0.00000189124243503026;117,0.0000011124955500177999;118,0.00000127936988252047;119,0.00000172436810252759;120,0.0000017243681025275898;121,0.0000013906194375222502;122,0.0000018356176575293696;123,0.00000194686721253115;124,0.0000018356176575293696;125,0.0000008343716625133498;126,0.0000005562477750088999;127,0.0000013349946600213599;128,0.0000011124955500177999;129,0.0000009456212175151297;130,0.0000007231221075115699;131,0.00000133499466002136;132,0.0000007787468850124598;133,0.0000010012459950160199;134,0.0000006674973300106798;135,0.0000009456212175151299;136,0.0000006674973300106798;137,0.00000038937344250623;138,0.0000005562477750088999;139,0.00000044499822000712;140,0.0000007231221075115699;141,0.0000012793698825204698;142,0.0000006118725525097899;143,0.0000004449982200071199;144,0.00000011124955500177997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000022249911000355996;15,0.00000022249911000355996;16,0.00000005562477750088999;17,0.00000022249911000355996;18,0.0000004449982200071199;19,0.0000003337486650053401;20,0.0000008343716625133502;21,0.00000094562121751513;22,0.00000044499822000712;23,0.00000094562121751513;24,0.0000007787468850124598;25,0.0000012237451050195799;26,0.00000122374510501958;27,0.00000183561765752937;28,0.0000018356176575293704;29,0.0000020581167675329296;30,0.00000244749021003916;31,0.0000033374866500534002;32,0.00000322623709505162;33,0.0000037824848700605194;34,0.00000428310786756853;35,0.0000052843538625845505;36,0.000006841847632609469;37,0.00000517310430758277;38,0.00000606310074759701;39,0.000006285599857600571;40,0.000006118725525097899;41,0.0000071755962976148095;42,0.000005896226415094341;43,0.00000634122463510146;44,0.000005006229975080099;45,0.000005006229975080099;46,0.000005006229975080099;47,0.000004561231755072981;48,0.0000057849768600925595;49,0.00000561810252758989;50,0.00000634122463510146;51,0.00000817684229263083;52,0.000008677465290138841;53,0.0000094562121751513;54,0.000011347454610181561;55,0.000011291829832680669;56,0.000010234959060163758;57,0.000011124955500178002;58,0.000014462442150231397;59,0.00001585306158775365;60,0.000014740566037735851;61,0.00001346119615521538;62,0.000015018689925240301;63,0.000014573691705233182;64,0.00001702118191527234;65,0.00029609069063723744;66,0.0005667052331790674;67,0.0008402122641509434;68,0.001111994927020292;69,0.001388561320754717;70,0.0016412646849412603;71,0.001916941082235671;72,0.0021956768422926307;73,0.002181436899252403;74,0.002135045834816661;75,0.0021502313990744036;76,0.002152678889284443;77,0.0021937299750801;78,0.002178544410822357;79,0.0021540138839444643;80,0.0021318752224991104;81,0.0021698113207547173;82,0.0021755406728373086;83,0.0021505651477394094;84,0.0021661400854396584;85,0.002163414471342115;86,0.0019472009611961555;87,0.0010742813278746886;88,0.0002067016731933072;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000150186899252403;46,0.000008621840512637949;47,0.000026533018867924528;48,0.00004144045923816305;49,0.00006079788180847277;50,0.0000812121751512994;51,0.00010051397294410825;52,0.00011225080099679601;53,0.00013544633321466713;54,0.00014696066215735137;55,0.0001629805980776077;56,0.0001786111605553578;57,0.00019279547881808474;58,0.00020547792808828764;59,0.00023807404770380918;60,0.00024341402634389463;61,0.00025509522961908156;62,0.0002742301530793877;63,0.00028591135635457456;64,0.0003151699893200428;65,0.0002834638661445354;66,0.00025198024207903174;67,0.00022172036311854756;68,0.00017989053043787823;69,0.00014290005339978641;70,0.00010101459594161622;71,0.000054790405838376654;72,0.00000150186899252403;73,0.0000009456212175151297;74,0.0000014462442150231397;75,0.0000021137415450338195;76,0.0000017799928800284795;77,0.00000094562121751513;78,0.00000139061943752225;79,0.0000008899964400142398;80,0.0000012793698825204698;81,0.00000066749733001068;82,0.0000017799928800284801;83,0.0000022249911000356;84,0.0000013349946600213599;85,0.00000216936632253471;86,0.0000012237451050195799;87,0.0000017243681025275898;88,0.0000008899964400142401;89,0.0000010568707725169098;90,0.00000161311854752581;91,0.0000006674973300106799;92,0.00000077874688501246;93,0.0000012237451050195797;94,0.0000009456212175151297;95,0.0000007231221075115698;96,0.0000012237451050195799;97,0.0000016131185475258098;98,0.0000007231221075115699;99,0.0000006674973300106799;100,0.0000004449982200071199;101,0.0000006118725525097899;102,0.00000105687077251691;103,0.0000010012459950160199;104,0.0000007787468850124598;105,0.00000116812032751869;106,0.00000100124599501602;107,0.0000007787468850124599;108,0.00000044499822000712;109,0.00000016687433250266998;110,0.00000033374866500533997;111,0.00000027812388750444997;112,0.00000022249911000356001;113,0.00000027812388750444997;114,0.00000027812388750444997;115,0.00000011124955500177998;116,0.00000027812388750444997;117,0.00000022249911000355996;118,0.00000011124955500177998;119,0.00000016687433250267;120,0.00000005562477750089002;121,0;122,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0.00000005562477750088999;16,0.00000022249911000355996;17,0.00000005562477750088999;18,0;19,0.00000011124955500177998;20,0.0000005562477750088999;21,0.0000011124955500178;22,0.0000005006229975080099;23,0.00000116812032751869;24,0.00000133499466002136;25,0.0000011124955500177996;26,0.0000018912424350302603;27,0.00000155749377002492;28,0.00000139061943752225;29,0.0000018356176575293696;30,0.0000030593627625489503;31,0.0000043943574225703095;32,0.000004561231755072979;33,0.000004672481310074761;34,0.00000422748309006764;35,0.00000528435386258455;36,0.0000057849768600925595;37,0.0000076205945176219295;38,0.00000762059451762193;39,0.00000717559629761481;40,0.000005562477750089;41,0.000008288091847632611;42,0.00000901121395514418;43,0.000008288091847632611;44,0.00000773184407262371;45,0.00000912246351014596;46,0.000009678711285154861;47,0.000010012459950160199;48,0.000009845585617657531;49,0.000013238697045211823;50,0.00001218182627269491;51,0.000012014951940192238;52,0.00001451806692773229;53,0.000015185564257742968;54,0.00001485181559273763;55,0.00002030304378782485;56,0.000021026165895336414;57,0.000022472410110359563;58,0.000025976771092915627;59,0.00002764551441794233;60,0.00002914738341046636;61,0.000028702385190459245;62,0.000029814880740477036;63,0.00002914738341046636;64,0.000033708615165539334;65,0.0005961863652545389;66,0.0011505428978284087;67,0.001663180847276611;68,0.002163080722677109;69,0.0026598099857600573;70,0.00310186009255963;71,0.0035049728551085797;72,0.003908808739765041;73,0.003873153257386971;74,0.003752169366322535;75,0.0036825827696689217;76,0.0036475391598433608;77,0.0035527545389818444;78,0.0034242056781772874;79,0.0033384878960484162;80,0.0032977149341402636;81,0.003248876379494482;82,0.0031569842470630114;83,0.0031132075471698114;84,0.0030348322356710577;85,0.0029595719117123534;86,0.002879861605553578;87,0.002825182449270203;88,0.0027556514773940904;89,0.0026577518689925245;90,0.002577930313278747;91,0.002476081345674617;92,0.0024477127091491633;93,0.00238997419010324;94,0.0023020314168743323;95,0.00215940948736205;96,0.0020844829120683517;97,0.0020602305090779635;98,0.0019992101281594878;99,0.001897639284442862;100,0.0017956790672837312;101,0.0017284843360626558;102,0.0016498865254538984;103,0.001556047525809897;104,0.001489242168031328;105,0.0014201561943752226;106,0.0013295990566037736;107,0.0012523918654325384;108,0.0012047770558917766;109,0.0011225080099679602;110,0.0009929579031683873;111,0.0008433272516909933;112,0.0007611694553221787;113,0.000667997953008188;114,0.0005880095229619082;115,0.0005190904236383055;116,0.00047069686721253116;117,0.00041896582413670347;118,0.0003839222143111427;119,0.0003359180313278747;120,0.00029091758632965466;121,0.0002423571555713777;122,0.00019585484158063366;123,0.00015413625845496617;124,0.00011887014951940192;125,0.00008332591669633321;126,0.0000506185475258099;127,0.000020358668565325745;128,0.00000328186187255251;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0.00000083437166251335;20,0.0000011681203275186895;21,0.0000007787468850124599;22,0;23,0;24,0;25,0;26,0.00000005562477750089;27,0;28,0;29,0;30,0.00000027812388750445007;31,0.0000008343716625133503;32,0.0000009456212175151303;33,0.00000077874688501246;34,0.0000012237451050195803;35,0.0000026699893200427206;36,0.0000043387326450694205;37,0.00000483935564257743;38,0.00000322623709505162;39,0.00000183561765752937;40,0.0000011124955500177996;41,0.00000228061587753649;42,0.0000028924884300462806;43,0.0000032262370950516204;44,0.0000027812388750444995;45,0.0000027256140975436105;46,0.00000205811676753293;47,0.0000018356176575293696;48,0.0000017243681025275898;49,0.0000021137415450338195;50,0.0000023918654325382694;51,0.0000028368636525453903;52,0.00000461685653257387;53,0.0000070087219651121415;54,0.000006786222855108581;55,0.00000517310430758277;56,0.0000035043609825560695;57,0.0000043387326450694205;58,0.00000472810608757565;59,0.000006285599857600569;60,0.000008844339622641512;61,0.000006841847632609469;62,0.000004505606977572089;63,0.000004004983980064081;64,0.000007008721965112139;65,0.00014334505161979353;66,0.00028240699537201855;67,0.0004216358134567462;68,0.0005530771626913492;69,0.0006999822000711999;70,0.0008508922214311143;71,0.0010060853506585975;72,0.0011505985226059098;73,0.0011635590957636173;74,0.001161500978996084;75,0.0011986583303666785;76,0.0012048326806692773;77,0.0012067239231043077;78,0.0011912046101815593;79,0.0012159020113919545;80,0.00125;81,0.0012816504983980065;82,0.00131124288002848;83,0.0013342159131363475;84,0.001285877981488074;85,0.0012805936276254893;86,0.0013205878426486295;87,0.0013547970808116768;88,0.0013054579031683872;89,0.00133187967248131;90,0.001367924528301887;91,0.0014024675151299395;92,0.0014134255962976149;93,0.001398629405482378;94,0.001365755161979352;95,0.0013676464044143823;96,0.0014168743325026702;97,0.001465546012815949;98,0.0014915784086863655;99,0.001499310252758989;100,0.001476003470986116;101,0.0014758365966536136;102,0.0014817884478462086;103,0.0014925240299038804;104,0.0014959171413314347;105,0.0014658241367034534;106,0.0014380117479530082;107,0.0013979619081523674;108,0.0013672014061943752;109,0.001310686632253471;110,0.0012772005161979351;111,0.001170567817728729;112,0.001155994126023496;113,0.0011509878960484158;114,0.0011161667853328587;115,0.0010699982200071201;116,0.0010133721965112142;117,0.0010010234959060165;118,0.0009969628871484516;119,0.0009683717515129942;120,0.0009373331256674975;121,0.0009672036311854753;122,0.0010297815058739766;123,0.0010286133855464579;124,0.0009670923816304736;125,0.0009560230509077965;126,0.0009816660733357068;127,0.0009505161979352081;128,0.0008579009433962266;129,0.0008250823246707013;130,0.0008174617301530795;131,0.0008187411000355998;132,0.0007796368814524742;133,0.000734692061231755;134,0.0007124977750089;135,0.000699314702741189;136,0.0006895803666785332;137,0.0006405749377002492;138,0.0005898451406194374;139,0.0005867301530793877;140,0.0005660933606265575;141,0.0005274897650409398;142,0.0005200916696333214;143,0.0005163648095407619;144,0.0004937811498754005;145,0.0004981755072979709;146,0.0004992323780704877;147,0.0005136948202207191;148,0.0005176441794232823;149,0.000498564880740477;150,0.0004701962442150231;151,0.0004305914026343895;152,0.00039994215023139907;153,0.0003690147739409043;154,0.0003295768066927732;155,0.0003159487362050552;156,0.0003092181381274475;157,0.00031555936276254893;158,0.0003072712709149164;159,0.00027740076539693845;160,0.00024680713777144896;161,0.00022950783196867212;162,0.0002415784086863653;163,0.00024163403346386616;164,0.00023045345318618724;165,0.00021604663581345675;166,0.00019958170167319332;167,0.00019229485582057676;168,0.00018150364898540403;169,0.00017961240655037382;170,0.00017521804912780348;171,0.00015992123531505874;172,0.0001407306870772517;173,0.00013889506941972232;174,0.00013483446066215734;175,0.00011925952296190817;176,0.0001006808472766109;177,0.0000951183695265219;178,0.00009595274118903526;179,0.00010056959772160911;180,0.0001006808472766109;181,0.00009862273050907796;182,0.00008977839088643647;183,0.0000778190637237451;184,0.00006780660377358491;185,0.0000706434674261303;186,0.00007492657529369884;187,0.00006852972588109648;188,0.00005779414382342471;189,0.000060130384478462084;190,0.00006096475614097543;191,0.00005695977216091135;192,0.000047392310430758284;193,0.000046279814880740476;194,0.00004327607689569243;195,0.000039604841580633675;196,0.00003131674973300107;197,0.000029425507297970806;198,0.000027923638305446778;199,0.000032373620505517976;200,0.000033374866500534;201,0.0000294811320754717;202,0.00002441927732289071;203,0.00002797926308294767;204,0.00002453052687789249;205,0.00001874555001779993;206,0.000014406817372730508;207,0.00001029058383766465;208,0.000010513082947668208;209,0.00001273807404770381;210,0.00001218182627269491;211,0.000008844339622641508;212,0.000007064346742613029;213,0.000007453720185119259;214,0.00000917808828764685;215,0.00000795434318262727;216,0.000005673727305090781;217,0.00000406060875756497;218,0.0000037268600925596295;219,0.0000057849768600925595;220,0.000006396849412602349;221,0.0000033374866500534;222,0.0000012793698825204698;223,0.0000011124955500178;224,0.0000013906194375222502;225,0.00000200249199003204;226,0.00000205811676753293;227,0.0000016131185475258098;228,0.0000005562477750089001;229,0.00000050062299750801;230,0.0000015018689925240302;231,0.00000228061587753649;232,0.0000017799928800284797;233,0.0000014462442150231397;234,0.0000011124955500178;235,0.00000033374866500534;236,0;237,0.0000006118725525097901;238,0.0000008899964400142398;239,0.00000066749733001068;240,0.00000033374866500534;241,0.00000100124599501602;242,0.00000100124599501602;243,0.00000066749733001068;244,0.0000008899964400142398;245,0.0000009456212175151301;246,0.0000013906194375222498;247,0.0000012793698825204702;248,0.0000008899964400142398;249,0.00000038937344250623;250,0.00000033374866500534;251,0.00000011124955500177998;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0.0000007231221075115698;263,0.00000077874688501246;264,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.0001967448380206479;2,0.0002515352438590246;3,0.0003115543787824849;4,0.00034270425418298325;5,0.0003875378248487006;6,0.0004584037913848345;7,0.000525431648273407;8,0.0005790539337842649;9,0.0006252781238875045;10,0.0006577629939480243;11,0.0007102727839088644;12,0.0008083948914204343;13,0.0009620861516553933;14,0.0010852950338198649;15,0.0011609447312210751;16,0.0012215757386970453;17,0.0012824292452830188;18,0.001306681648273407;19,0.0013447289960840157;20,0.0014104774830900678;21,0.0014865721787112852;22,0.001551931292274831;23,0.0016015485938056248;24,0.0016318640975436097;25,0.0016544477572089712;26,0.0016887126201495196;27,0.0017614698291206837;28,0.0017555736027055893;29,0.0017863341046635817;30,0.0018734425062299754;31,0.001962720274118903;32,0.002070576717693129;33,0.0021455032929868284;34,0.002255250978996084;35,0.002330733802064792;36,0.0023423037557849767;37,0.0023405793876824493;38,0.0023901410644357425;39,0.0024044922570309723;40,0.0024177865788536845;41,0.0024847031861872553;42,0.002588387771448914;43,0.002653246262014952;44,0.0027233891064435745;45,0.0028046569063723747;46,0.0028217337130651476;47,0.002866289159843361;48,0.0028734647561409754;49,0.0028637304200783194;50,0.002844261747953008;51,0.0028234580811676755;52,0.002768500800996796;53,0.0027062566749733;54,0.002617535154859381;55,0.002562800373798505;56,0.00252747864008544;57,0.0024447089711641156;58,0.002368447401210395;59,0.00228812522249911;60,0.002226326094695621;61,0.002195509967960128;62,0.0021448357956568177;63,0.002048493681025276;64,0.0018908530615877536;65,0.0015982111071555717;66,0.0013326027945888218;67,0.0010865187789248845;68,0.0008501690993236026;69,0.000627558739765041;70,0.00040088777144891424;71,0.0001963554645781417;72,0.00000344873620505518;73,0.0000003893734425062301;74,0.0000008343716625133501;75,0.00000211374154503382;76,0.00000350436098255607;77,0.0000035599857600569602;78,0.00000233624065503738;79,0.0000043943574225703095;80,0.00000478373086507654;81,0.00000595185119259523;82,0.00000450560697757209;83,0.0000035043609825560703;84,0.0000014462442150231399;85,0.00000083437166251335;86,0.0000018912424350302597;87,0.0000028924884300462798;88,0.0000015574937700249199;89,0.00000105687077251691;90,0.00000116812032751869;91,0.0000016687433250266995;92,0.0000018356176575293698;93,0.0000011124955500178;94,0.0000007787468850124598;95,0.00000050062299750801;96,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000044499822000711994;46,0.00002608802064791741;47,0.00007615032039871841;48,0.00011970452118191528;49,0.00016275809896760415;50,0.00021059540761836956;51,0.0002575983446066216;52,0.00030276566393734426;53,0.0003543298326806693;54,0.00040038714845140627;55,0.0004397694909220363;56,0.0004909442862228551;57,0.0005178666785332858;58,0.0005741033285866857;59,0.0006247775008899964;60,0.0006658842114631541;61,0.0007096052865788538;62,0.000751435119259523;63,0.0007880362228551087;64,0.0008196310964756141;65,0.000755551352794589;66,0.0006683873264506941;67,0.0005844495372018513;68,0.0004866055535777857;69,0.00039143155927376296;70,0.000262437700249199;71,0.00012866011035955857;72,0.00000233624065503738;73,0.0000024474902100391597;74,0.0000030037379850480604;75,0.00000272561409754361;76,0.0000020024919900320397;77,0.0000014462442150231397;78,0.00000228061587753649;79,0.0000030037379850480596;80,0.0000018912424350302597;81,0.00000133499466002136;82,0.0000017243681025275898;83,0.00000139061943752225;84,0.0000007787468850124599;85,0.0000010012459950160199;86,0.0000006674973300106799;87,0.0000012793698825204698;88,0.00000038937344250622997;89,0.00000122374510501958;90,0.0000005006229975080099;91,0.00000027812388750444997;92,0.00000011124955500178;93,0.00000011124955500177995;94,0.00000005562477750088998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000007231221075115699;43,0.00000172436810252759;44,0.00000189124243503026;45,0.00000161311854752581;46,0.0000013906194375222498;47,0.0000016687433250267001;48,0.0000021693663225347102;49,0.00000250311498754005;50,0.0000036712353150587396;51,0.000004116233535065861;52,0.00000450560697757209;53,0.00000372686009255963;54,0.00000422748309006764;55,0.00000461685653257387;56,0.000006118725525097901;57,0.00000472810608757565;58,0.00000539560341758633;59,0.000006563723745105021;60,0.000006229975080099679;61,0.000007231221075115699;62,0.0000060631007475970116;63,0.000008343716625133498;64,0.000006953097187611248;65,0.00013806069775720896;66,0.0002651076895692417;67,0.0003745216269134923;68,0.0004953942684229264;69,0.0006288381096475615;70,0.0007571644713421147;71,0.0008768133677465291;72,0.000999632876468494;73,0.0010124265752936988;74,0.0009934029013883945;75,0.0010054734781060875;76,0.0009773273406906372;77,0.0009877847988608046;78,0.0010023584905660377;79,0.0010029703631185475;80,0.0009923460306158777;81,0.0009851148095407617;82,0.0009927910288358849;83,0.0009942372730509079;84,0.0009898985404058385;85,0.0009888972944108224;86,0.0009855041829832682;87,0.0009922347810608757;88,0.0009727661089355643;89,0.0009819441972232113;90,0.0009624199003203988;91,0.0009705967426130297;92,0.0009659242613029548;93,0.0009547993058027768;94,0.000968427376290495;95,0.0009534643111427554;96,0.0009650898896404415;97,0.0009382787468850125;98,0.0009426174795300819;99,0.0009261525453898186;100,0.0009284331612673549;101,0.0009114676041295834;102,0.0009090201139195443;103,0.0009121351014595943;104,0.0009022895158419366;105,0.0008882720719117123;106,0.0008943907974368103;107,0.0008762014951940193;108,0.0008486672303310786;109,0.0008483891064435744;110,0.0008083948914204343;111,0.0007288514595941618;112,0.0006892466180135279;113,0.0006666629583481667;114,0.0006441349234603063;115,0.0006162669099323602;116,0.0005843382876468495;117,0.0005608646315414738;118,0.0005625889996440014;119,0.0005560809006763973;120,0.0005574715201139195;121,0.0005444553221787113;122,0.0004946711463154148;123,0.0002618258276966892;124,0.000026978017087931647;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000035982277945888203;13,0.00000035982277945888203;14,0;15,0;16,0;17,0;18,0;19,0;20,0.0000011472610359558564;21,0.0000002868152589889641;22,0;23,0;24,0;25,0;26,0;27,0;28,0.0000007614869836160852;29,0;30,0;31,0;32,0.00000011994092648629405;33,0.00000041370928266286936;34,0.0000005875367123531506;35,0;36,0;37,0;38,0.00000011994092648629405;39,0.0000004797637059451762;40,0.0000004797637059451762;41,0;42,0;43,0;44,0.0000007614869836160852;45,0.0000007614869836160852;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.0000005701539693841225;57,0.0000005701539693841225;58,0.0000022275701126227603;59,0;60,0;61,0.0000005736305179779282;62,0.0000017208915539337842;63,0.0000005214822890708437;64,0.00000034765485938056244;65,0.000001140307938768245;66,0;67,0.00000011994092648629405;68,0.0000008860711234171117;69,0.00000011994092648629405;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0.00000382326473255002;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0.00000028507698469206126;181,0.00000028507698469206126;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0.00000191163236627501;195,0.00000191163236627501;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.0000018886698153287637;223,0.0000009443349076643818;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000022249911000355996;24,0.00000022249911000355996;25,0;26,0;27,0.00000005562477750089;28,0.00000033374866500534;29,0.00000022249911000356;30,0.0000005562477750088999;31,0.0000003893734425062299;32,0.0000006118725525097899;33,0.00000077874688501246;34,0.00000022249911000355996;35,0.0000003893734425062299;36,0.00000016687433250266998;37,0.000000055624777500889984;38,0.00000016687433250267;39,0.0000006118725525097899;40,0.00000027812388750444997;41,0.0000007787468850124598;42,0.00000105687077251691;43,0.0000024474902100391597;44,0.00000122374510501958;45,0.00000155749377002492;46,0.0000014462442150231403;47,0.0000009456212175151301;48,0.00000172436810252759;49,0.0000020581167675329296;50,0.0000020581167675329296;51,0.0000026699893200427198;52,0.00000317061231755073;53,0.0000034487362050551804;54,0.00000511747953008188;55,0.000005006229975080101;56,0.00000533997864008544;57,0.0000056737273050907814;58,0.000006396849412602349;59,0.000006786222855108579;60,0.000006341224635101459;61,0.00000823246707013172;62,0.000008343716625133498;63,0.000010791206835172659;64,0.000011736828052687791;65,0.0001869548771804913;66,0.0003876490744037024;67,0.0005837820398718406;68,0.0007829187433250268;69,0.0010273896404414382;70,0.0012567305980776076;71,0.0014859603061587756;72,0.001774319152723389;73,0.0017928422036311855;74,0.001766921057315771;75,0.0017692572979708082;76,0.001753626735493058;77,0.0017244793520825917;78,0.001672136436454254;79,0.001622241011035956;80,0.0015583281416874334;81,0.0015414182093271625;82,0.0014925240299038804;83,0.0014449092203631187;84,0.0014230486828052688;85,0.0013961819152723389;86,0.0013113541295834818;87,0.0012659086863652546;88,0.0012330900676397298;89,0.0011900921146315415;90,0.0011442016731933074;91,0.0010785088109647562;92,0.0010191015485938057;93,0.000993236027055892;94,0.0009494037023851905;95,0.0009108001067995729;96,0.0008598478106087576;97,0.0008210217159131363;98,0.0007841424884300462;99,0.0007348033107867569;100,0.0006768979174083304;101,0.0006409643111427555;102,0.000607311320754717;103,0.0005503515485938057;104,0.0005104129583481666;105,0.0004655237629049484;106,0.0004359313812744749;107,0.00039732778568885724;108,0.00034999110003559983;109,0.0003087175151299395;110,0.0002519802420790317;111,0.00021226415094339625;112,0.0001857311320754717;113,0.00017427242791028837;114,0.0001685987006051976;115,0.00015864186543253827;116,0.00014590379138483447;117,0.00014668253826984694;118,0.00013906194375222497;119,0.00014067506229975083;120,0.00014595941616233536;121,0.000139562566749733;122,0.00013600258098967602;123,0.00013583570665717337;124,0.00012315325738697047;125,0.00011970452118191527;126,0.00010613207547169811;127,0.00005612540049839801;128,0.000010123709505161978;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0004840468138127448;2,0.0004987317550729797;3,0.0005039048593805625;4,0.00047698246707013174;5,0.0004750912246351015;6,0.0004807649519401923;7,0.0004916674083303666;8,0.00046608001067995725;9,0.0004655237629049484;10,0.00046552376290494844;11,0.00045556692773228907;12,0.0004610737807048772;13,0.0004695287468850125;14,0.00045762504449982204;15,0.00045267443930224277;16,0.0004365432538269847;17,0.0004384901210395159;18,0.000439435742257031;19,0.00043860137059451764;20,0.00043765574937700246;21,0.0004290895336418654;22,0.00042169143823424715;23,0.0004325938946244215;24,0.0004295901566393735;25,0.00041395959416162337;26,0.00041846520113919544;27,0.0004167408330366679;28,0.0004106777322890709;29,0.00041167897828408683;30,0.000422247686009256;31,0.00044722321110715564;32,0.0004774274652901389;33,0.00048677242791028843;34,0.0005249866500533999;35,0.0005600858846564615;36,0.0005796658063367746;37,0.0006039182093271628;38,0.0006415205589177643;39,0.0006584861160555359;40,0.0006752847988608047;41,0.0006949203453186188;42,0.0007272383410466359;43,0.0007424239053043789;44,0.0007656194375222499;45,0.0008092848878604486;46,0.0008382097721609114;47,0.0008330366678533287;48,0.0008791496084015664;49,0.0009027901388394446;50,0.0009297681559273763;51,0.0009685942506229974;52,0.0009773829654681383;53,0.0009999666251334996;54,0.0010525320398718403;55,0.0010611538803844787;56,0.0010748932004271982;57,0.001132242346030616;58,0.0011667853328586686;59,0.001177799038803845;60,0.0012083926664293344;61,0.0012585105909576361;62,0.0012730842826628693;63,0.0012736961552153793;64,0.0012765886436454255;65,0.001079676931292275;66,0.0009221475614097544;67,0.0007699581701673194;68,0.0005837820398718406;69,0.0004234714311142756;70,0.00027728951584193666;71,0.0001324425952296191;72,0.0000007231221075115699;73,0.00000116812032751869;74,0.00000116812032751869;75,0.0000011124955500177999;76,0.0000006118725525097899;77,0.00000027812388750444997;78,0.00000016687433250266998;79,0.00000161311854752581;80,0.0000009456212175151299;81,0.0000010012459950160199;82,0.00000061187255250979;83,0.00000061187255250979;84,0.0000006118725525097899;85,0.00000094562121751513;86,0.0000005006229975080099;87,0.0000004449982200071199;88,0.00000044499822000712;89,0.00000022249911000356;90,0.00000016687433250266998;91,0.00000005562477750089;92,0.00000038937344250623;93,0.00000033374866500534;94,0.00000016687433250266998;95,0.00000011124955500177997;96,0.00000005562477750089;97,0.00000022249911000356;98,0.00000027812388750444997;99,0;100,0.00000016687433250266996;101,0.0000003893734425062299;102,0.00000033374866500534;103,0.0000006118725525097899;104,0.00000016687433250266998;105,0.00000011124955500177998;106,0;107,0.00000011124955500177998;108,0.00000011124955500178;109,0.00000022249911000356004;110,0.00000022249911000356;111,0.00000005562477750088999;112,0.00000016687433250266996;113,0.00000050062299750801;114,0.0000003337486650053399;115,0;116,0.00000033374866500533997;117,0.00000022249911000356;118,0.00000016687433250267;119,0;120,0;121,0;122,0.00000038937344250623;123,0;124,0.00000011124955500178;125,0.00000005562477750088999;126,0.00000022249911000356001;127,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00016064435742257032;2,0.00018428488786044857;3,0.00022205411178355286;4,0.000260435208259167;5,0.00030093004627981487;6,0.0003530504627981488;7,0.000398495906016376;8,0.00044661133855464577;9,0.0004933361516553934;10,0.0005550240299038805;11,0.0005971319864720541;12,0.000675562922748309;13,0.0007855887326450694;14,0.0008542853328586686;15,0.0008704721431114276;16,0.0009264862940548239;17,0.0009747686009255964;18,0.0010083103417586332;19,0.00105687077251691;20,0.0011004805980776079;21,0.001129127358490566;22,0.0011653390886436454;23,0.0012157907618369527;24,0.0012372063011747952;25,0.001245939391242435;26,0.0012512237451050199;27,0.0013129116233535066;28,0.0014079743681025274;29,0.001513383321466714;30,0.0015371351014595942;31,0.0015248976504093985;32,0.001553321911712353;33,0.0016403190637237454;34,0.0017225324848700605;35,0.0017645291918832325;36,0.0017427799038803845;37,0.0017756541473834106;38,0.0018235470808116768;39,0.0018149808650765398;40,0.001737384300462798;41,0.0016883232467070134;42,0.0016776989142043431;43,0.0016626245995016021;44,0.0015886436454254182;45,0.0015193907974368102;46,0.0014734447312210754;47,0.0014211018155927378;48,0.0013735982556069776;49,0.0013291540583837665;50,0.0012832636169455322;51,0.0012268044677821287;52,0.0012043876824492702;53,0.0011828052687789248;54,0.0011274586151655396;55,0.0010779525631897473;56,0.0010264440192239233;57,0.0009629761480954076;58,0.0009130807226771093;59,0.0008553422036311855;60,0.0008284198113207547;61,0.0008027767888928444;62,0.0007537157351370594;63,0.0006754516731933073;64,0.000599245728017088;65,0.00048465868636525457;66,0.0003998865254538982;67,0.00031800685297258814;68,0.00023668342826628695;69,0.0001599768600925596;70,0.00009289337842648628;71,0.00004149608401566394;72,0.0000008343716625133501;73,0.0000003337486650053401;74,0.00000038937344250623;75,0.00000050062299750801;76,0.00000038937344250622997;77,0.00000022249911000355996;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00005935163759344963;2,0.00006285599857600569;3,0.000057849768600925595;4,0.000060352883588465653;5,0.00005801664293342827;6,0.00005990788536845853;7,0.00005873976504093984;8,0.000058962264150943403;9,0.00005885101459594162;10,0.00005718227127091491;11,0.00005835039159843361;12,0.00006469161623353509;13,0.00006814035243859026;14,0.000071811587753649;15,0.00007064346742613031;16,0.00007075471698113207;17,0.00007531594873620506;18,0.00006930847276610894;19,0.00006775097899608401;20,0.00007392532929868281;21,0.000066749733001068;22,0.00006736160555357779;23,0.00007247908508365968;24,0.00006552598789604842;25,0.00006891909932360271;26,0.00007081034175863296;27,0.00006558161267354931;28,0.00006953097187611251;29,0.00006741723033107868;30,0.00006647160911356354;31,0.00006485849056603774;32,0.00006419099323602706;33,0.00006719473122107511;34,0.00006252224991100036;35,0.00006491411534353863;36,0.00005996351014595942;37,0.00006129850480598077;38,0.0000645803666785333;39,0.00006463599145603417;40,0.00006547036311854754;41,0.00006552598789604842;42,0.00006196600213599147;43,0.0000634122463510146;44,0.00006202162691349235;45,0.0000661934852260591;46,0.00006430224279102884;47,0.00006580411178355285;48,0.00006363474546101816;49,0.00006430224279102885;50,0.00006213287646849413;51,0.0000656928622285511;52,0.0000644691171235315;53,0.00006113163047347811;54,0.00006335662157351371;55,0.0000644691171235315;56,0.00006113163047347811;57,0.00006113163047347811;58,0.00006090913136347455;59,0.0000673059807760769;60,0.00006641598433606266;61,0.00006218850124599501;62,0.000059518511925952294;63,0.00005885101459594162;64,0.00006213287646849413;65,0.000025253648985404056;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.0000005006229975080099;19,0.0000012237451050195799;20,0.0000010568707725169098;21,0;22,0;23,0.00000005562477750089;24,0.00000005562477750089;25,0.00000038937344250623;26,0.00000005562477750089;27,0;28,0.00000005562477750089002;29,0.00000105687077251691;30,0.0000018356176575293698;31,0.0000030037379850480596;32,0.000002614364542541829;33,0.0000015574937700249199;34,0.0000013349946600213599;35,0.0000017243681025275902;36,0.00000072312210751157;37,0.0000007787468850124602;38,0.00000133499466002136;39,0.000004004983980064079;40,0.0000035043609825560703;41,0.000004116233535065859;42,0.00000311498754004984;43,0.00000289248843004628;44,0.00000533997864008544;45,0.00000572935208259167;46,0.00000456123175507298;47,0.0000031706123175507297;48,0.00000472810608757565;49,0.00000689747241011036;50,0.000009122463510145958;51,0.000009678711285154861;52,0.00000784309362762549;53,0.0000066749733001068;54,0.000011124955500178;55,0.000014073068707725172;56,0.000012849323602705588;57,0.000011347454610181561;58,0.000011347454610181563;59,0.00000995683517265931;60,0.00000823246707013172;61,0.00001329432182271271;62,0.00001579743681025276;63,0.000014684941260234962;64,0.000013906194375222502;65,0.00029447757208971167;66,0.000593683250266999;67,0.0008935564257742969;68,0.0011850858846564616;69,0.0015063189747241011;70,0.001817372730509078;71,0.0021317083481666075;72,0.0024163959594161624;73,0.002433917764328943;74,0.0023860248309006764;75,0.0024410933606265573;76,0.0024942706479174088;77,0.0025629672481310073;78,0.002582380295478818;79,0.0025878315236739055;80,0.0026129739231043076;81,0.0026827273940904237;82,0.0027716157885368463;83,0.0028111650053399785;84,0.0028188412246351016;85,0.0028126668743325024;86,0.0028414805090779638;87,0.0028473767354930584;88,0.002891542808828765;89,0.002920412068351727;90,0.00291624021003916;91,0.0029416607333570665;92,0.002939936365254539;93,0.0029542319330722678;94,0.0029494482022071914;95,0.003024319152723389;96,0.00308183517265931;97,0.003122107511569954;98,0.003099857600569598;99,0.0030778858134567462;100,0.003068485226059096;101,0.003043454076183695;102,0.0030462909398362406;103,0.0029693618725525105;104,0.002948280081879673;105,0.0029849924350302598;106,0.003041562833748665;107,0.003017866678533286;108,0.003053188412246351;109,0.003070487718049128;110,0.0029285332858668568;111,0.0026463487896048413;112,0.002598678355286579;113,0.0025014462442150233;114,0.002412168476326095;115,0.0023025320398718406;116,0.002249632876468494;117,0.0022316660733357066;118,0.002235281683873265;119,0.00217437255250979;120,0.002176486294054824;121,0.002197234336062656;122,0.0021933406016375933;123,0.0021349345852616592;124,0.0021052865788536847;125,0.0021050084549661804;126,0.0020274118903524387;127,0.0019256741723033108;128,0.0018293320576717692;129,0.0017729285332858669;130,0.001693830099679601;131,0.0015675062299750802;132,0.0014719984870060522;133,0.0014141487184051262;134,0.0013707613919544323;135,0.0013071266464934142;136,0.0012443262726949092;137,0.0011775209149163404;138,0.001106543698825205;139,0.0010519757920968316;140,0.0010259433962264153;141,0.001032618369526522;142,0.0009956278924884302;143,0.0009625867746529015;144,0.0009402812388750445;145,0.0009081301174795301;146,0.0008295323068707726;147,0.0007626156995372018;148,0.0007361383054467782;149,0.0007212864898540406;150,0.00069937032751869;151,0.000653869259522962;152,0.0005742145781416875;153,0.0005169766820932717;154,0.00048588243147027415;155,0.0004602394090423638;156,0.0004321488964044144;157,0.00041813145247419014;158,0.0003895403168387327;159,0.00038570220719117126;160,0.0003917096831612674;161,0.0003756341224635101;162,0.0003469873620505518;163,0.0003177287290850837;164,0.0002692795478818085;165,0.0002539271092915628;166,0.0002385190459238163;167,0.00021727038091847633;168,0.00020542230331078678;169,0.00020987228551085796;170,0.00019952607689569245;171,0.00018667675329298684;172,0.00018534175863296547;173,0.0001763861694553222;174,0.00014990877536489856;175,0.00013644757920968314;176,0.0001207613919544322;177,0.00012126201495194019;178,0.00010974768600925596;179,0.00010212709149163405;180,0.00009222588109647563;181,0.00009639773940904237;182,0.00008738652545389819;183,0.00007865343538625847;184,0.00007414782840868637;185,0.0000633566215735137;186,0.00005796101815592739;187,0.0000589622641509434;188,0.00006213287646849412;189,0.00005790539337842648;190,0.0000522316660733357;191,0.00004906105375578498;192,0.00004205233179067284;193,0.00003899296902812389;194,0.00002770113919544322;195,0.00001974679601281595;196,0.000016631808472766107;197,0.00001496306514773941;198,0.000016298059807760766;199,0.00001985804556781773;200,0.00002074804200783197;201,0.00001640930936276255;202,0.000012348700605197581;203,0.000014351192595229619;204,0.000015964311142755432;205,0.000016687433250267;206,0.00001507431470274119;207,0.00001207057671769313;208,0.00000784309362762549;209,0.000008288091847632611;210,0.00000895558917764329;211,0.0000088999644001424;212,0.00000467248131007476;213,0.000004227483090067639;214,0.0000048949804200783195;215,0.0000032818618725525103;216,0.00000139061943752225;217,0.0000022249911000356;218,0.000003448736205055179;219,0.00000228061587753649;220,0.00000027812388750445;221,0.00000038937344250623;222,0.00000172436810252759;223,0.0000018912424350302603;224,0.0000008899964400142398;225,0.00000022249911000355996;226,0.0000011681203275186902;227,0.0000011124955500178;228,0.00000022249911000355996;229,0;230,0.00000016687433250267;231,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00006986472054111784;62,0.00015769624421502315;63,0.00024118903524385907;64,0.0003048794054823781;65,0.0002599902100391599;66,0.00022528034887860448;67,0.0001920167319330723;68,0.00015764061943752226;69,0.00011775765396938412;70,0.00008260279458882164;71,0.00004149608401566394;72,0.0000011124955500178;73,0.0000011681203275186902;74,0.0000014462442150231399;75,0.0000014462442150231399;76,0.0000014462442150231399;77,0.0000010012459950160199;78,0.0000007787468850124599;79,0.0000007231221075115699;80,0.0000006674973300106798;81,0.00000116812032751869;82,0.00000083437166251335;83,0.0000003337486650053399;84,0.0000005562477750089;85,0.0000007231221075115699;86,0.0000005562477750088999;87,0.0000006674973300106799;88,0.00000033374866500533997;89,0.0000004449982200071199;90,0.00000033374866500534;91,0.0000006674973300106799;92,0.0000011681203275186898;93,0.0000017243681025275898;94,0.0000013349946600213599;95,0.0000011681203275186902;96,0.0000010012459950160199;97,0.0000005562477750089;98,0.00000038937344250623;99,0.00000033374866500534;100,0.00000022249911000356;101,0.0000008899964400142401;102,0.0000013349946600213599;103,0.0000014462442150231399;104,0.00000116812032751869;105,0.0000007787468850124599;106,0.00000044499822000712003;107,0.0000005562477750089;108,0.00000016687433250266998;109,0.00000016687433250266998;110,0.00000027812388750444997;111,0.00000033374866500533997;112,0.00000033374866500533997;113,0.00000011124955500178001;114,0.00000027812388750444997;115,0.0000007231221075115699;116,0.0000003893734425062299;117,0.0000003893734425062299;118,0.0000003893734425062299;119,0.00000022249911000355996;120,0.00000066749733001068;121,0.0000011124955500177999;122,0.0000009456212175151299;123,0.00000061187255250979;124,0.00000061187255250979;125,0.0000005562477750088999;126,0.0000004449982200071199;127,0.00000027812388750444997;128,0.0000005562477750088999;129,0.00000011124955500177998;130,0;131,0;132,0.00000005562477750088999;133,0.00000005562477750088999;134,0.00000016687433250266998;135,0.00000033374866500534;136,0.00000011124955500178;137,0.00000011124955500178;138,0;139,0.00000005562477750088999;140,0;141,0;142,0.000000055624777500890004;143,0.00000027812388750444997;144,0;145,0.00000005562477750088998;146,0.00000005562477750088998;147,0.00000005562477750089;148,0.00000011124955500178;149,0;150,0.00000005562477750088998;151,0.0000002224991100035599;152,0.0000002781238875044499;153,0.0000002224991100035599;154,0.00000016687433250266998;155,0.00000027812388750445;156,0.00000016687433250266998;157,0.00000027812388750444997;158,0.00000022249911000356;159,0.00000005562477750088998;160,0;161,0.00000005562477750088999;162,0;163,0.00000016687433250266998;164,0.00000022249911000355996;165,0.00000050062299750801;166,0.00000022249911000355996;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0.00000016687433250266998;183,0.00000016687433250266998;184,0.00000005562477750089;185,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000016687433250267;46,0.000009122463510145958;47,0.000025142399430402285;48,0.00004538981844072624;49,0.00006652723389106444;50,0.00008577340690637237;51,0.00009840023139907441;52,0.00010251646493414027;53,0.00013605820576717694;54,0.00015447000711997153;55,0.00016548371306514774;56,0.00019691171235315061;57,0.00021176352794588824;58,0.0002152122641509434;59,0.0002376290494838021;60,0.000259934585261659;61,0.0002878025987896049;62,0.00030404503381986474;63,0.0003231799572801709;64,0.0003348611605553578;65,0.00030821689213243145;66,0.0002675551797792809;67,0.0002339578141687433;68,0.00019429734781060878;69,0.0001512437700249199;70,0.00010552020291918832;71,0.00005773851904592382;72,0.00000066749733001068;73,0.00000116812032751869;74,0.00000183561765752937;75,0.0000013349946600213599;76,0.00000161311854752581;77,0.0000014462442150231399;78,0.0000013906194375222496;79,0.0000012237451050195799;80,0.0000015018689925240302;81,0.00000161311854752581;82,0.0000017243681025275902;83,0.00000139061943752225;84,0.0000005006229975080099;85,0.00000116812032751869;86,0.0000013906194375222498;87,0.0000012793698825204698;88,0.0000021693663225347102;89,0.00000261436454254183;90,0.00000155749377002492;91,0.00000144624421502314;92,0.00000094562121751513;93,0.00000161311854752581;94,0.0000018912424350302603;95,0.00000139061943752225;96,0.00000205811676753293;97,0.0000025031149875400496;98,0.00000139061943752225;99,0.00000066749733001068;100,0.00000083437166251335;101,0.0000022806158775364896;102,0.00000161311854752581;103,0.0000029481132075471697;104,0.00000350436098255607;105,0.00000233624065503738;106,0.00000127936988252047;107,0.0000011124955500178;108,0.0000010012459950160199;109,0.0000013349946600213599;110,0.00000177999288002848;111,0.0000013349946600213599;112,0.00000105687077251691;113,0.0000010568707725169098;114,0.0000007231221075115699;115,0.0000016687433250267;116,0.0000010012459950160203;117,0.0000008899964400142398;118,0.0000012793698825204698;119,0.0000012237451050195799;120,0.00000094562121751513;121,0.00000033374866500533997;122,0.0000007787468850124598;123,0.0000006674973300106799;124,0.00000044499822000712;125,0.0000004449982200071199;126,0.0000008899964400142398;127,0.00000100124599501602;128,0.0000006674973300106799;129,0.0000003893734425062299;130,0.00000022249911000355996;131,0.00000033374866500533997;132,0.00000033374866500534;133,0.00000033374866500533997;134,0.00000016687433250266998;135,0.00000050062299750801;136,0.0000003893734425062299;137,0.00000005562477750088999;138,0.00000005562477750088999;139,0.0000003893734425062299;140,0.00000027812388750444997;141,0.00000022249911000356;142,0.00000022249911000355994;143,0.0000003893734425062299;144,0.00000011124955500177998;145,0;146,0.00000027812388750445007;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0.00000016687433250267;4,0.00000027812388750445;5,0.00000005562477750089001;6,0;7,0.00000033374866500534;8,0.00000022249911000356001;9,0.00000011124955500178002;10,0.00000044499822000712;11,0.00000027812388750444997;12,0.00000016687433250266998;13,0.00000033374866500534;14,0.0000007231221075115698;15,0.00000033374866500533997;16,0.0000004449982200071199;17,0.00000038937344250622997;18,0.0000006118725525097898;19,0.00000083437166251335;20,0.0000011124955500177999;21,0.00000100124599501602;22,0.0000008899964400142403;23,0.00000061187255250979;24,0.0000004449982200071199;25,0.0000009456212175151296;26,0.0000012793698825204698;27,0.00000116812032751869;28,0.0000015018689925240298;29,0.0000017799928800284795;30,0.00000194686721253115;31,0.0000018356176575293694;32,0.0000010012459950160199;33,0.00000038937344250622997;34,0.0000006118725525097899;35,0.0000007231221075115699;36,0.0000007787468850124599;37,0.0000010568707725169095;38,0.00000194686721253115;39,0.0000012237451050195797;40,0.0000012237451050195799;41,0.0000005562477750089;42,0.0000007787468850124599;43,0.0000006674973300106801;44,0.0000010568707725169102;45,0.0000005562477750088999;46,0.0000008899964400142402;47,0.00000105687077251691;48,0.0000010568707725169102;49,0.0000011124955500177999;50,0.0000011124955500178;51,0.0000008343716625133503;52,0.00000050062299750801;53,0.0000016131185475258104;54,0.00000127936988252047;55,0.00000094562121751513;56,0.00000116812032751869;57,0.00000122374510501958;58,0.00000205811676753293;59,0.00000228061587753649;60,0.0000027812388750445;61,0.00000250311498754005;62,0.0000016131185475258104;63,0.0000017243681025275902;64,0.0000012793698825204702;65,0.00007275720897116411;66,0.0001667630829476682;67,0.0003166718583125668;68,0.00047514684941260234;69,0.0006771760412958348;70,0.000875867746529014;71,0.001098199982200071;72,0.0013639751690993236;73,0.0015337976148095407;74,0.0016458815414738342;75,0.0017699804200783198;76,0.0018695487718049131;77,0.002008666340334639;78,0.0021974012103951586;79,0.0023251713243147027;80,0.0024006541473834105;81,0.0025306492524029903;82,0.002663926219295123;83,0.0027850213599145603;84,0.0028968827874688505;85,0.0030429534531861875;86,0.0031454142933428266;87,0.0032657306870772515;88,0.0033619059273762904;89,0.003493402901388395;90,0.0036430891776432894;91,0.003666674083303667;92,0.0037186832502669994;93,0.0038999644001424;94,0.004006986472054112;95,0.004015775186899252;96,0.004175028924884301;97,0.004354307582769669;98,0.004458604040583838;99,0.004521738163047348;100,0.004585873531505875;101,0.004630206479174084;102,0.004664860715557138;103,0.0047411779102883595;104,0.0048627180491278045;105,0.004978806959772161;106,0.005042886703453186;107,0.00508499466002136;108,0.005152634389462443;109,0.005181948647205411;110,0.005011681203275187;111,0.004584761035955856;112,0.004436687878248488;113,0.004356143200427199;114,0.0042441148985404055;115,0.004156728373086508;116,0.004040250088999644;117,0.003965212264150943;118,0.003944519846920612;119,0.003935953631185476;120,0.0039718872374510505;121,0.003993414026343895;122,0.004008043342826628;123,0.004004872730509078;124,0.004008321466714134;125,0.0039843471876112495;126,0.003851403969384123;127,0.0037470518867924528;128,0.003681192150231399;129,0.0035846275364898542;130,0.0035220496618013526;131,0.003418253826984692;132,0.0033154036133855457;133,0.003222565859736561;134,0.003199314702741189;135,0.003168164827340691;136,0.003041284709861161;137,0.002888817194731221;138,0.002803544410822357;139,0.002758321466714133;140,0.002745305268778925;141,0.0027376846742613033;142,0.0027258922214311145;143,0.0026464044143823424;144,0.002564747241011036;145,0.002551119170523318;146,0.0025214155393378426;147,0.0024547214311142753;148,0.0023914204343182628;149,0.0022731621573513707;150,0.00215813011747953;151,0.002131485849056604;152,0.0019805758276966894;153,0.0018505807226771092;154,0.0017864453542185829;155,0.0017129650231399074;156,0.001634867835528658;157,0.0015906461374154506;158,0.001542252580989676;159,0.0015010902456390174;160,0.0014100881096475615;161,0.0013268178177287292;162,0.001269746796012816;163,0.001222632609469562;164,0.0011542697579209685;165,0.0010567595229619082;166,0.0009667030081879674;167,0.0009131919722321113;168,0.0008560653257386973;169,0.0007790250088999643;170,0.000713554645781417;171,0.0006614342292630829;172,0.0006188256496974012;173,0.0005740477038091848;174,0.0005383365966536134;175,0.0005273228907084372;176,0.0004755362228551087;177,0.0004284220363118547;178,0.0004032240121039516;179,0.0003931559273762905;180,0.00037224101103595583;181,0.0003558873264506942;182,0.0003230687077251691;183,0.00029887192951228196;184,0.00027283953364186543;185,0.00024919900320398723;186,0.00023423593805624776;187,0.00022316660733357065;188,0.00020286356354574583;189,0.00019285110359558563;190,0.0001796680313278747;191,0.00016031060875756496;192,0.00015013127447490208;193,0.00014089756140975437;194,0.0001285488608045568;195,0.00011770202919188324;196,0.00011230642577429691;197,0.00011697890708437168;198,0.0001584193663225347;199,0.00018311676753292989;200,0.00017549617301530795;201,0.0001551375044499822;202,0.00014273317906728374;203,0.0001401744393022428;204,0.00012966135635457458;205,0.0001101370594517622;206,0.00010246084015663937;207,0.00010246084015663937;208,0.00009150275898896405;209,0.00007882030971876112;210,0.00007481532573869705;211,0.0000700872196511214;212,0.000060408508365966546;213,0.00005145291918832324;214,0.0000455566927732289;215,0.00003815859736561053;216,0.00003543298326806693;217,0.00003304111783552866;218,0.00002909175863296547;219,0.0000283686365254539;220,0.000022639284442862233;221,0.00001640930936276255;222,0.00001029058383766465;223,0.00001067995728017088;224,0.000010179334282662869;225,0.00000728684585261659;226,0.000007398095407618371;227,0.00000639684941260235;228,0.00000578497686009256;229,0.000005117479530081881;230,0.0000048949804200783195;231,0.00000561810252758989;232,0.00000472810608757565;233,0.0000030037379850480604;234,0.00000200249199003204;235,0.0000027812388750444995;236,0.0000017243681025275898;237,0.0000011124955500177999;238,0.00000077874688501246;239,0.0000012237451050195803;240,0.00000200249199003204;241,0.00000211374154503382;242,0.00000250311498754005;243,0.00000228061587753649;244,0.00000250311498754005;245,0.0000025587397650409404;246,0.0000021137415450338195;247,0.00000139061943752225;248,0.00000022249911000355996;249,0.0000007231221075115698;250,0.0000009456212175151301;251,0.0000012237451050195803;252,0.0000018912424350302601;253,0.0000023918654325382703;254,0.0000020581167675329305;255,0.0000011681203275186902;256,0.0000008899964400142398;257,0.00000077874688501246;258,0.00000050062299750801;259,0.00000027812388750445;260,0.0000004449982200071199;261,0.00000033374866500534;262,0.0000008343716625133501;263,0.00000200249199003204;264,0.0000016131185475258102;265,0.00000038937344250623;266,0;267,0;268,0;269,0.00000027812388750445;270,0.0000006674973300106801;271,0.00000044499822000712003;272,0.00000044499822000712003;273,0.0000005006229975080099;274,0.0000005562477750089;275,0.00000016687433250267;276,0.0000005562477750089;277,0.00000116812032751869;278,0.0000008343716625133501;279,0.00000033374866500534;280,0.00000005562477750088999;281,0.00000022249911000356001;282,0.0000006674973300106801;283,0.0000007787468850124599;284,0.00000022249911000356001;285,0.00000038937344250623;286,0.0000008343716625133502;287,0.0000007231221075115702;288,0.0000008343716625133501;289,0.00000038937344250622997;290,0.00000016687433250267;291,0.00000027812388750445;292,0.00000022249911000355996;293,0.00000011124955500177998;294,0.00000022249911000355996;295,0.00000011124955500177998;296,0.00000016687433250267;297,0.00000027812388750444997;298,0.00000022249911000355996;299,0.00000022249911000355996;300,0.00000005562477750088999;301,0.00000011124955500177998;302,0.00000016687433250267;303,0.00000022249911000355996;304,0.0000004449982200071199;305,0.00000033374866500534;306,0.00000050062299750801;307,0.0000008343716625133501;308,0.0000011124955500177999;309,0.0000004449982200071199;310,0.00000027812388750444997;311,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002869126023495906;2,0.00027261703453186186;3,0.00027150453898184407;4,0.00025654147383410476;5,0.00027439702741189037;6,0.00026677643289426843;7,0.0002727839088643646;8,0.0002792920078319687;9,0.0002662201851192595;10,0.00025854396582413667;11,0.00027334015663937346;12,0.0002855776076895692;13,0.0003132787468850125;14,0.0003194530971876113;15,0.0003185074759700961;16,0.00031194375222499114;17,0.0003072712709149164;18,0.00031338999644001423;19,0.0003077718939124243;20,0.00030593627625489497;21,0.0003107756318974724;22,0.0003056025275898896;23,0.00030532440370238526;24,0.0002955344428622286;25,0.00029403257386970453;26,0.0002933650765396939;27,0.00029492257030971875;28,0.0002934207013171947;29,0.0002878582235671058;30,0.0002910844606621574;31,0.0002924194553221787;32,0.0002857444820220719;33,0.0002910844606621574;34,0.00029464444642221435;35,0.00029453319686721256;36,0.00030259878960484164;37,0.00029592381630473476;38,0.000322123086507654;39,0.0003582235671057316;40,0.0003986627803488786;41,0.00044015886436454257;42,0.0004953386436454255;43,0.0005383365966536134;44,0.0005944063723745105;45,0.0006480842826628694;46,0.0006843516375934498;47,0.0007308539515841937;48,0.0007791362584549661;49,0.0008339822890708437;50,0.000870805891776433;51,0.0009105776076895692;52,0.0009545211819152724;53,0.0010044166073335708;54,0.0010405170879316484;55,0.0010766731933072268;56,0.0011123843004627984;57,0.001162001601993592;58,0.0012242457280170881;59,0.0012731399074403704;60,0.0013215334638661447;61,0.0013566883232467072;62,0.0013773807404770383;63,0.0014245505517977927;64,0.001437622374510502;65,0.001296446689213243;66,0.0011478729085083658;67,0.0009609736561053757;68,0.0007918743325026701;69,0.0006107044321822714;70,0.00041145647917408337;71,0.00021270914916340336;72,0.000004227483090067639;73,0.00000417185831256675;74,0.00000511747953008188;75,0.000005006229975080099;76,0.0000033374866500534;77,0.00000467248131007476;78,0.00000411623353506586;79,0.0000038937344250623;80,0.0000039493592025631895;81,0.00000606310074759701;82,0.0000043387326450694205;83,0.0000033931114275542897;84,0.0000026143645425418303;85,0.0000022249911000355997;86,0.0000035043609825560695;87,0.00000311498754004984;88,0.0000027812388750444995;89,0.0000025587397650409404;90,0.00000228061587753649;91,0.0000025031149875400496;92,0.00000239186543253827;93,0.00000250311498754005;94,0.0000025031149875400496;95,0.0000016687433250266997;96,0.0000012793698825204698;97,0.00000133499466002136;98,0.00000139061943752225;99,0.0000013349946600213599;100,0.00000133499466002136;101,0.00000105687077251691;102,0.0000012793698825204696;103,0.0000012237451050195799;104,0.0000008899964400142398;105,0.00000094562121751513;106,0.00000094562121751513;107,0.00000083437166251335;108,0.00000088999644001424;109,0.00000044499822000712;110,0.00000027812388750444997;111,0.00000005562477750088999;112,0.0000006118725525097899;113,0.00000033374866500534;114,0.00000022249911000356;115,0.00000011124955500177998;116,0.00000027812388750444997;117,0.0000005006229975080099;118,0.00000022249911000356;119,0.00000011124955500177998;120,0.00000022249911000356001;121,0.0000003893734425062299;122,0.00000033374866500533997;123,0.00000038937344250622997;124,0;125,0.00000033374866500534;126,0.00000022249911000355996;127,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0002748420256318975;30,0.0014678822534709862;31,0.002608412691349235;32,0.0028529948380206483;33,0.0028622841758632967;34,0.0028679579031683873;35,0.0028571666963332146;36,0.0028333592915628343;37,0.0028284086863652547;38,0.0028234024563901744;39,0.0028414805090779638;40,0.0028307449270202926;41,0.002825905571377715;42,0.002810553132787469;43,0.0028331367924528303;44,0.002812555624777501;45,0.0028013750444998223;46,0.0027957013171947317;47,0.002786022605909577;48,0.0028117212531149874;49,0.0028088843894624425;50,0.002813389996440014;51,0.0027895269668921324;52,0.002767944553221787;53,0.002781072000711997;54,0.00273874154503382;55,0.002737573424706301;56,0.002750200249199003;57,0.0027621039515841935;58,0.002737295300818797;59,0.0027552621039515844;60,0.00276749955500178;61,0.0027285622107511573;62,0.002668487451050196;63,0.002673048682805269;64,0.0026160332858668565;65,0.002312433250266999;66,0.001972120861516554;67,0.0016164004093983625;68,0.001302676664293343;69,0.0009756029725881098;70,0.0006466936632253471;71,0.00032551619793520824;72,0.00000873309006763973;73,0.000006396849412602349;74,0.00000706434674261303;75,0.000006508098967604129;76,0.00000656372374510502;77,0.0000070643467426130306;78,0.000006341224635101459;79,0.0000071755962976148095;80,0.00000511747953008188;81,0.00000689747241011036;82,0.0000071755962976148095;83,0.0000066749733001068;84,0.00000539560341758633;85,0.00000595185119259523;86,0.00000617435030259879;87,0.00000567372730509078;88,0.000006786222855108579;89,0.00000617435030259879;90,0.0000066749733001068;91,0.00000572935208259167;92,0.00000595185119259523;93,0.00000695309718761125;94,0.000006229975080099679;95,0.000006396849412602349;96,0.000006229975080099679;97,0.0000057849768600925595;98,0.00000528435386258455;99,0.0000061187255250979;100,0.000005395603417586329;101,0.0000039493592025631895;102,0.000005006229975080099;103,0.0000034487362050551796;104,0.00000478373086507654;105,0.0000062855998576005695;106,0.00000522872908508366;107,0.0000028368636525453894;108,0.00000433873264506942;109,0.00000433873264506942;110,0.0000031706123175507297;111,0.0000043943574225703095;112,0.00000383810964756141;113,0.0000030593627625489495;114,0.00000239186543253827;115,0.0000022249911000355997;116,0.00000378248487006052;117,0.00000383810964756141;118,0.00000322623709505162;119,0.0000029481132075471697;120,0.0000035599857600569602;121,0.000004227483090067641;122,0.000004171858312566749;123,0.0000029481132075471697;124,0.0000030037379850480596;125,0.00000322623709505162;126,0.0000021137415450338195;127,0.0000012237451050195799;128,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000022249911000356004;46,0.000004227483090067641;47,0.00001451806692773229;48,0.00002008054467782129;49,0.000028535510857956568;50,0.000039771715913136346;51,0.00004867168031327874;52,0.00005579165183339266;53,0.00006057538269846921;54,0.00007075471698113209;55,0.00008143467426130295;56,0.00009311587753648985;57,0.00009233713065147741;58,0.00010635457458170167;59,0.00010663269846920613;60,0.00012115076539693842;61,0.00013311009255962975;62,0.00013683695265218938;63,0.00014768378426486292;64,0.0001450694197223211;65,0.0001379494482022072;66,0.00012204076183695266;67,0.00010846831612673551;68,0.00009328275186899253;69,0.00007247908508365968;70,0.000048115432538269845;71,0.000027478640085439655;72,0.00000033374866500534;73,0.00000061187255250979;74,0.0000005006229975080099;75,0.0000006118725525097899;76,0.00000027812388750445;77,0.0000006118725525097899;78,0.00000061187255250979;79,0.00000066749733001068;80,0.0000005562477750089;81,0.0000008899964400142398;82,0.0000006118725525097899;83,0.0000007231221075115699;84,0.0000005006229975080099;85,0.00000038937344250623;86,0.00000050062299750801;87,0.00000027812388750445;88,0.00000033374866500534;89,0.00000038937344250622997;90,0.0000005562477750088999;91,0.00000033374866500533997;92,0.00000016687433250266996;93,0;94,0.0000005006229975080099;95,0.0000006674973300106799;96,0.00000016687433250267004;97,0.00000016687433250267;98,0;99,0.00000011124955500178;100,0;101,0;102,0;103,0.00000027812388750445;104,0;105,0;106,0;107,0.00000016687433250267;108,0;109,0;110,0.000000055624777500889984;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000011124955500177998;50,0;51,0.00000005562477750089;52,0.00000038937344250623;53,0.00000033374866500534;54,0.00000033374866500534;55,0.00000016687433250267;56,0.00000016687433250266996;57,0.00000011124955500178;58,0.0000005006229975080098;59,0.00000038937344250622997;60,0.00000005562477750089;61,0.00000027812388750445007;62,0.0000008343716625133501;63,0.00000077874688501246;64,0.0000006118725525097899;65,0.000017188056247775008;66,0.000043387326450694205;67,0.00006591536133855464;68,0.00008588465646137416;69,0.00011764640441438234;70,0.00014757253470986116;71,0.00017888928444286225;72,0.00021259789960840155;73,0.00022522472410110362;74,0.00022961908152367396;75,0.00022511347454610183;76,0.00023662780348878608;77,0.0002497552509789961;78,0.0002575983446066216;79,0.0002549283552865789;80,0.0002419121573513706;81,0.00022600347098611606;82,0.00022817283730865076;83,0.00021715913136347457;84,0.00020981666073335706;85,0.0002074804200783197;86,0.0002023629405482378;87,0.0001862317550729797;88,0.0001748286756852973;89,0.0001758855464578142;90,0.0001634812210751157;91,0.00015491500533997864;92,0.00015163314346742612;93,0.00014501379494482022;94,0.00012765886436454256;95,0.0001256007475970096;96,0.00012142888928444285;97,0.00010596520113919546;98,0.00010051397294410822;99,0.0000911690103239587;100,0.00008332591669633321;101,0.00007487095051619794;102,0.00006391286934852261;103,0.00005523540405838378;104,0.000047670434318262726;105,0.000045389818440726245;106,0.00003921546813812745;107,0.0000311498754004984;108,0.000026088020647917412;109,0.000016687433250267;110,0.000009400587397650409;111,0.0000039493592025631895;112,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0.00000016687433250267;68,0.00000011124955500177997;69,0.00000038937344250623;70,0.00000033374866500533997;71,0.00024625088999644;72,0.001119003648985404;73,0.0020247419010323963;74,0.002231499199003204;75,0.00220062744749021;76,0.00219439747241011;77,0.0022297748309006763;78,0.002219428622285511;79,0.00220997241011036;80,0.002225547347810609;81,0.0022029636881452474;82,0.0022569753470986116;83,0.0022625378248487004;84,0.0022183717515129944;85,0.0021683650765396936;86,0.0021586863652545392;87,0.002144168298326807;88,0.002072301085795657;89,0.001952318440726237;90,0.0017830522427910293;91,0.0016352572089711644;92,0.0015010902456390174;93,0.0013773251156995372;94,0.0012891042185831257;95,0.0011668965824136704;96,0.0011045412068351728;97,0.0010881875222499109;98,0.0010998131007475972;99,0.0011385279458882166;100,0.001158997864008544;101,0.0012003826984692061;102,0.0012190169989320045;103,0.0012260813456746174;104,0.0012271938412246352;105,0.0011932071021715914;106,0.0011879783730865076;107,0.001187700249199003;108,0.0011786334104663583;109,0.0011783552865788538;110,0.0011561610003559986;111,0.0011875889996440015;112,0.0011650609647561412;113,0.0011285154859380561;114,0.0011489854040583837;115,0.0011568841224635102;116,0.0011090468138127449;117,0.0010889106443574227;118,0.001097754983980064;119,0.0011147205411178355;120,0.0011078786934852263;121,0.0011019268422926309;122,0.0011143867924528301;123,0.0011093249377002491;124,0.0011002024741901034;125,0.0010717225881096476;126,0.0010720007119971522;127,0.001094806870772517;128,0.0010751713243147027;129,0.0010295033819864722;130,0.0009920122819508722;131,0.000983056692773229;132,0.0009985760056959773;133,0.0010340089889640442;134,0.0010252202741189037;135,0.0010227171591313635;136,0.0010102015841936631;137,0.0010174884300462798;138,0.0010203809184763262;139,0.0010060297258810964;140,0.0009981310074759701;141,0.0009863941794232823;142,0.0009818885724457102;143,0.0009769379672481312;144,0.0009786067105731577;145,0.0010069753470986116;146,0.0009967960128159487;147,0.0009775498398006408;148,0.0009838354396582414;149,0.0009704854930580279;150,0.0009892866678533287;151,0.0010094784620861517;152,0.0010112584549661803;153,0.0009868948024207903;154,0.0009706523673905303;155,0.0009809985760056961;156,0.0009580811676753293;157,0.000998854129583482;158,0.001021437789248843;159,0.000993180402278391;160,0.000980942951228195;161,0.0009539093093627626;162,0.0009407262370950517;163,0.0009502936988252048;164,0.0009353862584549663;165,0.00093249377002492;166,0.0009679823780704878;167,0.000981944197223211;168,0.0009850035599857602;169,0.0009516286934852262;170,0.0009276544143823424;171,0.0009369437522249913;172,0.0009272094161623353;173,0.0009495149519401923;174,0.0009684830010679958;175,0.0009720429868280529;176,0.0009888972944108224;177,0.0009766042185831258;178,0.0009596386614453543;179,0.000957691794232823;180,0.000956746173015308;181,0.0009609736561053755;182,0.0009479574581701673;183,0.0009577474190103239;184,0.000972877358490566;185,0.0009371106265574937;186,0.0008963376646493415;187,0.0008848789604841581;188,0.0008627959238163049;189,0.0008781483624065503;190,0.0008614053043787825;191,0.0008733090067639729;192,0.0008751446244215024;193,0.0008812633499466003;194,0.0008775921146315414;195,0.0008525053399786402;196,0.0008499466002135992;197,0.0008429935030259879;198,0.0008740877536489855;199,0.0008933339266642933;200,0.0008900520647917409;201,0.0008858245817016733;202,0.0008557872018511927;203,0.0008508922214311143;204,0.0008703052687789249;205,0.0008562878248487007;206,0.0008554534531861873;207,0.000852115966536134;208,0.0008723633855464578;209,0.000876312744749021;210,0.0008665227839088645;211,0.0008553422036311855;212,0.0008440503737985048;213,0.0008350947846208615;214,0.0008449403702385191;215,0.0008175173549305803;216,0.0008042786578853684;217,0.000799939925240299;218,0.0007864787290850837;219,0.0007573869704521183;220,0.0007449826450694197;221,0.0007364164293342827;222,0.0007198958704165184;223,0.0007062121751512994;224,0.0007298527055891777;225,0.0007468182627269491;226,0.0007482645069419723;227,0.0007368058027767889;228,0.0007668988074047704;229,0.0007571088465646138;230,0.000735748932004272;231,0.0007319108223567106;232,0.0007320220719117123;233,0.0007145558917764329;234,0.0007019290672837309;235,0.0007161133855464578;236,0.0007086040405838378;237,0.0007137215201139195;238,0.0007173371306514775;239,0.0007131652723389107;240,0.0007213977394090424;241,0.0007112740299038804;242,0.000701372819508722;243,0.0007101615343538627;244,0.0007226771092915629;245,0.000716558383766465;246,0.0007178377536489854;247,0.0007473188857244572;248,0.0007285733357066573;249,0.0007127202741189036;250,0.0007264039693841225;251,0.0007280170879316483;252,0.0007088821644713422;253,0.0007231777322890709;254,0.0007344139373442508;255,0.0007405882876468494;256,0.000766120060519758;257,0.0007572200961196155;258,0.0007485982556069776;259,0.0007649519401922392;260,0.0007606132075471699;261,0.0007543832324670702;262,0.0007623932004271984;263,0.0007572200961196156;264,0.0007669544321822713;265,0.0008359847810608758;266,0.0009200338198647206;267,0.000966424884300463;268,0.001039627091491634;269,0.0011087130651477395;270,0.0011688990744037025;271,0.0012435475258098967;272,0.0012996173015307941;273,0.0013791607333570668;274,0.001448246707013172;275,0.001548871929512282;276,0.0016152879138483446;277,0.0016779770380918476;278,0.0017342693129227486;279,0.0017804935030259878;280,0.001834560786756853;281,0.0019054823780704877;282,0.001947312210751157;283,0.0019814101993592026;284,0.002015118814524742;285,0.0020477705589177645;286,0.0020894335172659314;287,0.0021680313278746887;288,0.0021747063011747954;289,0.002245182894268423;290,0.0022440703987184054;291,0.0022172592559629766;292,0.002268767799928801;293,0.0022821733713065152;294,0.002276944642221431;295,0.002331568173727305;296,0.0023097632609469566;297,0.0023449181203275184;298,0.0023879160733357068;299,0.0023770136169455323;300,0.002395369793520826;301,0.002423293431826273;302,0.002444430847276611;303,0.0024715201139195444;304,0.002527812388750445;305,0.002558294766820933;306,0.0025844940370238524;307,0.00234686498754005;308,0.0013154147383410467;309,0.0002813501245995016;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0018440169989320044;66,0.0018124777500889999;67,0.0018744437522249912;68,0.0019176642043431825;69,0.0018737762548949805;70,0.0018470207369170526;71,0.0018224902100391599;72,0.001759745461018156;73,0.001648940904236383;74,0.001583859914560342;75,0.0015499288002847988;76,0.0015081545923816306;77,0.0014268311676753293;78,0.0013512927198291206;79,0.0012518912424350302;80,0.0011972677109291564;81,0.0011262904948380207;82,0.0010534220363118546;83,0.0010048059807760768;84,0.000986616678533286;85,0.0009241500533997864;86,0.000862684674261303;87,0.0007874799750800998;88,0.0007216758632965468;89,0.0006317862228551086;90,0.000514251067995728;91,0.000415183339266643;92,0.00033118992524029905;93,0.00026733268066927735;94,0.00020820354218583124;95,0.00016492746529013884;96,0.00013105197579209684;97,0.00009929022783908864;98,0.00006385724457102171;99,0.000025809896760412957;100,0.00000773184407262371;101,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00010736625022249912;66,0.00009544255768289427;67,0.00006590319341847633;68,0.00002847727866901032;69,0.000009881220240744037;70,0.000010397487706924171;71,0.000011427415227839089;72,0.000010443551975792098;73,0.000009477071466714133;74,0.000007876120839266643;75,0.000007934353028212887;76,0.000008449751357244571;77,0.000008222037424350303;78,0.000006758410466358134;79,0.0000062073775142399446;80,0.0000046220713554645795;81,0.000004894980420078321;82,0.000007550194408597366;83,0.000010493961930402278;84,0.00001043312233001068;85,0.000008319380784976861;86,0.0000056772038536845855;87,0.000005602458058917764;88,0.00000843584516286935;89,0.000010004637715824136;90,0.000009528350558472764;91,0.000011934991322534709;92,0.00001446939524741901;93,0.000012636385001334996;94,0.000003340963198647205;95,0.000003913724579476682;96,0.0000022345516086685656;97,0.000000954312588999644;98,0.0000003893734425062299;99,0.0000006674973300106799;100,0.0000009490977661089354;101,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0.000018634300462798147;67,0.000099623976504094;68,0.00025954521181915274;69,0.00043954699181203275;70,0.0005972988608045569;71,0.0007551619793520826;72,0.0009005651477394091;73,0.0010569820220719117;74,0.001248498131007476;75,0.0014479129583481664;76,0.0015891442684229265;77,0.0017040094339622644;78,0.0018975836596653614;79,0.0020774185653257386;80,0.0022336685653257388;81,0.0023668342826628696;82,0.0025278123887504454;83,0.002700471698113208;84,0.002851937967248131;85,0.0030175329298682808;86,0.003173616055535778;87,0.0033238585795656818;88,0.003413915094339623;89,0.0034910110359558564;90,0.003447123086507654;91,0.003376924617301531;92,0.0032220096119615523;93,0.0030762726949092206;94,0.002932093271626914;95,0.0026387281950872197;96,0.0026024052153791385;97,0.0026406194375222505;98,0.0027210528657885366;99,0.002791807582769669;100,0.002872129761480954;101,0.0029334838910644364;102,0.0030129160733357073;103,0.00311126067995728;104,0.003195420968316127;105,0.0032223989854040583;106,0.0033073936454254176;107,0.0033397672659309366;108,0.003381152100391599;109,0.0034655905126379496;110,0.003544077073691705;111,0.003602038091847633;112,0.0036556603773584906;113,0.003722966358134568;114,0.0038060141509433966;115,0.003873653880384479;116,0.003905304378782485;117,0.003974000978996084;118,0.0040482044321822706;119,0.0041125066749733005;120,0.004090312388750445;121,0.004126023495906017;122,0.004287335350658597;123,0.004315926486294055;124,0.004340178889284443;125,0.004393356176575294;126,0.004416162335350658;127,0.0044673371306514775;128,0.004486082680669278;129,0.0044816883232467065;130,0.004462553399786401;131,0.00431753960484158;132,0.004229151833392666;133,0.00418810074759701;134,0.0040774630651477396;135,0.00394001423994304;136,0.003889840690637237;137,0.0038332702919188326;138,0.0037591224635101462;139,0.0037014951940192243;140,0.0036466491634033465;141,0.003547192061231755;142,0.0034649786400854396;143,0.0034256519223923106;144,0.0033709171413314346;145,0.0032193396226415094;146,0.0030729352082591675;147,0.0030242635279458885;148,0.002973978729085084;149,0.0029240833036667854;150,0.002869737896048416;151,0.0027944775720897116;152,0.0027026966892132434;153,0.002627714489142044;154,0.002583437166251335;155,0.002523974279102883;156,0.0024311365254538987;157,0.0023588799394802422;158,0.00228061587753649;159,0.0021728706835172657;160,0.0021104040583837663;161,0.00203436498754005;162,0.001921168565325739;163,0.0018227127091491636;164,0.0017655860626557495;165,0.0017194731221075116;166,0.0016684652011391956;167,0.0015915361338554649;168,0.0015273451406194374;169,0.0014605397828408688;170,0.0013658107867568529;171,0.0012949448202207192;172,0.001237929423282307;173,0.0011531572623709506;174,0.0011103818084727663;175,0.0010584838910644356;176,0.0010188790494838021;177,0.0009726548593805625;178,0.0008960039159843362;179,0.0008121217515129939;180,0.0007434807760768957;181,0.0006855197579209683;182,0.0006256118725525098;183,0.0005759945710217158;184,0.0005165873086507654;185,0.0004343182627269491;186,0.00035861294054823783;187,0.0002859113563545746;188,0.00021626913492346032;189,0.00015091002135991457;190,0.00008927776788892846;191,0.00003882609469562122;192,0.0000072312210751157;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "bigreactors:benitoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0007680113029547883;66,0.0014336173905304377;67,0.0017221987362050551;68,0.0018416807582769673;69,0.0018635412958348167;70,0.0018584238163047349;71,0.0018431826272694912;72,0.0018041896582413671;73,0.0018003515485938057;74,0.001791173460306159;75,0.0017943996974012105;76,0.0018197645959416161;77,0.0018023540405838377;78,0.0018151477394090423;79,0.0018162602349590601;80,0.0018378982734069062;81,0.001815370238519046;82,0.0018217670879316483;83,0.0018394001423994305;84,0.0018189858490566036;85,0.0017875022249911002;86,0.001796124065503738;87,0.0017911178355286578;88,0.0017411667853328588;89,0.0016905482378070486;90,0.0016214066393734424;91,0.0015113808294766823;92,0.0013842782128871485;93,0.0012700805446778213;94,0.0011494860270558917;95,0.0010051397294410824;96,0.0009579142933428268;97,0.000954743681025276;98,0.0009530749377002494;99,0.0009738786044855822;100,0.00099123353506586;101,0.0009764373442506232;102,0.0009382231221075116;103,0.0009492368280526878;104,0.0009420612317550729;105,0.0009324381452474192;106,0.0009264862940548237;107,0.000911745728017088;108,0.0009153613385546459;109,0.000906183250266999;110,0.0009207013171947312;111,0.0008958926664293343;112,0.0008849902100391599;113,0.0009099657351370595;114,0.0008893845674617302;115,0.0008946689213243147;116,0.0008827652189391242;117,0.0008660777856888572;118,0.0008678021537913849;119,0.0008657996618013529;120,0.0008574003203987185;121,0.0008498909754360983;122,0.000874810875756497;123,0.0008474434852260592;124,0.0008518378426486295;125,0.000837375400498398;126,0.0008234135813456747;127,0.0008413803844784622;128,0.0008218004627981489;129,0.0008170167319330723;130,0.0008061699003203988;131,0.0007917630829476683;132,0.0007904837130651478;133,0.000794878070487718;134,0.0007879249733001068;135,0.0007775787646849411;136,0.0007752981488074048;137,0.0007891487184051263;138,0.0007895937166251335;139,0.0007914849590601638;140,0.0008071711463154148;141,0.0007929868280526878;142,0.0007817506229975081;143,0.0007862562299750801;144,0.0007857556069775721;145,0.000773184407262371;146,0.000751435119259523;147,0.000759556336774653;148,0.0007646738163047347;149,0.0007657863118547526;150,0.0007547169811320755;151,0.0007608357066571734;152,0.0007646738163047347;153,0.0007657863118547526;154,0.0007521582413670346;155,0.0007590557137771448;156,0.0007711819152723389;157,0.0007789137593449627;158,0.0007795256318974725;159,0.0007440370238519047;160,0.0007294077073691705;161,0.000732244571021716;162,0.0007384745461018157;163,0.0007093271626913492;164,0.0007138327696689214;165,0.0007107177821288715;166,0.0007082146671413313;167,0.0007209527411890352;168,0.0007398095407618369;169,0.0007391420434318262;170,0.0007156683873264507;171,0.000696811587753649;172,0.0006930847276610894;173,0.0007193396226415094;174,0.0007111627803488786;175,0.0007204521181915272;176,0.0007418676575293699;177,0.0007218427376290495;178,0.0007045990566037736;179,0.0007286845852616589;180,0.0007219539871840513;181,0.0007265708437166252;182,0.0007262370950516198;183,0.0007105509077963688;184,0.0006995928266286936;185,0.0007028190637237452;186,0.000695754716981132;187,0.0006819597721609114;188,0.0005960751156995371;189,0.00032846431114275543;190,0.00006263349946600214;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00011987139551441793;66,0.00011842515129939481;67,0.00007125533997864008;68,0.00002530927376290495;69,0.000016687433250267;70,0.00001234870060519758;71,0.00001190370238519046;72,0.000012571199715201139;73,0.000008288091847632611;74,0.0000094562121751513;75,0.0000122374510501958;76,0.000015574937700249205;77,0.00001123620505517978;78,0.00001190370238519046;79,0.00001540806336774653;80,0.000019746796012815952;81,0.00001980242079031684;82,0.00001902367390530438;83,0.00001640930936276255;84,0.00001729930580277679;85,0.00002936988252046992;86,0.00003404236383054468;87,0.00003810297258810964;88,0.00004189241055535778;89,0.00005298260056959772;90,0.00007081034175863297;91,0.00008738652545389819;92,0.00008840863074047704;93,0.00009018862362050552;94,0.00007186721253114987;95,0.00003665672837308651;96,0.00002875800996796013;97,0.000028758009967960127;98,0.000022249911000356;99,0.00002069241723033108;100,0.000023751779992880028;101,0.000030259878960484155;102,0.00004271982912068352;103,0.00003810297258810965;104,0.00002786801352794589;105,0.00003181737273050908;106,0.00004060608757564969;107,0.000040606087575649705;108,0.00004138483446066216;109,0.000039083359291562835;110,0.000030205992457280176;111,0.000034779392132431466;112,0.00003215112139551442;113,0.00003476548593805624;114,0.00003598923104307583;115,0.00003954921680313279;116,0.000038047347810608754;117,0.0000294811320754717;118,0.00002953675685297259;119,0.00002809051263794945;120,0.000026978017087931654;121,0.00002441927732289071;122,0.000022528034887860452;123,0.00002875800996796013;124,0.000029926130295478818;125,0.00002530927376290495;126,0.00002486427554289783;127,0.000028655451784442867;128,0.000026875458904414383;129,0.00003543298326806693;130,0.000036712353150587404;131,0.00004194108223567106;132,0.0000394935920256319;133,0.000025420523317906726;134,0.000025253648985404063;135,0.00002925863296546814;136,0.00003109425062299751;137,0.0000355998576005696;138,0.000036489854040583834;139,0.00003832547169811321;140,0.000038937344250623;141,0.00003126112495550018;142,0.00003181737273050908;143,0.00003637860448558206;144,0.000035099234603061584;145,0.00003187299750800997;146,0.00003454298682805269;147,0.000028702385190459238;148,0.000027812388750445;149,0.00002397427910288359;150,0.00002586552153791385;151,0.000026421769312922746;152,0.000022917408330366675;153,0.00001907929868280527;154,0.000018467426130295477;155,0.00001824492702029192;156,0.00001323869704521182;157,0.000015797436810252758;158,0.000018968049127803488;159,0.00002163803844784621;160,0.00002286178355286579;161,0.00002252803488786045;162,0.000021860537557849766;163,0.000023584905660377357;164,0.00003009300462798148;165,0.00003398673905304379;166,0.000030315503737985044;167,0.00002230553577785689;168,0.000020914916340334642;169,0.000021582413670345318;170,0.000029314257742969028;171,0.000028813634745461016;172,0.00002408552865788537;173,0.000024641776432894266;174,0.00002008054467782129;175,0.000020080544677821286;176,0.000021081790672837313;177,0.000017744304022783905;178,0.00001825361839177643;179,0.000018801174795300818;180,0.000015185564257742968;181,0.000017188056247775005;182,0.00001974679601281595;183,0.000022472410110359556;184,0.000020525542897828415;185,0.000022917408330366682;186,0.00002553177287290851;187,0.00002163803844784621;188,0.000018022427910288357;189,0.000020358668565325738;190,0.00001841180135279459;191,0.00001729930580277679;192,0.00001535243859024564;193,0.000014851815592737629;194,0.000021582413670345318;195,0.00001980242079031684;196,0.00001791117835528658;197,0.00001880117479530082;198,0.00001685430758276967;199,0.000013850569597721609;200,0.00001590868636525454;201,0.00001212620149519402;202,0.000008621840512637949;203,0.00001218182627269491;204,0.00001696555713777145;205,0.000018411801352794588;206,0.00001412869348522606;207,0.000012237451050195798;208,0.000012348700605197578;209,0.000011792452830188679;210,0.000012014951940192238;211,0.00001029058383766465;212,0.00001474056603773585;213,0.00001268244927020292;214,0.000009901210395158419;215,0.0000094562121751513;216,0.00000645247419010324;217,0.000011180580277678892;218,0.00001496306514773941;219,0.000013183072267710929;220,0.000011180580277678889;221,0.00000795434318262727;222,0.000007064346742613028;223,0.000007731844072623708;224,0.00000867746529013884;225,0.00001023495906016376;226,0.000011124955500178;227,0.00000917808828764685;228,0.000005618102527589891;229,0.000006897472410110361;230,0.000008510590957636169;231,0.000009289337842648629;232,0.00000800996796012816;233,0.000007398095407618369;234,0.00000617435030259879;235,0.00000495060519757921;236,0.000005451228195087219;237,0.00000400498398006408;238,0.00000394935920256319;239,0.0000030593627625489503;240,0.000004672481310074759;241,0.000004561231755072979;242,0.000004283107867568528;243,0.000003337486650053399;244,0.00000194686721253115;245,0.00000061187255250979;246,0.0000007787468850124599;247,0.00000189124243503026;248,0.0000043387326450694205;249,0.000004616856532573869;250,0.00000383810964756141;251,0.00000322623709505162;252,0.00000289248843004628;253,0.0000005006229975080099;254,0.00000127936988252047;255,0.0000008899964400142398;256,0.0000003337486650053399;257,0.00000016687433250266998;258,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.001031005250978996;66,0.0010790094339622643;67,0.0011771315414738342;68,0.0013150809896760414;69,0.0013452296190815238;70,0.0013396115165539338;71,0.0013003960484158064;72,0.0012476637593449625;73,0.0012712486650053399;74,0.0013347165361338553;75,0.0013765463688145247;76,0.0014149274652901387;77,0.0014211018155927376;78,0.001439624866500534;79,0.0014678822534709862;80,0.001476949092203631;81,0.0015269001423994307;82,0.001523618280526878;83,0.0015212264150943396;84,0.0015157751868992526;85,0.0015448669455322178;86,0.0015210595407618372;87,0.0015070420968316127;88,0.0014954721431114277;89,0.0014267199181203275;90,0.0013512370950516197;91,0.001338554645781417;92,0.001314747241011036;93,0.0011865877536489852;94,0.0010733357066571732;95,0.0009407262370950515;96,0.0008830989676041295;97,0.0008875489498042007;98,0.0008846008365966536;99,0.0008901633143467427;100,0.0009171413314346743;101,0.000907685119259523;102,0.0009244281772872909;103,0.0009968516375934496;104,0.0010550907796368814;105,0.001020436543253827;106,0.0009746573513705946;107,0.0009616967782128872;108,0.0009422281060875758;109,0.0009287112851548594;110,0.0009441749733001068;111,0.0009509055713777146;112,0.0009812210751156997;113,0.0010069753470986118;114,0.0010220496618013528;115,0.0009857266820932718;116,0.0009447868458526167;117,0.0009356087575649698;118,0.0009773273406906372;119,0.0010184896760412959;120,0.0010345096119615523;121,0.0010273896404414382;122,0.0010213265396938412;123,0.001042686454254183;124,0.0010326183695265217;125,0.0010372908508365967;126,0.0010533107867568528;127,0.0010848500355998577;128,0.0010499176753292988;129,0.0010312833748665005;130,0.0010235515307938769;131,0.0010157640619437524;132,0.001033563990744037;133,0.001068385101459594;134,0.0010540339088643646;135,0.0009978528835884657;136,0.0010237184051263798;137,0.0010336752402990389;138,0.000996796012815949;139,0.001014262192951228;140,0.0010570932716269135;141,0.0010864631541473834;142,0.0010661044855820576;143,0.001082569419722321;144,0.0010816794232823067;145,0.0010647138661445356;146,0.0010653813634745463;147,0.0010862406550373798;148,0.001111994927020292;149,0.0011394735671057315;150,0.001155994126023496;151,0.0011665072089711644;152,0.0011597766108935566;153,0.0011562722499110002;154,0.0011475391598433607;155,0.0011339110893556427;156,0.0011435341758632965;157,0.0011702896938412246;158,0.0011794121573513708;159,0.0011980464578141689;160,0.0011845296368814527;161,0.0011633922214311144;162,0.00114498042007832;163,0.001121618013527946;164,0.0011259567461730153;165,0.0011329098433606266;166,0.00116500533997864;167,0.0011851415094339623;168,0.0012274163403346388;169,0.0012084482912068351;170,0.0012075026699893202;171,0.0012035533107867568;172,0.0012031639373442508;173,0.0012012170701317195;174,0.0012120082769668922;175,0.001265853061587754;176,0.0012971698113207549;177,0.0012869348522605909;178,0.0012871573513705947;179,0.001280871751512994;180,0.001310241634033464;181,0.0013124666251334996;182,0.0012804823780704876;183,0.0012530037379850482;184,0.0012624599501601995;185,0.0012244682271270917;186,0.0012017176931292273;187,0.001212620149519402;188,0.0012120082769668922;189,0.0012769780170879316;190,0.0013248153257386969;191,0.001279314257742969;192,0.0012246907262370953;193,0.0011870883766464935;194,0.001148262281950872;195,0.0011430891776432895;196,0.001197323335706657;197,0.0011978795834816664;198,0.0011687878248487008;199,0.0011804134033463866;200,0.0011992702029191883;201,0.001169121573513706;202,0.001124009878960484;203,0.0011113274296902812;204,0.001100313723745105;205,0.0010960306158775365;206,0.0011213398896404415;207,0.0011265686187255253;208,0.001103873709505162;209,0.001054312032751869;210,0.001016320309718761;211,0.0009994660021359915;212,0.0010232734069063724;213,0.0010216602883588465;214,0.0010351214845140619;215,0.0010287802598789606;216,0.0009823335706657173;217,0.0009205344428622284;218,0.0009057382520469919;219,0.0009198669455322179;220,0.0008877714489142045;221,0.0008511703453186188;222,0.0008535065859736562;223,0.0008675796546813812;224,0.0008522828408686365;225,0.0008282529369882522;226,0.0008352616589533642;227,0.0008614609291562833;228,0.0008660221609113563;229,0.0008362072801708794;230,0.0008370416518333927;231,0.0008200204699181203;232,0.0008245260768956924;233,0.0008246373264506942;234,0.00081061988252047;235,0.0007727394090423638;236,0.0007469295122819509;237,0.0007482645069419723;238,0.0007592782128871486;239,0.0007856999822000712;240,0.000775743147027412;241,0.0007464845140619438;242,0.0007360826806692773;243,0.00074437077251691;244,0.000735248309006764;245,0.0007178933784264865;246,0.0007244014773940905;247,0.0007310764506941972;248,0.0007262370950516199;249,0.0007057671769312925;250,0.0007027078141687434;251,0.0006801797792808828;252,0.0006723923104307583;253,0.0006643267176931293;254,0.000659821110715557;255,0.0006777322890708438;256,0.0007096052865788537;257,0.0007091046635813458;258,0.0006772316660733357;259,0.0006662179601281596;260,0.0006802354040583838;261,0.000686187255250979;262,0.0006448580455678177;263,0.0006345674617301531;264,0.0006456924172303311;265,0.0006941972232111072;266,0.000750934496262015;267,0.0008366522783908865;268,0.000895113919544322;269,0.0009200338198647206;270,0.0009452874688501247;271,0.0009974078853684585;272,0.00108874377002492;273,0.0011141086685653259;274,0.0011480954076183696;275,0.0012088932894268422;276,0.0012573980954076183;277,0.001264684941260235;278,0.001291551708793165;279,0.0013402233891064434;280,0.0013782707369170526;281,0.0013923438056247777;282,0.0014474679601281597;283,0.0015185008009967961;284,0.0015101570843716627;285,0.00150186899252403;286,0.0014996996262014953;287,0.00153374199003204;288,0.0015219495372018512;289,0.001467937878248487;290,0.0014146493414026345;291,0.0014340623887504449;292,0.0014980865076539692;293,0.0015424194553221786;294,0.0015117702029191884;295,0.0014811765752936988;296,0.0014880740477038093;297,0.0014976415094339623;298,0.0014574804200783197;299,0.0014804534531861874;300,0.0015165539337842649;301,0.001508488341046636;302,0.0015082102171591312;303,0.001525064524741901;304,0.0015290695087219652;305,0.0014830678177287292;306,0.0014760590957636171;307,0.0014889640441438233;308,0.0015144401922392312;309,0.0015227839088643646;310,0.0014958058917764329;311,0.0014677710039159844;312,0.001426441794232823;313,0.0013841669633321467;314,0.0013837219651121396;315,0.001420434318262727;316,0.0014026343894624422;317,0.0013551308294766822;318,0.001327040316838733;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003261211173905304;66,0.00031046274252402996;67,0.0002115966536133855;68,0.00007736015930936276;69,0.00003465423638305447;70,0.000033541740833036663;71,0.00003160877981488074;72,0.000026811142755428983;73,0.00002425935608757565;74,0.000026053255161979354;75,0.0000245374799750801;76,0.000025420523317906726;77,0.000026644268422926306;78,0.00002469740121039516;79,0.000022653190637237453;80,0.00002069241723033108;81,0.000023751779992880028;82,0.000024808650765396937;83,0.000027812388750444993;84,0.00002864676041295835;85,0.000030704877180491285;86,0.00003771359914560342;87,0.000054011658953364186;88,0.00006419099323602706;89,0.00007704031683873264;90,0.00008634356087575651;91,0.00009306720585617657;92,0.00009704437744749022;93,0.0000884433962264151;94,0.00006430224279102884;95,0.00003537735849056603;96,0.000015408063367746528;97,0.00002291740833036668;98,0.000025031149875400493;99,0.000021582413670345318;100,0.00001969117123531506;101,0.000019246173015307944;102,0.000019461719028123888;103,0.000016325872196511213;104,0.000017918131452474187;105,0.000014684941260234957;106,0.000010846831612673551;107,0.000011792452830188679;108,0.000013127447490210036;109,0.000013850569597721609;110,0.00000828809184763261;111,0.000005395603417586329;112,0.000005729352082591669;113,0.000006174350302598789;114,0.000006007475970096121;115,0.00000428310786756853;116,0.00000239186543253827;117,0.00000255873976504094;118,0.0000025587397650409395;119,0.0000013906194375222496;120,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.006129516731933073;66,0.006073001957992168;67,0.00637243013527946;68,0.006723199982200071;69,0.006706735048059808;70,0.0065149408152367395;71,0.006331212175151301;72,0.006107433695265219;73,0.005951573068707725;74,0.005794099323602706;75,0.005663325471698113;76,0.005584672036311855;77,0.005464578141687433;78,0.005336529903880385;79,0.005248197757208972;80,0.005124655126379495;81,0.00494749021003916;82,0.004792241456034177;83,0.004693841224635102;84,0.004582202296190815;85,0.004435241634033464;86,0.00435998131007476;87,0.004229151833392667;88,0.003958815414738342;89,0.0036630028479886084;90,0.0033511147205411177;91,0.0030858957814168743;92,0.0027802932538269847;93,0.0024270759166963333;94,0.0021302621039515843;95,0.0018176508543965826;96,0.0016144535421858315;97,0.0015320732467070132;98,0.0014376779992880029;99,0.0013779926130295479;100,0.0013407796368814524;101,0.001250889996440014;102,0.001187199626201495;103,0.0011223967604129586;104,0.0010453008187967247;105,0.0009677042541829833;106,0.0009293231577073692;107,0.000832925418298327;108,0.0007439813990744037;109,0.0006615454788180848;110,0.0006242768778924885;111,0.0005927932538269847;112,0.0005327741189035244;113,0.0004580700427198291;114,0.0003795278568885725;115,0.00031489186543253833;116,0.00023996529013883946;117,0.00015930936276254895;118,0.0000912802598789605;119,0.00004210795656817373;120,0.00001017933428266287;121,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005568996278702385;66,0.0000533583662301831;67,0.00003446037268857056;68,0.000003934120157225577;69,0.0000032966372040761836;70,0.0000024544433072267713;71,0.0000048379531910425924;72,0.000006237189179433974;73,0.00000280682230546228;74,0.0000010638238697045213;75,0.0000017591335884656463;76,0.000000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.006204443307226771;66,0.006233590690637238;67,0.006592537379850482;68,0.006977850213599146;69,0.006805524652901389;70,0.0066239653791384835;71,0.006488797169811321;72,0.006385335083659665;73,0.006158385991456034;74,0.006023217782128871;75,0.005875923371306515;76,0.005692917853328587;77,0.005493614275542898;78,0.005387537824848701;79,0.005302153791384835;80,0.0052011391954432185;81,0.005113697045211819;82,0.0049312477750089005;83,0.004709082413670346;84,0.004574081078675685;85,0.004495038269846921;86,0.004330945176219295;87,0.004172915183339267;88,0.003945687967248131;89,0.0036470941616233536;90,0.0033043899074403703;91,0.0030085217159131366;92,0.002680947401210395;93,0.002386080455678177;94,0.0020552799038803847;95,0.0017481198825204701;96,0.001631196600213599;97,0.001609002313990744;98,0.0015337976148095409;99,0.001437622374510502;100,0.0013711507653969383;101,0.0012963910644357422;102,0.0011870883766464937;103,0.0011334660911356356;104,0.0010813456746173017;105,0.0010296702563189746;106,0.0009463443396226416;107,0.0008780371128515486;108,0.0007915962086151656;109,0.0007154458882164471;110,0.0006564279992880028;111,0.0005924595051619795;112,0.000532440370238519;113,0.00046129627981488083;114,0.0003670679067283731;115,0.0002800707547169812;116,0.0002129316482734069;117,0.00015630562477750087;118,0.0000912802598789605;119,0.00003938234247063012;120,0.0000071199715201139205;121,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00030682627269490925;66,0.00027457780793876827;67,0.000177265736249555;68,0.00005927515352438591;69,0.000033128031550373796;70,0.00002908132898718405;71,0.00002735348433606265;72,0.000025510913581345677;73,0.00002002144335172659;74,0.000023080806114275543;75,0.000022757487095051626;76,0.00002071675307048772;77,0.000017586121061765756;78,0.00001763826929067284;79,0.00002239766431559274;80,0.000021617179156283375;81,0.000016819542096831613;82,0.000014377266709683162;83,0.000014545879316482736;84,0.00001412869348522606;85,0.000017914654903880385;86,0.000018477855776076897;87,0.000022249911000356;88,0.000023407601682093273;89,0.0000326308851014596;90,0.00003557899830900677;91,0.00004166643489676041;92,0.000045316810920256317;93,0.00003188690370238519;94,0.000020640269001423996;95,0.00000990121039515842;96,0.0000033374866500534;97,0.0000031706123175507297;98,0.0000032262370950516204;99,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "allthemodium:vibranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.00000066749733001068;126,0.0000024474902100391597;127,0.0000037824848700605194;128,0.0000023362406550373804;129,0.0000025587397650409404;130,0.00000372686009255963;131,0.000005395603417586329;132,0.00000372686009255963;133,0.0000052287290850836606;134,0.000010457458170167321;135,0.00001079120683517266;136,0.00000656372374510502;137,0.00000545122819508722;138,0.00000789871840512638;139,0.00000734247063011748;140,0.000007398095407618369;141,0.0000074606732823068706;142,0.000013085728907084374;143,0.000013468149252402992;144,0.000005680680402278391;145,0.00000695309718761125;146,0.000007620594517621929;147,0.000005840601637593449;148,0.00000700872196511214;149,0.00000817684229263083;150,0.00001240432538269847;151,0.000010179334282662869;152,0.000006396849412602349;153,0.00000673059807760769;154,0.00000739809540761837;155,0.00000767621929512282;156,0.000007356376824492703;157,0.00000628559985760057;158,0.000010568707725169101;159,0.00001067995728017088;160,0.000005680680402278391;161,0.000006229975080099679;162,0.000006014429067283732;163,0.000005680680402278391;164,0.00000767621929512282;165,0.000010464411267354931;166,0.000012633777589889643;167,0.000012425184674261303;168,0.00000823942016731933;169,0.000008510590957636169;170,0.00000561810252758989;171,0.000007620594517621929;172,0.000008190748487006052;173,0.00000790567150231399;174,0.000010624332502669988;175,0.00001006808472766109;176,0.00000717559629761481;177,0.00000773184407262371;178,0.00000745372018511926;179,0.000007119971520113919;180,0.00000650809896760413;181,0.0000074537201851192616;182,0.00000817684229263083;183,0.000009066838732645071;184,0.00000522872908508366;185,0.000006174350302598789;186,0.000006007475970096119;187,0.00000589622641509434;188,0.000005506852972588111;189,0.00000545122819508722;190,0.000007509344962620151;191,0.0000044499822000711994;192,0.000003184518511925953;193,0.0000030037379850480604;194,0.0000031149875400498394;195,0.00000305936276254895;196,0.0000026699893200427193;197,0.0000023918654325382707;198,0.00000194686721253115;199,0.00000155749377002492;200,0.0000009456212175151301;201,0.00000033374866500534;202,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "mysticalagriculture:soulium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0029941148985404057;66,0.0032123309006763974;67,0.003475547347810609;68,0.003750166874332503;69,0.003824537201851193;70,0.003803455411178355;71,0.003738986294054824;72,0.0036794677821288717;73,0.003664004093983624;74,0.00364937477750089;75,0.003593861249555002;76,0.0036489854040583844;77,0.003616834282662869;78,0.0036573847454610185;79,0.0036465379138483447;80,0.0036898139907440373;81,0.0037110070309718766;82,0.0037101170345318624;83,0.0036978239587041654;84,0.0037012726949092207;85,0.0036920946066215737;86,0.0036870883766464938;87,0.0036618903524385906;88,0.0035466358134567466;89,0.003422091936632253;90,0.0032652856888572444;91,0.003052298415806337;92,0.002777845763616946;93,0.002529870505517978;94,0.0023461418654325385;95,0.0020619548771804914;96,0.001934629761480954;97,0.001925117924528302;98,0.0019198891954432182;99,0.0019208904414382342;100,0.0019005317728729087;101,0.001914549216803133;102,0.0019228373086507653;103,0.0019057048771804915;104,0.001905426753292987;105,0.0018771693663225347;106,0.0018461307404770383;107,0.0018474657351370597;108,0.0018047459060163758;109,0.0017999621751512993;110,0.0017918965824136705;111,0.001807805268778925;112,0.0017849991100035603;113,0.001770314168743325;114,0.00176753292986828;115,0.0017922303310786759;116,0.0017964578141687433;117,0.0017832747419010329;118,0.0017916184585261663;119,0.0017890040939836241;120,0.0017516242435030261;121,0.0017545723567105732;122,0.0017599123353506585;123,0.0017641398184407263;124,0.0017599679601281596;125,0.0017380517977928088;126,0.0017277612139551444;127,0.001700115699537202;128,0.00169249510501958;129,0.0016500533997864009;130,0.0016321978462086153;131,0.0016326428444286222;132,0.0016234091313634745;133,0.0016123398006407975;134,0.0016084460662157353;135,0.0016142310430758279;136,0.0016008810964756141;137,0.0015998242257030974;138,0.0015612762548949805;139,0.0015499288002847988;140,0.0015546569063723745;141,0.0015482044321822714;142,0.0015737918298326808;143,0.0015778524385902455;144,0.0016101704343182627;145,0.0015722899608401567;146,0.001574626201495194;147,0.0015562700249199006;148,0.001537746974012104;149,0.001529180758276967;150,0.001563501245995016;151,0.0015762393200427199;152,0.0015666718583125668;153,0.0015809118013527948;154,0.001587308650765397;155,0.0015823580455678176;156,0.0015591068885724459;157,0.001572679334282663;158,0.001562110626557494;159,0.001554434407262371;160,0.0015309051263794947;161,0.0014884634211463155;162,0.0014577029191883235;163,0.0014525298148807403;164,0.0014267199181203275;165,0.0014353417586329656;166,0.0014586485404058385;167,0.0014826784442862227;168,0.0014746128515485937;169,0.001478061587753649;170,0.0014373998754004984;171,0.0014167630829476684;172,0.0014209349412602351;173,0.0014322267710929156;174,0.0014425729797080812;175,0.0014794522071911714;176,0.0014784509611961553;177,0.0014722209861160556;178,0.0014691616233535067;179,0.0014643222677109293;180,0.0014550885546457818;181,0.0014747241011035957;182,0.0014733334816660734;183,0.0014877402990388041;184,0.0014884634211463155;185,0.001456924172303311;186,0.0014257742969028125;187,0.0013711507653969383;188,0.001262738074047704;189,0.0011081568173727306;190,0.0008721965112139553;191,0.0006429111783552866;192,0.000422748309006764;193,0.00021999599501601995;194,0.00007537157351370596;195,0.000010958081167675331;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002972977483090068;66,0.0030599746351014597;67,0.00333687477750089;68,0.0036520447668209324;69,0.0037765330188679245;70,0.003849401477394091;71,0.0038346609113563547;72,0.003836552153791385;73,0.003944352972588109;74,0.004090423638305448;75,0.004060163759344962;76,0.004057104396582414;77,0.004097766108935565;78,0.00412619037023852;79,0.0041109491812032755;80,0.004147772783908864;81,0.0042519579921680315;82,0.004345963866144536;83,0.004443084727661089;84,0.004506719473122108;85,0.004482133321466715;86,0.004498598255606978;87,0.004602672214311143;88,0.004554334282662869;89,0.004410266108935565;90,0.004191716358134567;91,0.003998865254538981;92,0.0037009389462442153;93,0.003425206924172303;94,0.0032043765574937704;95,0.002787691349234603;96,0.0026133076717693134;97,0.002557460395158419;98,0.002522027411890353;99,0.0024679601281594873;100,0.0024476570843716627;101,0.0024808094517621932;102,0.002456557048771805;103,0.0024219028123887505;104,0.0023345162869348518;105,0.0023031439124243506;106,0.002236116055535778;107,0.0021715913136347454;108,0.0020665717337130657;109,0.0020128381986472058;110,0.00197812833748665;111,0.0019936476504093985;112,0.001981577073691705;113,0.0019992101281594878;114,0.001948424706301175;115,0.001871495639017444;116,0.0018071377714489142;117,0.001812310875756497;118,0.0018350057849768598;119,0.0018174839800640798;120,0.0017520136169455322;121,0.001711185030259879;122,0.0016911601103595589;123,0.001678366411534354;124,0.0016865432538269846;125,0.0016597877358490568;126,0.0015885880206479173;127,0.0015390263438946246;128,0.0014672147561409755;129,0.0013872819508721967;130,0.001356132075471698;131,0.0012988385546457816;132,0.0012651299394802421;133,0.001231810697757209;134,0.001248998754004984;135,0.001265241189035244;136,0.0012632943218227129;137,0.0012172926308294768;138,0.0011777434140263438;139,0.001163503470986116;140,0.0011269023673905305;141,0.001077730064079744;142,0.0010578163937344249;143,0.0010345652367390532;144,0.0009940147739409043;145,0.0009741011035955858;146,0.0009550774296902812;147,0.0009214244393022429;148,0.0009071844962620149;149,0.0009086307404770383;150,0.0008622396760412959;151,0.0008162936098255608;152,0.0008100080099679601;153,0.0008101192595229619;154,0.0008022205411178356;155,0.0007868681025275899;156,0.000769624421502314;157,0.0007266264684941259;158,0.0006867435030259879;159,0.0006651610893556426;160,0.0006527567639729441;161,0.0006262793698825204;162,0.0005935720007119972;163,0.0005487384300462798;164,0.0005012348700605198;165,0.00046958437166251337;166,0.0004746462264150943;167,0.000473811854752581;168,0.00045189569241723033;169,0.00043048015307938767;170,0.00039076406194375225;171,0.00034526299394802424;172,0.00031311187255250977;173,0.00030782751868992526;174,0.00030037379850480605;175,0.0002924750800996796;176,0.0002949225703097188;177,0.00027445265218939126;178,0.000240688412246351;179,0.00022344473122107511;180,0.00020475480598077607;181,0.0001762749199003204;182,0.00015335751156995373;183,0.00013183072267710928;184,0.00011709015663937346;185,0.00010535332858668564;186,0.00007998843004627983;187,0.0000461129405482378;188,0.00002936988252046992;189,0.00001590868636525454;190,0.000005673727305090781;191,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0034304356532573873;66,0.0037951116945532217;67,0.0038619726771092914;68,0.003967659754360983;69,0.004001813367746529;70,0.00396120728017088;71,0.003934563011747953;72,0.003870093894624422;73,0.0038325471698113208;74,0.0038830544677821294;75,0.003909420612317551;76,0.0038753226237095055;77,0.0038908975614097546;78,0.003865755161979353;79,0.0038748220007119973;80,0.003945743592025632;81,0.0038872263260946957;82,0.003886169455322179;83,0.003910811231755074;84,0.0038866144535421856;85,0.003870761391954432;86,0.00389501379494482;87,0.0038801619793520834;88,0.003804512281950872;89,0.0036751846742613037;90,0.003503860359558562;91,0.003281194375222499;92,0.003036945977216091;93,0.0027673883054467785;94,0.002561298504805981;95,0.002229107333570666;96,0.0021544588821644714;97,0.00212125088999644;98,0.0021559051263794946;99,0.0021489520291918833;100,0.0021483957814168748;101,0.0021317083481666075;102,0.0019095429868280526;103,0.0010763394446422214;104,0.00020486605553577785;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0005800273673905304;66,0.0005406728373086509;67,0.0005592445598967604;68,0.0005667539048593806;69,0.0005172061343004628;70,0.00047091241322534715;71,0.00043524302465290134;72,0.00037310319508721966;73,0.0003292500111249555;74,0.00026828525498398005;75,0.00020586730153079386;76,0.00016514996440014241;77,0.00013183072267710928;78,0.00008388216447134211;79,0.00003610048059807761;80,0.000010012459950160199;81,0.00000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0.00000033374866500533997;71,0.0000066193485226059105;72,0.00007353595585617658;73,0.00012354263082947669;74,0.00017577429690281238;75,0.000223500355998576;76,0.0002770113919544322;77,0.0003335261658953364;78,0.0003749666251334995;79,0.0004157395870416519;80,0.0004577362940548238;81,0.00042013394446422216;82,0.0003724635101459594;83,0.00032457057671769307;84,0.0002782907618369527;85,0.00022483535065859737;86,0.00017527367390530438;87,0.00011864765040939837;88,0.00006697223211107156;89,0.00002508677465290139;90,0.00001857867568529726;91,0.00001807805268778925;92,0.00001674305802776789;93,0.00001512993948024208;94,0.00001234870060519758;95,0.00001323869704521182;96,0.00000973433606265575;97,0.000010791206835172659;98,0.00000984558561765753;99,0.000011569953720185119;100,0.000011848077607689571;101,0.000010624332502669992;102,0.00001190370238519046;103,0.00001245995016019936;104,0.000011569953720185119;105,0.00001045745817016732;106,0.00001051308294766821;107,0.000011291829832680669;108,0.000009567461730153081;109,0.00001251557493770025;110,0.00000990121039515842;111,0.00001023495906016376;112,0.00001023495906016376;113,0.000011569953720185119;114,0.00001145870416518334;115,0.00001045745817016732;116,0.000010068084727661091;117,0.00001029058383766465;118,0.00000967871128515486;119,0.000011236205055179778;120,0.00001034620861516554;121,0.00001106933072267711;122,0.00001073558205767177;123,0.0000122374510501958;124,0.000011569953720185119;125,0.000013071822712709149;126,0.000011403079387682449;127,0.000010401833392666429;128,0.00001090245639017444;129,0.000011291829832680669;130,0.000010846831612673551;131,0.00000995683517265931;132,0.00000906683873264507;133,0.000009289337842648629;134,0.000008232467070131718;135,0.000009623086507653968;136,0.00000923371306514774;137,0.000008899964400142399;138,0.000009789960840156639;139,0.00000917808828764685;140,0.000010012459950160202;141,0.00001151432894268423;142,0.0000088999644001424;143,0.00000956746173015308;144,0.00001067995728017088;145,0.00000995683517265931;146,0.0000083437166251335;147,0.00001029058383766465;148,0.00000956746173015308;149,0.00001034620861516554;150,0.000008454966180135281;151,0.00000995683517265931;152,0.00000901121395514418;153,0.00000812121751512994;154,0.00000928933784264863;155,0.000009789960840156639;156,0.00001051308294766821;157,0.000010068084727661091;158,0.00000917808828764685;159,0.00000928933784264863;160,0.000009623086507653968;161,0.000008677465290138841;162,0.000006786222855108579;163,0.000009066838732645071;164,0.000007620594517621929;165,0.000009400587397650409;166,0.00000912246351014596;167,0.000009789960840156639;168,0.000009066838732645071;169,0.00001023495906016376;170,0.00000928933784264863;171,0.00000934496262014952;172,0.00000800996796012816;173,0.000009678711285154861;174,0.000008621840512637949;175,0.00000956746173015308;176,0.000007620594517621929;177,0.0000083437166251335;178,0.00000767621929512282;179,0.000008454966180135278;180,0.00000956746173015308;181,0.00000895558917764329;182,0.0000088999644001424;183,0.00000856621573513706;184,0.00001095808116767533;185,0.00000917808828764685;186,0.00000856621573513706;187,0.0000083437166251335;188,0.00000734247063011748;189,0.000007787468850124601;190,0.00000934496262014952;191,0.00000812121751512994;192,0.00001023495906016376;193,0.00000795434318262727;194,0.00000695309718761125;195,0.000008065592737629048;196,0.00000767621929512282;197,0.000008399341402634389;198,0.00000650809896760413;199,0.00000867746529013884;200,0.00000873309006763973;201,0.000007620594517621929;202,0.00000800996796012816;203,0.00000756496974012104;204,0.000009344962620149518;205,0.00000739809540761837;206,0.00000851059095763617;207,0.00000839934140263439;208,0.000007286845852616591;209,0.000008232467070131718;210,0.00000773184407262371;211,0.00000806559273762905;212,0.00000784309362762549;213,0.000007787468850124601;214,0.000008288091847632611;215,0.00000806559273762905;216,0.00000756496974012104;217,0.000006841847632609469;218,0.000008065592737629048;219,0.000007509344962620149;220,0.00000767621929512282;221,0.0000067305980776076895;222,0.00000617435030259879;223,0.00000678622285510858;224,0.0000062855998576005695;225,0.00000617435030259879;226,0.00000634122463510146;227,0.00000878871484514062;228,0.000007286845852616589;229,0.000007008721965112141;230,0.00000856621573513706;231,0.000006786222855108579;232,0.0000066749733001068;233,0.0000071199715201139205;234,0.0000066749733001068;235,0.000007398095407618369;236,0.00000645247419010324;237,0.000007620594517621929;238,0.00000795434318262727;239,0.00000639684941260235;240,0.000007620594517621929;241,0.0000076205945176219295;242,0.00000600747597009612;243,0.00000734247063011748;244,0.000006786222855108579;245,0.00000589622641509434;246,0.000008288091847632611;247,0.0000063412246351014585;248,0.0000068418476326094684;249,0.00000650809896760413;250,0.00000700872196511214;251,0.0000066749733001068;252,0.000006452474190103239;253,0.000006730598077607689;254,0.0000062299750800996796;255,0.00000739809540761837;256,0.00000656372374510502;257,0.000006730598077607689;258,0.00000756496974012104;259,0.00000812121751512994;260,0.000006396849412602349;261,0.0000066749733001068;262,0.000007620594517621929;263,0.00000634122463510146;264,0.00000789871840512638;265,0.000008121217515129939;266,0.00000789871840512638;267,0.0000105687077251691;268,0.000008677465290138841;269,0.00000928933784264863;270,0.00001134745461018156;271,0.000012014951940192242;272,0.000012849323602705588;273,0.00001368369526521894;274,0.00001401744393022428;275,0.000014239943040227841;276,0.00001412869348522606;277,0.00001735493058027768;278,0.0000155749377002492;279,0.00001629805980776077;280,0.0000183561765752937;281,0.0000205811676753293;282,0.00001969117123531506;283,0.000019579921680313278;284,0.000017744304022783912;285,0.00001974679601281595;286,0.000020303043787824846;287,0.00002258365966536134;288,0.000020636792452830187;289,0.00002147116411534354;290,0.00002247241011035956;291,0.000020970541117835528;292,0.00002152678889284443;293,0.00002163803844784621;294,0.000021582413670345318;295,0.000022472410110359563;296,0.000022973033107867568;297,0.00002325115699537202;298,0.00002208303666785333;299,0.000023751779992880028;300,0.000024029903880384477;301,0.000023362406550373798;302,0.000022583659665361337;303,0.00002441927732289071;304,0.00002536489854040584;305,0.000026755517977928084;306,0.00002692239231043076;307,0.00002625489498042008;308,0.00002580989676041296;309,0.000027701139195443218;310,0.000027812388750445;311,0.00002619927020291919;312,0.0000012793698825204698;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0022084705411178356;66,0.0022023518155927374;67,0.002390752936988252;68,0.002633555090779637;69,0.002741578408686365;70,0.002768167052331791;71,0.002775898896404414;72,0.0027575427198291208;73,0.0027527033641865433;74,0.0027921969562121752;75,0.002855108579565682;76,0.0029301464044143824;77,0.002990944286222855;78,0.0030761058205767177;79,0.003130339978640086;80,0.0030964088643645428;81,0.0030510190459238163;82,0.0031025832146671416;83,0.0031651610893556428;84,0.0032021515663937347;85,0.0031538692595229623;86,0.003161934852260591;87,0.003182905393378427;88,0.003181626023495906;89,0.0031093138127447494;90,0.003009244838020648;91,0.0028964934140263436;92,0.002770503292986828;93,0.0025475591847632616;94,0.002290795211819153;95,0.002057393645425418;96,0.001981743948024208;97,0.0019964288892844427;98,0.0019870839266642936;99,0.0019148273406906372;100,0.0019064279992880029;101,0.00197996395514418;102,0.002042986828052688;103,0.0021042297080811675;104,0.002104785955856177;105,0.0021366033285866856;106,0.0021372708259166963;107,0.0020944397472410113;108,0.002068184852260591;109,0.002049161178355287;110,0.0020680179779280885;111,0.002093939124243503;112,0.002084538536845853;113,0.002099612851548594;114,0.002138661445354219;115,0.002138383321466714;116,0.0020996684763260947;117,0.0020859847810608756;118,0.0021210283908864366;119,0.0021552932538269854;120,0.0021129071733713067;121,0.0021452251690993237;122,0.002190559362762549;123,0.002183383766464934;124,0.002162802598789605;125,0.0021906706123175504;126,0.0022615922036311855;127,0.0022813946244215023;128,0.0022506341224635103;129,0.00219061498754005;130,0.002176152545389818;131,0.0021330433428266285;132,0.002105564702741189;133,0.0020757498220007123;134,0.0020675729797080813;135,0.0020473811854752576;136,0.002002603239587042;137,0.0019677821288714846;138,0.001922447935208259;139,0.0018465201139195447;140,0.0018273851904592384;141,0.0018692150231399076;142,0.0018670456568173727;143,0.0018394001423994305;144,0.0018317239231043078;145,0.0018211552153791387;146,0.0018099746351014595;147,0.0017569085973656105;148,0.0017098500355998579;149,0.0017107956568173728;150,0.0017562411000355998;151,0.0017863341046635813;152,0.0017596342114631542;153,0.0016715245639017447;154,0.0016305291028835885;155,0.00161562166251335;156,0.0016073891954432186;157,0.0016174572801708792;158,0.0015747930758276969;159,0.0015192795478818086;160,0.0015055958526165895;161,0.0014578141687433253;162,0.0014244393022427911;163,0.0013853350836596653;164,0.0013822200961196155;165,0.001383388216447134;166,0.001396571288714845;167,0.0013904525631897474;168,0.0014261636703453186;169,0.0013913981844072623;170,0.0013643089177643292;171,0.0013189747241011034;172,0.0012786467604129583;173,0.0012660755606977575;174,0.001296613563545746;175,0.0012952785688857247;176,0.001285321733713065;177,0.0012641843182627272;178,0.0012207969918120328;179,0.00119749021003916;180,0.001189313367746529;181,0.0011866990032039872;182,0.0011780215379138485;183,0.0011562166251334995;184,0.0011617791028835883;185,0.0011324092203631184;186,0.0010559251512993945;187,0.0010112028301886792;188,0.0009871173015307939;189,0.0009725992346030616;190,0.0009514061943752225;191,0.0009486805802776789;192,0.0009527968138127447;193,0.0009412824848700607;194,0.000928377536489854;195,0.0008968382876468494;196,0.0008585128159487363;197,0.0008520603417586331;198,0.0008097298860804557;199,0.0007689569241723035;200,0.0007968805624777502;201,0.0008013305446778213;202,0.0007887593449626201;203,0.0007862006051975793;204,0.0007934874510501958;205,0.0007447601459594162;206,0.0007048771804912782;207,0.0006974790850836597;208,0.000682682894268423;209,0.0006800129049483804;210,0.0006908041117835528;211,0.0007005940726237095;212,0.000653813634745461;213,0.0006303399786400856;214,0.0006109269312922749;215,0.0005895113919544323;216,0.000580555802776789;217,0.0005711552153791385;218,0.0005358334816660734;219,0.0004835461908152368;220,0.0004653568885724457;221,0.00045679067283730876;222,0.00044383009967960125;223,0.00043654325382698467;224,0.0004175195799216803;225,0.0004098989854040584;226,0.0003948802954788181;227,0.0003661779102883589;228,0.00034848923104307584;229,0.0003422592559629761;230,0.0003287980598077608;231,0.00031967559629761486;232,0.0003303555535777857;233,0.0003265174439302243;234,0.00029403257386970453;235,0.00027083704165183336;236,0.0002618258276966892;237,0.0002556514773940905;238,0.0002569308472766109;239,0.00023946466714133143;240,0.00021682538269846927;241,0.00020408730865076541;242,0.00020063857244571022;243,0.00019068173727305093;244,0.00018639862940548238;245,0.0001748286756852973;246,0.00015107689569241725;247,0.00014028568885724455;248,0.00014000756496974014;249,0.00011603328586685653;250,0.00010029147383410468;251,0.00008683027767888929;252,0.00008816527233891064;253,0.00008911089355642578;254,0.00008293654325382698;255,0.00006402411890352439;256,0.00004650231399074404;257,0.00003259611961552153;258,0.000019913670345318622;259,0.000010012459950160199;260,0.0000035599857600569602;261,0.00000005562477750089001;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00006473333481666073;66,0.00005907351370594518;67,0.000035446889462442155;68,0.000008644438078497686;69,0.000008649652901388395;70,0.00000873309006763973;71,0.000008049948268956925;72,0.0000048584766598433605;73,0.00000456123175507298;74,0.000005884058495016021;75,0.000009490977661089356;76,0.000009066838732645068;77,0.000007033057805268779;78,0.000006744504271982912;79,0.000007523251156995372;80,0.00000817162746974012;81,0.000008649652901388395;82,0.00000884433962264151;83,0.000008620102238341047;84,0.00001184286278479886;85,0.000012425184674261305;86,0.000011309212575649698;87,0.000015628824203453188;88,0.000021352961463154143;89,0.000033174964956390174;90,0.00003617174984425062;91,0.000039552693351726595;92,0.00004707594450872197;93,0.000045254233045567826;94,0.00003522439035243859;95,0.000022161259011213952;96,0.000013016197935208258;97,0.00001700206089800641;98,0.000016471887237451052;99,0.00001629284498487006;100,0.000014453750778746883;101,0.00001135962253025988;102,0.000012336532685119259;103,0.000014177365165539337;104,0.000015931283931114277;105,0.000016647452941438237;106,0.000014879627981488073;107,0.00001791117835528658;108,0.000013791468271626913;109,0.000017440106020825917;110,0.00001893328364186543;111,0.00001881508098967604;112,0.000017043779481132075;113,0.000016831710016909933;114,0.000019220098900854397;115,0.000016637023295656816;116,0.000019612948891954433;117,0.00001639887971698113;118,0.000011818526944642222;119,0.000009922069686721253;120,0.00001202190503737985;121,0.00001091636258454966;122,0.000015310720007119973;123,0.0000176765113252047;124,0.000015058670234069064;125,0.000012574676263794945;126,0.00000810904959505162;127,0.000010384450649697403;128,0.000016073822423460307;129,0.000018253618391776435;130,0.000018062408219117124;131,0.000015430660933606265;132,0.000015218591469384123;133,0.0000158217726504094;134,0.000014749257409220362;135,0.00001603384211463154;136,0.000015745288581345675;137,0.000015529742568529727;138,0.00002136165283463866;139,0.000020523804623531506;140,0.00001793029937255251;141,0.00001486398351281595;142,0.000019538203097187612;143,0.000018559554668031326;144,0.000017448797392310428;145,0.000019699862606799574;146,0.0000185421719250623;147,0.000016720460461908148;148,0.00001856476949092204;149,0.000021679757030971876;150,0.00001723672792808829;151,0.000015905209816660734;152,0.000015533219117123533;153,0.00001262160966981132;154,0.000013092682004271982;155,0.000012035811231755075;156,0.000012037549506051977;157,0.000011773331812922749;158,0.000013150045056069775;159,0.000017222821733713066;160,0.000021992646404414386;161,0.000027541217960128163;162,0.00002755860070309719;163,0.000026032395870416516;164,0.000023904748131007475;165,0.0000249059941260235;166,0.000022291629583481666;167,0.000017902486983802065;168,0.000017709538536845854;169,0.00002153374199003204;170,0.000023557093271626918;171,0.000017850338754894978;172,0.000015990385257208972;173,0.00001884463165272339;174,0.000020033611271804915;175,0.000025182379739231044;176,0.000026388742101281595;177,0.000027763717070131712;178,0.0000216936632253471;179,0.000018703831434674263;180,0.0000194686721253115;181,0.00002096532629494482;182,0.00002195266609558562;183,0.000019004552888038445;184,0.000015700093449626203;185,0.00001713243147027412;186,0.00002115132164471342;187,0.000028811896471164113;188,0.000028904025008899966;189,0.000023779592381630474;190,0.00002608802064791741;191,0.000027513405571377723;192,0.000029003106643823428;193,0.00002686155271003916;194,0.000026593858468316122;195,0.000027099696288714846;196,0.00002072718271626913;197,0.000020819311254004983;198,0.000021179134033463868;199,0.000018933283641865434;200,0.000018931545367568528;201,0.000014248634411712355;202,0.000019717245349768603;203,0.000027506452474190105;204,0.000027047548059807763;205,0.000023663128003737987;206,0.000019632069909220365;207,0.000016530988563545747;208,0.000021226067439480246;209,0.000021443351726593097;210,0.000016708292541829834;211,0.00001607556069775721;212,0.000017577429690281238;213,0.000017633054467782127;214,0.000015116033285866858;215,0.000014879627981488077;216,0.000018509144713421146;217,0.00002092013116322535;218,0.000020944467003381985;219,0.00002652258922214311;220,0.000035919700071199714;221,0.00003106643823424706;222,0.00002765246751512994;223,0.000024099434852260592;224,0.000021297336685653257;225,0.00001563056247775009;226,0.00001655184785510858;227,0.00002073413581345675;228,0.000022347254360982555;229,0.00001857172258810965;230,0.000014844862495550019;231,0.000015185564257742968;232,0.000016298059807760766;233,0.000014650175774296906;234,0.00001585306158775365;235,0.000018175396048415805;236,0.000014629316482734071;237,0.000014142599679601283;238,0.000014295567817728728;239,0.000013843616500533998;240,0.000011573430268778927;241,0.00000993076105820577;242,0.000011495207925418298;243,0.000013495961641153435;244,0.000014385958081167677;245,0.000010102850213599145;246,0.000005778023762904948;247,0.00000845496618013528;248,0.00001034620861516554;249,0.000014761425329298684;250,0.000013064869615521536;251,0.000012147060786756854;252,0.000008694848033107866;253,0.000008912132320220719;254,0.000011681203275186897;255,0.00001251557493770025;256,0.00001440681737273051;257,0.000011514328942684228;258,0.000009657851993592026;259,0.000008162936098255608;260,0.000010714722766108935;261,0.000008913870594517624;262,0.0000071199715201139205;263,0.00000567372730509078;264,0.00000634122463510146;265,0.00001362807048771805;266,0.00001485181559273763;267,0.000010068084727661088;268,0.000010860737807048771;269,0.000011416985582057673;270,0.00001536634478462086;271,0.000015428922659309363;272,0.000010686910377358492;273,0.000009338009522961907;274,0.000012932760768956925;275,0.000010262771448914204;276,0.000009059885635457458;277,0.0000139061943752225;278,0.00001820320843716625;279,0.000020546402189391243;280,0.000016346731488074047;281,0.000015776577518689927;282,0.000014691894357422572;283,0.000011848077607689571;284,0.00001106933072267711;285,0.000006848800729797082;286,0.000004463888394446423;287,0.0000029828786934852266;288,0.0000032331901922392316;289,0.00000311498754004984;290,0.00000411623353506586;291,0.0000043943574225703095;292,0.000006786222855108579;293,0.000008211607778568887;294,0.00000846191927732289;295,0.000007919577696689212;296,0.000008392388305446779;297,0.000005798883054467783;298,0.000004693340601637594;299,0.000006209115788536846;300,0.000007537157351370594;301,0.000006494192773228908;302,0.00000805863964044144;303,0.000007008721965112141;304,0.00000617435030259879;305,0.00000506185475258099;306,0.000005228729085083659;307,0.000005680680402278391;308,0.00000851059095763617;309,0.000005472087486650055;310,0.0000028924884300462798;311,0.00000317061231755073;312,0.0000022249911000356;313,0.00000161311854752581;314,0.0000017799928800284797;315,0.0000013349946600213599;316,0.00000150186899252403;317,0.00000139061943752225;318,0.0000013349946600213597;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "tconstruct:cobalt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00003009300462798149;70,0.0002013616945532218;71,0.0004684718761124955;72,0.0006633254716981132;73,0.0008793164827340691;74,0.0011077118191527235;75,0.0013170278568885726;76,0.0015058739765040938;77,0.0017382186721253117;78,0.0019546546813812744;79,0.0021842181381274473;80,0.0024375889996440013;81,0.0026135857956568176;82,0.0027875244749021003;83,0.0027937544499822007;84,0.002603628960484158;85,0.002396927287290851;86,0.002170812566749733;87,0.0018900743147027411;88,0.0016118391776432897;89,0.0013599145603417587;90,0.0010558695265218939;91,0.0008016086685653258;92,0.0005952407440370239;93,0.00040522650409398364;94,0.00024786400854396587;95,0.00013049572801708794;96,0.00007420345318618726;97,0.00005951851192595231;98,0.00005651477394090424;99,0.00006424661801352795;100,0.00006769535421858312;101,0.00007331345674617301;102,0.00007370283018867926;103,0.00007186721253114987;104,0.00006797347810608758;105,0.00006508098967604131;106,0.00007081034175863296;107,0.0000656372374510502;108,0.00006802910288358847;109,0.00006602661089355642;110,0.000060408508365966546;111,0.00006241100035599858;112,0.00006697223211107157;113,0.00006608223567105732;114,0.00006124288002847989;115,0.00005940726237095052;116,0.00006280037379850481;117,0.00006380161979352082;118,0.0000644691171235315;119,0.00006491411534353863;120,0.00006363474546101816;121,0.0000623553755784977;122,0.00005846164115343539;123,0.000059852260590957635;124,0.00006218850124599504;125,0.00006163225347098611;126,0.00006196600213599147;127,0.00006085350658597367;128,0.00006480286578853685;129,0.00005812789248843006;130,0.000054512281950872205;131,0.00005901788892844428;132,0.00005823914204343182;133,0.000060742257030971873;134,0.000060352883588465653;135,0.000053900409398362415;136,0.00005746039515841937;137,0.000057349145603417584;138,0.00005490165539337843;139,0.00005428978284086864;140,0.000056459149163403345;141,0.00005651477394090424;142,0.000051230420078319686;143,0.00005562477750089;144,0.00005606977572089711;145,0.00005412290850836597;146,0.00005195354218583126;147,0.00005690414738341047;148,0.000056125400498398004;149,0.000052676664293342836;150,0.000056792897828408686;151,0.00005534665361338555;152,0.00005412290850836597;153,0.0000495060519757921;154,0.000051230420078319686;155,0.00005467915628337487;156,0.000052954788180847284;157,0.00005534665361338555;158,0.0000567372730509078;159,0.000048949804200783205;160,0.00005056292274830901;161,0.00005473478106087577;162,0.00005356666073335707;163,0.000056292274830900675;164,0.0000528435386258455;165,0.000048115432538269845;166,0.000050062299750801;167,0.00005312166251334995;168,0.00005451228195087219;169,0.00005039604841580634;170,0.00005106354574581702;171,0.000049672926308294766;172,0.000052454165183339266;173,0.000052454165183339266;174,0.00005072979708081168;175,0.00005022917408330367;176,0.00005161979352082592;177,0.000050117924528301885;178,0.000050173549305802784;179,0.000055235404058383766;180,0.000050952296190815245;181,0.00005334416162335351;182,0.000056069775720897125;183,0.000050062299750801;184,0.000056514773940904245;185,0.00005412290850836597;186,0.00004978417586329655;187,0.00004833793164827341;188,0.000045334193663225345;189,0.0000495060519757921;190,0.00004800418298326807;191,0.0000489498042007832;192,0.00005551352794588822;193,0.000046446689213243154;194,0.00004733668565325739;195,0.00004872730509077965;196,0.000049895425418298336;197,0.000048671680313278756;198,0.00004644668921324315;199,0.0000472810608757565;200,0.00004995105019579923;201,0.00005334416162335351;202,0.00005278791384834461;203,0.00004794855820576718;204,0.000046557938768244925;205,0.0000489498042007832;206,0.000050062299750801;207,0.0000539004093983624;208,0.000050284798860804556;209,0.0000494504271982912;210,0.00004661356354574582;211,0.000045334193663225345;212,0.000045946066215735135;213,0.00004705856176575294;214,0.00004700293698825205;215,0.000047058561765752937;216,0.00004472232111071556;217,0.00004049483802064791;218,0.00004105108579565682;219,0.000039437967248131004;220,0.0000406617123531506;221,0.00004199670701317195;222,0.000045334193663225345;223,0.00004327607689569242;224,0.00004144045923816305;225,0.00004349857600569598;226,0.00004266420434318263;227,0.00004155170879316483;228,0.00004105108579565682;229,0.00004127358490566038;230,0.00004221920612317551;231,0.000044499822000712;232,0.00004583481666073336;233,0.00004199670701317195;234,0.00004043921324314703;235,0.00003676797792808829;236,0.00003927109291562834;237,0.000038436721253114995;238,0.00004244170523317907;239,0.000040049839800640794;240,0.00003882609469562122;241,0.00004016108935564258;242,0.0000417185831256675;243,0.00003993859024563902;244,0.00003815859736561054;245,0.00004572356710573158;246,0.00004683606265574938;247,0.000040995461018155925;248,0.00004055046279814881;249,0.00003832547169811321;250,0.00003982734069063724;251,0.00003966046635813457;252,0.000040105464578141687;253,0.00004043921324314703;254,0.000042552954788180845;255,0.000040939836240655046;256,0.00004294232823068708;257,0.00004043921324314703;258,0.00004600169099323603;259,0.00004566794232823069;260,0.00004105108579565682;261,0.000040383588465646135;262,0.000037936098255606976;263,0.000039994215023139915;264,0.00004066171235315059;265,0.000051230420078319686;266,0.00005323291206835173;267,0.00005412290850836597;268,0.000060186009255962976;269,0.00006519223923104308;270,0.00006597098611605555;271,0.00006802910288358847;272,0.0000711997152011392;273,0.00007687344250622999;274,0.00008093405126379495;275,0.00008360404058383768;276,0.0000901121395514418;277,0.00009128025987896048;278,0.0000923371306514774;279,0.000095062744749021;280,0.00010234959060163759;281,0.00010913581345674617;282,0.00011225080099679601;283,0.00011247330010679958;284,0.000111750177999288;285,0.00010813456746173016;286,0.00011425329298682806;287,0.00011803577785688858;288,0.00011914827340690637;289,0.00011781327874688504;290,0.0001244326272694909;291,0.00012165138839444642;292,0.0001224301352794589;293,0.00013333259166963332;294,0.00013199759700961196;295,0.0001396738163047348;296,0.0001307738519045924;297,0.00013533508365966537;298,0.0001335550907796369;299,0.00014000756496974012;300,0.00013361071555713778;301,0.0001378381986472054;302,0.00014340067639729442;303,0.00013806069775720896;304,0.00013922881808472765;305,0.0001478506585973656;306,0.00014634878960484158;307,0.00015680624777500893;308,0.00015508187967248134;309,0.00014579254182983269;310,0.00008249154503381985;311,0.0000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0056849078853684586;66,0.005528435386258455;67,0.005744203898184407;68,0.006069219473122108;69,0.0059540205589177645;70,0.00562121751512994;71,0.005341146760412958;72,0.005083548415806337;73,0.004888027322890709;74,0.004623253381986473;75,0.004438189747241011;76,0.004302075916696334;77,0.004222143111427554;78,0.004113007297970808;79,0.003974167853328586;80,0.0037533374866500534;81,0.0034855041829832682;82,0.003241033285866857;83,0.003009689836240655;84,0.002806659398362406;85,0.002630217604129584;86,0.0025100680847276614;87,0.0022875133499466;88,0.002015897561409754;89,0.0017614142043431828;90,0.0015325738697045213;91,0.0013115766286934854;92,0.0010839044143823428;93,0.0008368191527233892;94,0.0006233312566749733;95,0.0004559006763972945;96,0.00034231488074047705;97,0.00025014462442150235;98,0.00015218939124243504;99,0.00006352349590601637;100,0.000017577429690281238;101,0.0000017799928800284801;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003422940214489142;66,0.00031322312210751155;67,0.00020488517655304375;68,0.00007279197445710217;69,0.000034542986828052693;70,0.00003055190904236383;71,0.00003037112851548594;72,0.000027923638305446778;73,0.00003265174439302243;74,0.000032596119615521546;75,0.000027311765752936988;76,0.00002981488074047704;77,0.00002797926308294767;78,0.000028215668387326456;79,0.000030120817016731938;80,0.000027450827696689216;81,0.000025344039248843003;82,0.000026520850947846208;83,0.00002671379939480242;84,0.000024753025987896044;85,0.00002998175507297971;86,0.00003582235671057316;87,0.00004600169099323603;88,0.00006024163403346387;89,0.00007131096475614098;90,0.0000681055869526522;91,0.00007788164159843361;92,0.00008607586663403346;93,0.00008410466358134568;94,0.00006009388071822712;95,0.00003620825360448558;96,0.00002041429334282663;97,0.000018307504894980418;98,0.000020087497775008904;99,0.00001718805624777501;100,0.00001607556069775721;101,0.00001824492702029192;102,0.00001952429690281239;103,0.000012459950160199359;104,0.000011458704165183341;105,0.000015880873976504093;106,0.000016374543876824493;107,0.0000160686076005696;108,0.00001763305446778213;109,0.00001535243859024564;110,0.000014406817372730508;111,0.00001006808472766109;112,0.00000650809896760413;113,0.0000048949804200783195;114,0.00000478373086507654;115,0.0000038937344250623005;116,0.00000422748309006764;117,0.0000019607734069063725;118,0.0000006188256496974013;119,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00016091726648718405;66,0.00015776056036400857;67,0.0001013570359781061;68,0.00003439697178711286;69,0.00001580178249599502;70,0.000017474871506763975;71,0.00001840050256986472;72,0.00001600081490299039;73,0.000016119017555179782;74,0.000020115310163759347;75,0.000023088628348611606;76,0.000020436890908686368;77,0.0000198371862762549;78,0.000020177888038447848;79,0.000022236873943129228;80,0.000018341401243770024;81,0.000015787007164471344;82,0.000015922592559629763;83,0.00002261060291696333;84,0.0000339311142755429;85,0.0000435394254516732;86,0.000048223205544677825;87,0.00005793146749288004;88,0.00007437293493013528;89,0.00008874933250267;90,0.00010439814686053758;91,0.00012423533313679245;92,0.00014006318974724104;93,0.00012299072874021006;94,0.00008412291546146315;95,0.00004620333081167675;96,0.000026074114453542186;97,0.00002730220524430402;98,0.000027584674817550728;99,0.00003210244971520114;100,0.00003775966341447135;101,0.00003728598366856532;102,0.00003493236027055892;103,0.00003231799572801709;104,0.00002820176219295123;105,0.00003829765930936277;106,0.000045104741456034164;107,0.000049179256407974366;108,0.00004298665422525809;109,0.000036073537346475616;110,0.0000349201923504806;111,0.000034164912168476325;112,0.00002909349690726237;113,0.00003112988524608402;114,0.000028399925462798146;115,0.00003207202991500534;116,0.000037989984758810966;117,0.000033137592059006766;118,0.00003045456568173727;119,0.000028646760412958352;120,0.000025616948313456746;121,0.00002130428978284087;122,0.000019446074559451762;123,0.000020029265586062658;124,0.00002147116411534354;125,0.00002647739409042364;126,0.000023418900465023138;127,0.000020017966803132786;128,0.000016608341769757922;129,0.000022131708348166607;130,0.000024613964044143827;131,0.00003434134700961196;132,0.00003365994348522606;133,0.00001975374911000356;134,0.000014810097009611961;135,0.00001710983390441438;136,0.00001932439535866857;137,0.000018038072378960483;138,0.000022861783552865783;139,0.00002008054467782129;140,0.000018453519935920253;141,0.000015338532395870416;142,0.000010916362584549663;143,0.000013781038625845497;144,0.000018251880117479532;145,0.000016270247419010327;146,0.000014573691705233179;147,0.00001368369526521894;148,0.00001595040494838021;149,0.000013683695265218939;150,0.0000116812032751869;151,0.000008816527233891065;152,0.00001271460734469562;153,0.00001734102438590246;154,0.000012035811231755073;155,0.000007662313100747598;156,0.000007641453809184762;157,0.00000780658986739053;158,0.000007128662891598433;159,0.000008008229685831258;160,0.000009890780749377003;161,0.00001564359953497686;162,0.000017222821733713066;163,0.00001084683161267355;164,0.000010795552520914916;165,0.000011472610359558562;166,0.000007783992301530793;167,0.000005285222999733002;168,0.000006197817005606979;169,0.0000045368959149163405;170,0.00000584060163759345;171,0.00000578497686009256;172,0.00000522872908508366;173,0.00000567372730509078;174,0.0000039493592025631895;175,0.0000026491300284798855;176,0.0000027812388750445;177,0.0000026143645425418303;178,0.00000322623709505162;179,0.00000161311854752581;180,0.0000011681203275186902;181,0.00000172436810252759;182,0.0000016687433250267;183,0.0000015018689925240298;184,0.00000161311854752581;185,0.0000010012459950160199;186,0.0000014392911178355288;187,0.00000045195131719473116;188,0.0000005214822890708437;189,0.00000018773362406550372;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003409242613029548;66,0.0003083768133677465;67,0.000196063434496262;68,0.00006324537201851192;69,0.000032943774474902104;70,0.000028730197579209688;71,0.00002809051263794945;72,0.000025827279503381986;73,0.000026094973745105024;74,0.00002709795801441794;75,0.00003215112139551442;76,0.00003103862584549662;77,0.000032317995728017084;78,0.00002894226704343183;79,0.00002277660811231755;80,0.000022773131563723742;81,0.00002121042297080812;82,0.000022234266531683874;83,0.000025719506496974017;84,0.000032178933784264866;85,0.00003863314624866501;86,0.00004291799239053044;87,0.00004669004761480954;88,0.00005334416162335351;89,0.00006179217470630118;90,0.00007909843360626558;91,0.00009532000934496262;92,0.00009991079176308295;93,0.00008625664716091136;94,0.00006327318440726236;95,0.00003031550373798505;96,0.00001652055891776433;97,0.00001846742613029548;98,0.000023863029547881813;99,0.0000250311498754005;100,0.00002859113563545746;101,0.000023584905660377357;102,0.00001796680313278747;103,0.000014963065147739414;104,0.000011848077607689571;105,0.000008899964400142399;106,0.000011556047525809896;107,0.000015686187255250977;108,0.000017431414649341406;109,0.000014086974902100394;110,0.000013850569597721609;111,0.000011736828052687791;112,0.00000545122819508722;113,0.0000053399786400854395;114,0.000004505606977572089;115,0.000005729352082591669;116,0.000005701539693841225;117,0.00000433873264506942;118,0.0000011124955500178;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00609558561765753;66,0.006036512103951584;67,0.006352572089711642;68,0.006735103684585262;69,0.006733879939480243;70,0.006565448113207548;71,0.006417819953720185;72,0.0062071689213243145;73,0.006008810964756142;74,0.005828030437878249;75,0.005791985582057672;76,0.0056595986116055545;77,0.005486160555357779;78,0.005396549038803844;79,0.0053576673193307224;80,0.0052740076539693845;81,0.005112528924884301;82,0.004958559540761838;83,0.004774497152011392;84,0.004555836151655394;85,0.0043711062655749375;86,0.00424122241011036;87,0.004196778212887148;88,0.003954309807760769;89,0.0036841402634389462;90,0.003415138839444642;91,0.003146471164115344;92,0.002733568440726237;93,0.002336129405482378;94,0.0020455455678177288;95,0.0017684229263082948;96,0.00158875489498042;97,0.0015266776432894269;98,0.0014613185297258813;99,0.001429612406550374;100,0.001326317194731221;101,0.0012751980242079034;102,0.0012422681559273764;103,0.0011660065859736561;104,0.0010492501779992879;105,0.0009606399074403704;106,0.0008852683339266644;107,0.0008337597899608401;108,0.0007538826094695623;109,0.0006855197579209683;110,0.0006058650765396938;111,0.0005457346920612318;112,0.000474312477750089;113,0.00040211151655393377;114,0.000327685564257743;115,0.0002747864008543966;116,0.00022700471698113207;117,0.00016848745105019577;118,0.00009261525453898184;119,0.00003971609113563547;120,0.000012515574937700252;121,0.00000122374510501958;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.0008741433784264863;72,0.0032611138305446777;73,0.005603139462442151;74,0.006454866055535778;75,0.006487350925596299;76,0.006514662691349235;77,0.006407195621217514;78,0.006432393645425419;79,0.006496640263438947;80,0.0064288892844428635;81,0.006350958971164115;82,0.006354685831256675;83,0.00635685519757921;84,0.006370483268066929;85,0.006449414827340691;86,0.006497140886436454;87,0.006380106354574583;88,0.00601370594517622;89,0.0055614765040939845;90,0.00519307360270559;91,0.004778835884656461;92,0.004368603150587399;93,0.003964822890708437;94,0.0036652278390886433;95,0.003279525631897473;96,0.00309685386258455;97,0.0030645914916340336;98,0.0031185475258098967;99,0.003224679601281595;100,0.0033635746707013172;101,0.0034883410466358135;102,0.003551363919544322;103,0.003533842114631542;104,0.003479830455678177;105,0.003440781861872553;106,0.0033895514417942333;107,0.003333314791740833;108,0.0033408797614809544;109,0.003357678444286223;110,0.0033501690993236032;111,0.0033600146849412605;112,0.003320409843360627;113,0.0033105642577429687;114,0.0032597788358846567;115,0.0032329676931292274;116,0.003216502758988964;117,0.0032606688323246705;118,0.003259000088999644;119,0.0032204521181915277;120,0.00318935786756853;121,0.003174116678533286;122,0.003169666696333215;123,0.0031714466892132434;124,0.0031869660021359917;125,0.0031410199359202563;126,0.0030979663581345677;127,0.003066538358846565;128,0.0030241522783908863;129,0.003000901121395515;130,0.0029953942684229264;131,0.002960183784264863;132,0.0029497819508721964;133,0.0029570687967248135;134,0.0029721431114275547;135,0.0029498375756496975;136,0.0028972165361338554;137,0.0029290895336418657;138,0.0029354863830544677;139,0.0028890396938412244;140,0.0028666785332858674;141,0.0028991634033463873;142,0.0029158508365966537;143,0.0029155727127091495;144,0.002864008543965824;145,0.002879472232111072;146,0.002895158419366323;147,0.002871629138483446;148,0.0028309118013527946;149,0.002822568084727661;150,0.002814168743325027;151,0.002862172926308295;152,0.0028625066749733;153,0.002882364720541118;154,0.002891542808828765;155,0.002907173371306515;156,0.0029092871128515493;157,0.0028765797436810254;158,0.0028588354396582413;159,0.002830800551797793;160,0.002775231399074404;161,0.0027123754004983987;162,0.002703642310430759;163,0.002693629850480598;164,0.00266937744749021;165,0.002684729886080456;166,0.002724835350658597;167,0.0027656083125667495;168,0.002796925062299751;169,0.0027877469740121043;170,0.0027618258276966897;171,0.002700861071555714;172,0.0026604218583125673;173,0.002679668031327875;174,0.0026921279814880743;175,0.0026909042363830547;176,0.0027196622463510145;177,0.002752814613741545;178,0.002756652723389107;179,0.002723667230331079;180,0.0027370728017087932;181,0.0027563745995016027;182,0.0027889707191171235;183,0.0027858001067995733;184,0.0027937544499822;185,0.002758377091491634;186,0.002711374154503382;187,0.002615755161979352;188,0.002540049839800641;189,0.002509289337842649;190,0.0025562366500534;191,0.002567750978996084;192,0.0025316504983980063;193,0.002493213777144891;194,0.0025105687077251687;195,0.002468238252046992;196,0.002442595229619082;197,0.0024761925952296194;198,0.002492156906372375;199,0.002525865521537914;200,0.002533319241723033;201,0.0025125711997152013;202,0.002515296813812745;203,0.002480253203987184;204,0.0025081768422926306;205,0.0024848144357422566;206,0.0024781950872196515;207,0.0025094562121751513;208,0.0024899875400498403;209,0.002490376913492346;210,0.0024941593983624066;211,0.0025150743147027413;212,0.0025092337130651473;213,0.0024638438946244217;214,0.002425740922036312;215,0.0024146159665361343;216,0.0023951472944108224;217,0.002318329476682093;218,0.002265652812388751;219,0.0021634700961196155;220,0.002144168298326807;221,0.0021097365610537556;222,0.002123197757208971;223,0.0021615232289070845;224,0.002155682627269491;225,0.002108012192951228;226,0.002107010946956212;227,0.0021190815236739055;228,0.002128537735849057;229,0.0021797681559273764;230,0.0021970674617301537;231,0.0022059118013527945;232,0.002202629939480242;233,0.0021376601993592023;234,0.002052999288002848;235,0.0019990432538269844;236,0.002008221342114632;237,0.0020002113741545034;238,0.001965724012103952;239,0.0020082769668921326;240,0.002081145425418298;241,0.0021196377714489145;242,0.002132375845496618;243,0.0021027834638661447;244,0.0020926597543609827;245,0.0020882097721609113;246,0.0020708548415806338;247,0.0020824804200783196;248,0.00209627536489854;249,0.002074303577785689;250,0.002054167408330367;251,0.002030971876112496;252,0.002014562566749733;253,0.0021101259344962616;254,0.002152122641509434;255,0.0021555157529369886;256,0.0021666963332146673;257,0.002155126379494482;258,0.002165917586329655;259,0.002162135101459594;260,0.002154737006051976;261,0.002175540672837309;262,0.002214700516197935;263,0.0022324448202207196;264,0.0022803377536489856;265,0.002438645870416518;266,0.0025873865254538984;267,0.002744415272338911;268,0.002928199537201851;269,0.0031318418476326097;270,0.003338042897828409;271,0.00357122196511214;272,0.003797559184763262;273,0.004018333926664294;274,0.004180535777856889;275,0.004388238697045212;276,0.004552498665005339;277,0.004711418654325382;278,0.0049452652189391245;279,0.005134723211107156;280,0.005290695087219651;281,0.005459293787824849;282,0.005587175151299395;283,0.005703264061943753;284,0.005836151655393379;285,0.0059840023139907435;286,0.006083459416162335;287,0.006124343627625489;288,0.006212230776076896;289,0.0063217559629761486;290,0.006423938679245284;291,0.006514106443574226;292,0.006641765307938769;293,0.006660733357066572;294,0.00662185163759345;295,0.006666907707369171;296,0.006766086685653258;297,0.0068022984158063364;298,0.006802131541473834;299,0.006820487718049128;300,0.006955377803488786;301,0.0070298593805624785;302,0.007107900943396226;303,0.0072409554111783556;304,0.007313378871484514;305,0.007417397205411179;306,0.007479752580989677;307,0.0065628337486650055;308,0.0038363296546813815;309,0.0010500845496618015;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006020448649068981;70,0.0010813722094190502;71,0.001616434538751846;72,0.001899007826619428;73,0.001997028726937836;74,0.001990902182614457;75,0.0019603894399507398;76,0.001944879779717728;77,0.0019078634160206442;78,0.0018699976775121748;79,0.0018057156205984865;80,0.0017738488297489056;81,0.0017953898129138854;82,0.0017981283801308638;83,0.0017636734718627339;84,0.001714464961209395;85,0.0017162932119244852;86,0.0016795758433964317;87,0.001585916082804644;88,0.0015365037983736856;89,0.0014921572919657888;90,0.0014386238257145657;91,0.0013266701314049107;92,0.0012258059203389723;93,0.001183765676031048;94,0.0011592728297323295;95,0.001101378223754486;96,0.0010422057467039077;97,0.001003332565874311;98,0.0009489840045126101;99,0.0008976958586708568;100,0.0008147256514788598;101,0.0007436200296566642;102,0.0006664830849025007;103,0.0005909991835032307;104,0.0005632745231800251;105,0.000526271490477739;106,0.00047877506044196856;107,0.00044177202773968246;108,0.00040101346336014927;109,0.000363016319331533;110,0.0003139182654922309;111,0.0002743194976600828;112,0.00024068539778591524;113,0.0001990431788940887;114,0.00015811892929350056;115,0.00012183386588245274;116,0.00008654291379773502;117,0.00005627774675168602;118,0.000033634099874167595;119,0.000013254817684401023;120,0.000001877765838623478;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "bigreactors:anglesite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00011205843784020698;70,0.00020644378543454596;71,0.00031916496415897297;72,0.0003814073788686394;73,0.00040543173592161633;74,0.000410126150518175;75,0.00043221751332550996;76,0.00043017406226583156;77,0.0004269155862517496;78,0.00042012249218849405;79,0.00041598036166211875;80,0.0004151519355568437;81,0.0004153176207778987;82,0.0004425452254379392;83,0.00044503050375376436;84,0.00045243111029422156;85,0.0004432631947291776;86,0.0004394524346449122;87,0.00044121974366949905;88,0.00044955923312926804;89,0.00045336999321353335;90,0.00044790238091871787;91,0.00043011883385881317;92,0.00042106137510780585;93,0.0004206747762586775;94,0.0004187970104200539;95,0.000406370618840928;96,0.0004143787378585869;97,0.0004121143731708352;98,0.0004069229029111113;99,0.00039653996239166387;100,0.0003875929604546933;101,0.0003762159086089157;102,0.00038278808904409784;103,0.000367268906671945;104,0.0003560023116402041;105,0.00035539479916300246;106,0.00032430120601167835;107,0.00032026953229933973;108,0.00031303461097993745;109,0.0003083954247903972;110,0.00030845065319741547;111,0.00028497858021462203;112,0.0002817201042005401;113,0.00027122670686705594;114,0.00026172742085990184;115,0.00025913168573004;116,0.000263218587849397;117,0.0002701773671337076;118,0.00025714346307737987;119,0.0002490801156527026;120,0.00024786509069829913;121,0.00023030245726646774;122,0.00022389596205234062;123,0.00021572215781362665;124,0.0002150594169294066;125,0.00020688561269069264;126,0.00020655424224858262;127,0.00021014408870477454;128,0.0002031300810134457;129,0.0002018045992450056;130,0.0002010866299537672;131,0.00019462490633262168;132,0.0001890468372237696;133,0.0001792161807745055;134,0.00018048643413592726;135,0.00017209171626913995;136,0.0001693855243252414;137,0.00015933395424790398;138,0.00016413882565849934;139,0.00016242674504093088;140,0.00015331405788290516;141,0.00014166086400203593;142,0.00014950329779863988;143,0.00014889578532143816;144,0.00014127426515290757;145,0.00014237883329327433;146,0.00014900624213547484;147,0.00013326614613524862;148,0.0001314988371106618;149,0.0001311674666685518;150,0.00012956584286502;151,0.00011388097527181214;152,0.00011758127854204075;153,0.00012343548968598455;154,0.00012177863747543439;155,0.00012465051464038792;156,0.00011702899447185737;157,0.00011145092536300528;158,0.00011266595031740869;159,0.0001010679848435578;160,0.00009604219980488909;161,0.00010830290616296001;162,0.00010670128235942823;163,0.00010614899828924486;164,0.00009355692148906388;165,0.0000923971249416788;166,0.00009311509423291718;167,0.00009245235334869713;168,0.00009272849538378882;169,0.00009234189653466046;170,0.00008853113645039517;171,0.00009101641476622036;172,0.00008676382742580838;173,0.00008372626503979979;174,0.00009002230343989028;175,0.00008599062972755163;176,0.00008599062972755162;177,0.00008046778902571789;178,0.00007439266425370074;179,0.0000712446450536555;180,0.00007290149726420564;181,0.00007803773911691102;182,0.00007428220743966407;183,0.0000715207870887472;184,0.00006688160089920682;185,0.00006997439169223373;186,0.00007621520168530588;187,0.00007113418823961883;188,0.00006953256443608703;189,0.00007025053372732542;190,0.00006870413833081197;191,0.00006704728612026184;192,0.0000678757122255369;193,0.00006472769302549165;194,0.00006638454523604179;195,0.00006815185426062859;196,0.00006748911337640854;197,0.00006395449532723494;198,0.00006246332833773982;199,0.00005865256825347453;200,0.00006489337824654668;201,0.00006572180435182174;202,0.000059701907986822946;203,0.000053295412772695775;204,0.000050036936758613855;205,0.000053902925249897485;206,0.00005219084463232903;207,0.000051638560562145655;208,0.00005191470259723733;209,0.000054013382063934166;210,0.00005202515941127402;211,0.00005108627649196228;212,0.00005368201162182414;213,0.000047330744814715324;214,0.000041697447298844886;215,0.000042636330218156614;216,0.000048435312955082076;217,0.000050865362863888915;218,0.00004280201543921163;219,0.00004020628030934977;220,0.000037058261109304524;221,0.00003346841465311258;222,0.000040537650751459794;223,0.00003551186571279107;224,0.00003772100199352458;225,0.000039709224646184734;226,0.00004031673712338645;227,0.000037334403144396215;228,0.00003374455668820427;229,0.00003252953173380084;230,0.00003247430332678251;231,0.00003446252597944266;232,0.000033026587396965885;233,0.00003081745111623239;234,0.000028332172800407185;235,0.00002684100581091207;236,0.000028056030765315497;237,0.000027779888730223806;238,0.000026454406961783708;239,0.000025405067228435294;240,0.000022809332098573428;241,0.00001833583113008808;242,0.00001651329369848294;243,0.000017783547059904703;244,0.000019109028828344808;245,0.00001817014590903307;246,0.000016678978919537955;247,0.000013972786975639414;248,0.000015298268744079513;249,0.000013917558568621077;250,0.000010879996182612507;251,0.000009167915565044041;252,0.000010714310961557495;253,0.00001082476777559417;254,0.000010272483705410794;255,0.000010162026891374117;256,0.000009333600786099054;257,0.000009167915565044041;258,0.000008008119017658952;259,0.000007455834947475576;260,0.000007842433796603938;261,0.000005798982736925449;262,0.00000414213052637532;263,0.0000024300499088068546;264,0.0000003865988491283632;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00012269836538257128;70,0.0002208242382461845;71,0.0002434586620482045;72,0.00023643726221764025;73,0.00021336076196014337;74,0.0002088940347830349;75,0.00021644187399085557;76,0.0002176071929793627;77,0.00019952919917519578;78,0.00017773143429929166;79,0.00015749737648463789;80,0.0001597500233490814;81,0.00015513241034306057;82,0.00015618605069466147;83,0.00014099759817385755;84,0.00011706625551571015;85,0.00010377811929291206;86,0.00011157056468290058;87,0.00011581584923569339;88,0.00011191729003067811;89,0.00009933871293894837;90,0.00008561634156686141;91,0.00005991786333127664;92,0.00004731212025515184;93,0.0000411795619563087;94,0.00003443448451485529;95,0.000025966520568393596;96,0.00002118475101270616;97,0.000015359046772816018;98,0.000011404323847411329;99,0.000005672129989555204;100,0.0000012132990666841041;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0005418459012569101;70,0.0009780074846146608;71,0.001469658381603215;72,0.0016540260396530515;73,0.0016219554750258513;74,0.0016042385829399346;75,0.0015788906485463454;76,0.0015177851772501256;77,0.0014442266523851846;78,0.0014157287943637224;79,0.001382845039053873;80,0.001296860122609806;81,0.0012037164619594655;82,0.0011419768161964486;83,0.0010912771385536149;84,0.001072707062800656;85,0.0010489855097723657;86,0.0009920202645746928;87,0.0008836887919943094;88,0.0007892558337042651;89,0.0007065179667073107;90,0.0006428681798325908;91,0.0005799801640891582;92,0.0005360450140921564;93,0.00044539044061329763;94,0.0003574382502226809;95,0.0002803946224321;96,0.00022825900620678928;97,0.00017634430360955193;98,0.00010421600404360305;99,0.000040758564379533144;100,0.000008173804238713965;101,0.0000000552284070183376;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00004848570622078218;70,0.00008790242121538687;71,0.00012019327142591372;72,0.00010675845007440016;73,0.00011207437168704267;74,0.00011421802566479574;75,0.00008957846393189801;76,0.00007624715053575624;77,0.00008980660548717833;78,0.00009382138077312491;79,0.00008551200651822922;80,0.00009615995883753025;81,0.00008903911668511525;82,0.00007839585131029592;83,0.00006389778414805334;84,0.000047665392971656035;85,0.00003665100568151992;86,0.00003454214702888341;87,0.00003609619517280637;88,0.00003468246883566943;89,0.00003278430302980071;90,0.000022923534895271204;91,0.000021601869981596358;92,0.000023970202926273244;93,0.000025326406871964012;94,0.000021810239087251505;95,0.000024073474065392287;96,0.000017562753656927677;97,0.000016165336143759615;98,0.00001282728613749109;99,0.000006552699182021595;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00010786107890681332;70,0.00020865292171527944;71,0.000367268906671945;72,0.0004394524346449123;73,0.00046679049611898945;74,0.0004905387111368744;75,0.0005124643887231546;76,0.0005016396209475604;77,0.0005033517015651289;78,0.000492582162196553;79,0.0004795482581402254;80,0.0004885504884842144;81,0.0005022471334247622;82,0.0005059474366949907;83,0.0005115807342108611;84,0.0005224055019864553;85,0.0005326227572848479;86,0.0005537752371728712;87,0.0005647104617625019;88,0.0005855315712084152;89,0.0005803401009486914;90,0.0005684107650327306;91,0.0005913857823523589;92,0.0006114336941000155;93,0.0006103843543666671;94,0.000600719383138458;95,0.0005840956326259385;96,0.0005801191873206181;97,0.0005667539128221804;98,0.0005613967573414018;99,0.0005501853907166792;100,0.0005541618360219994;101,0.0005279835710953074;102,0.0005177110873898967;103,0.0005121330182810445;104,0.0005165512908425115;105,0.0005175454021688416;106,0.0005060578935090274;107,0.000501253022098432;108,0.0004993752562598085;109,0.0004998170835159553;110,0.0005082118013827425;111,0.0005036830720072388;112,0.0004702698857611446;113,0.0004409436016344074;114,0.0004262528453675296;115,0.00041332939812523855;116,0.00039460696814602216;117,0.0003904096092126285;118,0.0003951040238091871;119,0.0004178028990937239;120,0.00042785446917106135;121,0.0004200672637814758;122,0.0004194045228972557;123,0.00040681244609707475;124,0.00038963641151437174;125,0.00036235357844731294;126,0.0003618565227841479;127,0.0003790877857738693;128,0.00038019235391423603;129,0.0003637342886227714;130,0.00034639256881901343;131,0.0003532408912892873;132,0.00034722099492428854;133,0.0003542350026156173;134,0.00035699642296653424;135,0.00034843601987869194;136,0.0003470553097032334;137,0.0003524676935910306;138,0.0003554500275700208;139,0.0003471657665172702;140,0.00033523643060130926;141,0.00033683805440484093;142,0.00032512963211695346;143,0.0003035905533798018;144,0.00028696680286728214;145,0.0002787377702215498;146,0.00027790934411627477;147,0.00029293147082526264;148,0.0003032591829376917;149,0.00028928639596205235;150,0.0002666427490845339;151,0.00026404701395467205;152,0.00027586589305659626;153,0.00026934894102843246;154,0.0002381448910630717;155,0.00022632601196114751;156,0.0002381448910630717;157,0.00025758529033352654;158,0.00024112722504206197;159,0.00021958814630491024;160,0.00020826632286615108;161,0.00022146591214353378;162,0.00025913168573004;163,0.0002652068105020571;164,0.0002533879314001329;165,0.00024118245344908025;166,0.00024571118282458394;167,0.0002478098622912808;168,0.0002353282423051365;169,0.000211856169322343;170,0.00019550856084491508;171,0.00021042023073986621;172,0.00023632235363146658;173,0.00024013311371573186;174,0.00023643281044550326;175,0.0002220181962137171;176,0.00020500784685206918;177,0.00020075525951165712;178,0.0002174342384311951;179,0.00021771038046628679;180,0.00021726855321014009;181,0.0002079901808310594;182,0.00020495261844505084;183,0.00019556378925193345;184,0.00017932663758854218;185,0.00017733841493588202;186,0.00017976846484468888;187,0.00019086937465537474;188,0.00018413150899913752;189,0.0001931889677501449;190,0.000198601351637942;191,0.00019269191208697988;192,0.0001865615589079444;193,0.00018357922492895416;194,0.00017667567405166198;195,0.0001658509062760678;196,0.00016270288707602256;197,0.00015983100991106902;198,0.00015441862602327193;199,0.00014933761257758486;200,0.0001540872555811619;201,0.00015811892929350056;202,0.000155744107791712;203,0.0001477912171810714;204,0.00013525436878790878;205,0.00013194066436680852;206,0.00012945538605098334;207,0.00014132949355992588;208,0.0001361932517072205;209,0.0001302838121562584;210,0.00012288320561580114;211,0.00011973518641575592;212,0.00012592076800180973;213,0.000129731528086075;214,0.00012873741675974493;215,0.00012282797720878283;216,0.00011603488314552728;217,0.000116476710401674;218,0.00011437803093497716;219,0.00011338391960864708;220,0.00010476828811378642;221,0.00010079184280846613;222,0.00009830656449264091;223,0.00009388829193117392;224,0.00008157235716608463;225,0.00007052667576241713;226,0.00007395083699755405;227,0.00007522109035897581;228,0.0000754972323940675;229,0.00007577337442915918;230,0.00007223875637998558;231,0.00007207307115893055;232,0.00006892505195888532;233,0.00005937053754471292;234,0.00005125196171301729;235,0.000057271858078016086;236,0.00006152444541842808;237,0.000059370537544712914;238,0.000055283635425355934;239,0.00005683003082186939;240,0.00004710983118664199;241,0.00003882557013389133;242,0.000033026587396965885;243,0.000032860902175910875;244,0.000035180495270681046;245,0.00003529095208471773;246,0.000036064149782974454;247,0.000028608314835498873;248,0.00002584689448458199;249,0.000027338061474077112;250,0.000025902122891600335;251,0.000023140702540683454;252,0.0000207106526318766;253,0.00001971654130554652;254,0.000019109028828344808;255,0.000016844664140592968;256,0.000019440399270454837;257,0.000018059689094996394;258,0.000014745984673896137;259,0.000013033904056327672;260,0.000011156138217704195;261,0.000010714310961557495;262,0.000010438168926465805;263,0.000006903550877292199;264,0.000007400606540457238;265,0.00000806334742467729;266,0.000007511063354493914;267,0.00000552284070183376;268,0.0000043078157474303335;269,0.0000032584760140819185;270,0.0000029823339789902302;271,0.0000030927907930269062;272,0.000003865988491283632;273,0.000003589846456191944;274,0.000005633297515870435;275,0.000008947001936970692;276,0.000009941113263300769;277,0.000007179692912383887;278,0.0000063512668071088235;279,0.000005522840701833758;280,0.00000574375432990711;281,0.000005743754329907109;282,0.000004749643003577034;283,0.0000037003032702286195;284,0.000005467612294815422;285,0.000003865988491283632;286,0.000004031673712338644;287,0.000004915328224632046;288,0.0000033689328281185936;289,0.0000030927907930269054;290,0.0000037555316772469557;291,0.000004804871410595371;292,0.0000027061919438985424;293,0.000001988222652660154;294,0.0000039764453053203064;295,0.000003810760084265294;296,0.0000017120806175684658;297,0.000000276142035091688;298,0.0000016568522105501278;299,0.0000032032476070635814;300,0.0000038107600842652946;301,0.000001932994245641816;302,0.0000009388829193117394;303,0.0000017120806175684658;304,0.0000027614203509168804;305,0.000002043451059678491;306,0.0000014911669894951155;307,0.000001435938582476778;308,0.0000016568522105501282;309,0.0000012150249544034273;310,0.0000013807101754584404;311,0.0000017673090245868036;312,0.0000012702533614217653;313,0.0000014911669894951155;314,0.0000009941113263300772;315,0.0000010493397333484144;316,0.0000010493397333484144;317,0.0000003313704421100256;318,0.00000044182725614670074;319,0.00000033137044211002555;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000013144360870364346;70,0.00006351266807108825;71,0.00016248197344794922;72,0.00028122304853737506;73,0.00037301266100185214;74,0.0004375746688062888;75,0.0004900968838807279;76,0.0005592980778747048;77,0.000627063333286205;78,0.0006948838171047237;79,0.0007766770878988816;80,0.000824173517934652;81,0.0008593540132053331;82,0.0009317584548063735;83,0.0010065377179092026;84,0.0010685039905837775;85,0.0011361035607742227;86,0.0012310964208457635;87,0.0012946090889168517;88,0.001340780037184182;89,0.0014108096572834341;90,0.0014413509663645746;91,0.0014733282140281917;92,0.0015194991622955226;93,0.0015898601528368844;94,0.0016218374005005018;95,0.00166011068656421;96,0.00170462478262099;97,0.0017441130936391015;98,0.0017406889324039646;99,0.0017292566521511685;100,0.0017414621301022211;101,0.0017773605946641406;102,0.001774488717499187;103,0.0017647132894569413;104,0.0017988996734012923;105,0.0018118783490506016;106,0.0017976294200398705;107,0.0018157443375418853;108,0.001783988003506341;109,0.0017729423221026735;110,0.0017821102376677175;111,0.0017990101302153292;112,0.0017797354161659291;113,0.001760571158930566;114,0.0017396948210776342;115,0.0017135165561509421;116,0.001717327316235208;117,0.0017055084371332835;118,0.0016958434659050745;119,0.0017094848824386036;120,0.0016751880416802161;121,0.001645254245076277;122,0.00166541261363797;123,0.0016628168785081082;124,0.001678777888136408;125,0.0016989914851051197;126,0.0016957330090910374;127,0.0016796063142416832;128,0.0016441496769359102;129,0.0016261452162479322;130,0.0016127799417494943;131,0.001577986045327942;132,0.0014947016075442887;133,0.0014044583904763248;134,0.001344866939303539;135,0.0012928417798922648;136,0.0012731252385867183;137,0.001255396919933832;138,0.0012040897298137962;139,0.0011645461903886664;140,0.0011203634647739963;141,0.0010485113072431394;142,0.0010221673570953921;143,0.0009790339712140706;144,0.0009457864701890313;145,0.0008957495334304174;146,0.0008328443778365311;147,0.0007640850110987007;148,0.000770822876754938;149,0.0007524318172178314;150,0.0007026710224943091;151,0.0006618020013007394;152,0.0006506458630830353;153,0.0006371701317705609;154,0.000608064761271897;155,0.000569460104766079;156,0.0005309659050742976;157,0.0005077699741265958;158,0.0004718715095646765;159,0.0004542536477258267;160,0.00044514096056780104;161,0.0004297874634167032;162,0.00041404736741647687;163,0.0003804132675423094;164,0.0003518049527068105;165,0.0003546216014647457;166,0.0003382187645802994;167,0.00030298304090260004;168,0.00028602791994797045;169,0.0002894520811831074;170,0.00026945939784246914;171,0.0002529461041439862;172,0.00023394753212967808;173,0.00022036134400316702;174,0.00020296439579239067;175,0.00018827363952551287;176,0.0001686123266269847;177,0.00015066309434602496;178,0.0001401696970125408;179,0.00012155772384736105;180,0.00011885153190346252;181,0.00011299732075951873;182,0.00009615265661892575;183,0.00007737499823269096;184,0.00006826231107466527;185,0.00006627408842200512;186,0.00005423429569200752;187,0.00004351998473045002;188,0.00003186679084958079;189,0.000019440399270454833;190,0.000011211366624722533;191,0.000005246698666742072;192,0.0000015463953965134527;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "enigmaticdelicacy:etherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0000009941113263300768;70,0.0000018225374316051407;71,0.000002098679466696829;72,0.0000026772833245998813;73,0.0000024852783158251917;74,0.00000276142035091688;75,0.000002209136280733504;76,0.000002788603082496218;77,0.000002871877164953555;78,0.000002871877164953555;79,0.000003755531677246956;80,0.000003617029187771282;81,0.0000037274860018079566;82,0.0000027061919438985424;83,0.0000033137044211002556;84,0.0000027053290000388813;85,0.0000031199735246062434;86,0.000002733374675477881;87,0.0000025676894544228677;88,0.0000030366994421489062;89,0.000002485278315825192;90,0.000003837942815844632;91,0.00000251246104740453;92,0.0000027061919438985424;93,0.000002209136280733504;94,0.000003589846456191944;95,0.0000025405067228435297;96,0.0000021539078737151668;97,0.000003700303270228619;98,0.0000033137044211002556;99,0.0000025396437789838677;100,0.0000030647451175879062;101,0.0000025948721860022053;102,0.0000026501005930205433;103,0.0000020986794666968288;104,0.000001904948570202816;105,0.0000021810906052945048;106,0.0000017673090245868034;107,0.0000022643646877518415;108,0.0000027061919438985424;109,0.0000024852783158251917;110,0.000002402004233367855;111,0.0000014911669894951151;112,0.000002511598103544869;113,0.000002539643778983868;114,0.000001794491756166141;115,0.0000022915474193311795;116,0.0000015174867772147915;117,0.0000022643646877518415;118,0.000001407892907037778;119,0.0000012702533614217646;120,0.0000016568522105501278;121,0.0000016016238035317907;122,0.0000012150249544034273;123,0.0000015735781280927911;124,0.00000138071017545844;125,0.000001656852210550128;126,0.000001351801556159779;127,0.00000138071017545844;128,0.000001270253361421765;129,0.000001215024954403427;130,0.0000008836545122934017;131,0.000001546395396513453;132,0.000001546395396513453;133,0.0000014911669894951153;134,0.000000938882919311739;135,0.0000016016238035317905;136,0.0000009388829193117393;137,0.0000010212940579094148;138,0.0000007451520228177269;139,0.000001215024954403427;140,0.0000011045681403667522;141,0.00000113175087194609;142,0.0000010493397333484144;143,0.0000010493397333484144;144,0.000001215024954403427;145,0.0000008284261052750641;146,0.0000009941113263300768;147,0.0000008284261052750639;148,0.0000007731976982567263;149,0.000000966065650891077;150,0.0000004418272561467008;151,0.0000007451520228177268;152,0.0000005794668017627141;153,0.0000007731976982567263;154,0.0000008836545122934017;155,0.000000828426105275064;156,0.0000008836545122934017;157,0.000000828426105275064;158,0.000000552284070183376;159,0.0000008284261052750641;160,0.0000006627408842200511;161,0.00000044182725614670084;162,0.0000006075124772017136;163,0.0000008284261052750641;164,0.0000007179692912383888;165,0.0000007179692912383887;166,0.0000008284261052750639;167,0.0000006627408842200511;168,0.0000003865988491283633;169,0.0000003313704421100256;170,0.0000007179692912383888;171,0.0000008836545122934017;172,0.0000006346952087810516;173,0.0000009941113263300768;174,0.0000006627408842200511;175,0.0000009941113263300768;176,0.0000004970556631650385;177,0.000000276142035091688;178,0.00000027614203509168793;179,0.0000006627408842200512;180,0.00000027614203509168793;181,0.0000005522840701833759;182,0.00000044182725614670074;183,0.0000004970556631650384;184,0.0000009660656508910772;185,0.0000006075124772017136;186,0.0000002480963596526884;187,0.000000276142035091688;188,0.0000003313704421100256;189,0.0000004970556631650383;190,0.00000027614203509168804;191,0.00000027614203509168793;192,0.00000038659884912836317;193,0.000000276142035091688;194,0.0000006075124772017135;195,0.00000044182725614670074;196,0.0000003313704421100256;197,0.00000022091362807335042;198,0.0000004137815807077012;199,0.0000003313704421100256;200,0.00000027614203509168793;201,0.000000276142035091688;202,0.00000038659884912836317;203,0.00000044182725614670074;204,0.00000038659884912836317;205,0.0000002209136280733504;206,0.0000003865988491283632;207,0.000000552284070183376;208,0.0000000552284070183376;209,0.00000022091362807335037;210,0.00000011045681403667521;211,0.0000004970556631650384;212,0.00000038659884912836317;213,0.00000022091362807335037;214,0.0000002209136280733504;215,0.00000033137044211002555;216,0.00000022091362807335037;217,0.0000001656852210550128;218,0.000000276142035091688;219,0.00000011045681403667518;220,0.000000276142035091688;221,0.0000002209136280733504;222,0.00000016568522105501278;223,0.00000005522840701833759;224,0.00000022091362807335037;225,0.00000011045681403667518;226,0.00000005522840701833759;227,0.0000000552284070183376;228,0.0000003313704421100256;229,0.00000016568522105501278;230,0.00000005522840701833759;231,0.00000011045681403667518;232,0.00000016568522105501278;233,0.00000022091362807335037;234,0.00000011045681403667518;235,0.00000016568522105501278;236,0.000000276142035091688;237,0.00000044182725614670074;238,0.0000003313704421100256;239,0.00000022091362807335037;240,0.000000276142035091688;241,0.000000055228407018337606;242,0.00000022091362807335037;243,0.0000001104568140366752;244,0.000000055228407018337606;245,0;246,0.00000005522840701833762;247,0.00000011045681403667518;248,0.00000011045681403667518;249,0;250,0.0000001104568140366752;251,0.00000005522840701833759;252,0;253,0.0000001104568140366752;254,0;255,0;256,0;257,0.00000022091362807335037;258,0.00000005522840701833759;259,0;260,0.00000005522840701833759;261,0.00000005522840701833759;262,0.00000011045681403667521;263,0.00000005522840701833759;264,0.0000000552284070183376;265,0.0000001104568140366752;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0.00000005522840701833759;274,0;275,0;276,0;277,0;278,0;279,0;280,0.00000005522840701833759;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0.00000005522840701833759;291,0.00000005522840701833759;292,0;293,0;294,0;295,0;296,0;297,0;298,0;299,0;300,0;301,0;302,0;303,0;304,0;305,0;306,0;307,0.00000005522840701833762;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00025394021547031626;70,0.0004845188147718757;71,0.000755966435267005;72,0.0008812796907916129;73,0.0009250205891501363;74,0.0009660000671577429;75,0.0009894721401405365;76,0.0010205105048848421;77,0.0010637543475802004;78,0.0010951793111736345;79,0.0011215784897284;80,0.0011267147315811052;81,0.0011540527930551825;82,0.00118702415204513;83,0.0011717258833010506;84,0.0011545498487183473;85,0.0011924365359329272;86,0.001239380681898514;87,0.0012584344823198406;88,0.001262300470811124;89,0.0012788689929166253;90,0.0012831215802570374;91,0.0012741193499130484;92,0.0012961002559063468;93,0.0013104596417311144;94,0.0013075877645661608;95,0.0013202902981803788;96,0.0013250399411839557;97,0.0012977018797098784;98,0.001284226148397404;99,0.001258213568691767;100,0.0012446826089722745;101,0.0012322562173931483;102,0.0012119321636104002;103,0.0011895646587679735;104,0.0011560410157078426;105,0.0011379813266128463;106,0.0011542184782762377;107,0.0011277640713144538;108,0.0010617661249275403;109,0.0010427675529132321;110,0.0010232166968287405;111,0.0009821819904141161;112,0.0009388829193117392;113,0.0009555066698242587;114,0.000974836612280677;115,0.0009524138790312317;116,0.0009456207849679764;117,0.0009726274759999435;118,0.0009821819904141157;119,0.0009399874874521059;120,0.0008941479096268857;121,0.0008668650765598269;122,0.0008447184853454734;123,0.0008358267118155213;124,0.0008575867041807463;125,0.0008618392915211582;126,0.0008511802089666191;127,0.0008477008193244639;128,0.0008082677367133707;129,0.0007826969842638804;130,0.0007547514103126016;131,0.0007399501972316871;132,0.0007205650263682505;133,0.0006948285886977054;134,0.0006645081932446379;135,0.0006808005733150476;136,0.0006787571222553691;137,0.0006171222200229043;138,0.0005628326959238784;139,0.0005507929031938808;140,0.0005438341239095703;141,0.000548031482842964;142,0.000539691993383195;143,0.0005257192064075556;144,0.0005141764693407231;145,0.0004852367840631141;146,0.00046424998939614587;147,0.0004516026841889465;148,0.00043288025420973005;149,0.00041669833095335713;150,0.0004309472599640883;151,0.00043177568606936334;152,0.0004079722426444598;153,0.0003755531677246956;154,0.00035473205827878237;155,0.00035517388553492905;156,0.0003453984574926833;157,0.000328995620608237;158,0.0003232518662783299;159,0.0003391576474996112;160,0.00034628211200497675;161,0.00034236089510667476;162,0.000314746691597506;163,0.0003092790793026906;164,0.00030000070692360985;165,0.0002803946224321;166,0.0002611751367897185;167,0.00024902488724568424;168,0.00023588052637531985;169,0.0002497428565369226;170,0.00026321858784939705;171,0.00025394021547031626;172,0.00025333270299311456;173,0.0002576405187405449;174,0.00024963239972288593;175,0.00023030245726646776;176,0.00022422733249445064;177,0.00021224276817147138;178,0.00020440033437486743;179,0.00020903952056440783;180,0.00021754469524523176;181,0.00019722064146248357;182,0.00017722795812184533;183,0.00015740096000226215;184,0.0001550261385004736;185,0.00015756664522331715;186,0.00016529862220588442;187,0.0001623162882268942;188,0.00015889212699175728;189,0.0001533140578829052;190,0.00014950329779863988;191,0.00014011446860552252;192,0.00014502979683015454;193,0.00014298634577047606;194,0.00014182654922309095;195,0.00013729781984758726;196,0.00013862330161602734;197,0.00013271386206506526;198,0.000108137220941905;199,0.00009808565086456757;200,0.00010537580059098813;201,0.0001104568140366752;202,0.00010167549732075952;203,0.00009830656449264092;204,0.00008908342052057854;205,0.00009245235334869713;206,0.00009223143972062377;207,0.00009604219980488906;208,0.00008980138981181693;209,0.00007406129381159072;210,0.00006980870647117871;211,0.00007693317097654427;212,0.00007273581204315062;213,0.00005892871028856621;214,0.0000556702342744843;215,0.000056498660379759354;216,0.000055559777460447625;217,0.00005876302506751121;218,0.00006417540895530829;219,0.00006638454523604179;220,0.00005942576595173125;221,0.00005456566613411754;222,0.000049484652688430486;223,0.000050092165165632196;224,0.000050533992421778896;225,0.000041310848449716526;226,0.00003965399623916639;227,0.000041200391635679844;228,0.00003810760084265295;229,0.00002987856819692064;230,0.00002855308642848053;231,0.000023969128645958514;232,0.000020544967410821588;233,0.000020379282189766572;234,0.00001905380042132647;235,0.000014248929010731099;236,0.000010935224589630845;237,0.000014801213080914474;238,0.00001678943573357463;239,0.0000155744107791712;240,0.000016402836884446267;241,0.000014856441487932814;242,0.000009664971228209079;243,0.000004528729375503682;244,0.000003479389642155269;245,0.000003479389642155269;246,0.000004031673712338645;247,0.000005412383887797085;248,0.000005688525922888773;249,0.000004363044154448671;250,0.00000276142035091688;251,0.0000023195930947701795;252,0.0000017120806175684654;253,0.0000014359385824767778;254,0.0000018225374316051405;255,0.0000009941113263300768;256,0.0000023195930947701786;257,0.0000024852783158251917;258,0.0000020986794666968283;259,0.00000011045681403667518;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0003033696397517283;70,0.0006146921701140975;71,0.0010243212649691075;72,0.0012650618911620411;73,0.001384797077577797;74,0.0014112514845395806;75,0.001395400931725318;76,0.0014200328012554963;77,0.0014672530892561751;78,0.0014964689165688754;79,0.0015280595653833647;80,0.0015512002679240482;81,0.0015924558879667464;82,0.001606980959012569;83,0.0016042195386616522;84,0.001655581957188706;85,0.0016560790128518714;86,0.001694462755729616;87,0.001737872283646029;88,0.001805085254987346;89,0.0018049195697662909;90,0.0017897317578362483;91,0.001778244249176434;92,0.0017760903413027189;93,0.0017505748172602469;94,0.0017074966597859433;95,0.0016856262106066822;96,0.0016808213391960865;97,0.001648181350648249;98,0.0016118962872372013;99,0.0015232546939727692;100,0.0014231808204555416;101,0.0013521570890299595;102,0.0013063175112047391;103,0.001268044225141031;104,0.0012690383364673612;105,0.0012396568239336056;106,0.0011990087163681095;107,0.0011639939063184833;108,0.0011571455838482094;109,0.0010989900712578997;110,0.001058286735285385;111,0.0010162579175444302;112,0.0009636804740629729;113,0.0009201604893325228;114,0.0008872443587495935;115,0.0008567030496684528;116,0.0008315741244751091;117,0.0008161653989169931;118,0.000771375160825121;119,0.000716864723098022;120,0.0006916253410906417;121,0.00066809803970083;122,0.0006405942930056977;123,0.0006148026269281341;124,0.0005905021278400656;125,0.0005555977746044762;126,0.0005257744348145739;127,0.0005111941353617329;128,0.0005209695634039786;129,0.000512685302351228;130,0.0004988229721896251;131,0.0004845740431788941;132,0.0004778361775226569;133,0.0004641947609891274;134,0.00043823740969050885;135,0.00040465853822335956;136,0.00038433448444061133;137,0.0003597578433174511;138,0.0003542350026156173;139,0.0003576039354437359;140,0.00036240880685433133;141,0.000345343229085665;142,0.0003229757242432383;143,0.0003123166416886991;144,0.0002951406071059961;145,0.0002660352366073322;146,0.0002549895552036647;147,0.0002562045801580681;148,0.00024410955902105216;149,0.00021892540542069026;150,0.00021594307144170004;151,0.000211359113659178;152,0.00020362713667661074;153,0.00017684135927271697;154,0.0001562963918618954;155,0.00015822938610753724;156,0.00015811892929350053;157,0.00015878167017772062;158,0.00014729416151790638;159,0.0001358618812651105;160,0.00013773964710373396;161,0.00013310046091419362;162,0.00012702533614217647;163,0.00012365640331405786;164,0.00011277640713144538;165,0.00009803042245754923;166,0.00008831022282232182;167,0.00009339123626800889;168,0.00008963570459076192;169,0.00008825499441530348;170,0.00008223509805030469;171,0.00007317763929929732;172,0.00006815185426062859;173,0.00006251855674475817;174,0.00005953622276576793;175,0.00005351632640076914;176,0.00004688891755856862;177,0.00003910171216898302;178,0.0000367268906671945;179,0.000033689328281185935;180,0.00003838374287774463;181,0.00003534618049173606;182,0.000025681209263526985;183,0.000016734207326556293;184,0.00001358618812651105;185,0.000012260706358070946;186,0.000012757762021235983;187,0.000010824767775594168;188,0.000007179692912383887;189,0.000002816648757935217;190,0.0000012150249544034269;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00005428776664018971;70,0.00009087761410508585;71,0.00011543919012030416;72,0.00011699672177466677;73,0.00010087845290560044;74,0.0000927966889961133;75,0.00007493883054302538;76,0.00006394068822548035;77,0.000056526274583268524;78,0.00003741724575492372;79,0.000015022126708987825;80,0.000004142130526375319;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006353475943389557;70,0.0011923813075259088;71,0.0017612891282218044;72,0.0019677881420633683;73,0.0019740289520564407;74,0.001986455343635567;75,0.0019751335201968075;76,0.0019815400154109346;77,0.0019493970825262621;78,0.0019518271324350692;79,0.0018984764912553548;80,0.001862191427844307;81,0.0018266243337244975;82,0.0017856448557168913;83,0.0017220217308317664;84,0.0016835275311399846;85,0.0016355340454410495;86,0.0016225001413847219;87,0.001587651016556151;88,0.00153319580723607;89,0.0014575328896209475;90,0.001391037887570869;91,0.0013437071427561537;92,0.001246394689589843;93,0.0011563723861499526;94,0.0011262176759179404;95,0.0010698294723522177;96,0.0009943874683651683;97,0.0009519168233680666;98,0.000935458758076602;99,0.0008827708577811082;100,0.0008041256061869954;101,0.0007331018747614133;102,0.0006741731644728469;103,0.0006091141010052453;104,0.0005414593024077818;105,0.0004889923157403611;106,0.0004530386227714233;107,0.00041973589333936577;108,0.0003743381427702922;109,0.00033103907166791557;110,0.0002921030447199875;111,0.00025443727113348127;112,0.0002206374860382587;113,0.0001910902882834481;114,0.00016458065291464604;115,0.00013243772002997356;116,0.00010206209616988789;117,0.0000640649521412716;118,0.000036450748632102814;119,0.000014966898301969489;120,0.000004915328224632047;121,0.0000004970556631650385;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00006605317479393177;72,0.0003938337704477654;73,0.0007637536406565906;74,0.0008722774604476239;75,0.0008648216255001484;76,0.0008519534066648758;77,0.000868356243549322;78,0.0008586360439140947;79,0.0008584703586930395;80,0.00086344091532469;81,0.000880948320349503;82,0.0008748731955774859;83,0.0009014932877603246;84,0.0009004991764339945;85,0.0008837097407004198;86,0.0008950867925461975;87,0.0008956943050233992;88,0.0008869129883074835;89,0.0008819424316758331;90,0.000862612489219415;91,0.0008579180746228561;92,0.0008256094565171287;93,0.0008313532108470357;94,0.0008298620438575407;95,0.000816828139801213;96,0.0008144533182994245;97,0.0008105321014011225;98,0.0007865077443481457;99,0.0007734738402918181;100,0.0007571814602214085;101,0.0007598876521653069;102,0.0007489524275756761;103,0.0007185215753085721;104,0.0007030023929364192;105,0.000688256408262523;106,0.0006947733602906869;107,0.0006783705234062407;108,0.0006404286077846428;109,0.0006307636365564337;110,0.000617729732500106;111,0.0005944233447383676;112,0.0005683003082186938;113,0.0005741545193626376;114,0.0005620594982256217;115,0.0005391397093130116;116,0.0005231786996847121;117,0.000526602860919849;118,0.0005172140317267317;119,0.0004983259165264602;120,0.00048750114875086595;121,0.0004847397283999491;122,0.00046883394717866784;123,0.00044768146729064456;124,0.00044696349799940624;125,0.0004553029874591751;126,0.0004442020776484893;127,0.0004476262388836262;128,0.00043613873022381195;129,0.0004179133559077606;130,0.00040951863804097324;131,0.00041183823113574345;132,0.0004027255439777178;133,0.00040554219273565296;134,0.00038864230018804166;135,0.0003604758126086895;136,0.00037135580879130197;137,0.00035495297190685574;138,0.0003558366264191491;139,0.00034865693350676525;140,0.00033534688741534584;141,0.00032109795840461484;142,0.0003127584689448458;143,0.00031502283363259767;144,0.0003139182654922309;145,0.0003029278124955817;146,0.0002946435514428311;147,0.0002833769564110902;148,0.00027895868384962314;149,0.0002658695513862772;150,0.0002566464074142148;151,0.00025996011183531504;152,0.00025841371643880166;153,0.0002542715859124263;154,0.0002510131098983444;155,0.00023483118664197148;156,0.00023980174327362184;157,0.00023118611177876117;158,0.00023057859930155944;159,0.00023168316744192623;160,0.00024013311371573189;161,0.00024201087955435537;162,0.0002052287604801425;163,0.00010653559713837321;164,0.00001932994245641816;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "majruszsdifficulty:enderium_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.000002374821501788516;75,0.000006461723621145499;76,0.00000850517468082399;77,0.00001060385414752082;78,0.000013365274498437701;79,0.00001772831865288637;80,0.0000198269981195832;81,0.00002209136280733504;82,0.00002639917855476537;83,0.000027338061474077112;84,0.00003186679084958079;85,0.00002998902501095732;86,0.000030320395453067337;87,0.000024410955902105218;88,0.00002137339351609665;89,0.00001789400387394138;90,0.00001535349715109785;91,0.000011763650694905908;92,0.000007952890610640613;93,0.00000552284070183376;94,0.00000436304415444867;95,0.0000026509635368802044;96,0.0000048600998176137075;97,0.0000053571554807787464;98,0.000005467612294815423;99,0.000007952890610640613;100,0.000007511063354493913;101,0.000008947001936970689;102,0.00001099045299664918;103,0.00001060385414752082;104,0.000012702533614217647;105,0.000012757762021235986;106,0.000014083243789676088;107,0.000014193700603712761;108,0.000016292380070409592;109,0.000015243040337061175;110,0.000016071466442336242;111,0.000016292380070409592;112,0.00001607146644233624;113,0.000017286491396739668;114,0.000018004460687978057;115,0.000015574410779171204;116,0.000015243040337061178;117,0.000012923447242290997;118,0.00001242639157912596;119,0.000011874107508942583;120,0.000011321823438759208;121,0.000010327712112429132;122,0.000008891773529952353;123,0.000007069236098347212;124,0.000006737865656237188;125,0.000005909439550962122;126,0.000007014007691328874;127,0.000004142130526375319;128,0.000003921216898301969;129,0.000004031673712338645;130,0.000003368932828118593;131,0.0000022643646877518415;132,0.0000018225374316051405;133,0.0000012702533614217649;134,0.0000006627408842200511;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00014287093586503712;70,0.00022452998599160938;71,0.00025121662252883714;72,0.0002642155348649602;73,0.00024581959735730055;74,0.000230885771157058;75,0.00022679037823418376;76,0.00022954927352678917;77,0.00021920920432609217;78,0.00021871493242424936;79,0.0002089597880542807;80,0.00020162680377234395;81,0.00018266536043270607;82,0.0001880225071379931;83,0.00020668524384615243;84,0.0002043872093589567;85,0.00018577125966250682;86,0.00016741266131422672;87,0.0001587682776485716;88,0.00014307528100355955;89,0.0001343902967302386;90,0.000128793643853362;91,0.00013092532097762325;92,0.00013976902045195115;93,0.00013841838848194194;94,0.0001316525182550996;95,0.00013431222669150385;96,0.00012266197811584687;97,0.00009917512176746135;98,0.00007723693027233878;99,0.00008085352996282661;100,0.00009624401087755287;101,0.00009391390219030024;102,0.00008132393307527315;103,0.00006433176504804769;104,0.00005088937610090955;105,0.00005031029654367525;106,0.00005453160498312286;107,0.00005193118520968605;108,0.00005617632495719081;109,0.000054552904446459704;110,0.00005702107716009081;111,0.00004940707701111539;112,0.00004154174544554561;113,0.000029962095211198912;114,0.00001911559017734672;115,0.000011775285558668932;116,0.000009295363446110604;117,0.000009317368514531972;118,0.000007240515576147617;119,0.000004789338421121463;120,0.0000009634768193120925;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00011881944994388941;70,0.00022653087598644767;71,0.00025621218411131687;72,0.00027488907230823097;73,0.00028380440753442566;74,0.00026161428365149267;75,0.00024309797112545716;76,0.0002361174267533128;77,0.0002218676428103921;78,0.00021369785810194556;79,0.00021599512425468547;80,0.00021281735850578828;81,0.00020560511032867017;82,0.00019805263358645868;83,0.00018612388614608837;84,0.00019031814026475871;85,0.00020280284584248056;86,0.00020322356945716457;87,0.000182916553214158;88,0.00017598772973764868;89,0.00016026483602748115;90,0.0001424692488110719;91,0.00013949896017949976;92,0.00014063110456405653;93,0.00014053932045737485;94,0.00013197775224838273;95,0.00011579509484133891;96,0.00011469621360642666;97,0.00010544494141469682;98,0.00009697424789307141;99,0.00009775705753242566;100,0.00010399247665083809;101,0.000088127273221125;102,0.00007131251984790769;103,0.00007261041737333636;104,0.00008361129458506496;105,0.00008110585971597172;106,0.00006544117822890379;107,0.00004425628455161577;108,0.00003486304811036653;109,0.000034186939889168306;110,0.00003242780606768511;111,0.00002698786992882102;112,0.00002974392184769645;113,0.000028665673495049373;114,0.000021814591749265496;115,0.000015237208389723656;116,0.000007995003940269539;117,0.0000033550959696791925;118,0.0000018073020089793921;119,0.0000010493397333484142;120,0.00000016568522105501275;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00002352518850520771;70,0.00005145548559847709;71,0.00007942769474364775;72,0.00009119670773425652;73,0.00009943460188715695;74,0.00008671901423613844;75,0.00006373680376904412;76,0.000058582119942101555;77,0.00006049512233503019;78,0.00006545796974556278;79,0.00006637415791329056;80,0.00007381946523364618;81,0.00007422012939576189;82,0.00006994855585059774;83,0.00005755970376920665;84,0.000054320297192571166;85,0.0000654712399628692;86,0.00007603383047936312;87,0.00007700936392790846;88,0.00007876749701478398;89,0.00008514836260430057;90,0.00009986394234560192;91,0.00008980803115190705;92,0.00007358935969849313;93,0.00007699314800337263;94,0.00008656517227792384;95,0.00008860045400774513;96,0.00007904978067383575;97,0.00006799658246826881;98,0.00007718218962033078;99,0.00007467584966409192;100,0.0000759902864230535;101,0.00008539384245545777;102,0.00008921996130860684;103,0.00007775836960139204;104,0.00006433553895526895;105,0.000060322466811190434;106,0.00006576143055215961;107,0.00007242328566294029;108,0.00008892920602157353;109,0.00008781310412617927;110,0.00008559177304406524;111,0.00007667641270191315;112,0.00007579465685808961;113,0.00007160172863107218;114,0.00007047577356980984;115,0.000066111396176356;116,0.00005872974205556243;117,0.00005598218655996582;118,0.00005394736541883048;119,0.00004822446636544273;120,0.00005102138148189753;121,0.00005534435458065151;122,0.00006138662925248929;123,0.00006235286816407744;124,0.00006292511896977229;125,0.00006578424987478317;126,0.0000558601371174607;127,0.000058352435131223276;128,0.00006141574168908074;129,0.000060611304751179105;130,0.000057016999431747896;131,0.00006233612762913585;132,0.00007266432848711396;133,0.00007812026096317478;134,0.000075718140742729;135,0.00006619492380171373;136,0.00006525887350059125;137,0.00006829909881615309;138,0.00006549888692076201;139,0.00006004206094424583;140,0.000050047893457930995;141,0.00004930524435626351;142,0.000045079927097699195;143,0.000046809467530074475;144,0.00004719802232129187;145,0.00006353633791403753;146,0.00006780790905946901;147,0.000053356247915069274;148,0.0000393131897283262;149,0.00003935567491506321;150,0.000041168173465097385;151,0.00005285309389132092;152,0.000058859012613565046;153,0.00006067760936420038;154,0.00005034129629000204;155,0.000048417708036441225;156,0.0000479007182741287;157,0.00004875674848829986;158,0.00005029175338464548;159,0.00004878474437781008;160,0.0000503731855214938;161,0.00004352585159682405;162,0.000045288787668600324;163,0.00006116065394833588;164,0.00007767224991596256;165,0.0000789234034852869;166,0.00005880890235633505;167,0.00005287691123783687;168,0.00004770960388613019;169,0.000048036631452078857;170,0.0000333915835328466;171,0.000031094456095183726;172,0.000038045411131191624;173,0.00004587803562064777;174,0.000046475544790020176;175,0.000048272538507443506;176,0.00004957330345187327;177,0.00004460355297040992;178,0.00003759460887494722;179,0.00004198184409427599;180,0.00004832505563881941;181,0.00006223119307986516;182,0.00006151728029669232;183,0.000047206278041524356;184,0.000040202539766082666;185,0.00003553596990734938;186,0.00003448007170467823;187,0.00002915605365206771;188,0.000038543962147759746;189,0.00004425003427583062;190,0.00003895187590220036;191,0.00003760991228999795;192,0.000042862018674267696;193,0.000037867673332910934;194,0.000039885034179292916;195,0.00005104942667739;196,0.000056157305929964885;197,0.000047141901853657754;198,0.00003817453482555628;199,0.00003019575637907235;200,0.000021711552001952586;201,0.000022191464295055773;202,0.000025436996151242767;203,0.000024026514412626004;204,0.00002047765778976799;205,0.000017556161352883897;206,0.000014102919837572994;207,0.000013735593081346051;208,0.000018766871108042483;209,0.000024385613605483526;210,0.000023496839183597846;211,0.00001862880057044317;212,0.0000152223296844293;213,0.000017442252763408572;214,0.000017286922868669498;215,0.00001671737992129289;216,0.000015458344830046726;217,0.000020531160309067;218,0.000023177809126648896;219,0.000016565933273922293;220,0.000009722788466806401;221,0.000005260937240426487;222,0.000008405303247472958;223,0.000015312190873018954;224,0.000019469739361683324;225,0.000014855578544073154;226,0.000012614944812462001;227,0.00001660778605111588;228,0.000015030756147584444;229,0.000010788955605418217;230,0.000012464361108951067;231,0.000014138732007748949;232,0.00001624509909796975;233,0.000012706852972999073;234,0.000009967001579090613;235,0.000006220099340440273;236,0.000006768068691325341;237,0.0000068819772808006605;238,0.000010100326405408319;239,0.00001169590960192248;240,0.0000116229119745681;241,0.00000941489844874878;242,0.000008976342028199183;243,0.000006493652543952976;244,0.000005367942279024516;245,0.00000733174333248833;246,0.000006955729864045611;247,0.000005696896190359571;248,0.0000055377408018177125;249,0.000006769794579044664;250,0.000007158119315892349;251,0.0000037955203709700275;252,0.0000015844577160008891;253,0.0000004970556631650383;254,0.0000009388829193117391;255,0.0000024300499088068546;256,0.0000016016238035317907;257,0.0000001104568140366752;258,0.0000001104568140366752;259,0.0000003313704421100257;260,0.0000003865988491283632;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0.0000001240375698608566;269,0;270,0;271,0;272,0;273,0;274,0;275,0;276,0;277,0;278,0;279,0;280,0.0000000552284070183376;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00003463501879932523;70,0.00006861374317760159;71,0.0000569626005651874;72,0.00005129372983553264;73,0.00003417974166190008;74,0.000038887447560144255;75,0.00004149838110853531;76,0.00003456269414247484;77,0.000012529992565187728;78,0.0000025571509003011114;79,0.0000015342905401806667;80,0.00000012785754501505556;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00018166683346796178;70,0.00032011679123617967;71,0.0004886520089938424;72,0.0005591599454839966;73,0.0005555101225697654;74,0.000547675224653591;75,0.0005493815510722332;76,0.0005613208703559499;77,0.0005301934010787557;78,0.00047809825580458746;79,0.00045581437282587187;80,0.00043843979978228423;81,0.00039450234922158776;82,0.0003641921435732771;83,0.0003692447226468298;84,0.0003632202344534053;85,0.00033757168873084216;86,0.0003148897877752001;87,0.0002823546004114914;88,0.0002512384926085185;89,0.00022580727483350845;90,0.00021191150559734382;91,0.00018925750339350946;92,0.00016322113879774054;93,0.00013730747403201723;94,0.00011494126360537998;95,0.00009547260292352125;96,0.00007411463452891604;97,0.000054746776476664007;98,0.000035180495270681046;99,0.000012923447242291;100,0.0000031480192000452425;101,0.000000276142035091688;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0.0000004418272561467007;73,0.00000027614203509168793;74,0.0000004970556631650383;75,0.00000038659884912836307;76,0.0000011045681403667517;77,0.0000008284261052750639;78,0.00000056434544642876;79,0.0000006989250129562034;80,0.0000009576794671447256;81,0.00000030712382439465786;82,0.0000004297039472890169;83,0.0000007731976982567265;84,0.0000011045681403667522;85,0.0000009250758175571549;86,0.0000007179692912383888;87,0.0000004970556631650383;88,0.000000552284070183376;89,0.00000044182725614670074;90,0.0000005764068226741441;91,0.0000013375431446854865;92,0.0000009630056718025072;93,0.00000039866022537374727;94,0.0000008836545122934015;95,0.0000011934414390169506;96,0.0000009172994039252624;97,0.000000276142035091688;98,0.0000003623522314129954;99,0.00000011045681403667518;100,0.0000008984907598789364;101,0.00000038659884912836317;102,0.00000027614203509168793;103,0.0000012702533614217649;104,0.0000013798472315987784;105,0.0000012150249544034273;106,0.0000005522840701833758;107,0.0000002209136280733504;108,0.0000003313704421100256;109,0.0000003313704421100256;110,0.0000007451520228177268;111,0.0000006131116933945749;112,0.0000006316352296924816;113,0.0000013494806557062707;114,0.0000008957158885387858;115,0.0000007973204507474944;116,0.0000005091170394104225;117,0.0000008819286245740785;118,0.0000004129186368480398;119,0.0000007442890789580652;120,0.0000007761338121206966;121,0.0000004016582718500173;122,0.00000015356191219732888;123,0.00000044182725614670074;124,0.0000019894328788048007;125,0.0000011627326612490598;126,0.0000004840694104476931;127,0.0000006627408842200512;128,0.0000004418272561467008;129,0.0000003313704421100256;130,0.0000000552284070183376;131,0.000000276142035091688;132,0.0000003865988491283631;133,0.0000008284261052750639;134,0.00000038659884912836317;135,0.00000038659884912836317;136,0.0000004970556631650383;137,0.0000004418272561467007;138,0.00000038659884912836317;139,0.0000001656852210550128;140,0.00000039866022537374727;141,0.00000011045681403667518;142,0.0000001656852210550128;143,0.00000016568522105501278;144,0.00000022091362807335037;145,0.00000016568522105501283;146,0.00000022091362807335042;147,0.00000011045681403667521;148,0.0000004654143883107825;149,0.0000001104568140366752;150,0;151,0.0000001656852210550128;152,0.00000039866022537374727;153,0.0000009931245172458157;154,0.0000007442271463457655;155,0.00000022091362807335037;156,0.0000002480963596526884;157,0.00000011045681403667517;158,0.00000005522840701833759;159,0.00000016568522105501278;160,0.0000001656852210550128;161,0.0000010642974269158812;162,0.00000043377311345652663;163,0.000000276142035091688;164,0.0000002209136280733504;165,0.0000001104568140366752;166,0.00000011045681403667517;167,0.00000011045681403667517;168,0.00000022091362807335037;169,0.00000011045681403667518;170,0;171,0.00000016568522105501275;172,0.00000011045681403667517;173,0.0000005280374524680081;174,0.0000005037908347526404;175,0.0000003192471332523417;176,0.00000038659884912836317;177,0.0000004418272561467008;178,0.000000276142035091688;179,0.00000011045681403667518;180,0.00000022091362807335037;181,0.00000016568522105501278;182,0.00000027614203509168793;183,0;184,0.00000022091362807335037;185,0.00000033137044211002555;186,0.00000022091362807335037;187,0.00000016568522105501278;188,0.00000011045681403667518;189,0.00000022091362807335037;190,0.00000016568522105501278;191,0;192,0;193,0;194,0;195,0.00000016568522105501278;196,0.00000044182725614670074;197,0.00000022091362807335037;198,0.00000011045681403667518;199,0.00000005522840701833759;200,0;201,0;202,0.00000011045681403667518;203,0;204,0.00000024723341579302694;205,0.00000016482227719535128;206,0;207,0;208,0;209,0.0000001104568140366752;210,0.00000016568522105501278;211,0.00000011045681403667518;212,0;213,0;214,0.00000005522840701833759;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.0000000552284070183376;223,0.00000016568522105501275;224,0.00000011045681403667518;225,0;226,0;227,0;228,0;229,0.00000011045681403667518;230,0.00000005522840701833759;231,0;232,0;233,0.00000011045681403667518;234,0;235,0.0000006627408842200511;236,0.000001767309024586803;237,0.00000044182725614670074;238,0;239,0;240,0;241,0.00000016568522105501278;242,0.00000016568522105501278;243,0.00000011045681403667518;244,0;245,0;246,0;247,0.0000000552284070183376;248,0.0000000552284070183376;249,0.0000001104568140366752;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "allthemodium:unobtainium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00000022091362807335042;70,0.0000006627408842200511;71,0.0000008284261052750639;72,0.0000017673090245868036;73,0.00000016568522105501283;74,0.000000276142035091688;75,0.000001932994245641816;76,0.0000019882226526601536;77,0.0000022643646877518415;78,0.000003755531677246956;79,0.0000048600998176137075;80,0.000003921216898301969;81,0.000004804871410595371;82,0.000006296038400090487;83,0.0000066826372492188505;84,0.000006792231119395862;85,0.00000933187489837973;86,0.000008670859901879005;87,0.000011349006170338545;88,0.000009471240331715068;89,0.000012507939773863974;90,0.000012479894098424973;91,0.00001507476628442718;92,0.000013803649979145754;93,0.000017617861838849694;94,0.000017368902535337343;95,0.000020431921765205926;96,0.000018720704091497122;97,0.00001802905458797841;98,0.000016567659161641617;99,0.00001905207453360715;100,0.000016979714854629994;101,0.000017588953219551037;102,0.000018197328640612406;103,0.00001822537431605141;104,0.000018667201572198107;105,0.000016622887568659958;106,0.000016842075309013985;107,0.00001637047648970896;108,0.000016346745533568266;109,0.00001714626301954467;110,0.000014632076084420815;111,0.00001579446146338489;112,0.000012756036133516661;113,0.000013998243819499428;114,0.00001604255782303758;115,0.000014661847647579139;116,0.000011100909810685858;117,0.000012950629973870336;118,0.000011540148235253572;119,0.000012592076800180972;120,0.00001060299120366116;121,0.000009220555140483394;122,0.000009331874898379732;123,0.000007399743596597577;124,0.000009885021912422768;125,0.00001195651864754026;126,0.00001079672210015517;127,0.000009856113293124106;128,0.000006737865656237187;129,0.000009054869919428383;130,0.000009938524431721782;131,0.000010437305982606145;132,0.00001176365069490591;133,0.000008421900598366654;134,0.000009581697145751743;135,0.000008394717866787315;136,0.000007234921319402226;137,0.000007371697921158577;138,0.000007290149726420563;139,0.000005909439550962123;140,0.000007455834947475575;141,0.000006903550877292199;142,0.0000073453781334389;143,0.000007731114038707601;144,0.000006378449538688162;145,0.000006765048387816525;146,0.000005301927073760409;147,0.0000050810134456870594;148,0.000003976445305320307;149,0.000004749643003577032;150,0.000003753805789527633;151,0.0000063758607071091776;152,0.000004639186189540358;153,0.000004031673712338645;154,0.000003975582361460646;155,0.0000038651255474239706;156,0.00000392121689830197;157,0.0000032032476070635805;158,0.000004528729375503683;159,0.000005190607315864073;160,0.000005687662979029111;161,0.0000036450748632102815;162,0.000005436977787797438;163,0.000004776825735156371;164,0.0000035898464561919443;165,0.000003700303270228619;166,0.0000030927907930269054;167,0.0000029271055719718923;168,0.000002871877164953555;169,0.000004639186189540358;170,0.000003479389642155269;171,0.000004252587340411994;172,0.000003368932828118593;173,0.000004252587340411994;174,0.0000030927907930269054;175,0.0000025405067228435297;176,0.0000029823339789902302;177,0.0000022643646877518415;178,0.000003810760084265294;179,0.0000025396437789838677;180,0.000002705329000038881;181,0.0000024572326403861926;182,0.0000021539078737151668;183,0.0000013254817684401024;184,0.0000012974360930011029;185,0.0000013526645000194404;186,0.000000552284070183376;187,0.00000044182725614670084;188,0.00000027614203509168804;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000050499311005625955;70,0.0001045656937922837;71,0.00012963778714568754;72,0.00013504291674206996;73,0.0001266332198618118;74,0.00012215948410795817;75,0.00012257288578241084;76,0.000127023659100336;77,0.00013183096842834933;78,0.00012826289319795185;79,0.00012775577556446742;80,0.00013403691866369284;81,0.0001417584510498897;82,0.00013257277074401057;83,0.00011882158594661858;84,0.00011825835970926952;85,0.000131996013139755;86,0.0001381010748854659;87,0.0001423432084067154;88,0.00014425744916932607;89,0.0001444815607577653;90,0.00013937784608375616;91,0.0001259224812845863;92,0.00013246520086043987;93,0.0001376419443044348;94,0.0001390332987459467;95,0.0001389106165399539;96,0.00014109892195477986;97,0.0001485716912631501;98,0.00013832932562398147;99,0.00011604133128766616;100,0.00010528759672417184;101,0.00011915912022244942;102,0.00012513095164697958;103,0.0001221910784099946;104,0.00011426681361217795;105,0.00011534656736633695;106,0.00013606563949709402;107,0.00014610681981936651;108,0.00013315742967769358;109,0.0001251212736870223;110,0.00011876349675143464;111,0.00012811920675435192;112,0.00012807698616502141;113,0.00011783817214847982;114,0.00011745763951663063;115,0.00012242471461615753;116,0.00012864049009667037;117,0.00012488372341149374;118,0.0001283597682693109;119,0.00012622869751617577;120,0.00012718725221282475;121,0.00013802793955708213;122,0.00013521470068797664;123,0.000135729389988854;124,0.0001440201092773283;125,0.00013623667116018708;126,0.00012619478243393708;127,0.00011716917596823762;128,0.00011571952179984822;129,0.00011166895259265148;130,0.00011583448675163451;131,0.0001281113658679029;132,0.0001232209817286474;133,0.00011768489240722896;134,0.00011758617351669297;135,0.00011429417659716593;136,0.0001136769336840294;137,0.00010573574507113583;138,0.0001042321695440725;139,0.0000900320487541675;140,0.00008768031843979613;141,0.00009311018437992258;142,0.00010179386941295724;143,0.00010211067395784987;144,0.00010012844727718011;145,0.00008794708711917082;146,0.00007224829925124315;147,0.00007051788266205399;148,0.00007485804392587923;149,0.0000810324816334695;150,0.00007834970820052106;151,0.00006650752961438598;152,0.00005382958990016867;153,0.00006012152187775456;154,0.00006381188641525468;155,0.00006588375510893237;156,0.00006573291847360049;157,0.0000705271965044014;158,0.000076229246840539;159,0.00007524626451433007;160,0.00007123628342522225;161,0.00006462877863436928;162,0.00005352889860010385;163,0.000051679770399821415;164,0.00006916993874300118;165,0.00007291511094750891;166,0.00006073855649409736;167,0.00005124196346691915;168,0.000053017113377954944;169,0.00006271493598620079;170,0.00005492951599770414;171,0.000041635255827579624;172,0.00004551656901154345;173,0.000051813842314053806;174,0.00004247725098113075;175,0.000034492119002492086;176,0.00003197180219029616;177,0.0000273008358613724;178,0.000025087846089955238;179,0.00003076613571326734;180,0.00003721762303483616;181,0.000039280058859427196;182,0.000035865613181882666;183,0.00003354414541596909;184,0.00003400293398246086;185,0.00003288164258522757;186,0.000030299402111929714;187,0.000027629528201848995;188,0.000022479925597661253;189,0.000018767347694946072;190,0.00001936112746210524;191,0.000021978391553431417;192,0.00002626793669638478;193,0.000022033143853492704;194,0.000023123815622050417;195,0.00002163270814592494;196,0.000020768901342403755;197,0.000021184408810830778;198,0.00001996982947497783;199,0.000015277549066879294;200,0.000015944628573308406;201,0.0000198079240846162;202,0.00001533412554928269;203,0.000008854666943986909;204,0.000009077737931709412;205,0.000012717635131761725;206,0.00001793154193183666;207,0.000020570215957887886;208,0.00001894590268218396;209,0.000015028985624837893;210,0.000010928573970574487;211,0.00001470978566681758;212,0.000012407838286143238;213,0.000011635503531746175;214,0.000009846189438738002;215,0.000006626977370270682;216,0.000002452054977228223;217,0.000005779997972012895;218,0.000009051418143989735;219,0.000007737154645725232;220,0.000005880292878184935;221,0.000004918631216646613;222,0.000003358205543242456;223,0.00000634110489924419;224,0.000010295783189621655;225,0.000009282255626449194;226,0.000004269414745675394;227,0.0000029193390772349385;228,0.000001542080677215145;229,0.0000036092626930343285;230,0.000006638195640446281;231,0.000007187890879050673;232,0.0000035199480035593604;233,0.0000015386289017764991;234,0.000000055228407018337606;235,0;236,0;237,0;238,0.000002042156643888999;239,0.000001739694821077634;240,0.000002369212366700717;241,0.000001951116066694708;242,0.000001153755940367459;243,0.00000033137044211002555;244,0.00000022091362807335037;245,0.0000011597965473850893;246,0.0000009941113263300764;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006054137977350167;70,0.0010998089752240338;71,0.0016677664864336488;72,0.0019482791833910977;73,0.0020121327440434373;74,0.0020864720843179474;75,0.002073958089058724;76,0.002031213206454359;77,0.0020155169122941814;78,0.0019854993208658013;79,0.0019420402778258538;80,0.0018889048369907285;81,0.0018605631420511803;82,0.0018150244638228184;83,0.0017250307268003515;84,0.0016653421498083261;85,0.0016603049382026883;86,0.0016301197571254244;87,0.0016268079571321523;88,0.001564923574854191;89,0.0014910850990985016;90,0.0013744388946201162;91,0.0013147865017568271;92,0.0012829711304586083;93,0.0012426029737838597;94,0.0011751081471239667;95,0.0011230544212952691;96,0.0010772472187431288;97,0.0010332835023287037;98,0.0009643736857924443;99,0.0008954276851274486;100,0.0008358248073876929;101,0.0007800117410260923;102,0.0007258460047359007;103,0.0006633141169963448;104,0.0006024124194777444;105,0.0005315429467062479;106,0.0004904777694463715;107,0.00044885078597717076;108,0.00040604496168230274;109,0.0003658329680894682;110,0.0003362305419276393;111,0.00029972456488851814;112,0.00023996742849467686;113,0.00020511830366610583;114,0.00016181923256372916;115,0.00012349071809300286;116,0.00009416443396626561;117,0.00007268058363613228;118,0.00004512160853398182;119,0.000017176034582702993;120,0.000004804871410595371;121,0.0000003313704421100255;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00015613620755127315;70,0.00028688543313574197;71,0.00029744137060183564;72,0.00030744395889331774;73,0.0002991153148264118;74,0.0002671172858950077;75,0.00023881727711983568;76,0.00022866654022983882;77,0.00023464229341387346;78,0.00024927012469811046;79,0.00023966250195590802;80,0.0002289187839997758;81,0.00023782710876703718;82,0.0002319501171978075;83,0.00020052204965319655;84,0.00018404889730762802;85,0.0001668493046707178;86,0.0001660670933054236;87,0.00017519230296571684;88,0.00017972128490280023;89,0.00016109093776560688;90,0.0001377184538375981;91,0.00013381812648500475;92,0.00014159537331668077;93,0.00014149122169181073;94,0.0001239389329303411;95,0.00009609195899596047;96,0.00008446451349739754;97,0.00008584059445475441;98,0.0000863018426652667;99,0.0000842119721284023;100,0.00009885530499082021;101,0.00009745055354342054;102,0.0000897419378042213;103,0.00007450482991348977;104,0.00006879947874896216;105,0.00006937757845057411;106,0.00006450003877658575;107,0.00006272792092004242;108,0.0000671624458885044;109,0.00005958481724650432;110,0.00004330140083306592;111,0.00003565354179850934;112,0.000023126111033204537;113,0.000018472741636926105;114,0.000017962102047142605;115,0.000015717034569493883;116,0.000007985280762062737;117,0.0000037631493885598308;118,0.0000018777658386234785;119,0.0000010493397333484144;120,0.0000006627408842200511;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00006806520279444465;70,0.00013373489819940804;71,0.00017372161931436406;72,0.00018482132273639024;73,0.00017453133343658844;74,0.0001488005781401306;75,0.0001410165887077647;76,0.00015684569435302283;77,0.00017559395822998222;78,0.0001806494504269298;79,0.00018006186881416744;80,0.0001769365678239146;81,0.0001784570661406831;82,0.00018235274202039336;83,0.00018363388070522614;84,0.00017202278722087098;85,0.00016436853646319399;86,0.00017827537307280413;87,0.00017935443033216024;88,0.00017683963474820534;89,0.00018324041253242452;90,0.00018975932810084278;91,0.00019534541686679524;92,0.00019792129654299433;93,0.0001957051434281589;94,0.00019177834096690156;95,0.00017656187355987628;96,0.00017078464099158728;97,0.00017493374747922316;98,0.0001703417484621619;99,0.0001545942232775643;100,0.00016094908215355872;101,0.00016603206436178834;102,0.00015792861185561814;103,0.00014969338390886976;104,0.00014258880586345883;105,0.00014607426674136852;106,0.0001384830766535339;107,0.00013062958790437774;108,0.000130782269741511;109,0.0001254139801385588;110,0.00011966595568094505;111,0.00010454549317227352;112,0.00009603075142993844;113,0.00009197015797880338;114,0.00010668980969398819;115,0.00011378422141113318;116,0.00012034046714159643;117,0.00011271048119623571;118,0.0001031417430867213;119,0.00009411454688417172;120,0.00009517031406144037;121,0.0001023624555422527;122,0.00010007958382036623;123,0.00009189753629167203;124,0.00009007424780949465;125,0.00009023115073227076;126,0.00008532003307854018;127,0.00008445903828173412;128,0.0000902631391684479;129,0.00008025499897259927;130,0.00006814819174932371;131,0.00005977472810419845;132,0.00006204620014905489;133,0.00005925558054163011;134,0.00005909890772362904;135,0.00006836681981274532;136,0.00006617184771398419;137,0.00005487490167898272;138,0.000050967041455904913;139,0.000051677437670857645;140,0.000054135563011788316;141,0.000055767613025544386;142,0.00005094505126582594;143,0.00004756844121302485;144,0.000049377439353038744;145,0.00004928257504184561;146,0.00004916429221970235;147,0.000048029788854410786;148,0.000038088913644588545;149,0.000028622121937253458;150,0.000027113859732331604;151,0.000026588088868319208;152,0.000025150491860196217;153,0.00002701490000453099;154,0.000028924847697782882;155,0.000034325474637884044;156,0.00003417303807121103;157,0.0000321837292995551;158,0.00003567220960892163;159,0.000042454948345861215;160,0.000041066620459089905;161,0.00003248721772799261;162,0.000025615699921904747;163,0.000021602553892287302;164,0.000018432480842370172;165,0.000014289055900205361;166,0.000013909792073884123;167,0.00001190137951057637;168,0.00000987066431199909;169,0.000009856544765053939;170,0.000008286849884329625;171,0.00000810573582219756;172,0.000009804916916898326;173,0.000012349068833631804;174,0.000012722872308289325;175,0.00001072700218763148;176,0.000008567723232307042;177,0.0000031437044807469355;178,0.0000016771313912521736;179,0.000005764137659006012;180,0.000006492670573354051;181,0.000005013257474361221;182,0.0000037679253364727845;183,0.000004757260714889907;184,0.000006062745991133714;185,0.0000027366627891500383;186,0.00000033708372559468114;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00009366737830310057;72,0.0005635506652151168;73,0.001066460539524099;74,0.0012191118565227843;75,0.0012315934765089285;76,0.0012503159064881449;77,0.001241479361365211;78,0.0012262915494351682;79,0.0012530220984320435;80,0.001266884428593646;81,0.0012752239180534152;82,0.0012833977222921292;83,0.0012861039142360276;84,0.0012971495956396952;85,0.001309741672439876;86,0.001290246044762403;87,0.0012798631042429556;88,0.0012873189391904311;89,0.0012779301099973138;90,0.0012721311272603883;91,0.0012760523441586902;92,0.0012402643364108072;93,0.0012572194573654371;94,0.001254734179049612;95,0.001240319564817826;96,0.0012043106434418698;97,0.0011670866971115101;98,0.0011547155339394026;99,0.0011478672114691288;100,0.0011252235645916103;101,0.0010953449963946897;102,0.0010634229771380906;103,0.001029788877263923;104,0.0010189088810813101;105,0.0009851090959860879;106,0.000959317429908524;107,0.0009454550997469213;108,0.0009027083127147279;109,0.0008762539057529442;110,0.0008684114719563404;111,0.0008512906657806556;112,0.000813569663787131;113,0.0007857897750569074;114,0.0007837463239972289;115,0.000755966435267005;116,0.0007259221818490293;117,0.0007243757864525159;118,0.0007023396520521993;119,0.0006763823007535806;120,0.0006833963084449095;121,0.0006745045349149572;122,0.0006413122622969362;123,0.0006466694177777149;124,0.0006332489148722589;125,0.0006043092295946501;126,0.000596963851461211;127,0.0005893423312926805;128,0.0005874093370470387;129,0.0005669748264502538;130,0.0005559291450465862;131,0.0005486389953201658;132,0.0005295299664918209;133,0.0005151153522600347;134,0.0005103657092564579;135,0.0005021919050177438;136,0.000501584392540542;137,0.00046082582816100895;138,0.00045756735214692694;139,0.00045938988957853214;140,0.0004656306995716043;141,0.0004469634979994061;142,0.0004213375171428976;143,0.00042039863422358575;144,0.0004122800583918901;145,0.0004022284883145527;146,0.00039107235009684855;147,0.00037660250745804403;148,0.0003673793634859817;149,0.00036633002375263327;150,0.00036660616578772497;151,0.00036947804295267854;152,0.00034887784713483856;153,0.0003478837358085085;154,0.00035616799686125913;155,0.0003552843423489658;156,0.00033446323290305243;157,0.00032082181636952314;158,0.0003055787760324619;159,0.0003187783653098446;160,0.0003158512597378727;161,0.0003049712635552602;162,0.00027387767040393615;163,0.00013994878338446747;164,0.00002827694439338885;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.006228528835884657;130,0.006293999199003204;131,0.006356410199359203;132,0.006429501156995372;133,0.006509378337486649;134,0.006587086151655394;135,0.006669577696689213;136,0.006795512192951229;137,0.006874833125667498;138,0.0069854708081167685;139,0.006981187700249199;140,0.007060898006407974;141,0.007185163759344962;142,0.0072004049483802065;143,0.0071985693307226786;144,0.00726554156283375;145,0.0073983179067283735;146,0.007543387326450693;147,0.007602238341046636;148,0.007656083125667498;149,0.0076744393022427915;150,0.0077141553933784265;151,0.007805546902812389;152,0.00792547392310431;153,0.008012081701673194;154,0.008060475258098967;155,0.008129116233535068;156,0.008137070576717694;157,0.008157985493058028;158,0.008222955233179067;159,0.008352560964756141;160,0.00850675284798861;161,0.008565381363474546;162,0.008625734247063012;163,0.00868808962264151;164,0.008691649608401568;165,0.008796001690993236;166,0.00894301797792809;167,0.0091312522249911;168,0.009239831790672837;169,0.009129194108223567;170,0.009071566838732645;171,0.009096208615165541;172,0.009069953720185119;173,0.009172692684229263;174,0.009410655482378068;175,0.00961368592025632;176,0.009638438946244214;177,0.009628203987184052;178,0.00969117123531506;179,0.009842804378782485;180,0.009933361516553933;181,0.010017076806692771;182,0.010121595763616945;183,0.010143790049839802;184,0.010161200605197582;185,0.010178944909220364;186,0.010214544766820932;187,0.010292641954432183;188,0.0102937544499822;189,0.010301597543609826;190,0.010436042630829477;191,0.01058817639729441;192,0.01070242969028124;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00007275720897116411;2,0.00008649652901388395;3,0.0001051308294766821;4,0.00011942639729441084;5,0.00013989631541473836;6,0.0001718249377002492;7,0.00019718983624065505;8,0.00020703542185831258;9,0.00020803666785332861;10,0.0002376290494838021;11,0.0002602683339266643;12,0.00028096075115699535;13,0.000295812566749733;14,0.0003145024919900321;15,0.00033102305090779643;16,0.0003452629939480242;17,0.0003567216981132076;18,0.0003754672481310075;19,0.00038347721609113567;20,0.00042430580277678893;21,0.00046290939836240655;22,0.0004818774474902101;23,0.000492001156995372;24,0.0005025698647205412;25,0.0005130273228907084;26,0.0005115810786756852;27,0.0005343316126735493;28,0.0005700983446066217;29,0.000617935653257387;30,0.0006309518511925952;31,0.0006264462442150231;32,0.0006438567995728018;33,0.0006854085083659665;34,0.0006875778746885013;35,0.0006825160199359203;36,0.0006936966002135991;37,0.0007253470986116055;38,0.0007507119971520114;39,0.0007825849946600215;40,0.0008070042719829122;41,0.0008284198113207548;42,0.000840935386258455;43,0.0008572334460662156;44,0.0008691927732289073;45,0.0008846008365966536;46,0.0009005095229619082;47,0.0009288225347098612;48,0.0009529080633677466;49,0.0009744904770380919;50,0.0009868948024207903;51,0.0009814435742257033;52,0.0010084215913136346;53,0.001037123976504094;54,0.0010502514239943042;55,0.001062544499822001;56,0.0010814569241723035;57,0.0010545345318618725;58,0.0011062099501601991;59,0.0011779102883588467;60,0.0012275832146671412;61,0.0012258032217871131;62,0.00124499377002492;63,0.0012649074403702385;64,0.0012937766998932006;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0.00001935742257030972;158,0.0001006808472766109;159,0.00023234469562121753;160,0.00037641286934852265;161,0.0005363341046635815;162,0.0006982578319686722;163,0.0008363741545033818;164,0.000972432360270559;165,0.0011465379138483446;166,0.0013104085083659666;167,0.0014821221965112142;168,0.0016449915450338199;169,0.0017950671947312212;170,0.001981799572801709;171,0.002124310252758989;172,0.0022253248487006053;173,0.0024011547703809187;174,0.002608412691349235;175,0.002715156639373443;176,0.0028358067817728727;177,0.003047737184051264;178,0.0032312433250267;179,0.0033421591313634747;180,0.003498409131363475;181,0.0036590534887860444;182,0.003839945265218939;183,0.004008377091491634;184,0.004117679779280883;185,0.004244838020647917;186,0.004434796635813457;187,0.0046028947134211465;188,0.004670923816304734;189,0.004807037646849413;190,0.00499121128515486;191,0.005166763082947669;192,0.005346319864720542;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0005052954788180848;2,0.0006311743503025987;3,0.0007522138661445355;4,0.0008917764328942685;5,0.0010540339088643644;6,0.001198880829476682;7,0.0013196422214311145;8,0.0014480798326806693;9,0.0016053310786756855;10,0.0017902278390886438;11,0.0019309585261658953;12,0.0020755273228907083;13,0.0022149230153079387;14,0.0023138794944820218;15,0.002405938501245995;16,0.0025705322178711286;17,0.002741300284798861;18,0.0028425373798504805;19,0.0029838243147027417;20,0.0031463599145603416;21,0.0032811387504449985;22,0.003417808828764685;23,0.003551753292986828;24,0.003734536311854752;25,0.0039185987006051986;26,0.004106832947668209;27,0.0042312099501602;28,0.004277879138483447;29,0.004368380651477394;30,0.00453870372018512;31,0.004702018066927733;32,0.004899207903168387;33,0.00501056870772517;34,0.0051442906728373095;35,0.005254705856176576;36,0.005410177109291562;37,0.005505629227483089;38,0.0056614898540405835;39,0.005821132965468139;40,0.005975157974368104;41,0.006074225703097187;42,0.00619187210751157;43,0.0064000200249199005;44,0.006603551085795657;45,0.006689435742257031;46,0.006694608846564614;47,0.006792842203631187;48,0.007007831968672126;49,0.007185441883232469;50,0.0073188300996796015;51,0.0074661245105019595;52,0.007553900409398363;53,0.007650965646137415;54,0.007832246796012816;55,0.008050129049483802;56,0.008235192684229264;57,0.008324581701673193;58,0.008396504538981846;59,0.008412023851904593;60,0.008398062032751868;61,0.008305113029547881;62,0.0080937388750445;63,0.007881307849768603;64,0.007775175774296903;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "bigreactors:benitoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0011971008365966537;66,0.0012220763616945535;67,0.001204109558561766;68,0.00120499955500178;69,0.001205555802776789;70,0.0011973789604841582;71,0.0011739609291562835;72,0.0011895358668565325;73,0.0011882564969740122;74,0.0011850302598789605;75,0.001184807760768957;76,0.0011688990744037025;77,0.0011920946066215736;78,0.0012043320576717695;79,0.0011997152011391956;80,0.0012058339266642934;81,0.0011892577429690283;82,0.0011849190103239587;83,0.0012057783018867925;84,0.0012020514417942327;85,0.0012013283196867213;86,0.0011935408508365966;87,0.0011923171057315772;88,0.0011835283908864366;89,0.001199492702029192;90,0.001187310875756497;91,0.0012017733179067284;92,0.001215178889284443;93,0.0011867546279814884;94,0.0011821933962264152;95,0.0011986583303666785;96,0.0012207969918120328;97,0.0012021626913492347;98,0.0011566616233535066;99,0.0011915939836240656;100,0.0011666184585261657;101,0.001191927732289071;102,0.001204109558561766;103,0.0012065570487718052;104,0.001161500978996084;105,0.001182694019223923;106,0.0012050551797792809;107,0.0011811365254538984;108,0.0011863096297614812;109,0.0012113964044143824;110,0.0011966558383766466;111,0.00119248398006408;112,0.0011923171057315772;113,0.0011898139907440372;114,0.0011917608579565682;115,0.0012024964400142398;116,0.0012058339266642934;117,0.0012041095585617657;118,0.001185809006763973;119,0.0011848077607689571;120,0.0011831390174439306;121,0.0011739053043787826;122,0.0011955989676041296;123,0.0011901477394090424;124,0.0012008276966892133;125,0.0011854752580989676;126,0.0011963220897116414;127,0.0010988674795300818;128,0.0006009700961196156;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0039520291918832325;66,0.0040883098967604125;67,0.004165294588821644;68,0.00414182093271627;69,0.0041428221787112845;70,0.004207625044499823;71,0.004226092470630118;72,0.00424939925240299;73,0.004297459060163759;74,0.004440692862228552;75,0.00462748086507654;76,0.004692951228195087;77,0.00473689480242079;78,0.004744348522605909;79,0.004855375578497686;80,0.004972688234247062;81,0.004978918209327164;82,0.004931080900676397;83,0.004982311320754718;84,0.005068807849768602;85,0.005102572089711641;86,0.0051836173905304385;87,0.0053023762904948375;88,0.005460851281594873;89,0.00545056069775721;90,0.0054106777322890705;91,0.0054612962798148805;92,0.005555413403346386;93,0.005561643378426486;94,0.005510134834460662;95,0.005439769490922037;96,0.005400331523673906;97,0.005384089088643646;98,0.005294088198647206;99,0.005320398718405126;100,0.005297425685297259;101,0.005245360893556426;102,0.005144958170167319;103,0.005077707814168744;104,0.005005173104307582;105,0.004993325026699894;106,0.004983479441082236;107,0.004914226593093627;108,0.004846364364542541;109,0.004796135190459239;110,0.0047602572089711645;111,0.004734336062655749;112,0.004643167052331791;113,0.0045199025453898185;114,0.0044750133499466;115,0.004458826539693842;116,0.0044415828586685645;117,0.004356977572089712;118,0.004331557048771804;119,0.004268589800640798;120,0.0041592314880740475;121,0.00406122063011748;122,0.003977227216091136;123,0.003936398629405482;124,0.0038583570665717336;125,0.003770303043787825;126,0.003674739676041296;127,0.003561543253826985;128,0.003511647828408687;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00038992969028123887;194,0.00040806336774652893;195,0.0004200226949092204;196,0.00041368147027411896;197,0.00039971965112139556;198,0.0003961596653613386;199,0.00038859469562121756;200,0.0003970496618013528;201,0.00039215468138127446;202,0.00040839711641153434;203,0.000392933428266287;204,0.00041106710573157707;205,0.00040645024919900327;206,0.0003998309006763973;207,0.0003949915450338199;208,0.0004097321110715557;209,0.00040305713777144894;210,0.000404559006763973;211,0.00040227839088643655;212,0.0004006096475614098;213,0.0003915428088287647;214,0.0003988852794588821;215,0.0003870372018511927;216,0.00039510279458882165;217,0.0004105664827340691;218,0.00039371217515129944;219,0.0003961040405838377;220,0.00041852082591669633;221,0.00041234647561409754;222,0.0003933228017087932;223,0.0004129027233891064;224,0.00040923148807404773;225,0.0004062833748665006;226,0.00041523896404414384;227,0.00039677153791384837;228,0.00039860715557137776;229,0.0003909865610537558;230,0.00039460217159131367;231,0.0004139039693841225;232,0.00039432404770380915;233,0.00041368147027411896;234,0.000402000266998932;235,0.00041017710929156285;236,0.00040400275898896406;237,0.00041724145603417586;238,0.000400943396226415;239,0.0003986071555713777;240,0.00039855153079387676;241,0.000407062121751513;242,0.0003992746529013884;243,0.00040600525097899613;244,0.0004013883944464223;245,0.00040294588821644715;246,0.0003960484158063368;247,0.00040717337130651476;248,0.0004027233891064436;249,0.0004073402456390175;250,0.00041240210039159854;251,0.00040878648985404054;252,0.0004055046279814881;253,0.0004034465112139552;254,0.0004070064969740121;255,0.0004048371306514774;256,0.0004183539515841937;257,0.00041840957636169455;258,0.0004254182983268067;259,0.000424250177999288;260,0.00040517087931648274;261,0.0004157395870416519;262,0.00041301397294410825;263,0.0004127914738341047;264,0.0004165183339266643;265,0.00040511525453898185;266,0.00040010902456390175;267,0.0004189101993592026;268,0.00042280393378426494;269,0.00043515263438946247;270,0.0004241389284442863;271,0.00042608579565681743;272,0.0004336507653969384;273,0.0004040027589889641;274,0.00040077652189391246;275,0.0004176308294766821;276,0.00041579521181915277;277,0.0004155170879316483;278,0.00040700649697401214;279,0.0004198558205767177;280,0.00040884211463154154;281,0.0004048927554289783;282,0.0004198558205767177;283,0.0004198558205767177;284,0.0004082858668565326;285,0.0004120683517265932;286,0.0004159620861516554;287,0.00041384834460662164;288,0.000422748309006764;289,0.00041123398006407975;290,0.000406060875756497;291,0.0004120683517265931;292,0.00041457146671413313;293,0.000392377180491278;294,0.0004077852438590246;295,0.00041379271982912075;296,0.00041190147739409046;297,0.0003890396938412247;298,0.0004056715023139908;299,0.0004177977038091848;300,0.0004153502135991456;301,0.00041935519757920967;302,0.0004147939658241367;303,0.00041295834816660736;304,0.00041746395514417943;305,0.00040366901032395876;306,0.0004198558205767177;307,0.00041657395870416515;308,0.0004142377180491278;309,0.00042018956924172305;310,0.0003846453364186543;311,0.00020697979708081168;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0071957880918476335;66,0.007039204343182628;67,0.0068958036667853325;68,0.006660121484514062;69,0.006508488341046635;70,0.006251112495550018;71,0.00600380473478106;72,0.005714834015663938;73,0.005504850480598077;74,0.005298649430402279;75,0.005117590779636881;76,0.00491127847988608;77,0.004648952029191885;78,0.004409765485938057;79,0.004240165539337843;80,0.004068229352082592;81,0.00392188056247775;82,0.00374810875756497;83,0.003563656995372019;84,0.003327251690993236;85,0.003089066393734426;86,0.002822679334282663;87,0.002639061943752225;88,0.00245499955500178;89,0.0021958437166251336;90,0.0019107667319330723;91,0.0017132431470274117;92,0.0015533775364898542;93,0.0013867813278746885;94,0.001162001601993592;95,0.0009398918654325383;96,0.0007353039337842648;97,0.0005387815948736205;98,0.00035549795300818796;99,0.00015263438946244216;100,0.0000400498398006408;101,0.0000029481132075471705;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00037874911000356003;194,0.00037785911356354575;195,0.0003495461018155928;196,0.0003417586329654682;197,0.0003114431292274831;198,0.000293309451762193;199,0.0002628270736917053;200,0.0002525364898540406;201,0.00024157840868636524;202,0.00020898228907084373;203,0.00019846920612317555;204,0.00017777678889284443;205,0.00016342559629761483;206,0.00014540316838732644;207,0.00012070576717693131;208,0.00010162646849412601;209,0.00008110092559629763;210,0.00006541473834104663;211,0.00004444419722321111;212,0.00002797926308294767;213,0.000011458704165183341;214,0.00000183561765752937;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00024280215379138484;130,0.00024502714489142046;131,0.0002437477750089;132,0.0002446933962264151;133,0.0002475302598789605;134,0.00024719651121395516;135,0.0002608802064791741;136,0.00025275898896404413;137,0.0002555402278390887;138,0.00025442773228907085;139,0.00026432894268422927;140,0.0002691682983268067;141,0.00027067016731933074;142,0.00026327207191171237;143,0.0002698357956568174;144,0.00027545389818440727;145,0.0002742857778568886;146,0.00028107200071199713;147,0.00027667764328942685;148,0.0002842982378070488;149,0.0002914182093271627;150,0.0002922525809896761;151,0.0002943663225347099;152,0.00029948380206479177;153,0.00029937255250979;154,0.00031277812388750447;155,0.00030832814168743324;156,0.00030838376646493413;157,0.0003143356176575294;158,0.0003196755962976148;159,0.00031255562477750095;160,0.00031978684585261654;161,0.00032329120683517265;162,0.00032846431114275543;163,0.0003224568351726593;164,0.00033341491634033464;165,0.0003374755250978997;166,0.00033474991100035595;167,0.00034097988608045563;168,0.0003422592559629762;169,0.00033235804556781774;170,0.000344873620505518;171,0.00034047926308294766;172,0.0003522160911356355;173,0.0003590023139907441;174,0.00036350792096831615;175,0.00037285288358846565;176,0.0003602260590957636;177,0.0003652322890708437;178,0.0003673460306158776;179,0.0003654547881808473;180,0.0003753003737985048;181,0.00038058472766108937;182,0.0003741322534709861;183,0.00037429912780348885;184,0.0003820309718761125;185,0.00038559095763616947;186,0.0003891509433962265;187,0.00039248843004627986;188,0.000392377180491278;189,0.0003943240477038092;190,0.0004033352616589534;191,0.0003922659309362763;192,0.00040600525097899613;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:soulium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00548376868992524;66,0.006102093716625134;67,0.0060518089177643295;68,0.005994292897828409;69,0.006001635368458526;70,0.006021882787468851;71,0.006001301619793521;72,0.00600246974012104;73,0.006025109024563902;74,0.005983946689213243;75,0.005957636169455323;76,0.0059357200071199715;77,0.00601559718761125;78,0.0060849056603773585;79,0.006046413314346743;80,0.006088688145247418;81,0.006030170879316483;82,0.005981054200783197;83,0.006036345229619083;84,0.006040461463154147;85,0.00604001646493414;86,0.006075894446422215;87,0.006038458971164116;88,0.005976715468138128;89,0.0060448001957992175;90,0.005985448558205767;91,0.0059501268244927024;92,0.005988396671413315;93,0.006021604663581346;94,0.006058984514061944;95,0.006027556514773942;96,0.006051363919544322;97,0.006020714667141332;98,0.0060194909220363125;99,0.006035566482734069;100,0.006089021893912425;101,0.006060820131719474;102,0.006025275898896405;103,0.006045801441794233;104,0.006018378426486294;105,0.0059789960840156645;106,0.005992290405838377;107,0.006024274652901389;108,0.006026332769668921;109,0.0060552576539693835;110,0.0060618770024919895;111,0.00610559807760769;112,0.006076005695977216;113,0.005989731666073335;114,0.005976882342470631;115,0.006033285866856534;116,0.005997352260590958;117,0.0059462330900676395;118,0.0060650476148095414;119,0.0060915250088999645;120,0.006057204521181915;121,0.006049917675329299;122,0.006072223211107156;123,0.006061042630829476;124,0.006020047169811321;125,0.0060513639195443215;126,0.006085906906372375;127,0.005480542452830189;128,0.0030145848166607337;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0011587197401210394;194,0.001189925240299039;195,0.0011746284264862942;196,0.0011704565681737273;197,0.0011791340334638663;198,0.001183695265218939;199,0.0011847521359914562;200,0.0011682315770736918;201,0.0011742390530437878;202,0.0011728484336062657;203,0.0011648940904236383;204,0.0011514328942684232;205,0.001171179690281239;206,0.0011846965112139551;207,0.0011837508899964402;208,0.001157940993236027;209,0.0011660622107511572;210,0.0011667297080811677;211,0.0011668965824136704;212,0.001174684051263795;213,0.0011779659131363474;214,0.0011845296368814527;215,0.001186810252758989;216,0.0011522672659309363;217,0.0011799127803488788;218,0.0011591647383410466;219,0.0011642822178711285;220,0.0011749065503737985;221,0.0011796346564613741;222,0.0011863096297614808;223,0.001184863385546458;224,0.0011707903168387327;225,0.0011785221609113565;226,0.0011800240299038804;227,0.0011804690281238877;228,0.0011704565681737275;229,0.0011662847098611606;230,0.00117813278746885;231,0.001176686543253827;232,0.001148818529725881;233,0.0011573291206835173;234,0.0011752402990388038;235,0.001155994126023496;236,0.0011850302598789605;237,0.0012184607511569955;238,0.0012038314346742615;239,0.001208003292986828;240,0.0012061676753292987;241,0.0011889239943040227;242,0.0011687322000711999;243,0.001203553310786757;244,0.001182805268778925;245,0.0011826383944464223;246,0.001221631363474546;247,0.0012311432004271984;248,0.001213677020291919;249,0.0012128982734069063;250,0.0011989920790316838;251,0.0011746284264862942;252,0.0011865877536489855;253,0.0012122307760768958;254,0.0011874777500889997;255,0.0011698446956212175;256,0.0011762971698113208;257,0.0011823602705589176;258,0.001185753381986472;259,0.001214122018511926;260,0.0012170145069419721;261,0.0012129538981844072;262,0.0012072245461018155;263,0.0012130095229619083;264,0.0011957658419366323;265,0.0011818596475614098;266,0.001219684496262015;267,0.0012012170701317195;268,0.0011987139551441794;269,0.0011993258276966892;270,0.0012229663581345674;271,0.0012036645603417588;272,0.001201495194019224;273,0.0012164026343894625;274,0.0011993258276966892;275,0.001190815236739053;276,0.001200438323246707;277,0.0011913714845140622;278,0.001211062655749377;279,0.001180357778568886;280,0.0011724034353862583;281,0.00116812032751869;282,0.001188367746529014;283,0.0011970452118191528;284,0.0011697890708437168;285,0.0011861983802064792;286,0.0012072801708793166;287,0.0012215757386970453;288,0.0012075026699893202;289,0.0012433250266998934;290,0.0012063345496618014;291,0.0012044989320042724;292,0.001210061409754361;293,0.0011859758810964759;294,0.0011874777500889997;295,0.0012079476682093273;296,0.0012199069953720185;297,0.001201995817016732;298,0.0012314213243147026;299,0.0012384856710573162;300,0.001217682004271983;301,0.001192817728729085;302,0.0011895914916340334;303,0.0012058339266642934;304,0.0012184607511569953;305,0.001222076361694553;306,0.0012194619971520116;307,0.001199437077251691;308,0.0012013283196867213;309,0.0011995483268066928;310,0.0012003826984692061;311,0.0012280838376646495;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "tconstruct:cobalt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002180491278034888;66,0.0022115299038803844;67,0.0021960105909576365;68,0.0022047993058027767;69,0.0022121417764328945;70,0.0021836618903524384;71,0.002175707547169811;72,0.002176430669277323;73,0.0022053555535777856;74,0.002200126824492702;75,0.002200182449270203;76,0.0021778212887148454;77,0.002232667319330723;78,0.002238841669633322;79,0.002211974902100392;80,0.0022249911000356;81,0.0022163692595229623;82,0.002218316126735493;83,0.0022332791918832323;84,0.00222437922748309;85,0.002238841669633321;86,0.002240732912068352;87,0.002227994838020648;88,0.002245794766820933;89,0.002211140530437878;90,0.0021995705767176932;91,0.0022180936276254897;92,0.0022322779458882162;93,0.0022360604307582774;94,0.0022484091313634746;95,0.0022322223211107156;96,0.002206523673905304;97,0.0022373398006407972;98,0.0022560853506585973;99,0.0022471297614809543;100,0.0022479641331434675;101,0.0022343916874332506;102,0.002220874866500534;103,0.0022373398006407972;104,0.0022519134923460306;105,0.0022210417408330373;106,0.002235671057315771;107,0.0022553622285510855;108,0.0022499666251334996;109,0.00225246974012104;110,0.0022308873264506946;111,0.0022388416696333215;112,0.002239620416518334;113,0.0022453497686009257;114,0.0022574759700961194;115,0.0022884589711641154;116,0.002299194553221787;117,0.0022317216981132077;118,0.002232611694553222;119,0.0022408997864008543;120,0.002271159665361339;121,0.0022629828230687076;122,0.0022846764862940547;123,0.00228373086507654;124,0.0022213198647205415;125,0.0020824247953008185;126,0.0011132186721253116;127,0.00016882119971520113;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "undead_revamp2:bostroxore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004498375756496974;194,0.0004436632253470986;195,0.0004485025809896761;196,0.0004422726059095764;197,0.0004461107155571378;198,0.00046168565325738697;199,0.00045901566393734424;200,0.0004438300996796013;201,0.00042725391598433607;202,0.00043821199715201144;203,0.0004379894980420079;204,0.0004466113385546458;205,0.0004534531861872552;206,0.0004472788358846565;207,0.0004442750978996084;208,0.00044093761124955506;209,0.0004411601103595585;210,0.0004584037913848344;211,0.0004603506585973656;212,0.00044878070487718046;213,0.0004533419366322535;214,0.0004563456746173015;215,0.0004464444642221431;216,0.0004307582769668922;217,0.0004450538447846209;218,0.00044794633321466713;219,0.0004521738163047348;220,0.0004600169099323603;221,0.00046769312922748313;222,0.0004490032039871841;223,0.00044305135279458887;224,0.00045106132075471705;225,0.00046385501957992166;226,0.00045451005695977217;227,0.0004507275720897117;228,0.00045823691705233175;229,0.00045467693129227485;230,0.0004478907084371663;231,0.0004594050373798505;232,0.00044282885368458524;233,0.0004416607333570666;234,0.00045523317906728377;235,0.0004602394090423638;236,0.00045812566749733007;237,0.00046958437166251337;238,0.0004541206835172659;239,0.00046313189747241017;240,0.00044644446422214314;241,0.0004508944464222144;242,0.0004442194731221075;243,0.00045434318262726955;244,0.00045545567817728734;245,0.0004526744393022428;246,0.00044955945176219296;247,0.00046029503381986477;248,0.0004706412424350303;249,0.00045601192595229626;250,0.00045901566393734424;251,0.00046819375222499117;252,0.00045033819864720545;253,0.0004501156995372019;254,0.0004608512815948737;255,0.0004780949626201496;256,0.0004779837130651477;257,0.0004644668921324315;258,0.0004665806336774653;259,0.0004721987362050552;260,0.0004688056247775009;261,0.0004522850658597366;262,0.00046068440726237096;263,0.00046602438590245636;264,0.0004571800462798149;265,0.0004671368814524742;266,0.00046902812388750444;267,0.00045445443218227133;268,0.0004533975614097544;269,0.00046263127447490214;270,0.0004670256318974724;271,0.0004729774830900677;272,0.00046285377358490566;273,0.00046163002847988613;274,0.0004580700427198292;275,0.0004494482022071912;276,0.00045834816660733364;277,0.00047114186543253836;278,0.00046185252758988965;279,0.000463688145247419;280,0.00046580188679245285;281,0.00046669188323246707;282,0.00045578942684229264;283,0.00044644446422214314;284,0.00046535688857244576;285,0.000455121929512282;286,0.0004721987362050552;287,0.00047247686009255967;288,0.0004636325204699181;289,0.00047030749377002486;290,0.00046468939124243505;291,0.0004688056247775009;292,0.0004681937522249911;293,0.0004663025097899609;294,0.0004690837486650054;295,0.00046457814168743327;296,0.0004654681381274475;297,0.00045684629761480954;298,0.0004588487896048416;299,0.0004614075293698825;300,0.00045812566749733;301,0.00046474501601993594;302,0.00045940503737985054;303,0.00045979441082235673;304,0.00045957191171235316;305,0.0004671925062299751;306,0.00046819375222499117;307,0.0004749799750800997;308,0.0004736449804200783;309,0.00045840379138483453;310,0.0004233045567817729;311,0.00024430402278390886;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.0005092448380206479;2,0.0006714466892132431;3,0.000789816215735137;4,0.0009078519935920257;5,0.0010629894980420077;6,0.0012417675329298684;7,0.0013876156995372016;8,0.0015003114987540052;9,0.0016401521893912425;10,0.0017751535243859026;11,0.0019043698825204703;12,0.002070187344250623;13,0.0021912824848700605;14,0.002312600124599502;15,0.002465290138839445;16,0.0026110826806692777;17,0.0027508121217515134;18,0.002918798949804201;19,0.003080945176219296;20,0.003243369526521894;21,0.0034069619971520116;22,0.0034838354396582415;23,0.003555090779636882;24,0.0037396537913848347;25,0.003973389106443574;26,0.004092704254182983;27,0.004171190815236739;28,0.0043403457636169455;29,0.004507720719117123;30,0.0046480064079743675;31,0.0047586997152011395;32,0.0048802398540405845;33,0.005024085528657886;34,0.005204254182983268;35,0.005299595051619794;36,0.005402389640441439;37,0.005567094606621574;38,0.005738808294766822;39,0.005868247152011393;40,0.006053310786756853;41,0.00615371351014596;42,0.006258510590957635;43,0.006399130028479886;44,0.006574292452830189;45,0.006722254360982557;46,0.006846965112139551;47,0.0069184429512281955;48,0.0071249221253115;49,0.007334182538269847;50,0.007566916607333571;51,0.007700193574225704;52,0.007851548593805626;53,0.007918465201139195;54,0.00796068440726237;55,0.008047737184051263;56,0.008210272783908863;57,0.008380985226059096;58,0.0084437855998576;59,0.008429156283374867;60,0.008402790138839444;61,0.008270180669277323;62,0.008052743414026342;63,0.00781494749021004;64,0.0077344028123887505;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "enigmaticdelicacy:etherium_ore", + "distrib": "0,0;1,0.00005529102883588466;2,0.000056737273050907794;3,0.00005495728017087932;4,0.00005145291918832325;5,0.00005612540049839801;6,0.00005484603061587754;7,0.000052954788180847284;8,0.000057071021715913135;9,0.00005278791384834461;10,0.00005384478462086152;11,0.00005529102883588466;12,0.00005684852260590958;13,0.000055235404058383766;14,0.000051063545745817016;15,0.00005362228551085795;16,0.0000517310430758277;17,0.00005434540761836953;18,0.00005239854040583838;19,0.00005746039515841937;20,0.000053566660733357074;21,0.000054011658953364186;22,0.00005540227839088644;23,0.000055680402278390885;24,0.00005629227483090068;25,0.00005245416518333928;26,0.00005590290138839445;27,0.00005373353506585974;28,0.00005690414738341047;29,0.00005306603773584906;30,0.00005239854040583838;31,0.000055346653613385544;32,0.00005295478818084728;33,0.000052954788180847284;34,0.000054790405838376654;35,0.000053677910288358845;36,0.000057293520825916705;37,0.00005412290850836597;38,0.00005484603061587754;39,0.00005334416162335352;40,0.00005529102883588466;41,0.00005423415806336775;42,0.000054901655393378425;43,0.00005556915272338911;44,0.00005351103595585618;45,0.00005490165539337843;46,0.00005645914916340336;47,0.00005606977572089712;48,0.00005534665361338555;49,0.000054901655393378425;50,0.00005568040227839089;51,0.00005412290850836597;52,0.00005256541473834105;53,0.00005289916340334639;54,0.00005373353506585974;55,0.000054122908508365965;56,0.00005434540761836953;57,0.00005640352438590245;58,0.00005606977572089711;59,0.000051953542185831254;60,0.00005684852260590958;61,0.00005306603773584906;62,0.00005579165183339267;63,0.00005178666785332859;64,0.000028535510857956568;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00016648495906016375;2,0.00023907529369882519;3,0.00031511436454254184;4,0.00037958348166607336;5,0.000437933873264507;6,0.0004694174973300107;7,0.0005073535955856177;8,0.0005724902100391598;9,0.0006524786400854397;10,0.0007324114453542187;11,0.0007818618725525099;12,0.0008139573691705233;13,0.0008562322000711998;14,0.0009012882698469206;15,0.0009511280704877182;16,0.0010243302776788892;17,0.001104819330722677;18,0.0011558828764684941;19,0.0011799127803488788;20,0.0012293632075471698;21,0.0013062922748309008;22,0.0013473989854040586;23,0.0013738763794944823;24,0.0014387904948380207;25,0.0014940815236739054;26,0.001547370060519758;27,0.0016006029725881095;28,0.0016696333214667142;29,0.0017315993236027055;30,0.0017696466714133144;31,0.0017896715913136348;32,0.0018262170701317194;33,0.001922169811320755;34,0.002018066927732289;35,0.002115577162691349;36,0.002195064969740121;37,0.0022498553755784974;38,0.0022548616055535777;39,0.0022729952830188678;40,0.0023055914026343894;41,0.0023684474012103953;42,0.0023977060341758634;43,0.0024122797258810972;44,0.002477305090779637;45,0.002602683339266643;46,0.0026672080811676754;47,0.002719829120683517;48,0.0027687789248843006;49,0.0028396448914204345;50,0.002882030971876113;51,0.0029203564435742258;52,0.002944497597009612;53,0.00303188412246351;54,0.0030919032573869703;55,0.0031018044677821287;56,0.003153424261302955;57,0.003279191883232467;58,0.0034006207725169103;59,0.003475213599145604;60,0.0033892176931292275;61,0.0033922214311142753;62,0.0034749911000356;63,0.00356933072267711;64,0.0036748509255962974;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00002903613385546458;194,0.00003092737629049484;195,0.00003137237451050195;196,0.00002825738697045212;197,0.00002847988608045568;198,0.000027478640085439662;199,0.000028646760412958346;200,0.00003126112495550018;201,0.000028980509077963687;202,0.000029425507297970806;203,0.00002347365610537558;204,0.000026199270202919187;205,0.000027311765752936988;206,0.00002553177287290851;207,0.000026644268422926306;208,0.00003020425418298327;209,0.000029314257742969028;210,0.000030426753292986833;211,0.000026143645425418298;212,0.000024308027767888932;213,0.000025420523317906726;214,0.000025420523317906726;215,0.00002831301174795301;216,0.00002736739053043788;217,0.000024864275542897833;218,0.00002575427198291207;219,0.00002692239231043076;220,0.00002347365610537558;221,0.00002525364898540406;222,0.00002708926664293343;223,0.000027311765752936988;224,0.0000283686365254539;225,0.000022973033107867568;226,0.00002269490922036312;227,0.00002425240299038804;228,0.00002475302598789605;229,0.000024864275542897836;230,0.00002308428266286935;231,0.000023751779992880028;232,0.000020024919900320397;233,0.000024363652545389818;234,0.00002258365966536134;235,0.00002364053043787825;236,0.000020748042007831968;237,0.000019802420790316837;238,0.00002191616233535066;239,0.00002102616589533642;240,0.00002475302598789605;241,0.00002186053755784977;242,0.00002202741189035244;243,0.00002069241723033108;244,0.000020469918120327523;245,0.00002119304022783909;246,0.000022138661445354218;247,0.00002341803132787469;248,0.000020358668565325738;249,0.000018578675685297258;250,0.00001952429690281239;251,0.00002080366678533286;252,0.000019079298682805273;253,0.000018189302242791028;254,0.0000155749377002492;255,0.00001763305446778213;256,0.00001813367746529014;257,0.00001752180491278035;258,0.00001768867924528302;259,0.00001919054823780705;260,0.000018300551797792806;261,0.000019190548237807048;262,0.000017577429690281238;263,0.000016687433250267;264,0.00001852305090779637;265,0.000017354930580277682;266,0.000015574937700249202;267,0.0000133499466002136;268,0.00001418431826272695;269,0.00001574181203275187;270,0.00001351682093271627;271,0.000014184318262726948;272,0.00001774430402278391;273,0.000018912424350302596;274,0.00001663180847276611;275,0.00001635368458526166;276,0.00001496306514773941;277,0.000018022427910288357;278,0.000015964311142755425;279,0.000014295567817728732;280,0.000014073068707725167;281,0.000016186810252758988;282,0.00001512993948024208;283,0.00001323869704521182;284,0.00001652055891776433;285,0.00001373932004271983;286,0.00001535243859024564;287,0.00001407306870772517;288,0.0000116812032751869;289,0.00001195932716269135;290,0.00001407306870772517;291,0.00001418431826272695;292,0.00001490744037023852;293,0.0000133499466002136;294,0.000012682449270202919;295,0.0000155749377002492;296,0.00001407306870772517;297,0.00001095808116767533;298,0.00001329432182271271;299,0.00001429556781772873;300,0.000013794944820220718;301,0.00001106933072267711;302,0.000010234959060163758;303,0.00001357244571021716;304,0.000012571199715201142;305,0.000010012459950160202;306,0.00001245995016019936;307,0.000011124955500178;308,0.00000956746173015308;309,0.00001173682805268779;310,0.000010401833392666429;311,0.00000817684229263083;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000025865521537913852;194,0.00002269490922036312;195,0.00002675551797792809;196,0.00003042675329298683;197,0.000025531772872908505;198,0.00002580989676041296;199,0.000027534264862940548;200,0.00002464177643289427;201,0.00002747864008543966;202,0.000022917408330366682;203,0.00002147116411534354;204,0.000025086774652901392;205,0.000023529280882876465;206,0.000021526788892844432;207,0.000022027411890352437;208,0.00002230553577785689;209,0.000022973033107867568;210,0.00002202741189035244;211,0.000023037349256852974;212,0.000021450304823780705;213,0.0000234267226993592;214,0.00002147116411534354;215,0.00002180491278034888;216,0.00002202741189035244;217,0.00001913492346030616;218,0.00001969117123531506;219,0.00001729930580277679;220,0.000018356176575293702;221,0.00002241678533285867;222,0.000018801174795300818;223,0.000020581167675329298;224,0.000021026165895336417;225,0.000021359914560341758;226,0.000020803666785332857;227,0.00001941304734781061;228,0.00001818930224279103;229,0.00001713243147027412;230,0.00001674305802776789;231,0.00001551931292274831;232,0.000015408063367746528;233,0.00001507431470274119;234,0.0000144624421502314;235,0.00001412869348522606;236,0.000015241189035243857;237,0.000014017443930224278;238,0.00001507431470274119;239,0.00001407306870772517;240,0.000013238697045211821;241,0.000012571199715201139;242,0.00001251557493770025;243,0.000012793698825204699;244,0.000012070576717693129;245,0.0000116812032751869;246,0.00001095808116767533;247,0.00001195932716269135;248,0.00001351682093271627;249,0.00001151432894268423;250,0.00001329432182271271;251,0.00001134745461018156;252,0.000011236205055179778;253,0.00000928933784264863;254,0.000011681203275186899;255,0.000010791206835172659;256,0.00000867746529013884;257,0.00001023495906016376;258,0.000009233713065147738;259,0.00000928933784264863;260,0.000007509344962620151;261,0.000010234959060163762;262,0.00000967871128515486;263,0.0000062855998576005695;264,0.00000756496974012104;265,0.0000071199715201139205;266,0.00000595185119259523;267,0.00000806559273762905;268,0.000006487239676041296;269,0.000005207869793520826;270,0.00000567372730509078;271,0.000005571169121573514;272,0.000005986616678533286;273,0.000006396849412602349;274,0.00000600747597009612;275,0.000006341224635101459;276,0.0000048393556425774304;277,0.00000495060519757921;278,0.0000039493592025631895;279,0.0000033374866500534;280,0.0000028924884300462798;281,0.0000025587397650409404;282,0.00000216936632253471;283,0.00000322623709505162;284,0.00000300373798504806;285,0.0000022249911000355997;286,0.00000105687077251691;287,0.00000066749733001068;288,0.00000088999644001424;289,0.0000005562477750088999;290,0.00000022249911000356;291,0.00000044499822000712003;292,0.00000005562477750089001;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0006191593983624066;194,0.0005396159665361339;195,0.0004820443218227128;196,0.00044294010323958703;197,0.00041078898184407255;198,0.0004148495906016376;199,0.0004304801530793877;200,0.0004228039337842649;201,0.0003998865254538982;202,0.0003918765574937701;203,0.0004132920968316127;204,0.000437933873264507;205,0.00042920078319686725;206,0.00041028835884656463;207,0.000420745817016732;208,0.00040578275186899256;209,0.0004031683873264507;210,0.00042870016019935927;211,0.0004612962798148808;212,0.00044894757920968314;213,0.000419688946244215;214,0.00041167897828408683;215,0.0003962709149163404;216,0.00040578275186899256;217,0.00038703720185119257;218,0.0003861472054111784;219,0.00039510279458882165;220,0.000396938412246351;221,0.00040800774296902815;222,0.0004096764862940548;223,0.0004004427732289071;224,0.00041468271626913497;225,0.00041590646137415455;226,0.00040817461730153083;227,0.0003906528123887504;228,0.00038509033463866144;229,0.00041306959772160914;230,0.00042158018867924525;231,0.0004107889818440726;232,0.0004216914382342471;233,0.0004157952118191527;234,0.0004146827162691349;235,0.0004168520825916697;236,0.00041457146671413313;237,0.0003588354396582414;238,0.00020864854040583838;239,0.00005807226771092916;240,0.0000005562477750089;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.000711496529013884;130,0.000687188501245995;131,0.0006876334994660022;132,0.0006809585261658954;133,0.0006718916874332504;134,0.0006639373442506231;135,0.0006612117301530794;136,0.0006695554467782129;137,0.0006691660733357067;138,0.0006309518511925952;139,0.0006314524741901033;140,0.0006407418120327519;141,0.0006333437166251334;142,0.0005928488786044856;143,0.0005751601993592027;144,0.0005981332324670702;145,0.0006166562833748666;146,0.000595185119259523;147,0.0005658152367390532;148,0.0005568596475614099;149,0.0005358334816660733;150,0.0005069642221431115;151,0.0005215379138483446;152,0.0005371128515485939;153,0.0005176998042007832;154,0.0005061854752580991;155,0.0004988986294054824;156,0.0004941148985404059;157,0.0004911667853328587;158,0.0005084660911356354;159,0.000501123620505518;160,0.0004930024029903881;161,0.00048054245283018875;162,0.00047592559629761484;163,0.000488441171235315;164,0.0004793187077251691;165,0.0004659687611249556;166,0.0004542875578497686;167,0.00044750133499466005;168,0.00043426263794944824;169,0.00043904636881452483;170,0.000429812655749377;171,0.0004236383054467782;172,0.00040528212887148453;173,0.0004043365076539694;174,0.0004061165005339979;175,0.0004046146315414739;176,0.0003886503203987184;177,0.00035043609825560697;178,0.0003279080633677465;179,0.00031316749733001066;180,0.00035115922036311857;181,0.00038369971520113924;182,0.0003784153613385547;183,0.0003444286222855109;184,0.0003322467960128159;185,0.0003302999288002849;186,0.00030665939836240657;187,0.00028986071555713776;188,0.00028385323958704165;189,0.0002865232289070844;190,0.0002711707903168387;191,0.00027150453898184407;192,0.00026660955856176575;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009402256140975437;130,0.0009412824848700605;131,0.000925930046279815;132,0.0009535755606977572;133,0.0009554668031327876;134,0.0009675930046279815;135,0.0009449537201851193;136,0.0009382787468850125;137,0.0009756029725881098;138,0.0009566905482378071;139,0.0009363875044499823;140,0.0009203119437522251;141,0.0009291562833748665;142,0.0009265975436098256;143,0.0009507386970452118;144,0.0009566905482378072;145,0.0009333281416874334;146,0.0009314925240299039;147,0.0009511836952652191;148,0.000955244304022784;149,0.0009487918298326807;150,0.0009313256496974012;151,0.0009136369704521182;152,0.000938501245995016;153,0.0009212575649697402;154,0.0009346075115699538;155,0.0009261525453898183;156,0.0009286000355998576;157,0.0009317706479174083;158,0.0009376112495550018;159,0.0009527411890352441;160,0.0009388349946600214;161,0.0009269869170523317;162,0.0009208125667497331;163,0.0009247063011747954;164,0.0009287669099323603;165,0.0009149163403346386;166,0.0009230931826272696;167,0.0009283219117123533;168,0.0009554668031327875;169,0.0009440080989676042;170,0.0009302687789248844;171,0.0009140819686721253;172,0.0009211463154147385;173,0.0009467337130651478;174,0.0009124688501245995;175,0.0008951695443218228;176,0.0008944464222143112;177,0.0009097432360270559;178,0.0009029570131719473;179,0.0009075182449270202;180,0.0008987851548593806;181,0.0008886058205767177;182,0.0008940570487718051;183,0.0009185875756496975;184,0.0009259300462798149;185,0.0009193106977572089;186,0.000930491278034888;187,0.0009094651121395515;188,0.0009015107689569243;189,0.0009212575649697401;190,0.0009204788180847277;191,0.0009234825560697757;192,0.0009158619615521539;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00030643689925240295;66,0.000393434051263795;67,0.0004790405838376646;68,0.0005817795478818084;69,0.0006537023851904593;70,0.0007282952118191527;71,0.0008174061053755786;72,0.0009088532395870417;73,0.0009901766642933427;74,0.001065436988252047;75,0.0011694553221787115;76,0.0012506118725525098;77,0.0013343271626913493;78,0.0014070843716625136;79,0.001505373353506586;80,0.001622741634033464;81,0.0016810920256318976;82,0.0017631385724457102;83,0.0018555313278746887;84,0.001949092203631186;85,0.0020591736383054468;86,0.0021517332680669283;87,0.0022257698469206125;88,0.002324837575649698;89,0.002398985404058384;90,0.002483868814524742;91,0.0025498954254182986;92,0.0026756630473478106;93,0.0027878025987896045;94,0.002842314880740477;95,0.002939658241367035;96,0.0030589733891064437;97,0.0030897338910644365;98,0.0030979107333570666;99,0.00324687388750445;100,0.00339060831256675;101,0.003523829654681381;102,0.0036337998398006405;103,0.003671735938056248;104,0.0037067239231043077;105,0.003787435475258099;106,0.0038993525275898898;107,0.0040210039159843365;108,0.004085862406550374;109,0.00410054734781061;110,0.004200338198647205;111,0.004288392221431115;112,0.004356143200427198;113,0.004450427198291207;114,0.004548771804912781;115,0.004675206924172304;116,0.004732834193663226;117,0.004793409576361695;118,0.00495438768244927;119,0.005098344606621574;120,0.005138005072979708;121,0.005211318529725882;122,0.0052466958882164474;123,0.005315503737985049;124,0.0055353328586685655;125,0.005703375311498754;126,0.0059462330900676395;127,0.0062231888572445715;128,0.006322924083303668;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "bigreactors:anglesite_ore", + "distrib": "0,0;1,0.0012054445532217871;2,0.0012229663581345674;3,0.0012235782306870772;4,0.0012355931826272695;5,0.0012072801708793166;6,0.0012008833214667142;7,0.0012253025987896049;8,0.0012337575649697403;9,0.00123064257742969;10,0.0012127313990744038;11,0.0012110070309718762;12,0.001220296368814525;13,0.0012193507475970098;14,0.0012191838732645067;15,0.0012235782306870774;16,0.0012096720363118547;17,0.0012094495372018512;18,0.0012128982734069065;19,0.0012268044677821292;20,0.0011959883410466359;21,0.001217348255606978;22,0.0012256363474546102;23,0.001204943930224279;24,0.0011997708259166963;25,0.0011952095941616236;26,0.0011957658419366323;27,0.0011999933250267;28,0.0011922058561765752;29,0.001174739676041296;30,0.0012016620683517264;31,0.0012179045033819864;32,0.0012256363474546102;33,0.001222632609469562;34,0.001237985048059808;35,0.0012027189391242434;36,0.0012072245461018155;37,0.001207447045211819;38,0.0012144001423994306;39,0.001227694464222143;40,0.001208670790316839;41,0.0012272494660021359;42,0.001217237006051976;43,0.0012011614453542184;44,0.0012266932182271272;45,0.001218182627269491;46,0.0012092826628693487;47,0.0011922058561765754;48,0.0012054445532217871;49,0.0012093382876468494;50,0.0012058895514417945;51,0.0011966558383766468;52,0.0012250800996796013;53,0.0012240788536845852;54,0.0011937077251690993;55,0.001215234514061944;56,0.0012114520291918833;57,0.0012024408152367392;58,0.001223633855464578;59,0.0012127870238519045;60,0.0012053333036667856;61,0.001232311320754717;62,0.0012214644891420435;63,0.0011295167319330724;64,0.0006009144713421148;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.008081223300106799;66,0.007929145158419366;67,0.007736739053043789;68,0.007539604841580633;69,0.007302253915984337;70,0.007143500800996796;71,0.007021404414382343;72,0.006964889640441439;73,0.006847020736917053;74,0.006706345674617302;75,0.006558216892132432;76,0.0064529191883232456;77,0.006353962709149164;78,0.006190147739409043;79,0.006027612139551442;80,0.00585812344250623;81,0.0057324114453542185;82,0.005618770024919901;83,0.005515196689213244;84,0.005301096920612317;85,0.005122597009611962;86,0.004992268155927376;87,0.004793187077251691;88,0.0046570176219295125;89,0.004521015040939836;90,0.0044349635101459586;91,0.004289449092203631;92,0.004073068707725169;93,0.003936398629405482;94,0.0038018979174083306;95,0.003685085884656461;96,0.003465368013527946;97,0.00327997063011748;98,0.0031881341224635103;99,0.003027990388038448;100,0.0028543298326806693;101,0.0026759411712353152;102,0.002482200071199715;103,0.0023495906016375934;104,0.0022467403880384474;105,0.0021435008009967962;106,0.001994537646849413;107,0.0018064702741189035;108,0.0016559496262014955;109,0.0015101014595941616;110,0.0014155949626201494;111,0.0012892154681381275;112,0.0011452585439658243;113,0.0009777723389106444;114,0.0008141798682805268;115,0.0006422436810252759;116,0.0005030148629405482;117,0.00035638794944820224;118,0.00022155348878604488;119,0.00011124955500178;120,0.00003571110715557139;121,0.00000266998932004272;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004015552687789249;194,0.00040878648985404064;195,0.0003966602883588465;196,0.00041668520825916705;197,0.0004258076717693129;198,0.00040183339266642936;199,0.0004175752046991812;200,0.00041790895336418657;201,0.0004255295478818085;202,0.0004216914382342471;203,0.00041952207191171234;204,0.0004319820220719117;205,0.00043320576717693123;206,0.0004475013349946601;207,0.0004383232467070131;208,0.0004413269846920613;209,0.0004577362940548238;210,0.0004551775542897829;211,0.00046029503381986477;212,0.00045951628693485227;213,0.00046546813812744755;214,0.00045901566393734435;215,0.00046363252046991815;216,0.00046897249911000355;217,0.0004564569241723033;218,0.00047097499110003557;219,0.0004826005695977216;220,0.0004907217871128515;221,0.0004803199537201852;222,0.00048538180847276617;223,0.00048298994304022785;224,0.0004918342826628694;225,0.0004983423816304735;226,0.0004970630117479529;227,0.0005024586151655394;228,0.0005090779636881453;229,0.0005109135813456747;230,0.0005089110893556426;231,0.0005141398184407264;232,0.0005176998042007832;233,0.0005100235849056604;234,0.0005227616589533642;235,0.0005214266642933428;236,0.0005370016019935921;237,0.000536000355998576;238,0.0005297703809184764;239,0.0005353884834460663;240,0.0005487940548237807;241,0.0005288803844784623;242,0.0005452340690637238;243,0.0005607533819864722;244,0.0005591402634389463;245,0.0005563590245639018;246,0.0005569708971164116;247,0.0005657039871840513;248,0.0005758276966892132;249,0.0005834482912068352;250,0.000563812744749021;251,0.0005654814880740478;252,0.0005796658063367747;253,0.0005818907974368102;254,0.0005969651121395515;255,0.0005901232645069421;256,0.0005877870238519046;257,0.0006008032217871128;258,0.0006060875756496975;259,0.0006039182093271628;260,0.0005991901032395871;261,0.00060936943752225;262,0.0005991344784620861;263,0.0006004694731221075;264,0.0006036400854396582;265,0.0006119838020647917;266,0.0006281706123175508;267,0.0006320643467426131;268,0.0006190481488074048;269,0.0006238318796724814;270,0.0006402968138127448;271,0.0006272249911000356;272,0.0006410199359202564;273,0.0006399074403702385;274,0.0006478617835528658;275,0.000649808650765397;276,0.0006564836240655037;277,0.0006482511569953721;278,0.0006537023851904593;279,0.0006616567283730865;280,0.0006620461018155928;281,0.000654258632965468;282,0.0006602104841580633;283,0.0006684985760056961;284,0.0006731154325382699;285,0.0006797904058383767;286,0.0006883009967960127;287,0.0006837953898184408;288,0.0007007053221787114;289,0.0007014284442862229;290,0.0006892466180135281;291,0.0006904703631185477;292,0.0006876334994660022;293,0.0006935853506585975;294,0.0007103840334638662;295,0.0006941972232111073;296,0.0007011503203987184;297,0.0007017621929512282;298,0.0007047659309362762;299,0.0006792897828408688;300,0.000681626023495906;301,0.0006886903702385191;302,0.000682182271270915;303,0.0006909153613385546;304,0.0006733935564257744;305,0.0006717248131007476;306,0.0006728929334282663;307,0.0006572067461730153;308,0.0006802354040583839;309,0.0006688879494482023;310,0.0006681648273406907;311,0.0006637704699181204;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0040147739409042375;194,0.003966992257030972;195,0.0038801063545745823;196,0.0038238697045211816;197,0.0038222565859736563;198,0.0038397227661089357;199,0.0038986294054823784;200,0.003949414827340691;201,0.003947634834460662;202,0.0038615833036667853;203,0.0037942216981132074;204,0.003760179334282663;205,0.003709282662869349;206,0.0036841402634389467;207,0.0036868102527589895;208,0.003659275987896048;209,0.0036326317194731225;210,0.0035971431114275544;211,0.003558706390174439;212,0.0035578720185119265;213,0.003557705144179423;214,0.0035138728195087225;215,0.0034430068529725886;216,0.0034181425774296907;217,0.003417808828764685;218,0.0033639640441438237;219,0.003352616589533642;220,0.003428321911712353;221,0.0034475680847276613;222,0.003413525720897117;223,0.0033895514417942333;224,0.0033424928800284796;225,0.0032755206479174086;226,0.0032340245639017446;227,0.003230798326806693;228,0.0031851303844784625;229,0.003156817372730509;230,0.0031231087575649694;231,0.0031539248843004625;232,0.0031998709505161984;233,0.0032421457814168744;234,0.0032302977038091854;235,0.0031753960484158066;236,0.003139295567817729;237,0.0030691527233891068;238,0.003073102082591669;239,0.0030705433428266284;240,0.003050240299038804;241,0.0030038492346030616;242,0.002998286756852973;243,0.0029702518689925243;244,0.002939602616589534;245,0.0028879271982912066;246,0.0028474323602705595;247,0.002825182449270203;248,0.0028154481132075474;249,0.002832246796012816;250,0.002826350569597722;251,0.0027895825916696335;252,0.0027551508543965826;253,0.002754872730509078;254,0.0027578208437166254;255,0.0027339578141687432;256,0.0027074804200783197;257,0.002700360448558206;258,0.0026596431114275544;259,0.0026457369170523317;260,0.0026642599679601283;261,0.0026861761302954786;262,0.002628326361694553;263,0.0025378804734781063;264,0.0024858713065147742;265,0.002466625133499466;266,0.0024769157173371303;267,0.0024494370772516908;268,0.0024099434852260593;269,0.0023996529013883944;270,0.002414226593093628;271,0.002397817283730865;272,0.002366500533997864;273,0.0023810742257030972;274,0.002405827251690993;275,0.0023111538803844787;276,0.0022105842826628695;277,0.002149508276966892;278,0.0021711463154147383;279,0.0021956768422926307;280,0.0021676419544321823;281,0.0020781416874332504;282,0.0020577830188679247;283,0.0020755829476682094;284,0.002056114275542898;285,0.0020321956212175155;286,0.0020270225169099322;287,0.0020329187433250264;288,0.002017733179067284;289,0.0019558228017087934;290,0.001892188056247775;291,0.0018905193129227483;292,0.0018965267888928447;293,0.0018815080989676041;294,0.0018810074759700963;295,0.0018634856710573158;296,0.0018269958170167321;297,0.0017898940904236384;298,0.0018045234069063725;299,0.0017654748131007477;300,0.0017729285332858669;301,0.0018103083837664648;302,0.001786612228551086;303,0.001721809362762549;304,0.0016755295478818085;305,0.0016199603951584192;306,0.0015896448914204343;307,0.0015740143289426842;308,0.001567561854752581;309,0.0015627781238875043;310,0.001556047525809897;311,0.0015563812744749024;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0035075872196511215;130,0.003436999377002492;131,0.0034351637593449625;132,0.0034331612673549304;133,0.0034016776432894266;134,0.0032770781416874336;135,0.003221119615521538;136,0.0031602661089355642;137,0.0030776633143467427;138,0.003046624688501246;139,0.0030324959950160197;140,0.0029624644001423994;141,0.0028734091313634747;142,0.002841035510857957;143,0.0027963131897472413;144,0.002777067016731933;145,0.0027370728017087932;146,0.0027064791740833037;147,0.0026179801530793875;148,0.002536767977928088;149,0.0024356977572089714;150,0.0023359625311498754;151,0.0022981933072267714;152,0.0022830077429690284;153,0.00222749421502314;154,0.0021134634211463156;155,0.0020351437344250625;156,0.0019567684229263083;157,0.0019134923460306158;158,0.0018635969206123176;159,0.0018194864720541119;160,0.001766420434318263;161,0.0017430580277678887;162,0.001665795211819153;163,0.001583192417230331;164,0.0015006452474190103;165,0.0014434073513705946;166,0.0014039137593449627;167,0.001368313901744393;168,0.0012953898184407263;169,0.0012306425774296903;170,0.0011612784798860805;171,0.0010689413492346032;172,0.0009847254360982557;173,0.0009226481844072624;174,0.0008713621395514419;175,0.0008160711107155572;176,0.0007557738519045924;177,0.0007318551975792097;178,0.0007030415628337487;179,0.0006500311498754005;180,0.0005684852260590958;181,0.0004938923994304023;182,0.00043192639729441087;183,0.00036856977572089715;184,0.00032039871840512635;185,0.00027156016375934496;186,0.00021760412958348165;187,0.00014768378426486292;188,0.0000817684229263083;189,0.00002731176575293699;190,0.00000545122819508722;191,0.00000044499822000712;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.000026978017087931647;130,0.000027868013527945892;131,0.000027256140975436102;132,0.00002842426130295479;133,0.00002592809941260235;134,0.000025163258721965113;135,0.000027304812655749377;136,0.000028924884300462798;137,0.00002932121084015664;138,0.000025872474635101464;139,0.00002809051263794945;140,0.000027144891420434318;141,0.00002692239231043076;142,0.000028034887860448563;143,0.000029258632965468135;144,0.000030538002847988614;145,0.000026978017087931647;146,0.000028465979886080455;147,0.000029168242702029192;148,0.000028313011747953005;149,0.000028563323246707014;150,0.00003143495238519046;151,0.00003092737629049484;152,0.00003103862584549661;153,0.000032262370950516205;154,0.00002636614453542186;155,0.000029481132075471705;156,0.000027221375489498045;157,0.00002612973923104307;158,0.000028764963065147742;159,0.00002626184807760769;160,0.000027701139195443218;161,0.000029314257742969028;162,0.0000322623709505162;163,0.00003248487006051976;164,0.000029870505517977925;165,0.000031761747953008193;166,0.00003381986472054112;167,0.000032985493058027766;168,0.00003283947801708794;169,0.000034146660288358855;170,0.00003312455500178;171,0.000031511436454254184;172,0.000034598611605553586;173,0.00003459861160555357;174,0.00003176174795300819;175,0.00003243619838020648;176,0.000028403402011391958;177,0.000030906516998932006;178,0.00003004433294766821;179,0.0000300373798504806;180,0.00003265174439302243;181,0.00003271432226771093;182,0.00003327057004271983;183,0.000029835740032039874;184,0.00003067011169455323;185,0.00003233190192239232;186,0.00003304111783552866;187,0.00003554423282306871;188,0.00003348611605553578;189,0.00003404236383054468;190,0.00002970363118547526;191,0.000030315503737985044;192,0.0000318312789248843;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00004016108935564258;130,0.0000411623353506586;131,0.00004360982556069776;132,0.00003932671769312923;133,0.00003910421858312567;134,0.00004372107511569953;135,0.00003699047703809185;136,0.000039882965468138124;137,0.00003988296546813813;138,0.000037824848700605205;139,0.00004138483446066216;140,0.00004266420434318263;141,0.000041329209683161266;142,0.00004066171235315059;143,0.00003899296902812388;144,0.00003938234247063012;145,0.00004055046279814881;146,0.000041217960128159495;147,0.000043331701673193306;148,0.0000411623353506586;149,0.000039660466358134574;150,0.00004266420434318263;151,0.00003826984692061232;152,0.00004511169455322179;153,0.00003799172303310787;154,0.000036267354930580285;155,0.00003899296902812389;156,0.000039215468138127455;157,0.00003971609113563546;158,0.00003904859380562478;159,0.000034654236383054465;160,0.00003754672481310075;161,0.000038937344250623;162,0.0000367123531505874;163,0.00004082858668565326;164,0.00003966046635813457;165,0.0000361561053755785;166,0.00003437611249555002;167,0.0000383810964756141;168,0.00003977171591313635;169,0.00003682360270558918;170,0.00003287424350302599;171,0.000035933606265574943;172,0.00003209549661801353;173,0.000028758009967960127;174,0.000036267354930580285;175,0.00003521048415806337;176,0.000033374866500534;177,0.00003092737629049484;178,0.000027144891420434318;179,0.00002903613385546458;180,0.000032985493058027766;181,0.00003309674261302955;182,0.00003165049839800641;183,0.0000272561409754361;184,0.000032039871840512635;185,0.00003242924528301887;186,0.00003276299394802421;187,0.000034209238163047346;188,0.00002953675685297259;189,0.00002592114631541474;190,0.00002692239231043076;191,0.000030093004627981488;192,0.00003181737273050908;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0002475302598789605;194,0.0002398540405838377;195,0.0002363496796012816;196,0.0002303978284086864;197,0.00023990966536133857;198,0.0002400765396938412;199,0.00023228907084371663;200,0.00024113341046635815;201,0.00024057716269134928;202,0.0002340134389462442;203,0.00024202340690637238;204,0.000250311498754005;205,0.00023735092559629763;206,0.00024191215735137062;207,0.00023718405126379495;208,0.00023929779280882878;209,0.00023223344606621574;210,0.00023490343538625847;211,0.00022939658241367036;212,0.00023829654681381275;213,0.0002415784086863653;214,0.00023345719117123532;215,0.00024719651121395516;216,0.0002451383944464222;217,0.000234625311498754;218,0.00024513839444642224;219,0.00024875400498398004;220,0.00024953275186899253;221,0.00024096653613385545;222,0.00023901966892132435;223,0.00024346965112139558;224,0.00024202340690637238;225,0.0002470296368814525;226,0.0002404102883588466;227,0.000245249644001424;228,0.0002428577785688857;229,0.00023835217159131364;230,0.00023106532573869705;231,0.00023562655749377002;232,0.0002422459060163759;233,0.0002491433784264863;234,0.00024207903168387327;235,0.00023901966892132435;236,0.0002408552865788537;237,0.00024613964044143825;238,0.00024825338198647206;239,0.0002464733891064436;240,0.0002520914916340335;241,0.0002448602705589178;242,0.00024552776788892844;243,0.0002446377714489142;244,0.00024547214311142754;245,0.00023913091847632613;246,0.0002510902456390174;247,0.0002560408508365967;248,0.00025659709861160554;249,0.00024591714133143474;250,0.0002446933962264151;251,0.000247752758988964;252,0.0002436365254538982;253,0.00025153524385902455;254,0.0002426352794588822;255,0.0002392421680313279;256,0.00023228907084371663;257,0.00024736338554645783;258,0.00025092337130651484;259,0.00024536089355642576;260,0.0002414671591313635;261,0.0002468627625489498;262,0.0002480865076539694;263,0.000250311498754005;264,0.0002418009077963688;265,0.00025058962264150943;266,0.0002468071377714489;267,0.0002446933962264151;268,0.00024191215735137062;269,0.00025420523317906733;270,0.00025665272338910644;271,0.00024274652901388395;272,0.00023162157351370595;273,0.0002396315414738341;274,0.00024385902456390177;275,0.00024580589177643295;276,0.00023940904236383054;277,0.0002491990032039872;278,0.0002448046457814169;279,0.00024380339978640085;280,0.00024641776432894266;281,0.000246306514773941;282,0.0002407440370238519;283,0.00024714088643645426;284,0.0002528146137415451;285,0.00024808650765396944;286,0.00024736338554645783;287,0.00025031149875400497;288,0.00025003337486650056;289,0.0002597677109291563;290,0.0002509789960840156;291,0.00024675151299394807;292,0.0002470296368814525;293,0.0002418565325738697;294,0.00024502714489142046;295,0.00024730776076895694;296,0.0002386302954788181;297,0.00025303711285154865;298,0.000256374599501602;299,0.0002546502313990744;300,0.00024625088999644004;301,0.00025993458526165893;302,0.00024842025631897474;303,0.0002469183873264507;304,0.00025743147027411893;305,0.00024408152367390534;306,0.0002469183873264507;307,0.00024942150231399075;308,0.0002582102171591314;309,0.00024741901032395867;310,0.00023874154503381989;311,0.0002419677821288715;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0.0015027589889640442;2,0.0014974190103239588;3,0.00147561409754361;4,0.00146688100747597;5,0.001488685920256319;6,0.001495082769668921;7,0.0014958058917764329;8,0.0014828453186187256;9,0.0015080433428266286;10,0.0014718316126735493;11,0.001463932894268423;12,0.0014844584371662512;13,0.0014895202919188322;14,0.001494192773228907;15,0.0014914115343538626;16,0.0014745016019935922;17,0.0014689947490210038;18,0.001482122196511214;19,0.0014574804200783197;20,0.0014635435208259168;21,0.0014798415806336776;22,0.0014766709683161267;23,0.001466436009255963;24,0.0014665472588109652;25,0.0014741678533285868;26,0.0014700516197935208;27,0.0014816771982912068;28,0.0014788959594161624;29,0.0014575360448558206;30,0.0014858490566037738;31,0.0014657128871484516;32,0.0014640997686009257;33,0.0014407373620505517;34,0.0014379561231755073;35,0.0014640441438234248;36,0.0014740009789960841;37,0.001455811676753293;38,0.0014579254182983269;39,0.0014515285688857247;40,0.0014535310608757566;41,0.0014605954076183695;42,0.001468438501245995;43,0.0014510279458882164;44,0.0014592047881808474;45,0.0014576472944108224;46,0.001456367924528302;47,0.001432171146315415;48,0.0014223811854752579;49,0.0014451317194731222;50,0.0014460217159131365;51,0.0014642666429334284;52,0.0014439079743681026;53,0.001457702919188323;54,0.001458815414738341;55,0.0014662691349234605;56,0.0014362873798504808;57,0.0014633210217159132;58,0.001463932894268423;59,0.0014530860626557494;60,0.0014587041651833391;61,0.001464822890708437;62,0.0014788959594161622;63,0.001347565859736561;64,0.0007231777322890709;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.003786601103595586;130,0.0038009522961908156;131,0.0037739742791028834;132,0.00382437032751869;133,0.003824537201851193;134,0.003758176842292631;135,0.003739041918832325;136,0.0037899385902456393;137,0.003822534709861161;138,0.003789104218583126;139,0.0037405994126023497;140,0.003710728907084372;141,0.003747719384122464;142,0.003710728907084372;143,0.003700493948024208;144,0.0037576205945176223;145,0.0037844873620505523;146,0.0038165828586685657;147,0.003834494037023852;148,0.0037881585973656108;149,0.0038017310430758277;150,0.0037537268600925603;151,0.0037414337842648633;152,0.003736038180847277;153,0.003775420523317907;154,0.0037358156817372734;155,0.0037321444464222145;156,0.0037367056781772877;157,0.0037432694019223925;158,0.003762126201495194;159,0.0037826517443930226;160,0.0037560074759700962;161,0.003741545033819865;162,0.0037202963688145246;163,0.0037265819686721257;164,0.003742323780704877;165,0.003750278123887504;166,0.003714733891064436;167,0.003704498932004272;168,0.003694931470274119;169,0.0036558828764684946;170,0.003657329120683518;171,0.003686921502313991;172,0.003714622641509434;173,0.003695320843716625;174,0.003690092114631542;175,0.0036934852260590957;176,0.0036914271092915634;177,0.0036729596831612675;178,0.003690982111071556;179,0.0036839733891064442;180,0.0036687878248487004;181,0.003688923994304023;182,0.0036786334104663585;183,0.00368375088999644;184,0.0036755740477038092;185,0.0036999377002491993;186,0.003648762904948381;187,0.0036304067283730868;188,0.003625789871840513;189,0.0036330767176931296;190,0.0036416985582057677;191,0.003656661623353507;192,0.0036151655393378427;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00024725213599145605;130,0.00024647338910644355;131,0.00024308027767888933;132,0.00024391464934140267;133,0.000260435208259167;134,0.00024202340690637238;135,0.0002547058561765753;136,0.00025848834104663583;137,0.00025314836240655043;138,0.0002461396404414382;139,0.00024196778212887154;140,0.00023952029191883235;141,0.0002564302242791029;142,0.000251813367746529;143,0.00024619526521893915;144,0.00024308027767888928;145,0.00024502714489142046;146,0.00024324715201139196;147,0.0002516464934140264;148,0.00024630651477394093;149,0.0002426352794588822;150,0.0002386302954788181;151,0.00024257965468138127;152,0.00024397027411890356;153,0.00024007653969384122;154,0.0002436921502313991;155,0.0002390752936988252;156,0.00024536089355642576;157,0.0002506452474190104;158,0.0002458615165539338;159,0.00023579343182627272;160,0.00024330277678889288;161,0.0002469183873264507;162,0.00024864275542897825;163,0.00024174528301886794;164,0.00023940904236383057;165,0.00024385902456390177;166,0.0002478640085439658;167,0.0002525364898540406;168,0.0002526477394090424;169,0.00023851904592381632;170,0.00024319152723389106;171,0.000245750266998932;172,0.0002468627625489498;173,0.00023851904592381632;174,0.000238685920256319;175,0.00024118903524385904;176,0.0002489208793164827;177,0.0002439146493414026;178,0.00022978595585617658;179,0.00024246840512637952;180,0.00023668342826628697;181,0.0002530927376290495;182,0.00024163403346386616;183,0.00023501468494126025;184,0.0002425240299038804;185,0.00023890841936632254;186,0.0002446933962264151;187,0.0002375734247063012;188,0.00024274652901388395;189,0.00023774029903880382;190,0.0002481421324314703;191,0.0002464733891064436;192,0.00023379093983624067;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.005482767443930224;194,0.0057078809184763265;195,0.005859291562833749;196,0.00591369259522962;197,0.006039571466714133;198,0.006200772071911713;199,0.0062115076539693845;200,0.006056314524741902;201,0.005889940815236739;202,0.005739475792096832;203,0.005646693663225347;204,0.005498787379850481;205,0.005353384211463154;206,0.0052669989320042725;207,0.005045389818440727;208,0.004825393823424707;209,0.004675985671057316;210,0.004541151210395159;211,0.004362929423282307;212,0.004193273851904593;213,0.004043420701317195;214,0.003904525631897473;215,0.0037697467960128165;216,0.0036329654681381274;217,0.0034944597721609113;218,0.0033331479174083306;219,0.003212164026343895;220,0.003071488964044144;221,0.002850380473478106;222,0.0027152678889284442;223,0.0025662491100035606;224,0.002382965468138127;225,0.002276666518333927;226,0.002125923371306515;227,0.0019468115877536488;228,0.0017774341402634391;229,0.0016125622997508011;230,0.0014846253114987541;231,0.0013429490032039874;232,0.0011851971342114632;233,0.0010128159487362049;234,0.000877369615521538;235,0.0007072134211463155;236,0.0005383922214311143;237,0.00038431158775364906;238,0.00022055224279102884;239,0.00008460528657885369;240,0.000016631808472766107;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0.0035344539871840514;2,0.003543632075471698;3,0.003532618369526522;4,0.0035847387860448556;5,0.0035895781416874334;6,0.003556481399074404;7,0.003542853328586686;8,0.003560208259166964;9,0.0035247196511213955;10,0.0035547014061943754;11,0.0035550351548593803;12,0.003517265930936276;13,0.0035188790494838024;14,0.003510535332858669;15,0.0035201027945888216;16,0.0035485270558917766;17,0.003541685208259167;18,0.003532284620861517;19,0.003546302064791741;20,0.003547803933784265;21,0.0035101459594161625;22,0.003506196600213599;23,0.0034941260234959064;24,0.0035361227305090786;25,0.003550863296546814;26,0.0035592070131719475;27,0.0035199915450338203;28,0.0035279458882164477;29,0.0034842248131007475;30,0.003531895247419011;31,0.003529948380206479;32,0.003548638305446778;33,0.0035305046279814883;34,0.003498520380918476;35,0.003489842915628338;36,0.003555535777856889;37,0.0035180446778212892;38,0.0035244971520113923;39,0.0035375689747241014;40,0.0035601526343894624;41,0.0035119259522961906;42,0.003533897739409043;43,0.003556036400854397;44,0.0035575938946244214;45,0.0035318396226415097;46,0.003538180847276611;47,0.0035073090957636168;48,0.0035264440192239233;49,0.0034846141865432544;50,0.003485059184763261;51,0.003492346030615878;52,0.0035033597365610545;53,0.0034967960128159488;54,0.0035310608757564968;55,0.0035345652367390536;56,0.0034859491812032754;57,0.0034557449270202923;58,0.003467759878960484;59,0.0035021916162335355;60,0.003509756585973656;61,0.0034761592203631187;62,0.0034870060519757926;63,0.003186354129583482;64,0.0017755985226059097;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00027484897872908514;194,0.0002800638016197935;195,0.00027358351504093984;196,0.00025732022071911715;197,0.000250436654503382;198,0.00025188289871840513;199,0.0002483507253470987;200,0.00023204571244215023;201,0.00022439035243859029;202,0.00022522993892399435;203,0.00022244174695176225;204,0.00021373820754716982;205,0.00019868822868458524;206,0.00019858045567817728;207,0.00019890203642310432;208,0.0001918098772917408;209,0.00017933080611427554;210,0.00016548197479085083;211,0.0001705316616233535;212,0.00016684652011391955;213,0.00016352293965824136;214,0.00015729470285243862;215,0.00015492543498576007;216,0.00014817919243948022;217,0.00014210740032039872;218,0.00013696906149875403;219,0.00012749199003203989;220,0.00011803577785688858;221,0.00011380829476682094;222,0.00011709015663937346;223,0.00011325204699181203;224,0.00009878960484158063;225,0.00008360404058383768;226,0.00007292408330366679;227,0.00006274474902100392;228,0.000054901655393378425;229,0.00004694383566215735;230,0.000033805958526165896;231,0.00003114118402901389;232,0.00003602399652901389;233,0.00003598923104307582;234,0.00003025987896048416;235,0.00001868992524029904;236,0.00001351682093271627;237,0.000010012459950160199;238,0.000003671235315058739;239,0.0000005562477750088999;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00003804734781060876;66,0.000046780437878248495;67,0.00005651477394090424;68,0.00006385724457102173;69,0.0000767621929512282;70,0.00009255962976148095;71,0.00010018022427910289;72,0.00011664515841936632;73,0.00011976014595941616;74,0.00013199759700961196;75,0.00014117568529725883;76,0.00015358001067995727;77,0.00016336997152011394;78,0.00017493992524029908;79,0.00018906861872552508;80,0.00019641108935564258;81,0.00019301797792808828;82,0.00022889595941616236;83,0.0002308984514061944;84,0.00023601593093627626;85,0.00024335840156639374;86,0.0002598233357066572;87,0.0002700582947668209;88,0.00028596698113207545;89,0.00029820443218227125;90,0.00030999688501246;91,0.00032607244571021717;92,0.0003292430580277679;93,0.00033135679957280173;94,0.00034848923104307584;95,0.000361561053755785;96,0.0003696266464934141;97,0.00038319909220363115;98,0.0003940459238163048;99,0.00041056648273406904;100,0.0004091758632965468;101,0.0004218583125667497;102,0.0004369882520469918;103,0.00044605509077963684;104,0.00044755695977216094;105,0.000471308739765041;106,0.0004863830544677821;107,0.0004908886614453543;108,0.00048693930224279105;109,0.0004987873798504806;110,0.0005182560519757921;111,0.0005277678889284445;112,0.0005366122285510858;113,0.0005483490566037736;114,0.0005526321644713422;115,0.0005672058561765754;116,0.0005803889284442863;117,0.0005929601281594874;118,0.0006001357244571021;119,0.0006162112851548593;120,0.0006360137059451762;121,0.0006397405660377359;122,0.0006540361338554647;123,0.0006864097543609826;124,0.0006647160911356355;125,0.0006632698469206124;126,0.0006933628515485939;127,0.0006883009967960128;128,0.0007061009255962976;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00025220274118903526;194,0.0002469183873264507;195,0.00024736338554645783;196,0.00025554022783908864;197,0.00024474902100391594;198,0.0002540383588465646;199,0.00025554022783908864;200,0.0002464733891064436;201,0.0002469183873264507;202,0.0002485871306514774;203,0.00024625088999644004;204,0.00024908775364898545;205,0.00024174528301886797;206,0.0002575983446066216;207,0.00025876646493414024;208,0.0002519802420790317;209,0.00024219028123887508;210,0.0002444152723389107;211,0.0002374621751512994;212,0.00023690592737629054;213,0.00024402589889640442;214,0.00024914337842648634;215,0.0002428577785688857;216,0.00025242524029903883;217,0.00025437210751156996;218,0.0002542052331790673;219,0.00025426085795656817;220,0.0002526477394090424;221,0.0002538158597365611;222,0.00024380339978640083;223,0.0002468071377714489;224,0.00024613964044143825;225,0.0002436921502313991;226,0.000240688412246351;227,0.00024391464934140267;228,0.0002466402634389463;229,0.00025515085439658245;230,0.0002524808650765397;231,0.00024313590245639017;232,0.00024207903168387327;233,0.00024447089711641154;234,0.00025136836952652187;235,0.00024547214311142754;236,0.00024380339978640083;237,0.00024803088287646854;238,0.00025114587041651836;239,0.0002559852260590958;240,0.0002592114631541474;241,0.00025248086507653967;242,0.0002549283552865788;243,0.00026827830188679247;244,0.0002627158241367035;245,0.00026143645425418297;246,0.00024508276966892135;247,0.00024502714489142046;248,0.00024619526521893915;249,0.00024936587753648985;250,0.0002569308472766109;251,0.000260935831256675;252,0.00026143645425418297;253,0.0002489765040939836;254,0.0002419121573513706;255,0.0002499221253114988;256,0.0002517021181915273;257,0.0002448046457814169;258,0.0002578208437166252;259,0.00027161578853684585;260,0.0002578208437166252;261,0.00025003337486650056;262,0.00024591714133143474;263,0.00026232645069419725;264,0.00024497152011391957;265,0.00024547214311142754;266,0.0002490877536489854;267,0.0002570420968316127;268,0.00026327207191171237;269,0.0002554289782840869;270,0.0002576539693841225;271,0.0002575983446066216;272,0.0002488652545389818;273,0.0002570420968316127;274,0.00025442773228907085;275,0.0002497552509789961;276,0.0002579320932716269;277,0.00026026833392666434;278,0.00026649830900676397;279,0.00025598522605909573;280,0.00026338332146671415;281,0.0002614920790316839;282,0.0002557071021715914;283,0.0002408552865788537;284,0.00024424839800640797;285,0.0002520358668565326;286,0.00025643022427910287;287,0.00024936587753648985;288,0.00024825338198647206;289,0.00025159086863652544;290,0.0002503671235315059;291,0.00024441527233891064;292,0.0002525364898540406;293,0.00024285777856888576;294,0.0002542052331790673;295,0.00025236961552153794;296,0.0002583214667141332;297,0.00025298148807404775;298,0.00025548460306158775;299,0.00025387148451406203;300,0.00025147961908152366;301,0.0002743414026343895;302,0.0002528702385190459;303,0.0002519802420790317;304,0.00026032395870416523;305,0.0002567639729441082;306,0.00025448335706657174;307,0.00025531772872908513;308,0.00026594206123175504;309,0.0002513127447490211;310,0.00023217782128871485;311,0.00013489008543965826;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009474012103951584;130,0.0009568574225703099;131,0.0009264862940548238;132,0.0009362206301174795;133,0.0009352750088999645;134,0.0009253737985048061;135,0.000953241812032752;136,0.0009570242969028126;137,0.0009374443752224992;138,0.0009148607155571377;139,0.0009170857066571735;140,0.0009259856710573159;141,0.0009455655927376289;142,0.0009345518867924529;143,0.0009225369348522607;144,0.0009321043965824137;145,0.000916751957992168;146,0.0009172525809896761;147,0.0009198669455322179;148,0.000932938768244927;149,0.0009296012815948737;150,0.0009296569063723746;151,0.000925373798504806;152,0.0009139150943396227;153,0.0009198669455322179;154,0.0009035132609469562;155,0.0009181982022071912;156,0.0009014551441794234;157,0.0009011770202919187;158,0.0009149719651121395;159,0.0009187544499822001;160,0.0008958370416518334;161,0.0008876045745817017;162,0.0009046813812744749;163,0.0009190325738697045;164,0.0009186432004271983;165,0.0008992301530793877;166,0.000903235137059452;167,0.0009148050907796369;168,0.0009021226415094341;169,0.0008987851548593806;170,0.0009111338554645783;171,0.0009120794766820934;172,0.0009074069953720186;173,0.0009150275898896405;174,0.0009195888216447135;175,0.0009127469740121041;176,0.0009125244749021006;177,0.0008945020469918121;178,0.0008921658063367747;179,0.000909186988252047;180,0.0009068507475970097;181,0.00088999644001424;182,0.0008992857778568886;183,0.0009103551085795656;184,0.0009025676397294411;185,0.0008937789248843006;186,0.0008991745283018869;187,0.0009072401210395158;188,0.0009186432004271983;189,0.0008876045745817017;190,0.0009045701317194732;191,0.0009180313278746886;192,0.0009089088643645426;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.003599423727305091;194,0.0035702207191171233;195,0.003610214934140264;196,0.003662001601993592;197,0.0036610003559985763;198,0.003628237362050552;199,0.003614108668565326;200,0.0036458704165183344;201,0.003646816037735849;202,0.003657384745461018;203,0.0036825271448914206;204,0.0036297948558205767;205,0.003544744571021716;206,0.0035960862406550376;207,0.0036584416162335357;208,0.0036847521359914563;209,0.0036365810786756856;210,0.0036478172837308654;211,0.0036733490566037735;212,0.00358373754004984;213,0.0035704432182271277;214,0.003654102883588466;215,0.0036364698291206834;216,0.0036142755428978284;217,0.0036599991100035602;218,0.003625400498398007;219,0.003634634211463154;220,0.00363246484514062;221,0.003628181737273051;222,0.003691315859736561;223,0.0037174595051619793;224,0.0036894802420790315;225,0.00369120461018156;226,0.0036724590601637597;227,0.0036541585083659667;228,0.003691983357066572;229,0.0036872552509789962;230,0.0036734603061587753;231,0.003696767087931648;232,0.0037007720719117124;233,0.0036603884834460667;234,0.003670679067283731;235,0.00363624733001068;236,0.003669510946956212;237,0.0036821377714489146;238,0.0037003826984692064;239,0.0036924839800640797;240,0.0037028301886792452;241,0.0037273050907796375;242,0.003726359469562122;243,0.0037241901032395875;244,0.003734035688857245;245,0.0037140107689569244;246,0.00371812700249199;247,0.003717737629049484;248,0.0037442150231399075;249,0.003723633855464578;250,0.0037027189391242435;251,0.003762126201495194;252,0.003743825649697402;253,0.0037145113919544327;254,0.0037226326094695625;255,0.003765296813812745;256,0.003747719384122464;257,0.0036888683695265223;258,0.0036991589533641863;259,0.003700160199359203;260,0.0037230219829120685;261,0.003766798682805269;262,0.0037708592915628343;263,0.003756563723745105;264,0.0037330900676397294;265,0.0037661311854752582;266,0.0037746974012103952;267,0.0036950427198291207;268,0.0036650609647561412;269,0.0036765196689213246;270,0.0036991589533641863;271,0.0037849879850480597;272,0.0037917185831256675;273,0.003735871306514774;274,0.003721686988252047;275,0.0037497775008899963;276,0.0037374288002847986;277,0.003757898718405126;278,0.0037918298326806692;279,0.0037789805090779637;280,0.0037661311854752582;281,0.0037093382876468494;282,0.003681080900676398;283,0.00371495639017444;284,0.0037256919722321114;285,0.0037517799928800284;286,0.0037764217693129227;287,0.0037917742079031686;288,0.0037560074759700962;289,0.003723188857244571;290,0.003766353684585262;291,0.0038267065681737277;292,0.0037553956034175866;293,0.003697823958704166;294,0.0036774096653613385;295,0.003691315859736561;296,0.003749721876112496;297,0.0037464400142399436;298,0.003720185119259523;299,0.003710117034531862;300,0.0037423794054823782;301,0.00376563056247775;302,0.0038002291740833038;303,0.0037946110715557143;304,0.0037735292808828763;305,0.0037256919722321114;306,0.0037513906194375224;307,0.0037211307404770378;308,0.0037629605731577076;309,0.003764851815592738;310,0.00376373932004272;311,0.0037795923816304738;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "majruszsdifficulty:enderium_shard_ore", + "distrib": "0,0;1,0.0005728239587041652;2,0.0005690970986116056;3,0.000570932716269135;4,0.0005665383588465647;5,0.0005736583303666786;6,0.0005418409576361696;7,0.0005555246529013885;8,0.0005568596475614097;9,0.0005686521003915985;10,0.0005624221253114987;11,0.0005571933962264152;12,0.0005650364898540407;13,0.0005543565325738698;14,0.000567873353506586;15,0.0005672058561765754;16,0.0005702095941616233;17,0.000570988341046636;18,0.0005619771270914916;19,0.0005616990032039872;20,0.000546569063723745;21,0.0005637571199715201;22,0.0005548015307938769;23,0.0005679846030615878;24,0.00055875088999644;25,0.0005607533819864721;26,0.0005567483980064081;27,0.0005619215023139907;28,0.0005619771270914917;29,0.0005555802776788894;30,0.0005533552865788537;31,0.0005614765040939837;32,0.0005765508187967249;33,0.0005629783730865078;34,0.0005753270736917053;35,0.000569430847276611;36,0.000557749644001424;37,0.0005640908686365255;38,0.0005564702741189036;39,0.000568874599501602;40,0.0005667608579565681;41,0.0005732689569241723;42,0.0005675952296190815;43,0.0005733245817016733;44,0.0005672058561765753;45,0.0005676508543965824;46,0.0005560809006763974;47,0.000564313367746529;48,0.0005688189747241011;49,0.0005598077607689569;50,0.0005486271804912781;51,0.0005559696511213956;52,0.000545679067283731;53,0.0005402278390886437;54,0.0005426197045211819;55,0.0005423972054111783;56,0.0005603083837664648;57,0.000570877091491634;58,0.0005655371128515486;59,0.000556192150231399;60,0.0005539115343538626;61,0.0005634233713065148;62,0.0005528546635813457;63,0.0005190904236383055;64,0.0002799595051619794;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0028819753470986113;2,0.0029063389996440018;3,0.0029526188145247417;4,0.0029058383766464935;5,0.002902111516553934;6,0.0029092314880740477;7,0.0028661779102883587;8,0.00289437967248131;9,0.002886202830188679;10,0.0028677354040583833;11,0.002912624599501602;12,0.0028961040405838375;13,0.002922358935564258;14,0.002874243503025988;15,0.00286434229263083;16,0.0028790272338910647;17,0.002886202830188679;18,0.0028905971876112494;19,0.0028825315948736207;20,0.002872185386258455;21,0.0028532729619081525;22,0.0028715735137059455;23,0.00288497908508366;24,0.0028717960128159486;25,0.002895547792808829;26,0.002904559006763973;27,0.00285060297258811;28,0.0028361961552153796;29,0.0028889284442862226;30,0.002873687255250979;31,0.0028575004449982204;32,0.0028715735137059455;33,0.002880473478106088;34,0.002899052153791384;35,0.0028801397294410825;36,0.002875689747241011;37,0.0028722410110359558;38,0.0028648985404058384;39,0.002867512904948381;40,0.0028815859736561053;41,0.002890819686721253;42,0.002878192862228551;43,0.002883087842648629;44,0.002879583481666073;45,0.002898551530793877;46,0.002869793520825917;47,0.0028544410822356715;48,0.0028691260234959062;49,0.002833303666785333;50,0.0028503804734781057;51,0.002838309896760413;52,0.002869849145603418;53,0.002858557315770737;54,0.0028695710217159134;55,0.0028952140441438233;56,0.0028414805090779638;57,0.0029046146315414743;58,0.0028607266820932717;59,0.0028665116589533645;60,0.0028761347454610187;61,0.0028533842114631548;62,0.0028541073335706657;63,0.002625934496262015;64,0.001443240477038092;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0250873309006764;194,0.024631040850836596;195,0.024228595585617657;196,0.023713343271626913;197,0.024753470986116057;198,0.028058194642221437;199,0.031181748398006408;200,0.03210511970452118;201,0.03187588999644002;202,0.031556214400142404;203,0.031147817283730866;204,0.03070404280882877;205,0.030371517888928445;206,0.030084939035243854;207,0.029658241367034537;208,0.029007653969384123;209,0.028631018600925602;210,0.02838921769312923;211,0.028031327874688504;212,0.027697356710573162;213,0.027322223211107156;214,0.02674244615521538;215,0.02648562655749377;216,0.026225803221787115;217,0.025817628604485582;218,0.025515474813100746;219,0.025033764239943045;220,0.024440915361338557;221,0.024162735849056607;222,0.023723133232467074;223,0.02331128737985048;224,0.022928755784976863;225,0.02251474056603774;226,0.022189279992880034;227,0.02181169900320399;228,0.02123570443218227;229,0.020793431826272697;230,0.02033897739409042;231,0.02003498798504806;232,0.01975130161979352;233,0.019343460751156998;234,0.018967826628693486;235,0.018543298326806693;236,0.018056859647561416;237,0.017691571733713066;238,0.01739047481310075;239,0.016994760145959416;240,0.016596375489498043;241,0.01619048148807405;242,0.015724178978284088;243,0.015275620772516908;244,0.014883855464578141;245,0.014639495817016733;246,0.014252069241723033;247,0.013747719384122465;248,0.013442283730865076;249,0.013089845140619439;250,0.012647516909932361;251,0.0121498976504094;252,0.01167803266286935;253,0.011297837308650766;254,0.010896003915984337;255,0.010581223300106801;256,0.01042441705233179;257,0.010283408241367035;258,0.01027050329298683;259,0.01036617791028836;260,0.010411567728729084;261,0.010362617924528302;262,0.010342704254182985;263,0.010380751601993594;264,0.010372797258810965;265,0.010340979886080456;266,0.010294421947312211;267,0.010193073602705589;268,0.010211040405838378;269,0.010276510768956925;270,0.010269613296546813;271,0.0102311765752937;272,0.010290138839444643;273,0.010300930046279815;274,0.010387927198291208;275,0.010445721342114632;276,0.010340979886080456;277,0.010267110181559274;278,0.01027990388038448;279,0.010298593805624779;280,0.01032240121039516;281,0.010320064969740122;282,0.010364064168743324;283,0.010423638305446778;284,0.01037741411534354;285,0.01036306292274831;286,0.010423860804556782;287,0.01041184585261659;288,0.01038992969028124;289,0.01038369971520114;290,0.010314780615877536;291,0.010285466358134567;292,0.010340089889640441;293,0.010346653613385546;294,0.010349824225703099;295,0.0103500467248131;296,0.010373353506585973;297,0.010481488074047706;298,0.010425140174439303;299,0.010412402100391599;300,0.01039065281238875;301,0.010369348522605909;302,0.010398718405126378;303,0.010350825471698116;304,0.010295868191527235;305,0.010290138839444643;306,0.010309885635457457;307,0.01040550462798149;308,0.010461296279814881;309,0.01039304467782129;310,0.010339199893200427;311,0.010318284976860093;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "allthemodium:allthemodium_slate_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00001729930580277679;130,0.000024474902100391596;131,0.00003454298682805269;132,0.00003815859736561053;133,0.00004605731577073692;134,0.00005378915984336063;135,0.00006040850836596654;136,0.00006936409754360984;137,0.00007375845496618013;138,0.00008110092559629763;139,0.00008566215735137059;140,0.00009817773228907084;141,0.00010602082591669634;142,0.00010474145603417585;143,0.00011486516553933784;144,0.00011658953364186543;145,0.0001291607333570666;146,0.0001323869704521182;147,0.0001423994304022784;148,0.00015096564613741547;149,0.00015697312210751158;150,0.00016264684941260234;151,0.00016476059095763617;152,0.00017121306514773942;153,0.0001786111605553578;154,0.00018372864008543965;155,0.0001840067639729441;156,0.00020252981488074048;157,0.00021148540405838378;158,0.00021888349946600215;159,0.00022244348522605913;160,0.0002174928800284799;161,0.00021181915272338914;162,0.00020748042007831972;163,0.00020853729085083662;164,0.00019273985404058384;165,0.00019557671769312922;166,0.00018078052687789248;167,0.00017938990744037025;168,0.00017966803132787472;169,0.00016375934496262013;170,0.00015180001779992882;171,0.00014412379850480597;172,0.00013188634745461017;173,0.00012966135635457458;174,0.00012254138483446068;175,0.00011531016375934496;176,0.00010852394090423638;177,0.00009784398362406552;178,0.00010040272338910645;179,0.00009267087931648274;180,0.0000855509077963688;181,0.00007520469918120327;182,0.0000733690815236739;183,0.00006747285510857957;184,0.00005768289426842293;185,0.000048727305090779635;186,0.00004511169455322178;187,0.00003565548237807048;188,0.00003215112139551442;189,0.000021749288002847988;190,0.00001546368814524742;191,0.00001129182983268067;192,0.0000038937344250623005;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0009257075471698114;194,0.0009206456924172304;195,0.0008978395336418655;196,0.0009306025275898896;197,0.0009110226059095764;198,0.0008977282840868637;199,0.0009034020113919544;200,0.0008877158241367034;201,0.0009006763972944109;202,0.0008912758098967604;203,0.0008852127091491635;204,0.0009047370060519758;205,0.0009204231933072269;206,0.0008956701673193307;207,0.0009063501245995017;208,0.0009194219473122108;209,0.0009113007297970809;210,0.0009159175863296546;211,0.0009100769846920613;212,0.0009035132609469562;213,0.0009064613741545033;214,0.0009057938768244928;215,0.000880929601281595;216,0.0008976170345318619;217,0.0009354418832324669;218,0.0009216469384122463;219,0.0009169188323246707;220,0.0009150832146671414;221,0.0009269312922748309;222,0.0009052376290494839;223,0.0009066282484870062;224,0.0009079076183695266;225,0.0009089088643645426;226,0.0009415606087575651;227,0.000938000622997508;228,0.0009224813100747597;229,0.000929935030259879;230,0.0009274319152723389;231,0.0009314368992524029;232,0.000911745728017088;233,0.0009185319508721965;234,0.000945509967960128;235,0.0009563011747953009;236,0.0009277100391598433;237,0.0009179757030971876;238,0.0009158063367746529;239,0.000923871929512282;240,0.0009255962976148096;241,0.0009210906906372375;242,0.0009168075827696688;243,0.0009161400854396581;244,0.0009065726237095052;245,0.0009246506763972945;246,0.0009257075471698114;247,0.0009232600569597722;248,0.0009327718939124244;249,0.0009126357244571022;250,0.0009104663581345674;251,0.0009180313278746885;252,0.0009343850124599502;253,0.0009513505695977217;254,0.0009194775720897117;255,0.0009302131541473835;256,0.0009428399786400855;257,0.0009412268600925595;258,0.0009228150587397652;259,0.00093499688501246;260,0.000926931292274831;261,0.0009164182093271628;262,0.0009282662869348523;263,0.0009331056425774299;264,0.0009460662157351371;265,0.0009463443396226416;266,0.0009428956034175863;267,0.0009356643823424707;268,0.0009368325026699895;269,0.0009215913136347454;270,0.0009157507119971521;271,0.0009202006941972233;272,0.0009240944286222854;273,0.0009408374866500535;274,0.0009269869170523317;275,0.000933995639017444;276,0.0009247619259522962;277,0.0009622530259878961;278,0.0009565236739053045;279,0.0009309919010323959;280,0.000954743681025276;281,0.0009491812032751869;282,0.0009359981310074761;283,0.0009376112495550019;284,0.0009165294588821646;285,0.0009369993770024922;286,0.0009209794410822356;287,0.000908185742257031;288,0.0009225369348522605;289,0.0009341068885724457;290,0.0009343850124599504;291,0.0009301019045923817;292,0.0009246506763972945;293,0.0009410043609825562;294,0.0009303244037023853;295,0.0009291006585973656;296,0.0009569130473478107;297,0.0009485693307226771;298,0.0009403924884300464;299,0.0009176419544321824;300,0.0009376112495550018;301,0.0009366656283374867;302,0.0009441749733001068;303,0.0009139707191171235;304,0.0009185875756496974;305,0.0009190325738697045;306,0.0009423393556425774;307,0.0009239831790672838;308,0.0009259856710573159;309,0.0009318818974724103;310,0.0008324247953008187;311,0.0004679156283374867;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000918810074759701;194,0.0008957257920968315;195,0.0008822089711641154;196,0.0008931114275542898;197,0.0009176419544321823;198,0.0009171413314346742;199,0.0008856577073691706;200,0.0008725302598789604;201,0.0008597921858312567;202,0.0008767577429690282;203,0.000894057048771805;204,0.0008898851904592382;205,0.0008744771270914917;206,0.0008497241011035956;207,0.0008753671235315058;208,0.0008903301886792453;209,0.0008992857778568886;210,0.0008948357956568174;211,0.0008932226771092915;212,0.0008878270736917052;213,0.0008872708259166965;214,0.0008942239231043076;215,0.0008908308116767534;216,0.0008784264862940548;217,0.0008908308116767534;218,0.0008848789604841581;219,0.0009045701317194732;220,0.0009064613741545035;221,0.000909186988252047;222,0.0008938901744393024;223,0.000898173282306871;224,0.0008838220897116411;225,0.0008706390174439303;226,0.0009030682627269492;227,0.000911690103239587;228,0.0008835439658241367;229,0.0008857133321466715;230,0.000899619526521894;231,0.000914248843004628;232,0.0008956701673193308;233,0.0008835439658241368;234,0.0008884945710217159;235,0.0008973389106443576;236,0.0008869927020291919;237,0.0009111338554645783;238,0.0009020670167319331;239,0.0009051263794944821;240,0.0009274319152723389;241,0.0009408931114275544;242,0.0009171413314346743;243,0.000915250088999644;244,0.00091374822000712;245,0.0009121351014595941;246,0.0009094094873620506;247,0.000906183250266999;248,0.0009098544855820577;249,0.0008969495372018512;250,0.0009174750800996798;251,0.0009054045033819865;252,0.0009245950516197936;253,0.0009206456924172303;254,0.0008971720363118549;255,0.0008703608935564258;256,0.0009027901388394446;257,0.0009081301174795301;258,0.0009106332324670702;259,0.0009007320220719118;260,0.000922370060519758;261,0.0009125800996796012;262,0.0009100769846920613;263,0.0009333837664649341;264,0.0009308250266998933;265,0.0009158619615521539;266,0.0009140819686721253;267,0.0009262081701673193;268,0.00093188189747241;269,0.0009236494304022786;270,0.0009282106621573514;271,0.0009115232289070845;272,0.0009095207369170524;273,0.0009319931470274119;274,0.0009179757030971877;275,0.000928377536489854;276,0.0009224813100747597;277,0.0009077963688145247;278,0.000904125133499466;279,0.000904125133499466;280,0.0008778702385190459;281,0.0008988964044143823;282,0.0009206456924172304;283,0.0009293231577073692;284,0.0009097432360270559;285,0.000928933784264863;286,0.0009240388038447846;287,0.0009283219117123531;288,0.0009237050551797793;289,0.0009114676041295835;290,0.0008869370772516911;291,0.0008829320932716269;292,0.0008909976860092561;293,0.0009208125667497331;294,0.0009210906906372376;295,0.0009014551441794234;296,0.000908686365254539;297,0.0009275431648273408;298,0.0009314925240299038;299,0.0009302687789248844;300,0.000905182004271983;301,0.000901622018511926;302,0.0009065726237095053;303,0.0009013995194019225;304,0.0009102994838020649;305,0.0008978395336418655;306,0.0009160288358846566;307,0.0009246506763972945;308,0.0009150832146671413;309,0.0009221475614097545;310,0.0009160288358846566;311,0.0009174194553221787;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.001391008810964756;66,0.001413314346742613;67,0.0014182093271626912;68,0.0014458548415806336;69,0.0014042475080099683;70,0.0013932894268422927;71,0.0014449092203631187;72,0.0014778390886436457;73,0.0014825115699537202;74,0.0014835128159487363;75,0.0014875734247063012;76,0.0015212264150943396;77,0.0015274007653969385;78,0.00152623264506942;79,0.0015347432360270558;80,0.0015906461374154504;81,0.0016660177109291564;82,0.0017243681025275901;83,0.0017617479530081881;84,0.00180062967248131;85,0.0018276076895692417;86,0.001810030259878961;87,0.0018024096653613386;88,0.0018248264506941973;89,0.0018583681915272342;90,0.001872552509789961;91,0.0018941349234603063;92,0.0019380228729085087;93,0.001974679601281595;94,0.0019456434674261303;95,0.0019192216981132075;96,0.0019256185475258099;97,0.001961440904236383;98,0.0019912001601993592;99,0.0019951495194019224;100,0.002018011302954788;101,0.002002825738697045;102,0.00200310386258455;103,0.0019999888750445;104,0.0020306937522249916;105,0.0020125044499822;106,0.002051553043787825;107,0.002130818351726593;108,0.002183383766464934;109,0.0021999043253826986;110,0.0021801019045923817;111,0.00218310564257743;112,0.0022276054645781417;113,0.0023000845496618013;114,0.002304423282306871;115,0.0022763327696689213;116,0.002260201584193664;117,0.002291073335706657;118,0.002359603061587754;119,0.002485370683517266;120,0.002540995461018156;121,0.0024705188679245284;122,0.002404102883588466;123,0.002437978373086508;124,0.0024911000355998577;125,0.002550729797080812;126,0.0025896671413314348;127,0.002600124599501602;128,0.002604129583481667;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.0018718293876824493;126,0.007097165361338555;127,0.012289738341046637;128,0.014158285866856534;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00012376512993948026;2,0.00017154681381274475;3,0.0002367390530437878;4,0.00028012637949448207;5,0.0003135568707725169;6,0.0003395892666429335;7,0.00036812477750089;8,0.0004197445710217159;9,0.0004914449092203631;10,0.0005558584015663939;11,0.0005690414738341047;12,0.0005771070665717337;13,0.0006130962976148096;14,0.0006642710929156284;15,0.0006860203809184763;16,0.0007173927554289783;17,0.0007613919544321823;18,0.000817183606265575;19,0.0008476659843360627;20,0.0008827095941616234;21,0.0009334950160199359;22,0.0009853929334282664;23,0.001033619615521538;24,0.001060987006051976;25,0.0010486383054467783;26,0.001142811053755785;27,0.0012427131541473836;28,0.0012736405304378784;29,0.0012811498754004987;30,0.0013226459594161623;31,0.001366422659309363;32,0.0014224924350302597;33,0.001457313545745817;34,0.0014906884122463512;35,0.001538303221787113;36,0.0015763505695977217;37,0.0015801330544677823;38,0.0015577718939124244;39,0.0016010479708081166;40,0.0016324759700961197;41,0.0016900476148095408;42,0.0017683673015307941;43,0.0018509144713421146;44,0.0019107111071555714;45,0.0019243391776432896;46,0.0019810764506941973;47,0.002044099323602706;48,0.002048438056247775;49,0.002042819953720185;50,0.0021213621395514415;51,0.002167308205767177;52,0.002218594250622998;53,0.0022833414916340333;54,0.002307315770736917;55,0.002301975792096832;56,0.0022792252580989677;57,0.0022932427020291926;58,0.0023648317906728375;59,0.002458448291206835;60,0.0025011681203275186;61,0.002514963065147739;62,0.0024959950160199362;63,0.0025199136703453187;64,0.002586663403346387;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004907774118903525;194,0.00048054245283018875;195,0.0004787068351726593;196,0.0004902767888928445;197,0.00048493681025275903;198,0.0004874399252402991;199,0.0004891642933428266;200,0.00047509122463510145;201,0.00048126557493770024;202,0.0004890530437878249;203,0.0004809318262726949;204,0.00048204432182271273;205,0.00048093182627269494;206,0.00048315681737273053;207,0.0004988430046279815;208,0.0005002336240655038;209,0.00048771804912780355;210,0.0004862161801352795;211,0.00047342248131007473;212,0.0005018467426130296;213,0.0004951161445354218;214,0.00048182182271270916;215,0.00047481310074759704;216,0.00047570309718761127;217,0.0004967848878604487;218,0.00047892933428266287;219,0.00048688367746529016;220,0.0004958392666429335;221,0.0004978973834104663;222,0.0004963955144179424;223,0.0004997330010679958;224,0.00048549305802776796;225,0.0004834905660377359;226,0.0004901099145603418;227,0.0004967292630829478;228,0.0004935030259878961;229,0.0005006786222855109;230,0.0004946155215379139;231,0.0005062967248131008;232,0.000494559896760413;233,0.0004971742613029548;234,0.0004902211641153435;235,0.0005121929512281952;236,0.0005091335884656462;237,0.0004903880384478463;238,0.0005011236205055181;239,0.0005078542185831256;240,0.0005029036133855465;241,0.0005054623531505875;242,0.0004985092559629762;243,0.0004936699003203987;244,0.0004941705233179067;245,0.0004967848878604487;246,0.00048287869348522607;247,0.0004920011569953719;248,0.00048393556425774297;249,0.000498564880740477;250,0.0005205922926308296;251,0.0005048504805980777;252,0.0005032373620505518;253,0.0005006786222855109;254,0.0004866055535777857;255,0.0004916117835528658;256,0.0004960617657529371;257,0.0005126379494482023;258,0.0005141398184407263;259,0.0005106910822356711;260,0.000492557404770381;261,0.0004946711463154148;262,0.0004886080455678178;263,0.0005173104307582769;264,0.000520814791740833;265,0.0005021804912780349;266,0.00048827429690281247;267,0.0005047948558205768;268,0.0005021804912780349;269,0.0005092448380206479;270,0.000497619259522962;271,0.0004928911534353862;272,0.0005046279814880741;273,0.0005098010857956569;274,0.000504182983268067;275,0.0005029036133855464;276,0.0004973411356354574;277,0.0005071310964756142;278,0.0005079098433606265;279,0.0005126935742257031;280,0.0004967292630829477;281,0.0005010123709505162;282,0.0005090779636881453;283,0.0005079654681381274;284,0.0005207035421858312;285,0.0005087442150231399;286,0.0005141954432182272;287,0.0005105242079031685;288,0.0005101348344606621;289,0.0005147516909932361;290,0.0005027923638305447;291,0.0004992880028479886;292,0.000496117390530438;293,0.000514251067995728;294,0.0005027923638305446;295,0.0005062967248131008;296,0.0005019579921680314;297,0.0004962286400854398;298,0.0005000667497330011;299,0.0004922236561053755;300,0.0004932249021003916;301,0.0004951161445354219;302,0.000503626735493058;303,0.0004957836418654325;304,0.0004981755072979708;305,0.0004986205055179779;306,0.0005121373264506944;307,0.0005057961018155927;308,0.0004943373976504094;309,0.0004984536311854752;310,0.000457124421502314;311,0.00025503960484158067;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00006608223567105732;130,0.00008493903524385903;131,0.00010780081879672482;132,0.00012404325382698472;133,0.0001489631541473834;134,0.0001695443218227127;135,0.00019051486294054825;136,0.00020631229975080103;137,0.0002201072445710217;138,0.0002509233713065148;139,0.00026516331434674266;140,0.0002736739053043788;141,0.0002992613029547882;142,0.00031322312210751155;143,0.00033024430402278394;144,0.0003626735493058028;145,0.00039504716981132075;146,0.00041101148095407623;147,0.000432872018511926;148,0.00043748887504449984;149,0.0004457769668921325;150,0.0004655793876824493;151,0.0004910555357778569;152,0.0005200916696333214;153,0.0005248197757208972;154,0.0005443996974012104;155,0.0005631452474190103;156,0.0006019157173371306;157,0.0006140419188323247;158,0.0006253893734425062;159,0.0006575961196155216;160,0.0006682204521181915;161,0.0006753960484158064;162,0.0006854085083659665;163,0.0007091046635813458;164,0.0007264595941616234;165,0.000753882609469562;166,0.0007806381274474902;167,0.0007978261836952653;168,0.0008206323424706302;169,0.0008423260056959772;170,0.0008384878960484159;171,0.000812121751512994;172,0.0007790806336774655;173,0.0007645069419722321;174,0.0007409776610893557;175,0.0007061009255962976;176,0.0006807360270558917;177,0.0006870772516909933;178,0.0006653279636881453;179,0.0006534798860804557;180,0.0006351237095051621;181,0.0006146537913848346;182,0.0005923482556069776;183,0.0005808339266642933;184,0.0005620327518689925;185,0.0005408953364186543;186,0.0005164760590957636;187,0.0004928355286578854;188,0.00047542497330010675;189,0.0004549550551797793;190,0.0004408263616945533;191,0.0004304245283018868;192,0.00040528212887148453;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0008976170345318618;194,0.0008780927376290494;195,0.0008926108045567817;196,0.0008920545567817729;197,0.0009001757742969028;198,0.0009025120149519404;199,0.0009017332680669278;200,0.00088688145247419;201,0.0008664671591313635;202,0.0008854908330366679;203,0.0008992857778568886;204,0.000868859024563902;205,0.0008602928088287647;206,0.0008607378070487719;207,0.0008885501957992168;208,0.0008968382876468494;209,0.0009029570131719474;210,0.0008855464578141688;211,0.0008819864720541119;212,0.0008699158953364187;213,0.0008757564969740122;214,0.0008819308472766109;215,0.0008772027411890352;216,0.0008843227127091492;217,0.0009046813812744748;218,0.0009005095229619082;219,0.000898062032751869;220,0.00090062077251691;221,0.0008819864720541117;222,0.0009017332680669279;223,0.000903624510501958;224,0.0008816527233891063;225,0.0008821533463866144;226,0.0008752002491990033;227,0.000881318974724101;228,0.0008805402278390887;229,0.0008937789248843005;230,0.0008916651833392668;231,0.0008971164115343539;232,0.0009014551441794233;233,0.0008977839088643646;234,0.000909186988252047;235,0.0009107444820220719;236,0.0008946132965468137;237,0.0008825983446066216;238,0.0009123576005695978;239,0.0009191994482022072;240,0.0009328831434674261;241,0.0009159732111071557;242,0.0009022895158419367;243,0.0009003426486294056;244,0.0009079632431470275;245,0.0009170857066571734;246,0.0009164182093271627;247,0.0009095763616945534;248,0.000913247597009612;249,0.0009247619259522961;250,0.0009224813100747599;251,0.00091124510501958;252,0.0009105776076895693;253,0.0009239831790672838;254,0.000939001868992524;255,0.0009445087219651122;256,0.0009016220185119261;257,0.0008961707903168387;258,0.0009119682271270914;259,0.0009175307048771806;260,0.000910744482022072;261,0.0008982289070843716;262,0.0009003426486294054;263,0.0009076294944820221;264,0.0009092426130295479;265,0.0009213688145247419;266,0.0009197000711997151;267,0.0009253181737273052;268,0.0009253181737273052;269,0.0008936120505517978;270,0.0009181425774296903;271,0.0009327718939124244;272,0.0009272650409398362;273,0.0009203119437522251;274,0.0009443974724101104;275,0.000918810074759701;276,0.0009052376290494838;277,0.0009154725881096475;278,0.0009019001423994304;279,0.0009202563189747241;280,0.0009352750088999645;281,0.0009304912780348878;282,0.0009153613385546459;283,0.0008988407796368815;284,0.0009078519935920256;285,0.0009086307404770381;286,0.0008956145425418298;287,0.0008962820398718406;288,0.0009075738697045214;289,0.0009030682627269491;290,0.0009189769490922037;291,0.0009302687789248843;292,0.0009317706479174084;293,0.0009273206657173373;294,0.0009124132253470987;295,0.000890385813456746;296,0.0008997864008543966;297,0.0008906639373442507;298,0.0008704165183339267;299,0.0008995082769668922;300,0.0009255962976148096;301,0.0009344406372374511;302,0.0009257631719473123;303,0.0009060720007119973;304,0.0009084082413670345;305,0.0009185319508721966;306,0.0008937233001067996;307,0.0008997307760768957;308,0.0009041807582769669;309,0.0008951139195443219;310,0.0009135257208971164;311,0.0009323268956924172;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0004189658241367035;130,0.0005332191171235316;131,0.0006395180669277322;132,0.0007602794588821645;133,0.0008690258988964044;134,0.0009915116589533644;135,0.0011045968316126735;136,0.0012512793698825206;137,0.0013370527767888928;138,0.0014503048237807048;139,0.001589756140975436;140,0.0016771426664293344;141,0.0018207102171591315;142,0.001969951495194019;143,0.002178433161267355;144,0.002397761658953364;145,0.002606132075471698;146,0.0028407573869704524;147,0.0030570265218939126;148,0.003295100569597722;149,0.003502914738341047;150,0.0036607222321110716;151,0.0038585795656817376;152,0.004067172481310074;153,0.004311476504093983;154,0.004555613652545389;155,0.00474245728017088;156,0.004998887504449982;157,0.005205199804200783;158,0.005307605019579923;159,0.005503014862940548;160,0.005774519401922392;161,0.006029670256318976;162,0.006199715201139197;163,0.006426719918120327;164,0.0066145647917408325;165,0.006835005784976861;166,0.007114130918476326;167,0.007283786489854041;168,0.007515741812032751;169,0.007690236739053045;170,0.007927365165539338;171,0.008106977572089712;172,0.008287591224635103;173,0.008395113919544322;174,0.00842999065503738;175,0.008406683873264507;176,0.008361294054823783;177,0.008311343004627983;178,0.008266064435742257;179,0.008195810341758633;180,0.008207046546813812;181,0.008259111338554646;182,0.008255273228907085;183,0.00821817150231399;184,0.008177342915628338;185,0.008121885012459949;186,0.008097576984692063;187,0.008036111605553578;188,0.008110871306514774;189,0.008175618547525808;190,0.008524608401566394;191,0.008943184852260592;192,0.00898818529725881;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00563434496262015;130,0.005612095051619794;131,0.005513639195443218;132,0.0053989965290138844;133,0.005435875756496974;134,0.0054683050017799925;135,0.0054815993236027065;136,0.0054154058383766475;137,0.005406505873976505;138,0.005323235582057672;139,0.005210039159843361;140,0.005138005072979708;141,0.005161868102527591;142,0.0050570153969384125;143,0.004960562032751869;144,0.00486494304022784;145,0.004875845496618013;146,0.004809373887504451;147,0.004775220274118904;148,0.004763483446066216;149,0.004771104040583838;150,0.004754194108223567;151,0.004675262548949805;152,0.0046056203275186905;153,0.004516064435742257;154,0.0043812299750801;155,0.004312032751868993;156,0.0043010190459238165;157,0.004351804467782129;158,0.004321989587041652;159,0.00431375711997152;160,0.0042441148985404055;161,0.004203341936632254;162,0.004141209060163759;163,0.004055936276254894;164,0.004039415717337131;165,0.004014662691349235;166,0.003949081078675686;167,0.003874265752936989;168,0.0038634745461018152;169,0.0037744749021003917;170,0.0036933739765040935;171,0.0036883677465290136;172,0.0036764640441438235;173,0.003626568618725526;174,0.0035724457102171594;175,0.0035300596297614807;176,0.003498909754360983;177,0.0034683717515129947;178,0.003421313189747241;179,0.0033305335528657884;180,0.0033246373264506942;181,0.003323246707013172;182,0.0032174483802064795;183,0.003122051886792453;184,0.003110871306514775;185,0.0031263349946600216;186,0.003068985849056604;187,0.0030222054111783553;188,0.0029493925774296903;189,0.002877636614453542;190,0.002823402456390175;191,0.002835194909220363;192,0.0028458748665005345;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.008935119259522964;194,0.008937177376290496;195,0.008930947401210396;196,0.008943351726593093;197,0.008936009255962976;198,0.008851125845496619;199,0.00886052643289427;200,0.008776811142755431;201,0.008694319597721609;202,0.008722410110359558;203,0.008797392310430759;204,0.008781928622285511;205,0.0087249688501246;206,0.008723522605909577;207,0.00871306514773941;208,0.008763850569597723;209,0.00873692817728729;210,0.00870071644713421;211,0.008676909042363831;212,0.008672514684941261;213,0.008663058472766109;214,0.008608935564257743;215,0.008597588109647562;216,0.008600258098967604;217,0.008567272605909577;218,0.0085437989498042;219,0.00849941037735849;220,0.008586407529369882;221,0.008765352438590245;222,0.008805791651833393;223,0.008968382876468495;224,0.009069341847632608;225,0.009147439035243858;226,0.009224256852972589;227,0.0093437388750445;228,0.00941744170523318;229,0.009549272427910288;230,0.009661356354574583;231,0.009724657351370595;232,0.009877903613385548;233,0.009967682004271982;234,0.009944708971164116;235,0.010160922481310074;236,0.010248475881096474;237,0.010426864542541828;238,0.01042925640797437;239,0.010472254360982557;240,0.010664771715913138;241,0.010862740299038803;242,0.010922759433962266;243,0.011008477216091135;244,0.011058205767176933;245,0.011166284709861161;246,0.01127875800996796;247,0.01138566883232467;248,0.011473555980776078;249,0.011644880295478818;250,0.011644935920256321;251,0.011649830900676398;252,0.01186359692061232;253,0.012082369170523318;254,0.012230664827340691;255,0.012335350658597366;256,0.01231755072979708;257,0.012401043520825918;258,0.01252864676041296;259,0.012656750622997509;260,0.012740187789248845;261,0.012821566838732647;262,0.01292436142755429;263,0.012492101281594874;264,0.012081367924528304;265,0.012136269579921682;266,0.01220307493770025;267,0.012385746707013173;268,0.012522750533997864;269,0.012584104663581347;270,0.012722054111783555;271,0.012848600480598077;272,0.012808995639017445;273,0.012973033107867567;274,0.013108590690637236;275,0.01314936365254539;276,0.013255662602349592;277,0.013330144179423284;278,0.013424428177287291;279,0.013505695977216093;280,0.013566994482022074;281,0.013690926486294056;282,0.013805012904948382;283,0.01396187477750089;284,0.014117067906728373;285,0.014134589711641155;286,0.014252013616945534;287,0.014472065236739055;288,0.014518623175507298;289,0.0144999888750445;290,0.014576528568885725;291,0.014747908508365966;292,0.014932026521893913;293,0.015017021181915273;294,0.015081100925596298;295,0.015031650498398007;296,0.015053344161623355;297,0.014899541651833392;298,0.014730553577785691;299,0.014743402901388394;300,0.014620805891776433;301,0.014467170256318978;302,0.014324548326806694;303,0.01427732289070844;304,0.014195943841224634;305,0.014052098166607335;306,0.014033352616589535;307,0.014028235137059452;308,0.013856465824136703;309,0.013741378159487363;310,0.013613107422570311;311,0.013488619170523318;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009367212531149875;130,0.0009336618903524386;131,0.0009397249911000357;132,0.0009282106621573515;133,0.0009309362762548951;134,0.0009290450338198647;135,0.0009178644535421859;136,0.0009190881986472054;137,0.0009246506763972945;138,0.0009295456568173729;139,0.0009430624777500891;140,0.0009353862584549662;141,0.0009155282128871483;142,0.0009298794054823781;143,0.0009345518867924529;144,0.0009202563189747242;145,0.0009255962976148096;146,0.0009387793698825205;147,0.0009372775008899964;148,0.0009163069597721609;149,0.0009095763616945533;150,0.0009229263082947668;151,0.0009057382520469918;152,0.0009061832502669989;153,0.0009105776076895693;154,0.0009168075827696688;155,0.0009067394980420077;156,0.0009051263794944821;157,0.0009029013883944465;158,0.0009012882698469207;159,0.0009092982378070488;160,0.0009185875756496974;161,0.0008871039515841938;162,0.0008961151655393379;163,0.0009124688501245995;164,0.0009146938412246351;165,0.0009199225703097188;166,0.00092748754004984;167,0.0009151944642221432;168,0.0008908308116767534;169,0.0009078519935920256;170,0.0008845452118191527;171,0.0009045701317194732;172,0.000941560608757565;173,0.0009096319864720542;174,0.0008926664293342827;175,0.000915305713777145;176,0.0008966714133143469;177,0.0008843783374866501;178,0.0008969495372018513;179,0.0009168075827696691;180,0.000906739498042008;181,0.000887382075471698;182,0.0009039026343894625;183,0.0008977282840868637;184,0.0009122463510145959;185,0.000906628248487006;186,0.0009011213955144179;187,0.0009003982734069064;188,0.0008888839444642223;189,0.0008835995906016377;190,0.0008805402278390887;191,0.0008853239587041652;192,0.0008854908330366679;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0012427131541473836;130,0.0012194063723745107;131,0.0012120082769668922;132,0.001231810697757209;133,0.0012332569419722323;134,0.0012207969918120328;135,0.0012013283196867213;136,0.001236427554289783;137,0.0012395981666073338;138,0.0012255250978996084;139,0.0011879783730865078;140,0.0011972677109291564;141,0.0011967114631541475;142,0.0012067239231043077;143,0.0012357600569597722;144,0.0012054445532217874;145,0.0012102839088643646;146,0.0011997152011391956;147,0.0012073357956568175;148,0.0012180713777144893;149,0.0012210751156995375;150,0.0011885346208615165;151,0.0011983245817016733;152,0.001206112050551798;153,0.001215067639729441;154,0.0012298638305446778;155,0.001196544588821645;156,0.00119687833748665;157,0.0012226326094695622;158,0.0012104507831968672;159,0.0011853083837664652;160,0.0012101170345318619;161,0.0012070020469918121;162,0.0011879227483090069;163,0.001208058917764329;164,0.0012057226771092916;165,0.0012024964400142398;166,0.001198936454254183;167,0.0011969895870416517;168,0.0012110626557493773;169,0.0011818596475614098;170,0.0011672859558561764;171,0.00116561721253115;172,0.0011947089711641153;173,0.0011726815592737628;174,0.0011847521359914562;175,0.0011699003203987186;176,0.001201439569241723;177,0.0011932071021715912;178,0.0011693996974012104;179,0.0011917608579565682;180,0.001195988341046636;181,0.0011946533463866147;182,0.0012137326450694197;183,0.0011783552865788536;184,0.001174684051263795;185,0.0011959883410466356;186,0.00120249644001424;187,0.0011869215023139908;188,0.0011667297080811677;189,0.0011631140975436097;190,0.001184752135991456;191,0.0011870883766464935;192,0.001177075916696333;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.002855052954788181;194,0.002743414026343895;195,0.0026822267710929163;196,0.0027299528301886794;197,0.0027399652901388396;198,0.0026748843004627985;199,0.0025978996084015664;200,0.0025183005517977926;201,0.0024924350302598787;202,0.0024854819330722678;203,0.0024518289426842294;204,0.002442205856176575;205,0.0024298015307938773;206,0.0023657217871128518;207,0.002275887771448914;208,0.002182382520469918;209,0.0021151321644713424;210,0.00207252358490566;211,0.002050885546457814;212,0.0020098900854396587;213,0.0019592715379138483;214,0.0019138817194731222;215,0.0018905193129227487;216,0.0018704387682449268;217,0.0018482444820220722;218,0.0017406105375578499;219,0.0016688545745817017;220,0.0016483290316838734;221,0.0016821488964044143;222,0.0016437121751512996;223,0.0015568818974724102;224,0.0014775053399786401;225,0.0014774497152011392;226,0.0014686610003559987;227,0.0014447423460306158;228,0.0014127580989676041;229,0.0013765463688145247;230,0.0013205322178711286;231,0.0012470518867924527;232,0.0011937077251690993;233,0.0011712353150587398;234,0.0011403635635457458;235,0.0010940281238875048;236,0.0010322846208615166;237,0.000983446066215735;238,0.0009485693307226771;239,0.0009003982734069062;240,0.0008546747063011749;241,0.0007919855820576719;242,0.0007386414204343184;243,0.0007154458882164471;244,0.0007010946956212175;245,0.0006526455144179424;246,0.0005849501601993593;247,0.0005299372552509791;248,0.0004922792808828765;249,0.0004666918832324671;250,0.00044038136347454603;251,0.00038086285154859383;252,0.0003259055713777145;253,0.0002883032217871128;254,0.0002364609291562834;255,0.00018968049127803492;256,0.00014201005695977216;257,0.00009979085083659664;258,0.00005629227483090068;259,0.00002870238519045924;260,0.000007342470630117482;261,0.00000022249911000356004;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0027738407796368816;66,0.002792864453542186;67,0.002835194909220363;68,0.0028991077785688853;69,0.0029761480954076185;70,0.003011970452118192;71,0.003030104129583482;72,0.00302938100747597;73,0.003032940993236027;74,0.003136069330722677;75,0.0032006496974012104;76,0.0032049884300462796;77,0.003303555535777857;78,0.0034230931826272695;79,0.0034297125311498755;80,0.0034364987540049844;81,0.003527612139551442;82,0.0035795100569597726;83,0.0035889662691349234;84,0.0036186699003203987;85,0.003729029458882164;86,0.0037916073335706657;87,0.0038235915806336777;88,0.003875878871484515;89,0.003901188145247419;90,0.003920378693485226;91,0.004008933339266643;92,0.0040704543431826275;93,0.004068896849412602;94,0.004108779814880741;95,0.00414749466002136;96,0.004222198736205056;97,0.0042784353862584555;98,0.0043236583303666795;99,0.0043823980954076185;100,0.004424728551085795;101,0.004476403969384122;102,0.004454599056603774;103,0.00443368414026344;104,0.004514673816304734;105,0.004556281149875401;106,0.004651065770736918;107,0.0047142555179779284;108,0.004729107333570666;109,0.004703909309362763;110,0.004771048415806337;111,0.004810041384834461;112,0.004809596386614454;113,0.0048470874866500535;114,0.004928077162691349;115,0.005038325471698113;116,0.005094728996084015;117,0.005128437611249556;118,0.005155360003559986;119,0.005172158686365254;120,0.0052139885190459236;121,0.005122096386614454;122,0.0051217070131719476;123,0.005250144624421502;124,0.005362284175863297;125,0.005419355197579211;126,0.0054176308294766815;127,0.005435875756496974;128,0.00544939257742969;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00109625311498754;194,0.001089300017799929;195,0.0010684963510145962;196,0.001093249377002492;197,0.0010799550551797792;198,0.0010676619793520826;199,0.001081456924172303;200,0.0010814012993948024;201,0.0010843494126023497;202,0.0010814012993948026;203,0.001047748309006764;204,0.0010582613919544325;205,0.001087686899252403;206,0.0010628226237095052;207,0.0010827362940548238;208,0.0010646026165895338;209,0.001088799394802421;210,0.001081623798504806;211,0.0010788425596297616;212,0.001072556959772161;213,0.001053811409754361;214,0.0010713332146671415;215,0.001070498843004628;216,0.0010709438412246353;217,0.001075560697757209;218,0.0011090468138127449;219,0.001097977483090068;220,0.0010667719829120684;221,0.0010965312388750443;222,0.0010794544321822714;223,0.0010681626023495907;224,0.0010804000533997866;225,0.0010771738163047348;226,0.001087241901032396;227,0.0010735025809896761;228,0.0010703875934496261;229,0.0010811788002847988;230,0.0011020937166251335;231,0.0010893556425774298;232,0.0011048193307226773;233,0.001106432449270203;234,0.0010893556425774298;235,0.0010954187433250267;236,0.0011004805980776074;237,0.0010871862762548952;238,0.001087130651477394;239,0.0010896893912424352;240,0.0011050418298326806;241,0.0011070999466002136;242,0.0011147761658953366;243,0.0011025943396226414;244,0.0010931381274474903;245,0.0010748932004271982;246,0.0010763950694197223;247,0.0010804556781772872;248,0.0010988674795300822;249,0.0010864631541473834;250,0.0010842937878248486;251,0.001092303755784977;252,0.001094306247775009;253,0.0010872975258098968;254,0.0011034843360626558;255,0.0011017599679601282;256,0.0011041518333926663;257,0.001098366856532574;258,0.0010976993592025633;259,0.0011073224457102172;260,0.0011058762014951942;261,0.0010989231043075829;262,0.001110381808472766;263,0.0011104930580277679;264,0.0010965312388750445;265,0.0010939168743325026;266,0.0011095474368102527;267,0.0010989787290850838;268,0.0010803444286222857;269,0.0010869081523673906;270,0.001110437433250267;271,0.0011061543253826985;272,0.0011087130651477393;273,0.001116444909220363;274,0.0010960862406550374;275,0.0010999799750800996;276,0.0011133855464578145;277,0.0011217292630829477;278,0.0011016487184051264;279,0.001104429957280171;280,0.001103428711285155;281,0.0010982556069775722;282,0.001085795656817373;283,0.001073613830544678;284,0.0010813456746173017;285,0.0011192817728729086;286,0.0010931937522249912;287,0.0011036512103951585;288,0.00113062922748309;289,0.0011120505517977928;290,0.001123676130295479;291,0.0011324092203631184;292,0.00111499866500534;293,0.0010947512459950162;294,0.0010963087397650407;295,0.001106043075827697;296,0.001090746262014952;297,0.0010966981132075474;298,0.0011098255606977574;299,0.0011149430402278393;300,0.0010877981488074048;301,0.0011053199537201853;302,0.0011113274296902812;303,0.0011286267354930581;304,0.0011257342470630117;305,0.001132186721253115;306,0.0011242323780704879;307,0.0011174461552153792;308,0.0010909687611249557;309,0.0011027055891776434;310,0.001018322801708793;311,0.0005515752936988254;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.010739976415094341;194,0.010801108045567817;195,0.010979496707013172;196,0.011019157173371307;197,0.011009812210751157;198,0.010963532395870418;199,0.010965256763972945;200,0.011052865788536849;201,0.011192706479174084;202,0.011384611961552155;203,0.011353406461374154;204,0.011340557137771448;205,0.011526065770736917;206,0.011602438590245638;207,0.011665183339266643;208,0.011717971253114988;209,0.011711407529369881;210,0.011733434941260234;211,0.011856143200427199;212,0.011810975881096477;213,0.011734714311142756;214,0.0116624021003916;215,0.01156188812744749;216,0.011581189925240298;217,0.011557048771804912;218,0.01145870416518334;219,0.01137999510501958;220,0.01125122374510502;221,0.011180024029903878;222,0.011106933072267712;223,0.011068162602349592;224,0.010984224813100747;225,0.010901622018511926;226,0.010821967337130652;227,0.010820242969028126;228,0.010769624421502314;229,0.010629728106087576;230,0.010541840957636172;231,0.010531605998576006;232,0.010456623798504806;233,0.010406116500534;234,0.010348322356710573;235,0.010178277411890351;236,0.010118814524741901;237,0.010156249999999999;238,0.010139562566749735;239,0.009958837664649342;240,0.009839633766464935;241,0.009791518333926665;242,0.009809429512281951;243,0.009842136881452475;244,0.009700905571377717;245,0.009577140441438235;246,0.009521348789604842;247,0.009433795389818441;248,0.009346965112139552;249,0.009267755428978286;250,0.00922186498754005;251,0.009174472677109292;252,0.009073791829832681;253,0.008937066126735494;254,0.008853962709149163;255,0.008846063990744037;256,0.008794499822000711;257,0.008781928622285511;258,0.008737039426842293;259,0.008610604307582771;260,0.00852994838020648;261,0.008534509611961553;262,0.008495794766820932;263,0.008385268333926664;264,0.008254327607689571;265,0.008153424261302954;266,0.008055357778568887;267,0.008040283463866146;268,0.007971419989320043;269,0.007900999021003916;270,0.007874799750800996;271,0.00786434229263083;272,0.007779737006051977;273,0.007696077340690638;274,0.007585272783908864;275,0.007435197134211464;276,0.007338521270914917;277,0.007289515841936632;278,0.0071848300106799575;279,0.0071743169277322895;280,0.007147172036311855;281,0.007080366678533286;282,0.006906205500178;283,0.006774263527945889;284,0.0066913826094695626;285,0.006632142221431114;286,0.006542586329654681;287,0.006464433517265932;288,0.0063100191349234605;289,0.006270024919900321;290,0.006335217159131363;291,0.006348900854396582;292,0.006292664204343183;293,0.006182193396226415;294,0.00607250133499466;295,0.006037568974724101;296,0.005916807582769669;297,0.005826139195443218;298,0.005790094339622642;299,0.005637126201495194;300,0.005529603506585974;301,0.0055640908686365245;302,0.005509578586685653;303,0.0054312032751869;304,0.005402612139551443;305,0.0053032106621573516;306,0.00516309184763261;307,0.005050229174083304;308,0.004962119526521894;309,0.004945710217159132;310,0.00486377491990032;311,0.004763316571733714;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0027080366678533287;130,0.0027342359380562475;131,0.002747363385546458;132,0.002747808383766465;133,0.0027793476326094697;134,0.002801986917052332;135,0.0028123887504449985;136,0.0028399230153079392;137,0.0028365855286578857;138,0.0028615610537557857;139,0.0029281995372018514;140,0.002964466892132431;141,0.0029222476860092557;142,0.0029768155927376297;143,0.00308189079743681;144,0.0031223300106799573;145,0.003113040672837309;146,0.0031150431648273406;147,0.0031201606443574227;148,0.003141353684585262;149,0.0031427443040227838;150,0.003095240744037024;151,0.0030765508187967252;152,0.003158764239943041;153,0.003261781327874689;154,0.0033431603773584903;155,0.0033315904236383056;156,0.003291929957280171;157,0.0032641175685297263;158,0.0032571088465646143;159,0.0032916518333926665;160,0.0033922770558917764;161,0.003425707547169812;162,0.0034028457636169455;163,0.0033972832858668563;164,0.0034406706123175507;165,0.0034870616767532932;166,0.0035165984336062656;167,0.0035438545745817016;168,0.003524886525453899;169,0.0034792185831256676;170,0.003453909309362763;171,0.0034589711641153436;172,0.0035524764150943397;173,0.0036374154503381988;174,0.0036712909398362407;175,0.0036911489854040587;176,0.0036786334104663577;177,0.003667842203631186;178,0.003676686543253827;179,0.0036613341046635817;180,0.003675796546813813;181,0.0037502224991100043;182,0.0037836529903880387;183,0.00375561810252759;184,0.003751613118547526;185,0.003793721075115699;186,0.003875878871484514;187,0.003951083570665718;188,0.003948357956568174;189,0.003913648095407618;190,0.0038416696333214667;191,0.003869927020291919;192,0.003897906283374866;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00005465134389462442;130,0.00004856043075827697;131,0.000049130584727661085;132,0.000045793098077607695;133,0.00004233045567817729;134,0.00004461107155571378;135,0.0000433873264506942;136,0.0000440687299750801;137,0.00004177420790316839;138,0.00004566794232823069;139,0.000045222944108223574;140,0.00004700293698825205;141,0.00004607122196511214;142,0.000043623731755072984;143,0.00004405482378070488;144,0.000046391064435742254;145,0.000043248264506941974;146,0.00003874961062655749;147,0.00003884000088999644;148,0.00004124577251690993;149,0.00004173944241723033;150,0.0000385062522249911;151,0.000037692739854040585;152,0.000038026488519045927;153,0.00004221920612317551;154,0.00004007765218939125;155,0.00003763016197935208;156,0.000032039871840512635;157,0.00003476548593805625;158,0.00003426486294054824;159,0.00003327752313990744;160,0.000034341347009611965;161,0.00003126112495550018;162,0.0000322693240477038;163,0.00003395892666429334;164,0.000035071422214311145;165,0.0000323249488252047;166,0.00003231799572801709;167,0.00003276299394802421;168,0.00003187299750800996;169,0.00003014862940548238;170,0.000028987462175151305;171,0.000029439413492346032;172,0.00003248487006051976;173,0.00002805574715201139;174,0.000026762471075115702;175,0.000028438167497330013;176,0.00003138628070487718;177,0.00003116378159487362;178,0.00003017644179423282;179,0.00003169221698113207;180,0.00002816004360982556;181,0.00002236116055535778;182,0.00002548310119259523;183,0.000026672080811676756;184,0.00002687372063011748;185,0.000025990677287290854;186,0.000027937544499822;187,0.00002347365610537558;188,0.000023696155215379142;189,0.000026366144535421864;190,0.000026720752491990033;191,0.000023904748131007475;192,0.000023105141954432184;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0014140930936276256;130,0.0018488007297970811;131,0.0022332791918832327;132,0.0026313857244571024;133,0.00303499911000356;134,0.00342248131007476;135,0.0038122441260234965;136,0.0042733735315058745;137,0.004702129316482734;138,0.0051052977038091845;139,0.005506630473478107;140,0.005834538536845854;141,0.006202885813456746;142,0.006622686009255963;143,0.007045044944820221;144,0.007465401388394447;145,0.007967081256674974;146,0.008342604129583483;147,0.008741600658597366;148,0.00913186409754361;149,0.009463165272338911;150,0.009894201673193305;151,0.01026939079743681;152,0.010623776254894982;153,0.011002747864008545;154,0.011449081078675684;155,0.011855197579209683;156,0.012229329832680672;157,0.012607745194019226;158,0.013053355286578855;159,0.013558261391954433;160,0.01396932849768601;161,0.01437933873264507;162,0.014766820932716269;163,0.015186509878960485;164,0.0155187566749733;165,0.015977994838020648;166,0.016506986472054112;167,0.016749510501957995;168,0.017056281149875403;169,0.01755417853328587;170,0.017967860003559988;171,0.018207491545033823;172,0.01852110404058384;173,0.019073124332502668;174,0.01959010101459594;175,0.01999265752936988;176,0.020404837130651478;177,0.020777634389462445;178,0.021132242346030616;179,0.021532629494482022;180,0.02200727572089712;181,0.022380295478818084;182,0.022663814969740122;183,0.02300206924172303;184,0.02349590601637594;185,0.02391370372018512;186,0.024232433695265218;187,0.024796969562121754;188,0.025188456746173017;189,0.02545362006051976;190,0.025730965201139197;191,0.02567255918476326;192,0.025412847098611607;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0023929779280882878;66,0.0023830210929156282;67,0.002392366055535778;68,0.0024018222677109295;69,0.0023666117835528656;70,0.002352371840512638;71,0.0023886948202207193;72,0.002397706034175863;73,0.0023791829832680673;74,0.002389862940548238;75,0.002400876646493414;76,0.002404937255250979;77,0.0023527612139551445;78,0.002369170523317907;79,0.002377013616945532;80,0.002375845496618013;81,0.002398484781060876;82,0.00239436854752581;83,0.002383466091135636;84,0.0023773473656105376;85,0.0023657774118903525;86,0.0023769579921680316;87,0.0023754004983980066;88,0.0023758454966180138;89,0.002387637949448202;90,0.0023617168031327875;91,0.0023875823246707014;92,0.0023904748131007483;93,0.0023942016731933074;94,0.0024144490922036314;95,0.002456445799216803;96,0.002423627180491278;97,0.002384467337130652;98,0.0023592693129227483;99,0.0024018222677109295;100,0.0024182315770736916;101,0.002351815592737629;102,0.002360437433250267;103,0.0023609380562477746;104,0.002385079209683161;105,0.0023884723211107157;106,0.0023849123353506586;107,0.0023809073513705948;108,0.0024143378426486296;109,0.002387693574225703;110,0.002358156817372731;111,0.0023866367034531865;112,0.0023871929512281954;113,0.002391976682093272;114,0.002396593538625845;115,0.002388305446778213;116,0.002373620505517978;117,0.002394312922748309;118,0.0023776254894980423;119,0.0023706723923104306;120,0.002382297970808117;121,0.00236060430758277;122,0.0023726748843004627;123,0.0023779592381630472;124,0.0023639974190103243;125,0.002152790138839445;126,0.001186365254538982;127,0.00021493414026343895;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009116901032395872;130,0.000920812566749733;131,0.0009301575293698825;132,0.0009195888216447135;133,0.0009377781238875045;134,0.0009159732111071555;135,0.0009150275898896406;136,0.0009004538981844073;137,0.0008942795478818085;138,0.0009144157173371307;139,0.0009382231221075116;140,0.0009161400854396584;141,0.0009376668743325028;142,0.0009296012815948737;143,0.0009245394268422927;144,0.000902122641509434;145,0.0009124132253470986;146,0.000923371306514774;147,0.0009405593627625489;148,0.0009184207013171947;149,0.0009068507475970097;150,0.0009237050551797793;151,0.00089249955500178;152,0.000900120149519402;153,0.0009232044321822713;154,0.0009357200071199715;155,0.0009268756674973299;156,0.0009124132253470987;157,0.0009061276254894981;158,0.000926430669277323;159,0.0009384456212175151;160,0.0009245394268422927;161,0.0009154169633321465;162,0.0008962264150943397;163,0.0009061276254894981;164,0.0009101882342470631;165,0.0009250400498398006;166,0.0009272094161623353;167,0.0009125244749021003;168,0.0008980064079743681;169,0.0009095207369170524;170,0.0009260412958348167;171,0.0009184207013171947;172,0.0008995639017443931;173,0.0008987295300818797;174,0.0008906639373442507;175,0.0008898851904592382;176,0.0009034020113919544;177,0.0009115788536845854;178,0.0008943907974368103;179,0.0008977282840868637;180,0.0008953364186543254;181,0.0008933339266642933;182,0.0008946132965468138;183,0.0009029570131719473;184,0.0008898851904592382;185,0.0008830433428266287;186,0.000905682627269491;187,0.0009008988964044145;188,0.0008961707903168388;189,0.0008924439302242791;190,0.0009089088643645426;191,0.0009111338554645781;192,0.0009123576005695977;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0007063234247063012;2,0.0008966714133143468;3,0.0011183361516553933;4,0.001352738964044144;5,0.0015512081701673196;6,0.001722754983980064;7,0.001875945621217515;8,0.002067072356710573;9,0.00227939213243147;10,0.002495550017799929;11,0.0026736049305802773;12,0.0028509923460306166;13,0.003060809006763973;14,0.003301831167675329;15,0.0034985760056959773;16,0.0036533241367034536;17,0.003867368280526878;18,0.0041081679423282304;19,0.004324937700249199;20,0.004548104307582769;21,0.004682883143467426;22,0.004772717159131364;23,0.004970240744037024;24,0.005271560163759346;25,0.005544733446066215;26,0.005703597810608758;27,0.005818852349590602;28,0.006044355197579211;29,0.006282818618725526;30,0.006477338465646137;31,0.006682538269846921;32,0.0069312366500534;33,0.007159631986472054;34,0.00726376156995372;35,0.007466124510501958;36,0.007648518155927377;37,0.007820064969740121;38,0.008054634656461375;39,0.00826189257742969;40,0.008358401566393735;41,0.008495961641153436;42,0.00869053711285155;43,0.008962486650053399;44,0.009235270558917767;45,0.009572746084015663;46,0.009719873620505519;47,0.009877903613385548;48,0.010023251156995374;49,0.010022750533997864;50,0.00982061009255963;51,0.0096375489498042;52,0.00947862896048416;53,0.009307805268778925;54,0.009140875311498755;55,0.008889228818084727;56,0.008658997864008543;57,0.008431436899252404;58,0.008256552598789605;59,0.00807104396582414;60,0.007910733357066572;61,0.007699692951228196;62,0.007487428800284799;63,0.007349256852972589;64,0.007138272071911712;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0007609469562121752;66,0.0007437032751868994;67,0.000741311409754361;68,0.000728183962264151;69,0.0007504338732645069;70,0.0007445376468494127;71,0.0007488763794944822;72,0.0007383076717693129;73,0.0007237896048415808;74,0.0007376957992168032;75,0.0007501001245995016;76,0.0007415339088643646;77,0.0007289070843716626;78,0.0007208414916340336;79,0.0007355264328942684;80,0.0007396982912068351;81,0.0007504338732645069;82,0.0007565525987896049;83,0.0007333014417942329;84,0.0007462063901744393;85,0.0007323001957992169;86,0.0007232333570665718;87,0.0007452607689569242;88,0.0007440926486294054;89,0.0007384189213243147;90,0.0007411445354218583;91,0.000750433873264507;92,0.0007312433250266998;93,0.000750934496262015;94,0.0007684006763972944;95,0.0007551619793520827;96,0.0007573313456746174;97,0.0007476526343894625;98,0.0007356376824492702;99,0.0007440370238519046;100,0.0007601682093271627;101,0.0007518801174795301;102,0.0007435920256318976;103,0.0007492657529369884;104,0.0007538269846920614;105,0.0007559963510145961;106,0.0007662869348522606;107,0.0007536601103595587;108,0.0007592225881096476;109,0.0007512126201495194;110,0.0007259033463866145;111,0.0007414226593093628;112,0.0007740744037023854;113,0.0007593338376646493;114,0.0007657306870772517;115,0.0007434807760768957;116,0.0007660088109647562;117,0.0007563300996796013;118,0.0007584994660021359;119,0.0007589444642221432;120,0.0007471520113919545;121,0.0007424239053043789;122,0.00074687388750445;123,0.000764562566749733;124,0.0007523251156995373;125,0.0006841847632609471;126,0.00036067105731577074;127,0.0000550685297258811;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0005082435920256319;130,0.0005114698291206835;131,0.0005111917052331791;132,0.0004933917764328942;133,0.00048999866500534;134,0.0005106354574581703;135,0.0004935586507653969;136,0.0004992323780704877;137,0.000505128604485582;138,0.0005062411000356;139,0.0005108579565681736;140,0.0005209260412958349;141,0.000518812299750801;142,0.0005080210929156283;143,0.0005037936098255607;144,0.0004962842648629405;145,0.0005103017087931648;146,0.0005055179779280884;147,0.0004978417586329655;148,0.00048471431114275546;149,0.0004911667853328587;150,0.0004946155215379139;151,0.0005071310964756141;152,0.0005048504805980777;153,0.0004892199181203275;154,0.0004936142755428978;155,0.0005039048593805626;156,0.0005179779280882876;157,0.0005075204699181204;158,0.0005039604841580634;159,0.000497118636525454;160,0.00048031995372018507;161,0.0004898874154503382;162,0.000486939302242791;163,0.0004968405126379494;164,0.0005005117479530083;165,0.00048176619793520827;166,0.0004831011925952296;167,0.0004831568173727305;168,0.0004878292986828052;169,0.0005009567461730152;170,0.0004997330010679958;171,0.0004908886614453543;172,0.0004809318262726949;173,0.00048410243859024575;174,0.000487940548237807;175,0.0004892199181203275;176,0.0004916117835528659;177,0.0004815993236027056;178,0.0004996773762904949;179,0.0005003448736205056;180,0.0004982867568529727;181,0.0005017354930580278;182,0.0005110248309006764;183,0.0004971742613029547;184,0.0004990098789604842;185,0.00048527055891776433;186,0.000486994927020292;187,0.0004809318262726949;188,0.00048588243147027415;189,0.0004839911890352439;190,0.00047759433962264156;191,0.0004868836774652901;192,0.00048771804912780355;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00041407084371662515;130,0.00041918832324670704;131,0.00042330455678177287;132,0.0004268645425418298;133,0.0004244170523317907;134,0.00040216714133143466;135,0.00039871840512637955;136,0.00041140085439658237;137,0.00041117835528657886;138,0.00040517087931648274;139,0.00040695087219651125;140,0.0004236939302242791;141,0.00042230331078675686;142,0.0004342626379494482;143,0.0004255295478818085;144,0.000424750800996796;145,0.00042180268778924893;146,0.00040528212887148453;147,0.0004041696333214667;148,0.00042263705945176227;149,0.0004076183695265219;150,0.00041718583125667497;151,0.0004160733357066572;152,0.00041707458170167324;153,0.00041807582769668925;154,0.00040528212887148453;155,0.0004146827162691349;156,0.00040683962264150946;157,0.00040556025275898894;158,0.00040355776076895697;159,0.0004043365076539694;160,0.00040711774652901387;161,0.00040633899964400143;162,0.0004047258810964756;163,0.0004199670701317195;164,0.0004256407974368103;165,0.0004226926842292631;166,0.0004298682805268779;167,0.0004163514595941617;168,0.0004154058383766465;169,0.000412123976504094;170,0.0004053377536489855;171,0.00039949715201139204;172,0.0003963265396938413;173,0.0004056715023139907;174,0.0003991077785688858;175,0.0004053377536489854;176,0.0003892065681737273;177,0.0004167408330366679;178,0.0004041696333214668;179,0.00039877402990388044;180,0.0004006652723389107;181,0.0004105108579565682;182,0.00040294588821644715;183,0.0004092871128515486;184,0.0004026677643289428;185,0.0004135702207191171;186,0.0004092871128515486;187,0.0004043365076539694;188,0.0004027790138839445;189,0.0004093427376290495;190,0.00039237718049127813;191,0.00039282217871128516;192,0.00039009656461374154;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.000257876468494126;2,0.0003108312566749733;3,0.0003690703987184052;4,0.0004411601103595585;5,0.0005207591669633321;6,0.000586563278746885;7,0.0006311187255250979;8,0.0007320220719117124;9,0.0008325916696333215;10,0.0008748665005339979;11,0.0009037913848344608;12,0.0009654236383054469;13,0.0010282240121039514;14,0.0011183361516553933;15,0.0011887014951940194;16,0.0012371506763972943;17,0.0013264840690637237;18,0.0013970162869348522;19,0.0014434073513705944;20,0.001497363385546458;21,0.0015621106265574936;22,0.0016478284086863654;23,0.0017493992524029904;24,0.001827107066571734;25,0.0018636525453898183;26,0.001899308027767889;27,0.00198875266998932;28,0.0021079565681737275;29,0.0021678088287646847;30,0.0021861093805624777;31,0.002227382965468138;32,0.0022724390352438593;33,0.0023915873086507652;34,0.002469239498042008;35,0.002503337486650053;36,0.002519246173015308;37,0.0026111383054467784;38,0.0026722143111427557;39,0.002733512815948736;40,0.0028068818974724104;41,0.0028674016553933788;42,0.0028712397650409397;43,0.0028872040761836956;44,0.00296062878248487;45,0.0030599746351014593;46,0.003088677020291919;47,0.003159431737273051;48,0.0032384189213243153;49,0.0032794700071199713;50,0.0032804712531149874;51,0.0032547726059095764;52,0.00313312121751513;53,0.003053244037023852;54,0.00300996796012816;55,0.002894769045923816;56,0.002808439391242435;57,0.002732289070843717;58,0.002666039960840157;59,0.0025900008899964405;60,0.002577763438946244;61,0.002538381096475614;62,0.002511124955500178;63,0.002422681559273763;64,0.002349701851192595;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.008132843093627625;66,0.008070932716269137;67,0.0079436076005696;68,0.007765330188679245;69,0.007476415094339623;70,0.007228773584905661;71,0.007192450605197579;72,0.007142110181559275;73,0.007045100569597722;74,0.0068272739409042365;75,0.006601715468138128;76,0.00640814124243503;77,0.0063143578675685305;78,0.006229919455322179;79,0.006150987896048415;80,0.006041518333926665;81,0.0058893845674617305;82,0.005717726504093984;83,0.005474534976860093;84,0.00529253070487718;85,0.005208926664293343;86,0.005097398985404058;87,0.004906049750800996;88,0.004739231043075828;89,0.004591046635813457;90,0.004424116678533286;91,0.004275042274830901;92,0.004109002313990744;93,0.0040038158597365614;94,0.003879605731577074;95,0.0037001601993592024;96,0.0035757275720897114;97,0.0034432293520825917;98,0.0032609469562121757;99,0.0030645358668565325;100,0.002895547792808829;101,0.0027212197401210395;102,0.0025756496974012103;103,0.0024163959594161624;104,0.0023129338732645072;105,0.002163636970452118;106,0.002016731933072268;107,0.001870939391242435;108,0.001725869971520114;109,0.0015520981666073339;110,0.0014080856176575294;111,0.0012787023851904592;112,0.0011401410644357422;113,0.0009806648273406908;114,0.0008233023317906728;115,0.0006374599501601994;116,0.00048565993236027047;117,0.00035978106087575647;118,0.0002254472232111072;119,0.00010112584549661802;120,0.00002909175863296547;121,0.0000022806158775364905;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0004560675507297971;66,0.0004472232111071556;67,0.00045122819508721973;68,0.0004385457458170168;69,0.0004218026877892488;70,0.0004191883232467071;71,0.0004401032395870417;72,0.00046552376290494833;73,0.00048616055535777867;74,0.0004815436988252047;75,0.0004817105731577074;76,0.00048104307582769667;77,0.00048043120327518696;78,0.0005010123709505163;79,0.0005392265930936277;80,0.0005518534175863297;81,0.0005217047881808473;82,0.0005175329298682805;83,0.0005289916340334639;84,0.0005302710039159844;85,0.0005343316126735493;86,0.0005342759878960485;87,0.0005484603061587756;88,0.000543064702741189;89,0.0005476815592737629;90,0.0005494615521537914;91,0.0005494059273762905;92,0.000561810252758989;93,0.000593683250266999;94,0.0006172125311498754;95,0.0006135969206123175;96,0.0006176575293698825;97,0.0006062544499822;98,0.0006134856710573158;99,0.0006453586685653258;100,0.0006581523673905305;101,0.0006455255428978285;102,0.0006411311854752581;103,0.0006695554467782128;104,0.0006827385190459239;105,0.0006641042185831256;106,0.000658430491278035;107,0.0006756185475258099;108,0.0007045434318262727;109,0.0007289070843716626;110,0.0007516019935920256;111,0.0007347476860092559;112,0.000739308917764329;113,0.000746373264506942;114,0.0007286845852616589;115,0.000695754716981132;116,0.0006935297258810966;117,0.0006944753470986117;118,0.0007162246351014597;119,0.000719117123531506;120,0.0006939747241011037;121,0.0006865210039159843;122,0.0007130540227839087;123,0.0007300752046991812;124,0.0007233446066215736;125,0.0007187833748665007;126,0.000713554645781417;127,0.0007002603239587043;128,0.0007068796724813101;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0012183495016019935;66,0.0012097832858668565;67,0.0011950427198291207;68,0.0011929846030615879;69,0.0012209082413670346;70,0.0012085595407618371;71,0.0012091157885368458;72,0.0012114520291918833;73,0.0012300307048771805;74,0.0012529481132075473;75,0.0012102839088643648;76,0.0012070020469918123;77,0.001228250711997152;78,0.0012360381808472769;79,0.0012141776432894268;80,0.0012141220185119261;81,0.0012017733179067284;82,0.0012118414026343898;83,0.0012147338910644357;84,0.0012040539337842648;85,0.001217737629049484;86,0.0012304757030971876;87,0.0012343694375222497;88,0.0012195176219295123;89,0.0012256363474546102;90,0.001212564524741901;91,0.0012138995194019226;92,0.0012158463866144536;93,0.0012083926664293344;94,0.0012015508187967249;95,0.0012120082769668922;96,0.001202885813456746;97,0.00119498709505162;98,0.0012094495372018512;99,0.0012258032217871131;100,0.0012411000355998577;101,0.0012369838020647918;102,0.001213287646849413;103,0.00119626646493414;104,0.001189313367746529;105,0.0012005495728017088;106,0.0012248019757920966;107,0.0012130651477394092;108,0.0012100614097543612;109,0.0012049995550017802;110,0.0012095051619793523;111,0.001215790761836953;112,0.0012154013883944464;113,0.0012184051263794946;114,0.0012273050907796368;115,0.0012518356176575295;116,0.0012361494304022787;117,0.0012258588465646136;118,0.0012188501245995013;119,0.0012120082769668922;120,0.0012350925596297615;121,0.0012189057493770025;122,0.0012419900320398717;123,0.001241934407262371;124,0.0012194063723745103;125,0.001120060519757921;126,0.0006196600213599147;127,0.00010629894980420079;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0023855798326806697;66,0.00228250711997152;67,0.002246629138483446;68,0.0022171480064079744;69,0.0021357133321466713;70,0.002037869348522606;71,0.0019586596653613387;72,0.0019890307938768247;73,0.0019068173727305093;74,0.0018004071733713064;75,0.0017230331078675683;76,0.001655170879316483;77,0.001560497508009968;78,0.0014793965824136703;79,0.001443629850480598;80,0.0013897294410822355;81,0.0012964466892132433;82,0.0011818040227839087;83,0.0011042630829476683;84,0.0010639907440370237;85,0.0010209927910288358;86,0.000968371751512994;87,0.0008982845318618727;88,0.0008370416518333928;89,0.0007591113385546458;90,0.000683183517265931;91,0.0006041963332146672;92,0.000536445354218583;93,0.00046836062655749384;94,0.0003872597009611962;95,0.0003022094161623354;96,0.00023779592381630474;97,0.00018495238519045923;98,0.00011581078675685296;99,0.00005517977928088288;100,0.0000161311854752581;101,0.00000127936988252047;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.007891598433606265;66,0.007770558917764329;67,0.007612973923104309;68,0.007529759255962977;69,0.007449492702029193;70,0.00727750088999644;71,0.007080199804200783;72,0.00697746084015664;73,0.006821322089711642;74,0.006631530348878605;75,0.0064217693129227475;76,0.006278758009967961;77,0.006193429601281595;78,0.006076617568529726;79,0.005949904325382699;80,0.005831924172303311;81,0.005693307226771093;82,0.005539838465646137;83,0.005349768600925597;84,0.00519307360270559;85,0.0051598656105375585;86,0.0050484491812032755;87,0.004824781950872197;88,0.004565292363830545;89,0.004443974724101104;90,0.004325660822356711;91,0.0041646827162691346;92,0.004032073246707013;93,0.003923883054467782;94,0.0037759767710929155;95,0.0035723344606621577;96,0.0034335506407974373;97,0.0033291429334282663;98,0.003188801619793521;99,0.003060308383766465;100,0.0029430513527945886;101,0.0027925863296546817;102,0.002650186899252403;103,0.002455444553221787;104,0.0022852883588465648;105,0.0021704788180847276;106,0.0020447111961552156;107,0.0019080411178355287;108,0.001718861249555002;109,0.0015455900676397297;110,0.0013494014773940905;111,0.0011914827340690636;112,0.001045245194019224;113,0.0009363875044499823;114,0.0008059474012103952;115,0.000634122463510146;116,0.0004891642933428266;117,0.0003603929334282663;118,0.00023023095407618372;119,0.00009890085439658242;120,0.00002430802776788893;121,0.0000007231221075115699;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.000014963065147739409;2,0.000025086774652901392;3,0.00003565548237807048;4,0.00004271982912068352;5,0.00004600169099323603;6,0.000048616055535777864;7,0.00005440103239587043;8,0.00006424661801352795;9,0.00007564969740121041;10,0.00008004405482378071;11,0.00008543965824136705;12,0.00009194775720897116;13,0.00009522961908152368;14,0.00010585395158419368;15,0.00011614453542185832;16,0.00010969206123175506;17,0.00009628648985404058;18,0.00011024830900676396;19,0.0001263794944820221;20,0.00014662691349234602;21,0.00015057627269490922;22,0.00015224501601993594;23,0.00014951940192239232;24,0.00015953186187255252;25,0.0001589756140975436;26,0.00016331434674261304;27,0.00017544054823780705;28,0.00019090423638305447;29,0.00019824670701317192;30,0.00020764729441082237;31,0.00021059540761836956;32,0.0002095941616233535;33,0.00021387726949092205;34,0.00022333348166607333;35,0.0002307315770736917;36,0.0002407440370238519;37,0.00022121974012103953;38,0.00022411222855108582;39,0.0002369615521537914;40,0.0002560408508365967;41,0.0002578208437166252;42,0.00025960083659665363;43,0.0002568195977216091;44,0.000274563901744393;45,0.0003014306692773229;46,0.00031338999644001423;47,0.00031094250622997507;48,0.0002970919366322535;49,0.0002757876468494126;50,0.0002769001423994304;51,0.00029503381986472054;52,0.00030749377002491996;53,0.00032406995372018515;54,0.0003421480064079744;55,0.0003482111071555714;56,0.000351937967248131;57,0.000361561053755785;58,0.0003651766642933428;59,0.0003561098255606978;60,0.00034570799216803133;61,0.0003536623353506586;62,0.00038648095407618375;63,0.00043454076183695265;64,0.00045083882164471343;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0012998954254182984;130,0.0013052910288358847;131,0.0012968916874332504;132,0.0012867679779280882;133,0.0012990610537557848;134,0.0013278746885012462;135,0.0012962798148807404;136,0.0012823179957280172;137,0.001280871751512994;138,0.0012931648273406908;139,0.0012978373086507654;140,0.00126312744749021;141,0.0012669655571377716;142,0.0012942773228907087;143,0.0012983379316482734;144,0.001288826094695621;145,0.0012902167141331435;146,0.001308684140263439;147,0.001283931114275543;148,0.001296446689213243;149,0.001280816126735493;150,0.0012972810608757566;151,0.0012949448202207192;152,0.001290995461018156;153,0.001278257386970452;154,0.0013025654147383412;155,0.0012951116945532216;156,0.0012872686009255964;157,0.0012819286222855108;158,0.0012814836240655036;159,0.0012962798148807406;160,0.0013039560341758633;161,0.0012852104841580634;162,0.0012788136347454612;163,0.0013004516731933073;164,0.0012882698469206125;165,0.0012968360626557495;166,0.001293498576005696;167,0.0012671324314702742;168,0.0012911623353506585;169,0.00131686098255607;170,0.001306125400498398;171,0.0013190859736561052;172,0.0013076272694909222;173,0.001306737273050908;174,0.0012683561765752937;175,0.0012971141865432538;176,0.0013116878782484871;177,0.0013149141153435385;178,0.001309629761480954;179,0.0012723611605553577;180,0.0012811498754004987;181,0.0012840979886080458;182,0.0012978929334282665;183,0.0012941104485582056;184,0.0012941660733357067;185,0.0012948891954432185;186,0.0013013972944108223;187,0.0013044566571733716;188,0.0013028991634033466;189,0.0013015641687433251;190,0.0013097966358134568;191,0.0012949448202207192;192,0.0013151366144535423;193,0.001317361605553578;194,0.00131124288002848;195,0.0012887704699181203;196,0.0012948335706657174;197,0.0012965023139907442;198,0.001276755517977928;199,0.0012766442684229266;200,0.0013066816482734068;201,0.0012926085795656817;202,0.0012789805090779637;203,0.0012984491812032752;204,0.0012932204521181915;205,0.0012894935920256317;206,0.0012896604663581346;207,0.0012868236027055893;208,0.0012725836596653613;209,0.0012782017621929512;210,0.0012728617835528657;211,0.0012747530259878963;212,0.0013013416696333216;213,0.00130250978996084;214,0.0013141353684585264;215,0.0012962241901032395;216,0.0013037335350658597;217,0.001323313456746173;218,0.0013039560341758633;219,0.0012874354752580991;220,0.001294444197223211;221,0.0012963354396582415;222,0.0012831523673905304;223,0.0012885479708081168;224,0.0012823179957280172;225,0.0013070153969384122;226,0.001295445443218227;227,0.001267799928800285;228,0.0012696911712353153;229,0.0012815948736205056;230,0.0012941660733357067;231,0.001290995461018156;232,0.0012978929334282662;233,0.0013158597365610539;234,0.0013133009967960128;235,0.0012939991990032042;236,0.0012948891954432183;237,0.0013108535065859735;238,0.0013298771804912783;239,0.00130562477750089;240,0.001291551708793165;241,0.0012986160555357776;242,0.0012968916874332504;243,0.0013064035243859024;244,0.001298671680313279;245,0.0012761436454254184;246,0.0012741967782128874;247,0.0012837086151655393;248,0.0012953341936632256;249,0.0012953898184407263;250,0.0012990054289782843;251,0.0013039004093983624;252,0.0012963354396582413;253,0.0012811498754004985;254,0.0012807605019579922;255,0.0012884923460306159;256,0.0013019535421858312;257,0.0012981154325382698;258,0.001292942328230687;259,0.0012982266820932716;260,0.0012817061231755072;261,0.0013039560341758633;262,0.001170234069063724;263,0.0006424661801352795;264,0.00012165138839444642;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0008830989676041295;194,0.0009043476326094696;195,0.0008912201851192596;196,0.0009138594695621218;197,0.0009249288002847989;198,0.0009002313990744038;199,0.0008767577429690282;200,0.0008806514773940905;201,0.0008738096297614809;202,0.0008752558739765041;203,0.0008949470452118192;204,0.0008915539337842649;205,0.0009049595051619794;206,0.0008869927020291919;207,0.0008740877536489854;208,0.0009098544855820577;209,0.0008932783018867924;210,0.0008725302598789605;211,0.000889495817016732;212,0.0009104663581345675;213,0.0009114119793520825;214,0.0008957814168743326;215,0.0008852127091491635;216,0.0008833770914916341;217,0.000885379583481666;218,0.0008877158241367036;219,0.0009054601281594874;220,0.0008897739409042364;221,0.0008870483268066929;222,0.0009083526165895337;223,0.000901121395514418;224,0.0009015107689569243;225,0.0008835439658241368;226,0.0008911089355642578;227,0.0009010101459594162;228,0.0009057938768244928;229,0.0009138594695621218;230,0.0009247619259522961;231,0.0009326606443574228;232,0.0008948357956568174;233,0.0008962264150943395;234,0.0009116344784620862;235,0.0009070732467070131;236,0.0008968939124243504;237,0.0008976726593093629;238,0.0009144713421146315;239,0.0009141932182271272;240,0.0009146938412246351;241,0.0009232600569597722;242,0.0009114119793520826;243,0.0008964489142043432;244,0.000907184496262015;245,0.0009178088287646849;246,0.0009109113563545747;247,0.0009158619615521539;248,0.0009235381808472767;249,0.0009168075827696688;250,0.0009025120149519401;251,0.0008970051619793522;252,0.0009086307404770381;253,0.00091625133499466;254,0.0009245394268422928;255,0.0009385568707725169;256,0.0009418387326450695;257,0.0009211463154147385;258,0.000912691349234603;259,0.0009285444108223567;260,0.0009148607155571378;261,0.0008960595407618369;262,0.0009055713777144892;263,0.0008902189391242436;264,0.0008838220897116411;265,0.0009149719651121396;266,0.0009193663225347098;267,0.0009229263082947669;268,0.0009047370060519757;269,0.0008946689213243147;270,0.0009210350658597367;271,0.0009324381452474192;272,0.0009308806514773941;273,0.0009154169633321466;274,0.0009050707547169812;275,0.0009054045033819865;276,0.0009267087931648275;277,0.0009209794410822356;278,0.0009304912780348878;279,0.0009176419544321823;280,0.0009238163047347811;281,0.000917808828764685;282,0.0009077407440370238;283,0.0009252069241723034;284,0.0009258744215023139;285,0.0009015107689569242;286,0.0009084082413670345;287,0.0009193663225347099;288,0.0009392799928800285;289,0.0009222588109647562;290,0.0009128582235671057;291,0.000922314435742257;292,0.0009242613029547884;293,0.0009034576361694553;294,0.0008946132965468138;295,0.0009046813812744749;296,0.0009072401210395159;297,0.0009208681915272339;298,0.0009279325382698471;299,0.0009053488786044857;300,0.0008987295300818797;301,0.0009065726237095052;302,0.0009052932538269848;303,0.0008883276966892132;304,0.0008950026699893201;305,0.000902623264506942;306,0.0009218138127447492;307,0.0009191438234247063;308,0.0009094651121395514;309,0.0009259300462798149;310,0.0009186432004271983;311,0.0009138038447846209;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.006135969206123176;130,0.006015374688501246;131,0.0059181982022071915;132,0.005911690103239588;133,0.005735081434674261;134,0.0055684296012815954;135,0.0055949626201495205;136,0.005581557048771805;137,0.005514084193663225;138,0.0053969940370238514;139,0.005309218138127448;140,0.005243414026343895;141,0.0051224301352794585;142,0.005082435920256319;143,0.005017855553577786;144,0.004903324136703453;145,0.00477866901032396;146,0.0046783775364898535;147,0.004627536489854041;148,0.004539927465290139;149,0.004408263616945533;150,0.0043333926664293355;151,0.004269034798860805;152,0.004193051352794589;153,0.0041117279280882876;154,0.004038915094339623;155,0.003919433072267711;156,0.0037989498042007835;157,0.0036829165183339266;158,0.0035913025097899613;159,0.003460306158775365;160,0.003340991011035956;161,0.003296546813812745;162,0.003296658063367747;163,0.0032629494482022074;164,0.0031827385190459244;165,0.0030355553577785686;166,0.002905671502313991;167,0.002808272516909933;168,0.0027116522783908865;169,0.002604630206479174;170,0.00253871484514062;171,0.0024607289070843717;172,0.0023824092203631186;173,0.002318218227127092;174,0.0022091380384478463;175,0.0020987228551085798;176,0.0020587286400854396;177,0.00200060074759701;178,0.00189686053755785;179,0.0018227683339266643;180,0.0017356043075827698;181,0.0016442127981488074;182,0.0015536000355998575;183,0.0014595385368458527;184,0.0013983512815948737;185,0.001314914115343539;186,0.0012213532395870417;187,0.0011457591669633321;188,0.0010519757920968318;189,0.0009747686009255964;190,0.0009074069953720186;191,0.0008230798326806694;192,0.0007260702207191171;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000023174672926308296;194,0.00002303561098255607;195,0.000022945220719117125;196,0.00002253498798504806;197,0.000018432660644357422;198,0.000019197501334994663;199,0.000020393434051263796;200,0.000017302782351370595;201,0.00002018657940993236;202,0.000022423738430046282;203,0.000020928822534709862;204,0.000019891072779458885;205,0.000018058931670523318;206,0.000018599534976860096;207,0.00001819625533997864;208,0.000020316949982200072;209,0.000017062900498398007;210,0.000014351192595229619;211,0.000015394157173371308;212,0.000016145091669633322;213,0.000018884611961552156;214,0.00001881508098967604;215,0.000014267755428978284;216,0.000014434629761480956;217,0.000014677988163047349;218,0.00001207057671769313;219,0.000012258310341758636;220,0.000014824003203987188;221,0.000012863229797080812;222,0.000011500422748309007;223,0.000013050963421146316;224,0.000012849323602705591;225,0.000011006752847988609;226,0.000011126693774474903;227,0.000011323118770024919;228,0.000010375759278212889;229,0.000007250342092381631;230,0.000006528958259166964;231,0.000010520036044855822;232,0.000010596520113919545;233,0.000009219806870772515;234,0.000009039026343894625;235,0.000009942928978284086;236,0.000008406294499822;237,0.000008373267288180849;238,0.000009049455989676042;239,0.000007844831901922391;240,0.000006744504271982912;241,0.000007919577696689212;242,0.000007106065325738697;243,0.000006911378604485582;244,0.000005298260056959773;245,0.0000068001290494838025;246,0.000004950605197579209;247,0.000004522989720541118;248,0.000004522989720541118;249,0.00000495060519757921;250,0.000003921546813812745;251,0.000002586552153791385;252,0.00000189124243503026;253,0.0000028090512637949453;254,0.0000034070176219295124;255,0.000001508822089711641;256,0.00000161311854752581;257,0.0000011124955500177999;258,0.00000022249911000355996;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00046824937700249206;2,0.0006013038447846208;3,0.0007650075649697401;4,0.0009467893378426488;5,0.0010729463332146672;6,0.0011446466714133143;7,0.0013030104129583484;8,0.001445187344250623;9,0.0015502069241723033;10,0.0016847076361694554;11,0.0018773362406550374;12,0.002054834905660377;13,0.002173371306514774;14,0.002303032662869349;15,0.0024399808650765395;16,0.0025834371662513357;17,0.0026728261836952653;18,0.0027739520291918834;19,0.0028741878782484872;20,0.0030185898006407975;21,0.003140908686365255;22,0.003338988519045924;23,0.0036284598611605557;24,0.003821366589533642;25,0.003992079031683873;26,0.004063556870772517;27,0.004174138928444286;28,0.00420122819508722;29,0.004319430847276611;30,0.004514228818084728;31,0.004659910110359559;32,0.004799695176219295;33,0.004937477750089;34,0.0050387148451406195;35,0.005114587041651833;36,0.005307660644357422;37,0.0054695843716625146;38,0.005571544588821644;39,0.00577190503737985;40,0.0059926241545033825;41,0.006045133944464223;42,0.006073446956212175;43,0.006180413403346388;44,0.006357133321466714;45,0.006454643556425775;46,0.006567839978640085;47,0.006794733446066216;48,0.007006552598789604;49,0.007158575115699538;50,0.007264429067283732;51,0.007374621751512995;52,0.007415672837308651;53,0.007500667497330011;54,0.007601014595941617;55,0.0077939769490922035;56,0.007989275542897828;57,0.00809296012815949;58,0.008062644624421505;59,0.008083337041651834;60,0.00808506140975436;61,0.008029659131363477;62,0.008000177999288004;63,0.00785054734781061;64,0.007641565058739765;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "allthemodium:vibranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000004449982200071199;66,0.0000022249911000355997;67,0.0000036156105375578493;68,0.00000417185831256675;69,0.00000862184051263795;70,0.00001457369170523318;71,0.000020970541117835528;72,0.00001273807404770381;73,0.000012626824492702028;74,0.000014629316482734071;75,0.00001245995016019936;76,0.000011875889996440014;77,0.000011764640441438236;78,0.000019273985404058383;79,0.000020261325204699183;80,0.000010492223656105375;81,0.000011020659042363832;82,0.00001191065548237807;83,0.00001106933072267711;84,0.00001173682805268779;85,0.000011653390886436454;86,0.000021276477394090423;87,0.000019607734069063724;88,0.000009623086507653968;89,0.000008635746707013172;90,0.000009073791829832683;91,0.00000984558561765753;92,0.000009789960840156639;93,0.000013746273139907441;94,0.00001807805268778925;95,0.00001807805268778925;96,0.00000956746173015308;97,0.00000956746173015308;98,0.00001090245639017444;99,0.000012543387326450694;100,0.000010019413047347812;101,0.000009824726326094695;102,0.000015129939480242081;103,0.000013961819152723389;104,0.000007370283018867925;105,0.00000584060163759345;106,0.0000048393556425774304;107,0.00000378248487006052;108,0.00000322623709505162;109,0.0000027812388750444995;110,0.00000266998932004272;111,0.0000020024919900320397;112,0.00000105687077251691;113,0.00000133499466002136;114,0.0000005006229975080099;115,0.00000011124955500177998;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00017772116411534354;2,0.00023459749911000362;3,0.00030919032573869707;4,0.00037891598433606265;5,0.00040686743503025985;6,0.00041529458882164473;7,0.00048582680669277326;8,0.0005563312121751513;9,0.0005855342203631186;10,0.0006396015040939836;11,0.0007146115165539339;12,0.0007796646938412247;13,0.0008079498932004272;14,0.0008605153079387681;15,0.000894196110715557;16,0.000953186187255251;17,0.0010418520825916698;18,0.0010986449804200784;19,0.0011051530793876824;20,0.0011137192951228194;21,0.0011627803488786044;22,0.001235676619793521;23,0.001264935252758989;24,0.0013124110003559985;25,0.0014009100213599143;26,0.0015005896226415096;27,0.0015209204788180848;28,0.0015671446689213243;29,0.0016268022427910291;30,0.0016963054022783909;31,0.0017337408775364898;32,0.0017671435564257745;33,0.0018176786667853328;34,0.0018306114275542897;35,0.001895497730509078;36,0.0019892254805980777;37,0.0020529714756140974;38,0.0020971931737273053;39,0.0021106543698825204;40,0.0021537357600569596;41,0.002208998976504094;42,0.0022647628159487366;43,0.0023659999110003565;44,0.0024459327162691348;45,0.0024942984603061585;46,0.00252372396760413;47,0.002532679556781773;48,0.0024999721876112495;49,0.0026012092826628694;50,0.002677971475614098;51,0.0027387137326450694;52,0.0028058528390886434;53,0.002851492969028124;54,0.0029095374243503025;55,0.0029735337308650764;56,0.002962992835528658;57,0.0030169210573157707;58,0.003118992524029904;59,0.0032467626379494487;60,0.0033004683606265577;61,0.003309201450694197;62,0.0033277523139907447;63,0.003388800507297971;64,0.0034430902901388402;65,0.0030860626557493768;66,0.0026489909665361336;67,0.0022412613474546107;68,0.0018671569063723747;69,0.0014235493058027768;70,0.0009485415183339267;71,0.0004722543609825561;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000116812032751869;47,0.00000383810964756141;48,0.00000545122819508722;49,0.00001090245639017444;50,0.00000928933784264863;51,0.000013572445710217159;52,0.00001385056959772161;53,0.00001885679957280171;54,0.000021415539337842654;55,0.000023863029547881806;56,0.00002692239231043076;57,0.000026672080811676752;58,0.00003318017977928089;59,0.00003254049483802065;60,0.00003799172303310787;61,0.00003982734069063724;62,0.000044555446778212885;63,0.00004694731221075116;64,0.000045501067995728016;65,0.00004157952118191527;66,0.000038826094695621215;67,0.00003426486294054824;68,0.000027868013527945885;69,0.000021916162335350662;70,0.000015769624421502315;71,0.000008093405126379494;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.00000016687433250267;61,0.000011180580277678889;62,0.00004659270425418298;63,0.00012141324481577075;64,0.00020285661044855822;65,0.00023612891876557496;66,0.0002649860103684586;67,0.00027345314446867216;68,0.00025410093672125313;69,0.0002112420456568174;70,0.000157359019001424;71,0.00009214244393022429;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.00020775854396582415;2,0.0002677776788892845;3,0.0003245705767176932;4,0.00039632653969384117;5,0.00046680313278746896;6,0.0005360559807760769;7,0.000573185519757921;8,0.0006333159042363831;9,0.000728434273762905;10,0.0008106755072979708;11,0.0008738930669277324;12,0.0008913870594517623;13,0.0009447868458526167;14,0.0010159309362762548;15,0.0010869637771448917;16,0.001143867924528302;17,0.0012043320576717695;18,0.0012948613830544677;19,0.0014063890619437523;20,0.0014899096653613385;21,0.0015607756318974724;22,0.0016380940726237094;23,0.001664738341046636;24,0.0016301953542185834;25,0.001622046324314703;26,0.0016657952118191528;27,0.0017604963955144182;28,0.0018748887504449981;29,0.0019262026076895694;30,0.001998292319330723;31,0.0020637626824492705;32,0.0020850669722321112;33,0.0021092915628337485;34,0.0022146727038091854;35,0.002300362673549306;36,0.002392644179423283;37,0.0025040327963688144;38,0.002604129583481666;39,0.002629939480242079;40,0.0026170623442506235;41,0.002684062388750445;42,0.0027352928088287647;43,0.0027518968049127807;44,0.0028484336062655755;45,0.002939936365254539;46,0.0029931414649341406;47,0.0030241522783908863;48,0.003037085039159843;49,0.003092070131719473;50,0.003040450338198647;51,0.0030310775631897475;52,0.0030324959950160197;53,0.0029753415361338555;54,0.002874688501245995;55,0.002754288670345319;56,0.0026261569953720185;57,0.0025539282217871126;58,0.0025797103061587752;59,0.002549811988252047;60,0.002485175996796013;61,0.0024264640441438237;62,0.0023152423015307937;63,0.0022151177020291917;64,0.0021519835795656816;65,0.0018317239231043078;66,0.001542808828764685;67,0.001261319642221431;68,0.0009957669544321825;69,0.0007232611694553222;70,0.00047078030437878245;71,0.0002229441082235671;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0.00000061187255250979;2,0.00000183561765752937;3,0.00000144624421502314;4,0.0000018356176575293698;5,0.00000172436810252759;6,0.0000022249911000356;7,0.0000031149875400498398;8,0.0000025031149875400496;9,0.0000023362406550373795;10,0.00000433873264506942;11,0.0000027812388750445;12,0.00000417185831256675;13,0.0000043943574225703095;14,0.00000372686009255963;15,0.0000033931114275542897;16,0.000005562477750089001;17,0.000006598489231043077;18,0.0000057641175685297266;19,0.000004004983980064079;20,0.000004255295478818085;21,0.00000461685653257387;22,0.000005479040583837665;23,0.000006528958259166962;24,0.000009094651121395514;25,0.00000645247419010324;26,0.00000634122463510146;27,0.0000072312210751156986;28,0.000006504622419010324;29,0.000008562739186543254;30,0.000006628039894090424;31,0.000004429122908508366;32,0.000008686156661623352;33,0.000007119971520113919;34,0.00000756496974012104;35,0.00000917808828764685;36,0.00001151432894268423;37,0.00001323869704521182;38,0.0000100124599501602;39,0.0000066749733001068;40,0.000009066838732645068;41,0.00000912246351014596;42,0.000010902456390174439;43,0.000011540403057137773;44,0.000010427907507119972;45,0.000011013705945176218;46,0.000013598519824670702;47,0.000014775331523673905;48,0.000012858014974190105;49,0.00001247733290316839;50,0.00001270852338465646;51,0.00001229307582769669;52,0.00001273807404770381;53,0.000014629316482734068;54,0.00001479619081523674;55,0.000013982678444286224;56,0.000016541418209327164;57,0.00001512993948024208;58,0.000013906194375222496;59,0.000014351192595229619;60,0.00001518556425774297;61,0.000016798682805268778;62,0.00001729930580277679;63,0.000017688679245283023;64,0.000019496484514061946;65,0.000014434629761480954;66,0.000012143584238163049;67,0.00001092853050462798;68,0.000007815281238875045;69,0.000006024858713065148;70,0.000005301736605553578;71,0.0000015018689925240298;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0001413425596297615;2,0.00016882119971520113;3,0.00019769045923816305;4,0.00024552776788892844;5,0.00029319820220719125;6,0.00032751868992524026;7,0.00036873665005339977;8,0.00038442283730865084;9,0.00040378025987896043;10,0.0004530638127447491;11,0.0005103573335706658;12,0.0005457068796724813;13,0.0005648139907440371;14,0.0006081735048059807;15,0.0006586808027767889;16,0.0006941972232111073;17,0.0007315214489142044;18,0.000787174038803845;19,0.0008322301085795657;20,0.0008399897650409399;21,0.0008255273228907085;22,0.0008611549928800285;23,0.0009318540850836597;24,0.0009825560697757209;25,0.0010202974813100746;26,0.001056676085795657;27,0.001131435786756853;28,0.0011452029191883232;29,0.0011159442862228553;30,0.0011420601192595231;31,0.0012011336329654683;32,0.0012534209238163048;33,0.0012910510857956567;34,0.0013101581968672127;35,0.0013558261391954434;36,0.0014054156283374868;37,0.0014393467426130294;38,0.001466185697757209;39,0.0014798137682449273;40,0.0014797303310786756;41,0.0015651143645425418;42,0.0016493859024563902;43,0.0017414449092203635;44,0.0017435308383766466;45,0.001717248131007476;46,0.0017679223033107868;47,0.0018622897383410468;48,0.0019189713866144536;49,0.0019232823068707728;50,0.0019521515663937345;51,0.002014868503025988;52,0.002049244615521538;53,0.002094272872908508;54,0.002116133410466358;55,0.002116328097187611;56,0.0021372708259166963;57,0.0022081646048415808;58,0.0022835639907440373;59,0.002303310786756853;60,0.0023440559362762556;61,0.002358991189035244;62,0.0024231543698825207;63,0.0024380896226415096;64,0.0024229874955500183;65,0.00216747508009968;66,0.0019102382965468139;67,0.0016414871840512639;68,0.0013127169366322535;69,0.0009970741367034532;70,0.0006672192061231756;71,0.00034186988252046997;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.000057349145603417584;2,0.00007097721609113563;3,0.00008783152367390531;4,0.00010632676219295123;5,0.00012457168921324314;6,0.00014584816660733358;7,0.00016865432538269845;8,0.0001877058116767533;9,0.00020033263616945534;10,0.0002255306603773585;11,0.00024180090779636886;12,0.0002485036934852261;13,0.00025378804734781064;14,0.0002638561320754717;15,0.00027097610359558564;16,0.00029230820576717697;17,0.0003081056425774297;18,0.0003275186899252403;19,0.00036211730153079395;20,0.00038675907796368816;21,0.00039888527945888217;22,0.00042514017443930226;23,0.0004552609914560342;24,0.00047336685653257384;25,0.00048538180847276617;26,0.0004787068351726593;27,0.00050562922748309;28,0.00053374755250979;29,0.0005302988163047349;30,0.0005298816304734781;31,0.0005512971698113209;32,0.000587620149519402;33,0.000618436276254895;34,0.0006276421769312923;35,0.0006209950160199359;36,0.0006614342292630829;37,0.0007010112584549664;38,0.0007363051797792809;39,0.0007505729352082593;40,0.0007525476148095408;41,0.0007562744749021004;42,0.0007544666696333215;43,0.0007764384567461731;44,0.000789120906016376;45,0.0007993002402990388;46,0.0008435775631897473;47,0.0008896348789604841;48,0.000896059540761837;49,0.0009020670167319332;50,0.0008973945354218583;51,0.0009008710840156641;52,0.0009424784175863296;53,0.000998937566749733;54,0.0010050284798860806;55,0.000992123531505874;56,0.0010024141153435386;57,0.001053505473478106;58,0.0010717782128871482;59,0.0010699704076183696;60,0.0010911912602349593;61,0.0011152767888928444;62,0.0011297670434318263;63,0.0011297670434318261;64,0.0011683428266286936;65,0.0010596798237807051;66,0.0009134422837308652;67,0.0007653413136347455;68,0.0006402411890352438;69,0.00047431247775008906;70,0.00030271003915984337;71,0.0001573068707725169;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0005162535599857601;2,0.0006169900320398718;3,0.0007051274919900321;4,0.000812677999288003;5,0.0009509890085439658;6,0.0010857122196511215;7,0.0012317272605909576;8,0.0013495683517265934;9,0.001493942461730153;10,0.0016533908864364544;11,0.001817567417230331;12,0.0018977783463866146;13,0.0020219050373798506;14,0.0021350458348166606;15,0.0022576984692061234;16,0.002371757075471698;17,0.0025401610893556427;18,0.0027244181648273403;19,0.002897744971520114;20,0.003018561988252047;21,0.0031158775364898542;22,0.003214555891776433;23,0.003329671368814525;24,0.0034319097098611607;25,0.0036196433339266646;26,0.003722271048415806;27,0.0037930813901744394;28,0.0038940125489498045;29,0.004074431514773941;30,0.004152139328942685;31,0.004261469829120684;32,0.00437750311498754;33,0.004605509077963688;34,0.00475124599501602;35,0.004917452830188679;36,0.005079320932716269;37,0.005247724946600214;38,0.005342092381630473;39,0.005417769891420435;40,0.005527267265930936;41,0.005758249154503382;42,0.005854062833748666;43,0.006011786890352439;44,0.006145063857244572;45,0.006307210083659667;46,0.006465963198647206;47,0.0065065692862228556;48,0.00654748131007476;49,0.006765280126379495;50,0.006912713599145604;51,0.007041179022783909;52,0.007196149652901389;53,0.007361327429690281;54,0.007460256096475615;55,0.007554456657173372;56,0.007670740254538983;57,0.00782993836774653;58,0.007977399652901389;59,0.0080687077251691;60,0.007969500934496263;61,0.007677359603061588;62,0.0075503682360270555;63,0.007368419588821645;64,0.007066488296546814;65,0.006147761658953365;66,0.005178054912780349;67,0.004277128203987184;68,0.0034108279191883235;69,0.0025269223923104307;70,0.0016345897116411537;71,0.0007897327785688858;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "allthemodium:allthemodium_slate_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005997046324314704;8,0.000000564939146493414;9,0.00000083437166251335;10,0.0000016131185475258096;11,0.0000014462442150231399;12,0.000001005591680758277;13,0.000001737405159754361;14,0.0000022336824715201137;15,0.0000021180872307760767;16,0.0000011124955500178;17,0.000002178057694019224;18,0.0000021989169855820577;19,0.000002006837675774297;20,0.0000017799928800284801;21,0.0000026786806915272338;22,0.000003804213298771805;23,0.000004893242145781417;24,0.0000032305827807938772;25,0.0000024561815815236738;26,0.0000035599857600569594;27,0.0000023579690837486644;28,0.000002311035677732289;29,0.000002738651154770381;30,0.000005399949103328586;31,0.000005815396660288359;32,0.0000030080836707903168;33,0.0000025161520447668213;34,0.000003012429356532574;35,0.0000035130523540405844;36,0.000003293160655482378;37,0.000003230582780793877;38,0.000006405540784086864;39,0.000006442044544321824;40,0.000003401802799038804;41,0.00000311498754004984;42,0.00000283686365254539;43,0.0000028968341157885366;44,0.000003123678911534354;45,0.000002788191972232111;46,0.000007081729485582057;47,0.0000059605425640797445;48,0.00000344873620505518;49,0.000002580468193752225;50,0.000003859838076272695;51,0.000003473072045211819;52,0.0000033461780215379134;53,0.000003941536968227127;54,0.000006705393100302599;55,0.000006012690792986828;56,0.000004018021037290851;57,0.0000032349284665361336;58,0.0000034061484847810614;59,0.000003401802799038804;60,0.0000031793036890352445;61,0.000003855492390530438;62,0.000007903064090868638;63,0.000005631139584816661;64,0.00000378248487006052;65,0.0000031749580032929873;66,0.000003274039638216447;67,0.0000024474902100391597;68,0.000001228090790761837;69,0.0000010568707725169098;70,0.0000015922592559629762;71,0.0000007274677932538271;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0006768422926308295;2,0.0008712787023851904;3,0.00104685831256675;4,0.001222743859024564;5,0.0014134255962976149;6,0.0016467437255250979;7,0.001843321689213243;8,0.002028552198291207;9,0.0022227939213243153;10,0.002402183828764685;11,0.0025374076628693486;12,0.002725669722321111;13,0.002889123131007476;14,0.003024819775720897;15,0.003219923682805269;16,0.003360821244215023;17,0.0035278346386614454;18,0.0037884645336418656;19,0.004070315281238876;20,0.004333754227483091;21,0.004478934896760413;22,0.004588265396938412;23,0.004721681425774298;24,0.004944013661445354;25,0.005190181114275543;26,0.005412012726949092;27,0.005646498976504094;28,0.005823413581345675;29,0.005923677242791029;30,0.006022105286578854;31,0.006151627580989676;32,0.006312132876468495;33,0.006479368770024921;34,0.0067185831256674974;35,0.0069363541295834824;36,0.0071885290583837665;37,0.007346447801708794;38,0.007487261925952296;39,0.007581434674261303;40,0.007677665539337843;41,0.007925251423994304;42,0.008182905393378428;43,0.008490426975792099;44,0.008800813234247064;45,0.008941822045211819;46,0.009093343939124244;47,0.009300796546813813;48,0.009256380161979352;49,0.009280743814524744;50,0.00920940503737985;51,0.009197918520825916;52,0.009135368458526165;53,0.008982122196511216;54,0.008615415850836599;55,0.008239781728373087;56,0.007953453186187256;57,0.007893517488430046;58,0.007795840379138484;59,0.007630467915628338;60,0.007481337887148451;61,0.007297442372730509;62,0.007026494081523674;63,0.006670968316126736;64,0.0064681603773584905;65,0.005594128248487006;66,0.004647672659309363;67,0.003712870461018156;68,0.0028898740655037376;69,0.0021291496084015664;70,0.0013780482378070488;71,0.0006629082858668567;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0.00000050062299750801;2,0.00000144624421502314;3,0.0000017243681025275898;4,0.0000020024919900320397;5,0.00000194686721253115;6,0.00000272561409754361;7,0.00000317061231755073;8,0.0000026143645425418303;9,0.000004060608757564969;10,0.00000422748309006764;11,0.00000394935920256319;12,0.0000044499822000712;13,0.000004950605197579209;14,0.000006341224635101461;15,0.00000689747241011036;16,0.0000058406016375934494;17,0.000005791929957280171;18,0.000006591536133855464;19,0.000006042241456034177;20,0.000006118725525097899;21,0.000008364575916696333;22,0.000007481532573869704;23,0.0000067305980776076895;24,0.00000706434674261303;25,0.00000990121039515842;26,0.00000990121039515842;27,0.000010624332502669988;28,0.0000116812032751869;29,0.00001017933428266287;30,0.000010179334282662869;31,0.00000951183695265219;32,0.000009372775008899964;33,0.000009873398006407974;34,0.000011987139551441795;35,0.00001229307582769669;36,0.000013294321822712708;37,0.00001346119615521538;38,0.000014184318262726948;39,0.00001373932004271983;40,0.000012849323602705588;41,0.00001312744749021004;42,0.000015296813812744746;43,0.00001412869348522606;44,0.00001485181559273763;45,0.000015241189035243859;46,0.00001702118191527234;47,0.00001599212353150587;48,0.000015936498754004982;49,0.000016826495194019224;50,0.000015241189035243857;51,0.00001652055891776433;52,0.00001624243503025988;53,0.000018968049127803488;54,0.000019357422570309722;55,0.000016937744749021002;56,0.000017174150053399785;57,0.000017146337664649342;58,0.00001874555001779993;59,0.000020191794232823068;60,0.000020664604841580633;61,0.00001913492346030616;62,0.00002141553933784265;63,0.00002008054467782129;64,0.000019524296902812392;65,0.000017723444731221074;66,0.00001674305802776789;67,0.000014406817372730508;68,0.00001195932716269135;69,0.00000806559273762905;70,0.000006229975080099679;71,0.0000031149875400498394;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.0004625756496974012;2,0.0005876201495194019;3,0.0007247352260590958;4,0.0008605153079387683;5,0.0009905938501245995;6,0.0011304067283730867;7,0.00127250022249911;8,0.0013989631541473835;9,0.0014839300017799929;10,0.0015752658864364544;11,0.0017466458259166966;12,0.0019522906283374868;13,0.00211624466002136;14,0.002257781906372375;15,0.0023334037913848344;16,0.002454220808116768;17,0.0026286322979708083;18,0.002781572623709505;19,0.002875495060519758;20,0.0029829343182627274;21,0.003118575338198647;22,0.003222037424350303;23,0.0032397817283730864;24,0.0033367913403346385;25,0.0035262215201139198;26,0.0037169032573869704;27,0.003861666740833037;28,0.004007264595941616;29,0.004051347232111072;30,0.004091953319686721;31,0.004257742969028124;32,0.004423782929868281;33,0.004659159175863296;34,0.004861299617301531;35,0.005010819019223923;36,0.005121095140619437;37,0.005170156194375222;38,0.005228172837308651;39,0.0053714066393734435;40,0.005475536222855109;41,0.005608868814524742;42,0.005743592025631898;43,0.00593502469740121;44,0.0061154714756140975;45,0.006246662513349947;46,0.006407000934496262;47,0.00654620194019224;48,0.006587531149875401;49,0.00674811988252047;50,0.006910015797436811;51,0.007110543120327519;52,0.007349423727305091;53,0.007462647961908153;54,0.0075092893378426485;55,0.007666957769668923;56,0.007786745728017087;57,0.00798813523495906;58,0.007996089578141689;59,0.008037557849768602;60,0.00799625645247419;61,0.0078530226504094;62,0.0076262960573157705;63,0.007431804022783909;64,0.007238980731577074;65,0.006280510190459238;66,0.005287246351014595;67,0.004335923593805625;68,0.003407796368814525;69,0.002514128693485226;70,0.0016224635101459595;71,0.0008097576984692061;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000461685653257387;46,0.000034876735493058035;47,0.00008705277678889285;48,0.0001469606621573514;49,0.00021663069597721612;50,0.00029297570309718763;51,0.00035797325560697757;52,0.0004277545389818441;53,0.000499621751512994;54,0.0005408397116411535;55,0.0005904013883944465;56,0.000669944820220719;57,0.0007602238341046637;58,0.0008071433339266643;59,0.000855870639017444;60,0.0009351081345674618;61,0.0010115365788536845;62,0.0010619604396582415;63,0.001113190859736561;64,0.0011888683695265218;65,0.0011230086329654682;66,0.0010167931203275188;67,0.0008858802064791742;68,0.0007432026521893912;69,0.0005736861427554289;70,0.00038937344250623;71,0.00019816326984692064;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00001657618369526522;2,0.000026032395870416516;3,0.00003181737273050908;4,0.000031094250622997505;5,0.000032262370950516205;6,0.000038269846920612324;7,0.00004872730509077964;8,0.00006697223211107157;9,0.00007726281594873621;10,0.00008154592381630474;11,0.00008215779636881453;12,0.00008321466714133143;13,0.00008532840868636526;14,0.00010095897116411534;15,0.00011305736027055892;16,0.00011008143467426131;17,0.00010218271626913494;18,0.0001085795656817373;19,0.00012521137415450338;20,0.00014278880384478463;21,0.00013789382342470628;22,0.00013911756852972592;23,0.00014584816660733358;24,0.0001528012637949448;25,0.00014020225169099324;26,0.00012988385546457815;27,0.0001385056959772161;28,0.00015494281772872909;29,0.00016214622641509436;30,0.0001740499288002848;31,0.0001783886614453542;32,0.0001841736383054468;33,0.00019819108223567106;34,0.0002016120060519758;35,0.00020447668209327166;36,0.00020564480242079032;37,0.00020976103595585617;38,0.0002186053755784977;39,0.00021910599857600567;40,0.00022027411890352438;41,0.00022158130117479527;42,0.00023245594517621934;43,0.00022383410466358133;44,0.00021866100035599858;45,0.00023837998398006408;46,0.0002658308116767533;47,0.0002779013883944465;48,0.0002861338554645782;49,0.00028290761836952653;50,0.0002832969918120328;51,0.0002969528746885013;52,0.00032081590423638305;53,0.0003412858223567106;54,0.0003170334193663226;55,0.0002983434941260235;56,0.000292252580989676;57,0.0003080500177999288;58,0.0003029881630473479;59,0.00030941282484870064;60,0.000316310297258811;61,0.00032312433250267;62,0.0003366411534353863;63,0.000348934229263083;64,0.0003578620060519758;65,0.00031658842114631544;66,0.0002717548504805981;67,0.00024330277678889285;68,0.00020125044499822003;69,0.00014882409220363122;70,0.00009767710929156284;71,0.000048254494482022077;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.0004658575115699538;2,0.0005951016820932716;3,0.0007220096119615522;4,0.0008351504093983624;5,0.0009459549661801352;6,0.001070943841224635;7,0.0012041929957280172;8,0.0013586908152367393;9,0.0015109914560341759;10,0.0016481065325738699;11,0.001791062210751157;12,0.0019417219206123177;13,0.002089071956212175;14,0.002186804690281239;15,0.002272327785688857;16,0.00239937477750089;17,0.002546697000711997;18,0.002716102260590958;19,0.0028779425507297974;20,0.0029743124777500893;21,0.00306061432004272;22,0.0031925284798860806;23,0.0033222732734069066;24,0.0033866311409754364;25,0.0035229396582413673;26,0.003696071778212887;27,0.0038500967871128514;28,0.003935202696689214;29,0.004047564747241011;30,0.004167964578141687;31,0.004272789471342115;32,0.0043938846119615516;33,0.004618024652901388;34,0.004799222365610537;35,0.0049111950427198296;36,0.004959060163759346;37,0.00507311877002492;38,0.005177943663225347;39,0.0052294243948024215;40,0.005324626201495194;41,0.005524291340334638;42,0.005691555046279814;43,0.00583248042007832;44,0.0059812210751157;45,0.0061699837575649695;46,0.006285877981488074;47,0.006374460439658242;48,0.0065123542630829475;49,0.006755212041651834;50,0.006841569508721966;51,0.006897249911000357;52,0.007022238786044856;53,0.007138438946244215;54,0.007300529547881809;55,0.0074760535332858685;56,0.007507870906016376;57,0.007612306425774296;58,0.007702223878604485;59,0.007768639862940549;60,0.007802570977216093;61,0.0077311487629049495;62,0.007493825649697402;63,0.0073518712175151294;64,0.0071166340334638655;65,0.0061396126290494835;66,0.005198441393734425;67,0.004244476459594162;68,0.0033304779280882877;69,0.0023886948202207197;70,0.0015845830366678535;71,0.0007763550195799217;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0.00001346119615521538;2,0.00001535243859024564;3,0.00001401744393022428;4,0.00001713243147027412;5,0.00001852305090779637;6,0.00002553177287290851;7,0.000029842693129227486;8,0.00002987050551797793;9,0.00003109425062299751;10,0.00003126112495550018;11,0.000033486116055535785;12,0.000044054823780704874;13,0.00004722543609825561;14,0.00004680825026699894;15,0.0000522872908508366;16,0.000052871351014595946;17,0.0000528435386258455;18,0.00005481821822712709;19,0.000057571644713421153;20,0.00006257787468850126;21,0.00006747285510857957;22,0.00006474724101103595;23,0.00006836285154859383;24,0.00007628938234247063;25,0.00007720719117123534;26,0.00007531594873620506;27,0.00007971030615877537;28,0.00008149029903880385;29,0.00008365966536133856;30,0.00008624621751512993;31,0.0000936999377002492;32,0.00010571488964044145;33,0.00010154303132787469;34,0.0001016820932716269;35,0.00010304490032039872;36,0.00010565926486294054;37,0.00011900921146315414;38,0.00012081701673193309;39,0.0001162557849768601;40,0.00011592203631185476;41,0.0001248498131007476;42,0.0001256007475970096;43,0.0001227360715557138;44,0.00013252603239587044;45,0.00014370661267354933;46,0.00014131474724101106;47,0.00013533508365966534;48,0.0001363363296546814;49,0.000140063189747241;50,0.00013472321110715558;51,0.000123375756496974;52,0.00011925952296190816;53,0.00012259700961196157;54,0.00011953764684941262;55,0.0001134745461018156;56,0.00011550485048059808;57,0.00011703453186187254;58,0.00011091580633677467;59,0.00010451895692417231;60,0.00010323958704165184;61,0.00009650898896404415;62,0.00009739898540405838;63,0.00009714867390530439;64,0.0000895558917764329;65,0.00007039315592737629;66,0.00006038069597721609;67,0.00004769824670701318;68,0.000038102972588109654;69,0.000029870505517977932;70,0.000018272739409042363;71,0.00000867746529013884;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0.00000083437166251335;2,0.0000005006229975080099;3,0.0000007787468850124599;4,0.00000139061943752225;5,0.0000011124955500178;6,0.0000010673004182983269;7,0.0000013489008543965826;8,0.0000012932760768956925;9,0.0000019851092470630117;10,0.000002344932026521894;11,0.0000018912424350302601;12,0.00000239186543253827;13,0.00000383810964756141;14,0.00000305936276254895;15,0.0000025031149875400496;16,0.0000028924884300462798;17,0.0000033931114275542893;18,0.0000022249911000356;19,0.0000026143645425418294;20,0.0000028924884300462798;21,0.00000289248843004628;22,0.0000027812388750445;23,0.00000383810964756141;24,0.00000489498042007832;25,0.00000490193351726593;26,0.000006289076406194375;27,0.000005632008721965112;28,0.000006400325961196155;29,0.000007509344962620149;30,0.00000534693173727305;31,0.000005513806069775721;32,0.000006487239676041297;33,0.000006598489231043076;34,0.000005506852972588111;35,0.000005618102527589889;36,0.000005840601637593449;37,0.000006348177732289072;38,0.000007627547614809542;39,0.00000773184407262371;40,0.00000706434674261303;41,0.00000856621573513706;42,0.00000784309362762549;43,0.00000734247063011748;44,0.000006786222855108579;45,0.00000765188345496618;46,0.000008917347143111426;47,0.000009417970140619438;48,0.000008736566616233536;49,0.000008903440948736206;50,0.000009198947579209684;51,0.000009473594918120327;52,0.000008983401566393734;53,0.000011166674083303666;54,0.000010999799750800999;55,0.000010196717025631898;56,0.000010391403746885015;57,0.000008100358223567106;58,0.000008799144490922036;59,0.000009626563056247774;60,0.000009883827652189392;61,0.000009497930758276966;62,0.00001076687099501602;63,0.00001133007186721253;64,0.000011097143111427554;65,0.00001148999310252759;66,0.000010386188923994304;67,0.000007613641420434318;68,0.000005682418676575293;69,0.000005266971119615522;70,0.0000035634623086507656;71,0.0000015644468672125312;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006482206443862886;66,0.0014071594305490012;67,0.0021958725706808526;68,0.0030247503646660084;69,0.003877369435268208;70,0.004765125595263632;71,0.005734886917785691;72,0.006670404940151873;73,0.0069937890585896716;74,0.007164167631959043;75,0.0073967204191514;76,0.007686531579361333;77,0.007857301185522044;78,0.008008239842979107;79,0.007983046158851374;80,0.007811326901625981;81,0.007692341209404093;82,0.007467832525347863;83,0.007354041983068056;84,0.0071700331238291354;85,0.006912174928854377;86,0.006701184807013028;87,0.006476452675647461;88,0.006300096886753329;89,0.006136533456318732;90,0.005903980669126374;91,0.005768459876013557;92,0.0056248391179372775;93,0.005383516023853447;94,0.005145153606618331;95,0.004897573987873069;96,0.004712559615742131;97,0.004577709164557324;98,0.004357948735824502;99,0.004179693644801006;100,0.00399719305490011;101,0.0037826277761093714;102,0.0035714700687860196;103,0.0033528268765998827;104,0.003118374787278161;105,0.002912970848170234;106,0.002737732295822787;107,0.002534339382498892;108,0.0023220644386288554;109,0.0021585010081942597;110,0.0019260599446565703;111,0.0017129470733765213;112,0.0015121238041100004;113,0.001339790066783932;114,0.00115550189840834;115,0.0009474165915883708;116,0.0007276561628555493;117,0.0005209115398916012;118,0.0003073517739928783;119,0.00012384567119996567;120,0.00002357369113504083;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006738053613053613;66,0.0014368779226908062;67,0.0023161989467587627;68,0.0032318860204212964;69,0.004184330176469747;70,0.005253469689819382;71,0.00632897745148512;72,0.007384765988101878;73,0.007680330916527235;74,0.00802192599067599;75,0.008415919458864244;76,0.008637690913381098;77,0.00889979460723326;78,0.00918111476968839;79,0.009506174742946214;80,0.00982497819154261;81,0.010202101387875927;82,0.010572185993965134;83,0.010861270950419723;84,0.011034330891501135;85,0.011231355556508931;86,0.011549209354040642;87,0.012043698249603158;88,0.012315075006792799;89,0.012519808603972712;90,0.012771745445250046;91,0.013198697391565489;92,0.0135310752642041;93,0.013676204291618402;94,0.013877418593676263;95,0.014081202539791497;96,0.014282696150986028;97,0.01466808689776481;98,0.015063644497118424;99,0.015397921671886396;100,0.01575130359160267;101,0.016117980626224493;102,0.016230039451856935;103,0.01643130961574213;104,0.016746537907389135;105,0.01721387795486722;106,0.017578879134669014;107,0.01785433380525405;108,0.018221904629113217;109,0.018587129256224348;110,0.018760356782787764;111,0.018768009853132553;112,0.01850138135126632;113,0.018209950198063693;114,0.018068172880289446;115,0.017889973651093287;116,0.01758446531740243;117,0.017308116857580047;118,0.01696194111358989;119,0.016525213347490957;120,0.016093904178643443;121,0.015819119849986414;122,0.01567108600755073;123,0.015498081928296655;124,0.015205756985856678;125,0.01490857206443863;126,0.014615967812861987;127,0.014369673016145407;128,0.014062656413116536;129,0.013750556383800249;130,0.013473090687431178;131,0.013224840726757904;132,0.012907433823844867;133,0.01263359914625252;134,0.012393505012370043;135,0.011950241412473007;136,0.011498542676648505;137,0.011279061557052356;138,0.011047626006406682;139,0.010840043456032719;140,0.010593804521143477;141,0.010348235928182247;142,0.009997647099832682;143,0.00964616448224577;144,0.009244071049094055;145,0.009049671889970969;146,0.008794495062708253;147,0.008629479224762968;148,0.008444297267150028;149,0.008220123754057803;150,0.007915453347776966;151,0.007521515741416048;152,0.00723321285054414;153,0.006927592793198621;154,0.006634653370657972;155,0.00602134636835557;156,0.00577566605173967;157,0.005222019481030217;158,0.004870425139788637;159,0.0044836937091538315;160,0.004184162590987744;161,0.003860778472549945;162,0.0034833759670799547;163,0.0030174324652852257;164,0.0023744069708410195;165,0.0016295453651665307;166,0.0009265242681653725;167,0.0006908432186422984;168,0.00047644552533356217;169,0.00030696074120153873;170,0.00018456747751226281;171,0.00011669535730118553;172,0.0000710562443691278;173,0.000035248813047892804;174,0.000013853733178886553;175,0.0000027372295393767784;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0.002669413280993036;2,0.0027603004740658116;3,0.002947158286498777;4,0.003123011318946901;5,0.0032465218191828618;6,0.003373607476368212;7,0.0035014193373089078;8,0.0035357743611194527;9,0.0036113554135026524;10,0.0037788850336779784;11,0.003968480075650321;12,0.004031771526019992;13,0.004147740679565833;14,0.004394426509073748;15,0.004568436101219844;16,0.004636699254222261;17,0.004696359685815207;18,0.004847633514236276;19,0.0050480098888841226;20,0.005153812189855134;21,0.005254251755402062;22,0.005375360197062651;23,0.005421222757304046;24,0.005549593236518083;25,0.005762482660488795;26,0.005898562071874955;27,0.006017212593132837;28,0.00615278924807299;29,0.006237866811103008;30,0.006290488652451843;31,0.006327804353111101;32,0.006481033345488867;33,0.006744310137715046;34,0.00685569862141948;35,0.006973231906130679;36,0.007076911457662991;37,0.0072200294592932625;38,0.007298012570251833;39,0.0073065035680066346;40,0.007448839504054228;41,0.0076766998977505115;42,0.007820097208517455;43,0.007938859453430005;44,0.008061085131637277;45,0.008241686419408811;46,0.008417539451856935;47,0.008428655955496446;48,0.00844128072847398;49,0.008596911779427115;50,0.008851697573898493;51,0.00901486997154175;52,0.00910117649477312;53,0.009240607615799333;54,0.00940841654511133;55,0.009523268462110487;56,0.009437855728116465;57,0.00952041950891644;58,0.009674765737840891;59,0.009890504115005649;60,0.010061497168475694;61,0.010155400900224522;62,0.010187353865459693;63,0.010165958785590689;64,0.01023059091981638;65,0.009340153392108913;66,0.008129180699157693;67,0.006797099564545883;68,0.005501887235974659;69,0.004182207427031046;70,0.002778511429776767;71,0.0013930263882334436;72,0.0000005586182733421996;73,0.0000007820655826790796;74,0.0000013406838560212794;75,0.0000030165386760478785;76,0.000002290334920703019;77,0.0000008379274100132996;78,0.0000012848220286870594;79,0.0000007262037553448596;80,0.00000022344730933687994;81,0.00000044689461867375973;82,0.00000044689461867375973;83,0;84,0.0000001675854820026599;85,0;86,0.00000011172365466843992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002041079447137729;66,0.0039769710734051215;67,0.005818176902341012;68,0.007440292644472092;69,0.008936830998755845;70,0.010299077520128134;71,0.011569543059190297;72,0.01260220479929069;73,0.012154025358588241;74,0.011645850315328842;75,0.01120102258426645;76,0.010735414253435724;77,0.010146127836887038;78,0.009612312214881232;79,0.009050286370071648;80,0.008442677274157335;81,0.008071922326140117;82,0.007559278336693981;83,0.006977924299626754;84,0.006315961645716246;85,0.0056901974559183145;86,0.005191351337823731;87,0.00468580180044904;88,0.0041469586139831534;89,0.003611020242538647;90,0.0030378778940895503;91,0.002505570541421768;92,0.0019551080948703647;93,0.0013906243296580721;94,0.0008562500893789238;95,0.0003719839082185708;96,0.00008161412973529538;97,0.00000005586182733421997;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000152614512277089;66,0.0002829401554478242;67,0.00043024779412816224;68,0.0005620258448095872;69,0.0006851453122542079;70,0.0007912269223618917;71,0.000866975560227094;72,0.0009183125795472421;73,0.0009022243732749868;74,0.0008741258741258741;75,0.0008384301664593075;76,0.0008164206064896248;77,0.0007653628963061478;78,0.000734918200408998;79,0.0006939714809730147;80,0.0006512930448896706;81,0.0005988946508501724;82,0.0005611879173995738;83,0.0005288997812003946;84,0.0004899640875484434;85,0.0004467828950190913;86,0.00039768034879231196;87,0.0003663977254851488;88,0.00031757448839504055;89,0.0002760691506857151;90,0.00022730177542294104;91,0.0001865785032962947;92,0.00014870418436369357;93,0.00010038370371959329;94,0.000054409419823530256;95,0.00002469092768172523;96,0.000004636531668740257;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0.0016885913166588013;2,0.001761155830365953;3,0.0018366810209218185;4,0.0019419247036194889;5,0.002010746474895248;6,0.0020305215617715615;7,0.0021068288179101067;8,0.00220034151686759;9,0.002306702436111945;10,0.0024185936762623882;11,0.002490264400732192;12,0.002570202675647461;13,0.0026927635248187396;14,0.002810520256839275;15,0.0028962122999699686;16,0.002956710658972929;17,0.003019834523860597;18,0.003073406016274114;19,0.0031586511647861337;20,0.0032343998026513367;21,0.003350648265333848;22,0.003448015430377394;23,0.0035324226514794;24,0.003579793481058818;25,0.00362548845581821;26,0.0036948688453673113;27,0.003781845710526692;28,0.003858041243010568;29,0.0039230644100276;30,0.004020599160553148;31,0.004077857533570723;32,0.004079645112045419;33,0.00421321074120154;34,0.004303483454173638;35,0.004333146084488109;36,0.004425653270553578;37,0.004510730833583594;38,0.004549945836372217;39,0.004636643392394927;40,0.004776633131694481;41,0.004928856611180231;42,0.005021363797245699;43,0.005059573287142306;44,0.005096330369528223;45,0.005184312747579619;46,0.005277993032019106;47,0.0052956453694567186;48,0.005291120561442647;49,0.005461499134812019;50,0.005593779941939451;51,0.00567517062436541;52,0.0057613654239421115;53,0.005828790649534514;54,0.005846945743418135;55,0.005919677842607289;56,0.005964367304474667;57,0.006102290156162855;58,0.006192060112688947;59,0.006247977801850501;60,0.006324955399917056;61,0.006426568063838002;62,0.006471480973014716;63,0.006479971970769517;64,0.0064795809379781764;65,0.005819182415233028;66,0.00513375779384215;67,0.0043275040399273525;68,0.003455165744276174;69,0.002615897650406853;70,0.0017380290338495858;71,0.0008820582536073333;72,0.0000005027564460079797;73,0.0000004468946186737598;74,0.00000022344730933687992;75,0.00000011172365466843996;76,0.00000005586182733421996;77,0.00000011172365466843992;78,0.00000022344730933687994;79,0.00000016758548200265998;80,0.0000005027564460079799;81,0.00000022344730933687986;82,0.00000005586182733421996;83,0.00000016758548200265987;84,0.0000005586182733421998;85,0.0000003910327913395398;86,0.00000011172365466843992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0008122309694395582;66,0.0016814410027600213;67,0.0025807605610136284;68,0.0034184645237175914;69,0.0043338164264161184;70,0.005290729528651308;71,0.006215410356514651;72,0.007124952629170421;73,0.007211035705092453;74,0.007271645787750081;75,0.007389793552561957;76,0.007536654296623621;77,0.007734237579904757;78,0.007911654743518239;79,0.007969136563845153;80,0.008030081817466787;81,0.008191187327498677;82,0.008293805504311639;83,0.008361286591731376;84,0.008393127833311882;85,0.008461223400832297;86,0.008554177481516437;87,0.008667688714659573;88,0.008717908497433039;89,0.008780473744047362;90,0.008816616346332604;91,0.008893370497089822;92,0.009105198546341182;93,0.009240495892144665;94,0.009337136853432865;95,0.009371100844452073;96,0.00928769913624208;97,0.009374117383128119;98,0.009556059354755675;99,0.009697445639738584;100,0.009770121877100406;101,0.009831122992549372;102,0.009848998777296322;103,0.009876594519999428;104,0.009923015698514167;105,0.010172103586597453;106,0.01037806614397872;107,0.010349464888383599;108,0.01039817640181904;109,0.010570342553663105;110,0.010719828803609478;111,0.01087780605131065;112,0.010910820391265176;113,0.010972882881433495;114,0.011122871887825875;115,0.011253253392823945;116,0.011442289816522948;117,0.011519602585553507;118,0.011601663609907475;119,0.011521501887682868;120,0.011329504787135156;121,0.011189291600526265;122,0.011122983611480544;123,0.011169684099131952;124,0.011082092753871895;125,0.010976234591073549;126,0.010918752770746637;127,0.010715303995595407;128,0.010610172036552405;129,0.010679552426101505;130,0.010586989378208704;131,0.010419348034378708;132,0.01033846010839876;133,0.010262041128605544;134,0.010135849260657543;135,0.01007769709840262;136,0.009956867965878703;137,0.009909664721781286;138,0.009895196508501724;139,0.009910726096500636;140,0.009844138798318247;141,0.009650298257468503;142,0.009550361448367583;143,0.009411321360132709;144,0.009317194181074549;145,0.009409701367140018;146,0.009376631165358158;147,0.009374173244955455;148,0.009322333469189297;149,0.009319652101477255;150,0.00922613940251977;151,0.009053358770575028;152,0.008999284521715504;153,0.008903872520628655;154,0.008793489549816236;155,0.008386033381240436;156,0.00836743139273814;157,0.007854508094155334;158,0.0077601574677878355;159,0.007546709425543781;160,0.007404876245942197;161,0.007277678865102178;162,0.007040377822586411;163,0.00643422113418279;164,0.005407815918743833;165,0.003967195253621635;166,0.002503503653810402;167,0.002021639531225421;168,0.001563795994394154;169,0.0011689645987958872;170,0.0008552445764869078;171,0.0006528571760550288;172,0.0005033150642813219;173,0.00037265425014658144;174,0.00030668143206486766;175,0.0002179169884307921;176,0.00014244765970226092;177,0.00010356782787764382;178,0.00007586036151987073;179,0.000053348045104180066;180,0.00003122676147982897;181,0.000020445428804324512;182,0.000016199929926923794;183,0.000010669609020836016;184,0.0000051392881147482375;185,0.000001787578474695039;186,0;187,0.00000033517096400531985;188,0.00000022344730933687992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0004430960144150328;2,0.00046443523245670484;3,0.0004942654482531783;4,0.0005134260550288157;5,0.0005329776945957928;6,0.0005601265426802237;7,0.0005694554678450385;8,0.0005968836250661403;9,0.0006088939179429978;10,0.0006409586068328399;11,0.0006980493943684128;12,0.0006994459400517683;13,0.0007117355420652966;14,0.00073190166173295;15,0.0007577098259613597;16,0.0007889365874411886;17,0.00079742758519599;18,0.0008125102785762295;19,0.0008537921689762181;20,0.0008883147782687659;21,0.0008979230125702518;22,0.0008942361319661933;23,0.0009363559497761952;24,0.0009595944699472307;25,0.0009920501916284125;26,0.0010126632059147397;27,0.0010093114962746864;28,0.0010247852224462652;29,0.0009999267092825372;30,0.0009508800248830924;31,0.0009469138351423628;32,0.0009181449940652395;33,0.0008773658601112589;34,0.0008555238856235789;35,0.0008346315622005806;36,0.000803739971684757;37,0.0007871490089664936;38,0.0007801662805497162;39,0.0007578774114433624;40,0.0007162044882520342;41,0.000687435647174911;42,0.0006743081177513692;43,0.000667381251161926;44,0.0006428579089622034;45,0.0006355400095814206;46,0.0006098435690076794;47,0.0005666065146509931;48,0.0005384521536745463;49,0.0005219729146109513;50,0.0005253804860783388;51,0.0004932040735338281;52,0.0004673959093054185;53,0.00045387734709053724;54,0.0004324264053941968;55,0.00040337825518040244;56,0.0003925410606775637;57,0.00037125770446322587;58,0.00034388540906945815;59,0.0003140551932729847;60,0.000281878780728474;61,0.0002660698835928897;62,0.0002461272112345732;63,0.00022763694638694638;64,0.00019652190856178588;65,0.00015043590101105437;66,0.00011367881862513763;67,0.0000797148276059319;68,0.00005602941281622263;69,0.000037036391522587845;70,0.000019663363221645426;71,0.000007429623035451257;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.003149489825103322;2,0.0032772458242166834;3,0.0034571209082328714;4,0.003666714484390865;5,0.0038313392895448104;6,0.003967083529966966;7,0.004044731469961531;8,0.004106347065511176;9,0.004288568346275402;10,0.004469728252320277;11,0.004638598556351624;12,0.004833723919230055;13,0.005004325939908762;14,0.005157778379595864;15,0.005234141497561743;16,0.005371449869149255;17,0.005628302551231999;18,0.005825885834513135;19,0.005894875191270896;20,0.005997605091738528;21,0.006193791829336308;22,0.006371320716604459;23,0.00646109067313055;24,0.006601750754358117;25,0.006800451274185937;26,0.006835588363579161;27,0.006926419694824602;28,0.007171262084030488;29,0.007376498437656413;30,0.0075188902355313395;31,0.007600783674403306;32,0.0075994988523746185;33,0.0075983257540006;34,0.007568160367240121;35,0.007437499553105381;36,0.007272260267850759;37,0.007104451338538761;38,0.00689938257039484;39,0.006745148065125059;40,0.0065400234351538035;41,0.0064557837995338;42,0.006317525776881605;43,0.006170162276373932;44,0.006081397832739857;45,0.005974701742531497;46,0.005754941313798676;47,0.005545347737640682;48,0.0053501106511075845;49,0.005284305418507872;50,0.005159342510761222;51,0.004959357168904714;52,0.00480177095399488;53,0.004679098381168933;54,0.004544638962775467;55,0.004370685232456705;56,0.004116011161639996;57,0.003993785483432722;58,0.003865359142391351;59,0.003724140442890443;60,0.003534489539090766;61,0.0033695295629728146;62,0.003243170109542809;63,0.0030480447466643785;64,0.002866605531482832;65,0.002404628219428833;66,0.0019593535937477654;67,0.0015537408654739942;68,0.0011591329171850644;69,0.0008212247236403679;70,0.0005081191814320648;71,0.0002304300377536574;72,0.00000027930913667109983;73,0.00000016758548200265987;74,0.00000022344730933687984;75,0.00000005586182733421996;76,0.00000005586182733421996;77,0;78,0;79,0.00000005586182733421999;80,0.00000027930913667109994;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000018605297605904807;30,0.00012198175251553481;31,0.0003142570300917895;32,0.0005208867260196196;33,0.0007501877779705392;34,0.0009770245520928618;35,0.0012076809568495094;36,0.0014257695446803142;37,0.0016248215862852097;38,0.0018457440936189005;39,0.0020423318573951996;40,0.002221916104154181;41,0.0024640314008138034;42,0.0026765137565845504;43,0.002852648014383497;44,0.003053609871305555;45,0.003362507097120147;46,0.003574003741759455;47,0.0037262961115667285;48,0.00391727764328297;49,0.004214531156357442;50,0.004435145628962559;51,0.004634197670567454;52,0.004821914034160806;53,0.0050305767592972285;54,0.005209976185219065;55,0.005363685514777781;56,0.0054798762143961136;57,0.005806146598902312;58,0.005988071909598461;59,0.0061624811729173905;60,0.006360978752010851;61,0.006592805688736082;62,0.006722796344194556;63,0.006731421316594644;64,0.006499039917357979;65,0.006387592952559695;66,0.006160694571491657;67,0.0059469184698608965;68,0.005799000193199381;69,0.005600009758540201;70,0.005368983712109265;71,0.005104936342775132;72,0.004834605064978077;73,0.004723774169636943;74,0.0045589755898495414;75,0.004335219163012964;76,0.004131977849099454;77,0.003956582874649087;78,0.003752848705169858;79,0.0034961941693215154;80,0.0032554342254676218;81,0.003091806177648803;82,0.002890844320726745;83,0.0026926547763618585;84,0.0024828215192568524;85,0.0022184045082484305;86,0.0020461514880295243;87,0.001833607525313062;88,0.0016049841497650067;89,0.0013969374940857335;90,0.0011901845842664733;91,0.0009704942158470808;92,0.0007695939658707378;93,0.0005303125887140018;94,0.00031733737737753536;95,0.00013873884174999212;96,0.00002445795744882188;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0002648482596284263;2,0.0002827142738857522;3,0.00030594009242027574;4,0.00030594009242027574;5,0.0003188159440746933;6,0.0003475863877235593;7,0.0003551024351007791;8,0.00035547207677506863;9,0.0003720443451723812;10,0.0003903416080497114;11,0.0004074067320127433;12,0.0004090701195470461;13,0.000413567426584235;14,0.0004314334408415608;15,0.0004494226689903164;16,0.00043907270211021045;17,0.0004626681623190234;18,0.0004846618419392487;19,0.0004898368253793017;20,0.0005005564339336971;21,0.0005295116984197079;22,0.0005391839888969498;23,0.0005551401878371132;24,0.0005540928697599596;25,0.0005618553449200391;26,0.0005696794270258335;27,0.0005869293718260102;28,0.0006060891319433492;29,0.0006235238975806706;30,0.000632888153329338;31,0.0006428684785351544;32,0.0006606112789010504;33,0.0006622130594896382;34,0.0006777380098097972;35,0.0006789085417783807;36,0.0006776764028640824;37,0.0007161807439359051;38,0.0007188298426016467;39,0.0007467377890105038;40,0.0007485243904362364;41,0.0007577038253477589;42,0.0007765555507365234;43,0.0007790198285651201;44,0.0008073590235939817;45,0.0008091456250197142;46,0.0008400107048228875;47,0.0008567677940573448;48,0.0008453089021543704;49,0.00084555532993723;50,0.0008697668596031923;51,0.0009015560435920891;52,0.0009141238605179322;53,0.0009342077248209948;54,0.0009493014265211495;55,0.0009465291139639782;56,0.0009329139789609817;57,0.0009418469860896447;58,0.0009505951723811627;59,0.000990331652367284;60,0.001022675298867615;61,0.001007766418004605;62,0.0010120789042046495;63,0.0010117708694760746;64,0.0009924262885215912;65,0.0009751147367756995;66,0.0009524433807526102;67,0.0009746218812099802;68,0.0009560165836040753;69,0.0009228104398637354;70,0.0009231800815380248;71,0.0009180050980979719;72,0.0008886185849919567;73,0.0008830739598776141;74,0.0008700748943317668;75,0.0008525785217487304;76,0.0008472187174715328;77,0.0008437687285114974;78,0.0008367455366999969;79,0.0008300919865627859;80,0.0008178322043655176;81,0.0008119179375768856;82,0.0008072358097025519;83,0.0007903555065766647;84,0.00075320651831057;85,0.0007271467802731603;86,0.0007342315790303758;87,0.0007157494953159008;88,0.0007160575300444753;89,0.0007136548591615935;90,0.0006938790295871054;91,0.0006781692584298016;92,0.0006846379877298678;93,0.0006513702370438129;94,0.000634982789483645;95,0.0006252488920606882;96,0.0006104016181433932;97,0.0005917347135917737;98,0.0005800293939059395;99,0.0005871757996088699;100,0.0005696178200801185;101,0.0005576660726114247;102,0.000529450091473993;103,0.0005001867922594077;104,0.0005004948269879823;105,0.0004860788016906918;106,0.00047770025707346306;107,0.0004923627101536133;108,0.0004603270983818566;109,0.00044671196337886006;110,0.00043630038955303917;111,0.00040531209585843616;112,0.00041831116140428353;113,0.000400999609658392;114,0.00039730319291549695;115,0.00037993003422389054;116,0.00037721932861243423;117,0.0003494962030407217;118,0.00034733995994069963;119,0.00034462925432924326;120,0.0003143802439832193;121,0.00028862854067438415;122,0.00028788925732580514;123,0.0002644786179541369;124,0.00025745542614263634;125,0.00025147955240828945;126,0.0002313340811595117;127,0.00021359128079361574;128,0.00020921718764785666;129,0.00019781990269059711;130,0.00016898785209601614;131,0.00016251912279594992;132,0.00015420218512443616;133,0.0001439138251900451;134,0.00012894333738132038;135,0.00011656034129262216;136,0.00010553269800965209;137,0.0000869890073494622;138,0.00007251137510645681;139,0.00005704803173201274;140,0.000044295393969025014;141,0.000032220432608901365;142,0.000019899043465918053;143,0.000009549076585812068;144,0.0000009241041857237486;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.000021624037945935715;38,0.00012629423871557895;39,0.000314626671766079;40,0.0005073331979623379;41,0.0007017647186386147;42,0.00090469799782355;43,0.0011229714064914993;44,0.0013437706999337602;45,0.001538263827555752;46,0.0017203739590890455;47,0.0019435759234141883;48,0.0021314771078446834;49,0.002347471059521181;50,0.002580899776835;51,0.002781430385137054;52,0.0029890457921963225;53,0.0031736818085039272;54,0.003366757976374476;55,0.0035500386398763526;56,0.0037102783056808504;57,0.0039198651350029964;58,0.004122921628079362;59,0.004392020766962117;60,0.00459292101693846;61,0.004837808626155253;62,0.005034334782985838;63,0.005124404137621046;64,0.005319082086080182;65,0.00557930982477999;66,0.005697779981389773;67,0.005968912149481122;68,0.006182934678894742;69,0.006374655493959563;70,0.0065484486878213425;71,0.0066856473559284615;72,0.006855620919155916;73,0.007094902296312652;74,0.007306275727060532;75,0.0075183268342112735;76,0.007672775447118569;77,0.007962081664195817;78,0.008309544838027948;79,0.008340471524776835;80,0.008100327650380091;81,0.007977606614515978;82,0.007777076006213924;83,0.007522331285682744;84,0.007315455161972054;85,0.007077036282055327;86,0.006902811839573543;87,0.00669679821310286;88,0.006440574925874524;89,0.0062216854477494254;90,0.006086519808850898;91,0.0059413738447465555;92,0.005739179848910198;93,0.005489117256253352;94,0.005267393858625367;95,0.005086023010440652;96,0.004851608581995395;97,0.004676028786707883;98,0.004531930140680693;99,0.004315997795949911;100,0.004065935203293064;101,0.0038437805570450748;102,0.0036654900561461064;103,0.003443520230735262;104,0.0031767005488439583;105,0.0029704404945904176;106,0.0028087222620887613;107,0.002638502271078447;108,0.0024040262356874744;109,0.0022253044861685013;110,0.0020250203056493077;111,0.0017902978424754756;112,0.0015637691030817272;113,0.0013845544979970352;114,0.0011755837381320377;115,0.0009537371266126235;116,0.0007455056500962054;117,0.0005344402540769013;118,0.000327132881746207;119,0.0001290049443270353;120,0.000024273136611677126;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "ad_astra:mars_ostrum_ore", + "distrib": "0,0;1,0.0005152188870138474;2,0.0005049921340251712;3,0.0005407857694855378;4,0.0005799061800145097;5,0.0005943838122575151;6,0.0006296845921521623;7,0.0006304238755007413;8,0.0006490291731066462;9,0.0006944334920985396;10,0.0007153182466958963;11,0.00073478604154181;12,0.0007467993959562188;13,0.0007691011103050185;14,0.0007829010661451598;15,0.0008266419976027505;16,0.0008397642770400279;17,0.0008596017135602309;18,0.000909072090969309;19,0.0009355630776267231;20,0.0009290943483266568;21,0.0009417853791439297;22,0.0009693236838784974;23,0.0009927343232501657;24,0.001018362812667571;25,0.0010403564922877961;26,0.0010776903013910355;27,0.0010956795295397914;28,0.0011293169219001357;29,0.001152665954326089;30,0.0011524195265432294;31,0.0011819292535406745;32,0.0011885828036778856;33,0.001199856874743715;34,0.0012331246254297702;35,0.0012734771748730404;36,0.0012994136990190203;37,0.0013140145451534556;38,0.001337240363687979;39,0.0013480215791880897;40,0.0013833223590827368;41,0.0013885589494685045;42,0.0014050696109201024;43,0.0014471471548433905;44,0.001473884569283664;45,0.0014668613774721636;46,0.0014999443073210738;47,0.0015332736649528438;48,0.0015489834361101474;49,0.0015749815672018424;50,0.0015895208063905625;51,0.001606893965082169;52,0.0016399768949310791;53,0.0016567955911112515;54,0.0016730598247799895;55,0.0016893240584487275;56,0.001700043667003123;57,0.0017128579117118255;58,0.0017488979749550517;59,0.0017947951495126645;60,0.0017903594494211906;61,0.001817281684698609;62,0.001840261075450273;63,0.001810073672049964;64,0.0017979987106898402;65,0.0017868478535154402;66,0.0017792085922467907;67,0.0017433533498407091;68,0.0017040481184745927;69,0.0016753392817714413;70,0.0016787892707314767;71,0.0016427492074882503;72,0.0015835449326562158;73,0.0016019038024792606;74,0.0015873029563448257;75,0.0015540968126044855;76,0.0015565610904330822;77,0.0015155924715326628;78,0.0015177487146326848;79,0.0015006835906696528;80,0.0014883005945809545;81,0.0014655060246664357;82,0.0014351338004289817;83,0.0014329159503832442;84,0.0014107990568715896;85,0.0013795027284484122;86,0.0013608358238967923;87,0.00131068777008485;88,0.0012515451021985302;89,0.0012464317257041917;90,0.0012397165686212663;91,0.0012223434099296597;92,0.0011980702733179827;93,0.0011736123158691608;94,0.0011701007199634106;95,0.0011352927956344825;96,0.001102517900514147;97,0.001053848413399363;98,0.0010498439619278934;99,0.001051630563353626;100,0.0010411573825820902;101,0.0010008048331388198;102,0.0009733897422956818;103,0.0009501023168154434;104,0.0009184979536636913;105,0.0008859078793805003;106,0.0008933007128662904;107,0.0008901587586348296;108,0.0008651463386745734;109,0.0008442615840772168;110,0.000830153593508501;111,0.0008098233014225784;112,0.0007848108814623222;113,0.0007603529240135003;114,0.0007164271717187648;115,0.0006877799419613286;116,0.0006722549916411697;117,0.0006548202260038482;118,0.0006400345590322683;119,0.0006067668083462134;120,0.0005685088950572502;121,0.0005513205572027885;122,0.0005224268996624925;123,0.0005002483992051226;124,0.00048749576144213483;125,0.0004590333525218434;126,0.00043254236586442925;127,0.00038707643992682086;128,0.0003683479284294862;129,0.0003632345519351481;130,0.00033027483597766776;131,0.00031524274122322806;132,0.00030310617291738954;133,0.0002766767932056903;134,0.00022893141027662998;135,0.00019270652619625904;136,0.00017822889395325366;137,0.00017176016465318743;138,0.00014268168627574681;139,0.0001193942607955083;140,0.00009179434911522571;141,0.00006382479576065357;142,0.00003462310349178311;143,0.000011828533577263983;144,0.0000024026708828817464;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000011127015325015666;28,0.00000033381045975046994;29,0.0000007232559961260183;30,0.00000005563507662507834;31,0.00000038944553637554835;32,0;33,0.0000007788910727510967;34,0.0000006676209195009402;35,0.0000016690522987523501;36,0.00000166905229875235;37,0.0000028373889078789947;38,0.0000024479433715034465;39,0.0000020028627585028192;40,0.0000022810381416282113;41,0.0000034493747507548563;42,0.000003226834444254543;43,0.000003115564291004386;44,0.000002169767988378055;45,0.000004506441206631345;46,0.00000567477781575799;47,0.000005730412892383067;48,0.00000567477781575799;49,0.0000062311285820087745;50,0.000004228265823505953;51,0.000002726118754628838;52,0.000003226834444254543;53,0.000006787479348259556;54,0.000005674777815757989;55,0.000005619142739132912;56,0.0000028373889078789947;57,0.0000021141329117529766;58,0.000004395171053381188;59,0.000005674777815757989;60,0.000006231128582008773;61,0.00000600858827550846;62,0.000005841683045633225;63,0.000005897318122258304;64,0.000011238285478265823;65,0.0008311324097020452;66,0.001587991992109611;67,0.0023352267062610376;68,0.0030679406654133194;69,0.0037864676800262063;70,0.004447356755255511;71,0.005013610565145559;72,0.005626876014783799;73,0.005493741276419984;74,0.005364612263573178;75,0.005249280749729391;76,0.005070413978379764;77,0.004874300333276363;78,0.004789846286959494;79,0.004805479743491142;80,0.004793406931863499;81,0.004637962527773031;82,0.0044607091736455304;83,0.004278281757391899;84,0.004137024297840825;85,0.004039941089130063;86,0.003926334262661653;87,0.0038011553402552273;88,0.0036568935865663992;89,0.0035300456118612204;90,0.0034327398628439584;91,0.003296155749729391;92,0.003129194884777531;93,0.0030286623013160143;94,0.0029514408149604056;95,0.002832771196519114;96,0.0026636405635788755;97,0.0025285585975331855;98,0.0023689415626958355;99,0.0022161120072067457;100,0.0020967747678459527;101,0.0020274534623711043;102,0.0018554854405229875;103,0.0017227401476955506;104,0.0016395100730644332;105,0.0015677408242180824;106,0.0014051751303196035;107,0.0012715953113427905;108,0.001149086872614368;109,0.0010740351542471373;110,0.0009598719770124764;111,0.0007615885639206974;112,0.000637856153506523;113,0.0005224133695094856;114,0.00042043427405571694;115,0.000338761981570102;116,0.00024868879251410014;117,0.0001642903812738563;118,0.00008356388509086765;119,0.00003371485643479747;120,0.000007900180880761123;121,0.00000027817538312539153;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000006119858428758615;46,0.000004395171053381188;47,0.000013129878083518488;48,0.00002119696419415484;49,0.00002970913091779183;50,0.00003911145886743007;51,0.00004962648834956988;52,0.00005758230430695608;53,0.00006436978365521564;54,0.00007327139591522817;55,0.00008773651583774853;56,0.0000980846400900131;57,0.00010370378282914601;58,0.00011115888309690651;59,0.00011666675568278926;60,0.00012679233962855355;61,0.0001304642546858087;62,0.00014220325585370024;63,0.0001435384976927021;64,0.0001533302711787159;65,0.00013875388110294536;66,0.00012790504116105508;67,0.00011739001167891528;68,0.00009419018472625762;69,0.00006904313009172221;70,0.00004940394804306955;71,0.000026871742009912834;72,0.00000011127015325015666;73,0.0000003894455363755483;74,0.00000011127015325015665;75,0.0000004450806130006266;76,0.00000011127015325015669;77,0.0000007232559961260185;78,0.0000006119858428758616;79,0.0000005563507662507835;80,0.00000044508061300062676;81,0.00000016690522987523502;82,0.00000044508061300062676;83,0.00000038944553637554835;84,0.00000044508061300062666;85,0.0000003894455363755483;86,0.0000006119858428758616;87,0.0000002781753831253917;88,0.00000033381045975047;89,0.000000055635076625078326;90,0.000000500715689625705;91,0.00000016690522987523502;92,0;93,0.00000005563507662507833;94,0.00000016690522987523497;95,0.00000005563507662507834;96,0;97,0.00000005563507662507831;98,0;99,0;100,0.00000011127015325015665;101,0.000000055635076625078326;102,0;103,0;104,0.00000005563507662507834;105,0;106,0;107,0;108,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0.00000027817538312539153;17,0.00000033381045975046994;18,0.00000033381045975046994;19,0.0000005007156896257048;20,0.00000033381045975046994;21,0;22,0.00000033381045975046994;23,0.00000033381045975046994;24,0.0000005007156896257049;25,0.0000010014313792514098;26,0.0000008901612260012531;27,0.000000834526149376175;28,0.0000007788910727510966;29,0.00000033381045975047;30,0.0000003894455363755484;31,0.0000006676209195009401;32,0.000001223971685751723;33,0.000001947227681877742;34,0.000001390876915626958;35,0.0000012239716857517233;36,0.0000009457963026263318;37,0.000000500715689625705;38,0.0000005563507662507834;39,0.0000005563507662507834;40,0.00000066762091950094;41,0.00000033381045975047;42,0.00000011127015325015666;43,0;44,0;45,0;46,0;47,0;48,0.00000011127015325015665;49,0.000000055635076625078326;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.00000016690522987523497;64,0.00000005563507662507835;65,0.0001573916317723466;66,0.0003228503496553296;67,0.000455929452942517;68,0.0006053652687574773;69,0.0007292645844015268;70,0.0008560569240300802;71,0.0009738363812453713;72,0.001071587210875634;73,0.001056843915569988;74,0.0010300278086367001;75,0.0010037680524696633;76,0.0009683841437361136;77,0.0009504696490628382;78,0.0009280487131829317;79,0.0008960585441235116;80,0.0008613422563094628;81,0.0008413136287244345;82,0.0008045944781518829;83,0.0007778340062952201;84,0.0007420606520252948;85,0.0007386112772745399;86,0.0007075669045177463;87,0.0006612785207656812;88,0.0006569389847889249;89,0.0006142112459408648;90,0.0005822210768814447;91,0.0005452793860023927;92,0.0005236373411952372;93,0.0004908126459864411;94,0.0004604358941491483;95,0.000437458607502991;96,0.00043423177305873637;97,0.00042555270110522416;98,0.00041993355836609126;99,0.0004056909787500712;100,0.0004031874003019427;101,0.00039745698740955963;102,0.0003890004557625477;103,0.0003865525123910443;104,0.0003911145886743007;105,0.00038577362131829316;106,0.0003813228151882869;107,0.0003816009905714123;108,0.0003867194176209195;109,0.0003711972312425226;110,0.0003528376559562468;111,0.00031311421124594085;112,0.00030621546174443114;113,0.00029436519042328943;114,0.0002751710889876374;115,0.0002668814625705008;116,0.00024190131316584058;117,0.0002323320799863271;118,0.00023400113228507944;119,0.00023989845040733778;120,0.00024740918575172333;121,0.00022988413661482364;122,0.00022610095140431836;123,0.00022432062895231587;124,0.00021892402651968324;125,0.00020679557981541618;126,0.00018103653933800487;127,0.00009430145487950778;128,0.0000179701297499003;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0.00000005563507662507835;21,0.00000005563507662507835;22,0;23,0;24,0;25,0.00000016690522987523497;26,0.00000033381045975047005;27,0.00000005563507662507833;28,0;29,0.00000011127015325015668;30,0.00000016690522987523502;31,0.00000033381045975047;32,0.0000005563507662507834;33,0.0000003894455363755483;34,0.0000007788910727510966;35,0.0000006119858428758616;36,0.0000011127015325015668;37,0.0000010014313792514098;38,0.0000014465119922520367;39,0.0000011683366091266452;40,0.000001168336609126645;41,0.0000027817538312539165;42,0.0000026148486013786817;43,0.0000018915926052526636;44,0.0000018359575286275853;45,0.000002837388907878995;46,0.0000028930239845040734;47,0.0000020584978351278983;48,0.0000025592135247536034;49,0.0000022254030650031335;50,0.000002225403065003133;51,0.000002169767988378055;52,0.0000017803224520025066;53,0.00000200286275850282;54,0.000003171199367629465;55,0.000003171199367629465;56,0.0000047846165897567365;57,0.000002169767988378055;58,0.0000026148486013786817;59,0.0000031155642910043864;60,0.000003838820287130405;61,0.0000037275501338802484;62,0.0000031155642910043864;63,0.0000032268344442545433;64,0.000007677640574260808;65,0.000583055603030821;66,0.0011320069040904688;67,0.0016809025700734916;68,0.002176221657266564;69,0.0026537931550162366;70,0.0031419353173246737;71,0.003593191423830684;72,0.004041387601122315;73,0.00395632156896257;74,0.0038586263744089327;75,0.003790195230160087;76,0.003666740995129038;77,0.003625014687660229;78,0.0035621470510738907;79,0.0035037858556941836;80,0.0033816112274255112;81,0.003336268639976073;82,0.00329559939896314;83,0.0032248872165726652;84,0.003130641396769783;85,0.0031004871852389907;86,0.0030371744680396514;87,0.0029379771264171368;88,0.0027929921167321827;89,0.0027157149952999485;90,0.0026626947672762492;91,0.0025490323057312143;92,0.0025055813108870277;93,0.0024500018693385745;94,0.002359316694439697;95,0.0022399238200022788;96,0.0021499062660229017;97,0.002101615019512334;98,0.0020013049763573177;99,0.0019135128254429443;100,0.0018433013587420954;101,0.001728915641200934;102,0.0016871336986555004;103,0.0016048494203270095;104,0.0015328576311741582;105,0.001450350812539167;106,0.0013595543674870393;107,0.0013004142810345812;108,0.0012417749102717483;109,0.0011603251580926338;110,0.0010296383631003248;111,0.0008627887683017149;112,0.0007861236327123568;113,0.0007239792521221444;114,0.0006326820913803907;115,0.0005621924492964166;116,0.00048524913832393324;117,0.00041865395160371445;118,0.0003754811321426537;119,0.0003387619815701019;120,0.00028613119908277784;121,0.00024345909531134276;122,0.00020868717242066882;123,0.00016901936278698797;124,0.00013007480914943313;125,0.00008795905614424884;126,0.00005279768771719934;127,0.000019972992508403122;128,0.000002893023984504073;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000002781753831253917;46,0.00002865206446191534;47,0.00007277068022560246;48,0.00011972668489716857;49,0.00017118913077536604;50,0.00021614227268842932;51,0.0002609285093716174;52,0.00030432386913917844;53,0.0003526707507263716;54,0.00040702622058907316;55,0.0004550949267931408;56,0.0005087827757363414;57,0.0005357101528228794;58,0.0005798287685865665;59,0.0006308461338517632;60,0.0006892073292314704;61,0.000741504301259044;62,0.0007775558309120949;63,0.0008144418867145216;64,0.0008346930546060503;65,0.0007673746118897055;66,0.0006800275415883324;67,0.0005969643721870906;68,0.0005093391265025922;69,0.0003973457172563095;70,0.00027199988962000796;71,0.00013385799435993847;72,0.0000016134172221272715;73,0.0000011127015325015668;74,0.000001835957528627585;75,0.00000166905229875235;76,0.0000012796067623768015;77,0.00000133524183900188;78,0.0000016690522987523501;79,0.0000012239716857517233;80,0.0000008901612260012533;81,0.000001057066455876488;82,0.0000007788910727510967;83,0.000000500715689625705;84,0.0000009457963026263318;85,0.0000009457963026263318;86,0.0000008901612260012533;87,0.0000004450806130006267;88,0.000000500715689625705;89,0.00000038944553637554835;90,0.00000011127015325015666;91,0.00000005563507662507834;92,0.00000005563507662507832;93,0.0000002781753831253917;94,0.000000166905229875235;95,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005416631060217627;2,0.000537657380504757;3,0.0005398827835697602;4,0.000531203711616248;5,0.0005299241048538712;6,0.0005365446789722555;7,0.0005254176636472398;8,0.000524805677804364;9,0.0005058341166752122;10,0.000492147887825443;11,0.0004898668496838147;12,0.0004987128268672022;13,0.0004920366176721929;14,0.0005002706090127043;15,0.0004949852767333219;16,0.0005022734717712073;17,0.0004936500348943201;18,0.0004885316078448128;19,0.00047423339315216773;20,0.00047629189098729566;21,0.000460936609838774;22,0.0004555400074061414;23,0.00046577686150515584;24,0.00046177113598815025;25,0.0004593788276932718;26,0.0004590450172335213;27,0.0004473616511422549;28,0.00044669403022275396;29,0.00046165986583490004;30,0.0004706727482481627;31,0.0004962092484190736;32,0.000517628752919729;33,0.0005510654339714009;34,0.0005680341323420497;35,0.0005862268023984504;36,0.0006445323627015326;37,0.0006594981983136785;38,0.0006837550917222126;39,0.0007033386386942403;40,0.0007415599363356691;41,0.0007679865977325813;42,0.0008003662123283769;43,0.0008227315131316584;44,0.0008518842932831994;45,0.000876363726998234;46,0.0009173111433942916;47,0.000938174297128696;48,0.0009645453234489831;49,0.0009799006045975046;50,0.0010069392518372927;51,0.0010375385439810856;52,0.0010625743284623712;53,0.0010736457087107618;54,0.001112979707884692;55,0.001133453416082721;56,0.0011518686264456218;57,0.0011763480601606566;58,0.0012210786617672192;59,0.0012426094364211245;60,0.0012544597077422661;61,0.0012889534552498149;62,0.0013230021221443625;63,0.0013289550753432461;64,0.0012785496959209252;65,0.0011250525195123338;66,0.0009472984496952087;67,0.0007740508210847148;68,0.0006031398656924742;69,0.0004375142425796161;70,0.0002829043646385233;71,0.00013786371987694414;72,0.00000133524183900188;73,0.00000133524183900188;74,0.000001168336609126645;75,0.00000033381045975047;76,0.0000007232559961260183;77,0.0000007232559961260183;78,0.00000044508061300062666;79,0.0000005007156896257049;80,0.0000007232559961260183;81,0.0000007232559961260182;82,0.0000009457963026263316;83,0.0000008345261493761751;84,0.0000002781753831253917;85,0.0000007788910727510967;86,0.00000100143137925141;87,0.0000005563507662507834;88,0.0000008901612260012533;89,0.0000007232559961260181;90,0.00000033381045975046994;91,0.00000005563507662507833;92,0.00000044508061300062666;93,0.000000500715689625705;94,0.00000016690522987523502;95,0;96,0.00000016690522987523497;97,0.00000022254030650031333;98,0.000000166905229875235;99,0.00000022254030650031338;100,0.0000004450806130006267;101,0.00000027817538312539163;102,0.00000038944553637554835;103,0.0000003894455363755483;104,0.00000033381045975047;105,0.00000033381045975046994;106,0.00000011127015325015666;107,0.0000005563507662507833;108,0.00000022254030650031333;109,0.00000033381045975046994;110,0.00000027817538312539174;111,0.00000044508061300062666;112,0.00000022254030650031333;113,0.00000022254030650031336;114,0.0000002781753831253917;115,0.00000033381045975047;116,0.00000027817538312539163;117,0;118,0.00000011127015325015665;119,0.00000016690522987523497;120,0.00000011127015325015665;121,0.000000055635076625078326;122,0.00000011127015325015664;123,0.00000011127015325015665;124,0.00000005563507662507834;125,0.0000005007156896257049;126,0.00000033381045975046994;127,0;128,0.00000005563507662507832;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000003894455363755483;43,0.0000003894455363755484;44,0.00000044508061300062666;45,0.0000006676209195009399;46,0.0000005007156896257049;47,0.0000006119858428758616;48,0.0000008345261493761749;49,0.0000006676209195009399;50,0.0000008345261493761749;51,0.00000038944553637554825;52,0.0000006119858428758616;53,0.0000006119858428758616;54,0.0000006119858428758617;55,0.0000005007156896257049;56,0.0000005563507662507833;57,0.00000066762091950094;58,0.0000007232559961260181;59,0.0000006119858428758616;60,0.0000007788910727510966;61,0.00000038944553637554835;62,0.000000834526149376175;63,0.0000007232559961260183;64,0.000001502147068877115;65,0.00013235584729106133;66,0.00026465605950549764;67,0.0003871644982339201;68,0.0005219126538198598;69,0.0006304010532387626;70,0.0007594744310089445;71,0.0008861555004842477;72,0.0010052701995385404;73,0.0010194571440779354;74,0.0010084970339827948;75,0.0010267453391158206;76,0.0010209592911468125;77,0.0010325313870848288;78,0.0010256882726599442;79,0.001005715280151541;80,0.0010210149262234376;81,0.0010175099163960576;82,0.0010242973957443173;83,0.0010259664480430696;84,0.0010131703804193016;85,0.0010384843402837123;86,0.00104065410827209;87,0.0010147837976414288;88,0.0010032117017034123;89,0.0009948664402096507;90,0.0009910276199225204;91,0.0009949777103629009;92,0.0010120576788868;93,0.0009988165306500313;94,0.0009881345959380163;95,0.0009677165228166125;96,0.0009736694760154958;97,0.0009647122286788583;98,0.0009720560587933685;99,0.0009742258267817468;100,0.0009548648201162194;101,0.0009555880761123454;102,0.0009444610607873298;103,0.0009312755476271862;104,0.0009264909310374295;105,0.000929050144562183;106,0.0009148632000227882;107,0.0009129159723409104;108,0.0008732481627072296;109,0.0008797574666723636;110,0.0008478785677661939;111,0.0007476797947644277;112,0.000730822366547029;113,0.0007074556343644961;114,0.0006686223508801913;115,0.0006262284224918817;116,0.0005889529211530792;117,0.0005808301999658178;118,0.0005654749188172962;119,0.0005753779624565602;120,0.0005640840419016693;121,0.0005650854732809205;122,0.000517851293226229;123,0.0002692737708653791;124,0.000030098576454167382;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000022254030650031336;22,0.00000011127015325015668;23,0;24,0.00000016690522987523497;25,0.000000166905229875235;26,0.00000027817538312539163;27,0.000000055635076625078326;28,0.0000006119858428758616;29,0.0000012796067623768017;30,0.0000017803224520025066;31,0.0000013908769156269582;32,0.0000015577821455021934;33,0.000002781753831253917;34,0.000003059929214379308;35,0.0000036719150572551698;36,0.0000035050098273799346;37,0.000003950090440380562;38,0.000004506441206631345;39,0.000003950090440380562;40,0.000004395171053381188;41,0.0000039500904403805615;42,0.000004840251666381815;43,0.000004895886743006894;44,0.000006843114424884634;45,0.000005563507662507833;46,0.0000052296972027573625;47,0.000004784616589756736;48,0.000005285332279382441;49,0.000005786047969008147;50,0.000005563507662507832;51,0.0000066762091950094;52,0.000008567801800262064;53,0.000005730412892383069;54,0.000004061360593630719;55,0.000004061360593630719;56,0.000007955815957386202;57,0.000006175493505383695;58,0.000005229697202757363;59,0.00000500715689625705;60,0.000005507872585882756;61,0.00000600858827550846;62,0.000005340967356007519;63,0.000003505009827379935;64,0.00000767764057426081;65,0.0007411704907992935;66,0.0014600869509485558;67,0.002100947398592833;68,0.002618687421665812;69,0.0031683619787215857;70,0.0037020692687859623;71,0.004189043094485274;72,0.00458032458838945;73,0.004475396833874551;74,0.00430075832834843;75,0.0040758813486298645;76,0.003955987758502821;77,0.003863355355922064;78,0.0036666297249757875;79,0.0034306257299322046;80,0.0032105890018800202;81,0.003095146217882983;82,0.0029720257933116847;83,0.002871048129237167;84,0.0027080929898023126;85,0.002475760909815986;86,0.002267518818008318;87,0.0021107391720788468;88,0.001916183309120948;89,0.0017536176152224692;90,0.0015922758930097417;91,0.0014277629714293852;92,0.0012357106869196148;93,0.001056955185723238;94,0.0008957803687403863;95,0.0007241461573520196;96,0.000549006936136273;97,0.0003781516158206574;98,0.00022098252435481116;99,0.00009775082963026265;100,0.00003093310260354356;101,0.0000013352418390018798;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00017002079416623942;2,0.00022192832065743746;3,0.0002654349505782487;4,0.00031183460448356404;5,0.00035856806884862984;6,0.0004024085092291916;7,0.00044035163148749496;8,0.0004792405500484248;9,0.0005329840340682504;10,0.0005708715212499288;11,0.0006260058821853814;12,0.0007331034046886573;13,0.0008435390317894378;14,0.0009191471009229192;15,0.0009758392440038739;16,0.0010241304905144418;17,0.0010712534004158835;18,0.0011004618156440493;19,0.001152035531675497;20,0.0012091171202928274;21,0.0012805525586794281;22,0.001365952401298923;23,0.0014379998255284;24,0.0014752196917905771;25,0.0014923552953911012;26,0.0014741069902580754;27,0.0014989758695094855;28,0.0015605638993334472;29,0.001648522955477696;30,0.0017150625071212897;31,0.001759403663191477;32,0.001815316915199681;33,0.0018461387476499743;34,0.001897879368911297;35,0.0019428881459009856;36,0.0019579096165897565;37,0.001988119463197174;38,0.0020095946027744544;39,0.002051877261009514;40,0.0021111286176152223;41,0.0021528549250840316;42,0.0022442077209024096;43,0.0023328900330427844;44,0.0023836292229248565;45,0.002429917606676921;46,0.0024752045590497353;47,0.0024845512519227485;48,0.002490615475274882;49,0.0025663348145616134;50,0.0026213579053438155;51,0.0026221924314931925;52,0.0026358230252663357;53,0.0027001928089215527;54,0.002757107492309007;55,0.002774966351905657;56,0.0028535230801002677;57,0.002927962812624622;58,0.002986991628923831;59,0.0030462429855295393;60,0.0030678293952600697;61,0.0031089437168860022;62,0.0031006540904688655;63,0.003034782159744773;64,0.0029834309840198257;65,0.0026628616725061244;66,0.0023449072095938018;67,0.0020080924557055774;68,0.0016445728650373156;69,0.0012669219649062836;70,0.0008267928737252891;71,0.00041715180453483734;72,0.000003838820287130405;73,0.000002781753831253917;74,0.000005229697202757363;75,0.00000433953597675611;76,0.000008122721187261436;77,0.000006342398735258929;78,0.0000031155642910043864;79,0.000005118427049507207;80,0.000005841683045633225;81,0.000005285332279382442;82,0.000007176924884635104;83,0.0000071212898080100265;84,0.00000500715689625705;85,0.0000026704836780037595;86,0.000005841683045633226;87,0.000008512166723636986;88,0.000005786047969008146;89,0.000007622005497635731;90,0.00000973613840938871;91,0.00000834526149376175;92,0.00000634239873525893;93,0.000008122721187261438;94,0.000006064223352133538;95,0.00000600858827550846;96,0.00000467334643650658;97,0.000006787479348259558;98,0.000009903043639263945;99,0.00000600858827550846;100,0.000003171199367629465;101,0.0000045620762832564235;102,0.00000500715689625705;103,0.0000043395359767561105;104,0.000004061360593630718;105,0.000006064223352133539;106,0.000005118427049507207;107,0.0000025035784481285256;108,0.0000017246873753774286;109,0.000002225403065003133;110,0.000003171199367629465;111,0.0000045620762832564235;112,0.0000023366732182532896;113,0.00000133524183900188;114,0.0000023366732182532896;115,0.000002447943371503447;116,0.000005229697202757363;117,0.0000033937396741297785;118,0.0000013908769156269584;119,0.0000013352418390018802;120,0.0000018915926052526631;121,0.000002893023984504073;122,0.0000020028627585028196;123,0.0000026704836780037595;124,0.00000433953597675611;125,0.000004228265823505953;126,0.0000041726307468808745;127,0.000002726118754628838;128,0.0000007232559961260183;129,0.0000014465119922520367;130,0.0000020584978351278983;131,0.0000018915926052526631;132,0.0000009457963026263318;133,0.0000006119858428758617;134,0.00000044508061300062676;135,0.0000007232559961260183;136,0.0000006119858428758616;137,0.0000006676209195009399;138,0.0000011127015325015668;139,0.0000002781753831253917;140,0.000000055635076625078345;141,0.000000166905229875235;142,0.0000005007156896257049;143,0.00000011127015325015665;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.0000005563507662507834;157,0.0000002781753831253917;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000011127015325015665;24,0.000000055635076625078326;25,0.000000166905229875235;26,0;27,0.00000016690522987523497;28,0.00000016690522987523497;29,0.00000027817538312539163;30,0.0000007788910727510967;31,0.0000003894455363755483;32,0.00000044508061300062666;33,0.000000166905229875235;34,0.00000033381045975047;35,0.0000005563507662507834;36,0.0000007232559961260183;37,0.0000006676209195009401;38,0.0000006676209195009401;39,0.0000008345261493761751;40,0.000001168336609126645;41,0.0000005007156896257049;42,0.0000005563507662507834;43,0.00000100143137925141;44,0.0000012796067623768017;45,0.0000012239716857517235;46,0.0000016134172221272717;47,0.00000100143137925141;48,0.0000013352418390018802;49,0.0000012796067623768015;50,0.0000007788910727510966;51,0.0000005563507662507834;52,0.0000006676209195009401;53,0.0000007788910727510967;54,0.00000066762091950094;55,0.0000006119858428758616;56,0.0000003894455363755483;57,0.0000008901612260012533;58,0.000000500715689625705;59,0.0000003894455363755483;60,0.00000027817538312539163;61,0.000000055635076625078326;62,0.00000027817538312539163;63,0.000000055635076625078326;64,0.00000027817538312539163;65,0.00003327846880251951;66,0.00006003024767845952;67,0.00008465572346963481;68,0.00010144013064896314;69,0.00011292703537589728;70,0.00012390453143248305;71,0.0001342091907811343;72,0.00012573527317267703;73,0.00010298574262145359;74,0.00008947511198228223;75,0.00007416155714122942;76,0.00006095518082735145;77,0.00004478623668318806;78,0.00002470197402153478;79,0.000010793204865265197;80,0.0000020584978351278983;81,0;82,0;83,0;84,0;85,0.0000002225403065003133;86,0.0000006676209195009399;87,0.0000007232559961260183;88,0.0000007232559961260183;89,0.0000005563507662507833;90,0.00000011127015325015668;91,0.00000022254030650031336;92,0.00000033381045975047005;93,0.00000033381045975047005;94,0.00000033381045975047005;95,0.00000011127015325015668;96,0;97,0.000000055635076625078326;98,0.00000033381045975047;99,0.00000011127015325015665;100,0.00000027817538312539163;101,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0006357420205947702;2,0.0006415837036404034;3,0.0006411942581040277;4,0.0006234466686606279;5,0.0006237248440437532;6,0.000617215540078619;7,0.0005971869124935909;8,0.0005892310965362046;9,0.0005967974669572153;10,0.0006081470225887312;11,0.0006375223430467726;12,0.0006854797790975901;13,0.0007385000071212899;14,0.0007517967904346835;15,0.0007582504593231926;16,0.0007492375769099298;17,0.0007433402587876717;18,0.0007329921345354069;19,0.000725203223807896;20,0.0007316568926964052;21,0.0007462332827721757;22,0.0007239792521221444;23,0.0007111275494217512;24,0.0006902643956873469;25,0.0006894855046145959;26,0.0007091246866632485;27,0.00070311609838774;28,0.0006828092954195864;29,0.000675465465305076;30,0.0006786366646727056;31,0.00068536850894434;32,0.0006850346984845896;33,0.0006750203846920754;34,0.00067824721913633;35,0.0006786366646727056;36,0.0006671202038113143;37,0.0006781915840597049;38,0.0006749091145388253;39,0.0006582742266279269;40,0.0006436978365521563;41,0.0006549917571070473;42,0.0006510416666666665;43,0.0006731844271634479;44,0.0006741302234660741;45,0.0006695125121061927;46,0.000656382634022674;47,0.0006520987331225432;48,0.0006556593780265482;49,0.000670458308408819;50,0.0006714597397880704;51,0.0006618905066085569;52,0.000659832008773429;53,0.0006602214543098046;54,0.0006525994488121689;55,0.0006553255675667977;56,0.0006514867472796673;57,0.0006480373725289124;58,0.000649150074061414;59,0.0006528776241952943;60,0.0006620574118384322;61,0.0006500402352874152;62,0.0005670327009627983;63,0.00045509492679314073;64,0.0003519474947302455;65,0.00024546195806984567;66,0.00021124638594542246;67,0.00017291381815074346;68,0.0001409792841679485;69,0.00010654117173702501;70,0.00006971075101122315;71,0.00003204580413604512;72,0.00000044508061300062655;73,0.0000005563507662507834;74,0.00000044508061300062666;75,0.0000002781753831253916;76,0.0000002781753831253918;77,0.0000002781753831253917;78,0.0000004450806130006267;79,0.000000500715689625705;80,0.0000005007156896257049;81,0.0000007232559961260183;82,0.000000834526149376175;83,0.0000008901612260012533;84,0.0000007232559961260183;85,0.00000044508061300062666;86,0.0000003894455363755484;87,0.000000166905229875235;88,0.0000002781753831253917;89,0.00000022254030650031338;90,0.000000166905229875235;91,0.00000033381045975047;92,0.00000044508061300062666;93,0.0000003894455363755483;94,0.00000016690522987523502;95,0.00000033381045975047005;96,0.0000003894455363755483;97,0.00000038944553637554825;98,0.0000003894455363755483;99,0.0000006119858428758616;100,0.00000033381045975047;101,0.00000016690522987523502;102,0.00000011127015325015669;103,0.000000055635076625078345;104,0.000000166905229875235;105,0.00000033381045975047;106,0.000000055635076625078345;107,0.0000002781753831253917;108,0.0000006119858428758616;109,0.0000007232559961260183;110,0.000000055635076625078326;111,0.0000001112701532501567;112,0.00000016690522987523508;113,0.00000005563507662507835;114,0.0000002781753831253917;115,0.00000022254030650031338;116,0.00000022254030650031333;117,0.00000022254030650031333;118,0.00000022254030650031333;119,0.00000033381045975047;120,0.000000500715689625705;121,0.0000005563507662507834;122,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00006336835227596421;2,0.00005902881629920811;3,0.00005941826183558366;4,0.00006197747536033727;5,0.00005824992522645702;6,0.00005919572152908335;7,0.00006119858428758616;8,0.0000621443805902125;9,0.00005841683045633226;10,0.00005769357446020623;11,0.00006208874551358742;12,0.00006676209195009399;13,0.00007521862359710589;14,0.00006993329131772347;15,0.00007766656696860935;16,0.00006882058978522189;17,0.00007633132512960747;18,0.0000706009122372244;19,0.00007199178915285137;20,0.0000688205897852219;21,0.00007277068022560246;22,0.00007232559961260184;23,0.00006648391656696861;24,0.0000693213054748476;25,0.00007093472269697486;26,0.00006926567039822253;27,0.00006759661809947019;28,0.00006781915840597049;29,0.00006915440024497237;30,0.00006659518672021876;31,0.00006681772702671908;32,0.00006581629564746767;33,0.00006609447103059305;34,0.00006431414857859055;35,0.00006459232396171594;36,0.00006926567039822253;37,0.00006553812026434228;38,0.000069599480857973;39,0.00006793042855922064;40,0.00006509303965134165;41,0.000066762091950094;42,0.00006169929997721187;43,0.00006993329131772347;44,0.00006882058978522189;45,0.00007193615407622629;46,0.0000680416987124708;47,0.00006592756580071782;48,0.00006336835227596423;49,0.0000649817694980915;50,0.00006815296886572098;51,0.00006837550917222127;52,0.00006481486426821626;53,0.00006275636643308836;54,0.00006325708212271406;55,0.00006403597319546517;56,0.00006309017689283883;57,0.00006587193072409275;58,0.00006464795903834102;59,0.00006169929997721187;60,0.00006097604398108584;61,0.00006398033811884008;62,0.00006320144704608898;63,0.00006236692089671281;64,0.00005997461260183444;65,0.000027428092776163616;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004333972469093602;2,0.0005298684697772461;3,0.0006367990870506466;4,0.0007682091380390816;5,0.0008950571127442602;6,0.0010111675176607987;7,0.001122771481370706;8,0.0012177961922463397;9,0.0012610802818606506;10,0.0013420849534267645;11,0.0015478234667863045;12,0.0018576552085113657;13,0.0021477921331111488;14,0.0022875474455933457;15,0.002397649262234376;16,0.0025562092306158496;17,0.002698301216316299;18,0.002817137739987466;19,0.002943318093773144;20,0.003108776811656127;21,0.0032741242593858602;22,0.003460056685466872;23,0.0035222010660570843;24,0.0035786706688315387;25,0.0036341944753033673;26,0.003721708450834615;27,0.0038075533740671106;28,0.003932787931550163;29,0.004113991376118042;30,0.004242118957585598;31,0.0042900763936364154;32,0.004357005390816385;33,0.004461376794565031;34,0.004596458760610721;35,0.004677630337406712;36,0.004785061670369737;37,0.00486834738007748;38,0.005026962983535578;39,0.005165995040021649;40,0.0053521500064091605;41,0.005513491728621887;42,0.00559644362786988;43,0.005676558138209993;44,0.005778592868740386;45,0.005993177359283314;46,0.006071066466558423;47,0.006121805656440495;48,0.0062464838631572945;49,0.0064712495727226125;50,0.006585190209650772;51,0.006648892372386486;52,0.006782527826439925;53,0.006945928046487779;54,0.007085738994046601;55,0.007151388384464194;56,0.00719528445992138;57,0.007210139025380277;58,0.007319016870335555;59,0.007327640307212442;60,0.007200458522047514;61,0.007118674959408648;62,0.0070505776256195515;63,0.006902643956873469;64,0.006653510083746369;65,0.005673331303765738;66,0.004731763266962912;67,0.0038156760952543726;68,0.0029809274055716973;69,0.002194024881786589;70,0.0014368871239958982;71,0.0007102373881957501;72,0.000010626299635389962;73,0.000010515029482139805;74,0.000007844545804136045;75,0.0000079558159573862;76,0.00000801145103401128;77,0.000010181219022389334;78,0.00000940232794963824;79,0.00000500715689625705;80,0.000005452237509257676;81,0.000006398033811884008;82,0.000008512166723636984;83,0.000009235422719763001;84,0.000005786047969008147;85,0.000006731844271634478;86,0.000008178356263886514;87,0.000008289626417136673;88,0.00000834526149376175;89,0.000004617711359881502;90,0.000004283900900131031;91,0.000006564939041759243;92,0.000006453668888509086;93,0.000005507872585882756;94,0.0000034493747507548568;95,0.0000030599292143793086;96,0.000001947227681877742;97,0.0000018915926052526633;98,0.00000200286275850282;99,0.000003838820287130405;100,0.000005507872585882755;101,0.0000031711993676294655;102,0.000002169767988378055;103,0.0000024479433715034465;104,0.0000016690522987523501;105,0.0000016690522987523501;106,0.00000133524183900188;107,0.0000018359575286275849;108,0.0000018359575286275849;109,0.00000038944553637554835;110,0.0000006119858428758615;111,0.0000023923082948783683;112,0.0000022810381416282118;113,0.0000014465119922520363;114,0.0000006119858428758615;115,0.00000033381045975046994;116,0.00000011127015325015664;117,0.0000005563507662507832;118,0.0000006676209195009399;119,0.00000005563507662507832;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000005563507662507833;47,0.0000006119858428758617;48,0.00000033381045975047;49,0.00000044508061300062666;50,0.0000009457963026263316;51,0.0000010570664558764883;52,0.0000007788910727510967;53,0.000000500715689625705;54,0.0000007788910727510966;55,0.0000008345261493761751;56,0.0000007788910727510967;57,0.0000007232559961260182;58,0.0000007788910727510965;59,0.0000006676209195009399;60,0.0000004450806130006266;61,0.0000007232559961260182;62,0.0000005563507662507833;63,0.00000100143137925141;64,0.0000015577821455021934;65,0.00012323169472454852;66,0.0002446274319204694;67,0.00036218434882925995;68,0.00047300942146641595;69,0.0005813309156554434;70,0.0007145769241725061;71,0.0008196159488406539;72,0.0009732800304791203;73,0.0009717778834102432;74,0.0009580360194838489;75,0.0009443497906340795;76,0.000936171434370193;77,0.0009529175924343417;78,0.000959593801629351;79,0.0009507478244459636;80,0.0009438490749444539;81,0.0009450730466302055;82,0.000943793439867829;83,0.0009620973800774797;84,0.0009496907579900871;85,0.0009504140139862131;86,0.0009621530151541046;87,0.0009338347611519398;88,0.0009307748319375605;89,0.000939565174044323;90,0.0009422356577223267;91,0.0009368390552896939;92,0.0009298846707115594;93,0.0009345023820714407;94,0.0009284381587193072;95,0.000909744772973281;96,0.0009129716074175354;97,0.00091258216188116;98,0.0009001199047171424;99,0.000882038504813992;100,0.0008790342106762376;101,0.0008708002193357261;102,0.0008020908997037543;103,0.00044246576439924796;104,0.00006581629564746767;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.0000003894455363755483;23,0;24,0;25,0;26,0;27,0;28,0.00000016690522987523497;29,0;30,0;31,0.00000033381045975047005;32,0.00000044508061300062666;33,0.00000016690522987523497;34,0.0000007232559961260182;35,0.0000011127015325015668;36,0.000002225403065003134;37,0.0000015577821455021936;38,0.0000009457963026263315;39,0.000000834526149376175;40,0.0000013908769156269584;41,0.0000017803224520025066;42,0.0000013352418390018802;43,0.0000002781753831253917;44,0.0000006676209195009401;45,0.0000011127015325015665;46,0.000001168336609126645;47,0.0000012239716857517233;48,0.0000023923082948783683;49,0.0000013908769156269582;50,0.0000018359575286275853;51,0.000002726118754628838;52,0.0000018359575286275855;53,0.0000016134172221272719;54,0.0000018359575286275853;55,0.00000233667321825329;56,0.0000020584978351278983;57,0.000001279606762376802;58,0.0000025035784481285243;59,0.000002114132911752976;60,0.0000016134172221272717;61,0.0000012239716857517233;62,0.0000012796067623768015;63,0.0000020028627585028196;64,0.000003616279980630092;65,0.0002442379863840939;66,0.0004696156817922862;67,0.0006965511593459808;68,0.0008946676672078848;69,0.001086719951717655;70,0.0012440003133367516;71,0.0013844232467384494;72,0.0015331358065572836;73,0.001455357969435424;74,0.0013960509777530905;75,0.0013156026569532274;76,0.0012795511273001768;77,0.0012331514733948613;78,0.0011787960035321598;79,0.0011461382135532386;80,0.001112312086965191;81,0.0010444929285592206;82,0.0009573683985643479;83,0.0009162540769384151;84,0.000879312386059363;85,0.0008157771285535237;86,0.0007618667393038227;87,0.0007154670853985074;88,0.0006586080370876773;89,0.0005788273372073151;90,0.0005268641756394918;91,0.0004773489574431721;92,0.00041570529254258525;93,0.00033609149789209816;94,0.0002909714507491597;95,0.00025714532416111203;96,0.0002056828782829146;97,0.00013853134079644505;98,0.00006909876516834728;99,0.000026760471856662678;100,0.0000071212898080100265;101,0.0000007232559961260185;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0002761168852902637;30,0.0014957490350652309;31,0.0027059232218139347;32,0.0029343608464365064;33,0.0029356960882755087;34,0.00294042506978864;35,0.0029246247080271176;36,0.0029230112908049904;37,0.00291894993021136;38,0.0029001452743120833;39,0.002851520217341765;40,0.00284795957243776;41,0.002887683017148066;42,0.0028796159310374297;43,0.0028593647631459007;44,0.002832270480829488;45,0.002859921113912152;46,0.0028926345389676976;47,0.0029173921480658573;48,0.0028733291673787957;49,0.002875944015980174;50,0.002841617173702501;51,0.002795495695180311;52,0.002801003567766194;53,0.002821143465504472;54,0.002831714130063237;55,0.0028058994545092004;56,0.0027874286090696747;57,0.0028068452508118276;58,0.0028156912279952142;59,0.0028084030329573293;60,0.0028056769142027005;61,0.002809293194183331;62,0.002801337378225944;63,0.002733852030279724;64,0.00268472625761978;65,0.0023776206346493474;66,0.0020332395103401127;67,0.0016763404937902354;68,0.0013448110721813935;69,0.0010013201090981602;70,0.0006652842462826867;71,0.0003362027680453484;72,0.0000035606449040050133;73,0.0000041726307468808745;74,0.000004617711359881502;75,0.0000043395359767561105;76,0.000005285332279382441;77,0.000004951521819631972;78,0.000004061360593630719;79,0.000005340967356007521;80,0.0000051740621261322856;81,0.000006231128582008773;82,0.00000467334643650658;83,0.0000036719150572551698;84,0.000004617711359881501;85,0.00000500715689625705;86,0.000004895886743006893;87,0.000003226834444254543;88,0.0000024479433715034465;89,0.0000030599292143793086;90,0.0000030042941377542303;91,0.0000035606449040050133;92,0.000004784616589756737;93,0.000002726118754628838;94,0.0000031155642910043864;95,0.000002948659061129152;96,0.000003505009827379935;97,0.0000031155642910043864;98,0.0000027817538312539165;99,0.000004562076283256423;100,0.000003783185210505327;101,0.000002726118754628838;102,0.00000433953597675611;103,0.00000433953597675611;104,0.0000033381045975047;105,0.0000048402516663818135;106,0.0000037275501338802493;107,0.000003226834444254543;108,0.00000300429413775423;109,0.0000033937396741297785;110,0.0000026148486013786817;111,0.000003171199367629465;112,0.0000037831852105053263;113,0.0000027261187546288378;114,0.0000029486590611291512;115,0.0000035050098273799346;116,0.0000017246873753774284;117,0.0000017246873753774284;118,0.000002114132911752977;119,0.0000017803224520025066;120,0.0000018359575286275849;121,0.0000027817538312539165;122,0.0000032268344442545433;123,0.0000024479433715034465;124,0.0000022810381416282118;125,0.0000027817538312539165;126,0.000000834526149376175;127,0.0000006119858428758615;128,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.0000073438301145103395;37,0.00005424419970945137;38,0.00012957409345980741;39,0.00020356874537116163;40,0.00029742511963766873;41,0.0003606822017603828;42,0.0004426883047057483;43,0.0005081707898934655;44,0.0005963523863442147;45,0.000686759385859967;46,0.0007866799834786076;47,0.0008745277694696062;48,0.0009308861020908106;49,0.0010011532038682845;50,0.0010911707578476614;51,0.0011583222953341309;52,0.0012176292870164644;53,0.00133874684882926;54,0.0014061209266222298;55,0.0014806719292998348;56,0.0015644027196205776;57,0.0016247667777587876;58,0.0016852421060502478;59,0.001776984347405002;60,0.001887086164046032;61,0.001954571511992252;62,0.001989287799806301;63,0.0020657303950891584;64,0.002114188546829602;65,0.0021807837335498202;66,0.0022437070052127844;67,0.002320093965419017;68,0.002363656230416453;69,0.002427024582692417;70,0.0025074729034922803;71,0.0025718426871474956;72,0.002635656120036461;73,0.002641163992622344;74,0.0025702292699253688;75,0.0024589591166752126;76,0.002399040139150003;77,0.002338008460092292;78,0.00221255136230274;79,0.002174163159431436;80,0.002129265652594998;81,0.002076690505184299;82,0.0019434444966672363;83,0.0018541501986839857;84,0.0017763167264855009;85,0.0017264676978294312;86,0.0016366170490799293;87,0.0016026240172620065;88,0.001520117198627015;89,0.0014072336281547315;90,0.0013336840568563776;91,0.001251511048681137;92,0.0011862511037999202;93,0.0011017970574830512;94,0.0010257439077365693;95,0.0009607621382384777;96,0.0008773651583774853;97,0.00081672292485615;98,0.0007247581431948954;99,0.0006337947929128925;100,0.0005850584657893236;101,0.0004899781198370649;102,0.0004259421466415997;103,0.00035984767561100665;104,0.0002878558864581553;105,0.0002262678566341936;106,0.0001635114902011052;107,0.00009435708995613284;108,0.00003532827365692474;109,0.000005229697202757363;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005890196832450293;2,0.005661759207827723;3,0.005506704249273628;4,0.005322941591180994;5,0.005176176259044039;6,0.005003262440893294;7,0.004853381544465334;8,0.004631953939497523;9,0.004436674820543497;10,0.004269157604825386;11,0.0040743235664843615;12,0.003937350007833419;13,0.0037674404838204294;14,0.003640703779268501;15,0.0035109627805788184;16,0.003314626595168917;17,0.0031472206496040564;18,0.002988159965532957;19,0.002839503040790748;20,0.002658243961146243;21,0.00253189670213069;22,0.002367940131316584;23,0.0021950263131658406;24,0.0020596661717370247;25,0.0018649434035492509;26,0.001706884150857403;27,0.001588770883182362;28,0.001439557607673902;29,0.0012830561371275566;30,0.0011545947452002506;31,0.0010296939981769499;32,0.0009595938016293511;33,0.0009469090041588331;34,0.0009449617764769555;35,0.0009414567666495757;36,0.0009304410214778101;37,0.0009249887839685524;38,0.0009083538960576538;39,0.0009178674941605423;40,0.0009187576553865435;41,0.0009223183002905486;42,0.0009274367273400558;43,0.000931776263316812;44,0.0009228746510567994;45,0.0009008987957898934;46,0.000929717765481684;47,0.0009220957599840483;48,0.0009149188350994133;49,0.0009337234909986896;50,0.0009298290356349342;51,0.0009200928972255456;52,0.0009193140061527945;53,0.0009317762633168119;54,0.0009301072110180596;55,0.0009426807383353273;56,0.0009209830584515468;57,0.0009165878873981655;58,0.000914084308950037;59,0.0009217063144476728;60,0.0009177005889306671;61,0.0009035692794678973;62,0.0008879358229362502;63,0.000893443695522133;64,0.0008749172150059819;65,0.000766261910357204;66,0.0006642271798268102;67,0.000554737349028656;68,0.0004348993939782373;69,0.0003284694923944624;70,0.00021096821056229705;71,0.00010999054648777986;72,0.0000007788910727510968;73,0.0000014465119922520371;74,0.0000015577821455021932;75,0.0000010570664558764883;76,0.0000010014313792514098;77,0.0000008901612260012533;78,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.00000037052961032302166;43,0.000005557944154845323;44,0.000006299003375491368;45,0.00000037052961032302166;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.000000584116094468892;54,0;55,0.0000003315931197400502;56,0.00000019370471782420939;57,0.0000022103467179712823;58,0.000000584116094468892;59,0.000002661790697281092;60,0.000000584116094468892;61,0.00000020842290580669966;62,0.0000005368089455862244;63,0.0000002907668507391073;64,0;65,0;66,0;67,0;68,0.0000012186903849996328;69,0;70,0.0000005719981315515866;71,0.0000022879925262063463;72,0.000004003986920861106;73,0.0000017159943946547598;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00000014256488385176318;82,0.00000014256488385176318;83,0;84,0.0000011439962631031731;85,0.0000005719981315515866;86,0.0000007145630154033498;87,0;88,0;89,0.00000037052961032302166;90,0;91,0.0000003598894019184755;92,0.00000037052961032302166;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "draconicevolution:deepslate_draconium_ore", + "distrib": "0,0;1,0.00010626299635389962;2,0.00010192346037714352;3,0.00009597050717826014;4,0.00009485780564575856;5,0.0000990860714692645;6,0.0001032587022161454;7,0.00009713884378738678;8,0.0000867907195351222;9,0.0000870688949182476;10,0.00009663812809776107;11,0.00010336997236939555;12,0.00010403759328889648;13,0.00011505333846066197;14,0.00010876657480202814;15,0.000057081588617330365;16,0.000010125583945764256;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.002463020477268843;2,0.0023912512284224923;3,0.002359984315359198;4,0.0023226531789437704;5,0.002284988232068592;6,0.002230799667435766;7,0.0021648721016350484;8,0.002131602325813251;9,0.002132659392269128;10,0.002083199809149433;11,0.0020472039145730076;12,0.002017383513501965;13,0.0020078699153990775;14,0.001970316238677149;15,0.001953180635076625;16,0.0019233602340055832;17,0.0018749020822651397;18,0.0018405196049108413;19,0.0018227163803908163;20,0.0017881669978066428;21,0.0017658016970033613;22,0.0017463850552612088;23,0.0016800124088474904;24,0.001688858386030878;25,0.0016560336908220817;26,0.0016510821690024497;27,0.0016149193691961487;28,0.0015913857317837407;29,0.001566683757762206;30,0.0015357506551586624;31,0.0015107705057540023;32,0.0014847889249700904;33,0.0014803381188400844;34,0.0014334377492451432;35,0.0014109611782886116;36,0.0013989440017375945;37,0.0013856472184242009;38,0.0013441990863385174;39,0.0013262289565886174;40,0.0013129878083518486;41,0.0012809420042158037;42,0.0012900105217056915;43,0.0012639176707685295;44,0.0012325951226286106;45,0.0012345979853871133;46,0.0012251400223608497;47,0.0011889215874779238;48,0.0011600469827095085;49,0.0011440240806414857;50,0.0011354562788412235;51,0.001106414768842933;52,0.0010750365856263887;53,0.0010637426650714978;54,0.0010515585832906057;55,0.001021404371759813;56,0.001006994886913918;57,0.0009885240414743918;58,0.0009201485323021705;59,0.0006695681471828177;60,0.00040502335783057026;61,0.00033753800988435025;62,0.0003172868419928217;63,0.0002906376402894092;64,0.00026448915427562236;65,0.0002230966572665641;66,0.00017792097504700053;67,0.00013975531248219678;68,0.00009430145487950778;69,0.00006709590240984448;70,0.000040279795476556714;71,0.000017914494673275224;72,0.00000033381045975047;73,0.00000044508061300062666;74,0.00000038944553637554835;75,0.00000011127015325015665;76,0.00000022254030650031333;77,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.0000014343418192403009;112,0.0000005737367276961204;113,0;114,0.00000022254030650031336;115,0.00000033381045975046994;116,0.00000033381045975047;117,0.0000008813839809748436;118,0.0000016168944144163393;119,0.0000005389648048054464;120,0.000001504742364571129;121,0.000002872160830769669;122,0.0000017125172023656926;123,0.0000010083857638295448;124,0.0000016960005389926227;125,0.000000845827024315644;126,0.0000009249331488919273;127,0.000001263047966851861;128,0.0000019922331193990513;129,0.0000014793767903906949;130,0.0000014464277279482957;131,0.000001046466350401804;132,0.0000007406419575713554;133,0.0000009308040605104252;134,0.0000015897319992886967;135,0.0000010987927633452969;136,0.0000026444047358357547;137,0.0000012274488780407905;138,0.00000025035784481285246;139,0.00000005563507662507834;140,0;141,0.00000016690522987523502;142,0.00000016690522987523502;143,0.0000000834526149376175;144,0;145,0;146,0.00000005911226891414572;147,0.0000001773368067424372;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005563507662507835;8,0.00000005563507662507835;9,0;10,0;11,0;12,0;13,0.000000055635076625078326;14,0.000000055635076625078326;15,0;16,0.000000055635076625078306;17,0.000000723255996126018;18,0.0000007788910727510963;19,0.0000011127015325015665;20,0.0000016690522987523497;21,0.0000013352418390018802;22,0.0000013908769156269584;23,0.0000010570664558764885;24,0.0000007232559961260183;25,0.000001168336609126645;26,0.0000008345261493761751;27,0.0000005563507662507833;28,0.0000003894455363755483;29,0.0000007788910727510966;30,0.0000015021470688771152;31,0.000002114132911752977;32,0.000001835957528627585;33,0.0000016134172221272717;34,0.0000013352418390018802;35,0.0000007788910727510967;36,0.0000010570664558764885;37,0.0000008345261493761751;38,0.0000008901612260012535;39,0.0000007788910727510969;40,0.0000008345261493761752;41,0.0000004450806130006267;42,0;43,0.00000016690522987523497;44,0.00000027817538312539163;45,0.0000005007156896257049;46,0.00000033381045975046994;47,0.00000033381045975047;48,0.0000003894455363755483;49,0.0000008345261493761751;50,0.0000008345261493761751;51,0.0000015577821455021934;52,0.0000020584978351278983;53,0.00000133524183900188;54,0.0000011683366091266452;55,0.0000007788910727510968;56,0.0000006676209195009401;57,0.000000500715689625705;58,0.0000007232559961260185;59,0.0000012239716857517233;60,0.000001390876915626958;61,0.0000012796067623768017;62,0.0000008345261493761749;63,0.00000038944553637554835;64,0.0000005563507662507834;65,0.0004755129999145446;66,0.0009813471165897565;67,0.0015191714023243888;68,0.0020699586609126642;69,0.002671930189996012;70,0.0032707305197117297;71,0.0039282258552669055;72,0.004581381654845325;73,0.004714182582749388;74,0.0048266210726086705;75,0.004969603219535122;76,0.005074475338973395;77,0.00522747179969236;78,0.005283329416623938;79,0.005246554630974761;80,0.005164771068335898;81,0.005083766396769782;82,0.0049509654688657204;83,0.004767425351079588;84,0.004601299012277103;85,0.004549780931322281;86,0.004455868921979149;87,0.0042890193271805386;88,0.0041536591857517235;89,0.003983805296815359;90,0.0038549544593516776;91,0.003715143511792856;92,0.0035765009008431607;93,0.003452156504586111;94,0.0033410532565658294;95,0.003222216732894662;96,0.0030666054235743176;97,0.0029465449282173985;98,0.002826317527630604;99,0.002634209608044209;100,0.0025430237174557057;101,0.0024479433715034467;102,0.0022918313464934765;103,0.002144231488207144;104,0.00199924647852219;105,0.0018897566477240357;106,0.0017548415869082208;107,0.0016558667855922065;108,0.001521897521079018;109,0.0014002792435765965;110,0.0012512885083746368;111,0.001041154823961716;112,0.0009060728579160259;113,0.0008014232787842534;114,0.0006793042855922064;115,0.0005695919144875519;116,0.0004817997635731784;117,0.0003933399917393038;118,0.0003368147538882242;119,0.00027155480900700735;120,0.00023366732182532898;121,0.00023082993291745;122,0.00022866016492907191;123,0.00021241472255454906;124,0.00020879844257391895;125,0.0002079639164245428;126,0.0001956129294137754;127,0.00017853296088987634;128,0.00017725335412749956;129,0.00016924190309348827;130,0.0001587268736113485;131,0.0001540535271748419;132,0.00015494368840084316;133,0.00014020039309519742;134,0.00013001917407280805;135,0.00006982202116447331;136,0.000008734707030137299;137,0;138,0;139,0;140,0;141,0.00000233667321825329;142,0.000011905906397766764;143,0.00002753936292941377;144,0.000045064412066313445;145,0.0000636465276590896;146,0.00007872363342448583;147,0.00008528857246624508;148,0.00010209036560701875;149,0.00010821022403577734;150,0.00011110324802028143;151,0.0001327452928274369;152,0.0001365284780379422;153,0.00013341291374693783;154,0.00014031166324844757;155,0.00014364976784595227;156,0.00014086801401469833;157,0.00014109055432119864;158,0.00015193939426308894;159,0.00015127177334358797;160,0.00016262132897510394;161,0.00016467982681023187;162,0.00016523617757648265;163,0.00015655710562297042;164,0.00015021470688771147;165,0.00015210629949296417;166,0.0001603959259101008;167,0.00015060415242408703;168,0.00014359413276932717;169,0.00014231452600695036;170,0.00014548572537457984;171,0.00014159127001082435;172,0.0001330234682105623;173,0.00012729305531817924;174,0.0001239549507206745;175,0.00012100629165954536;176,0.00012835012177405574;177,0.00012345423503104882;178,0.00012189645288554664;179,0.00011010181664103001;180,0.00010698625235002564;181,0.0001022016357602689;182,0.00009580360194838489;183,0.0000931887533470062;184,0.00009196478166125448;185,0.00009691630348088645;186,0.00009391200934313222;187,0.00008534420754287017;188,0.00008695762476499743;189,0.00008367515524411781;190,0.00007416155714122943;191,0.00007727712143223381;192,0.00007338266606847832;193,0.00007121289808010026;194,0.00007299322053210276;195,0.00006459232396171594;196,0.00005964080214208397;197,0.00005685904831083006;198,0.000058249925226457024;199,0.00005702595354070529;200,0.00004951521819631971;201,0.00004717854497806642;202,0.000052018796644448246;203,0.000050627919728821275;204,0.000046288383752065174;205,0.00003838820287130405;206,0.000040502335783057026;207,0.000037664946875178034;208,0.0000351613684270495;209,0.00003532827365692474;210,0.00003193453398279496;211,0.00002970913091779183;212,0.00002436816356178431;213,0.000021697679883780547;214,0.000019583546972027575;215,0.000017970129749900303;216,0.000016189807297897796;217,0.000011961541474391842;218,0.000009291057796388082;219,0.000007399465191135419;220,0.000006398033811884009;221,0.000005507872585882754;222,0.00000634239873525893;223,0.000007232559961260184;224,0.0000056191427391329124;225,0.000004228265823505953;226,0.0000036162799806300915;227,0.000003838820287130406;228,0.000003115564291004387;229,0.0000030599292143793086;230,0.0000030599292143793086;231,0.000002503578448128525;232,0.0000015021470688771152;233,0.000001168336609126645;234,0.0000013908769156269582;235,0.00000166905229875235;236,0.000002948659061129152;237,0.0000022810381416282113;238,0.0000021141329117529766;239,0.0000017803224520025064;240,0.0000017803224520025064;241,0.0000022810381416282113;242,0.0000008345261493761751;243,0.000001168336609126645;244,0.0000021697679883780552;245,0.0000012239716857517235;246,0.0000008345261493761751;247,0.0000008901612260012532;248,0.0000008901612260012532;249,0.0000007788910727510967;250,0.0000005563507662507833;251,0.00000100143137925141;252,0.0000006119858428758617;253,0.0000007232559961260185;254,0.0000017246873753774282;255,0.0000008901612260012532;256,0.00000100143137925141;257,0.000001057066455876488;258,0.0000007788910727510967;259,0.0000017246873753774282;260,0.0000017803224520025064;261,0.0000007788910727510967;262,0.000000166905229875235;263,0.00000027817538312539163;264,0.00000066762091950094;265,0.00000066762091950094;266,0.0000007788910727510966;267,0.000000500715689625705;268,0.00000038944553637554835;269,0.00000066762091950094;270,0.0000004450806130006266;271,0.0000007232559961260182;272,0.0000006119858428758617;273,0.0000008345261493761751;274,0.0000005563507662507834;275,0.0000002781753831253917;276,0.0000004450806130006266;277,0;278,0.00000027817538312539163;279,0.0000004450806130006266;280,0.00000011127015325015665;281,0.00000027817538312539163;282,0.000000166905229875235;283,0.00000011127015325015665;284,0;285,0.0000002225403065003133;286,0.0000004450806130006266;287,0.000000055635076625078326;288,0;289,0;290,0.0000002225403065003133;291,0.000000500715689625705;292,0.0000002225403065003133;293,0.000000166905229875235;294,0.0000002225403065003133;295,0.000000166905229875235;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000033381045975047005;30,0.0000007232559961260183;31,0.0000008901612260012533;32,0.00000033381045975047005;33,0.000000500715689625705;34,0.0000008901612260012533;35,0.0000009457963026263318;36,0.0000009457963026263316;37,0.0000011127015325015665;38,0.0000011127015325015668;39,0.0000009457963026263316;40,0.0000012239716857517233;41,0.0000032268344442545437;42,0.0000023923082948783683;43,0.0000020584978351278983;44,0.0000011127015325015668;45,0.0000018915926052526631;46,0.0000010014313792514102;47,0.0000017246873753774284;48,0.000002503578448128525;49,0.000002781753831253917;50,0.000003393739674129778;51,0.0000018359575286275849;52,0.0000016690522987523501;53,0.0000010570664558764885;54,0.0000022810381416282118;55,0.00000200286275850282;56,0.0000017803224520025066;57,0.0000026704836780037595;58,0.0000022810381416282113;59,0.0000021141329117529766;60,0.0000026704836780037604;61,0.0000023923082948783687;62,0.0000028930239845040734;63,0.00000166905229875235;64,0.000004450806130006267;65,0.00033475625605309633;66,0.0006674540142710648;67,0.0009952558857460264;68,0.0013326269904005011;69,0.001680401854383866;70,0.001983334846607417;71,0.002267185007548567;72,0.0025882550347518943;73,0.002602386344214664;74,0.0026168514641371843;75,0.0026304264228337038;76,0.002654683316242238;77,0.0026345434185039594;78,0.002614403520765681;79,0.002639439305246966;80,0.0026347103237338346;81,0.002653626249786361;82,0.0026590228522189938;83,0.0026289242757648263;84,0.0025883663049051445;85,0.0026051124629692933;86,0.002573456104369623;87,0.002597601727624907;88,0.002578852706802256;89,0.002596322120862531;90,0.002593929812567652;91,0.0025925945707286503;92,0.0025548183537002223;93,0.002576349128354127;94,0.002551146438642967;95,0.0025424673666894545;96,0.0025688383930097414;97,0.002563219250270609;98,0.0025129807760781633;99,0.002451392746254202;100,0.002416231377827152;101,0.002433255711274426;102,0.0024270245826924176;103,0.0024036022154332592;104,0.0023863553416794848;105,0.0023686633873127097;106,0.0023378415548624167;107,0.0022908855501908507;108,0.002287491810516721;109,0.0022830966394633396;110,0.0021495168204865266;111,0.0019342090739474732;112,0.0018530931322281092;113,0.0017742582286503733;114,0.0016997072259727682;115,0.001634224740785051;116,0.0015403127314419188;117,0.0015014794479576142;118,0.0014537445522132969;119,0.001422477639150003;120,0.0013910994559334588;121,0.0014160796053381188;122,0.0014229227197630034;123,0.0013577184099584118;124,0.0012990790391955794;125,0.0013031403997892097;126,0.0011163178124821969;127,0.0005876176793140773;128,0.00010587355081752406;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000012239716857517233;46,0.000011071380248390588;47,0.000026259756167036973;48,0.00004384044038056173;49,0.00006587193072409275;50,0.00008645690907537173;51,0.00010464957913177234;52,0.00012011613043354412;53,0.00014504064476157923;54,0.00016289950435822938;55,0.00017296945322736854;56,0.0001922748248162707;57,0.00021564155699880364;58,0.00022476570956531645;59,0.0002573678644676124;60,0.000263487722896371;61,0.00028284872956189824;62,0.00029992869808579726;63,0.00031661922107332075;64,0.0003333653791374693;65,0.00029926107716629635;66,0.00027222242992650826;67,0.00023110810830057543;68,0.00020089826169315787;69,0.0001537753517917165;70,0.00010709752250327579;71,0.00005463364524582693;72,0.0000010014313792514098;73,0.00000100143137925141;74,0.0000012239716857517233;75,0.0000003894455363755483;76,0.000000500715689625705;77,0.0000007788910727510967;78,0.0000012239716857517235;79,0.0000005563507662507834;80,0.0000007232559961260185;81,0.0000005007156896257049;82,0.0000005007156896257049;83,0.0000010570664558764885;84,0.0000010570664558764885;85,0.000000166905229875235;86,0.0000007788910727510966;87,0.0000013908769156269582;88,0.0000005563507662507834;89,0.0000009457963026263318;90,0.0000010570664558764885;91,0.0000011127015325015668;92,0.0000015577821455021934;93,0.0000005563507662507834;94,0.0000015577821455021932;95,0.000001502147068877115;96,0.0000008345261493761751;97,0.00000100143137925141;98,0.0000009457963026263316;99,0.0000012796067623768015;100,0.0000020584978351278983;101,0.000001835957528627585;102,0.0000012239716857517233;103,0.0000009457963026263316;104,0.000001168336609126645;105,0.0000018915926052526633;106,0.0000011127015325015668;107,0.0000011127015325015665;108,0.0000008901612260012532;109,0.00000100143137925141;110,0.000001502147068877115;111,0.000001057066455876488;112,0.0000014465119922520367;113,0.0000010014313792514098;114,0.00000044508061300062676;115,0.000000500715689625705;116,0.00000027817538312539163;117,0.0000007232559961260181;118,0.0000007232559961260183;119,0.00000033381045975046994;120,0.0000006676209195009399;121,0.0000011127015325015665;122,0.0000012796067623768015;123,0.0000006119858428758617;124,0.00000033381045975047;125,0.00000011127015325015666;126,0.0000003894455363755483;127,0.00000044508061300062666;128,0.0000002225403065003133;129,0.0000002781753831253917;130,0.0000003894455363755483;131,0.0000006676209195009401;132,0.00000016690522987523497;133,0;134,0.0000002781753831253917;135,0.0000004450806130006266;136,0.000000055635076625078326;137,0;138,0;139,0;140,0;141,0.00000011127015325015668;142,0.00000022254030650031336;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.00018977124636814218;2,0.0002296615963083234;3,0.0002738914822252606;4,0.00032863639762433774;5,0.000397735162792685;6,0.00045865557169714577;7,0.0005040537942232097;8,0.0005389369872671338;9,0.0005735976400045577;10,0.0006309574040050134;11,0.0007357738883666609;12,0.0008443735579388139;13,0.0009945326297499002;14,0.0011006287208739248;15,0.0011997704274198141;16,0.0012806081937560532;17,0.001318161870477981;18,0.0013576627748817865;19,0.001418471913632997;20,0.0014959715753717312;21,0.0015330245364040336;22,0.0015591730224178205;23,0.001630664095881046;24,0.0016923633958582577;25,0.0017357031205491938;26,0.001739987021449325;27,0.0018036335491084144;28,0.0019249180161510855;29,0.002000804260667692;30,0.0020182180396513417;31,0.0020971642133823278;32,0.0021760547520366887;33,0.0022343603123397716;34,0.002195248853472341;35,0.002186959227055204;36,0.002292832777872728;37,0.0023746163405115937;38,0.0023832954124651056;39,0.0024402657309291857;40,0.002518544283740671;41,0.002620801554577565;42,0.0026717632847661366;43,0.0027048661553580587;44,0.002772295868227654;45,0.002862814137896656;46,0.002868322010482539;47,0.0029106046687175985;48,0.002946934373753774;49,0.002980371054805446;50,0.0030122499537116165;51,0.0029206189825101126;52,0.0027735754749900303;53,0.002708037354725688;54,0.0026759359155130173;55,0.0026172409096735603;56,0.002537015129180197;57,0.0024817694980914943;58,0.0024220174257961608;59,0.0023085218694810007;60,0.002244986611975161;61,0.0022375315117074005;62,0.002175832211730189;63,0.002055493540990144;64,0.0019497868954024954;65,0.001666826895687347;66,0.0013921565223893352;67,0.0011227158462940809;68,0.000877810238990486;69,0.0006429189454794052;70,0.0004061360593630717;71,0.00019450022788127384;72,0.0000013352418390018802;73,0.0000007232559961260182;74,0.0000016134172221272719;75,0.000003616279980630092;76,0.000004228265823505954;77,0.0000022810381416282118;78,0.0000008345261493761751;79,0.00000038944553637554846;80,0.00000044508061300062676;81,0.0000008345261493761752;82,0.000001502147068877115;83,0.0000017246873753774286;84,0.0000012239716857517235;85,0.0000009457963026263316;86,0.0000017803224520025066;87,0.000002392308294878368;88,0.000001057066455876488;89,0.000000500715689625705;90,0.0000007232559961260182;91,0;92,0.00000022254030650031333;93,0.00000033381045975047;94,0.0000007788910727510967;95,0.000001502147068877115;96,0.0000009457963026263317;97,0.00000005563507662507833;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000022254030650031333;28,0.00000011127015325015665;29,0.0000002225403065003133;30,0.00000005563507662507833;31,0.00000033381045975047;32,0.0000010570664558764883;33,0.0000011683366091266448;34,0.000001168336609126645;35,0.0000018915926052526636;36,0.000000834526149376175;37,0.0000008345261493761751;38,0.0000016690522987523497;39,0.0000015021470688771154;40,0.0000025035784481285256;41,0.0000012239716857517237;42,0.0000021141329117529766;43,0.0000036719150572551698;44,0.0000036719150572551698;45,0.000004283900900131032;46,0.000005174062126132285;47,0.000006286763658633852;48,0.000004840251666381815;49,0.000004562076283256424;50,0.000004283900900131032;51,0.0000045620762832564235;52,0.0000035606449040050133;53,0.0000037831852105053263;54,0.0000047846165897567365;55,0.000004228265823505952;56,0.000004673346436506581;57,0.000004840251666381815;58,0.000006564939041759243;59,0.000005952953198883381;60,0.0000037831852105053267;61,0.00000433953597675611;62,0.000006564939041759242;63,0.00000467334643650658;64,0.000009346692873013158;65,0.0008063191655272603;66,0.0015825397546003533;67,0.0022957814369338574;68,0.0029851000363185776;69,0.0036780905507605537;70,0.0043660182732296465;71,0.005029744737366832;72,0.005516662927989517;73,0.005319158405970489;74,0.00516349146157352;75,0.0050295221970603305;76,0.0049935819375605305;77,0.00498328944838489;78,0.004842810879906569;79,0.004642691509286161;80,0.004504327073719592;81,0.004380594663305417;82,0.0042635940971628775;83,0.004201616621802541;84,0.004099414986042271;85,0.003988701183558366;86,0.003847109913547542;87,0.0037592064924799177;88,0.003645488395858258;89,0.0035080697565943145;90,0.003372876520395374;91,0.003289201365151256;92,0.0031606843381473252;93,0.0030138633709337432;94,0.0028836216565544352;95,0.002746481192673617;96,0.00260628079957842;97,0.0024597936428245887;98,0.0023299970090582805;99,0.0022141091444482426;100,0.002124536671081866;101,0.0019730423574317786;102,0.0018735112053495128;103,0.001825108688685695;104,0.0017118356726770353;105,0.0015568919842761922;106,0.0014153007142653677;107,0.001277715169771549;108,0.0011746233727852788;109,0.0010686941868911295;110,0.0008818715995841167;111,0.0006897636799977212;112,0.0005832781433373213;113,0.0004994917179399533;114,0.00041242282302170565;115,0.00032774623639833647;116,0.00023600399504358226;117,0.0001543317025579673;118,0.00008150538725573976;119,0.00003182326382954481;120,0.000007065654731384949;121,0.0000003894455363755483;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0.00000016690522987523502;4,0.00000016690522987523502;5,0;6,0;7,0.00000033381045975047005;8,0.00000022254030650031336;9,0.0000002781753831253917;10,0.00000044508061300062666;11,0.0000002225403065003133;12,0.0000003894455363755484;13,0.00000038944553637554835;14,0.0000007232559961260182;15,0.0000004450806130006266;16,0.0000008345261493761751;17,0.0000010570664558764883;18,0.0000019472276818777414;19,0.000003059929214379308;20,0.00000400572551700564;21,0.0000041726307468808745;22,0.000004116995670255797;23,0.0000033381045975047003;24,0.0000031155642910043864;25,0.0000036719150572551698;26,0.0000036162799806300915;27,0.000004283900900131032;28,0.000004395171053381188;29,0.000004283900900131032;30,0.0000033381045975047;31,0.000004784616589756737;32,0.0000026704836780037604;33,0.0000017246873753774284;34,0.0000014465119922520365;35,0.000002225403065003133;36,0.00000233667321825329;37,0.000003449374750754856;38,0.000003505009827379935;39,0.0000037275501338802476;40,0.000002559213524753603;41,0.0000013908769156269584;42,0.0000016690522987523501;43,0.0000009457963026263318;44,0.000001835957528627585;45,0.0000015577821455021932;46,0.00000100143137925141;47,0.0000013352418390018802;48,0.000001279606762376802;49,0.0000014465119922520367;50,0.0000017803224520025066;51,0.0000013352418390018802;52,0.0000018915926052526636;53,0.000002948659061129152;54,0.0000027261187546288386;55,0.0000025592135247536034;56,0.000002447943371503447;57,0.000002837388907878995;58,0.000005062791972882129;59,0.0000047289815131316595;60,0.000005118427049507208;61,0.000004283900900131032;62,0.0000025035784481285248;63,0.000003727550133880249;64,0.000003838820287130405;65,0.0000659832008773429;66,0.00015911631914772404;67,0.0002920841522816613;68,0.0004637183636700279;69,0.000656271363869424;70,0.0008648472661368426;71,0.0011417430424998576;72,0.0014258157437475076;73,0.0015592286574944453;74,0.0017460512448014584;75,0.001926698338603088;76,0.0020552153656070186;77,0.002196806635617843;78,0.0023469100723523045;79,0.0024840505362331224;80,0.0025914818691961487;81,0.0027568849520025066;82,0.0029172808779126076;83,0.002998563724861847;84,0.0030861889705463457;85,0.0032170983058451546;86,0.003344280091010084;87,0.0034646743968267534;88,0.0035587533113997606;89,0.003635307176835868;90,0.0037734490720959385;91,0.003979966476528229;92,0.004115938603799919;93,0.004237612516378966;94,0.004306099295704437;95,0.0043639041403178945;96,0.004480014545234432;97,0.004663109582407565;98,0.0047686493227653386;99,0.00483657975132456;100,0.004862728237338347;101,0.004944901245513587;102,0.005014945806984561;103,0.005043709141599725;104,0.005177678406112916;105,0.005308365201105225;106,0.005316766097675611;107,0.005355766286389791;108,0.005490736982282231;109,0.005555051130860822;110,0.005340244100011394;111,0.004882311784310374;112,0.004736603518629295;113,0.004651871296929299;114,0.004589671281262463;115,0.004451028670312766;116,0.0043220665626958355;117,0.004280451525380277;118,0.0042376125163789665;119,0.004197110180595909;120,0.004274164761721643;121,0.00436145619694639;122,0.004377200923631288;123,0.0043172263110294535;124,0.004142420900273457;125,0.004083558989204124;126,0.004001052170569133;127,0.003889170031476101;128,0.0038070526583774853;129,0.003715532957329231;130,0.0035611456196946393;131,0.003438581545889591;132,0.003353904959266222;133,0.0033087849121232835;134,0.0032030226314590095;135,0.003177597401441349;136,0.003121127798666895;137,0.0030244340354925086;138,0.0029578388487722894;139,0.002898086776476956;140,0.002835274774967242;141,0.0028196969535122197;142,0.0027840348693955446;143,0.002721222867885831;144,0.002623193862872443;145,0.0025439138786817065;146,0.002554150732780721;147,0.0024747594784367342;148,0.0024088875477126415;149,0.0024000415705292544;150,0.0022931665883324783;151,0.0021595311342790407;152,0.002022780115934598;153,0.0019396613114567307;154,0.0018733443001196378;155,0.0017836049215233865;156,0.001676006683330485;157,0.0015736937774169658;158,0.001517112904489261;159,0.0015088232780721246;160,0.0014329370335555175;161,0.0013244486341366147;162,0.00122163501253347;163,0.0011700612965020224;164,0.0010990709387284224;165,0.0010358138566057085;166,0.0009925297669913973;167,0.0009009544308665187;168,0.0008429826810231869;169,0.0008166116547028998;170,0.000747179079074802;171,0.0006692899717996924;172,0.0006187176871474961;173,0.0005856148165555745;174,0.0005719842227824303;175,0.0005174618476898535;176,0.00047890673958867435;177,0.0004522019028086366;178,0.00043834876872899216;179,0.00043000350723523047;180,0.00039545412465105684;181,0.0003646879272773885;182,0.0003458276363014869;183,0.00031283603586281547;184,0.00029603424272204177;185,0.00028134658249302113;186,0.0002593707272261152;187,0.00023939773471771207;188,0.00020946606349341994;189,0.0001962249152566513;190,0.00018187106548738107;191,0.0001741377898364952;192,0.00017230183230786757;193,0.00016340022004785506;194,0.00013975531248219675;195,0.00012512328732980116;196,0.00011382936677491027;197,0.00011433008246453597;198,0.00015522186378396854;199,0.00020139897738278355;200,0.00020095389676978292;201,0.00017797661012362558;202,0.00017291381815074346;203,0.0001758624772118726;204,0.0001578923474619723;205,0.00014047856847832283;206,0.00012701487993505386;207,0.00011338428616190965;208,0.00010025440807839115;209,0.00009797336993676294;210,0.00008868231214037486;211,0.00008339697986099243;212,0.00007772220204523442;213,0.0000657606605708426;214,0.00005880627599270779;215,0.00004545385760268899;216,0.00003632970503617615;217,0.00003265778997892098;218,0.00002826261892553979;219,0.000027817538312539165;220,0.000021308234347405003;221,0.00001930537158890218;222,0.000020028627585028198;223,0.00001607853714464764;224,0.000012462257164017549;225,0.000008400896570386828;226,0.000009068517489887767;227,0.000012851702700393095;228,0.000011127015325015668;229,0.000005452237509257676;230,0.000004395171053381188;231,0.000004450806130006267;232,0.0000027261187546288386;233,0.0000023923082948783687;234,0.000002169767988378055;235,0.0000017803224520025064;236,0.0000027817538312539165;237,0.0000028373889078789943;238,0.0000014465119922520365;239,0.0000008901612260012532;240,0.0000017246873753774282;241,0.000002503578448128525;242,0.0000014465119922520365;243,0.000000500715689625705;244,0.0000022810381416282118;245,0.000004061360593630719;246,0.0000027817538312539165;247,0.00000233667321825329;248,0.0000017246873753774284;249,0.000000500715689625705;250,0.0000015577821455021934;251,0.000002559213524753604;252,0.000002726118754628838;253,0.0000015577821455021934;254,0.000000166905229875235;255,0.00000033381045975047;256,0.0000007232559961260182;257,0.0000009457963026263317;258,0.0000007788910727510967;259,0.0000010014313792514098;260,0.0000008901612260012532;261,0.0000014465119922520365;262,0.00000133524183900188;263,0.0000007232559961260185;264,0.0000008345261493761751;265,0.000001057066455876488;266,0.000001279606762376802;267,0.0000005563507662507834;268,0.0000005563507662507834;269,0.0000008901612260012532;270,0.0000007232559961260182;271,0.0000006119858428758617;272,0.00000038944553637554835;273,0.0000009457963026263316;274,0.0000007232559961260182;275,0.00000011127015325015665;276,0.000000055635076625078326;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0;291,0.00000033381045975047;292,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00004272773884806016;2,0.00006047532829146016;3,0.00007416155714122942;4,0.00010181219022389335;5,0.00013102060545205948;6,0.00014910200535520992;7,0.00016295513943485442;8,0.0001645685566569817;9,0.00017580684213524755;10,0.00019093958297726883;11,0.00021708806899105567;12,0.00024746482082834846;13,0.0002716104440836324;14,0.00028969184398678293;15,0.0003039344236028029;16,0.0003357576874323477;17,0.0003768163739816555;18,0.00040802765196832453;19,0.0004198779232894662;20,0.00043200636999373327;21,0.000427555563863727;22,0.00045526183202301596;23,0.00047885110451204927;24,0.0005017727560815815;25,0.0005073362637440893;26,0.0005199654261379822;27,0.0005374348401982567;28,0.0005374348401982567;29,0.0005252507584173646;30,0.0005585761693157865;31,0.0005991341401754685;32,0.0006080357524354812;33,0.0006184395117643708;34,0.0006411942581040278;35,0.0006573284303253006;36,0.0006837550917222128;37,0.0007144656540192559;38,0.0007200291616817637;39,0.0007029491931578647;40,0.0007184713795362616;41,0.0007368309548225374;42,0.0007523531412009343;43,0.0007752191576938414;44,0.000795414690508745;45,0.0008108256067338917;46,0.0008358057561385517;47,0.0008643465504472171;48,0.0008779771442203612;49,0.00088420827280237;50,0.000877865874067111;51,0.0008950014776676351;52,0.0009195921815359199;53,0.0009528619573577165;54,0.0009788435381416281;55,0.0009940319140602748;56,0.0009550873604227199;57,0.000951081634905714;58,0.00098006750982738;59,0.0010224614382156895;60,0.0010446598337890958;61,0.0010553417685011108;62,0.0010483317488463508;63,0.0010621292478493703;64,0.0010614059918532446;65,0.00092320846151655;66,0.000803982492309007;67,0.0006809733378909588;68,0.0005446674001595168;69,0.0004267210377143508;70,0.0002867431849256538;71,0.00014910200535520992;72,0.000002225403065003133;73,0.000001502147068877115;74,0.0000020028627585028196;75,0.000001279606762376802;76,0.0000007788910727510966;77,0.0000009457963026263316;78,0.0000012239716857517233;79,0.00000100143137925141;80,0.0000022810381416282113;81,0.0000028930239845040734;82,0.0000020028627585028196;83,0.0000019472276818777414;84,0.0000022810381416282113;85,0.0000012239716857517235;86,0.00000133524183900188;87,0.0000008901612260012534;88,0.00000100143137925141;89,0.0000016134172221272719;90,0.0000024479433715034465;91,0.0000026148486013786817;92,0.0000025035784481285248;93,0.000001947227681877742;94,0.0000008345261493761751;95,0.000002114132911752977;96,0.000003894455363755484;97,0.0000047289815131316595;98,0.0000014465119922520367;99,0.0000026148486013786817;100,0.000002781753831253917;101,0.0000017246873753774284;102,0.0000014465119922520367;103,0.0000030042941377542307;104,0.0000039500904403805615;105,0.000004562076283256424;106,0.000004172630746880875;107,0.000001947227681877742;108,0.000001168336609126645;109,0.0000017803224520025066;110,0.000003059929214379308;111,0.0000022810381416282118;112,0.0000018915926052526636;113,0.000001947227681877742;114,0.0000014465119922520367;115,0.0000014465119922520365;116,0.00000066762091950094;117,0.0000009457963026263318;118,0.0000012239716857517235;119,0.000001835957528627585;120,0.0000017246873753774286;121,0.0000026704836780037604;122,0.0000011127015325015668;123,0.000001223971685751723;124,0.0000007232559961260183;125,0.0000022254030650031335;126,0.0000007232559961260183;127,0.0000017803224520025066;128,0.0000004450806130006267;129,0.00000027817538312539163;130,0.00000027817538312539163;131,0.0000007232559961260183;132,0.0000010570664558764883;133,0.00000044508061300062666;134,0;135,0;136,0.0000002225403065003133;137,0.00000022254030650031333;138,0.0000003338104597504699;139,0.00000022254030650031322;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005180181984561044;2,0.0005112307191078448;3,0.0005155702550846009;4,0.0007307110963937789;5,0.0007558581510283143;6,0.0007790023429043468;7,0.0007857898222526065;8,0.0007881264954708598;9,0.0008078213125961373;10,0.0008144418867145216;11,0.0008204504749900302;12,0.0007994204160257505;13,0.0008207842854497806;14,0.0008378642539736798;15,0.0008407016428815587;16,0.0008656817922862188;17,0.0008596175689340853;18,0.000867962830427847;19,0.00087708698299436;20,0.0008733037977838546;21,0.0009121370812681592;22,0.0009290501445621832;23,0.0009378404866689455;24,0.0009515823505953397;25,0.000964545323448983;26,0.000977230120919501;27,0.0009918065109952713;28,0.00098718879963539;29,0.0009964242223551528;30,0.0010072730622970431;31,0.0009948664402096507;32,0.0009969805731214038;33,0.0010140049065686775;34,0.0010208480209935623;35,0.0010211261963766877;36,0.0010154514185609297;37,0.001029082012334074;38,0.001082992401583775;39,0.0011636076276135133;40,0.0012376579146014925;41,0.0013339622322395032;42,0.00142397978621888;43,0.0015238447487608956;44,0.0016224857396171595;45,0.0017261338873696805;46,0.001827334091750698;47,0.001891815145559164;48,0.001987062396741298;49,0.0020763566947245484;50,0.002179615396940694;51,0.002317924197430639;52,0.002424131558707913;53,0.0025285585975331855;54,0.002623026957642568;55,0.0027068133830399363;56,0.0028485715582806355;57,0.0027878180546060502;58,0.002888962623910443;59,0.0030337250932888963;60,0.0031373176059647924;61,0.003308951817353159;62,0.0034739098195465156;63,0.003553245438813878;64,0.003705129198000341;65,0.003345837873155586;66,0.002978590732353444;67,0.0025423560965362043;68,0.0020978318343018287;69,0.0015864342099641087;70,0.0010999054648777986;71,0.0005663650800432975;72,0.000004228265823505953;73,0.000005118427049507208;74,0.0000039500904403805615;75,0.000004116995670255797;76,0.000003894455363755484;77,0.000004116995670255797;78,0.000004728981513131659;79,0.0000032824695208796216;80,0.000002447943371503447;81,0.00000367191505725517;82,0.0000050071568962570495;83,0.000004283900900131032;84,0.0000032268344442545433;85,0.00000400572551700564;86,0.000004895886743006894;87,0.000003783185210505327;88,0.0000033381045975047003;89,0.0000023923082948783683;90,0.00000267048367800376;91,0.0000024479433715034465;92,0.0000017803224520025066;93,0.0000022254030650031335;94,0.0000021697679883780552;95,0.0000021141329117529766;96,0.0000020584978351278983;97,0.000002503578448128525;98,0.000003226834444254543;99,0.0000016134172221272719;100,0.0000013352418390018802;101,0.0000016690522987523501;102,0.0000022810381416282118;103,0.0000016690522987523497;104,0.000001835957528627585;105,0.0000008901612260012533;106,0.0000011127015325015665;107,0.0000006119858428758616;108,0.0000008901612260012533;109,0.0000009457963026263318;110,0.0000015577821455021934;111,0.0000009457963026263318;112,0.0000006119858428758616;113,0.0000005563507662507834;114,0.0000008345261493761747;115,0.0000002781753831253916;116,0.00000022254030650031336;117,0.00000033381045975047005;118,0.00000033381045975047005;119,0.000000166905229875235;120,0.00000011127015325015666;121,0.00000005563507662507831;122,0.00000011127015325015668;123,0.00000016690522987523502;124,0;125,0.000000166905229875235;126,0.00000011127015325015669;127,0;128,0;129,0;130,0.00000016690522987523497;131,0.000000055635076625078326;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0.000000055635076625078326;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.000000055635076625078306;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000011127015325015668;27,0;28,0.00000038944553637554846;29,0.000000500715689625705;30,0.0000009457963026263316;31,0.0000006119858428758616;32,0.0000009457963026263317;33,0.0000008345261493761751;34,0.000001390876915626958;35,0.0000012239716857517233;36,0.000001168336609126645;37,0.0000012239716857517233;38,0.000001502147068877115;39,0.0000020028627585028205;40,0.0000016134172221272715;41,0.0000013908769156269584;42,0.0000015577821455021934;43,0.0000012239716857517233;44,0.000001279606762376802;45,0.0000008345261493761751;46,0.0000010570664558764885;47,0.000001390876915626958;48,0.0000015577821455021934;49,0.0000015577821455021934;50,0.0000009457963026263319;51,0.0000012239716857517233;52,0.0000010570664558764885;53,0.0000020584978351278983;54,0.0000009457963026263316;55,0.0000007232559961260182;56,0.0000010014313792514098;57,0.0000007232559961260182;58,0.0000006676209195009401;59,0;60,0.0000009457963026263317;61,0.0000014465119922520367;62,0.0000007788910727510966;63,0.00000033381045975047;64,0.0000008345261493761751;65,0.0000996424222355153;66,0.00016429038127385633;67,0.00021864585113655783;68,0.00025697841893123686;69,0.0003141156426251923;70,0.00037837415612715776;71,0.0004383487687289922;72,0.0004890879586110636;73,0.0005061122920583376;74,0.000500048068706204;75,0.0005068911831310887;76,0.0005074475338973396;77,0.0004912020915228166;78,0.0005082820600467156;79,0.0004974888551814505;80,0.0005047214151427106;81,0.0005117870698740955;82,0.0005145131886287245;83,0.000493594399817695;84,0.0005164604163106021;85,0.00046199367629465044;86,0.00025508682632598416;87,0.000036997325955677094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000011127015325015665;46,0.00000011127015325015665;47,0.00000005563507662507833;48,0.00000022254030650031333;49,0.000000500715689625705;50,0.00000022254030650031333;51,0.00000016690522987523502;52,0.00000022254030650031333;53,0.0000004450806130006266;54,0.000000834526149376175;55,0.0000006676209195009399;56,0.00000100143137925141;57,0.0000011127015325015665;58,0.00000044508061300062666;59,0.00000011127015325015666;60,0.0000008345261493761752;61,0.0000006676209195009401;62,0.00000100143137925141;63,0.000002114132911752977;64,0.00019783833247877854;65,0.00043784805303936653;66,0.0007119064404945024;67,0.0010053258346151657;68,0.0013067010446932148;69,0.001649246211473822;70,0.0020135446932148353;71,0.0023750057860479692;72,0.002789487106904802;73,0.0028875717469948156;74,0.0029991200756280976;75,0.003068719556486071;76,0.0031273589272489037;77,0.0032781299849028653;78,0.003390735379992024;79,0.003457330566712243;80,0.0035599216480088876;81,0.0036434855330997546;82,0.0037214302754514893;83,0.003892897581609981;84,0.003963164683387454;85,0.00403804949652481;86,0.0041069813564632825;87,0.004141586374124082;88,0.004180697832991511;89,0.0043285202315843435;90,0.00440001130504757;91,0.004393446366005811;92,0.004489917588873696;93,0.004671121033441576;94,0.00473777185523842;95,0.004716352350737765;96,0.0048039219613456394;97,0.0048853717135247535;98,0.0049206443521050535;99,0.004948740065800717;100,0.004930157950207942;101,0.004928210722526064;102,0.004959644540819233;103,0.004973775850282004;104,0.005018562086965191;105,0.0050449887483621034;106,0.005015835968210562;107,0.005118482684583832;108,0.005155090565003132;109,0.005087438311827038;110,0.0048967769042328945;111,0.0044209300938586;112,0.0041435892368825835;113,0.0038760957884692074;114,0.0036385896463567483;115,0.0033813330520423863;116,0.0031553433707913175;117,0.0030441288526177864;118,0.0029419828519341423;119,0.0028354416801971176;120,0.0027280659823107163;121,0.002633541987124708;122,0.0025485315900415882;123,0.002467638188628724;124,0.002366660524554207;125,0.002219505746880875;126,0.002106566541331966;127,0.001968035200535521;128,0.0018342884763288326;129,0.0017478315672534608;130,0.0016419580164359366;131,0.0015188932269412634;132,0.0013989440017375947;133,0.001326896577508118;134,0.001289954886629066;135,0.0012384368056742436;136,0.0011253306948954592;137,0.0010298052683302;138,0.0009957009663590268;139,0.000934724922377941;140,0.0008725805417877286;141,0.0008539427911183273;142,0.0007975288234204978;143,0.0007363302391329117;144,0.0007006125199396113;145,0.0006514867472796671;146,0.0006112625868797356;147,0.0005769913796786874;148,0.0005407729447957614;149,0.0004930380490514441;150,0.0004514786468125107;151,0.0004111432162593289;152,0.0003536721821056229;153,0.00030615982666780606;154,0.00029458773072978974;155,0.00026510114011849825;156,0.0002338342270552042;157,0.00021413940992992647;158,0.0001845971842420099;159,0.00015705782131259614;160,0.0001447624693784538;161,0.0001358052220418162;162,0.00012122883196604568;163,0.00011360682646840994;164,0.00009585923702500996;165,0.00007749966173873412;166,0.00006787479348259557;167,0.00006041969321483507;168,0.00004651092405856548;169,0.000043228454537685865;170,0.0000328803302854213;171,0.00002676047185666267;172,0.000018192670056400615;173,0.00001235098701076739;174,0.000008178356263886515;175,0.0000037275501338802484;176,0.0000003894455363755484;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0005900099876089557;2,0.0007757198733834673;3,0.0009567007776448471;4,0.0011041337307013048;5,0.0012580203526462714;6,0.0014087357752236083;7,0.0015667950279154561;8,0.0017260782522930556;9,0.0018688934939896313;10,0.0020544364745342675;11,0.0022677413583148177;12,0.002576349128354128;13,0.002968632053637555;14,0.0032722883018572323;15,0.003412266154645929;16,0.0035981429456503162;17,0.0038472768187774176;18,0.004034711391927306;19,0.0042252615293682;20,0.004426660506750984;21,0.004598294718139349;22,0.004702833027117872;23,0.004818665256651285;24,0.00498918676650715;25,0.0052377642888680005;26,0.005332510824360508;27,0.0054482874188172955;28,0.005652801960491083;29,0.0058891954010710425;30,0.006078577201902809;31,0.006201641991397482;32,0.00629266097675611;33,0.006425906985273172;34,0.006572561047256878;35,0.006728227991653849;36,0.006811791876744716;37,0.007012022517518373;38,0.007187384279040619;39,0.007417713496268444;40,0.007644315163362389;41,0.00781567119936763;42,0.007970503617615223;43,0.008095626904945025;44,0.008238609051871473;45,0.00839116043197744;46,0.008546159755454908;47,0.008802526188543271;48,0.008932712267845953;49,0.008873516546316868;50,0.008693703978664615;51,0.008569804663020566;52,0.008413470097704096;53,0.008205895626815927;54,0.008066307219563609;55,0.007906857089956133;56,0.00771246813222811;57,0.007610711577080841;58,0.007471234439981769;59,0.0071636281013217114;60,0.006888735187717199;61,0.006675764114396399;62,0.0064302465212499275;63,0.0062544953141913055;64,0.006032344453227368;65,0.005130778036517974;66,0.004235832193926963;67,0.0033819450378852613;68,0.0025627741696576086;69,0.001848920501481228;70,0.001215236978721586;71,0.000577380825215063;72,0.000005841683045633225;73,0.0000062311285820087745;74,0.0000064536688885090875;75,0.0000066762091950094;76,0.000007010019654759869;77,0.000007900180880761125;78,0.000007288195037885262;79,0.000007399465191135418;80,0.000005452237509257676;81,0.000006008588275508461;82,0.000005062791972882128;83,0.000003505009827379935;84,0.000003393739674129779;85,0.000004116995670255797;86,0.000002726118754628838;87,0.000002893023984504074;88,0.0000027817538312539173;89,0.0000017803224520025068;90,0.00000200286275850282;91,0.000001947227681877742;92,0.000002336673218253289;93,0.0000025035784481285243;94,0.0000006119858428758617;95,0.0000012239716857517235;96,0.0000018359575286275849;97,0.00000233667321825329;98,0.0000015577821455021928;99,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002751154539110124;2,0.0002915278015154105;3,0.00027672887113313965;4,0.00026543495057824876;5,0.00027483727852788695;6,0.00027127663362388197;7,0.0002737802120720105;8,0.00027745212712926564;9,0.00026309827735999545;10,0.00025792421523386315;11,0.0002694963111718794;12,0.0002965349584116675;13,0.0003138931023186919;14,0.0003268560751723352;15,0.00033141815145559166;16,0.0003227390795020794;17,0.00032062494659032645;18,0.0003171755718395716;19,0.0003156177896940694;20,0.0003121127798666895;21,0.0003090528506523102;22,0.0003219045533527032;23,0.000308273959579559;24,0.0002989272667065459;25,0.000299038536859796;26,0.00029458773072978974;27,0.0002904150999829089;28,0.000303266802683302;29,0.0003012083048481741;30,0.0003110557134108129;31,0.0003045464094456788;32,0.00029881599655329574;33,0.0002969800390246681;34,0.0003000399682390474;35,0.0002936975695037885;36,0.0002976476599441691;37,0.0003034893429898023;38,0.00032440813180083174;39,0.0003704739752463966;40,0.0004209906248219677;41,0.00045259134834501225;42,0.0005012164053153307;43,0.0005507316235116505;44,0.0006082026576653564;45,0.0006426407700962798;46,0.0007163016115478835;47,0.0007496826575229305;48,0.0007839538647239788;49,0.0008292964521734176;50,0.0008888816192388765;51,0.0009328333297726884;52,0.0009603170576254771;53,0.0010084413989061697;54,0.00106541171737025;55,0.0011108655749729392;56,0.0011756804392411555;57,0.0012225808088360964;58,0.0012497307262291347;59,0.0012985226884293282;60,0.0013482604469321484;61,0.0013988327315843448;62,0.0014258157437475076;63,0.001465817363840939;64,0.0014614778278641827;65,0.0013263402267418675;66,0.001152703152594998;67,0.0009759505141571242;68,0.0008022021698570045;69,0.0006174380803851193;70,0.00042371674357659654;71,0.00021853458098330768;72,0.000004283900900131032;73,0.0000039500904403805615;74,0.0000033381045975047;75,0.0000035050098273799354;76,0.000004061360593630718;77,0.0000031155642910043864;78,0.0000022810381416282113;79,0.0000029486590611291516;80,0.00000233667321825329;81,0.0000022810381416282118;82,0.0000024479433715034465;83,0.0000021141329117529766;84,0.0000029486590611291512;85,0.000002559213524753603;86,0.000002726118754628838;87,0.0000022810381416282113;88,0.0000020584978351278983;89,0.0000022810381416282118;90,0.0000017246873753774286;91,0.0000008901612260012534;92,0.0000010570664558764883;93,0.0000015577821455021934;94,0.0000016690522987523497;95,0.0000012796067623768015;96,0.0000007788910727510966;97,0.00000044508061300062666;98,0.0000008345261493761751;99,0.000001168336609126645;100,0.0000012239716857517235;101,0.0000007232559961260183;102,0.00000038944553637554835;103,0.0000005563507662507834;104,0.0000007232559961260185;105,0.00000044508061300062666;106,0.0000003894455363755483;107,0.00000022254030650031333;108,0.0000005563507662507833;109,0.0000009457963026263318;110,0.0000003894455363755483;111,0.00000027817538312539163;112,0.00000016690522987523502;113,0;114,0.00000011127015325015668;115,0.00000005563507662507833;116,0.000000055635076625078326;117,0.000000166905229875235;118,0.00000016690522987523497;119,0.00000044508061300062666;120,0.000000166905229875235;121,0.0000002225403065003133;122,0.00000022254030650031333;123,0.00000011127015325015664;124,0.00000033381045975047;125,0.0000002781753831253917;126,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000022476570956531653;62,0.00009079644505212783;63,0.00020952169857004497;64,0.0003560088553238763;65,0.00043962837549136897;66,0.00047629189098729555;67,0.0004902562952201902;68,0.0004559294529425169;69,0.0003977907978693101;70,0.0002958117024155415;71,0.00016228751851535348;72,0.00000133524183900188;73,0.0000015021470688771147;74,0.0000021697679883780552;75,0.000002447943371503447;76,0.000002893023984504074;77,0.0000018915926052526631;78,0.0000012239716857517233;79,0.000001947227681877742;80,0.000002503578448128525;81,0.0000013352418390018802;82,0.0000012239716857517235;83,0.0000019472276818777414;84,0.000002447943371503447;85,0.000002726118754628838;86,0.0000030042941377542303;87,0.00000300429413775423;88,0.000004116995670255797;89,0.000003393739674129778;90,0.0000024479433715034465;91,0.0000032268344442545437;92,0.0000025592135247536034;93,0.0000034493747507548568;94,0.000002559213524753603;95,0.0000015577821455021932;96,0.0000022254030650031335;97,0.000003226834444254543;98,0.000002169767988378055;99,0.0000021141329117529766;100,0.000004005725517005639;101,0.0000035606449040050133;102,0.000003282469520879622;103,0.0000035050098273799346;104,0.000005229697202757363;105,0.000003616279980630091;106,0.0000034493747507548563;107,0.000003115564291004387;108,0.000004450806130006267;109,0.000004283900900131032;110,0.000002559213524753604;111,0.000002893023984504073;112,0.000003171199367629465;113,0.0000032824695208796216;114,0.0000028373889078789947;115,0.0000039500904403805615;116,0.0000028930239845040734;117,0.000001279606762376802;118,0.000001613417222127272;119,0.00000233667321825329;120,0.000002169767988378055;121,0.000002114132911752977;122,0.000002447943371503447;123,0.0000019472276818777414;124,0.0000017803224520025066;125,0.0000018915926052526631;126,0.000004228265823505954;127,0.00000300429413775423;128,0.000002225403065003133;129,0.0000016690522987523497;130,0.000002225403065003133;131,0.0000021697679883780552;132,0.0000020584978351278983;133,0.0000010570664558764883;134,0.0000012796067623768015;135,0.0000012239716857517233;136,0.0000015577821455021932;137,0.0000006676209195009401;138,0.0000007232559961260181;139,0.0000006676209195009399;140,0.0000002225403065003133;141,0.0000006119858428758616;142,0.00000022254030650031336;143,0;144,0.00000005563507662507833;145,0.000000055635076625078326;146,0.00000011127015325015665;147,0;148,0;149,0.00000011127015325015665;150,0.0000005563507662507833;151,0.0000004450806130006266;152,0;153,0.000000055635076625078326;154,0;155,0.00000033381045975046994;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0.00000011127015325015661;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0.000000055635076625078306;175,0.000000055635076625078306;176,0;177,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.0003130585761693158;57,0.0006330159018401412;58,0.0006050314582977268;59,0.0006237248440437533;60,0.0006214438059021249;61,0.0006088702785848573;62,0.0006154908527032416;63,0.0006095935345809833;64,0.0005982439789494673;65,0.0005910670540648323;66,0.000579494958126816;67,0.0005979658035663419;68,0.0005814421858086937;69,0.0005799956738164417;70,0.0005868944233179512;71,0.0005735420049279324;72,0.0005696475495641771;73,0.0005732081944681821;74,0.0005824992522645701;75,0.0005751554221500599;76,0.0005715947772460548;77,0.0005868944233179514;78,0.0005785491618241896;79,0.0005824992522645701;80,0.0005786047969008147;81,0.0005763793938358115;82,0.000567533416652424;83,0.0005655861889705463;84,0.0005714278720161795;85,0.0005595219656184128;86,0.0005703708055603031;87,0.0005757674079929357;88,0.0005588543446989119;89,0.000555349334871532;90,0.0005594106954651627;91,0.0005492294764427733;92,0.0005531239318065287;93,0.0005572965625534098;94,0.0005535133773429044;95,0.0005397715134165099;96,0.0005372679349683815;97,0.0005412180254087619;98,0.0002693294059420042;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000011127015325015669;27,0.00000022254030650031338;28,0.000000055635076625078345;29,0.00000005563507662507835;30,0.00000022254030650031336;31,0.0000004450806130006266;32,0.000000166905229875235;33,0.0000007232559961260185;34,0.0000008901612260012535;35,0.00000044508061300062666;36,0.0000003894455363755483;37,0.0000007232559961260182;38,0.0000006119858428758616;39,0.00000166905229875235;40,0.0000020584978351278983;41,0.0000012239716857517233;42,0.0000012239716857517233;43,0.000001168336609126645;44,0.0000008345261493761751;45,0.0000008901612260012534;46,0.000001168336609126645;47,0.0000008901612260012531;48,0.0000004450806130006267;49,0.0000010570664558764885;50,0.0000016134172221272715;51,0.0000025592135247536034;52,0.0000026704836780037595;53,0.0000018359575286275849;54,0;55,0.00000033381045975046983;56,0.0000007232559961260185;57,0.0000008345261493761752;58,0.000001502147068877115;59,0.00000200286275850282;60,0.0000016690522987523501;61,0.0000022810381416282118;62,0.000001835957528627585;63,0.0000013908769156269584;64,0.0000014465119922520365;65,0.00028307126986839854;66,0.00059651929157409;67,0.0008878245527830001;68,0.0011873638053324217;69,0.0014970842769042327;70,0.0018148161995100553;71,0.002098555090297955;72,0.002338175365322167;73,0.0023748945158947187;74,0.002462631031732467;75,0.002580466124024383;76,0.0026846149874665296;77,0.002757107492309007;78,0.0027092613264114397;79,0.0027223912044949576;80,0.0027865384478436735;81,0.002821254735657722;82,0.0028728284516891696;83,0.002899922734005583;84,0.0029045404453654643;85,0.0029291311492337492;86,0.003001456748846351;87,0.0030557565836324277;88,0.003057815081467555;89,0.003111224755027631;90,0.003140989521022048;91,0.0030840748376345928;92,0.0030464098907594145;93,0.00315350741326269;94,0.0032192124387569075;95,0.0031883906063066144;96,0.003194065384122372;97,0.003227390795020794;98,0.003196068246880875;99,0.0031609625135304506;100,0.0031327555296815357;101,0.0031432149240870504;102,0.0031520609012704384;103,0.0031346471222867883;104,0.003187667350310488;105,0.003230673264541674;106,0.003209865745883895;107,0.003214372187090526;108,0.003261773272375093;109,0.003205971290520139;110,0.0030231544287301314;111,0.002768902128553524;112,0.0026734323370648893;113,0.002582135176323136;114,0.0024727009806016064;115,0.0023518615941719367;116,0.0022395343744659032;117,0.002236474445251524;118,0.0022714689084486982;119,0.0022797028997892095;120,0.002200311645445223;121,0.0021664855188571752;122,0.0021621459828804193;123,0.002150629522019028;124,0.002104341138266963;125,0.002054492109610893;126,0.002026841476528229;127,0.001970149333447274;128,0.0018981575442944226;129,0.001773980053267248;130,0.00169403244815701;131,0.0016035141784880075;132,0.0015330801714806583;133,0.0014535220119067964;134,0.0013730736911069332;135,0.0012936824367629465;136,0.0012452799200991281;137,0.001213957371959209;138,0.0011545947452002506;139,0.0010697512533470062;140,0.0010393745015097133;141,0.001056120659573862;142,0.001056009389420612;143,0.0010067723466074176;144,0.0009282156184128069;145,0.0008529413597390761;146,0.0008447073683985644;147,0.0008648472661368427;148,0.0008143306165612716;149,0.000737999291431664;150,0.0007001674393266108;151,0.0006621686819916823;152,0.0005843908448698227;153,0.0005222464642796103;154,0.0005053334009855865;155,0.0004976557604113258;156,0.00044719474591237965;157,0.00042371674357659654;158,0.000395621029880932;159,0.00036824857218139347;160,0.0003324752179114681;161,0.0003126691306329402;162,0.0003074394334301828;163,0.00030905285065231013;164,0.0002924735978180368;165,0.0002752823591408876;166,0.0002535290441804819;167,0.0002498014940466017;168,0.00022832635446932149;169,0.00021547465176892838;170,0.0002162535428416795;171,0.00020807518657779299;172,0.00017241310246111777;173,0.00015060415242408706;174,0.00013563831681194096;175,0.00013485942573918986;176,0.0001430377820030764;177,0.00013435871004956415;178,0.0001222302633452971;179,0.00011277230031903378;180,0.00010259108129664443;181,0.00009697193855751153;182,0.0000980846400900131;183,0.00009585923702500998;184,0.00007638696020623256;185,0.00005541253631857801;186,0.00004690036959494104;187,0.000048124341280692754;188,0.00004706727482481627;189,0.000039834714863556085;190,0.000036774785649176776;191,0.00003933399917393038;192,0.000042004482851934136;193,0.00004306154930781062;194,0.0000431171843844357;195,0.00004244956346493477;196,0.00003699732595567709;197,0.000029319685381416282;198,0.000022921651569532276;199,0.000021196964194154844;200,0.000023756177718908445;201,0.000030877467526918475;202,0.000029041509998290888;203,0.000022142760496781176;204,0.00001847084543952601;205,0.000016579252834273342;206,0.00001596726699139748;207,0.000013463688543268957;208,0.000011182650401640744;209,0.000007900180880761123;210,0.00000934669287301316;211,0.000013129878083518486;212,0.000009847408562638866;213,0.000008122721187261438;214,0.000008400896570386828;215,0.000006231128582008773;216,0.000002614848601378682;217,0.000001947227681877742;218,0.0000021141329117529766;219,0.0000013908769156269587;220,0.0000015021470688771152;221,0.000002114132911752977;222,0.0000013908769156269584;223,0.0000022254030650031335;224,0.000001279606762376802;225,0.00000133524183900188;226,0.0000012239716857517235;227,0.0000005563507662507834;228,0.0000006119858428758618;229,0.00000100143137925141;230,0.0000011127015325015665;231,0.0000005563507662507834;232,0.0000002225403065003133;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000005563507662507834;29,0;30,0;31,0;32,0.00000005563507662507833;33,0.00000005563507662507833;34,0.0000004450806130006266;35,0;36,0.0000003894455363755482;37,0.0000012796067623768015;38,0.0000012239716857517233;39,0.0000010570664558764885;40,0.000001168336609126645;41,0.0000006119858428758617;42,0.00000005563507662507833;43,0.00000011127015325015665;44,0.00000133524183900188;45,0.0000015577821455021932;46,0.000001168336609126645;47,0.0000005007156896257051;48,0.0000007788910727510966;49,0.000001502147068877115;50,0.0000007232559961260182;51,0.00000011127015325015666;52,0.0000004450806130006266;53,0.0000006676209195009399;54,0.0000010570664558764883;55,0.0000004450806130006267;56,0.00000011127015325015666;57,0.00000011127015325015662;58,0.000000166905229875235;59,0;60,0.000000055635076625078345;61,0;62,0;63,0;64,0.0000005563507662507833;65,0.00008128980133381757;66,0.0001521341170312767;67,0.0002141394099299265;68,0.0002611858216010084;69,0.0002874386233834672;70,0.00032193932527559393;71,0.0003307574849206688;72,0.00031394873739531705;73,0.00027333513145900984;74,0.00024407108115421865;75,0.00018988251652139233;76,0.0001361390325015667;77,0.00010147837976414288;78,0.00006887622486184698;79,0.000029486590611291517;80,0.000006175493505383695;81,0.0000006119858428758616;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000027817538312539153;13,0.0000005007156896257048;14,0.00000038944553637554814;15,0.00000038944553637554814;16,0.00000016690522987523497;17,0;18,0.00000005563507662507833;19,0.0000003894455363755483;20,0.0000008345261493761751;21,0.000000500715689625705;22,0.00000133524183900188;23,0.000002114132911752976;24,0.0000026148486013786817;25,0.0000022810381416282113;26,0.00000233667321825329;27,0.0000013908769156269582;28,0.000000500715689625705;29,0.0000011127015325015668;30,0.0000013908769156269584;31,0.00000100143137925141;32,0.0000012239716857517235;33,0.000001168336609126645;34,0.00000033381045975047;35,0.00000044508061300062666;36,0.00000033381045975046994;37,0.00000033381045975046994;38,0.00000044508061300062666;39,0.000000500715689625705;40,0.00000016690522987523502;41,0.000000500715689625705;42,0.0000008901612260012534;43,0.00000038944553637554835;44,0.000000055635076625078345;45,0;46,0.00000016690522987523502;47,0.000000500715689625705;48,0.00000044508061300062676;49,0.000000500715689625705;50,0.00000027817538312539163;51,0.0000003894455363755483;52,0.0000006119858428758616;53,0.00000033381045975047005;54,0.00000100143137925141;55,0.0000011127015325015668;56,0.0000013352418390018802;57,0.0000013908769156269584;58,0.0000010570664558764883;59,0.0000012796067623768015;60,0.0000010570664558764883;61,0.0000012239716857517233;62,0.0000010570664558764885;63,0.0000009457963026263317;64,0.0000008901612260012533;65,0.00013285656298068707;66,0.00024434925653734404;67,0.0003635752257448869;68,0.0004705614780949125;69,0.0005495076518258988;70,0.0006279531098672591;71,0.0006989991027174841;72,0.0007612547534609469;73,0.0007293202194781519;74,0.0007096810374294993;75,0.00068186349911696;76,0.0006344067787557683;77,0.000597298182646841;78,0.0005712609667863043;79,0.0005464477226115193;80,0.0005004375142425796;81,0.0004676684541104084;82,0.00044558132869025233;83,0.0004182088709907138;84,0.00037581494260240415;85,0.00034438112430923483;86,0.00031734247706944685;87,0.0002861868341594029;88,0.00024946768358685126;89,0.00020907661795704438;90,0.00017619628767162306;91,0.00014075674386144818;92,0.00011282793539565885;93,0.00007872363342448583;94,0.000042060117928559225;95,0.000017024333447273968;96,0.0000027817538312539165;97,0.00000016690522987523497;98,0.00000044508061300062666;99,0.0000002781753831253917;100,0.0000004450806130006267;101,0.0000009457963026263319;102,0.000001279606762376802;103,0.0000012239716857517235;104,0.000001780322452002507;105,0.0000012239716857517235;106,0.000000834526149376175;107,0.0000005007156896257051;108,0;109,0;110,0;111,0.000000166905229875235;112,0.000000055635076625078326;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.0015404240015951687;2,0.0015181143358685124;3,0.00153441541331966;4,0.0015229545875348944;5,0.0015397563806756683;6,0.0015402014612886687;7,0.0015212299001595168;8,0.001501368177804364;9,0.0015084338325357489;10,0.001500088571041987;11,0.0015440959166524242;12,0.0016588710797299606;13,0.0018187662899504355;14,0.0018854727468239046;15,0.0018534269426878597;16,0.0018656666595453768;17,0.0018674469819973793;18,0.0018322856135703299;19,0.0018208247877855637;20,0.0018017419565031618;21,0.0017723666360451207;22,0.0017661355074631117;23,0.001781435153535008;24,0.0017716433800489945;25,0.001757122625049849;26,0.001760126919187603;27,0.0017397644811428243;28,0.0017289156412009345;29,0.0017671925739189882;30,0.0017478315672534608;31,0.0017224063372358002;32,0.0017132265495926622;33,0.0017150625071212897;34,0.0016967029318350141;35,0.0016708882562809775;36,0.0016486342256309462;37,0.0016651578433885946;38,0.0017162864788070416;39,0.001689637277103629;40,0.0016905274383296302;41,0.0017051594634820261;42,0.0016656029240015953;43,0.0016898041823335042;44,0.0016781208162422378;45,0.0016792891528513646;46,0.0016733361996524813;47,0.001685909726969749;48,0.001687467509115251;49,0.001692474666011508;50,0.0016875787792685012;51,0.0016933091921608843;52,0.0016827941626787442;53,0.0016913063294023813;54,0.0016866329829658745;55,0.0016834061485216203;56,0.0016555886102090811;57,0.0016564231363584573;58,0.0016622648194040905;59,0.0016353930773941776;60,0.0016116368996752692;61,0.0016504701831595737;62,0.0016481335099413207;63,0.001613695397510397;64,0.001614307383353273;65,0.001389764214094457;66,0.0011713965383410244;67,0.0009870775294821398;68,0.0007852891065629807;69,0.0005845021150230731;70,0.00036858238264114403;71,0.00019171847405001995;72,0.0000031155642910043864;73,0.000002503578448128525;74,0.0000025592135247536034;75,0.00000267048367800376;76,0.000003783185210505327;77,0.000002726118754628838;78,0.00000200286275850282;79,0.000002503578448128525;80,0.000002447943371503447;81,0.0000035606449040050133;82,0.0000026704836780037595;83,0.0000018915926052526636;84,0.0000021141329117529766;85,0.0000033381045975047;86,0.00000200286275850282;87,0.0000017246873753774284;88,0.0000018359575286275849;89,0.0000022810381416282118;90,0.0000022810381416282118;91,0.0000015021470688771154;92,0.000001947227681877742;93,0.0000010570664558764885;94,0.0000017246873753774284;95,0.0000018915926052526631;96,0.000002114132911752976;97,0.0000024479433715034465;98,0.0000028373889078789947;99,0.0000016690522987523501;100,0.0000020584978351278983;101,0.0000008901612260012533;102,0.000001168336609126645;103,0.0000013352418390018798;104,0.0000017803224520025066;105,0.0000020584978351278983;106,0.000003059929214379308;107,0.00000200286275850282;108,0.000001835957528627585;109,0.0000010570664558764883;110,0.0000014465119922520367;111,0.0000013908769156269584;112,0.0000011127015325015665;113,0.00000200286275850282;114,0.0000017246873753774284;115,0.0000017803224520025064;116,0.0000012796067623768015;117,0.0000013352418390018802;118,0.0000017803224520025064;119,0.0000017803224520025066;120,0.0000015577821455021934;121,0.0000012796067623768015;122,0.0000015577821455021934;123,0.0000005563507662507833;124,0.00000044508061300062666;125,0.0000008901612260012533;126,0.0000012239716857517233;127,0.0000011683366091266448;128,0.0000006119858428758616;129,0.0000005563507662507833;130,0.00000033381045975047;131,0.00000044508061300062666;132,0.00000022254030650031333;133,0.0000005563507662507833;134,0.0000002781753831253916;135,0.00000038944553637554825;136,0.00000011127015325015666;137,0.00000033381045975047005;138,0.0000002781753831253916;139,0.00000005563507662507833;140,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0.00000011127015325015668;31,0.000000500715689625705;32,0.00000011127015325015668;33,0.00000033381045975046994;34,0.00000022254030650031333;35,0.000000055635076625078345;36,0.00000022254030650031333;37,0.00000044508061300062666;38,0.00000027817538312539163;39,0.00000022254030650031336;40,0.0000005007156896257049;41,0.00000011127015325015665;42,0.000000055635076625078326;43,0.00000038944553637554835;44,0.0000005563507662507833;45,0.0000002781753831253916;46,0.0000006119858428758616;47,0.00000033381045975047005;48,0.0000002781753831253917;49,0.00000022254030650031333;50,0.00000011127015325015665;51,0.00000033381045975047;52,0.00000022254030650031333;53,0.00000022254030650031338;54,0.00000027817538312539163;55,0.00000027817538312539163;56,0.00000044508061300062666;57,0.0000002781753831253917;58,0.0000005563507662507835;59,0.0000003894455363755484;60,0.0000005563507662507833;61,0.0000002781753831253917;62,0.0000002225403065003133;63,0.0000002781753831253917;64,0.0000003894455363755483;65,0.00003371485643479747;66,0.00006720717256309463;67,0.00010336997236939555;68,0.00013797499003019426;69,0.00017269127784424315;70,0.00020629486412579044;71,0.00023850757349171082;72,0.00027416965760838604;73,0.0002721111597732581;74,0.00026643638195750013;75,0.00026476732965874784;76,0.00027155480900700735;77,0.0002732794963823847;78,0.000281958568335897;79,0.0002816803929527716;80,0.0002822367437190224;81,0.0002786760988150174;82,0.0002788986391215177;83,0.00027578307483051324;84,0.0002745034680681365;85,0.00028023388096051955;86,0.00027372457699538543;87,0.00028117967726314595;88,0.0002895805738335328;89,0.00029570043226229137;90,0.0002906376402894092;91,0.0002790099092747679;92,0.000279121179428018;93,0.0002793437197345183;94,0.0002841839714009001;95,0.0002779528428188913;96,0.0002752267240642625;97,0.00027155480900700735;98,0.00026921813578875404;99,0.0002650455050418732;100,0.00026615820657437475;101,0.0002569784189312368;102,0.0002495789537401014;103,0.00024646338944909704;104,0.0002552537315558594;105,0.0002569227838546118;106,0.0002513036411154789;107,0.0002448499722269697;108,0.00024195694824246565;109,0.00024067734148008885;110,0.0002254889655614425;111,0.00020601668874266506;112,0.00019661436079302684;113,0.0001879352888395146;114,0.00017686390859112403;115,0.00017157857631174158;116,0.00016601506864923375;117,0.0001641234760439811;118,0.00016712777018173532;119,0.00015883814376459863;120,0.00015349717640859113;121,0.00015494368840084316;122,0.00012451130148692532;123,0.00007288195037885261;124,0.000025536500170910956;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00025948199737936534;2,0.000335924592662223;3,0.00041409187532045805;4,0.0004894774041474391;5,0.0005386588118840084;6,0.0006004693820144705;7,0.0006921003532159746;8,0.0007416712064889192;9,0.0008119383082663932;10,0.0009028460234717711;11,0.0009852972070301374;12,0.0011505890196832449;13,0.0013546028456674073;14,0.0014761098530165784;15,0.0015370858969976642;16,0.0016267140054406653;17,0.0017110011465276591;18,0.0018060258574032926;19,0.0018744013665755142;20,0.001922581342932832;21,0.001974099423887655;22,0.0020768574104141737;23,0.0021466237965020226;24,0.002216779628126246;25,0.0022902179292713497;26,0.0023859658961431092;27,0.002462408491425967;28,0.0025456942011337093;29,0.00262786720930895;30,0.0026355448498832108;31,0.00270631266735031;32,0.0027703486405457754;33,0.0028352191398906173;34,0.0029019255967640857;35,0.003018870527830001;36,0.003072669646926451;37,0.0031101120534951293;38,0.0032231068941206637;39,0.003357521239246852;40,0.003407147727596422;41,0.0034058681208340453;42,0.003538780318891358;43,0.003596084447815188;44,0.0036272400907252323;45,0.0037360623006038856;46,0.0037877472867885835;47,0.003864301152224691;48,0.003988979358941491;49,0.004076048253859739;50,0.004180753468068136;51,0.004241061891129721;52,0.0042553044707457416;53,0.004348326318862873;54,0.004415366586196092;55,0.004432335284566741;56,0.00449937555189996;57,0.004585109204979206;58,0.004639520309918533;59,0.00470105270466587;60,0.00478684199282174;61,0.00491107511892554;62,0.00492882270836894;63,0.004836190305788184;64,0.004755519444681821;65,0.004083447719050875;66,0.0034202219706033154;67,0.0028000021363869428;68,0.002168822192075429;69,0.001605739581553011;70,0.0010506127869879794;71,0.0005224133695094855;72,0.000007900180880761123;73,0.0000068987495015097135;74,0.000004228265823505953;75,0.0000061198584287586154;76,0.000008178356263886515;77,0.000007566370421010654;78,0.000006954384578134792;79,0.00000734383011451034;80,0.0000066762091950094005;81,0.0000071212898080100265;82,0.000006954384578134791;83,0.000008345261493761749;84,0.000006509303965134165;85,0.000004506441206631345;86,0.000005619142739132912;87,0.000004395171053381188;88,0.000004172630746880875;89,0.0000039500904403805615;90,0.0000032824695208796216;91,0.00000400572551700564;92,0.0000041726307468808745;93,0.000003894455363755483;94,0.0000037831852105053263;95,0.0000037275501338802484;96,0.0000035606449040050133;97,0.0000026704836780037604;98,0.0000016690522987523497;99,0.0000022810381416282113;100,0.0000029486590611291516;101,0.0000018359575286275849;102,0.00000267048367800376;103,0.0000028373889078789947;104,0.00000267048367800376;105,0.0000012796067623768015;106,0.0000016690522987523501;107,0.000001835957528627585;108,0.0000020584978351278983;109,0.000001835957528627585;110,0.0000015021470688771152;111,0.0000006119858428758616;112,0.000000500715689625705;113,0.000001168336609126645;114,0.0000006119858428758616;115,0.0000006119858428758617;116,0.0000002781753831253917;117,0.0000008901612260012533;118,0.00000033381045975047;119,0.0000005007156896257051;120,0.00000027817538312539163;121,0.0000007232559961260183;122,0.00000033381045975047;123,0.00000033381045975046994;124,0.00000005563507662507833;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.000000055635076625078326;25,0.00000033381045975047;26,0.0000002781753831253917;27,0.00000005563507662507833;28,0.00000011127015325015665;29,0.0000002781753831253917;30,0.0000006119858428758616;31,0.0000010570664558764885;32,0.0000013352418390018802;33,0.0000006119858428758617;34,0.0000020028627585028196;35,0.000002281038141628212;36,0.000003171199367629465;37,0.00000267048367800376;38,0.0000028373889078789947;39,0.00000400572551700564;40,0.000002114132911752977;41,0.000003616279980630092;42,0.000004061360593630719;43,0.00000300429413775423;44,0.0000029486590611291516;45,0.0000035606449040050133;46,0.000002114132911752977;47,0.00000200286275850282;48,0.0000037831852105053263;49,0.000003505009827379935;50,0.00000233667321825329;51,0.000001947227681877742;52,0.0000022254030650031335;53,0.000002559213524753603;54,0.00000267048367800376;55,0.000002837388907878995;56,0.0000020584978351278983;57,0.000001835957528627585;58,0.000002503578448128525;59,0.0000028930239845040734;60,0.0000025592135247536034;61,0.0000026704836780037604;62,0.0000027817538312539165;63,0.0000019472276818777414;64,0.000003838820287130406;65,0.0002891354932205321;66,0.0005484505853700222;67,0.000777778371218595;68,0.0009846852211872613;69,0.0011446360664843615;70,0.0012460588111718792;71,0.0013338509620862528;72,0.0014081237893807325;73,0.001306812314846465;74,0.0011898673837805501;75,0.0010793761216031446;76,0.0009558662514954708;77,0.0008263477931122886;78,0.0006985540221044835;79,0.0005625818948327921;80,0.00043267399091323423;81,0.000296145512875292;82,0.00017653009813137357;83,0.00007299322053210276;84,0.000012184081780892155;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000008692980722668488;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000011996313397282515;12,0;13,0;14,0;15,0;16,0;17,0;18,0.0000001738596144533698;19,0;20,0;21,0;22,0;23,0.0000016467982681023185;24,0.000002058497835127898;25,0.0000016467982681023185;26,0.0000024010012756010364;27,0.000002058497835127898;28,0.00000009562278794935339;29,0.0000002503578448128525;30,0.0000005841683045633225;31,0.000000500715689625705;32,0.0000006676209195009401;33,0.00000033381045975047005;34,0.00000005563507662507833;35,0.00000038944553637554835;36,0.0000002781753831253917;37,0.00000038944553637554835;38,0.00000026078942168005465;39,0.0000005215788433601093;40,0.00000043464903613342435;41,0.00000043464903613342435;42,0;43,0.00000007423647002556042;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.0000004289100835104349;53,0.0000009320566370464302;54,0.0000016881610028819362;55,0.0000009183169714665286;56,0.0000006213710913642868;57,0.0000005147460019774892;58,0.0000008275717647980405;59,0.0000007093472269697489;60,0.00000117529099370478;61,0.0000009296257731361399;62,0.00000038944553637554825;63,0.00000033381045975047;64,0.000000166905229875235;65,0.0000003106855456821434;66,0.00000044541882015336266;67,0.000001413293708469244;68,0.0000015459501796431935;69,0.0000017003470293539567;70,0.0000014529432126407831;71,0.0000008896380618118648;72,0.0000005937226566281156;73,0.00000005563507662507833;74,0;75,0;76,0.00000005563507662507833;77,0;78,0.00000022270941007668133;79,0.00000044541882015336266;80,0.0000007561043658355058;81,0.0000009807373290933737;82,0.0000019978160736455877;83,0.0000005911226891414573;84,0.00000047289815131316573;85,0.000000055635076625078326;86,0;87,0.00000016690522987523502;88,0.0000008345261493761753;89,0.00000016690522987523502;90,0;91,0.00000011127015325015666;92,0.00000007423647002556045;93,0.000000055635076625078326;94,0;95,0.00000046733464365065794;96,0.000000528533227938244;97,0.0000012796067623768013;98,0.00000116138222454851;99,0.000002610811253492895;100,0.0000023351935619600694;101,0.000003246704114477785;102,0.000003210220017876385;103,0.0000021013127468695763;104,0.0000004802171654778442;105,0.00000011996313397282513;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00015805925269184753;2,0.00019811650786190392;3,0.00022615658648094343;4,0.00026248629151711956;5,0.0003191227995214493;6,0.00035439543810174897;7,0.00037503605152965303;8,0.0004017408883096906;9,0.0004661106719649063;10,0.0005455575613855182;11,0.0006088146435082322;12,0.0006897080449210962;13,0.0007965830271178715;14,0.0008675733848914715;15,0.0008836519220361192;16,0.0009028460234717712;17,0.0009752828932376231;18,0.001071865386258759;19,0.0011263321262747108;20,0.0011543722048937503;21,0.0011657217605252662;22,0.0011906462748533012;23,0.0012466707970147555;24,0.0013030847647125846;25,0.001328064914117245;26,0.001377357592007064;27,0.0014491268408534153;28,0.0015232883979946449;29,0.0015382542336067908;30,0.001542593769583547;31,0.0015498819646214321;32,0.0015543327707514386;33,0.0015978394006722497;34,0.0016821265417592433;35,0.0017288600061243092;36,0.0017245761052241781;37,0.0018032441035720388;38,0.0018434126288953455;39,0.0018235509065401925;40,0.001809642137383923;41,0.001818877560103686;42,0.0017727004465048707;43,0.0016767855744032358;44,0.0016030690978750073;45,0.0015355837499287871;46,0.0015044281070187432;47,0.0014715477767333217;48,0.0014235903406825045;49,0.0013728511508004327;50,0.0012960191099811997;51,0.0012184081780892155;52,0.001139072558821854;53,0.0011144262198769443;54,0.0011153163811029455;55,0.001091615838460662;56,0.0010414886344214665;57,0.0010268566092690706;58,0.0009806238605936308;59,0.000903346739161397;60,0.0008496032551415714;61,0.0008330240023072979;62,0.0008015901840141286;63,0.0007436740692474221;64,0.0006706252136386942;65,0.0005486731256765225;66,0.000448140542215006;67,0.00035400599256537343;68,0.0002480211715945993;69,0.00016712777018173532;70,0.00010570664558764883;71,0.000048291246510567996;72,0.00000038944553637554825;73,0.000001502147068877115;74,0.0000012796067623768017;75,0.00000066762091950094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.000865014171366718;2,0.0009785097276818777;3,0.0010567882804933628;4,0.0011318956339372186;5,0.0012141799122657095;6,0.0012967423659773257;7,0.001391933982082835;8,0.0014901855274027233;9,0.0015545553110579387;10,0.0016245998725289124;11,0.0017954551928445277;12,0.0020579414843616478;13,0.002295058180937732;14,0.002473813682134108;15,0.002582135176323135;16,0.0026837248262405284;17,0.0027746325414459063;18,0.0029103821284110977;19,0.0029692996745570555;20,0.0030144753567766195;21,0.0030549220574830516;22,0.0031465530286845554;23,0.00328113427904062;24,0.003328257188942061;25,0.003384782426793141;26,0.003453714286731613;27,0.003499390684640802;28,0.0036095481363584573;29,0.0037154773222526066;30,0.003868863228507948;31,0.003960271659402951;32,0.003964889370762833;33,0.003922272902068022;34,0.003910200090440381;35,0.003838208301287529;36,0.003716756929014983;37,0.003574442403008033;38,0.003491156693300291;39,0.0033402743654930784;40,0.0032139271064775257;41,0.003123631377115023;42,0.003061709536831311;43,0.00296879895886743;44,0.002864872635731784;45,0.0027317378973679713;46,0.0026219142561100667;47,0.002516318880675668;48,0.0024138947046088988;49,0.0022993420818378622;50,0.0021815626246225717;51,0.00205972180681365;52,0.0020068128489432;53,0.0019165727546573235;54,0.0018061927626331683;55,0.0017581240564291003;56,0.001630664095881046;57,0.0015104923303708767;58,0.0014023933764883497;59,0.0013158251972597275;60,0.001241385464735373;61,0.0011405190708141059;62,0.001060293290320743;63,0.0009572571284110977;64,0.0008639014698342163;65,0.0006660631373554377;66,0.0004989910022503276;67,0.00035817862331225436;68,0.0002539184897168575;69,0.0001931093509656469;70,0.00012445566641030022;71,0.00006242255597333789;72,0.000002114132911752976;73,0.00000133524183900188;74,0.00000038944553637554835;75,0.0000005007156896257051;76,0.0000011127015325015668;77,0.0000009457963026263316;78,0.0000007788910727510968;79,0.0000011683366091266452;80,0.0000011127015325015668;81,0.0000012796067623768015;82,0.0000006119858428758616;83,0.0000017803224520025066;84,0.0000012796067623768015;85,0.0000011127015325015668;86,0.00000022254030650031333;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00043378669244573576;2,0.000563138245599043;3,0.0006813627834273343;4,0.000784065134877229;5,0.0008859329601777473;6,0.0009796224292143794;7,0.0010885002741696575;8,0.0011959316071326839;9,0.0012992459444254544;10,0.001362948107161169;11,0.0014757760425568281;12,0.0017069954210106536;13,0.0020388030180026207;14,0.002307520438101749;15,0.0024287492700677945;16,0.0025948756088702784;17,0.002777692470660286;18,0.0028682663754059133;19,0.002967074271492053;20,0.003079790936734461;21,0.003216375049849029;22,0.0033386609482709507;23,0.0035015604526291806;24,0.0036316908968552384;25,0.003682374451660685;26,0.0037115272318122257;27,0.003780737267133823;28,0.00391042263074688;29,0.004105979925084031;30,0.004235609653620464;31,0.004326517368825842;32,0.004386825791887426;33,0.0045591832592719195;34,0.004715072743975389;35,0.0048381375334700626;36,0.004941618775992708;37,0.0051012358108300584;38,0.005200099341992821;39,0.005368395448783684;40,0.00555327080840882;41,0.0056362227076568105;42,0.005566289416339087;43,0.00563588889719706;44,0.005741762448014585;45,0.005911171256337947;46,0.006073124964393551;47,0.0063024527502421246;48,0.006394250626673502;49,0.006556482510112232;50,0.006662912411696006;51,0.006778021385233294;52,0.006981590130604455;53,0.007171472647125847;54,0.007228888046202929;55,0.0071570631622799525;56,0.007216370153962285;57,0.007413373960291687;58,0.007505171836723067;59,0.007440802053067852;60,0.0073621896897966155;61,0.007259209162963597;62,0.006980477429071954;63,0.006753653221671509;64,0.006574118829402381;65,0.0056073481028883956;66,0.004645083817581041;67,0.0037874691114054577;68,0.00298643527815758;69,0.0022204515431835017;70,0.0014375547449153989;71,0.0007057865820657437;72,0.000006620574118384322;73,0.0000075663704210106526;74,0.000011572095938016294;75,0.000014131309462769894;76,0.000014020039309519738;77,0.00000906851748988777;78,0.000007955815957386202;79,0.0000064536688885090875;80,0.000007010019654759869;81,0.000009179787643137925;82,0.000009291057796388082;83,0.000007232559961260183;84,0.000004116995670255797;85,0.0000022810381416282118;86,0.0000028373889078789956;87,0.0000022254030650031335;88,0.000004450806130006267;89,0.000005118427049507208;90,0.0000045620762832564235;91,0.0000053966024326325986;92,0.000006453668888509087;93,0.00000634239873525893;94,0.0000033937396741297785;95,0.0000020584978351278983;96,0.0000005007156896257049;97,0.0000017803224520025068;98,0.0000028373889078789956;99,0.0000046177113598815005;100,0.000004895886743006893;101,0.000004506441206631345;102,0.0000032268344442545437;103,0.0000039500904403805615;104,0.000002781753831253917;105,0.000001947227681877742;106,0.0000022254030650031335;107,0.0000018915926052526636;108,0.0000017246873753774284;109,0.000001502147068877115;110,0.0000021141329117529766;111,0.0000010570664558764883;112,0.0000008345261493761749;113,0.00000033381045975046994;114,0.00000033381045975047;115,0.00000011127015325015664;116,0.0000002225403065003133;117,0.000000500715689625705;118,0.0000005563507662507834;119,0.000000500715689625705;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.00001835957528627585;19,0.000035272638580299666;20,0.000039834714863556085;21,0.00003588462442317553;22,0.00003638534011280123;23,0.00003538390873354982;24,0.000037331136415427564;25,0.00003655224534267647;26,0.00003666351549592662;27,0.00003811002748817866;28,0.00003538390873354982;29,0.00003911145886743007;30,0.000035773354269925364;31,0.00003432684227767333;32,0.0000374980416453028;33,0.00003482755796729904;34,0.00003310287059192161;35,0.00003900018871417991;36,0.00003388176166467271;37,0.0000321014392126702;38,0.0000374980416453028;39,0.00003566208411667521;40,0.000035272638580299666;41,0.00003705296103230217;42,0.000033603586281547314;43,0.00003388176166467271;44,0.00003499446319717427;45,0.00003677478564917678;46,0.00003521700350367459;47,0.0000359402594998006;48,0.000033269775821796843;49,0.0000331028705919216;50,0.00003059929214379308;51,0.00003399303181792286;52,0.000031433818293169256;53,0.00003293596536204637;54,0.000034493747507548566;55,0.00003171199367629465;56,0.00003237961459579559;57,0.00003215707428929528;58,0.000033047235515296525;59,0.0000328803302854213;60,0.0000331028705919216;61,0.00003043238691391785;62,0.000031767628752919734;63,0.00003399303181792286;64,0.000030654927220418163;65,0.000032212709365920356;66,0.000030543657067168004;67,0.00003276906013217113;68,0.00003076619737366831;69,0.00003115564291004386;70,0.00003332541089842192;71,0.0000326021549022959;72,0.00003098873768016863;73,0.00003059929214379308;74,0.000030265481684042614;75,0.000030543657067168004;76,0.00002781753831253917;77,0.0000328803302854213;78,0.00003093310260354355;79,0.000031211277986668945;80,0.000032101439212670204;81,0.000030209846607417534;82,0.000030209846607417534;83,0.00003071056229704324;84,0.000029208415228166123;85,0.000030321116760667693;86,0.00003499446319717427;87,0.000030154211530792458;88,0.00002865206446191534;89,0.00003110000783341879;90,0.00003065492722041816;91,0.000030432386913917852;92,0.00002970913091779183;93,0.000027261187546288384;94,0.00003215707428929528;95,0.000029931671224292143;96,0.000029987306300917223;97,0.000030543657067168004;98,0.000027483727852788695;99,0.000028485159232040106;100,0.00002770626815928901;101,0.00002509141955791033;102,0.000028373889078789947;103,0.00002698301216316299;104,0.0000272055524696633;105,0.000015021470688771151;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.0000033347664929071946;45,0.000005557944154845323;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.000000584116094468892;54,0;55,0.0000017041416146948257;56,0.0000017765951052609943;57,0.0000028559917822053164;58,0.0000012536322403976572;59,0.0000007925390002755916;60,0.0000026391403693142925;61,0.0000007075078426429233;62,0.0000011921032706325153;63,0.000005353175828528527;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0.00000028512976770352636;84,0;85,0.00000028512976770352636;86,0.0000002859990657757933;87,0.0000005719981315515866;88,0.0000011439962631031731;89,0.0000007410592206460433;90,0.00000037052961032302166;91,0.0000007410592206460433;92,0;93,0;94,0.00000037052961032302166;95,0;96,0.00000037052961032302166;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000021141329117529766;46,0.000013630593773144192;47,0.000029820401071041988;48,0.00004450806130006267;49,0.00006325708212271406;50,0.00008100467156611405;51,0.00009457963026263317;52,0.00011577659445678799;53,0.0001381975303366946;54,0.00015015907181108643;55,0.0001717454815416168;56,0.00019038323221101804;57,0.00020223350353215972;58,0.00022075998404831083;59,0.00023967591010083748;60,0.0002490226029738506;61,0.00027800847789551645;62,0.00028379452586452464;63,0.00030493585498205433;64,0.0003138374672420669;65,0.000288356602147781;66,0.0002603721586053666;67,0.0002259896812510682;68,0.0001926642703526463;69,0.0001491020053552099;70,0.00010247981114339428;71,0.000052519512334073945;72,0.00000044508061300062666;73,0.00000016690522987523494;74,0.0000007232559961260185;75,0.0000011127015325015663;76,0.0000012239716857517233;77,0.0000013908769156269582;78,0.0000007232559961260183;79,0.000001168336609126645;80,0.0000016690522987523501;81,0.0000005563507662507834;82,0.0000008901612260012533;83,0.0000006676209195009401;84,0.0000008345261493761751;85,0.0000016134172221272719;86,0.000001947227681877742;87,0.0000009457963026263316;88,0.000001168336609126645;89,0.000001168336609126645;90,0.0000006119858428758618;91,0.0000011127015325015668;92,0.000000834526149376175;93,0.00000066762091950094;94,0.0000010014313792514098;95,0.00000033381045975047005;96,0.0000004450806130006266;97,0.00000044508061300062666;98,0.0000003894455363755483;99,0.0000006119858428758616;100,0.0000008345261493761749;101,0.0000006119858428758616;102,0.0000007788910727510966;103,0.0000002781753831253916;104,0.00000033381045975046994;105,0.0000002781753831253917;106,0.00000022254030650031322;107,0.0000002225403065003133;108,0.0000007232559961260181;109,0.0000005563507662507833;110,0.0000004450806130006266;111,0.00000044508061300062655;112,0.00000016690522987523502;113,0.0000001112701532501567;114,0.0000007788910727510968;115,0.00000011127015325015669;116,0.00000027817538312539174;117,0.00000005563507662507833;118,0;119,0.0000002781753831253917;120,0.00000022254030650031338;121,0.00000005563507662507834;122,0.00000022254030650031336;123,0;124,0;125,0;126,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0.000000834526149376175;32,0.0000011683366091266452;33,0.0000007788910727510967;34,0.00000022254030650031333;35,0.0000009457963026263317;36,0.0000005007156896257049;37,0.000001835957528627585;38,0.0000016690522987523501;39,0.000001780322452002507;40,0.000001112701532501567;41,0.0000013352418390018804;42,0.0000026704836780037604;43,0.0000036719150572551698;44,0.000003115564291004387;45,0.000001835957528627585;46,0.000002336673218253289;47,0.000002614848601378681;48,0.0000020028627585028196;49,0.0000017246873753774286;50,0.000001502147068877115;51,0.0000006119858428758616;52,0.0000009457963026263317;53,0.0000011127015325015668;54,0.0000010014313792514098;55,0.0000011127015325015668;56,0.0000015577821455021934;57,0.000001835957528627585;58,0.00000166905229875235;59,0.0000030042941377542307;60,0.0000023923082948783683;61,0.000002893023984504073;62,0.000004450806130006265;63,0.000003727550133880249;64,0.000004562076283256424;65,0.0003895568065287985;66,0.000799030970489375;67,0.0012299802740272318;68,0.001683739958981371;69,0.002142618070985017;70,0.002538294735942574;71,0.002960231157067168;72,0.003472797118014015;73,0.0035490728080669973;74,0.0035798946405172904;75,0.0035920787222981825;76,0.0036364198783683695;77,0.003669912194496667;78,0.003720929559761864;79,0.0037114159616589756;80,0.0037426272396456446;81,0.00380315820301373;82,0.003859460900558309;83,0.003956655379422321;84,0.004049343417079701;85,0.004098524824816271;86,0.0041300699132626895;87,0.004120222504700051;88,0.004101640389107275;89,0.004124673310830057;90,0.004217305713410812;91,0.004264150447929129;92,0.004217305713410812;93,0.004209294262376801;94,0.004259977817182248;95,0.004186094435424144;96,0.004124005689910557;97,0.004093962748533015;98,0.004035545918076682;99,0.0039275582343474055;100,0.0038579587534894313;101,0.0038330342391613963;102,0.00376065300447217;103,0.003675030621546175;104,0.0035509087655956244;105,0.0034189423638409386;106,0.0033166294579274197;107,0.0032621070828348425;108,0.003225276662109041;109,0.0031861652032416114;110,0.0030228762533470064;111,0.0026644750897282512;112,0.0024821033085512447;113,0.0023710000605309633;114,0.002245598597818037;115,0.0020992783462940806;116,0.0019596899390417594;117,0.0018974342882982966;118,0.0018302271157352018;119,0.0017766505369452516;120,0.001759236757961602;121,0.001764188279781234;122,0.0017496675247820883;123,0.0016906387084828804;124,0.0015479347369395545;125,0.0014427844421181564;126,0.001376634336010938;127,0.0013166597234091039;128,0.0012659761686036573;129,0.001211676333817581;130,0.001104467541161055;131,0.0010126140296530506;132,0.000969496845268615;133,0.0009271029168803051;134,0.000867740290121347;135,0.0007976957286503731;136,0.0007539665584230615;137,0.0007295983948612773;138,0.0007076781746709964;139,0.0006870375612430923;140,0.0006290658113997608;141,0.00059663056172734;142,0.0005724293033954309;143,0.000562581894832792;144,0.0005297015645473708;145,0.0005145131886287244;146,0.0004878083518486868;147,0.00045019904005013387;148,0.0003926167357431778;149,0.000365077372813764;150,0.00034721851321711393;151,0.0003220714585825785;152,0.0002920285172050362;153,0.0002584805660001139;154,0.00023850757349171077;155,0.00021547465176892838;156,0.0001725243726143679;157,0.00013975531248219678;158,0.0001453744552213297;159,0.00015210629949296417;160,0.0001437610379992024;161,0.0001338023592833134;162,0.00013335727867031275;163,0.0001296297285364325;164,0.00011505333846066197;165,0.00010570664558764883;166,0.00009252113242750527;167,0.00007783347219848458;168,0.00006837550917222127;169,0.00006659518672021875;170,0.00006130985444083633;171,0.000053020228023699644;172,0.000049459583119694636;173,0.00004500877698968837;174,0.000037275501338802474;175,0.000035717719193300295;176,0.000029264050304791206;177,0.00002442379863840939;178,0.00001930537158890218;179,0.000016746158064148577;180,0.000013519323619894036;181,0.00001034812425226457;182,0.000010960110095140432;183,0.000010626299635389962;184,0.000006843114424884635;185,0.00000400572551700564;186,0.0000003894455363755483;187,0.0000017246873753774284;188,0.0000020028627585028196;189,0.0000016690522987523497;190,0.00000033381045975046994;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.0001597283049905999;82,0.0005486174905998975;83,0.0009470759093887086;84,0.0011017414224064263;85,0.0010947870378282916;86,0.0010926729049165384;87,0.001078263420070643;88,0.001041822444881217;89,0.0010210705613000626;90,0.001028525661567823;91,0.0010252431920469436;92,0.0010190120634649348;93,0.0010267453391158206;94,0.001023351599441691;95,0.0009959235066655274;96,0.0009741145566284967;97,0.0009935868334472742;98,0.0009875226100951404;99,0.000968773589272489;100,0.0009757836089272489;101,0.0010028222561670368;102,0.0010123914893465505;103,0.000984240140574261;104,0.0009570902231812225;105,0.0009502471087563379;106,0.0009333896805389392;107,0.0009149188350994133;108,0.0008898830506181279;109,0.0008728030820942289;110,0.0008226758780550333;111,0.0007603645922349457;112,0.0007303216508574033;113,0.0006991103728707344;114,0.0006803057169714579;115,0.0006558819183330484;116,0.0006095935345809833;117,0.0005851141008659488;118,0.0005673108763459237;119,0.0005690911987979263;120,0.0005808301999658178;121,0.0005761568535293112;122,0.0005630269754457928;123,0.0005517886899675268;124,0.0005266416353329915;125,0.0004905344706033157;126,0.0004866956503161852;127,0.00047579117529766987;128,0.000448919433287757;129,0.0004397396456446192;130,0.00042933588631572945;131,0.0004034099406084429;132,0.0003754811321426537;133,0.00037325572907765054;134,0.0003668020601891414;135,0.0003450487452287358;136,0.0003354795120492223;137,0.00033425554036347065;138,0.00030081885931179854;139,0.0002814578526462713;140,0.00027261187546288385;141,0.0002781197480487666;142,0.0002811796772631459;143,0.00027722958682276533;144,0.0002576460398507377;145,0.00026076160414174215;146,0.00026816106933287754;147,0.00025280578818435593;148,0.00023350041659545376;149,0.00023071866276419984;150,0.0002253220603315672;151,0.0002000637355437817;152,0.00018865854483564063;153,0.0001707440501623654;154,0.00016723904033498548;155,0.00016473546188685694;156,0.00015472114809434283;157,0.00015761417207884693;158,0.00014420611861220303;159,0.00012590217840255228;160,0.00012184081780892156;161,0.00011494206830741181;162,0.00011026872187090525;163,0.00011177086893978237;164,0.0001075982381929015;165,0.0000896281084430012;166,0.00008495476200649459;167,0.00009057390474562751;168,0.0000818948327921153;169,0.00007332703099185325;170,0.00006765225317609525;171,0.00006448105380846579;172,0.00006642828149034353;173,0.00006876495470859683;174,0.00006564939041759244;175,0.00005485618555232724;176,0.00004706727482481627;177,0.000045732032985814386;178,0.00004601020836893978;179,0.000045620762832564233;180,0.000044062980687062034;181,0.00004111432162593289;182,0.000027372457699538543;183,0.000012907337777018172;184,0.000004450806130006266;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.000000055635076625078326;26,0.00000016690522987523497;27,0.00000033381045975046994;28,0.00000033381045975046994;29,0.00000011127015325015665;30,0;31,0;32,0;33,0.00000027817538312539174;34,0;35,0.00000016690522987523505;36,0.0000005563507662507835;37,0.000000055635076625078345;38,0.0000005563507662507835;39,0.0000007232559961260185;40,0.00000027817538312539174;41,0.000000055635076625078326;42,0;43,0.00000011127015325015665;44,0.000000166905229875235;45,0.00000016690522987523492;46,0.000000055635076625078326;47,0.00000033381045975047005;48,0.00000022254030650031333;49,0.000000500715689625705;50,0.00000033381045975046994;51,0.0000006676209195009399;52,0.0000008901612260012533;53,0.0000009457963026263317;54,0.0000006676209195009401;55,0.000000500715689625705;56,0.0000010014313792514098;57,0.0000011683366091266446;58,0.00000016690522987523497;59,0;60,0.0000003894455363755483;61,0.00000033381045975047;62,0.00000027817538312539163;63,0.00000011127015325015666;64,0.0000015577821455021932;65,0.0001338023592833134;66,0.00027222242992650826;67,0.00042777810417022726;68,0.0005594663305417877;69,0.0007247581431948954;70,0.0008682966408875974;71,0.0010240192203611917;72,0.0011844707813479178;73,0.0011964879578989346;74,0.001219465244545092;75,0.001256963286190395;76,0.0012919577493875692;77,0.001301916428103458;78,0.0013020833333333335;79,0.0012974099868968266;80,0.0012917352090810689;81,0.0012809420042158037;82,0.0012670332350595338;83,0.0013095940686777188;84,0.001354324670284282;85,0.0013937143045348373;86,0.0013995559875804706;87,0.0014121851499743635;88,0.0014280411468125106;89,0.0014307672655671393;90,0.0014399470532102773;91,0.0014429513473480319;92,0.0014820628062154617;93,0.0014854009108129663;94,0.0014749971514840768;95,0.0014739400850282002;96,0.0014752196917905771;97,0.0014599756807953056;98,0.001475108421637327;99,0.0014606989367914316;100,0.001451852959608044;101,0.0014377216501452743;102,0.0014703238050475702;103,0.0014692667385916938;104,0.0014393350673674015;105,0.001436775853842648;106,0.0014534107417535464;107,0.0014598087755654304;108,0.0014549128888224237;109,0.001433827194781519;110,0.00136712073790805;111,0.0013059777886970888;112,0.0012791060466871757;113,0.0012447792044095027;114,0.0011621611156212614;115,0.0010914489332307868;116,0.0010406541082720903;117,0.0010337553587705804;118,0.0010354800461459578;119,0.0010417668098045918;120,0.001061739802312995;121,0.0010398195821227142;122,0.0010017651897111604;123,0.0009799006045975046;124,0.0009796224292143792;125,0.0009364496097533185;126,0.0008779215091437361;127,0.0008556118434170797;128,0.0008689086267304733;129,0.0008455975296245656;130,0.000799030970489375;131,0.0007405585049564177;132,0.0007297653000911525;133,0.0007138536681763801;134,0.0007076225395943713;135,0.0006783028542129549;136,0.0006135436250213638;137,0.00058238798211132;138,0.0005877845845439526;139,0.0006012482730872216;140,0.0005915121346778329;141,0.0005753223273799351;142,0.0005651967434341707;143,0.0005400496887996353;144,0.0005322051429954993;145,0.0005437772389335156;146,0.0005404947694126359;147,0.0005111750840312197;148,0.00048469278755768237;149,0.00047562427006779464;150,0.0004520906326553865;151,0.0004106981356463282;152,0.00038543981085854264;153,0.00038265805702728884;154,0.0003719761223152738;155,0.00034488183999886057;156,0.0003512242387341195;157,0.000346606527374238;158,0.0003088859454224349;159,0.0002649898699652481;160,0.00024907823805047567;161,0.00025280578818435593;162,0.00026192994075086885;163,0.000254252300176608;164,0.00024401544607759352;165,0.00023745050703583432;166,0.00022743619324332024;167,0.0002046258118270381;168,0.00019500094357089958;169,0.00019266427035264625;170,0.00018365138793938356;171,0.0001797569325756281;172,0.00016234315359197856;173,0.0001488794650487096;174,0.00013547141158206573;175,0.00012718178516492906;176,0.00011588786461003817;177,0.00010542847020452342;178,0.00009925297669913973;179,0.00010865530464877797;180,0.00011494206830741184;181,0.00010759823819290147;182,0.00008912739275337548;183,0.0000865125441519968;184,0.00008606746353899617;185,0.00009029572936250213;186,0.00007761093189198427;187,0.00006998892639434854;188,0.00006754098302284508;189,0.00006882058978522189;190,0.00007071218239047456;191,0.00007076781746709964;192,0.00005546817139520309;193,0.00004072487608955734;194,0.00004078051116618241;195,0.0000485137868170683;196,0.00005018283911582065;197,0.000045509492679314074;198,0.00004345099484418618;199,0.00004111432162593288;200,0.000038499473024554203;201,0.0000331028705919216;202,0.00003093310260354355;203,0.000029987306300917216;204,0.000026426661396912208;205,0.000022476570956531646;206,0.00001880465589927648;207,0.000017413778983649518;208,0.000019082831282401867;209,0.000016467982681023187;210,0.000014353849769270209;211,0.000009847408562638864;212,0.000007788910727510967;213,0.000006175493505383695;214,0.00000628676365863385;215,0.000008400896570386827;216,0.000008790342106762377;217,0.000008011451034011282;218,0.000007399465191135419;219,0.000007788910727510967;220,0.000006286763658633852;221,0.0000026148486013786817;222,0.0000017246873753774284;223,0.0000012239716857517235;224,0.0000013908769156269584;225,0.0000015577821455021936;226,0.000000500715689625705;227,0;228,0;229,0;230,0;231,0;232,0.0000002225403065003133;233,0.000001168336609126645;234,0.0000014465119922520365;235,0.00000100143137925141;236,0.00000133524183900188;237,0.0000008901612260012532;238,0.0000002225403065003133;239,0.0000009457963026263317;240,0.000001947227681877742;241,0.0000022254030650031335;242,0.0000007788910727510967;243,0.0000009457963026263317;244,0.000001835957528627585;245,0.0000015021470688771152;246,0.0000004450806130006266;247,0;248,0;249,0.0000002225403065003133;250,0.0000005563507662507834;251,0.0000006119858428758617;252,0.0000004450806130006266;253,0;254,0;255,0;256,0;257,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000005563507662507833;50,0.00000005563507662507833;51,0.00000011127015325015666;52,0.00000005563507662507831;53,0;54,0.00000011127015325015665;55,0;56,0;57,0.000000055635076625078326;58,0.000000166905229875235;59,0.0000002781753831253917;60,0.00000022254030650031328;61,0.00000011127015325015664;62,0.00000011127015325015666;63,0.00000005563507662507833;64,0.00000022254030650031333;65,0.00004122559177918304;66,0.00008617873369224635;67,0.00013725173403406825;68,0.00018715639776676352;69,0.00023989845040733778;70,0.0002996505227026719;71,0.00037041834016977155;72,0.000450310310203384;73,0.00046505360550902985;74,0.00048485969278755766;75,0.0004980452059477013;76,0.0004940394804306956;77,0.0005155146200079759;78,0.0005218013836666098;79,0.0005491182062895231;80,0.0005748216116903094;81,0.0005792167827436904;82,0.0005829443328775708;83,0.0006028060552327238;84,0.0006401928267247764;85,0.0006611116155358058;86,0.0006561044586395489;87,0.0006686779859568165;88,0.000642807675326155;89,0.000629343986782886;90,0.0006174380803851195;91,0.0005961854811143395;92,0.0005727074787785564;93,0.0005352650722098787;94,0.0005124546907935964;95,0.0005152920797014755;96,0.0004997142582464536;97,0.00047111782886116336;98,0.00047695951190679657;99,0.0004468609354526292;100,0.0004156496574659603;101,0.0003983471486355609;102,0.00037420152538027694;103,0.0003560088553238763;104,0.0003379274554207258;105,0.0003477192289067396;106,0.00031500580385119355;107,0.0002905820052127841;108,0.000293308123967413;109,0.00026498986996524804;110,0.00023355605167207886;111,0.00019038323221101807;112,0.00016773975602461116;113,0.00015928322437759926;114,0.0001419807155471999;115,0.000125012017176551;116,0.0001096567360280294;117,0.00009480217056913347;118,0.00008656817922862188;119,0.000078834903577736;120,0.00006837550917222127;121,0.000054911820628952314;122,0.00004979339357944511;123,0.000038666378254429445;124,0.000027928808465789318;125,0.000018749020822651396;126,0.000011627731014641373;127,0.000004172630746880875;128,0.0000005563507662507834;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0.00000005563507662507831;18,0;19,0;20,0.00000011127015325015662;21,0;22,0;23,0.00000005563507662507831;24,0.00000005563507662507831;25,0;26,0.00000005563507662507831;27,0.00000011127015325015662;28,0;29,0.00000005563507662507831;30,0.00000005563507662507831;31,0.00000005563507662507831;32,0;33,0;34,0;35,0.00000005563507662507831;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000009124152566512845;46,0.00006220001566683759;47,0.00015906068407109896;48,0.00025325086879735654;49,0.0003506122528912437;50,0.00046694519811428243;51,0.0005484505853700222;52,0.0006595538333903036;53,0.0007588068100894434;54,0.0008372522681308038;55,0.0009385081075884464;56,0.001041210459038341;57,0.0011775163967697828;58,0.0013143230501908502;59,0.00141335348658349;60,0.0014776120000854556;61,0.0015876581816498606;62,0.0016481891450179458;63,0.0017283036553580584;64,0.0017797104661596307;65,0.001652695586224577;66,0.0014866248824987184;67,0.001294795138295448;68,0.0010741464244003874;69,0.0008349712299891756;70,0.0006005806521677205;71,0.00030933102603543556;72,0.000003783185210505327;73,0.000004450806130006267;74,0.0000037275501338802476;75,0.000002781753831253916;76,0.000005841683045633225;77,0.000005229697202757363;78,0.000007065654731384949;79,0.000006119858428758616;80,0.000004506441206631346;81,0.000004395171053381189;82,0.000004450806130006267;83,0.000007622005497635732;84,0.000006398033811884008;85,0.000004116995670255797;86,0.000005285332279382442;87,0.000008679071953512221;88,0.000007010019654759871;89,0.000005841683045633225;90,0.000005730412892383068;91,0.00000400572551700564;92,0.000005952953198883382;93,0.000006509303965134165;94,0.000006453668888509086;95,0.000007622005497635732;96,0.000007176924884635104;97,0.000006008588275508461;98,0.000004617711359881502;99,0.000006620574118384321;100,0.000008178356263886515;101,0.000006175493505383694;102,0.0000058416830456332254;103,0.000005062791972882128;104,0.000007399465191135417;105,0.000007455100267760497;106,0.0000068987495015097135;107,0.000006175493505383694;108,0.000007232559961260184;109,0.000006119858428758616;110,0.0000066762091950094005;111,0.000005452237509257677;112,0.000005786047969008147;113,0.00000600858827550846;114,0.0000037831852105053263;115,0.0000036719150572551698;116,0.000004450806130006266;117,0.000005229697202757363;118,0.000004895886743006893;119,0.000004116995670255797;120,0.0000041726307468808745;121,0.000004005725517005639;122,0.0000039500904403805615;123,0.0000031155642910043864;124,0.0000020028627585028196;125,0.0000025035784481285248;126,0.000003894455363755483;127,0.000001168336609126645;128,0.0000023366732182532896;129,0.0000018915926052526631;130,0.0000020584978351278983;131,0.0000017803224520025062;132,0.0000017246873753774282;133,0.0000015577821455021932;134,0.00000233667321825329;135,0.00000200286275850282;136,0.0000007788910727510966;137,0.00000022254030650031336;138,0.0000005007156896257049;139,0.0000012796067623768017;140,0.00000044508061300062676;141,0.00000033381045975046994;142,0.00000011127015325015665;143,0.00000011127015325015665;144,0.00000027817538312539174;145,0;146,0;147,0;148,0;149,0;150,0;151,0.00000011127015325015665;152,0;153,0.00000005563507662507834;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0002340011322850795;2,0.0011914808010026776;3,0.002125593737537743;4,0.0023123050546915054;5,0.002326269458924401;6,0.0023148642682162598;7,0.0022681864389278187;8,0.0022639025380276874;9,0.002249659958411667;10,0.002264403253717313;11,0.002346576261892554;12,0.002509587036404033;13,0.0026601355537514957;14,0.002784646855238421;15,0.0027917681450464306;16,0.00277346420483678;17,0.0027845355850851707;18,0.0027887638509086765;19,0.0027563842363128805;20,0.0027180516685182017;21,0.0026744337684441403;22,0.00268494879792628;23,0.0026895108742095368;24,0.0026482852824303536;25,0.0026091181884862983;26,0.0026039997614367913;27,0.0025849725652310144;28,0.002552370410328719;29,0.002563274885347234;30,0.002551980964792343;31,0.002531006540904689;32,0.0024855526833019994;33,0.0024978480352361417;34,0.0024839949011564973;35,0.0024962902530906396;36,0.0025022988413661486;37,0.002512034979775537;38,0.0024983487509257674;39,0.002465468420640346;40,0.002431030308209423;41,0.00242924998575742;42,0.0024737580470574833;43,0.002460961979433715;44,0.0024439932810630663;45,0.002432087374665299;46,0.0024348691284965538;47,0.0024346465881900526;48,0.0024523385425568277;49,0.0024521160022503274;50,0.0023915850388822424;51,0.002442546769070814;52,0.002433867697117302;53,0.002406662144647639;54,0.0023822939810858542;55,0.0023794565921779753;56,0.0023795678623312255;57,0.002391974484418618;58,0.0023982056130006264;59,0.002380958739246853;60,0.0023656590931749556;61,0.0023765635681934714;62,0.002356256765225318;63,0.002328884307525779;64,0.002304404873810744;65,0.0020089269818549535;66,0.0017098884449951576;67,0.0014203635062382497;68,0.0011270553822708368;69,0.0008332465426137982;70,0.0005645291225146699;71,0.00028490722739702616;72,0.0000033381045975047003;73,0.0000050071568962570495;74,0.000004784616589756737;75,0.0000039500904403805615;76,0.000003171199367629465;77,0.000003115564291004387;78,0.0000039500904403805615;79,0.000003894455363755484;80,0.000004840251666381814;81,0.000005563507662507834;82,0.00000367191505725517;83,0.000002726118754628838;84,0.0000036162799806300915;85,0.0000036162799806300915;86,0.000004228265823505953;87,0.0000016134172221272719;88,0.0000003894455363755483;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000005563507662507833;25,0.00000016690522987523497;26,0;27,0.00000044508061300062666;28,0.00000016690522987523497;29,0.00000016690522987523502;30,0.000000500715689625705;31,0.000000500715689625705;32,0.0000005563507662507833;33,0.0000007788910727510965;34,0.0000009457963026263318;35,0.0000008901612260012532;36,0.00000066762091950094;37,0.0000004450806130006267;38,0.0000011127015325015668;39,0.000001502147068877115;40,0.0000011127015325015668;41,0.0000016690522987523501;42,0.0000011127015325015668;43,0.0000010570664558764883;44,0.0000015577821455021932;45,0.0000010570664558764883;46,0.0000016134172221272719;47,0.0000017803224520025066;48,0.0000024479433715034465;49,0.0000020584978351278987;50,0.00000200286275850282;51,0.0000011127015325015668;52,0.0000016134172221272717;53,0.0000014465119922520367;54,0.000001390876915626958;55,0.0000011127015325015668;56,0.00000133524183900188;57,0.0000011127015325015665;58,0.0000010570664558764885;59,0.000001724687375377428;60,0.0000015577821455021934;61,0.0000007232559961260183;62,0.0000016134172221272715;63,0.0000012239716857517233;64,0.0000041726307468808745;65,0.0002895805738335328;66,0.0005626375299094173;67,0.0008537202508118271;68,0.0011319512690138437;69,0.0013945488306842135;70,0.001709387729305532;71,0.002001861327123569;72,0.002222899486555005;73,0.0022079892860194838;74,0.0022138866041417423;75,0.0022106041346208628;76,0.002218059234888623;77,0.002260008082663932;78,0.0022298538711331395;79,0.0022316341935851424;80,0.0022252361597732582;81,0.00222657140161226;82,0.0022340265018800202;83,0.002240090725232154;84,0.0022636799977211876;85,0.0022994533519911124;86,0.0020292894198997323;87,0.0011096416032871873;88,0.00021680989360793026;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.00044146433301999664;2,0.0005773251901384379;3,0.0007065654731384949;4,0.000837363538284054;5,0.000963154446533356;6,0.0010556199438842362;7,0.001170450742038398;8,0.0013132103486583491;9,0.0014150781739588674;10,0.0015098247094513758;11,0.0016781208162422378;12,0.0019675901199225207;13,0.0022809268714749616;14,0.0025247754123226794;15,0.002630760233293454;16,0.0027317378973679713;17,0.0028791152153478036;18,0.003048134578134792;19,0.003196457692417251;20,0.003294709237737139;21,0.003434631455449211;22,0.0035299343417079703;23,0.003612886240955962;24,0.003745854074089899;25,0.0039359591309177915;26,0.0041033094414060275;27,0.004223203031533071;28,0.00433931343644961;29,0.00446026409303253;30,0.004571256070899561;31,0.0046810240770808415;32,0.004760582236654703;33,0.004921200702871304;34,0.005074141528513644;35,0.0052006556927590725;36,0.005250949802028143;37,0.005442612641001538;38,0.005537915527260297;39,0.005659366899532843;40,0.005772973726001253;41,0.005769579986327124;42,0.005707324335583661;43,0.005569516250783342;44,0.005399439821540478;45,0.00525189559833077;46,0.005058452436905373;47,0.0049003375491368985;48,0.004809708009314647;49,0.004677908512789836;50,0.004521017596707115;51,0.004408300931464708;52,0.0042639835426992526;53,0.0041006945928046485;54,0.003979910841451603;55,0.0038222410342961316;56,0.003658952084401527;57,0.0035062337990656865;58,0.0033995257220987866;59,0.003271620680937731;60,0.0031304744915399076;61,0.002987158534153706;62,0.0028112960569418328;63,0.002671985825072637;64,0.0025301163796786876;65,0.002073018590127044;66,0.0016699980950549763;67,0.0012817208952885547;68,0.000980735130746881;69,0.0006840332671053381;70,0.00041904339714009004;71,0.00019277554050589645;72,0.0000016134172221272717;73,0.000001168336609126645;74,0.0000019472276818777414;75,0.0000015577821455021932;76,0.0000008345261493761751;77,0.0000012239716857517233;78,0.000001057066455876488;79,0.0000012796067623768015;80,0.0000004450806130006266;81,0.0000007788910727510966;82,0.0000005563507662507832;83,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0.0000001112701532501567;52,0.00000005563507662507835;53,0.00000005563507662507833;54,0.000000055635076625078306;55,0.00000005563507662507834;56,0.000000055635076625078326;57,0.00000016690522987523497;58,0.00000005563507662507832;59,0.000000055635076625078345;60,0;61,0.000000055635076625078345;62,0.00000005563507662507831;63,0.000000055635076625078345;64,0.00000022254030650031333;65,0.00001947227681877742;66,0.0000421157530051843;67,0.00007082345254372473;68,0.00009619304748476043;69,0.00011855834828804192;70,0.00014426175368882814;71,0.0001792562168860024;72,0.00021425068008317665;73,0.00022354173787956475;74,0.00023505819874095594;75,0.0002370610614994588;76,0.00025102546573235344;77,0.0002601496182988663;78,0.00027133226870050705;79,0.0002600939832222412;80,0.00024913387312710075;81,0.0002491338731271008;82,0.00023822939810858544;83,0.00023633780550333275;84,0.00021258162778442432;85,0.00020579414843616476;86,0.00020584978351278983;87,0.00019728198171252778;88,0.00018704512761351337;89,0.00017452723537287072;90,0.00016417911112060615;91,0.00015416479732809204;92,0.0001546098779410927;93,0.00013880951617957043;94,0.00013981094755882186;95,0.0001274043254714294;96,0.00011661112060616419;97,0.00011722310644904005;98,0.00010409322836552157;99,0.00009346692873013161;100,0.000084509681393494;101,0.00008183919771549022;102,0.0000737164765282288;103,0.00006197747536033727;104,0.0000570259535407053;105,0.00004907013758331909;106,0.00003605152965305076;107,0.0000341599370477981;108,0.000022810381416282117;109,0.000017135603600524127;110,0.000012740432547142938;111,0.0000031155642910043864;112,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00006793042855922064;62,0.00016729467541161055;63,0.00025875874138323935;64,0.0003225721742722042;65,0.0002788986391215177;66,0.00023772868241895973;67,0.00019555729433715037;68,0.00015677964592947073;69,0.00011894779382441748;70,0.00007894617373098615;71,0.00003888891856092975;72,0.0000010014313792514098;73,0.0000005563507662507833;74,0.000000500715689625705;75,0.0000005563507662507834;76,0.0000007788910727510966;77,0.0000006676209195009401;78,0.000000834526149376175;79,0.0000011127015325015668;80,0.0000009457963026263315;81,0.0000003894455363755483;82,0.00000022254030650031333;83,0.0000006676209195009401;84,0.0000006119858428758616;85,0.0000002781753831253917;86,0.0000004450806130006266;87,0.0000002225403065003133;88,0.00000016690522987523497;89,0;90,0.00000011127015325015665;91,0;92,0.000000166905229875235;93,0.0000003894455363755484;94,0.00000044508061300062666;95,0.0000002225403065003133;96,0.00000011127015325015668;97,0;98,0.00000011127015325015666;99,0.000000166905229875235;100,0.00000016690522987523502;101,0.00000044508061300062666;102,0.00000011127015325015669;103,0.00000005563507662507833;104,0.00000022254030650031336;105,0;106,0;107,0;108,0.00000011127015325015666;109,0.000000500715689625705;110,0.0000008345261493761751;111,0.0000003894455363755483;112,0.00000005563507662507833;113,0;114,0;115,0;116,0.00000011127015325015666;117,0.00000011127015325015666;118,0.0000002781753831253917;119,0.00000033381045975047;120,0.0000005563507662507834;121,0.0000007232559961260182;122,0.00000038944553637554825;123,0.00000005563507662507833;124,0;125,0.00000011127015325015665;126,0.0000002225403065003133;127,0.0000002225403065003133;128,0.000000055635076625078326;129,0;130,0;131,0;132,0;133,0;134,0.00000011127015325015665;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0.00000011127015325015665;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0.00000011127015325015661;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0008445960982453142;2,0.0008925535342961316;3,0.0009243211630490514;4,0.0009711658975673674;5,0.0009992059761864069;6,0.0010260220831196946;7,0.0010621848829259956;8,0.0010975131565829203;9,0.0011261652210448358;10,0.0011448029717142367;11,0.0011810770416737881;12,0.0012233040648322226;13,0.0012667550596764086;14,0.0012152926137982112;15,0.0009970918432746537;16,0.0007581391891699424;17,0.0007499608329060559;18,0.000758584269782943;19,0.0007949139748191193;20,0.0008300197081695436;21,0.0008641796452173418;22,0.0009008431607132683;23,0.0009291614147154332;24,0.0009546979148863442;25,0.0009608177733151028;26,0.0010048807540021648;27,0.0010331433729277048;28,0.0010959553744374182;29,0.001116429082635447;30,0.0010982920476556714;31,0.0011344548474619721;32,0.001176737505697032;33,0.0012132341159630832;34,0.0012614697273970262;35,0.0012989677690423292;36,0.0013202760033897338;37,0.0013480379066256479;38,0.0013911550910100838;39,0.0014127971358172393;40,0.0014225889093032532;41,0.001471603411809947;42,0.001521396805389392;43,0.0015588392119580698;44,0.001567518283911582;45,0.0016011775052697545;46,0.0016642676821625932;47,0.0016437383388879393;48,0.0016234871709964109;49,0.0015455424286446762;50,0.0015098803445280009;51,0.001480115578533584;52,0.0014295432938813879;53,0.0014052307653962285;54,0.001378359023386316;55,0.0013512647410699025;56,0.001336966526377257;57,0.0012995797548852046;58,0.0012568520160371446;59,0.0012377691847547429;60,0.0011706732823448984;61,0.0011568757833418787;62,0.0011305047570215917;63,0.0010698625235002566;64,0.0010454387248618469;65,0.0008945563970546345;66,0.0007490150366034295;67,0.0006027504201560987;68,0.00046822480487665924;69,0.0003289145730074631;70,0.00020584978351278983;71,0.00010192346037714352;72,0.00000044508061300062666;73,0.00000011127015325015668;74,0.00000022254030650031328;75,0.0000006676209195009398;76,0.0000006676209195009401;77,0.0000007232559961260182;78,0.00000011127015325015666;79,0.0000002781753831253917;80,0.0000002225403065003133;81,0.00000022254030650031333;82,0;83,0.00000016690522987523502;84,0.00000044508061300062666;85,0.0000003338104597504701;86,0.00000033381045975047005;87,0.00000011127015325015666;88,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000011127015325015668;29,0.0000002781753831253917;30,0.00000011127015325015666;31,0.0000003894455363755483;32,0.00000022254030650031333;33,0.00000066762091950094;34,0.0000013352418390018798;35,0.0000006119858428758617;36,0.0000002781753831253917;37,0.0000004450806130006267;38,0.0000003894455363755483;39,0.00000066762091950094;40,0.00000011127015325015669;41,0.00000044508061300062666;42,0.0000017803224520025066;43,0.0000014465119922520367;44,0.0000016690522987523501;45,0.00000166905229875235;46,0.0000016134172221272719;47,0.0000014465119922520365;48,0.00000044508061300062666;49,0.0000009457963026263317;50,0.000000834526149376175;51,0.0000006119858428758616;52,0.0000009457963026263316;53,0.0000012796067623768017;54,0.0000016134172221272715;55,0.0000010014313792514098;56,0.000001168336609126645;57,0.0000009457963026263318;58,0.0000016134172221272715;59,0.0000006676209195009401;60,0.0000011127015325015668;61,0.0000007788910727510966;62,0.0000010570664558764885;63,0.000001390876915626958;64,0.0000018915926052526633;65,0.00019845031832165443;66,0.00039139276405742606;67,0.0005912339592947075;68,0.0007772776555289694;69,0.000973613840938871;70,0.0011287244345695893;71,0.0013140448748077248;72,0.0015223426016920184;73,0.0015478791018629294;74,0.0015310216736455307;75,0.0015289631758104026;76,0.001504483742095368;77,0.0015154438521905087;78,0.0015467107652538028;79,0.0015422043240471714;80,0.0015290744459636528;81,0.0015263483272090243;82,0.0015366408163846636;83,0.0015452642532615508;84,0.0015399789209821681;85,0.0015058746190109952;86,0.0015036492159459921;87,0.001494413793226229;88,0.0014996434904289862;89,0.0015187819567880133;90,0.0015124395580527542;91,0.0015046506473252435;92,0.001483064237594713;93,0.0014940243476898535;94,0.001455135429128924;95,0.0014452880205662849;96,0.0014523536752976698;97,0.0014322137775593913;98,0.0014144661881159914;99,0.0013783033883096908;100,0.0014120182447444883;101,0.0014114062589016122;102,0.0013688454252834274;103,0.0013564388031960348;104,0.0013428082094228905;105,0.001323391567680738;106,0.001343197654959266;107,0.0013265071319717426;108,0.0013048650871645873;109,0.0012801631131430526;110,0.0012113425233578304;111,0.0010858297904916539;112,0.0010437140374864695;113,0.0010027109860137867;114,0.0009328889648493135;115,0.0008903281312311286;116,0.0008423706951803109;117,0.00082734922449154;118,0.0008171123703925256;119,0.0008134960904118953;120,0.000798307714493249;121,0.0007846771207201048;122,0.0007818397318122259;123,0.0007733275650885889;124,0.0007510735344385574;125,0.0007129635069503789;126,0.0006903756658405971;127,0.0006562713638694239;128,0.0006283981904802597;129,0.0005939600780493362;130,0.0005699813600239274;131,0.0005551824296416567;132,0.0005274205264057426;133,0.0005134561221728478;134,0.0005114532594143452;135,0.000490089389990315;136,0.0004629951076739018;137,0.00043478812382498713;138,0.0004174856149945878;139,0.0003982915135589358;140,0.0003954541246510568;141,0.00039856968894206115;142,0.0003482199445963653;143,0.00018164852518088076;144,0.00003388176166467271;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0001009220289978921;2,0.00013463688543268956;3,0.00017947875719250271;4,0.0002257671409445679;5,0.00024740918575172333;6,0.00027355767176551014;7,0.0003052140303651797;8,0.0003400415883324788;9,0.0003604596614538825;10,0.00039367380219905424;11,0.00043378669244573576;12,0.0004948740065800718;13,0.0005771026498319375;14,0.0006663969478151883;15,0.0007111275494217512;16,0.0007526313165840597;17,0.0007807826653563494;18,0.0008091565544351393;19,0.0008447073683985644;20,0.0009123039864980345;21,0.0009526394170512164;22,0.0009698862908049906;23,0.0010038236875462884;24,0.001052560014669857;25,0.0010671364047456274;26,0.0010711977653392582;27,0.0010879439234034068;28,0.0010825473209707742;29,0.0010789866760667693;30,0.0011174305140146984;31,0.0011829686342790407;32,0.00121801873255284;33,0.0012453355551757534;34,0.0012927922755369451;35,0.0013400820906682618;36,0.0013663418468352988;37,0.0013907100103970832;38,0.0014604207614083062;39,0.0015202284687802657;40,0.001571023293738962;41,0.0015937780400786191;42,0.001600788059733379;43,0.0016304415555745458;44,0.0016373959401526804;45,0.0016827385276021191;46,0.0017440483820429556;47,0.0017723666360451203;48,0.0017764836317153763;49,0.0018401857944510911;50,0.0018697280201390076;51,0.0019018294593516776;52,0.0019290350118213412;53,0.002004754351108073;54,0.0020565506074460204;55,0.002023837182390474;56,0.0019925702693271807;57,0.002051098369936763;58,0.0021349960654873813;59,0.0021754984012704384;60,0.002224457268700507;61,0.0022627898364951863;62,0.002234304677263146;63,0.0022072660300233578;64,0.0021969735408477187;65,0.0020019725972768186;66,0.0017384848743804478;67,0.0014457887362559108;68,0.0011627731014641372;69,0.0008829286660399931;70,0.0005892867316128297;71,0.0002923066925881616;72,0.000004061360593630719;73,0.000004617711359881501;74,0.000007399465191135418;75,0.000006231128582008773;76,0.000005897318122258304;77,0.000006119858428758617;78,0.000004450806130006267;79,0.000004450806130006266;80,0.000005174062126132285;81,0.000004395171053381189;82,0.000004395171053381189;83,0.0000035606449040050133;84,0.000005285332279382441;85,0.000005786047969008146;86,0.0000033381045975046994;87,0.000003894455363755483;88,0.0000041726307468808745;89,0.000003894455363755484;90,0.000003894455363755484;91,0.000004172630746880875;92,0.000004228265823505952;93,0.0000037831852105053267;94,0.0000030599292143793086;95,0.000002948659061129152;96,0.000003059929214379308;97,0.0000035050098273799346;98,0.0000036719150572551698;99,0.000006064223352133538;100,0.000005062791972882128;101,0.000004228265823505954;102,0.000003894455363755483;103,0.000004116995670255797;104,0.000005507872585882755;105,0.000004395171053381189;106,0.000003727550133880248;107,0.000004395171053381189;108,0.0000027261187546288386;109,0.000002503578448128525;110,0.0000022254030650031335;111,0.00000400572551700564;112,0.00000634239873525893;113,0.0000071212898080100265;114,0.000004728981513131658;115,0.0000033381045975047;116,0.0000030599292143793086;117,0.000003783185210505327;118,0.0000021141329117529766;119,0.0000014465119922520367;120,0.0000021697679883780552;121,0.0000015577821455021936;122,0.0000020028627585028196;123,0.00000300429413775423;124,0.000003616279980630092;125,0.0000035606449040050133;126,0.0000030042941377542303;127,0.0000030599292143793086;128,0.000002781753831253916;129,0.0000016134172221272715;130,0.000001168336609126645;131,0.0000005007156896257049;132,0;133,0.00000011127015325015665;134,0.0000009457963026263317;135,0.000002169767988378055;136,0.000002559213524753603;137,0.000001502147068877115;138,0.0000011127015325015668;139,0.00000011127015325015668;140,0;141,0;142,0;143,0.00000022254030650031333;144,0.00000022254030650031333;145,0;146,0;147,0.000000055635076625078326;148,0;149,0;150,0;151,0.00000016690522987523497;152,0;153,0.00000038944553637554835;154,0.00000033381045975046994;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.00000022254030650031322;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000016690522987523497;13,0.00000033381045975046994;14,0.0000005563507662507831;15,0.00000044508061300062645;16,0.0000005563507662507831;17,0.0000007232559961260181;18,0.000000890161226001253;19,0.0000013352418390018798;20,0.0000011683366091266448;21,0.00000100143137925141;22,0.0000008901612260012533;23,0.0000008345261493761751;24,0.0000014465119922520367;25,0.000002114132911752977;26,0.0000013908769156269587;27,0.0000018915926052526636;28,0.0000013908769156269584;29,0.0000005563507662507834;30,0.0000017246873753774284;31,0.0000014465119922520367;32,0.000001446511992252037;33,0.0000016134172221272719;34,0.000001168336609126645;35,0.0000016134172221272719;36,0.0000009457963026263318;37,0.0000012239716857517233;38,0.000001168336609126645;39,0.000001502147068877115;40,0.00000100143137925141;41,0.0000008901612260012534;42,0.0000015021470688771152;43,0.000001168336609126645;44,0.0000007232559961260183;45,0.0000008901612260012534;46,0.0000005563507662507834;47,0.00000044508061300062676;48,0.0000007232559961260183;49,0.0000008901612260012534;50,0.0000013908769156269584;51,0.0000018915926052526631;52,0.0000016690522987523497;53,0.000002726118754628838;54,0.00000300429413775423;55,0.00000200286275850282;56,0.000002225403065003133;57,0.000002225403065003133;58,0.0000010014313792514098;59,0.0000010570664558764883;60,0.0000011127015325015665;61,0.0000005563507662507833;62,0.0000007232559961260182;63,0.000000500715689625705;64,0.0000013352418390018798;65,0.00011149269355665698;66,0.00021614227268842935;67,0.0003289145730074631;68,0.0004380149582692417;69,0.0005484505853700222;70,0.0006468690359197858;71,0.0007496270224463056;72,0.000858727407708084;73,0.0008862111355608727;74,0.000867183939355096;75,0.0008474891222298183;76,0.0008263477931122886;77,0.0007575272033270666;78,0.00043217327522360844;79,0.00007916871403748647;80,0.0000003894455363755484;81,0.0000013352418390018802;82,0.0000016134172221272719;83,0.0000018915926052526631;84,0.000001502147068877115;85,0.00000044508061300062666;86,0.0000002781753831253917;87,0;88,0;89,0.00000011127015325015665;90,0.00000022254030650031336;91,0.0000003894455363755483;92,0.0000011127015325015668;93,0.0000013908769156269584;94,0.0000010570664558764885;95,0.0000006119858428758616;96,0.0000010570664558764885;97,0.0000014465119922520367;98,0.0000016690522987523503;99,0.0000021141329117529766;100,0.000001168336609126645;101,0.000000834526149376175;102,0.0000007232559961260183;103,0.0000007232559961260183;104,0.0000007788910727510968;105,0.00000027817538312539174;106,0.00000011127015325015668;107,0.0000002781753831253917;108,0.000000500715689625705;109,0.0000002781753831253917;110,0.00000022254030650031336;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.0000002225403065003133;27,0.00000016690522987523497;28,0.0000010570664558764885;29,0.0000005007156896257051;30,0.00000011127015325015669;31,0.00000027817538312539163;32,0.0000006119858428758616;33,0.0000007788910727510967;34,0.00000027817538312539174;35,0.0000002781753831253917;36,0.0000020028627585028196;37,0.0000033381045975046994;38,0.000003505009827379935;39,0.0000030042941377542295;40,0.0000022254030650031335;41,0.0000027817538312539165;42,0.00000600858827550846;43,0.0000053966024326325986;44,0.0000029486590611291516;45,0.0000030599292143793077;46,0.000002893023984504073;47,0.0000016134172221272715;48,0.0000017246873753774282;49,0.0000039500904403805615;50,0.0000035606449040050137;51,0.000004450806130006267;52,0.000004562076283256423;53,0.000005118427049507206;54,0.000004840251666381814;55,0.000004005725517005639;56,0.000004283900900131031;57,0.000004840251666381815;58,0.0000066762091950094005;59,0.000006008588275508459;60,0.00000500715689625705;61,0.000004728981513131658;62,0.000007176924884635104;63,0.0000051740621261322856;64,0.00000934669287301316;65,0.0008239554848174101;66,0.0016162546110351508;67,0.0023737818143622176;68,0.0030632673189768126;69,0.0037959812781290948;70,0.0044221540655443505;71,0.005030968709052583;72,0.0056160271748419074;73,0.0054680935060958235;74,0.0053555437460832914;75,0.005198374654617444;76,0.00511703617259158;77,0.005070080167920014;78,0.004971606082293625;79,0.00476297454494958;80,0.004576541403178944;81,0.004523688080385119;82,0.004477956047399305;83,0.004399955669970946;84,0.004225762245057825;85,0.004096299421751267;86,0.004006059327465391;87,0.0038649687731441926;88,0.003688271769782943;89,0.0035247602795818378;90,0.003392014986754401;91,0.003273679178772859;92,0.003135092202899789;93,0.0030182029069104996;94,0.002894247956189825;95,0.0027568849520025066;96,0.0026408301821625934;97,0.0025040791638181507;98,0.0024043254714293852;99,0.002307242262718624;100,0.0021966397303879682;101,0.0020561055268330203;102,0.0018937623732410416;103,0.0017606832699538543;104,0.001648578590554321;105,0.001501590718110864;106,0.0013204429086196095;107,0.0012089502150629521;108,0.0011517017212157466;109,0.0010812677142083976;110,0.0009363939746766934;111,0.0007223658349000172;112,0.0005792724178203157;113,0.0004729537863897909;114,0.0003822129764142882;115,0.0003162297755369453;116,0.00022304102218993906;117,0.00014392794322907765;118,0.00008439841124024383;119,0.00003844383794792913;120,0.000009736138409388708;121,0.000001057066455876488;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000004063779510005721;110,0.000027848001540636862;111,0.00005729195875081895;112,0.00009013196116480074;113,0.00012641449733166434;114,0.00015423010807021716;115,0.0001758983830018141;116,0.00020124348641455288;117,0.0002287936210809491;118,0.00025305845155883873;119,0.00027345615286889673;120,0.0003085598074630614;121,0.0003326592067382418;122,0.0003641607168943428;123,0.00037781553762680537;124,0.0004090314644683825;125,0.0004153461968476024;126,0.00042048646973562136;127,0.0004248348120798052;128,0.0004308109339620929;129,0.00043708405342054904;130,0.00044115516527081644;131,0.00045360521446625394;132,0.0004543133900306045;133,0.0004491891046680016;134,0.00043747342336578776;135,0.00043388099238879255;136,0.00045316508507270827;137,0.00044336495876608716;138,0.0004465540354375506;139,0.0004366083583971772;140,0.0004443214134189909;141,0.0004605247893259296;142,0.00045493304837385736;143,0.0004645852050303514;144,0.000439385690146933;145,0.00041063342963329686;146,0.0003879692036798607;147,0.00036357976121309;148,0.00032962255959397186;149,0.0003024877226327091;150,0.0002734510882627366;151,0.0002438217437897515;152,0.00021481988134266963;153,0.00019152681272286928;154,0.00019412469111405458;155,0.00016619501335019297;156,0.0001443173887654532;157,0.00013597212727169144;158,0.00013163259129493534;159,0.00011633294522303879;160,0.00009869662593288897;161,0.00008378642539736797;162,0.00008478785677661936;163,0.00007304885560872787;164,0.00006281200150971344;165,0.000060308423061584916;166,0.00005769357446020623;167,0.00004100305147268273;168,0.000034938828120549195;169,0.00003065492722041816;170,0.000028985874921665815;171,0.000019472276818777416;172,0.000011071380248390588;173,0.000005118427049507206;174,0.0000035050098273799346;175,0.0000021141329117529766;176,0.00000066762091950094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000005563507662507835;29,0.00000005563507662507835;30,0.00000005563507662507834;31,0.00000011127015325015668;32,0;33,0;34,0.00000011127015325015668;35,0.00000022254030650031333;36,0.0000005563507662507834;37,0.000000166905229875235;38,0.00000005563507662507833;39,0.00000011127015325015666;40,0.0000003338104597504699;41,0.00000044508061300062655;42,0.00000038944553637554825;43,0.00000033381045975047005;44,0.000000055635076625078326;45,0.00000044508061300062666;46,0.0000008345261493761751;47,0.00000011127015325015666;48,0.00000044508061300062655;49,0.0000005007156896257049;50,0.0000009457963026263316;51,0.0000006676209195009399;52,0.0000006119858428758616;53,0.00000044508061300062666;54,0.00000027817538312539163;55,0.000000500715689625705;56,0.0000007788910727510967;57,0.00000044508061300062666;58,0.00000066762091950094;59,0.0000006119858428758616;60,0.0000008901612260012533;61,0.00000044508061300062655;62,0.0000006119858428758617;63,0.0000012239716857517233;64,0.0000023923082948783687;65,0.0001838739282458839;66,0.00039384070742892947;67,0.0005912339592947074;68,0.0008080994879792628;69,0.0010358138566057083;70,0.0012666994245997833;71,0.0015259588816726485;72,0.0017294719919671853;73,0.001802687752805788;74,0.0018485866910214778;75,0.0018480303402552268;76,0.0017893353344157694;77,0.001779933006466131;78,0.001726745873212556;79,0.0016914175995556315;80,0.001649913832393323;81,0.0015998422634307524;82,0.0015463769547940523;83,0.0014932454566171025;84,0.0014405590390531532;85,0.0013853134079644504;86,0.00136372699823392;87,0.0013119307418959722;88,0.001277882075001424;89,0.0012170173011735886;90,0.0011857503881102945;91,0.0011337315914658462;92,0.0010728111825613856;93,0.0010250206517404435;94,0.0009877451504016405;95,0.0009360601642169428;96,0.0008866005810972482;97,0.0008736376082436051;98,0.0008090452842818891;99,0.0007608096728479462;100,0.0007022259371617387;101,0.0006514867472796671;102,0.0006213325357488748;103,0.0005606346671509143;104,0.00052552893380049;105,0.0005033305382270836;106,0.00044318902039537395;107,0.0004033543055318179;108,0.00036407594143451265;109,0.00031806573306557284;110,0.00026782725887312714;111,0.00021480703084942744;112,0.00018932616575514157;113,0.00018070272887825444;114,0.00016467982681023187;115,0.00015800361761522246;116,0.00015672401085284565;117,0.00014748858813308266;118,0.0001409236490913234;119,0.00014114618939782374;120,0.0001470991425967071;121,0.00014281524169657608;122,0.00014008912294194724;123,0.00012679233962855353;124,0.00013163259129493534;125,0.00012784940608443;126,0.00011672239075941433;127,0.00005902881629920811;128,0.000010515029482139806;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00040413319660456904;2,0.0005323720482253746;3,0.0006675096493476897;4,0.0007759424136899675;5,0.0008695206125733492;6,0.0009726124095596194;7,0.001069083632427505;8,0.0011849158619609184;9,0.0013072017603828405;10,0.0014384449061414003;11,0.0015613427904061982;12,0.0017560655585939725;13,0.0020272865571412295;14,0.0022526642525494216;15,0.002407719211103515;16,0.002586085266763516;17,0.002676047185666268;18,0.002798388719164815;19,0.002934138306130006;20,0.0030539206261037998;21,0.003120070732211018;22,0.003237905824502934;23,0.003423170629664445;24,0.0035445107317837407;25,0.0036220660285991;26,0.0037718912899504364;27,0.003928058950037031;28,0.004005781152082265;29,0.004089845752862758;30,0.004208292830997551;31,0.004245790872642853;32,0.0042441774554207255;33,0.004357005390816385;34,0.00455284086053666;35,0.004793518202016749;36,0.0049521338054748475;37,0.005021232570643195;38,0.00506752095439526;39,0.0051658837698683995;40,0.00529451206702558;41,0.005385364147154332;42,0.00554648332906056;43,0.005668546687175981;44,0.005723235967498433;45,0.00584151614040335;46,0.006033123344300119;47,0.0061435033363242755;48,0.006192796014214094;49,0.0063569751253347;50,0.006544799144020965;51,0.006720216540619837;52,0.0068055607481627076;53,0.006887900661567822;54,0.006907539843616476;55,0.007065766001538199;56,0.00726989109767561;57,0.007394569304392412;58,0.0073886719862701535;59,0.007299099512903777;60,0.007132917539024668;61,0.0069948312788412235;62,0.006879332859767561;63,0.006729062517803225;64,0.006511362462969293;65,0.005523784217797527;66,0.00460291242949923;67,0.0037588726820201677;68,0.0028870153962285644;69,0.002146846336808523;70,0.0014285418625021363;71,0.0007028935580812396;72,0.000011850271321141684;73,0.00001168336609126645;74,0.000008790342106762375;75,0.000007788910727510967;76,0.000007955815957386202;77,0.00000773327565088589;78,0.00000906851748988777;79,0.000009124152566512845;80,0.00000968050333276363;81,0.00001068193471201504;82,0.000009903043639263945;83,0.00000767764057426081;84,0.000007733275650885888;85,0.00000634239873525893;86,0.00000534096735600752;87,0.00000500715689625705;88,0.000003950090440380562;89,0.000002559213524753603;90,0.0000041169956702557975;91,0.000004395171053381189;92,0.000005174062126132285;93,0.0000031155642910043864;94,0.0000020584978351278983;95,0.000001947227681877742;96,0.000002503578448128525;97,0.000004506441206631346;98,0.000002781753831253916;99,0.0000028373889078789947;100,0.0000025035784481285243;101,0.00000233667321825329;102,0.0000033381045975047;103,0.000001168336609126645;104,0.0000007232559961260183;105,0.0000011127015325015668;106,0.0000009457963026263318;107,0.00000022254030650031333;108,0.0000009457963026263318;109,0.0000013352418390018802;110,0.0000007232559961260183;111,0.00000033381045975046994;112,0.0000005007156896257049;113,0.00000044508061300062666;114,0.0000003894455363755483;115,0.00000033381045975047;116,0.00000011127015325015666;117,0.00000016690522987523497;118,0.0000011127015325015668;119,0.0000006119858428758617;120,0.00000022254030650031336;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.0000008901612260012533;62,0.0000014465119922520367;63,0.000001502147068877115;64,0.0000015577821455021938;65,0.0000034493747507548568;66,0.000002114132911752977;67,0.000002447943371503447;68,0.0000010570664558764883;69,0.000003171199367629465;70,0.0000028373889078789956;71,0.0000013908769156269584;72,0.0000007232559961260185;73,0.0000027261187546288386;74,0.0000036997325955677095;75,0.0000008901612260012535;76,0;77,0.0000013352418390018802;78,0.000000500715689625705;79,0.0000009457963026263316;80,0.00000016690522987523502;81,0.00000022254030650031336;82,0.0000002225403065003133;83,0.0000008901612260012532;84,0.0000010014313792514098;85,0.00000300429413775423;86,0.0000025035784481285248;87,0.0000023366732182532896;88,0.00000233667321825329;89,0.000002114132911752976;90,0.0000012796067623768015;91,0.00000022254030650031333;92,0.000003171199367629465;93,0.000004994986723245313;94,0.000008719059664836496;95,0.000004509918398920413;96,0.000003838820287130405;97,0.000003953567632669629;98,0.000002840866100168063;99,0.0000029486590611291516;100,0.000004123177345436362;101,0.00000400572551700564;102,0.000005841683045633225;103,0.000004061360593630717;104,0.000005730412892383069;105,0.00000600858827550846;106,0.000005285332279382442;107,0.000004621188552170569;108,0.000016993038716672363;109,0.000036402726074246565;110,0.00007204916282562097;111,0.00001613069502898365;112,0.000018387392824588388;113,0.000020325927525743466;114,0.00005062096534424315;115,0.00012455302779439413;116,0.0002684218587545576;117,0.0004485473737128268;118,0.0005403643747017961;119,0.0005935758483013943;120,0.00048389535145938967;121,0.00029311050353898434;122,0.0002896995710807586;123,0.00024009259364347738;124,0.00020970386481052223;125,0.00010872195083431843;126,0.00003520831052295192;127,0.000006745753040790747;128,0.0000018915926052526633;129,0;130,0;131,0;132,0;133,0;134,0;135,0.0000026704836780037604;136,0.0000017246873753774282;137,0.00000022254030650031333;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.000000166905229875235;48,0.00000011127015325015668;49,0.00000005563507662507833;50,0.000000055635076625078326;51,0.00000022254030650031338;52,0.000000055635076625078326;53,0.00000022254030650031333;54,0.00000022254030650031333;55,0.0000003894455363755483;56,0.00000038944553637554835;57,0.00000066762091950094;58,0.0000005007156896257051;59,0.0000008901612260012531;60,0.0000006676209195009399;61,0.0000007788910727510966;62,0.0000003894455363755483;63,0.0000005007156896257049;64,0.000000834526149376175;65,0.00010904475018515353;66,0.00022765873354982054;67,0.0003602371211473822;68,0.0005001593388594542;69,0.0006525438137355438;70,0.0008108812418105167;71,0.0009267134713439298;72,0.0010251319218936932;73,0.0009983158149604056;74,0.0009485780564575857;75,0.0009242098928958013;76,0.0008670726692018458;77,0.0008141637113313963;78,0.0007816728265823505;79,0.0007289307739417764;80,0.000687538276932718;81,0.0006519318278926678;82,0.000596574926650715;83,0.0005393820678801345;84,0.0004851378681706831;85,0.00046794662949353386;86,0.00041670672392183673;87,0.0003742015253802769;88,0.0003219601884293283;89,0.00028190293325927194;90,0.00023884138395146125;91,0.00019783833247877854;92,0.00015755853700222185;93,0.00010019877300176608;94,0.00005797174984333162;95,0.000023923082948783683;96,0.000004562076283256423;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.00000005563507662507833;64,0.0000008901612260012533;65,0.000042393928388309696;66,0.00007772220204523442;67,0.00011750128183216543;68,0.00016340022004785506;69,0.00019633618540990143;70,0.00023105247322395032;71,0.0002680497991796274;72,0.00031077753802768754;73,0.00031489453369794334;74,0.00032129256750982737;75,0.00031094444325756277;76,0.0003015421153079246;77,0.00030304426237680164;78,0.00029525535164929076;79,0.00030571474605480545;80,0.00030493585498205433;81,0.0003078288789665584;82,0.0003076063386600581;83,0.0003099986469549364;84,0.00031244659032643994;85,0.0003125578604796901;86,0.0003066605423574318;87,0.0003013195750014243;88,0.0002917503418219108;89,0.0003009301294650487;90,0.00030399005867942804;91,0.00030782887896655845;92,0.00030699435281718226;93,0.00030304426237680164;94,0.0002934750291972882;95,0.00029130526120891014;96,0.00028446214678402556;97,0.00028390579601777474;98,0.00027811974804876655;99,0.0002704977425511309;100,0.00027244497023300857;101,0.0002814022175696462;102,0.0002801782458838945;103,0.0002880784267646556;104,0.0002822367437190224;105,0.00027745212712926564;106,0.0002735020366888851;107,0.00025708968908448696;108,0.0002547530158662337;109,0.00025208253218822994;110,0.0002448499722269697;111,0.00022242903634706317;112,0.00021230345240129893;113,0.000200286275850282;114,0.00018654441192388765;115,0.0001806470938016293;116,0.00017764279966387512;117,0.00017742025935737482;118,0.00017474977567937105;119,0.00016629324403235913;120,0.0001656256231128582;121,0.00017085532031561556;122,0.00016946444339998863;123,0.00016807356648436165;124,0.00015672401085284565;125,0.00014954708596821056;126,0.0001450962798382043;127,0.00013942150202244627;128,0.00012885083746368143;129,0.0001201161304335441;130,0.00011700056614253975;131,0.00011399627200478553;132,0.00010821022403577734;133,0.00010743133296302626;134,0.00010665244189027515;135,0.00010181219022389337;136,0.00009469090041588332;137,0.00009235422719763004;138,0.00008868231214037487;139,0.00009151970104825386;140,0.00008840413675724946;141,0.00008718016507149775;142,0.00007744402666210904;143,0.00007610878482310716;144,0.00007043400700734915;145,0.00006436978365521564;146,0.00006442541873184071;147,0.00006247819104996297;148,0.00006464795903834102;149,0.0000659832008773429;150,0.00005936262675895858;151,0.00005663650800432974;152,0.000052130066797698385;153,0.00005224133695094855;154,0.00005079482495869652;155,0.00004512004714293852;156,0.000040947416396057655;157,0.000038666378254429445;158,0.00003660788041930154;159,0.00003432684227767333;160,0.00003104437275679371;161,0.00003326977582179684;162,0.000034493747507548566;163,0.000033325410898421926;164,0.000031711993676294644;165,0.000029542225687916593;166,0.000026927377086537913;167,0.00002370054264228337;168,0.00002264347618640688;169,0.000019194101435652026;170,0.000018025764826525376;171,0.000017246873753774283;172,0.000017191238677149207;173,0.000014798930382270838;174,0.000015132740842021308;175,0.000015244010995271462;176,0.000014409484845895288;177,0.000014520754999145446;178,0.000012128446704267075;179,0.000011627731014641371;180,0.000008734707030137297;181,0.000010570664558764882;182,0.000012517892240642625;183,0.00001168336609126645;184,0.000011516460861391214;185,0.000009235422719763003;186,0.000008623436876887141;187,0.000010626299635389959;188,0.000011961541474391843;189,0.000010236854099014412;190,0.000006787479348259556;191,0.000002948659061129152;192,0.0000006676209195009399;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000033381045975047;49,0.0000002781753831253917;50,0;51,0;52,0.00000005563507662507832;53,0.00000033381045975047;54,0.00000022254030650031336;55,0.00000005563507662507835;56,0.00000005563507662507833;57,0.0000002225403065003133;58,0.00000022254030650031328;59,0.00000011127015325015666;60,0;61,0.00000005563507662507834;62,0.00000005563507662507833;63,0.000000166905229875235;64,0.0000003894455363755483;65,0.00004189321269868398;66,0.00009113025551187831;67,0.00014147999985757422;68,0.00020017500569703185;69,0.0002596489026092406;70,0.0003078845140431835;71,0.00038377075855979036;72,0.0004616042307582749;73,0.00047835038882242353;74,0.0005016058508517063;75,0.0005160153356976015;76,0.0005292564839343701;77,0.0005458357367686436;78,0.00056464039266792;79,0.0005909557839115819;80,0.0006016933537002223;81,0.000624948815729505;82,0.0006236692089671282;83,0.0006418062439469036;84,0.0006749091145388253;85,0.0006933243249017262;86,0.0007104599285022504;87,0.0007218651192103914;88,0.0007275398970261494;89,0.0007406697751096679;90,0.0007697112851079587;91,0.0008005887526348772;92,0.000800421847405002;93,0.0008221751623654077;94,0.0008263477931122886;95,0.0008253463617330371;96,0.0008673508445849712;97,0.0008881027281661255;98,0.0008878801878596251;99,0.0009023453077821454;100,0.000912637796957785;101,0.000905516507149775;102,0.0009066848437589016;103,0.0008685191811940978;104,0.0008568914501794565;105,0.0008551111277274539;106,0.0008161665740898991;107,0.0008012563735543782;108,0.0007724374038625876;109,0.0007475128895345524;110,0.0007113500897282515;111,0.0006310130390816385;112,0.0005779371759813138;113,0.0005401053238762605;114,0.0005056672114453369;115,0.00047868419928217404;116,0.0004468053003760041;117,0.0004269435780208511;118,0.0004073043959721985;119,0.0003947308686549308;120,0.0003747578761465276;121,0.0003602371211473822;122,0.00035517432917450003;123,0.0003319745022218424;124,0.0003047689497521791;125,0.0002845734169372757;126,0.0002727787806927591;127,0.0002658243961146243;128,0.00024017662579046316;129,0.00021859021605993278;130,0.00021319361362730015;131,0.0001984503183216544;132,0.00017079968523899046;133,0.0001622318834387284;134,0.00015700218623597103;135,0.0001445955641485786;136,0.00013619466757819175;137,0.00011894779382441748;138,0.0001063186314305247;139,0.00009975369238876545;140,0.00009029572936250215;141,0.00008662381430524696;142,0.0000726594100723523;143,0.00006692899717996923;144,0.000063924703042215;145,0.00006503740457471658;146,0.00005452237509257677;147,0.000050961730188571746;148,0.000040836146242807496;149,0.00003577335426992537;150,0.00003432684227767333;151,0.000031767628752919734;152,0.000022476570956531646;153,0.000016523617757648263;154,0.000014020039309519738;155,0.000010515029482139805;156,0.000007622005497635732;157,0.000004562076283256423;158,0.0000033381045975047003;159,0.0000016134172221272717;160,0.00000011127015325015664;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "undergarden:shiverstone_froststeel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000639824791770236;66,0.00004325589988536249;67,0.000047997648169047374;68,0.000058453806919178134;69,0.00005405093640966659;70,0.00004930950355248135;71,0.00005070505324333486;72,0.00006850318119830516;73,0.0000480906749865974;74,0.00003598766076767547;75,0.00002922654174767916;76,0.0000283300413503844;77,0.00003567705823635532;78,0.00003344304319559103;79,0.000053215809609256004;80,0.00010744067973362907;81,0.000048551577387856497;82,0.00002597734023203453;83,0.00003217655094277305;84,0.00002388631625207227;85,0.000023389567514831518;86,0.000021286187044600937;87,0.00003058980736486756;88,0.000060037132233821286;89,0.000014670675068224286;90,0.00001018379482479358;91,0.000012821847211748233;92,0.0000181317369066076;93,0.000019998664072774676;94,0.000010589093876982481;95,0.000015423868978217384;96,0.000018259385211041507;97,0.0000175275648749476;98,0.000015933029062508996;99,0.000025761039938458586;100,0.000034627963412764203;101,0.00005254721257218275;102,0.00006496298245113972;103,0.00005460994759509622;104,0.00006845232638947403;105,0.00007371521410733885;106,0.00006153063470986994;107,0.00006764463226602222;108,0.00007929503688635887;109,0.00006685043291107655;110,0.00004965779612195901;111,0.00003982310300418562;112,0.000042198960541867404;113,0.000052127575328456084;114,0.00006052258304526941;115,0.00005389603456995443;116,0.00005122428297577244;117,0.000050418309983873;118,0.00005810718748156814;119,0.00004018347435146996;120,0.00002987510663061392;121,0.00004344328036889037;122,0.00004348206754269877;123,0.00003419046685777015;124,0.000035605922703589765;125,0.00003442784929858803;126,0.00002852704919924897;127,0.00002914633084595128;128,0.00003226196638174493;129,0.000032928267148186345;130,0.00003464653243365577;131,0.00002757808857509639;132,0.00003853011492539829;133,0.00003269878408405499;134,0.000026747248317959392;135,0.00003418708973709471;136,0.00003971723969952001;137,0.00004083322551232724;138,0.00003104164639708551;139,0.00003381624074434422;140,0.00003643652296230313;141,0.00003949945141571752;142,0.000031406378858582205;143,0.00002479167259119918;144,0.00001745422821378241;145,0.000016224123150536493;146,0.00002549004743268503;147,0.000026655898060825908;148,0.00002262982850497099;149,0.00002040880080747429;150,0.000021704596867818154;151,0.00002681509244377224;152,0.000022126589524645356;153,0.000017501490760494062;154,0.000021779901516057155;155,0.00002654161424003959;156,0.000023578233704200296;157,0.00001756696575901073;158,0.00002072374388171333;159,0.000020258037226295378;160,0.000019413798200021696;161,0.00001803465411569813;162,0.000014393956885772558;163,0.000012925231675552588;164,0.000018993632959763032;165,0.0000170087808538682;166,0.000007249663239697633;167,0.00001435551599540397;168,0.000026929304265031463;169,0.000020583859086222925;170,0.000009201172707451678;171,0.000008419977838518134;172,0.000008634293002275724;173,0.000017569636598610907;174,0.0000111675929344113;175,0.000004841440200314149;176,0.000007828364581512089;177,0.000013216198907270446;178,0.000017162383273543832;179,0.0000164033985444433;180,0.00001461829712654029;181,0.000017767635298110188;182,0.000010234760204327035;183,0.000008285331865760802;184,0.000007947047230548752;185,0.000008108370742367622;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.0000017799928800284801;157,0.00000917808828764685;158,0.000024141153435386258;159,0.000039493592025631904;160,0.000057126646493414034;161,0.00007982155571377715;162,0.00010129271982912069;163,0.00011586641153435385;164,0.00013255384478462085;165,0.00015274563901744392;166,0.00015825249199003205;167,0.00017710929156283377;168,0.00020647917408330368;169,0.00022338910644357422;170,0.00023985404058383765;171,0.0002599902100391599;172,0.0002854107333570666;173,0.00031783997864008546;174,0.00034437299750800996;175,0.0003774697401210395;176,0.00041418209327162694;177,0.00047470185119259515;178,0.000521426664293343;179,0.0005666496084015663;180,0.0006531461374154504;181,0.0007369726771092916;182,0.0008260279458882165;183,0.0009075182449270204;184,0.0009964622641509433;185,0.001158552865788537;186,0.0013220897116411534;187,0.0013711507653969383;188,0.0014272205411178353;189,0.001489075293698825;190,0.0015150520647917408;191,0.0000006674973300106799;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0.00000272561409754361;173,0.00001857867568529726;174,0.000050785421858312574;175,0.00008471653613385547;176,0.00011825827696689215;177,0.00015641687433250265;178,0.0002124310252758989;179,0.00026432894268422927;180,0.0003286311854752581;181,0.000412624599501602;182,0.0004837130651477394;183,0.0005855064079743682;184,0.0006726148095407619;185,0.000814124243503026;186,0.0009748242257030973;187,0.0010316727483090067;188,0.0010908575115699537;189,0.0011771871662513349;190,0.0012137882698469206;191,0.00000027812388750445;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_regalium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005134862273050908;66,0.00004657879805980776;67,0.000045181225525097905;68,0.000045348099857600575;69,0.00004544544321822713;70,0.00004199670701317195;71,0.00004276154770380919;72,0.00004351943529725881;73,0.000043860137059451764;74,0.000040140230064079744;75,0.0000217562411000356;76,0.0000025031149875400496;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0.0000015574937700249203;125,0.00000923371306514774;126,0.00002597677109291563;127,0.00003988296546813813;128,0.00004922792808828765;129,0.00006458036667853329;130,0.00008032217871128516;131,0.00009962397650409398;132,0.00011925952296190816;133,0.00013522383410466356;134,0.0001528012637949448;135,0.00016309184763260948;136,0.0001884567461730153;137,0.00020125044499822;138,0.00021565726237095055;139,0.00023456968672125311;140,0.00025498398006407977;141,0.0002748976504093984;142,0.0002928644535421858;143,0.000307438145247419;144,0.0002962019401922392;145,0.0003101081345674617;146,0.0003373086507653969;147,0.00036934852260590953;148,0.0003824759700961196;149,0.00041707458170167324;150,0.00043064702741189034;151,0.0004407707369170524;152,0.0004343182627269491;153,0.0004515063189747242;154,0.0004845474368102527;155,0.000475814346742613;156,0.0005114698291206835;157,0.0005406728373086509;158,0.0005602527589889641;159,0.0005902901388394446;160,0.0005986894802420791;161,0.0006207725169099324;162,0.0006423549305802777;163,0.000647249911000356;164,0.00067812166251335;165,0.000727182716269135;166,0.0007405326628693486;167,0.0007658419366322535;168,0.0007734069063723745;169,0.0008036667853328587;170,0.0008619059273762905;171,0.0008990076539693841;172,0.0009240388038447846;173,0.0009773829654681381;174,0.0010367902278390888;175,0.001095863741545034;176,0.0011381385724457103;177,0.0012012726949092206;178,0.0013240922036311855;179,0.001489798415806337;180,0.0016377046991812032;181,0.0017855553577785692;182,0.00195687967248131;183,0.00211813590245639;184,0.002227827963688145;185,0.002541496084015664;186,0.0028605598077607692;187,0.002874187878248487;188,0.0028742991278034886;189,0.0029740899786400857;190,0.0030861182805268783;191,0.0000007231221075115699;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000550184674261303;66,0.0005173104307582769;67,0.000522316660733357;68,0.0005161423104307583;69,0.0004999555001779992;70,0.0004936142755428978;71,0.0004877736739053044;72,0.0005033486116055536;73,0.0004978417586329654;74,0.0004993992524029904;75,0.0005074648451406195;76,0.000507742969028124;77,0.0004986205055179779;78,0.0004994548771804913;79,0.0004971186365254539;80,0.00050312611249555;81,0.000533997864008544;82,0.0005096898362406551;83,0.00046396626913492345;84,0.0003981621573513706;85,0.0003397561409754361;86,0.00030599190103239586;87,0.000271059540761837;88,0.0002142110181559274;89,0.00022800596297614808;90,0.00021871662513349947;91,0.00021365477038091848;92,0.0002163247597009612;93,0.00021059540761836956;94,0.0002106510323958704;95,0.00022500222499110005;96,0.000232622819508722;97,0.00024274652901388395;98,0.00025648584905660376;99,0.00028541073335706653;100,0.00031405749377002494;101,0.00031928622285510856;102,0.0003408686365254539;103,0.0003488229797080812;104,0.00033096742613029554;105,0.0003264618191527234;106,0.000335751156995372;107,0.0003288536845852617;108,0.0003354730331078676;109,0.0003495461018155928;110,0.0003430380028479886;111,0.00033274741901032393;112,0.00032623932004271984;113,0.00032395870416518336;114,0.00033124555001779995;115,0.00031494749021003917;116,0.0003187855998576006;117,0.0003126668743325027;118,0.0003248487006051976;119,0.0003419811320754717;120,0.00034353862584549663;121,0.00034448424706301175;122,0.00033419366322534714;123,0.00032184496262014956;124,0.0003073825204699182;125,0.0003138349946600214;126,0.0003034887860448558;127,0.00031227750088999644;128,0.00030955188679245287;129,0.00032195621217515134;130,0.00031700560697757213;131,0.00030793876824492704;132,0.00031183250266998935;133,0.0003224012103951584;134,0.0003265174439302243;135,0.0003187299750800997;136,0.0003281861872552511;137,0.00034192550729797086;138,0.0003417030081879673;139,0.000339311142755429;140,0.00032390307938768247;141,0.00032112184051263796;142,0.00033263616945532226;143,0.0003116656283374867;144,0.0003105531327874688;145,0.000320064969740121;146,0.00031183250266998935;147,0.0003031550373798505;148,0.0003176731043075828;149,0.00032045434318262725;150,0.0003321911712353151;151,0.0003336930402278391;152,0.0003257386970452118;153,0.0003281305624777501;154,0.00032618369526521895;155,0.0003258499466002136;156,0.0003351949092203632;157,0.00033063367746529013;158,0.00033413803844784624;159,0.0003293543075827697;160,0.0003192305980776077;161,0.0003373642755428979;162,0.0003507698469206124;163,0.00034248175507297973;164,0.0003474879850480598;165,0.0003432048771804913;166,0.00034987985048059804;167,0.0003492679779280883;168,0.00034860048059807763;169,0.0003418698825204699;170,0.00034971297614809537;171,0.0003861472054111784;172,0.0003905971876112496;173,0.00041084460662157356;174,0.00040578275186899256;175,0.0004046146315414738;176,0.00042018956924172305;177,0.00047870683517265935;178,0.0005298816304734781;179,0.0005541896582413671;180,0.0005792208081167675;181,0.0005999132253470986;182,0.000652756763972944;183,0.0006930847276610894;184,0.0007109959060163759;185,0.0008113986294054826;186,0.0005934051263794945;187,0.0005868970274118903;188,0.0005886770202919189;189,0.00043370639017443937;190,0.00016142310430758276;191,0.0000016687433250266997;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_utherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005456790672837309;66,0.00005156416874332503;67,0.000048949804200783205;68,0.000051508543965824135;69,0.00004856043075827697;70,0.000045334193663225345;71,0.00004922792808828765;72,0.00005100792096831613;73,0.00005212041651833394;74,0.00004956167675329299;75,0.000046891687433250266;76,0.00005067417230331079;77,0.00004911667853328587;78,0.00005028479886080456;79,0.000051063545745817016;80,0.000048115432538269845;81,0.00005128604485582058;82,0.000051842292630829476;83,0.00004956167675329298;84,0.000035766731933072266;85,0.00002981488074047704;86,0.000029759255962976147;87,0.00002347365610537558;88,0.000020191794232823068;89,0.0000205811676753293;90,0.00002252803488786045;91,0.00001791117835528658;92,0.000023640530437878246;93,0.0000228061587753649;94,0.000022138661445354218;95,0.000011069330722677107;96,0.00000233624065503738;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_regalium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0014503048237807048;66,0.0013645314168743328;67,0.0013615833036667853;68,0.0013395558917764332;69,0.0013224790850836598;70,0.0013069041473834104;71,0.001315804111783553;72,0.0012911623353506587;73,0.0012819286222855108;74,0.0011997708259166963;75,0.0006357912068351727;76,0.00007047659309362763;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0.00000027812388750445007;125,0.00000038937344250623;126,0.00000116812032751869;127,0.0000021693663225347102;128,0.00000228061587753649;129,0.00000361561053755785;130,0.0000033931114275542897;131,0.000004728106087575649;132,0.00000483935564257743;133,0.000006007475970096119;134,0.000006841847632609469;135,0.00000795434318262727;136,0.00000995683517265931;137,0.000010123709505161982;138,0.00001045745817016732;139,0.00001029058383766465;140,0.00001034620861516554;141,0.00001140307938768245;142,0.000014239943040227841;143,0.00001518556425774297;144,0.00001262682449270203;145,0.000016576183695265222;146,0.000016075560697757207;147,0.00001563056247775009;148,0.00001690993236027056;149,0.00001919054823780705;150,0.00001941304734781061;151,0.000022194286222855107;152,0.00002364053043787825;153,0.000022194286222855107;154,0.00002291740833036668;155,0.0000233624065503738;156,0.00001963554645781417;157,0.000022361160555357778;158,0.00002530927376290495;159,0.000024975525097899607;160,0.000028980509077963687;161,0.000028201762192951233;162,0.00002886925952296191;163,0.00003159487362050552;164,0.00003254049483802065;165,0.00003076050195799217;166,0.00003042675329298683;167,0.000030371128515485943;168,0.0000328186187255251;169,0.00004027233891064436;170,0.0000406060875756497;171,0.00003554423282306871;172,0.000045946066215735135;173,0.00004722543609825561;174,0.00004878292986828053;175,0.000052899163403346385;176,0.00005250978996084016;177,0.00005501290494838021;178,0.0000622441260234959;179,0.00006558161267354931;180,0.00007047659309362763;181,0.00007514907440370239;182,0.00008749777500889997;183,0.00009178088287646849;184,0.00009461774652901389;185,0.00011803577785688856;186,0.00010385145959416163;187,0.00010262771448914205;188,0.00009717648629405484;189,0.00008527278390886437;190,0.00005262103951584193;191,0.0000014462442150231399;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0.00000016687433250267;173,0.0000007231221075115699;174,0.0000020024919900320397;175,0.000003622563634745461;176,0.000005327617578418575;177,0.000008135123709505162;178,0.00000917808828764685;179,0.000010812066126735493;180,0.000014462442150231397;181,0.000017636144733198847;182,0.00001859953497686009;183,0.000022347254360982558;184,0.000031393233802064795;185,0.00003465423638305447;186,0.000028863078992128476;187,0.000031869520959416166;188,0.00003719520712194929;189,0.00003160646211581821;190,0.000023704846586863653;191,0.0000007300752046991812;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_utherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0016515552687789248;66,0.0015217270380918479;67,0.0015112695799216805;68,0.0015128270736917053;69,0.001509322712709149;70,0.0014745572267710928;71,0.0014736672303310785;72,0.0014776722143111428;73,0.0014469117123531508;74,0.001405137504449982;75,0.0013813300996796014;76,0.0013906194375222498;77,0.0013757676219295122;78,0.0013497908508365967;79,0.0013724301352794586;80,0.0013927331790672837;81,0.0013700382698469207;82,0.0012754205233179066;83,0.0010848500355998575;84,0.0009372775008899965;85,0.00083186854752581;86,0.00078937121751513;87,0.0007242902278390888;88,0.0005826139195443218;89,0.0005929045033819865;90,0.000583058917764329;91,0.0005795545567817728;92,0.0005809451762192953;93,0.0005842826628693486;94,0.0005591958882164472;95,0.0003171168565325739;96,0.00006268912424350304;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.016607500444998223;66,0.01559056826272695;67,0.015610481933072268;68,0.015521927287290852;69,0.015231065325738698;70,0.015016520558917765;71,0.01489492479530082;72,0.014745238519045925;73,0.01468177064791741;74,0.014533252491990032;75,0.01442133543965824;76,0.014404870505517978;77,0.01445443218227127;78,0.014557838643645425;79,0.014425117924528302;80,0.014333782039871842;81,0.01397255473478106;82,0.013061087130651478;83,0.011449748576005697;84,0.009748409131363475;85,0.008775309273762903;86,0.008329031683873264;87,0.007656806247775009;88,0.0060970318618725535;89,0.006028279636881453;90,0.006105264328942685;91,0.0061776321644713425;92,0.006236483179067284;93,0.006308239142043432;94,0.006493414026343894;95,0.006770481043075828;96,0.006936298504805981;97,0.0069756808472766114;98,0.00696622463510146;99,0.007026132520469918;100,0.00705311053755785;101,0.007030026254894981;102,0.007047881808472767;103,0.0070563367746529024;104,0.006991533908864364;105,0.006953987184051265;106,0.006895636792452831;107,0.006866711908152368;108,0.006856977572089713;109,0.0069355753826984695;110,0.006829665806336774;111,0.006588476771092916;112,0.00636931514773941;113,0.006309184763260948;114,0.006260290583837664;115,0.006249332502669989;116,0.006386447579209684;117,0.006603384211463155;118,0.0067797703809184765;119,0.006861816927732289;120,0.0068370082769668925;121,0.006838899519401922;122,0.0067891709683161276;123,0.006762582324670701;124,0.006852138216447135;125,0.0069558228017087935;126,0.006984747686009256;127,0.00686938189747241;128,0.0067011169455322185;129,0.006698446956212176;130,0.00666429334282663;131,0.006645269668921325;132,0.006726648718405127;133,0.006775709772160911;134,0.006852527589889641;135,0.006999655126379494;136,0.007035199359202563;137,0.0070558917764328944;138,0.007195120594517623;139,0.0071377714489142055;140,0.007097888483446066;141,0.007162691349234604;142,0.007097554734781061;143,0.006921446689213243;144,0.006778212887148452;145,0.006878337486650054;146,0.006931181025275899;147,0.006989142043431827;148,0.007184774385902457;149,0.007263594695621217;150,0.007202574314702742;151,0.007035922481310075;152,0.006811532128871485;153,0.0068195420968316135;154,0.006912546724813101;155,0.00699937700249199;156,0.007075749822000712;157,0.007231999822000713;158,0.007342637504449982;159,0.007370171769312922;160,0.007359603061587753;161,0.007282952118191528;162,0.007255195354218584;163,0.00738691482734069;164,0.00758004405482378;165,0.0076873442506229985;166,0.007807326895692418;167,0.007799761925952297;168,0.00770992791028836;169,0.007776288269846922;170,0.007961351904592382;171,0.008126390619437523;172,0.008406739498042009;173,0.008740376913492347;174,0.009037691349234604;175,0.009235437433250268;176,0.009422781683873265;177,0.010282295745817018;178,0.011059095763616947;179,0.011882064346742615;180,0.012772338910644358;181,0.013725080099679602;182,0.014603729085083658;183,0.01531750622997508;184,0.01564608179067284;185,0.018493903524385902;186,0.018701828942684233;187,0.018870594517621932;188,0.019026343894624424;189,0.01648774029903881;190,0.009737673549305803;191,0.00000239186543253827;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0010605976326094695;34,0.001071555713777145;35,0.0010671057315770737;36,0.001056314524741901;37,0.0010484714311142754;38,0.0010175996796012816;39,0.0009989097543609826;40,0.0009989653791384833;41,0.000997241011035956;42,0.0009996885012459951;43,0.0009984647561409755;44,0.0010092559629761482;45,0.0009893422926308295;46,0.0009937922748309007;47,0.000997741634033464;48,0.0009771604663581348;49,0.0009662023851904594;50,0.000956801797792809;51,0.0009550218049127803;52,0.0009633655215379138;53,0.0009878404236383055;54,0.0009769379672481312;55,0.0009590824136703454;56,0.0009699848700605197;57,0.0009512393200427197;58,0.0009442862228551086;59,0.0008971720363118547;60,0.0008455522427910289;61,0.0008187967248131009;62,0.0008206323424706302;63,0.0008148473656105376;64,0.0007591669633321468;65,0.0006005807226771092;66,0.0003866478284086864;67,0.00020269668921324316;68,0.00011709015663937346;69,0.000094562121751513;70,0.00009322712709149163;71,0.00009267087931648274;72,0.00009083526165895337;73,0.00009250400498398009;74,0.00008510590957636169;75,0.00008377091491634034;76,0.00007926530793876826;77,0.00006652723389106443;78,0.000046446689213243154;79,0.0000266998932004272;80,0.000017855553577785687;81,0.00001590868636525454;82,0.000015463688145247417;83,0.000011903702385190458;84,0.00000595185119259523;85,0.00000044499822000712;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0.0000019468672125311502;51,0.0000088373865254539;52,0.0000462294049261303;53,0.00010305359169188321;54,0.00007707682059896761;55,0.00007786252058116767;56,0.00003013124666251335;57,0.000037741411534353866;58,0.00005805314669366323;59,0.00027108909142488434;60,0.0009943363546858312;61,0.0025445954270870417;62,0.001517282270714667;63,0.00014451491022160912;64,0.000016155521315414736;65,0.0000066784498487006045;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0017089600391598434;34,0.0017168587575649699;35,0.0016986138305446776;36,0.0017105175329298684;37,0.0016845407618369527;38,0.0016128960484158065;39,0.001630250978996084;40,0.0016312522249911;41,0.0016290272338910646;42,0.0016308628515485939;43,0.0015831367924528305;44,0.0015729574581701674;45,0.0015516531683873267;46,0.0015643912424350304;47,0.0015999911000356003;48,0.0016180691527233892;49,0.0016275253648985405;50,0.0016240210039159843;51,0.001650498398006408;52,0.0016315859736561052;53,0.0015945954966180135;54,0.001596764862940548;55,0.0015284576361694552;56,0.0015724568351726596;57,0.001594039248843005;58,0.001585806781772873;59,0.0015911467604129586;60,0.001579131808472766;61,0.001606999822000712;62,0.0017097944108223568;63,0.0018778368636525452;64,0.0020042163581345676;65,0.0020548349056603776;66,0.0018950249199003203;67,0.0016447134211463156;68,0.0014758365966536136;69,0.0013674795300818799;70,0.0012423794054823782;71,0.0010996462264150945;72,0.0009738786044855821;73,0.0007811943752224992;74,0.0007292408330366679;75,0.0006979797080811676;76,0.0006110938056247774;77,0.0005298816304734782;78,0.0003845340868636525;79,0.00024664026343894623;80,0.00023818529725881096;81,0.0002263928444286223;82,0.0002006941972232111;83,0.00015435875756496974;84,0.00008382653969384122;85,0.00002731176575293699;86,0.00001624243503025988;87,0.000008788714845140619;88,0.00000956746173015308;89,0.000008009967960128159;90,0.00000528435386258455;91,0.0000038937344250623;92,0.00000255873976504094;93,0.0000011681203275186895;94,0.00000027812388750445;95,0.00000022249911000356001;96,0.00000022249911000356001;97,0.00000022249911000356007;98,0.00000133499466002136;99,0.00000133499466002136;100,0.0000008343716625133502;101,0.00000022249911000356001;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000005595021559829298;44,0;45,0.00000039631402715457523;46,0;47,0.000001340648934818957;48,0.000002833004722993146;49,0.000008751312651763963;50,0.000008984438550090183;51,0.00000437419942160793;52,0.000003814697265625;53,0.0000005595021559829298;54,0.0000015038370636473117;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000002228742391071469;44,0.000000055624777500890004;45,0;46,0.0000011341050997878074;47,0.00000034070176219295126;48,0.00000046064268867924534;49,0.0000003783163800902927;50,0.00000022249911000356;51,0.0000007301366254855079;52,0.00000040365476598503936;53,0;54,0.00000011994092648629405;55,0;56,0.00000011994092648629405;57,0.00000011994092648629405;58,0.00000011994092648629405;59,0.0000002364053043787824;60,0;61,0.0000014201701005695982;62,0.000003229713643645426;63,0.0000035947512459950163;64,0.000005382447481418281;65,0.000005551435217321441;66,0.000003764114111001763;67,0.0000026599348033648902;68,0.000004213576895692418;69,0.000003935453008187967;70,0.000001890524042983734;71,0.0000021060700557996825;72,0.000002113023152987294;73,0.0000020412732726503077;74,0.0000021056949266960955;75,0.0000019615236651135464;76,0.0000025733962176233357;77,0.000002677692675437505;78,0.0000028115397962990213;79,0.000003245358112317551;80,0.000004514298349056604;81,0.000003935453008187967;82,0.0000030715306826272697;83,0.0000022058700827696692;84,0.0000018008521715913141;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.00045111694553221784;34,0.00045328631185475254;35,0.0004623531505873977;36,0.0004579587931648274;37,0.000424750800996796;38,0.0004076739943040228;39,0.0004112339800640798;40,0.00040817461730153083;41,0.00041012148451406195;42,0.0004228595585617658;43,0.0004244726771092916;44,0.0004177977038091848;45,0.0004160177109291563;46,0.0004156839622641509;47,0.0004289226593093628;48,0.00042803266286934856;49,0.0004249176753292987;50,0.00041996707013171943;51,0.0004132920968316127;52,0.00042319330722677114;53,0.0004190770736917053;54,0.00041240210039159844;55,0.0003959927910288359;56,0.0003995527767888928;57,0.00039232155571377713;58,0.0003882609469562122;59,0.0003820309718761125;60,0.0003688478996084016;61,0.00035655482378070487;62,0.000345374243503026;63,0.0003329699181203275;64,0.0003033219117123532;65,0.0002311765752936988;66,0.0001366700783196867;67,0.00006641598433606266;68,0.00003387548949804201;69,0.00002603239587041652;70,0.000023473656105375583;71,0.00002275053399786401;72,0.00002425240299038804;73,0.00002119304022783909;74,0.000020136169455322182;75,0.000019413047347810607;76,0.000019413047347810607;77,0.00001857867568529726;78,0.00001034620861516554;79,0.0000035043609825560703;80,0.0000008343716625133501;81,0.00000066749733001068;82,0.0000005562477750088999;83,0.00000038937344250623;84,0.00000027812388750445;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.0000009443349076643818;45,0.0000023108602019776883;46,0.000004211011292779575;47,0.0000053329294132935385;48,0.000003814697265625;49,0.000005292657969777962;50,0.000009681252475407118;51,0.0000038003021816037736;52,0.0000053329294132935385;53,0.00000039631402715457523;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.00000039631402715457523;44,0.0000009443349076643818;45,0;46,0.000001340648934818957;47,0.000003803215990151877;48,0.000006848247752413973;49,0.000009310814807746892;50,0.000005143864924970834;51,0.00000737039227342943;52,0.0000011190043119658597;53,0.0000007926280543091505;54,0.0000005595021559829298;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0005985226059095763;34,0.0006087019401922393;35,0.0005988007297970809;36,0.0005857845318618726;37,0.0005872307760768958;38,0.0005802776788892846;39,0.0005793876824492703;40,0.000577997063011748;41,0.000539059718761125;42,0.0005459571911712353;43,0.00055124154503382;44,0.0005514084193663227;45,0.0005505184229263082;46,0.0005521315414738341;47,0.0005736027055891777;48,0.0005595296368814525;49,0.0005613652545389819;50,0.0005553577785688857;51,0.0005618102527589889;52,0.0005552465290138839;53,0.0005549127803488786;54,0.0005370572267710929;55,0.0005438434496262015;56,0.000559807760768957;57,0.0005586952652189392;58,0.0005514640441438234;59,0.0005273785154859381;60,0.0005020136169455321;61,0.00048132119971520113;62,0.0004615744037023852;63,0.00045451005695977217;64,0.00042180268778924893;65,0.000348934229263083;66,0.00021170790316838735;67,0.00011430891776432895;68,0.00006919722321110716;69,0.0000617435030259879;70,0.00005668164827340691;71,0.00005189791740833037;72,0.000050006674973300114;73,0.00004639106443574226;74,0.00004266420434318263;75,0.0000422748309006764;76,0.00003982734069063724;77,0.00003476548593805624;78,0.000035154859380562476;79,0.00003309674261302955;80,0.000032540494838020654;81,0.00003076050195799218;82,0.00002809051263794945;83,0.000022361160555357785;84,0.000013628070487718051;85,0.000007509344962620151;86,0.0000066749733001068;87,0.0000033374866500534;88,0.00000155749377002492;89,0.0000017799928800284801;90,0.00000116812032751869;91,0.00000088999644001424;92,0.0000005006229975080099;93,0.0000006118725525097899;94,0.00000005562477750089002;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0009128025987896048;34,0.0009125800996796012;35,0.0009124132253470986;36,0.0009377224991100035;37,0.0009537980598077608;38,0.0009295456568173728;39,0.0009108557315770738;40,0.0008985070309718762;41,0.0008926664293342828;42,0.0008972832858668567;43,0.0008812077251690994;44,0.0008719183873264508;45,0.0008655771626913493;46,0.0008577896938412246;47,0.0008774252402990388;48,0.0008869370772516911;49,0.0008784821110715558;50,0.0008781483624065504;51,0.0008839889640441438;52,0.0008753671235315059;53,0.0008730308828764684;54,0.0008572334460662159;55,0.000848500355998576;56,0.0008327029191883233;57,0.0008315904236383055;58,0.0008541184585261659;59,0.0008418810074759702;60,0.0008216892132431471;61,0.0008184629761480956;62,0.0008482222321110715;63,0.0008864920790316839;64,0.0009163625845496619;65,0.0008871039515841938;66,0.0007841424884300462;67,0.0006395180669277324;68,0.0005654814880740478;69,0.0005100235849056603;70,0.00047915183339266644;71,0.00043020202919188326;72,0.0003697935208259167;73,0.0003027100391598434;74,0.00028012637949448207;75,0.0002641620683517266;76,0.00024519401922392314;77,0.00020931603773584909;78,0.00015814124243503026;79,0.00009389462442150232;80,0.00009233713065147741;81,0.00008382653969384122;82,0.00008187967248131009;83,0.00006953097187611249;84,0.000049339177643289425;85,0.00001807805268778925;86,0.00001129182983268067;87,0.00000784309362762549;88,0.00000450560697757209;89,0.00000172436810252759;90,0.00000083437166251335;91,0.00000094562121751513;92,0.00000077874688501246;93,0.0000009456212175151299;94,0.0000008899964400142397;95,0.0000010568707725169098;96,0.0000008899964400142401;97,0.00000061187255250979;98,0.00000011124955500178003;99,0.00000016687433250266998;100,0.00000005562477750089;101,0.00000005562477750089;102,0.00000011124955500178;103,0;104,0;105,0.00000005562477750089;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0006315080989676041;34,0.0006400743147027413;35,0.0006407418120327518;36,0.000644746796012816;37,0.0006427999288002848;38,0.0006197712709149163;39,0.0006122619259522962;40,0.0006193262726949093;41,0.000617935653257387;42,0.0005882320220719117;43,0.0005787201851192596;44,0.0005639796190815237;45,0.0005749933250266999;46,0.0005921813812744749;47,0.0005994682271270915;48,0.0005905126379494482;49,0.0005862851548593806;50,0.0005843939124243504;51,0.000589567016731933;52,0.0006020825916696333;53,0.0005924038803844786;54,0.000596186365254539;55,0.0005907907618369528;56,0.0005961863652545391;57,0.0006143200427198291;58,0.0006282262370950517;59,0.0006399630651477395;60,0.0006501423994304022;61,0.0007040984336062657;62,0.0008169054823780706;63,0.0009720986116055538;64,0.0011559385012459952;65,0.0012952229441082238;66,0.0013264840690637237;67,0.0012403212887148452;68,0.0011577741189035243;69,0.0010643244927020293;70,0.0009825560697757209;71,0.0008957257920968317;72,0.0007197846208615166;73,0.0005803889284442862;74,0.0005307160021359914;75,0.00047625934496262014;76,0.00040667274830900684;77,0.00034437299750801;78,0.00027384077963688144;79,0.00015775186899252402;80,0.00015519312922748307;81,0.000144624421502314;82,0.00011670078319686721;83,0.00009422837308650767;84,0.00005234291562833748;85,0.00000923371306514774;86,0.00000461685653257387;87,0.0000030593627625489503;88,0.00000189124243503026;89,0.0000010012459950160203;90,0.0000011124955500177999;91,0.0000011681203275186898;92,0.0000007787468850124599;93,0.00000061187255250979;94,0.00000038937344250622997;95,0.00000022249911000356001;96,0.00000005562477750089;97,0.00000016687433250266998;98,0.00000016687433250266998;99,0.00000011124955500178;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0004540650587397651;34,0.000462186276254895;35,0.00047052999288002854;36,0.00047052999288002854;37,0.00046819375222499117;38,0.0004530081879672482;39,0.00044171635813456745;40,0.00044433072267710934;41,0.0004377113741545034;42,0.0004404926130295479;43,0.00042541829832680667;44,0.00042297080811676746;45,0.00043086952652189397;46,0.000426308294766821;47,0.00041796457814168746;48,0.00042825516197935213;49,0.000438434496262015;50,0.00043515263438946247;51,0.00043276076895692415;52,0.00042831078675685297;53,0.0004187433250266999;54,0.00041640708437166253;55,0.0004127914738341047;56,0.0004206901922392311;57,0.0004292564079743681;58,0.0004241945532217871;59,0.0003968271626913492;60,0.0003882053221787113;61,0.00037146226415094344;62,0.0003710728907084372;63,0.0003565548237807049;64,0.0003268511925952296;65,0.000248809629761481;66,0.00015652812388750447;67,0.0000806003025987896;68,0.0000483379316482734;69,0.00003304111783552866;70,0.0000305936276254895;71,0.000028813634745461016;72,0.000030426753292986826;73,0.00003209549661801353;74,0.000032317995728017084;75,0.000027256140975436102;76,0.000025142399430402278;77,0.000026978017087931647;78,0.000025921146315414738;79,0.00002364053043787825;80,0.000026199270202919187;81,0.00002386302954788181;82,0.00001963554645781417;83,0.000016798682805268778;84,0.000011180580277678889;85,0.000005729352082591669;86,0.000005506852972588109;87,0.00000378248487006052;88,0.0000030593627625489503;89,0.00000122374510501958;90,0.00000044499822000712003;91,0.0000006118725525097899;92,0.0000006118725525097901;93,0.00000016687433250266998;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000023108602019776883;44,0.0000005595021559829298;45,0.000001914546174823113;46,0.0000042254063768008015;47,0;48,0.000000955816183137505;49,0.000002833004722993146;50,0.000011021901410226076;51,0.0000018886698153287637;52,0.000005507598817595016;53,0.0000005595021559829298;54,0.000001914546174823113;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0;222,0.000012033520804962126;223,0.0000022926929064884953;224,0.000009740827898473631;225,0;226,0;227,0;228,0;229,0;230,0.000009740827898473631;231,0;232,0.000019481655796947263;233,0.0000022926929064884953;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0.000004585385812976991;240,0;241,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0.000012033520804962126;222,0.00002406704160992425;223,0.000029222483695420887;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0.000019481655796947263;232,0.000009740827898473631;233,0;234,0;235,0;236,0.0000022926929064884953;237,0;238,0.000004585385812976991;239,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0.0000022926929064884953;222,0;223,0.000012033520804962126;224,0;225,0;226,0;227,0;228,0;229,0.000009740827898473631;230,0;231,0;232,0;233,0;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0;240,0.000006878078719465486;241,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0.000031515176601909385;222,0.000012033520804962126;223,0.000009740827898473631;224,0.000019481655796947263;225,0;226,0;227,0;228,0;229,0;230,0.0000022926929064884953;231,0.000029222483695420887;232,0.000009740827898473631;233,0;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0.000006878078719465486;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0.000025159790145678563;105,0.00009991860703295396;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0.0000999152114068208;150,0.000029642069559197884;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0.000028996096064412404;163,0.000007887431833953407;164,0.00000509051414923692;165,0.000004388802620790704;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0.00000033583013649197333;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0.0000003327894333427418;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.000012033520804962126;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0.000009740827898473631;232,0.000009740827898473631;233,0;234,0;235,0;236,0;237,0;238,0;239,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.0000024854661458947443;112,0.00004989926307985323;113,0.00002461982742854809;114,0.000006390843301515131;115,0.000005974066600228242;116,0.000006608810060136842;117,0.0000067940146566404335;118,0.000005229139356542882;119,0.000003866736738105507;120,0.0000037932854927236288;121,0.0000040621294306749835;122,0.000004805966558640756;123,0.000005309184223686156;124,0.0000027260411029139486;125,0.0000026466517589875016;126,0.0000035741170004079714;127,0.000004067097099795586;128,0.000004745162109391171;129,0.000003906919506324022;130,0.0000036835209642029853;131,0.000003990744493523276;132,0.000005741585415007549;133,0.000004835022628480031;134,0.0000034611761002216326;135,0.000004786703887796482;136,0.000006286773687874403;137,0.000003988022662076276;138,0.000004838800443301361;139,0.0000038878624289471744;140,0.00001001567408845184;141,0.000006986725413194785;142,0.000004092618538478184;143,0.000003160303008998087;144,0.000000925602221423078;145,0.0000006349172262654171;146,0.0000008886533627834227;147,0.000000468016750576808;148,0.0000002941620884011735;149,0.00000023818088718061924;150,0.00000016690047568860914;151,0;152,0;153,0;154,0.00000006258767838322841;155,0.00000016690047568860914;156,0;157,0;158,0;159,0;160,0;161,0.00000011126698379240606;162,0;163,0;164,0.00000011126698379240606;165,0;166,0;167,0;168,0;169,0;170,0.00000011995971690118784;171,0;172,0.00000023122670069359386;173,0.00000005563349189620306;174,0;175,0;176,0;177,0;178,0;179,0.00000005997985845059388;180,0.00000011822117027943144;181,0;182,0.00000016690047568860911;183,0.0000001390837297405076;184,0;185,0;186,0;187,0;188,0;189,0.00000011822117027943145;190,0.0000001738546621756345;191,0;192,0;193,0;194,0;195,0;196,0.00000005997985845059388;197,0;198,0.00000008345023784430456;199,0;200,0;201,0.0000001738546621756345;202,0;203,0.000000055633491896203045;204,0;205,0;206,0.0000001112669837924061;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.00000011995971690118779;221,0;222,0;223,0.00000017559320879739085;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0.0000002225339675848122;234,0.00000016690047568860914;235,0.00000016690047568860911;236,0.000000257359229601869;237,0;238,0;239,0;240,0.00000028512164596804054;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0.00000005911058513971574;249,0.00000028512164596804054;250,0.00000005563349189620305;251,0;252,0.00000005563349189620305;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0.000015375924937912557;105,0.00006523269520557887;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0.00006494742164860846;150,0.000008898669779351385;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0.000024497157033349895;163,0.0000011509178636027003;164,0.000005915927700760074;165,0.00000861261497424814;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.00002994047155170257;112,0.00003407189704523309;113,0.00003542382281980676;114,0.00006437737992965863;115,0.00003107051593137064;116,0.00003047535997802784;117,0.00004978310557841387;118,0.00003669348498025458;119,0.000020288200551680988;120,0.000025600481496152613;121,0.00002795647362777158;122,0.00002715152316385063;123,0.000023176883674911714;124,0.00002763500967856554;125,0.000010063264757241613;126,0.00002842873215763084;127,0.000029940162743467165;128,0.000024612415113664547;129,0.000020126867591643747;130,0.00002457597227240922;131,0.000029608607634990387;132,0.000037540269678848734;133,0.000031647363682408824;134,0.00002285812984421969;135,0.00003393721126124288;136,0.000030973617970717157;137,0.000025702090459326616;138,0.000018803151204003368;139,0.000027402642248175875;140,0.00005950903135101931;141,0.00004620980648640539;142,0.00001993839974221235;143,0.000013598842117640863;144,0.0000019916225976801313;145,0.000002883913015733617;146,0.000006152436424575179;147,0.0000034576228322407377;148,0.0000044913754255152535;149,0.0000056571068546073;150,0.00000015355595567296585;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.0000000623324503733963;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.00000024932980149358515;63,0.00000031166225186698146;64,0.00000012953462343221422;65,0.00000018699735112018889;66,0.00000034282847705367964;67,0.0000005665313629152339;68,0.0000001869973511201889;69,0.00000031166225186698156;70,0.00000031166225186698156;71,0.0000007022748827713605;72,0.0000007902342487767879;73,0.0000005353651377285356;74,0.0000002493298014935852;75,0.00000043632715261377414;76,0.0000004986596029871705;77,0.000000389577814833727;78,0.00000032140169723782474;79,0.0000005272692237640224;80,0.0000003291932535344993;81,0.0000008103218548541519;82,0.0000003739947022403779;83,0.00000046749337780047227;84,0.00000024932980149358525;85,0.00000018699735112018889;86,0.000000623324503733963;87,0.0000006600300384753285;88,0.00000047303268735513937;89,0.00000032724536446033063;90,0.0000000623324503733963;91,0.0000003739947022403778;92,0.00000031653197455240313;93,0.0000007061097893861301;94,0.0000006174808365114571;95,0.000000975892426158486;96,0.0000013089814578413223;97,0.0000007684422397595265;98,0.0000010723129353298335;99,0.0000007031879557748771;100,0.00000042074404002042507;101,0.0000008181134111508265;102,0.0000006233245037339631;103,0.0000006535167843835769;104,0.0000004441187089104487;105,0.000001338199793953852;106,0.0000011843165570945298;107,0.0000006856569541073593;108,0.0000007557809607774301;109,0.00000031166225186698156;110,0.000000623324503733963;111,0.0000006389076163273122;112,0.000000825904967447501;113,0.0000008103218548541519;114,0.00000020452835278770665;115,0.0000005395652735447119;116,0.0000011219841067211335;117,0.0000011921081133912044;118,0.0000011798120636105148;119,0.0000016651408007463444;120,0.0000009716922903423099;121,0.00000024932980149358525;122,0.0000008726543052275483;123,0.0000016742106592479414;124,0.0000010606256008848216;125,0.000001602808350372948;126,0.0000015181360471801795;127,0.0000013823925273240528;128,0.0000012064737953131982;129,0.0000007479894044807556;130,0.00000038957781483372694;131,0.00000006233245037339631;132,0.0000005658617760459884;133,0.0000009194036430075955;134,0.0000012778152326546244;135,0.000001114192550424459;136,0.00000043632715261377414;137,0.00000045191026520712326;138,0.0000004986596029871705;139,0.000000623324503733963;140,0.00000018699735112018894;141,0.00000043632715261377424;142,0.0000004363271526137742;143,0.00000018699735112018894;144,0.00000012466490074679265;145,0.000000623324503733963;146,0.00000037399470224037777;147,0.0000002493298014935852;148,0.00000031166225186698156;149,0.0000003739947022403778;150,0.00000012466490074679263;151,0.0000001869973511201889;152,0.0000000623324503733963;153,0.0000001246649007467926;154,0.00000007986345204091405;155,0.0000003291932535344993;156,0.00000043632715261377414;157,0.0000003243235308490777;158,0.0000005035293256725921;159,0.0000002493298014935852;160,0.00000012466490074679263;161,0.00000007012400667007085;162,0.0000000623324503733963;163,0.0000001246649007467926;164,0.00000006720217305881792;165,0;166,0.00000006233245037339631;167,0.00000012466490074679263;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.0000007479894044807558;64,0.0000005804709441022532;65,0.0000008444099136521031;66,0.0000006476731171610711;67,0.0000003165319745524032;68,0.0000008775240279129699;69,0.0000006486470616981553;70,0.0000009057684194884152;71,0.00000013245645704346713;72,0.0000005261735361598025;73,0.0000006449947696840893;74,0.0000003311411426086678;75,0.0000009174557539334267;76,0.000000721692901979479;77,0.0000013953581639739881;78,0.0000009062553917569573;79,0.0000012985115540676662;80,0.0000007168231792940575;81,0.0000013114771907176011;82,0.0000012257091999206134;83,0.0000003817862585370524;84,0.0000006449947696840892;85,0.0000008397836771009526;86,0.00000031653197455240313;87,0.0000001246649007467926;88,0.0000006905266767927811;89,0.0000002541995241790068;90,0.0000006233245037339631;91,0.0000007606506834628517;92,0.0000005142427155805196;93,0.0000001295346234322142;94,0.000000813487174599676;95,0.00000045312769587847866;96,0.0000005261735361598024;97,0.0000005259300500255313;98,0.0000005142427155805195;99,0.0000008492796363375247;100,0.0000003116622518669814;101,0.0000006958225002131771;102,0.0000004363271526137741;103,0.0000002688086922352716;104,0.0000005756012214168315;105,0.00000012953462343221424;106,0.00000021037202001021256;107,0.00000019965863010228506;108,0.0000000672021730588179;109,0.0000003214016972378247;110,0.00000013659572132607553;111,0.0000005300693143081398;112,0;113,0;114,0.00000006233245037339631;115,0.00000006233245037339631;116,0.00000006233245037339629;117,0;118,0.00000012466490074679265;119,0;120,0.00000006233245037339631;121,0;122,0;123,0.00000013245645704346716;124,0.00000006233245037339629;125,0.00000018699735112018894;126,0.00000006233245037339631;127,0.00000007012400667007085;128,0.00000007012400667007085;129,0;130,0;131,0.00000026491291408693426;132,0.00000012466490074679263;133,0;134,0.00000006233245037339631;135,0.0000000623324503733963;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0.00000006233245037339631;148,0.00000006233245037339631;149,0.00000013440434611763583;150,0.0000000623324503733963;151,0.00000044119687529919575;152,0;153,0;154,0;155,0.00000022595513260356155;156,0;157,0.00000012466490074679263;158,0.00000007012400667007085;159,0.00000019478890741686347;160,0;161,0.00000031166225186698156;162,0.00000025906924686442843;163,0.0000001344043461176358;164,0.00000012466490074679265;165,0.00000024932980149358525;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.0000000623324503733963;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.000048910520707837326;11,0.00004453945762540291;12,0.00004584064752694757;13,0.00005813280152948874;14,0.00004850730766948443;15,0.000008057443155298557;16,0.000007528591271661774;17,0.000007149726846735975;18,0.000008400271632352236;19,0.000006358883882623508;20,0.000006305316933083871;21,0.0000059059996728793;22,0.000006095918857610742;23,0.000005338190007759144;24,0.000006170912586966234;25,0.000005145348989416448;26,0.000005428766849707984;27,0.0000062809683196567636;28,0.000007872393693252537;29,0.000007344515754152837;30,0.000009026517969697454;31,0.000006522506564853672;32,0.000007978553647794728;33,0.000006602370016894587;34,0.000008801536781630976;35,0.000006826377260423981;36,0.000006811768092367715;37,0.000006141694250853704;38,0.000006008263849273153;39,0.000002872162439861652;40,0.000003946423264265654;41,0.0000022488379361276885;42,0.0000020959286438054508;43,0.0000008103218548541519;44,0.0000005609920533605667;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000024932980149358525;48,0.0000003116622518669815;49,0.0000004986596029871703;50,0.0000006856569541073593;51,0.0000010596516563477373;52,0.0000011843165570945294;53,0.0000007479894044807556;54,0.000000997319205974341;55,0.000000810321854854152;56,0.0000013089814578413227;57,0.0000007479894044807559;58,0.0000004986596029871705;59,0.0000013713139082147186;60,0.0000019323059615752858;61,0.0000018076410608284928;62,0.000002493298014935852;63,0.0000021193033126954745;64,0.000001994638411948682;65,0.000001059651656347737;66,0.0000009973192059743408;67,0.0000003116622518669815;68,0.000000623324503733963;69,0.0000011843165570945298;70,0.000000810321854854152;71,0.0000016206437097083036;72,0.0000016829761600817003;73,0.000001994638411948682;74,0.0000015583112593349078;75,0.0000023686331141890596;76,0.0000015583112593349078;77,0.0000006856569541073594;78,0.0000011843165570945298;79,0.0000011219841067211335;80,0.0000013752096863630559;81,0.0000015583112593349078;82,0.0000018115368389768303;83,0.0000017453086104550966;84,0.0000018076410608284932;85,0.0000029296251675496268;86,0.0000016829761600817003;87,0.0000010596516563477373;88,0.000001690767716378375;89,0.0000008220091892991639;90,0.0000005648878315089041;91,0.000001320668792286334;92,0.0000016206437097083038;93,0.0000011843165570945298;94,0.0000018076410608284928;95,0.0000007479894044807556;96,0.0000004986596029871704;97,0.0000016829761600817003;98,0.0000019946384119486816;99,0.000001246649007467926;100,0.0000011219841067211335;101,0.000002056970862322078;102,0.0000015583112593349073;103,0.000002181635763068871;104,0.0000015583112593349076;105,0.0000036152821216569856;106,0.000002493298014935852;107,0.0000026179629156826446;108,0.000003054290068296419;109,0.000002742627816429438;110,0.000002064762418618753;111,0.0000026179629156826455;112,0.000003432180548685134;113,0.0000020024299682453566;114,0.0000023374668890023617;115,0.0000016829761600817003;116,0.0000026179629156826455;117,0.000002680295366056041;118,0.0000022439682134422675;119,0.000002119303312695475;120,0.000002243968213442267;121,0.000003241287419416608;122,0.0000022439682134422675;123,0.0000031166225186698155;124,0.000001994638411948682;125,0.000003989276823897365;126,0.0000046749337780047225;127,0.0000029296251675496263;128,0.0000025556304653092488;129,0.0000034282847705367964;130,0.000003751634356848791;131,0.000002746523594577775;132,0.0000038646119231505715;133,0.000004585330880592966;134,0.00000443729131095615;135,0.000003564637005728601;136,0.000004312626410209357;137,0.0000029568956145879865;138,0.000004737266228378119;139,0.0000027465235945777753;140,0.000003677614572030382;141,0.00000523592583136529;142,0.000007292896693687368;143,0.000010222521861236995;144,0.000016035022858556205;145,0.000019397079400571263;146,0.000020963182216202846;147,0.000027710669969122996;148,0.000027217854033358336;149,0.000025073228162698663;150,0.00002500699993417693;151,0.00002817816334692347;152,0.00002700553412427395;153,0.000019510056966873043;154,0.00001676742915044361;155,0.000015583112593349076;156,0.000009910859609370012;157,0.000007230564243313971;158,0.00000810321854854152;159,0.0000046749337780047225;160,0.000004748953562823131;161,0.000003685406128327057;162,0.0000024309655645624563;163,0.0000016206437097083042;164,0.0000014336463585881153;165,0.0000010596516563477373;166,0.0000005609920533605668;167,0.0000008726543052275484;168,0.00000024932980149358525;169,0.00000024932980149358525;170,0;171,0.00000006233245037339633;172,0.00000006233245037339633;173,0;174,0.00000018699735112018894;175,0.00000012466490074679265;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000010322656044754207;46,0.00006567865366486887;47,0.00016250637469285571;48,0.0002594548285400794;49,0.00035990453414517305;50,0.0004818446815744332;51,0.0006058372869307206;52,0.000709244946607118;53,0.0007834956304378063;54,0.0008795989545503717;55,0.001005342185785594;56,0.0011037394334636604;57,0.001150644133737193;58,0.001226645443446816;59,0.0013456880032143908;60,0.0015035461643666261;61,0.0016070141904526419;62,0.0016777032561158416;63,0.0017351720780726019;64,0.0018166063646478851;65,0.0016824118360660805;66,0.0015011315079818883;67,0.001287736249980683;68,0.0010771782132315447;69,0.0008304003307113383;70,0.0005739034562425628;71,0.0003081705211021651;72,0.00000030183204809222835;73,0.000000181099228855337;74,0.0000004829312769475653;75,0.00000006036640961844568;76,0.00000006036640961844568;77,0.0000002414656384737826;78,0.00000024146563847378254;79,0.00000006036640961844566;80,0.00000042256486732911975;81,0.000000362198457710674;82,0.00000006036640961844566;83,0;84,0.00000006036640961844568;85,0.00000042256486732911954;86,0.00000024146563847378254;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000006036640961844565;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00000012073281923689124;57,0;58,0;59,0;60,0.00000024146563847378265;61,0;62,0.00000012073281923689132;63,0;64,0.00000024146563847378265;65,0.0001355225895934105;66,0.000246113852014403;67,0.00036304358744533225;68,0.0004730915521797586;69,0.0005530166785145807;70,0.0006372278199323123;71,0.0007084601832820783;72,0.0007718449133814463;73,0.0007307957548409031;74,0.0007105126412091055;75,0.000679182474617132;76,0.0006240075762258728;77,0.0005892968906952665;78,0.0005754126164830241;79,0.0005521111823703041;80,0.0005155895045511442;81,0.0004786452618646556;82,0.00045377430110185606;83,0.00042334963065415943;84,0.00037879922035574654;85,0.00034909894682347124;86,0.00032090783353165716;87,0.0002852916518567742;88,0.00024593275278554763;89,0.00020452139578729388;90,0.00017222536664142547;91,0.0001417403297841104;92,0.00011173822420374291;93,0.00007732937072122889;94,0.000043524181334899325;95,0.00001823065570477059;96,0.000002897587661685391;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.0000002414656384737826;63,0.0000002414656384737826;64,0.00019763962509079108;65,0.0004550419957038435;66,0.0007152815875689626;67,0.0009994262776429862;68,0.0013035522493007154;69,0.001646735287981579;70,0.002000059883478342;71,0.0024026434692237556;72,0.002826657130383718;73,0.0029146713556074118;74,0.0029998483595790387;75,0.0031098359579038466;76,0.0031501607195289685;77,0.0032870113701339845;78,0.0034386517910955203;79,0.0034641867823641224;80,0.003520750108176606;81,0.003702211535489653;82,0.0037960813024463373;83,0.00387129784883092;84,0.003930094731799286;85,0.004022696804153982;86,0.00411131469347386;87,0.004202286872768858;88,0.004242370168755507;89,0.004339439355421967;90,0.0044352408474864395;91,0.004494098096864425;92,0.004552351682146224;93,0.0046389774799486935;94,0.004700551217759508;95,0.00471715198040458;96,0.004707855553323341;97,0.004872595485172078;98,0.004932841161971287;99,0.004915153803953082;100,0.0049556596648070595;101,0.004971777496175184;102,0.0049094793614489485;103,0.004958798718107218;104,0.0049842733429662014;105,0.005022485280254679;106,0.005064439934939498;107,0.0051392339164567525;108,0.005155170648596023;109,0.005117502008994112;110,0.004942379054691002;111,0.004443269579965693;112,0.004168662782611384;113,0.003903231679519078;114,0.0036667764530436265;115,0.0034079856550093494;116,0.003208233205581913;117,0.0031114658509635443;118,0.003016328389404874;119,0.002983730528210914;120,0.002975822528550897;121,0.003052065303898994;122,0.0029525210944381774;123,0.0025987135676644674;124,0.0023191567247214454;125,0.002171259021156253;126,0.0021248976185692875;127,0.00201527221870219;128,0.0018265668222349285;129,0.0017307049637608372;130,0.0016537377914973188;131,0.0015250969726004113;132,0.0014292351141263196;133,0.0013551655295244867;134,0.001273248311672256;135,0.0011879505748813924;136,0.0011089913111004654;137,0.001073616595064056;138,0.0010074550101222396;139,0.0009402068298072911;140,0.0008965015492435366;141,0.0008526151694509265;142,0.0008085476904294612;143,0.0007746217682238947;144,0.0007189639385556879;145,0.0006725421695591032;146,0.0006331229040782581;147,0.0006016720046670479;148,0.000560381380488031;149,0.0005170986647916055;150,0.0004659079494351637;151,0.0004479791257784852;152,0.0003913554335563832;153,0.0003383537259113879;154,0.00029651980404580506;155,0.0002717092096926239;156,0.0002485285083991408;157,0.0002259514712018421;158,0.0001969755945849882;159,0.0001772961450493749;160,0.00015918622216384121;161,0.00013407379576256783;162,0.00011813706362329818;163,0.00011855962849062727;164,0.00010594304888037215;165,0.00008940265264491802;166,0.00007352628691526681;167,0.0000646524247013553;168,0.00004817239487551964;169,0.000032296029145868435;170,0.00003452958630175092;171,0.000030303937628459718;172,0.000019558716716376394;173,0.00001436720548919007;174,0.000006640305058029023;175,0.0000032597861193960657;176,0.0000009054961442766848;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005982794124464912;2,0.005766139080344311;3,0.005597354599051136;4,0.005395549691696673;5,0.00525429229318951;6,0.0050916651856774174;7,0.004938757070113894;8,0.004718540407825805;9,0.00453037830904511;10,0.004355798652428564;11,0.0041470516079679795;12,0.003979414088457556;13,0.003781110432860962;14,0.0036426902556058664;15,0.0035352380464850333;16,0.0033393490472731773;17,0.003162716932729605;18,0.0030099899163949376;19,0.0028567799687833225;20,0.0026771295337588282;21,0.002541486211346181;22,0.002366966921139254;23,0.0021938360583535522;24,0.002072499575020476;25,0.0018797496291087792;26,0.0017146474988023303;27,0.0015942768780231498;28,0.0014501822582639202;29,0.001288822845353815;30,0.0011559563777836157;31,0.0010293680168137354;32,0.0009611539739448917;33,0.0009539100047906784;34,0.0009467867684557017;35,0.0009388184023860668;36,0.0009306085706779583;37,0.0009211310443678623;38,0.0009116535180577663;39,0.0009184145559350322;40,0.0009185352887542691;41,0.0009306085706779583;42,0.000936645211639803;43,0.0009406293946746204;44,0.0009295823417144447;45,0.0009092388616730286;46,0.0009455794402633328;47,0.0009316347996414719;48,0.0009217347084640468;49,0.0009463642035883726;50,0.0009384562039283562;51,0.0009325402957857485;52,0.0009365848452301843;53,0.0009388787687956853;54,0.0009383354711091194;55,0.0009598259129332861;56,0.0009268658532816147;57,0.0009242700976680215;58,0.000924753028944969;59,0.0009350756849897232;60,0.0009276506166066545;61,0.0009054357778670663;62,0.0008894990457277967;63,0.0008967430148820103;64,0.0008843075345006104;65,0.0007674985318889182;66,0.0006657207652722187;67,0.000554948403622371;68,0.0004356643782163223;69,0.000329419497287858;70,0.00021055803674913847;71,0.00010902173577091285;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005629771361016242;2,0.0005452897780834197;3,0.0005264554582824645;4,0.0005303792749076636;5,0.0005472818696008284;6,0.0005376836104714956;7,0.0005379854425195878;8,0.000527179855197886;9,0.0005145632755876307;10,0.0005081040697584571;11,0.0005349067556290471;12,0.0005110620238297609;13,0.0004998942380503484;14,0.0005032747569889814;15,0.0005101565276854842;16,0.0004891490171382651;17,0.000489269749957502;18,0.0005007393677850068;19,0.0004935557650404117;20,0.0004659079494351636;21,0.00047538547574525953;22,0.00047260862090281106;23,0.00047526474292602266;24,0.00047598913984144405;25,0.00048287091053794684;26,0.000451057812669026;27,0.0004647006212427947;28,0.0004655457509774529;29,0.00046216523203881997;30,0.000472729353722048;31,0.0004952460245097282;32,0.0005356915189540868;33,0.0005545862051646603;34,0.0005868218679009102;35,0.0006184538665409758;36,0.0006457998500981316;37,0.0006709726429090235;38,0.0007091242137878813;39,0.0007481812808110156;40,0.0007575380743018746;41,0.0007749236002719869;42,0.0007976213702885224;43,0.0008368595365405121;44,0.000857021917353073;45,0.0008907667403297841;46,0.0009102047242269236;47,0.0009492014248404395;48,0.000984455408057612;49,0.0010041952240028434;50,0.001031179009102289;51,0.0010369741844256596;52,0.001050315160951336;53,0.0011108023033890187;54,0.0011136998910507043;55,0.0011316890811170007;56,0.0011756961937288476;57,0.0012206691688945895;58,0.0012258003137121576;59,0.0012377528628166098;60,0.0012529048316308395;61,0.0012927466619790137;62,0.0013187042181149453;63,0.0013247408590767898;64,0.0013082004628413358;65,0.0011220908219876677;66,0.0009630253326430637;67,0.0007862121188706363;68,0.0006100025691943933;69,0.00044170101917816694;70,0.0002924752546013692;71,0.0001426458259283871;72,0.00000018109922885533692;73,0.0000001207328192368913;74,0;75,0;76,0.00000006036640961844564;77,0.00000012073281923689127;78,0.0000003621984577106739;79,0.00000018109922885533695;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000022214838739588004;62,0.00008849715650064133;63,0.00020717751781050548;64,0.00035109103834088;65,0.0004279978441947797;66,0.00046301036177347817;67,0.0004809391854301566;68,0.00046518355251974223;69,0.00040638666955137616;70,0.0002985722619728322;71,0.00016618872567958088;72,0;73,0.00000012073281923689132;74,0.00000006036640961844568;75,0;76,0.00000012073281923689132;77,0.00000006036640961844566;78,0.00000006036640961844566;79,0.00000024146563847378265;80,0.0000004829312769475653;81,0.00000024146563847378265;82,0;83,0;84,0;85,0.00000012073281923689135;86,0.00000030183204809222835;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000006036640961844566;45,0;46,0;47,0;48,0.00000006036640961844564;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0.00000013959732224265554;65,0.00003329018845427221;66,0.000056150193196657344;67,0.00008578632741871301;68,0.00009630894719532833;69,0.0001125154417275804;70,0.00011600160188304563;71,0.0001251357942384367;72,0.00012397940020418335;73,0.00011029508972380196;74,0.0000912513739394829;75,0.00007345271535354433;76,0.00005941563866695514;77,0.00004094729022431192;78,0.00002589718972631319;79,0.000012435480381399805;80,0.0000021731907462640438;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00006115117294348544;66,0.00015490020708093158;67,0.00028655934645876156;68,0.0004622255984484384;69,0.0006705500780416944;70,0.0008968637477012472;71,0.0011741266670787683;72,0.0014497596933965911;73,0.001575201092583721;74,0.0017630009929067054;75,0.001934019031355762;76,0.002047628614257677;77,0.002208082531023505;78,0.0023681742493316233;79,0.0025158304872583415;80,0.00262811200914865;81,0.0027604955454419017;82,0.0029147317220170306;83,0.0030191052442473227;84,0.0031381478040148976;85,0.0032911766523976574;86,0.003391264159545041;87,0.0034945510864022008;88,0.003620052851998949;89,0.003682773551592514;90,0.0037914330889057164;91,0.003962752959402865;92,0.004107511609667898;93,0.0042306590852895275;94,0.004299899357121885;95,0.004410852818000587;96,0.004520538584277303;97,0.004677430882875644;98,0.004758623703812453;99,0.004827381044367862;100,0.00488267667557836;101,0.004972441526680987;102,0.00508961272775039;103,0.005084059018065494;104,0.005155532847053734;105,0.00530789766493069;106,0.005320272778902471;107,0.005355285296481169;108,0.005530951548470846;109,0.005595785072401058;110,0.00538401970745955;111,0.00497660680894466;112,0.0047730512757112615;113,0.004681837630777791;114,0.0046128388245839065;115,0.00450828420312476;116,0.004368354865629202;117,0.004349097980960918;118,0.004376021399650744;119,0.004434939015438347;120,0.0046476098765241315;121,0.004958738351697601;122,0.0049895855870126255;123,0.004610061969741458;124,0.004215205284427205;125,0.004081372954303111;126,0.003899126763665023;127,0.0038025405082755103;128,0.003754247380580754;129,0.0036586269877451356;130,0.0035129024749262086;131,0.003434426142422229;132,0.0033747841297192046;133,0.0033105542698851787;134,0.0032080521063530577;135,0.003179559161013151;136,0.003129092842572131;137,0.0030348608771577374;138,0.0029514344990650455;139,0.002895474837348746;140,0.002833538901080221;141,0.0028588324267103493;142,0.002824785771685546;143,0.002774681651702236;144,0.0027050791814121687;145,0.0026603476718849;146,0.002653465901188397;147,0.0025839841637175665;148,0.0025341215093727305;149,0.002498143129240137;150,0.0023682346157412417;151,0.002232470560509357;152,0.0021296061985195264;153,0.002025111943469997;154,0.0019183237648549662;155,0.0018438316153858044;156,0.001734628780386036;157,0.0016406986470197346;158,0.0016400346165139318;159,0.001627900968180624;160,0.0015274512625755305;161,0.001372430322675362;162,0.0012585792741349737;163,0.001220306970436879;164,0.0011532398893507859;165,0.0010766952819545967;166,0.001031601573969618;167,0.0009562039283561793;168,0.000910385823455779;169,0.000854305428920243;170,0.0007630314175771531;171,0.000711659602991856;172,0.0006711537421378789;173,0.000629983850778099;174,0.0006136245537715001;175,0.0005773443415908143;176,0.0005324920992443092;177,0.0005112431230586163;178,0.0004809391854301566;179,0.0004732122849989955;180,0.000434939981300901;181,0.0003858620902811047;182,0.00034324340509048207;183,0.0003190364748334853;184,0.0002957954071303837;185,0.0002804019726776801;186,0.00026114508800939595;187,0.00024557055432783696;188,0.00022474414300947322;189,0.00021345562441082386;190,0.00019329324359826302;191,0.00018580780880557576;192,0.00018967125902115626;193,0.00016793935155851584;194,0.00014560377999969093;195,0.00012912375017385528;196,0.00011705046825016613;197,0.00012827862043919704;198,0.00017379489329150507;199,0.00021110133443570447;200,0.0002089281436894405;201,0.0001871962362268;202,0.00018617000726328642;203,0.00018303095396312723;204,0.00016401553493331687;205,0.00014838063484213945;206,0.00013359086448562024;207,0.00011795596439444285;208,0.00010207959866479162;209,0.00009332646927011698;210,0.00008366784373116569;211,0.00008010622556367739;212,0.00007805376763665026;213,0.00006422985983402619;214,0.00005686515786057582;215,0.0000431016164675702;216,0.00003495215116908004;217,0.00003120943377273641;218,0.00002885514379761703;219,0.000029217342255327705;220,0.000024931327172418063;221,0.00002058494567988998;222,0.00002130934259531132;223,0.000014186106260334732;224,0.00000947752631009597;225,0.00000585554173298923;226,0.000007726900431161046;227,0.00001195254910445224;228,0.000009779358358188199;229,0.0000051915112271863264;230,0.00000404454944443586;231,0.0000037427173963436313;232,0.0000024146563847378264;233,0.000002293923565500936;234,0.000001690259469316479;235,0.0000012073281923689132;236,0.000002535389203974718;237,0.0000022335571558824895;238,0.0000012073281923689132;239,0.0000007243969154213479;240,0.0000017506258789349246;241,0.000002293923565500936;242,0.0000013280610116058047;243,0.000000181099228855337;244,0.0000015091602404611413;245,0.0000035012517578698483;246,0.000003018320480922283;247,0.0000027768548424485013;248,0.0000018109922885533703;249,0.0000004829312769475654;250,0.0000016298930596980328;251,0.0000027768548424485;252,0.0000029579540713038377;253,0.000001992091517408707;254,0.0000013280610116058045;255,0.000001086595373132022;256,0.000001086595373132022;257,0.0000008451297346582392;258,0.0000004225648673291196;259,0.0000006640305058029025;260,0.000000724396915421348;261,0.000001328061011605805;262,0.0000013884274212242507;263,0.000000724396915421348;264,0.0000009054961442766849;265,0.0000011469617827504674;266,0.00000138842742122425;267,0.0000006036640961844566;268,0.0000006036640961844566;269,0.0000009658625538951304;270,0.0000006640305058029023;271,0.00000024146563847378265;272,0;273,0.0000006036640961844567;274,0.0000006036640961844567;275,0;276,0;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0;291,0.000000181099228855337;292,0.00000012073281923689132;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.000857565215039639;2,0.000911472418828911;3,0.0009428025854208843;4,0.000984455408057612;5,0.0010020220332565795;6,0.0010391473751719235;7,0.0010840599839280472;8,0.0011206420281568252;9,0.0011461770194254278;10,0.001151489263471851;11,0.0011807066057271786;12,0.0012070263603208209;13,0.001254293259052064;14,0.0012033440093340956;15,0.000992182308488773;16,0.0007517428989785037;17,0.0007340555409602993;18,0.0007443781970050534;19,0.0007839785617147538;20,0.0008180252167395572;21,0.0008392741929252501;22,0.0008818928781158727;23,0.0009161206323695312;24,0.0009388787687956853;25,0.0009541514704291521;26,0.0010021427660758164;27,0.0010328692685716051;28,0.0010868368387704956;29,0.001104886395246411;30,0.0010973405940441052;31,0.0011316287147073822;32,0.0011621137515646974;33,0.0012099843143921246;34,0.0012564664497983278;35,0.001290332005594276;36,0.0013111584169126396;37,0.0013499740182973002;38,0.0013957921231977006;39,0.001418067328346907;40,0.0014321930681976231;41,0.0014658171583550974;42,0.0015188792324097112;43,0.0015536502843499357;44,0.0015619204824676629;45,0.0016009775494907974;46,0.0016656903406017712;47,0.0016404571813812608;48,0.0016282028002287162;49,0.0015563064063731477;50,0.0015212335223848306;51,0.0014797014325673402;52,0.0014304424423186883;53,0.0014129361835293393;54,0.0013806401543834707;55,0.0013688687045078738;56,0.0013476197283221808;57,0.0013077175315643883;58,0.0012635896861333045;59,0.0012490413814152592;60,0.001195375643264461;61,0.001169236987899674;62,0.0011301195544669211;63,0.0010786873734720055;64,0.0010587060918882999;65,0.000902115625338052;66,0.000751742898978504;67,0.0006048714243768256;68,0.0004706768957950208;69,0.00033165305444374043;70,0.00020971290701448023;71,0.0001020795986647916;72,0;73,0;74,0.00000012073281923689132;75,0.0000003018320480922283;76,0;77,0;78,0;79,0.00000006036640961844564;80,0.00000012073281923689127;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.000001992091517408706;63,0.0000031055164059267043;64,0.0000009658625538951302;65,0.0000013884274212242498;66,0.0000031122237847731983;67,0.0000011469617827504672;68,0.00000006036640961844565;69,0.0000036219845771067398;70,0.00000030183204809222824;71,0.0000003018320480922282;72,0.0000006036640961844564;73,0.0000011469617827504676;74,0.0000027768548424485;75,0.0000019920915174087065;76,0.000002052457927027152;77,0.0000010262289635135761;78,0.0000008451297346582392;79,0.00000006036640961844566;80,0.0000005432976865660109;81,0.0000009859846904346123;82,0.0000005432976865660108;83,0.0000009054961442766848;84,0.00000018109922885533695;85,0;86,0.0000022939235655009344;87,0.0000002414656384737826;88,0;89,0.0000004829312769475653;90,0.0000015091602404611417;91,0.000002112824336645598;92,0.0000017506258789349243;93,0.000005417292899634545;94,0.000007428002861314158;95,0.0000020390431693341643;96,0.00000428601508290964;97,0.000004587847131001869;98,0.0000057725379197638655;99,0.000004867041775487181;100,0.000003886087619187439;101,0.000002484455045859154;102,0.0000036018624405672574;103,0.0000024616080366632838;104,0.0000022335571558824895;105,0.0000013884274212242502;106,0.000004972682992319461;107,0.00000346352275185832;108,0.000009255763596983762;109,0.000023846408643997657;110,0.000043713801486609916;111,0.000015908435384761007;112,0.000009786904159390503;113,0.000012911139255739351;114,0.00002466932018622688;115,0.00006886849531055999;116,0.00013748666686819134;117,0.00021370128216107668;118,0.00026804954167593807;119,0.0003160023610270997;120,0.0002616506384633774;121,0.000182923763487594;122,0.00016424868925452434;123,0.00012970003795746514;124,0.00016381186209385993;125,0.0000995865862429313;126,0.00002861745105974439;127,0.0000055008890764808605;128,0.0000037502631975459366;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0.0000018244070462463576;146,0.000001254279844294371;147,0.0000004561017615615894;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.0000002414656384737826;61,0;62,0;63,0;64,0.000001207328192368913;65,0.00011161749138450603;66,0.0002148440518320481;67,0.000329419497287858;68,0.000437777202552968;69,0.000551024586997172;70,0.0006444114226769075;71,0.0007480001815821601;72,0.0008612475660263642;73,0.0008883520839450462;74,0.0008715702220711183;75,0.0008470614597660295;76,0.0008305210635305754;77,0.0007595905322289018;78,0.0004363284087221252;79,0.00008119282093680942;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.00000006036640961844565;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000006036640961844566;53,0;54,0.00000006036640961844566;55,0;56,0;57,0;58,0;59,0;60,0.00000018109922885533697;61,0.0000002414656384737826;62,0.00000024146563847378265;63,0.00000012073281923689132;64,0.0000003621984577106739;65,0.00047924892596084006;66,0.0009851798049730332;67,0.0015314958120199664;68,0.002082218566969046;69,0.0026898064797787015;70,0.003285562576303142;71,0.00392605018235485;72,0.004604266794418088;73,0.004746369322659908;74,0.004857624615586704;75,0.004999727143828525;76,0.005097943292277736;77,0.005252058736033628;78,0.005308501329026874;79,0.005282181574433232;80,0.005205395501398569;81,0.005136698527252778;82,0.004974916549475344;83,0.004814945563986463;84,0.004649722700860777;85,0.004558629788746543;86,0.004469589334559335;87,0.004316681218995812;88,0.004188281865737379;89,0.004008088133026318;90,0.00387479910058879;91,0.0037506857624132655;92,0.0035954837232842424;93,0.0034583916070407518;94,0.0033560705427374865;95,0.0032289388840810395;96,0.003064742249918868;97,0.0029536680562209277;98,0.0028379456489823675;99,0.0026386157644222603;100,0.002547764317946499;101,0.002447737177208735;102,0.0022981492141742263;103,0.002158461342317143;104,0.0020020519749957503;105,0.0018850015067455842;106,0.0017601637716546385;107,0.0016676824321191796;108,0.001532220208935388;109,0.0014010440008345054;110,0.0012542328926424455;111,0.001053574947070732;112,0.0009131626782982275;113,0.0008069781637793815;114,0.0006899880619388338;115,0.0005774047080004327;116,0.0004893904827767389;117,0.00040125552473380837;118,0.00034433000046361396;119,0.00028420505648364214;120,0.0002518486609281553;121,0.00026217131697290946;122,0.00025480661499945913;123,0.00022631366965955276;124,0.0002128519603146394;125,0.00020856594523172977;126,0.00019178408335780185;127,0.00017355342765303127;128,0.0001736137940626497;129,0.00016558506158339644;130,0.00015683193218872185;131,0.000153873978117418;132,0.00015278738274428598;133,0.00014077446723021527;134,0.00013057254400469797;135,0.00006911953901312027;136,0.000008813495804293067;137,0;138,0;139,0;140,0;141,0.000002112824336645598;142,0.000012435480381399809;143,0.000028191113291814123;144,0.000045516272852308024;145,0.0000642298598340262;146,0.00007992512633482204;147,0.00008421114141773169;148,0.00010171740020708094;149,0.00011415288058848076;150,0.00011692973543092923;151,0.00013691101701463477;152,0.0001407744672302153;153,0.0001370921162434901;154,0.00014349095566304533;155,0.00014892393252870543;156,0.00014940686380565302;157,0.00014946723021527149;158,0.00015978988626002562;159,0.00015822035960994608;160,0.00017198390100295167;161,0.00017705467941090113;162,0.00017337232842417594;163,0.00016425700057179064;164,0.00015761669551376162;165,0.0001566508329598665;166,0.00016600762645072557;167,0.00015490020708093156;168,0.00014898429893832387;169,0.0001486824668902317;170,0.0001537532452981811;171,0.0001480184363844288;172,0.00013992933749555706;173,0.00013171950578744844;174,0.00012562249841598542;175,0.00012363040689857672;176,0.0001336512308952387;177,0.00012990851349889507;178,0.00012550176559674852;179,0.00011222115548069049;180,0.00011173822420374293;181,0.0001086595373132022;182,0.00010370949172448964;183,0.0001000875071473829;184,0.00009616369052218393;185,0.00010159666738784404;186,0.00009978567509929067;187,0.00009036851519881315;188,0.00008964411828339181;189,0.00008306417963498124;190,0.00007545801202305708;191,0.00008010622556367739;192,0.00007660497380580756;193,0.0000737677525537406;194,0.00007569947766153086;195,0.0000673085467245669;196,0.00006272069959356504;197,0.00005946091347416898;198,0.000059219447835695194;199,0.000058253585281800075;200,0.000051794379452626376;201,0.00004889679179094099;202,0.0000515529138141526;203,0.000051432180994915715;204,0.0000474479979600983;205,0.00003803083805962077;206,0.000039841830348174144;207,0.00003984183034817414;208,0.00003507288398831693;209,0.00003567654808450139;210,0.00003096796813426263;211,0.00002897587661685392;212,0.00002450876230508894;213,0.000021611174643403546;214,0.000020403846451034638;215,0.000019679449535613292;216,0.000016480029825835667;217,0.000012194014742926024;218,0.000008511663756200838;219,0.000008813495804293067;220,0.000008813495804293067;221,0.000006881770696502806;222,0.0000061573737810814585;223,0.000007183602744595033;224,0.000005432976865660109;225,0.0000038030838059620766;226,0.000003139053300159175;227,0.0000027768548424485005;228,0.0000028372212520669462;229,0.000003259786119396066;230,0.000003078686890540729;231,0.0000025957556135931636;232,0.0000015091602404611417;233,0.0000012073281923689132;234,0.000001267694601987359;235,0.0000018109922885533699;236,0.0000031390533001591746;237,0.0000022335571558824895;238,0.0000022939235655009353;239,0.000002173190746264044;240,0.000002052457927027153;241,0.000002354289975119381;242,0.0000009054961442766852;243,0.000001267694601987359;244,0.000002233557155882489;245,0.000001267694601987359;246,0.0000006640305058029023;247,0.0000007847633250397938;248,0.0000007847633250397938;249,0.000000724396915421348;250,0.0000006036640961844565;251,0.0000012073281923689132;252,0.0000006640305058029023;253,0.0000006640305058029023;254,0.0000018713586981718156;255,0.00000138842742122425;256,0.0000009054961442766849;257,0.0000008451297346582394;258,0.0000007847633250397938;259,0.000001750625878934924;260,0.0000016902594693164784;261,0.0000006036640961844566;262,0.00000006036640961844565;263,0.00000030183204809222835;264,0.0000006640305058029023;265,0.000000362198457710674;266,0.0000004225648673291196;267,0.00000036219845771067395;268,0.000000362198457710674;269,0.0000006036640961844566;270,0.0000004829312769475653;271,0.0000006640305058029022;272,0.0000006640305058029022;273,0.0000007847633250397938;274,0.0000005432976865660108;275,0.0000003018320480922283;276,0.0000004829312769475652;277,0;278,0.000000181099228855337;279,0.00000030183204809222824;280,0.00000006036640961844565;281,0.0000002414656384737827;282,0.00000006036640961844568;283,0;284,0;285,0.0000002414656384737826;286,0.0000004225648673291196;287,0;288,0;289,0;290,0.0000002414656384737826;291,0.0000004225648673291197;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000001207328192368913;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.00000024146563847378265;55,0;56,0;57,0.00000006036640961844562;58,0.00000006036640961844562;59,0;60,0;61,0.0000001207328192368913;62,0;63,0.00000018109922885533695;64,0.00000006036640961844565;65,0.00016087648163315768;66,0.00031740658177378724;67,0.0004746610788298383;68,0.0006055958212922469;69,0.0007419031742106972;70,0.0008652921154708001;71,0.0009609728747160364;72,0.001058585359069063;73,0.0010504962601801913;74,0.0010113788267474386;75,0.0010002110409680263;76,0.0009677942790029208;77,0.0009575923557774034;78,0.0009187163879831246;79,0.0008963808164242996;80,0.0008669823749401166;81,0.000835893673986617;82,0.0007947841490364556;83,0.0007993719961674574;84,0.0007649631426849435;85,0.000725362777975243;86,0.0006837099553385156;87,0.0006716366734148264;88,0.0006474901095674481;89,0.0006077690120385109;90,0.0005880895625028975;91,0.0005419092591447867;92,0.0005034558562178368;93,0.00048063735338206435;94,0.0004688659035064674;95,0.0004336722866989137;96,0.0004128458753805498;97,0.00041658859277689345;98,0.00040855986029764016;99,0.00039509815095272686;100,0.0004023421201069403;101,0.0004103104861765751;102,0.0003976335401567016;103,0.00039358899071226564;104,0.00039473595249501614;105,0.00039757317374708315;106,0.00039872013552983354;107,0.0003847151284983542;108,0.00037590163269406114;109,0.0003769278616575747;110,0.00035579961829111873;111,0.00031970050533928823;112,0.00029965885734596425;113,0.00029434661329954105;114,0.00027521046145049377;115,0.0002687512556213201;116,0.00025154682888006306;117,0.0002517279281089184;118,0.00025631577523992023;119,0.000252754157072432;120,0.0002578853018899999;121,0.0002625335154306202;122,0.0002577042026611445;123,0.0002385076844024788;124,0.0002288490588635275;125,0.0002068153193527948;126,0.00017711504582051957;127,0.00009133437775270831;128,0.000015091602404611415;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.001758775344233414;2,0.0017118706439598818;3,0.0016967186751456521;4,0.001667561699299943;5,0.0016094288468373797;6,0.0016105154422105116;7,0.001555702742276963;8,0.0015296244533217946;9,0.0014810898599885644;10,0.0014468621057349054;11,0.001411547756108115;12,0.0013809419864315628;13,0.0013406172248064412;14,0.00133639157613315;15,0.0013221451034631966;16,0.001262321991531317;17,0.001238054694864702;18,0.00121288190205381;19,0.001188493872567958;20,0.0011633210797570661;21,0.0011389934166808327;22,0.0011179255397239952;23,0.001078325175014295;24,0.0010718056027755026;25,0.0010258063986462473;26,0.0010181398646247047;27,0.001003289727858567;28,0.0009790827976015703;29,0.0009601881113909967;30,0.0009281939142932205;31,0.0008868429237045851;32,0.0008896801449566522;33,0.0008638433216399574;34,0.0008521322381739789;35,0.0008305210635305754;36,0.0007940597521210342;37,0.0007676796311177734;38,0.0007454647923781854;39,0.0007297091594677711;40,0.0007335122432737333;41,0.0007239139841444004;42,0.0007102711755706317;43,0.0006818385966403438;44,0.0006527419872042529;45,0.000640547972461327;46,0.0006206270572872397;47,0.0005896590891529772;48,0.0005644862963420853;49,0.0005630978689208611;50,0.0005586307546090962;51,0.0005378647097003509;52,0.0005123297184317483;53,0.0004888471850901729;54,0.00046578721661592675;55,0.0004468321639957348;56,0.0004092238908034431;57,0.00039310605943531816;58,0.0003740906404055077;59,0.00036352651872227973;60,0.00035278129781019646;61,0.0003309286575283191;62,0.00031245653618507477;63,0.00029434661329954105;64,0.0002778665834737053;65,0.000226615501707645;66,0.00017687358018204577;67,0.00013522075754531827;68,0.00008831605727178601;69,0.0000674292795438038;70,0.00004002292957702948;71,0.000017325159560493908;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005280853513421626;2,0.0005175212296589346;3,0.0005248859316323851;4,0.0007463702885224621;5,0.0007708186844179326;6,0.0007885060424361373;7,0.0008005189579502079;8,0.0007999152938540235;9,0.0008213453692685715;10,0.0008261746820380473;11,0.0008297363002055355;12,0.0008031750799734194;13,0.0008214057356781901;14,0.0008452504674774761;15,0.0008474236582237401;16,0.0008695781305537097;17,0.0008614286652552195;18,0.0008686122679998146;19,0.0008825569086216756;20,0.0008735623135885271;21,0.0009165431972368604;22,0.0009326610286049856;23,0.0009431044174689767;24,0.0009546344017060998;25,0.0009683979430991053;26,0.0009833084462748613;27,0.000992484140536865;28,0.0009815578203959266;29,0.000990854247477167;30,0.0010074550101222396;31,0.0009912164459348778;32,0.0009929670718138127;33,0.0010122239564820967;34,0.0010245387040442597;35,0.0010364308867390937;36,0.001032144871656184;37,0.0010387248103045942;38,0.0010918472507688267;39,0.0011712894458267013;40,0.0012553194880155776;41,0.0013411605224930073;42,0.0014291143813070827;43,0.0015283567587198073;44,0.0016341187083713242;45,0.0017321537575916797;46,0.001834474821894945;47,0.0019087255057256333;48,0.002001206845261092;49,0.0020858405515461528;50,0.0022023477221097534;51,0.0023460801434112724;52,0.002455705543278369;53,0.0025641839813627166;54,0.002682321044986014;55,0.0027443777140737768;56,0.0028837033874731487;57,0.0028108411310636856;58,0.0029197421340153612;59,0.0030574982807646542;60,0.0031700212682934364;61,0.0033316825132516346;62,0.003490023605680817;63,0.0035903525784666736;64,0.0037415100681512615;65,0.003349128405631365;66,0.002989344604305429;67,0.002559233935774004;68,0.0021080553902857414;69,0.0015956049390347558;70,0.00110259247168091;71,0.0005627356704631505;72,0.0000006640305058029023;73,0.00000006036640961844568;74,0.0000003018320480922283;75,0.000000181099228855337;76,0.000000181099228855337;77,0.00000006036640961844568;78,0.00000006036640961844566;79,0.0000004829312769475653;80,0;81,0;82,0.0000005432976865660109;83,0.0000004829312769475652;84,0.0000001207328192368913;85,0.00000030183204809222824;86,0.00000030183204809222824;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "mythicbotany:elementium_ore", + "distrib": "0,0;1,0.00009240591397849462;2,0.00011883144627216407;3,0.0001511540447197892;4,0.00018075064088869897;5,0.0002084557252723777;6,0.0002383861176386812;7,0.0002785529267250587;8,0.0002983025350708538;9,0.000320666880296233;10,0.0003578295236060671;11,0.0003847557501958271;12,0.00040661940112511564;13,0.00044645241401409955;14,0.00046742594175033824;15,0.00048684175389873956;16,0.0005109863455102185;17,0.0005380794701986755;18,0.0005623353272092858;19,0.0006045605461795912;20,0.0006131279819126968;21,0.0006327663248593604;22,0.0006723768069500819;23,0.0007121541871395001;24,0.0007294559567044079;25,0.0007625574129459518;26,0.0007858118813643809;27,0.0008170774585202591;28,0.0008584125542975148;29,0.0008852275154881435;30,0.0009001927116712954;31,0.000943252421135085;32,0.0009692328918322296;33,0.0009752968560848821;34,0.0009922648294523962;35,0.001036492825607064;36,0.0010768265327921384;37,0.0010967430392366303;38,0.0011126539913123975;39,0.0011543785159866126;40,0.0011704007334615112;41,0.001188425728120772;42,0.0012108457060457166;43,0.0012413324254076765;44,0.0012811098055970944;45,0.0013138774656412447;46,0.0013269511500391652;47,0.0013403029979349142;48,0.001374850904365164;49,0.0013942110838139998;50,0.0014253653955707468;51,0.0014470065157017732;52,0.0014809980951363667;53,0.0015153791034679199;54,0.0015680632699565618;55,0.001596435946735028;56,0.0015792454425692516;57,0.0016298155664744001;58,0.001671540091148615;59,0.0017291199351990314;60,0.0017269502599159723;61,0.0017343494089581998;62,0.0017994953001495408;63,0.0018282574058249659;64,0.0017855871252581356;65,0.0018058930605995868;66,0.0018259764651427758;67,0.001787589902442498;68,0.00178058018229723;69,0.0017662269458093;70,0.0017371866766360464;71,0.0016845025101474044;72,0.0016575206508580788;73,0.0016285916470839563;74,0.0015991063163141779;75,0.0015492037848038169;76,0.0015048088905504522;77,0.001494739371929075;78,0.0014645308160649434;79,0.001450066314177882;80,0.0013968258206935838;81,0.0013672848572242398;82,0.001355379459517197;83,0.001324058249661753;84,0.00130898178807947;85,0.00126542138431959;86,0.0012160195471053194;87,0.0011830293562629067;88,0.001157104518265328;89,0.0011367985829238768;90,0.001104086555579292;91,0.0010880087054048282;92,0.0010427236879584133;93,0.00099754993591113;94,0.0009757419176814072;95,0.0009403595207576729;96,0.0009029187139500108;97,0.0008742122409741509;98,0.0008553527558214059;99,0.0008282596311329489;100,0.0007863682083600371;101,0.000756660346791996;102,0.0007389691483301289;103,0.0007159372107099623;104,0.0006662572099978637;105,0.0006293727301858577;106,0.0005921544541764581;107,0.0005404716762799971;108,0.0004941296375418358;109,0.0004865079577013458;110,0.0004825024033326213;111,0.00044027718436231576;112,0.00039182110304066084;113,0.00038297550380972725;114,0.00035588237912127037;115,0.00031949859360535496;116,0.00030336511073132525;117,0.0002868421989603361;118,0.0002680383465071566;119,0.00025607731610054825;120,0.00024144591611479027;121,0.0002165780994089582;122,0.00019248914049704478;123,0.00019043073061311686;124,0.0001599996439507228;125,0.00013118190557573172;126,0.00010536833297728405;127,0.00008700954212062951;128,0.00007232250943530585;129,0.00005974951933347576;130,0.0000399999109876807;131,0.000026147368795841348;132,0.000014575767286192409;133,0.000006063964252652567;134,0.0000006675923947874387;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0.000001780246386099836;94,0.0000018358790856654559;95,0;96,0;97,0;98,0.00000022253079826247953;99,0.0000001668980986968596;100,0.00000005563269956561988;101,0.00000005563269956561988;102,0.0000005563269956561988;103,0.000000834490493484298;104,0.0000006675923947874385;105,0.0000006675923947874385;106,0.0000009596640675069427;107,0.0000015159910631631414;108,0.0000018011086484369432;109,0.000001912374047568183;110,0.0000012447816527807449;111,0.000002169675283059175;112,0.000007232250943530585;113,0.000007065352844833725;114,0.000005363020676909293;115,0.000009442279787265227;116,0.000018012417204806577;117,0.000022647629052551566;118,0.00003500829634005226;119,0.00004176938712718926;120,0.00004825795701631844;121,0.00006551639927958325;122,0.00007296261305970257;123,0.0001043131691510043;124,0.00012032105825429592;125,0.00018768032047031494;126,0.00010420229600890744;127,0.000030347750761212725;128,0.000008397646496722041;129,0.000002426514492297386;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "mythicbotany:dragonstone_ore", + "distrib": "0,0;1,0.000015688421277504807;2,0.000019415812148401342;3,0.00002547977640105391;4,0.000029596596168909777;5,0.000035271131524603005;6,0.00004044497258420565;7,0.00004695399843338318;8,0.00005173841059602648;9,0.0000517384105960265;10,0.00005835870184433526;11,0.00006203046001566617;12,0.00006703740297657195;13,0.00006497899309264402;14,0.00007048663034964038;15,0.00007883153528448337;16,0.00008467296873887345;17,0.00009018060599586982;18,0.00010080645161290321;19,0.00009924873602506587;20,0.00010303175959552801;21,0.00011354633981343018;22,0.00011905397707042656;23,0.00011504842270170192;24,0.00011493715730257068;25,0.00012617496261482588;26,0.00013440860215053763;27,0.0001326283557644378;28,0.0001360219504379406;29,0.000145479509364096;30,0.00014826114434237698;31,0.0001539356796980702;32,0.00016656430249946592;33,0.00016556291390728477;34,0.00014865057323933632;35,0.0001666199351990315;36,0.00016823328348643452;37,0.00018108443708609272;38,0.00018342101046784872;39,0.00018453366445916113;40,0.00017301769564907784;41,0.0001667868332977284;42,0.00017112618386384677;43,0.0001695684682760094;44,0.00016127919604073203;45,0.00015571592608417003;46,0.00014998575802891123;47,0.00014319856868190558;48,0.0001407507299010183;49,0.000138747952716656;50,0.00012445034892829169;51,0.00012534047212134158;52,0.00012166871395001068;53,0.00012100112155522326;54,0.00011009711244036174;55,0.00010920698924731182;56,0.00009585514135156305;57,0.00009663399914548173;58,0.00009702342804244107;59,0.00009201648508153529;60,0.00008572999003062025;61,0.00008478423413800469;62,0.00007888716798404899;63,0.00007237814213487148;64,0.00006542405468916898;65,0.0000646451968952503;66,0.000059749519333475746;67,0.00005563269956561988;68,0.000045396282845545824;69,0.000046898365733817564;70,0.00004139072847682119;71,0.00003438100833155309;72,0.00002887337107455672;73,0.00002698185928932564;74,0.000027260022787153742;75,0.000017969361959695222;76,0.000015910952075767286;77,0.000010236416720074058;78,0.00000467314676351207;79,0.0000016689809869685967;80,0.00000005563269956561988;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.00007638369650359608;2,0.00009618893754895677;3,0.00011682866908780175;4,0.00013819162572099977;5,0.00016394956561988178;6,0.0001849230933561205;7,0.00020511776329844048;8,0.0002285391298155665;9,0.00024239167200740583;10,0.00026280887274798825;11,0.00029396318450473544;12,0.00030737066510004986;13,0.00032823292743715726;14,0.0003583858506017233;15,0.0003912647760450046;16,0.00042492255928220464;17,0.0004576345866267892;18,0.0005035315637684256;19,0.0005141017766858933;20,0.0005563269956561988;21,0.0005780237484867906;22,0.0005867024496190274;23,0.0006020014419995728;24,0.000633878978850673;25,0.000676326728619241;26,0.0006936284981841486;27,0.000736743840347504;28,0.0007628355764437798;29,0.0007743515452538632;30,0.0008190802357046215;31,0.0008623624759666738;32,0.0008656448052410453;33,0.0008862845367798903;34,0.0009240591397849462;35,0.0009592746386099837;36,0.0010037807982624795;37,0.0010064511678416293;38,0.0010236973047069713;39,0.0010588015381328777;40,0.001064754236986399;41,0.001074823755607776;42,0.0011439752011678415;43,0.0011862560528377126;44,0.0012134048102257352;45,0.0012198582033753473;46,0.0012429457736950794;47,0.0012423894466994235;48,0.0012417218543046358;49,0.0012344896033611055;50,0.0011792463326924445;51,0.001166895873388877;52,0.0011663951790927864;53,0.0011666733425906143;54,0.0011413048315886917;55,0.0011230573061311684;56,0.0010871185822117781;57,0.001067368973865983;58,0.0010609712134159368;59,0.0010608599480168054;60,0.0010602479883215837;61,0.0010392744605853452;62,0.001013071459089938;63,0.0010038364309620453;64,0.0009587183116143274;65,0.0009782453891618598;66,0.0009726821192052981;67,0.0009566042690308339;68,0.0009468129139072847;69,0.0009207211778110092;70,0.0009005821405682546;71,0.0008951301360108239;72,0.0008710968097984761;73,0.0008588019831944742;74,0.0008480092394787437;75,0.0008437255216121911;76,0.0008119036174606565;77,0.0008192471338033184;78,0.000810957861568041;79,0.0007619454532507299;80,0.0007351304920601011;81,0.0007311249376913765;82,0.0006926827422915331;83,0.0006681487217830947;84,0.0006314311400697856;85,0.0005923769849747206;86,0.0005804159545681122;87,0.0005372449797051912;88,0.000518830556148971;89,0.0005035871964679912;90,0.00046987378053122553;91,0.0004267028056683045;92,0.00039777380189418216;93,0.00038314240190842413;94,0.0003638934878587196;95,0.00033846934415723135;96,0.0003058129495122125;97,0.00030269751833653775;98,0.00030742629779961545;99,0.0002996933525599943;100,0.00029179350922167626;101,0.0002819465213985616;102,0.0002746586377554654;103,0.00026536797692800683;104,0.00026453348643452255;105,0.00025780192978708255;106,0.00024884506515701773;107,0.0002455071031830805;108,0.00024394938759524318;109,0.00023705093284910633;110,0.00023148766289254435;111,0.00022264206366161076;112,0.0002115711564480524;113,0.0001961608986683757;114,0.0001937130598874884;115,0.00018648080894395784;116,0.00017835843480737737;117,0.00017184940895819984;118,0.0001595545823541978;119,0.00015660604927721997;120,0.0001460914690593178;121,0.00013301778466139714;122,0.00013468676564836574;123,0.0001346311329488001;124,0.00012812210709962256;125,0.00011961030406608275;126,0.00011143229722993664;127,0.00009969379762159083;128,0.00008634194972584207;129,0.00008072304706971444;130,0.00008027798547318948;131,0.00006497899309264402;132,0.00005546580146692302;133,0.000052350370291248305;134,0.00004389419995727408;135,0.00003894288969593392;136,0.00003337961973937193;137,0.0000282614113793349;138,0.000026091736096275728;139,0.000021029160435804315;140,0.000016689809869685965;141,0.00000901249732963042;142,0.000007009720145268104;143,0.000002447838780887275;144,0.00000022253079826247955;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000233624065503738;46,0.000013794944820220718;47,0.000028646760412958352;48,0.00004683606265574938;49,0.00006741723033107868;50,0.0000911133855464578;51,0.00010641019935920257;52,0.00012554512281950873;53,0.00013989631541473836;54,0.00015447000711997153;55,0.0001762192951228195;56,0.00020358668565325738;57,0.00023095407618369527;58,0.00024664026343894623;59,0.0002562633499466003;60,0.00027228328586685656;61,0.00030832814168743324;62,0.00033185742257030976;63,0.000335751156995372;64,0.00034487362050551794;65,0.00032223433606265575;66,0.0002925307048771805;67,0.0002475302598789605;68,0.0002080922926308295;69,0.00016776432894268422;70,0.00011742390530437879;71,0.000058628515485938056;72,0.00000011124955500178003;73,0;74,0;75,0.00000016687433250266996;76,0.00000027812388750444997;77,0.000000055624777500889984;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.0004486138305446779;2,0.000572935208259167;3,0.0006921391064435743;4,0.0008250266998932004;5,0.0009546880562477751;6,0.0010804000533997864;7,0.001163447846208615;8,0.0013205322178711284;9,0.0014041918832324671;10,0.0015289582591669635;11,0.0017283174617301533;12,0.002026633143467426;13,0.0023102638839444644;14,0.0025304267532929867;15,0.002634723211107156;16,0.0027764551441794233;17,0.0029211351904592383;18,0.003110537557849769;19,0.0032467070131719476;20,0.0033820977216091133;21,0.003492679779280883;22,0.0035985893556425776;23,0.00372435697757209;24,0.003852238341046636;25,0.004000367123531506;26,0.004094817995728017;27,0.004274931025275899;28,0.004390741812032752;29,0.004559618636525454;30,0.004698402456390175;31,0.004801530793876825;32,0.004876735493058028;33,0.0050394935920256324;34,0.005120205144179424;35,0.005343983624065504;36,0.0054776499644001424;37,0.005606699448202207;38,0.005746317639729442;39,0.0058173504805980785;40,0.005879483357066572;41,0.005897005161979352;42,0.005795879316482734;43,0.00571310964756141;44,0.005559251512993948;45,0.00542936765752937;46,0.0052249466002136;47,0.005080489053043789;48,0.004886302954788181;49,0.004777834638661446;50,0.004665750711997152;51,0.004514785065859736;52,0.004423393556425775;53,0.004263583570665717;54,0.004105497953008188;55,0.003889562566749733;56,0.0037624599501601998;57,0.0037150120149519405;58,0.0035739475792096833;59,0.0033950582947668206;60,0.00326434006763973;61,0.0031470274118903527;62,0.003003181737273051;63,0.002835361783552866;64,0.0026508543965824134;65,0.0022162023851904594;66,0.001789560341758633;67,0.00138500133499466;68,0.001062433250266999;69,0.0007256808472766109;70,0.00044650008899964404;71,0.00020653479886080457;72,0.00000022249911000356;73,0.00000016687433250266998;74,0;75,0;76,0;77,0;78,0;79,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00030832814168743324;57,0.0006372374510501959;58,0.0006424661801352795;59,0.0006380718227127092;60,0.0006484736561053756;61,0.0006493636525453897;62,0.0006357912068351727;63,0.0006288381096475614;64,0.0006183806514773941;65,0.00054000533997864;66,0.0004627981488074048;67,0.00039699403702385193;68,0.000313000622997508;69,0.00023317906728373089;70,0.00015547125311498756;71,0.0000789871840512638;72,0.0000007787468850124599;73,0.00000066749733001068;74,0.00000105687077251691;75,0.0000007231221075115699;76,0.0000013349946600213599;77,0.0000012237451050195803;78,0.0000015018689925240298;79,0.00000139061943752225;80,0.00000183561765752937;81,0.0000015018689925240302;82,0.00000177999288002848;83,0.0000014462442150231399;84,0.0000011124955500177999;85,0.00000150186899252403;86,0.0000015574937700249199;87,0.00000083437166251335;88,0.0000012237451050195799;89,0.00000061187255250979;90,0.0000016687433250267;91,0.00000194686721253115;92,0.0000015574937700249199;93,0.00000211374154503382;94,0.00000155749377002492;95,0.00000161311854752581;96,0.0000013349946600213597;97,0.00000150186899252403;98,0.00000083437166251335;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0.00000005562477750088999;9,0.00000016687433250267;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000022249911000355996;25,0.00000044499822000712;26,0.00000027812388750444997;27,0.00000083437166251335;28,0.00000038937344250623;29,0.0000003493931336774653;30,0.0000012863229797080811;31,0.0000010568707725169102;32,0.000000917808828764685;33,0.0000021832725169099325;34,0.000001738274296902812;35,0.0000012932760768956925;36,0.0000016826495194019226;37,0.0000026247941883232468;38,0.0000027325671947312208;39,0.000002583075605197579;40,0.0000022771393289426843;41,0.0000026456534798860806;42,0.0000025344039248843008;43,0.0000033427014729441085;44,0.0000036069191660733357;45,0.0000026108879939480245;46,0.0000033948497018511934;47,0.0000034522127536489854;48,0.0000024805174216803134;49,0.000003619087086151655;50,0.0000037146921724813097;51,0.000004383927776788893;52,0.0000035252202741189033;53,0.0000026734658686365255;54,0.0000017695632342470632;55,0.0000028351253782484874;56,0.0000021519835795656818;57,0.000002760379583481666;58,0.0000029620194019223924;59,0.0000013593305001779995;60,0.0000020894057048771808;61,0.0000023866506096475616;62,0.0000012376512993948026;63,0.0000019885857956568174;64,0.000004263986850302599;65,0.000003918070265218939;66,0.000004166643489676041;67,0.00000189124243503026;68,0.000003205377803488786;69,0.000002603934896760413;70,0.000002082452607689569;71,0.0000018269262860448562;72,0.0000026439152055891777;73,0.0000024666112273050907;74,0.0000018512621262014952;75,0.0000013123970941616234;76,0.0000016896026165895337;77,0.0000015157751868992527;78,0.0000006188256496974013;79,0.0000015835678844784622;80,0.00000139061943752225;81,0.0000008934729886080456;82,0.0000006118725525097899;83,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000005788453408686365;55,0;56,0.0000005788453408686365;57,0;58,0.0000005788453408686365;59,0;60,0.0000005788453408686365;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.000002248240518756675;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000006473121531018939;110,0.000007045013774699964;111,0.0000028594612184051266;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0.000018490698524696457;132,0.00006779922792388703;133,0.00004930852939919056;134,0.000018490698524696457;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.0001797792808828765;2,0.00022845096119615522;3,0.000292753203987184;4,0.00035288358846564613;5,0.00041112273050907796;6,0.0004963955144179423;7,0.0005568596475614097;8,0.0006092581879672482;9,0.0006665517087931648;10,0.0007277389640441439;11,0.0007930424528301886;12,0.0009057938768244928;13,0.001031617123531506;14,0.0011002024741901034;15,0.001157551619793521;16,0.0011951539693841225;17,0.0012391531683873269;18,0.0012664093093627624;19,0.0013343827874688502;20,0.001400409398362407;21,0.001457869793520826;22,0.0015243414026343896;23,0.0016368147027411893;24,0.0017038981844072626;25,0.0017534598611605554;26,0.0017931759522961906;27,0.0018772249911000356;28,0.00197373398006408;29,0.0020570598967604133;30,0.0020802554289782844;31,0.002079866055535778;32,0.002102894713421146;33,0.002224824225703097;34,0.0023011414204343185;35,0.0023358512815948736;36,0.0023706167675329294;37,0.0024249065503737983;38,0.0024749688501245998;39,0.0025078430936276257;40,0.0025478929334282665;41,0.002609636436454254;42,0.0026567506229975084;43,0.0027668320576717696;44,0.002863674795300819;45,0.0029103996084015663;46,0.0029677487540049844;47,0.002993892399430402;48,0.003014918565325739;49,0.003027712264150944;50,0.0029958392666429336;51,0.0029903324136703454;52,0.0029383788714845145;53,0.0028739097543609825;54,0.002783185742257031;55,0.002713432271270915;56,0.0026083570665717338;57,0.0025884433962264156;58,0.002521804912780349;59,0.002448324581701674;60,0.0024147828408686367;61,0.0024115566037735854;62,0.0023001957992168035;63,0.0021661400854396584;64,0.0020687411000356003;65,0.001776321644713421;66,0.001486739053043788;67,0.0012083926664293342;68,0.0009357200071199715;69,0.0006675529547881809;70,0.0004269201673193307;71,0.00020942728729085087;72,0;73,0;74,0;75,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.000874310252758989;2,0.0009663692595229618;3,0.0010811788002847988;4,0.0011710684407262371;5,0.0012167363830544679;6,0.001294110448558206;7,0.0014060275008899964;8,0.0015208926664293343;9,0.0016206278924884303;10,0.0016691326984692063;11,0.00180124154503382;12,0.002039927465290139;13,0.002288625845496618;14,0.002470073869704521;15,0.002579320932716269;16,0.0026848967604129587;17,0.002819008098967604;18,0.0028903190637237447;19,0.0029355420078319688;20,0.0030296035065859733;21,0.0031317305980776075;22,0.0032657863118547526;23,0.0033431047525809897;24,0.0034000645247419014;25,0.0034474568351726595;26,0.003558428266286935;27,0.0036727928088287646;28,0.003825927821288715;29,0.003895236294054824;30,0.003970552242791029;31,0.004069230598077608;32,0.004074181203275187;33,0.004007820843716626;34,0.004004149608401566;35,0.003967937878248487;36,0.0038707613919544324;37,0.003695543342826629;38,0.003576784442862228;39,0.003432271270914917;40,0.0032815837486650057;41,0.0031672192061231756;42,0.0031145981666073335;43,0.003069542096831613;44,0.002897160911356355;45,0.0027698357956568173;46,0.0026630918476326097;47,0.0025721453364186547;48,0.0024810875756496975;49,0.0024097209861160557;50,0.0022955789426842297;51,0.0021977905838376647;52,0.0020908797614809537;53,0.0020214044143823428;54,0.0019028123887504448;55,0.0017950671947312212;56,0.0016446577963688145;57,0.001560441883232467;58,0.0014778947134211464;59,0.0014291117835528659;60,0.0013033997864008546;61,0.0011831946422214312;62,0.0011005362228551085;63,0.000980998576005696;64,0.0008766464934140263;65,0.0006957547169811322;66,0.0005114698291206835;67,0.00037557849768600927;68,0.00027389640441438233;69,0.00020703542185831258;70,0.00013928444286222857;71,0.00006663848344606621;72,0.00000005562477750089;73,0;74,0.00000022249911000356;75,0.00000022249911000356;76,0;77,0;78,0;79,0;80,0;81,0.00000005562477750089;82,0.00000005562477750089;83,0;84,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00005879538981844073;2,0.00006441349234603063;3,0.00006480286578853685;4,0.00006129850480598078;5,0.000059129138483446074;6,0.00005901788892844428;7,0.000059741011035955864;8,0.00006013038447846209;9,0.000057071021715913135;10,0.00005996351014595943;11,0.00006129850480598078;12,0.00006268912424350303;13,0.00007659531861872553;14,0.00007531594873620506;15,0.00007014284442862229;16,0.00007475970096119616;17,0.00006914159843360627;18,0.00007481532573869705;19,0.00006736160555357779;20,0.00006986472054111784;21,0.00007108846564613742;22,0.00007092159131363476;23,0.00006713910644357422;24,0.0000700872196511214;25,0.00007047659309362763;26,0.00006925284798860805;27,0.00007203408686365255;28,0.00007042096831612674;29,0.00006964222143111427;30,0.00006502536489854042;31,0.0000678622285510858;32,0.00006585973656105376;33,0.00006524786400854397;34,0.00006474724101103595;35,0.00007297970808116768;36,0.0000711440904236383;37,0.00006574848700605198;38,0.00006747285510857957;39,0.0000679178533285867;40,0.00006886347454610182;41,0.00006613786044855821;42,0.00006719473122107513;43,0.00007192283730865077;44,0.00006647160911356354;45,0.00006708348166607334;46,0.0000639684941260235;47,0.00006680535777856889;48,0.00006491411534353863;49,0.00007069909220363117;50,0.00006802910288358847;51,0.00006441349234603063;52,0.00006613786044855821;53,0.00006769535421858312;54,0.00006836285154859381;55,0.00006513661445354219;56,0.0000661934852260591;57,0.00006819597721609115;58,0.00006947534709861161;59,0.00006797347810608758;60,0.00006608223567105732;61,0.0000694753470986116;62,0.00006658285866856534;63,0.00006758410466358136;64,0.00006608223567105732;65,0.00002569864720541118;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0002657195621217515;2,0.00034337175151299395;3,0.00041790895336418657;4,0.0004924461552153792;5,0.0005639796190815237;6,0.0006424105553577786;7,0.0007187833748665007;8,0.0007766331434674262;9,0.0008495572267710929;10,0.0009131363474546103;11,0.0009968516375934496;12,0.001168620950516198;13,0.0013791051085795657;14,0.0014825115699537202;15,0.0015425863296546815;16,0.0016394846920612318;17,0.001701617568529726;18,0.0018187077251690994;19,0.0019211129405482378;20,0.0019896982912068354;21,0.002040539337842649;22,0.0021503426486294054;23,0.002224546101815593;24,0.0022783352616589534;25,0.0023484781060875756;26,0.0024400921146315417;27,0.002527367390530438;28,0.0025930602527589885;29,0.002660254983980064;30,0.002731510323958704;31,0.002860114809540762;32,0.0028597810608757563;33,0.0029317038981844074;34,0.0030530215379138484;35,0.0031262793698825205;36,0.003176564168743325;37,0.003252269490922037;38,0.0033125111249555;39,0.003405460128159488;40,0.003443229352082592;41,0.003454854930580278;42,0.003597421235315059;43,0.003714177643289427;44,0.003768411801352795;45,0.00382998843004628;46,0.003932059896760414;47,0.004050818796724813;48,0.004049706301174797;49,0.0041120616767532925;50,0.004207680669277323;51,0.004309529636881453;52,0.004433851014595942;53,0.004481910822356711;54,0.004516676308294767;55,0.004573747330010681;56,0.004553333036667854;57,0.00476687655749377;58,0.004901711018155928;59,0.0049487139551441794;60,0.004990710662157351;61,0.005069308472766109;62,0.005139729441082236;63,0.005088443396226416;64,0.004938534620861516;65,0.004278379761480955;66,0.0035802888038447846;67,0.0029436076005695975;68,0.002319886970452118;69,0.0017195843716625134;70,0.0011234536311854754;71,0.0005578052687789249;72,0.0000005006229975080099;73,0.0000008343716625133501;74,0.00000038937344250623;75,0.00000016687433250267;76,0.00000022249911000356001;77,0.00000027812388750445;78,0.00000027812388750445;79,0.00000027812388750445;80,0.00000022249911000356;81,0.0000003337486650053399;82,0.0000003893734425062299;83,0.00000044499822000712;84,0;85,0;86,0.00000005562477750089;87,0.00000044499822000712003;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0002279503381986472;2,0.0011931514773940903;3,0.0021594094873620506;4,0.0023394112673549303;5,0.00235125934496262;6,0.0023488118547525813;7,0.002313156372374511;8,0.002283341491634034;9,0.0022777233891064434;10,0.0022757208971164117;11,0.0023374644001423993;12,0.002539882965468138;13,0.0027780126379494483;14,0.002866789782840869;15,0.002830244304022784;16,0.002785188234247063;17,0.0027722832858668566;18,0.0027889707191171235;19,0.0028017644179423283;20,0.002765052064791741;21,0.002703809184763261;22,0.0027149897650409396;23,0.00270314168743325;24,0.002627102616589534;25,0.0026334994660021363;26,0.002653413136347455;27,0.0026570287468850127;28,0.002666151210395158;29,0.0026792230331078677;30,0.002636058205767177;31,0.002589444642221431;32,0.002561187255250979;33,0.0025592403880384477;34,0.002600235849056604;35,0.002602850213599146;36,0.0025693640975436097;37,0.0025609091313634745;38,0.002561354129583482;39,0.002507064346742613;40,0.0024736338554645783;41,0.002521304289782841;42,0.002521638038447846;43,0.0025372129761480956;44,0.0025274786400854396;45,0.002531316749733001;46,0.002516298059807761;47,0.0024832013171947314;48,0.002487651299394802;49,0.002467014506941973;50,0.0024898206657173374;51,0.0024937700249199005;52,0.0025014462442150233;53,0.0025129049483802067;54,0.0024907662869348528;55,0.002482700694197223;56,0.002424572801708793;57,0.0024595607867568528;58,0.002489431292274831;59,0.0025039493592025636;60,0.0025313723745105017;61,0.0024870394268422928;62,0.002475469473122108;63,0.002461173905304379;64,0.002412446600213599;65,0.0021283152367390533;66,0.0018387882698469205;67,0.001528680135279459;68,0.0012052776788892845;69,0.0009059051263794946;70,0.0005793876824492702;71,0.0002986494304022784;72,0.00000033374866500534;73,0.00000005562477750089;74,0.00000005562477750089;75,0.00000011124955500178001;76,0.00000011124955500178;77,0.00000033374866500534;78,0;79,0.00000011124955500177997;80,0.00000011124955500177997;81,0.00000022249911000355996;82,0.00000044499822000712;83,0.00000022249911000355996;84,0.00000038937344250622997;85,0.00000016687433250266998;86,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000027812388750445;50,0.00000005562477750089001;51,0;52,0.0000003893734425062301;53,0.00000039632653969384126;54,0.0000008969495372018512;55,0.0000013975725347098613;56,0.0000012793698825204702;57,0.00000038937344250623;58,0.0000005632008721965113;59,0.00000039980308828764683;60,0.00000033374866500533997;61,0.000001029058383766465;62,0.0000009525743147027412;63,0.00000322623709505162;64,0.00020456707235671058;65,0.00022600694753470988;66,0.00023743783931114273;67,0.0002520567261480954;68,0.0002715566872107512;69,0.0002857496968449626;70,0.000297029358757565;71,0.0003029742568529726;72,0.00030655510190459237;73,0.00032817923415806344;74,0.0003459270147294411;75,0.0003548791273584905;76,0.00036305249310252766;77,0.0003529287835973656;78,0.0003533355397828409;79,0.00034699779169633326;80,0.0003365855286578854;81,0.0003588562989498042;82,0.00038141562277500894;83,0.00039648646092915626;84,0.0003974911834727661;85,0.00039793270514417947;86,0.0003990486772427911;87,0.00037978512148451407;88,0.0003571806025275899;89,0.0003856500589622642;90,0.00039935809006763976;91,0.0004048753726860093;92,0.00041047956901922394;93,0.0004098572668209327;94,0.0004080216491634034;95,0.0003879132920968316;96,0.0003578828653435387;97,0.0003577716157885369;98,0.00035644357422570314;99,0.00033972832858668566;100,0.0003267642788803845;101,0.00030345749710751155;102,0.0002612417675329299;103,0.0002247727727839089;104,0.00019340387482200073;105,0.00019681436899252403;106,0.0001843092237006052;107,0.00018078052687789248;108,0.00016862303644535424;109,0.00014634878960484158;110,0.00012729035021359915;111,0.00010499872063011747;112,0.00008254369326272696;113,0.000037491100035599864;114,0.00001624243503025988;115,0.000008124694063723746;116,0.000011354407707369171;117,0.000012237451050195798;118,0.000015074314702741189;119,0.000012960573157707369;120,0.00000884433962264151;121,0.000009800390485938056;122,0.00001090245639017444;123,0.000012014951940192242;124,0.000015138630851726592;125,0.00001335689969740121;126,0.000015029119571021719;127,0.000014841385946956212;128,0.000016079037246351016;129,0.00001696555713777145;130,0.00002241678533285867;131,0.00003148362406550374;132,0.000035933606265574943;133,0.00003537735849056604;134,0.000025921146315414738;135,0.000019969295122819508;136,0.000010346208615165541;137,0.00000684184763260947;138,0.000007175596297614811;139,0.00000851059095763617;140,0.000009623086507653968;141,0.00000823246707013172;142,0.00000684184763260947;143,0.000004616856532573869;144,0.0000029481132075471697;145,0.00000233624065503738;146,0.0000024474902100391597;147,0.00000161311854752581;148,0.00000289248843004628;149,0.00000322623709505162;150,0.0000010568707725169098;151,0.0000010012459950160199;152,0.0000013906194375222498;153,0.0000007231221075115699;154,0.00000033374866500533997;155,0.00000038937344250622997;156,0.0000005006229975080099;157,0.00000038937344250622997;158,0.0000006118725525097899;159,0.00000027812388750444997;160,0.00000033374866500533997;161,0.00000005562477750089;162,0.00000038937344250622997;163,0.00000022249911000355996;164,0.0000007787468850124599;165,0.0000007787468850124599;166,0.0000003337486650053401;167,0.00000011124955500178;168,0;169,0;170,0;171,0.00000016687433250266998;172,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.000024561579493957703;40,0.000024561579493957703;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.000003791647735319109;53,0.000003791647735319109;54,0.00004912315898791541;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000044425664711574766;62,0.000044425664711574766;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00040528212887148453;2,0.0005017354930580278;3,0.000613374421502314;4,0.0007481532573869706;5,0.0008776477394090424;6,0.0009858935564257742;7,0.0010793988074047703;8,0.001173182182271271;9,0.0012622930758276966;10,0.0013865032039871842;11,0.0015986561053755784;12,0.0018853462086151655;13,0.0021567394980420078;14,0.0023321244215023145;15,0.002507119971520114;16,0.002658252491990032;17,0.0027446933962264153;18,0.002816504983980064;19,0.00291501646493414;20,0.003052131541473834;21,0.003212553399786401;22,0.0033857133321466715;23,0.003509756585973656;24,0.003562377625489498;25,0.0036350792096831613;26,0.0037789805090779637;27,0.003966269134923461;28,0.00412001601993592;29,0.004297403435386258;30,0.004437188501245994;31,0.004563957369170524;32,0.004648673905304379;33,0.004785900231399074;34,0.004918398451406195;35,0.005001613118547526;36,0.005102794588821645;37,0.005245249644001425;38,0.005429478907084373;39,0.005611761302954788;40,0.00561370817016732;41,0.005668776699893201;42,0.005822857333570667;43,0.005961363029547882;44,0.006184529636881453;45,0.006257008721965112;46,0.006344673371306514;47,0.006426831167675329;48,0.006492134656461375;49,0.006652055891776433;50,0.006762804823780705;51,0.006873331256674973;52,0.00709310475258099;53,0.00735059184763261;54,0.007506063100747597;55,0.007485648807404772;56,0.007438534620861517;57,0.0076467937878248494;58,0.00773812967248131;59,0.007700471698113208;60,0.007609858935564259;61,0.0075334304912780346;62,0.0073519824670701325;63,0.00711502091491634;64,0.006821266464934141;65,0.005929656906372376;66,0.005029703631185475;67,0.0041304178533285866;68,0.0032143890174439306;69,0.002351481844072624;70,0.0015420857066571734;71,0.00075499510501958;72,0.0000010012459950160199;73,0.00000027812388750444997;74,0.00000005562477750089;75,0.00000011124955500178001;76,0.00000088999644001424;77,0.0000011124955500178;78,0.0000005562477750089;79,0;80,0.00000005562477750088999;81,0;82,0;83,0;84,0;85,0.00000022249911000356004;86,0.00000022249911000356004;87,0;88,0;89,0.00000005562477750089001;90,0.00000011124955500178002;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0.00000011124955500178001;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000005562477750089;25,0.00000016687433250266998;26,0.00000033374866500533997;27,0.00000005562477750088999;28,0.00000022249911000355996;29,0;30,0.00000011124955500177998;31,0.0000003337486650053399;32,0.00000005562477750089;33,0.0000010012459950160203;34,0.0000025587397650409404;35,0.00000266998932004272;36,0.00000161311854752581;37,0.0000017756471942862233;38,0.0000011846339333392668;39,0.00000077874688501246;40,0.00000205811676753293;41,0.0000033444397472410114;42,0.0000029107403101637593;43,0.00000344873620505518;44,0.000004124924906550374;45,0.000002563085450783197;46,0.000004964511391954433;47,0.0000049106248887504455;48,0.000003653852572089712;49,0.000004582091046635814;50,0.000005753687922748309;51,0.000006912247741634033;52,0.00000866529737006052;53,0.000009983778424261304;54,0.000006636731265574938;55,0.0000037372897383410473;56,0.00000634730859514062;57,0.00000750239186543254;58,0.000007003507142221432;59,0.000005263494571021716;60,0.000006285599857600569;61,0.000004870644579921681;62,0.000003372252135991456;63,0.000003622563634745461;64,0.000009699570576717692;65,0.000013298667508454967;66,0.0000108459624755251;67,0.00000813860025809897;68,0.000009225021693663227;69,0.00000835588454521182;70,0.000008051686543253826;71,0.00001047657918743325;72,0.000010609557171146315;73,0.00000928846870550018;74,0.000011061508488341048;75,0.000009610049450427198;76,0.0000085297119749021;77,0.000010093289704966183;78,0.000012112295300818797;79,0.000009942059841135635;80,0.00001076600185786757;81,0.000012452997063011746;82,0.00001198540127714489;83,0.000010640846108490567;84,0.00001098937010501958;85,0.000012178349724101103;86,0.000011962803711285155;87,0.00001219486332992168;88,0.000013000553466536134;89,0.000012930153357511572;90,0.000011270970541117836;91,0.000009399718260501957;92,0.000008773070376468495;93,0.000010610426308294769;94,0.000009410147906283375;95,0.000008927776788892845;96,0.000006770578386436454;97,0.000003996292608579566;98,0.000003579106777322891;99,0.00000313932338020648;100,0.000004234436187255251;101,0.000005713707613919545;102,0.00000415360643244927;103,0.0000032001629805980775;104,0.0000024474902100391597;105,0.00000083437166251335;106,0.0000006744504271982912;107,0.0000006814035243859025;108,0.0000007370283018867924;109,0.0000007787468850124602;110,0.00000022249911000356001;111,0;112,0.00000011559524074403703;113,0.00000016687433250267;114,0.0000005006229975080099;115,0.0000008030827251690994;116,0.0000004102327340690638;117,0.00000017382742969028125;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000027812388750444997;25,0.00000005562477750089;26,0.0000005136600547347812;27,0.0000001799113897294411;28,0.00000016687433250267004;29,0.00000011124955500178001;30,0.00000011124955500178001;31,0.0000007578875934496262;32,0.000002028566104485582;33,0.0000016165950961196156;34,0.0000013506391286934857;35,0.0000009682187833748667;36,0.0000005910132609469561;37,0.0000013349946600213599;38,0.0000012089697734959062;39,0.0000010959819441972233;40,0.00000139061943752225;41,0.0000016930791651833395;42,0.0000013967033975614097;43,0.0000020720229619081523;44,0.000002024220418743325;45,0.0000009499669032573869;46,0.0000006674973300106798;47,0.0000008413247597009614;48,0.0000019503437611249556;49,0.0000011003276299394803;50,0.00000133499466002136;51,0.0000015766147872908508;52,0.0000019816326984692063;53,0.0000009039026343894625;54,0.0000015644468672125312;55,0.0000007370283018867925;56,0.0000012698093738875043;57,0.0000007022628159487362;58,0.0000011959327162691351;59,0.0000009699570576717693;60,0.0000016826495194019226;61,0.0000013558539515841937;62,0.000001125532607244571;63,0.0000008665297370060521;64,0.0000012958834883410468;65,0.0000006718430157529371;66,0.0000010638238697045213;67,0.0000009664805090779638;68,0.0000007987370394268423;69,0.0000007535419077073692;70,0.00000044499822000712;71,0.0000003928499911000356;72,0.00000038937344250623;73,0.0000006153491011035955;74,0.0000007822234336062656;75,0.0000009577891375934498;76,0.0000009204162402100392;77,0.0000008091666852082592;78,0.0000008465395825916697;79,0.0000011455227616589533;80,0.0000011837647961908151;81,0.0000012532957680669277;82,0.0000009525743147027413;83,0.0000013697601459594162;84,0.0000010290583837664648;85,0.0000014123478662335352;86,0.000000802213588020648;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.00000011124955500178002;23,0.0000003893734425062301;24,0.00000027812388750445007;25,0.00000033374866500533997;26,0.00000027812388750445007;27,0;28,0;29,0.00000011124955500178;30,0.00000050062299750801;31,0.00000083437166251335;32,0.00000083437166251335;33,0.00000139061943752225;34,0.0000006674973300106798;35,0.0000005006229975080098;36,0.0000002781238875044499;37,0.00000016687433250267;38,0.00000044499822000712;39,0.00000038937344250622997;40,0.0000006553294099323602;41,0.0000008865198914204343;42,0.0000011350931158775368;43,0.0000009595274118903524;44,0.000000731813478996084;45,0.00000033374866500533997;46,0;47,0;48,0;49,0;50,0.00000022249911000356;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00000005562477750089;62,0.00000044499822000712;63,0.00000033374866500533997;64,0.00000061187255250979;65,0.0000004658575115699538;66,0.0000004870191117061619;67,0.00000006257787468850124;68,0.00000022945220719117125;69,0.00000011124955500178001;70,0.00000011124955500178002;71,0.00000030482781148585557;72,0.0000003441783107867568;73,0.0000010303180028221916;74,0.0000005910132609469562;75,0.0000004728106087575649;76,0.000000288553533285867;77,0.00000019005132312804085;78,0.000000194686721253115;79,0.00000022249911000356;80,0.00000018773362406550372;81,0.00000005562477750088999;82,0.00000016687433250267;83,0;84,0.00000008343716625133499;85,0.00000022249911000356001;86,0.00000006257787468850124;87,0.0000002398818529725881;88,0;89,0.00000005562477750089002;90,0.00000017382742969028125;91,0.00000022249911000356004;92,0.00000042587720274118894;93,0.0000006935714444642222;94,0.0000012863229797080813;95,0.0000008691371484514061;96,0.0000008552309540761838;97,0.0000006257787468850123;98,0.000001575506322521811;99,0.0000010725152411890353;100,0.0000009247619259522961;101,0.0000010725152411890353;102,0.0000006657590557137772;103,0.00000031795304204652745;104,0.000000891322189070392;105,0.000001140307938768245;106,0.0000009664805090779636;107,0.00000017382742969028125;108,0.00000006257787468850125;109,0;110,0.00000006257787468850125;111,0.000000083437166251335;112,0.00000027580618844191294;113,0.00000017382742969028125;114,0.0000013112382446303548;115,0.0000011883246171725456;116,0.0000014578327103358252;117,0.000000834799932992297;118,0.0000012062867849072082;119,0.0000013448448810371427;120,0.0000013836663403346384;121,0.000001422487799632135;122,0.0000014610069503562566;123,0.0000011072807271270916;124,0.000002231364772457577;125,0.0000015719793891657767;126,0.0000027005476783346493;127,0.0000010615061706419841;128,0.0000004357274237569717;129,0;130,0.000000059101326094695616;131,0.00000008232870148229554;132,0.00000031319168201588057;133,0.00000023489376151191047;134,0.00000007829792050397014;135,0;136,0.00000016687433250266998;137,0.00000016687433250266998;138,0.00000005562477750089001;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.00000005910132609469563;157,0;158,0;159,0;160,0;161,0.00000015659584100794029;162,0;163,0.00000007829792050397014;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.000000083437166251335;178,0;179,0.000000055624777500890004;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.0000008978492759063412;28,0.0000035913971036253646;29,0.0000008978492759063412;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.000001878709764451952;40,0.000003757419528903904;41,0;42,0;43,0.000026576338566827695;44,0.000006644084641706924;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000023101928780731846;55,0;56,0.0000023101928780731846;57,0.000006930578634219554;58,0.0000023101928780731846;59,0.0000023101928780731846;60,0;61,0;62,0.000006930578634219554;63,0;64,0;65,0.0000015045043875518154;66,0.0000015045043875518154;67,0.0000015045043875518154;68,0.0000030090087751036307;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.0001674862050551798;2,0.00020430980776076898;3,0.0002572645959416162;4,0.0003227905838376647;5,0.0003776366144535422;6,0.00041740833036667854;7,0.0004522850658597366;8,0.0005084660911356354;9,0.0005624777500889996;10,0.0005956857422570311;11,0.0006604886080455678;12,0.0007635613207547171;13,0.0008980620327518691;14,0.000999243503025988;15,0.0010412958348166607;16,0.0010504182983268068;17,0.0010696644713421148;18,0.001131686098255607;19,0.0012043876824492702;20,0.00125750934496262;21,0.0012845429868280525;22,0.0013522383410466358;23,0.0014328942684229263;24,0.0014722766108935565;25,0.0015161645603417586;26,0.0015363007297970808;27,0.0015707324670701317;28,0.0016137304200783196;29,0.00162123976504094;30,0.0016573958704165185;31,0.001705789426842293;32,0.001763806069775721;33,0.0018377870238519044;34,0.0018822312210751157;35,0.0019174417052331791;36,0.001953931559273763;37,0.0019873064257742968;38,0.0020610092559629764;39,0.002137827073691705;40,0.00216563946244215;41,0.002271660288358847;42,0.0022907952118191533;43,0.002332346920612318;44,0.002412001601993592;45,0.0025284798860804557;46,0.0025535110359558564;47,0.002536823602705589;48,0.0025701984692061233;49,0.002625990121039516;50,0.002625044499822001;51,0.0026818930224279105;52,0.002770503292986828;53,0.002840534887860449;54,0.002866567283730865;55,0.002876023495906016;56,0.0028358067817728727;57,0.0028344717871128513;58,0.002886202830188679;59,0.002996173015307939;60,0.0031161000355998574;61,0.003167997953008188;62,0.0032171146315414737;63,0.003242145781416874;64,0.003301052420790317;65,0.00294811320754717;66,0.0025312611249555;67,0.0020948847454610184;68,0.0016764195443218228;69,0.0013199203453186188;70,0.0008891620683517266;71,0.0004562344250622997;72,0.00000005562477750089;73,0.00000016687433250266998;74,0.0000004449982200071199;75,0.0000006674973300106799;76,0.0000007231221075115698;77,0.0000006674973300106799;78,0.0000005006229975080098;79,0.000000055624777500889984;80,0.00000044499822000712;81,0.00000027812388750444997;82,0;83,0;84,0;85,0.00000005562477750089001;86,0.00000011124955500178002;87,0;88,0.00000005562477750088999;89,0;90,0;91,0;92,0;93,0.00000005562477750089;94,0;95,0.00000005562477750089;96,0.00000011124955500177998;97,0.00000027812388750444997;98,0.00000022249911000356;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.00000011124955500178002;110,0.00000005562477750089001;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0.00000011124955500178;127,0.00000016687433250266998;128,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000005562477750088999;27,0.00000022249911000355996;28,0.00000005562477750089;29,0;30,0.00000011124955500178003;31,0;32,0.00000011124955500177998;33,0.00000011124955500177998;34,0.00000022249911000356;35,0.00000016687433250267;36,0.00000011124955500178001;37,0.00000044499822000712;38,0.00000033374866500534;39,0.00000022249911000356;40,0;41,0.00000016687433250267;42,0.00000011124955500178;43,0.0000004589044143823425;44,0.00000044499822000712003;45,0.00000033374866500534;46,0.00000044499822000712003;47,0.0000005145291918832325;48,0.0000006188256496974013;49,0.00000039632653969384126;50,0.0000008482778568885727;51,0.0000009525743147027411;52,0.00000044499822000712003;53,0.0000007405048504805981;54,0.0000006987862673549308;55,0.0000006744504271982912;56,0.000001063823869704521;57,0.0000007474579476682093;58,0.0000011264017443930223;59,0.00000161311854752581;60,0.0000005075760946956213;61,0.0000007474579476682095;62,0.000001140307938768245;63,0.0000006744504271982913;64,0.000002221514551441794;65,0.0000035565092114631545;66,0.0000032140691749732998;67,0.0000019538203097187614;68,0.000002402295078319687;69,0.000001806066994482022;70,0.0000030767455055179783;71,0.0000022493269401922393;72,0.0000023657913180847278;73,0.000003287076695443218;74,0.000003876351682093272;75,0.0000031845185119259524;76,0.0000028681525898896406;77,0.0000030889134255962977;78,0.0000030802220541117833;79,0.00000331315080989676;80,0.0000037129538981844072;81,0.000004071038403346386;82,0.0000027117079031683874;83,0.0000039284999110003565;84,0.0000034209238163047342;85,0.000003486978239587042;86,0.000003827680001779992;87,0.0000034904547881808472;88,0.0000029342070131719474;89,0.0000037407662869348526;90,0.0000028090512637949453;91,0.0000032158074492702035;92,0.0000027534264862940546;93,0.0000029133477216091136;94,0.0000033235804556781767;95,0.0000023049517176931292;96,0.0000023779592381630476;97,0.0000016687433250267001;98,0.000001898195532217871;99,0.0000020024919900320397;100,0.0000011124955500178;101,0.0000018703831434674263;102,0.000001122925195799217;103,0.0000011785499733001069;104,0.0000005632008721965112;105,0.0000005632008721965113;106,0.0000007300752046991812;107,0.0000008413247597009612;108,0.0000006118725525097901;109,0.0000006153491011035957;110,0.0000005805836151655394;111,0.00000005562477750089;112,0.0000003372252135991456;113,0.00000005562477750089;114,0.00000011124955500177998;115,0.0000005040995461018155;116,0.0000005040995461018156;117,0.0000003928499911000356;118,0.00000061187255250979;119,0.0000005562477750088999;120,0.00000050062299750801;121,0.0000002850769846920612;122,0.00000066749733001068;123,0.0000009490977661089356;124,0.000001185503070487718;125,0.0000011194486472054112;126,0.00000033374866500533997;127,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0.00000038937344250623;113,0.00000016687433250267004;114,0;115,0;116,0.0000006535155584921137;117,0.000002968519036249942;118,0.0000028519286964518807;119,0.0000008569692283730864;120,0.0000014637781122788552;121,0.0000028032570161386024;122,0.0000030035868307613727;123,0.000002430019293736231;124,0.000007949128359736563;125,0.00000862234436026024;126,0.000006731668753805058;127,0.000008608488550647247;128,0.000007882456723116949;129,0.000007180282080502113;130,0.0000172523472043793;131,0.00001913221527933635;132,0.000026730199634907987;133,0.000026512978328747922;134,0.000020726275790549013;135,0.000015802072208377836;136,0.0000067539010301386334;137,0.000010120182571805946;138,0.000009019577825674205;139,0.000007221257488384902;140,0.000005570488927283423;141,0.000002877171462328644;142,0.000004705130635999195;143,0.000006674658395342868;144,0.000003628181535734002;145,0.000001955180698298946;146,0.0000011721007237347862;147,0.000002638901921747386;148,0.0000031623492165451623;149,0.000004117442769359357;150,0.0000022720504679575485;151,0.0000016386132372137182;152,0.0000004276154770380918;153,0.00000021025561278189664;154,0.0000003942103796802204;155,0.0000006378710898199885;156,0.0000008552309540761836;157,0.0000009977694464222143;158,0.0000017104619081523671;159,0.0000016235481933072267;160,0.0000005701539693841224;161,0.00000011124955500178;162,0.00000005562477750089;163,0;164,0.00000007829792050397014;165,0.00000031319168201588057;166,0;167,0;168,0.00000031319168201588057;169,0;170,0.0000005701539693841224;171,0;172,0.00000031319168201588057;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0008458303666785333;2,0.0008701383944464223;3,0.0009164182093271627;4,0.0009485693307226771;5,0.000993625400498398;6,0.00103000400498398;7,0.0010478039337842651;8,0.0010980887326450695;9,0.001136747953008188;10,0.0011541028835884656;11,0.0012038870594517621;12,0.00124688501245995;13,0.0012835973656105378;14,0.0012185720007119973;15,0.0010040272338910645;16,0.0007836974902100392;17,0.0007647294410822356;18,0.0007900943396226415;19,0.0008135679957280172;20,0.0008644646671413314;21,0.0008810964756140976;22,0.0008957257920968316;23,0.0009448424706301174;24,0.0009964622641509433;25,0.001007809718761125;26,0.0010186009255962977;27,0.0010440214489142044;28,0.0010837931648273406;29,0.0011380829476682094;30,0.0011885902456390174;31,0.0011846408864364544;32,0.0011891464934140265;33,0.00124187878248487;34,0.0012826517443930224;35,0.001333437166251335;36,0.0013949581701673194;37,0.0013920100569597724;38,0.001425384923460306;39,0.001453364186543254;40,0.0014950827696689213;41,0.0015426975792096832;42,0.0015742924528301889;43,0.0015841380384478462;44,0.0016185141509433964;45,0.0016529458882164473;46,0.0016607333570665718;47,0.0016685208259166963;48,0.0016391509433962264;49,0.001606554823780705;50,0.0015684518511925954;51,0.0015349101103595587;52,0.00151749955500178;53,0.0014462998398006408;54,0.0014231043075827697;55,0.0013998531505873975;56,0.0013462308650765396;57,0.0013156928622285512;58,0.0012787023851904592;59,0.0012505562477750092;60,0.0012087820398718405;61,0.0011983802064791742;62,0.0011664515841936633;63,0.0011359692061231757;64,0.00110248309006764;65,0.000941560608757565;66,0.0007868124777500891;67,0.0006335105909576362;68,0.0004995661267354931;69,0.00036195042719829127;70,0.00023217782128871485;71,0.0001088576895692417;72,0;73,0;74,0.00000011124955500177998;75,0.00000027812388750444997;76,0;77,0;78,0;79,0.00000011124955500177997;80,0.00000011124955500177997;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.00000005562477750089;26,0.00000011124955500178;27,0;28,0;29,0.00000005562477750089;30,0.00000017382742969028125;31,0.00000027812388750445;32,0.0000006674973300106799;33,0.00000038937344250622997;34,0.0000005562477750088999;35,0.00000044499822000712003;36,0.0000010151521893912425;37,0.0000011124955500178;38,0.0000007231221075115699;39,0.0000007231221075115699;40,0.00000033374866500533997;41,0.0000009456212175151299;42,0.0000006674973300106799;43,0.0000005562477750088999;44,0.0000011003276299394803;45,0.0000009595274118903524;46,0.00000105687077251691;47,0.0000010673004182983267;48,0.0000007996061765752938;49,0.0000008482778568885724;50,0.00000050062299750801;51,0.00000066749733001068;52,0.000001487962798148807;53,0.0000012446043965824137;54,0.00000105687077251691;55,0.0000011681203275186898;56,0.0000012237451050195799;57,0.0000008013444508721965;58,0.0000008048209994660021;59,0.0000011333548415806337;60,0.000000733551753292987;61,0.00000066749733001068;62,0.0000016756964222143115;63,0.0000018564769490922038;64,0.0000032653482667319333;65,0.000002242373843004628;66,0.0000026804189658241367;67,0.000002464872953008188;68,0.000001701770536667853;69,0.0000020659390018689926;70,0.0000023736135524207904;71,0.0000016391926619793523;72,0.000002077237784798861;73,0.000002683026377269491;74,0.0000022415047058561763;75,0.0000031445382030971876;76,0.0000034522127536489854;77,0.0000025257125533997863;78,0.0000023023443062477753;79,0.0000015800913358846564;80,0.000003832894824670701;81,0.000003785092281505874;82,0.000002588290428088288;83,0.00000427702390752937;84,0.000004272678221787112;85,0.00000418402623264507;86,0.000004262248576005697;87,0.000005253064925240299;88,0.0000034522127536489854;89,0.0000039684802198291204;90,0.000004834140819686721;91,0.000003944144379672482;92,0.0000045699231265574945;93,0.000004214446032840869;94,0.000004329172136436454;95,0.0000036503760234959062;96,0.0000024196778212887152;97,0.0000033844200560697757;98,0.0000035356499199003206;99,0.00000254657184496262;100,0.0000036434229263082947;101,0.0000028942267043431827;102,0.000002364053043787825;103,0.0000014810097009611964;104,0.000001771301508543966;105,0.0000017139384567461729;106,0.0000020998353506585977;107,0.0000020459488474546102;108,0.000001574876512993948;109,0.000001176811699003204;110,0.0000011281400186899252;111,0.0000010360114809540761;112,0.0000007483270848166608;113,0.00000088999644001424;114,0.000002409248175507298;115,0.0000028055747152011396;116,0.0000033696447245461015;117,0.000004383058639640441;118,0.0000050262201294944825;119,0.000004025843271626914;120,0.0000037929145158419363;121,0.0000029376835617657528;122,0.000002131993425151299;123,0.0000029907009278212887;124,0.0000038033441616233536;125,0.0000044656266687433254;126,0.000005366052754538982;127,0.000003898080110804557;128,0.0000031749580032929873;129,0.000004921054534531862;130,0.000008173365744037024;131,0.000013077906672748312;132,0.000012809343293876825;133,0.00001556103150587398;134,0.000011744650287023851;135,0.000010546979296457813;136,0.000004999276877892489;137,0.0000029724490477038093;138,0.0000041788114097543615;139,0.0000035217437255250984;140,0.0000022249911000356;141,0.000003619087086151655;142,0.0000024092481755072983;143,0.0000007822234336062656;144,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000043804512281950874;13,0.0000008760902456390175;14,0.0000007300752046991813;15,0.0000014601504093983626;16,0.000000584060163759345;17,0;18,0;19,0;20,0.00000043804512281950874;21,0.00000014601504093983625;22,0.00000025031149875400496;23,0.00000008343716625133499;24,0.0000008673988741545036;25,0.0000018669065948736207;26,0.0000016357161133855467;27,0.000000881305068529726;28,0.0000009212853773584906;29,0.0000007231221075115699;30,0.00000116812032751869;31,0.000001084683161267355;32,0.000000584060163759345;33,0.00000038937344250623;34,0.00000022249911000356;35,0.0000005006229975080099;36,0.000000584060163759345;37,0.0000007509344962620151;38,0.0000006674973300106799;39,0.00000005562477750089;40,0.0000008232467070131721;41,0.0000037046101815592743;42,0.000002235420745817017;43,0.000002528841447134212;44,0.000002469740121039516;45,0;46,0;47,0.000001960773406906372;48,0.0000015088220897116411;49,0.0000019955388928444286;50,0.000001425384923460306;51,0;52,0.00000005562477750089002;53,0.0000009873398006407976;54,0.00000200249199003204;55,0.0000025691694108223564;56,0.0000038137738074047706;57,0.0000014288614720541118;58,0.0000007370283018867923;59,0.00000005562477750089001;60,0.00000016687433250267;61,0.0000005006229975080099;62,0.0000007300752046991813;63,0.0000008899964400142398;64,0.000001119448647205411;65,0.0000013975725347098611;66,0.0000007092159131363474;67,0.00000033374866500533997;68,0.00000027812388750444997;69,0;70,0.00000033374866500533997;71,0.000000194686721253115;72,0.00000017730397828408687;73,0.00000044152167141331436;74,0.00000016324288817943744;75,0.00000027449244318121744;76,0.00000100124599501602;77,0.00000037230049099605595;78,0.0000009355013631925672;79,0.0000001738274296902812;80,0.00000011994092648629408;81,0.00000016687433250266998;82,0.000000055624777500890004;83,0.000000055624777500890004;84,0.0000002989831790672838;85,0.00000012689402367390534;86,0.00000006431614898540406;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0.00000027812388750444997;99,0.0000004449982200071199;100,0.00000038937344250622997;101,0.00000044499822000712003;102,0.0000006118725525097898;103,0.0000011959327162691347;104,0.0000011385696644713421;105,0.00000025900287023851904;106,0.00000033374866500533997;107,0.000000083437166251335;108,0.000000695309718761125;109,0.00000030593627625489497;110,0.0000007231221075115699;111,0.0000004728106087575649;112,0.00000022249911000356;113,0;114,0;115,0;116,0.0000002868152589889641;117,0.00000009560508632965468;118,0;119,0.00000008343716625133499;120,0.000000417185831256675;121,0.00000022249911000356;122,0.00000016687433250267;123,0.00000027812388750444997;124,0.00000005562477750088999;125,0.00000030593627625489497;126,0.00000011124955500177998;127,0.00000019468672125311499;128,0.00000005562477750088999;129,0.00000033374866500534;130,0.000000361561053755785;131,0;132,0.00000005562477750089;133,0.00000027812388750445;134,0.000000639684941260235;135,0.000000528435386258455;136,0.00000038937344250623;137,0.00000027812388750444997;138,0.00000016687433250267;139,0;140,0.00000016687433250266998;141,0.00000077874688501246;142,0.000000528435386258455;143,0.00000033374866500534;144,0.00000025031149875400496;145,0.00000008343716625133499;146,0.00000016687433250267;147,0.00000016687433250267;148,0;149,0.00000033374866500534;150,0.00000038937344250623;151,0.00000022249911000356;152,0;153,0;154,0.00000011124955500177998;155,0.00000011124955500177998;156,0;157,0.00000016687433250267;158,0;159,0.000000083437166251335;160,0.0000002781238875044499;161,0.00000022249911000355996;162,0.00000005562477750088999;163,0;164,0;165,0;166,0;167,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005872697134211463;2,0.005659097988608046;3,0.005553466536133856;4,0.005417575204699181;5,0.005192406105375578;6,0.004999110003559986;7,0.004824615076539694;8,0.004658686365254539;9,0.004527912513349946;10,0.004322935208259167;11,0.004148273406906372;12,0.003971164115343539;13,0.0038253159487362056;14,0.003672625934496262;15,0.0035456901922392313;16,0.003354507831968672;17,0.0032122752758988967;18,0.0030565258988964044;19,0.0028875378248487014;20,0.0027512014951940195;21,0.0025795434318262728;22,0.0024030460128159487;23,0.002259923460306159;24,0.002097109736561054;25,0.0019647783908864364;26,0.0018155927376290494;27,0.0016389284442862228;28,0.0014781172125311502;29,0.0013281528123887504;30,0.0011940970986116057;31,0.0010511414204343182;32,0.0009788848344606622;33,0.0009619192773228909;34,0.0009545211819152724;35,0.0009842804378782486;36,0.0010043609825560699;37,0.0009662023851904592;38,0.0009686498754004984;39,0.0009626980242079033;40,0.0009522961908152368;41,0.0009400031149875401;42,0.0009527968138127447;43,0.000965368013527946;44,0.0009500155749377003;45,0.0009383343716625134;46,0.0009632542719829121;47,0.000953686810252759;48,0.0009317150231399075;49,0.0009374443752224991;50,0.000933940014239943;51,0.0009459549661801354;52,0.0009415049839800641;53,0.0009563011747953009;54,0.0009394468672125311;55,0.0009369437522249911;56,0.0009484580811676753;57,0.0009549661801352795;58,0.0009498487006051977;59,0.0009491255784976862;60,0.0009377224991100035;61,0.0009417831078675686;62,0.0009255406728373087;63,0.0009403368636525455;64,0.0009062388750444997;65,0.000785310608757565;66,0.0006804022783908864;67,0.00056436899252403;68,0.00046457814168743327;69,0.0003374199003203988;70,0.00022589222143111427;71,0.0001167564079743681;72,0.00000011124955500177997;73,0.000000055624777500890004;74,0.00000022249911000356001;75,0.00000022249911000355994;76,0.000000055624777500889984;77,0;78,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022099094219253112;50,0.0000006629728265775932;51,0;52,0;53,0.0000031482621295085532;54,0.0000003823897131352852;55,0.0000019538538364214475;56,0.0000019789515093363024;57,0;58,0.000001911948565676426;59,0.0000020199848355881126;60,0.0000036325176215087464;61,0.0000009504002465442793;62,0.000004524106804832557;63,0.000008506008092857984;64,0.000007904987348898283;65,0.0000025076446272786253;66,0.0000022297685260208465;67,0;68,0.0000019284860212817637;69,0.00000376058788636807;70,0.0000014186255696529254;71,0.0000005680105334089942;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00007559407262370952;62,0.00017747780571377716;63,0.00027312461062655753;64,0.00032837392087931645;65,0.0002833317572979708;66,0.0002453678466536134;67,0.00020903096075115699;68,0.00017234641998932005;69,0.00012992557404770382;70,0.00008443841224635102;71,0.00004217748754004985;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0.00000022249911000355994;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002793476326094696;2,0.00028012637949448207;3,0.0002870794766820933;4,0.00028162824848700606;5,0.00027801263794944827;6,0.0002718382876468494;7,0.0002827963688145248;8,0.0002777901388394447;9,0.0002792363830544678;10,0.0002677220541117836;11,0.00027773451406194375;12,0.00028557760768956926;13,0.00031099813100747596;14,0.000331746173015308;15,0.0003309674261302955;16,0.0003418142577429691;17,0.00033296991812032756;18,0.0003309674261302955;19,0.00032940993236027055;20,0.00033107867568529727;21,0.0003272405660377359;22,0.0003115543787824849;23,0.00031650498398006405;24,0.0003172281060875757;25,0.000316560608757565;26,0.0003100525097899609;27,0.0003063812744749021;28,0.0003064925240299039;29,0.0003245149519401923;30,0.0003178956034175863;31,0.00030543565325738694;32,0.0003029325382698469;33,0.00029959505161979356;34,0.00030549127803488783;35,0.00030343316126735497;36,0.00031066438234247066;37,0.00031010813456746174;38,0.0003323580455678178;39,0.00037001601993592024;40,0.0004098433606265575;41,0.0004709749911000356;42,0.0005382809718761125;43,0.000585117034531862;44,0.000640185564257743;45,0.0006949203453186187;46,0.0007381964222143111;47,0.000772183161267355;48,0.0008049461552153791;49,0.0008535622107511571;50,0.0009069619971520115;51,0.0009435631007475971;52,0.0010080322178711283;53,0.0010545345318618725;54,0.0011027055891776431;55,0.0011541028835884656;56,0.0011732378070487717;57,0.0012513349946600212;58,0.0012943885724457102;59,0.0013509033463866146;60,0.0014274430402278393;61,0.0014393467426130296;62,0.0014892977928088289;63,0.0015233957814168742;64,0.001532629494482022;65,0.0014237718049127804;66,0.0012375956746173014;67,0.001035677732289071;68,0.0008642421680313279;69,0.0006544811320754716;70,0.0004470563367746529;71,0.00022839533641865433;72,0.00000022249911000356001;73,0.00000033374866500534;74,0;75,0;76,0;77,0.000000055624777500889984;78,0.00000005562477750089002;79,0;80,0.00000005562477750088999;81,0.00000033374866500533997;82,0.000000055624777500889984;83,0.000000055624777500889984;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000055624777500889984;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750089001;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000005562477750089001;28,0.00000033374866500534;29,0.00000005562477750089;30,0.0000005006229975080099;31,0.0000004449982200071199;32,0.00000088999644001424;33,0.0000009456212175151301;34,0.00000105687077251691;35,0.0000011072807271270914;36,0.00000045368959149163405;37,0.0000007231221075115699;38,0.0000006674973300106799;39,0.000002847293298326807;40,0.0000019538203097187614;41,0.0000012897995283018867;42,0.0000008899964400142401;43,0.000002318857912068352;44,0.0000025031149875400496;45,0.000003264479129583482;46,0.0000023570999466002138;47,0.0000026873720630117482;48,0.000002297998620505518;49,0.0000020024919900320397;50,0.0000019155782751868995;51,0.000002085929156283375;52,0.000002586552153791385;53,0.000004905410065859737;54,0.00000367123531505874;55,0.0000025587397650409395;56,0.0000023518851237095055;57,0.000002816004360982556;58,0.0000032053778034887866;59,0.000004342209193663226;60,0.0000035599857600569594;61,0.0000044656266687433254;62,0.000003865922036311855;63,0.0000034661189480242085;64,0.000006781008032217871;65,0.000006854015552687789;66,0.00000595185119259523;67,0.000007173858023317907;68,0.000007704031683873264;69,0.000006257787468850125;70,0.000006143061365254539;71,0.0000053747441260234964;72,0.000005489470229619082;73,0.000005904917786578854;74,0.00000581626579743681;75,0.000006708000511747953;76,0.000006275170211819153;77,0.000007184287669099323;78,0.000007879597387860449;79,0.000007102588777144892;80,0.000007631024163403348;81,0.000009350177443040228;82,0.000007575399385902455;83,0.000008620102238341046;84,0.000008091666852082591;85,0.000009577891375934497;86,0.0000070504405482378075;87,0.000006518528613385547;88,0.0000062125923371306515;89,0.000006833156261124956;90,0.000007580614208793164;91,0.000006991339222143112;92,0.000007498915316838733;93,0.000006344701183695266;94,0.000006263002291740833;95,0.000005725875533997865;96,0.0000049975386035955865;97,0.000004696817150231399;98,0.000004314396804912781;99,0.000004147522472410111;100,0.0000036190870861516555;101,0.0000029707107734069064;102,0.0000030002614364542546;103,0.000002532665650587398;104,0.000002124171190815237;105,0.0000015088220897116411;106,0.0000010707769668921324;107,0.0000008934729886080456;108,0.0000006709738786044856;109,0.0000011715968761124955;110,0.0000008517544054823782;111,0.000001063823869704521;112,0.000001241127847988608;113,0.00000027812388750445;114,0.0000005562477750088999;115,0.0000008899964400142397;116,0.0000012828464311142755;117,0.0000015053455411178356;118,0.0000015018689925240298;119,0.0000016131185475258104;120,0.0000012932760768956925;121,0.0000013384712086151654;122,0.00000066749733001068;123,0.0000008413247597009613;124,0.000001077730064079744;125,0.00000061187255250979;126,0.00000033374866500533997;127,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005170879316482733;2,0.0005129716981132075;3,0.0005138060697757209;4,0.0005156973122107512;5,0.0005078542185831256;6,0.0005824470452118191;7,0.000701372819508722;8,0.000795934941260235;9,0.0008184073513705945;10,0.0008468872374510503;11,0.0008719183873264507;12,0.0008667452830188679;13,0.0008626290494838021;14,0.0008812077251690993;15,0.0008668009077963688;16,0.0008597921858312568;17,0.0009012882698469206;18,0.0009341625133499466;19,0.0009495149519401923;20,0.0009616967782128871;21,0.0009818329476682095;22,0.0009659798860804558;23,0.00097810608757565;24,0.0009637548949804201;25,0.00100063412246351;26,0.001021994037023852;27,0.0010509189213243147;28,0.0010738919544321824;29,0.0010824581701673194;30,0.0010747263260946955;31,0.001042130206479174;32,0.0010115365788536848;33,0.001051419544321823;34,0.001080121929512282;35,0.0010860181559273763;36,0.0010965868636525454;37,0.0011014262192951228;38,0.0011171680313278747;39,0.0011812477750089;40,0.001282874243503026;41,0.0013944575471698112;42,0.001509878960484158;43,0.0016150654147383413;44,0.001713243147027412;45,0.0017905615877536491;46,0.0018666562833748665;47,0.0019366878782484873;48,0.002034198113207547;49,0.0021762637949448204;50,0.0022925752046991815;51,0.002385746707013172;52,0.002495494393022428;53,0.0026214845140619435;54,0.0026982467070131716;55,0.0028177843538625845;56,0.0028859803310786756;57,0.002880751601993592;58,0.0030443440726237096;59,0.0031742835528657887;60,0.003301441794232823;61,0.00347621484514062;62,0.0036525453898184406;63,0.003772806158775365;64,0.0038623064257742967;65,0.003542018956924173;66,0.003133176842292631;67,0.0027005273228907084;68,0.0022241567283730864;69,0.0016969450872196513;70,0.001161167230331079;71,0.0006063656995372018;72,0.00000011124955500178001;73,0.00000011124955500177998;74,0.00000038937344250622997;75,0.0000007231221075115699;76,0.00000044499822000712;77,0.0000005006229975080099;78,0.0000005006229975080099;79,0.00000027812388750445;80,0.00000027812388750444997;81,0.0000007787468850124598;82,0.00000083437166251335;83,0.00000044499822000712003;84,0.00000016687433250266998;85,0;86,0.00000011124955500178;87,0.00000022249911000356;88,0;89,0;90,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000228061587753649;46,0.000012126201495194021;47,0.000026644268422926313;48,0.000044555446778212885;49,0.00005868414026343895;50,0.00007848656105375579;51,0.00009712086151655393;52,0.00011208392666429333;53,0.0001374488252046992;54,0.00015630562477750087;55,0.00016921057315770737;56,0.000172436810252759;57,0.00020380918476326095;58,0.0002347365610537558;59,0.0002495883766464934;60,0.00027172703809184764;61,0.0002973144357422571;62,0.0003177287290850836;63,0.0003197868458526166;64,0.0003249599501601993;65,0.0002888594695621218;66,0.0002811276254894981;67,0.00023957591669633322;68,0.00019657796368814526;69,0.00015625000000000003;70,0.00010490833036667853;71,0.00005556915272338911;72,0;73,0;74,0;75,0;76,0.00000022249911000355996;77,0.00000022249911000356;78,0;79,0;80,0;81,0;82,0;83,0.00000022249911000355996;84,0.00000033374866500534;85,0.00000005562477750088999;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.0000070643467426130306;37,0.00005056292274830901;38,0.0001318307226771093;39,0.00022038536845852617;40,0.00029959505161979356;41,0.00037763661445354223;42,0.00047675996796012817;43,0.0005594183873264508;44,0.0006216068885724459;45,0.0007024296902812389;46,0.000769123798504806;47,0.000879427732289071;48,0.000955744927020292;49,0.0010390152189391241;50,0.0011280148629405485;51,0.0012138995194019226;52,0.0013008410466358133;53,0.001357188946244215;54,0.001440570487718049;55,0.0015124933250267002;56,0.0015962086151655394;57,0.0016800351548593806;58,0.0017882253470986116;59,0.0018704943930224279;60,0.001957547169811321;61,0.002037313100747597;62,0.0021070109469562125;63,0.002190726237095052;64,0.002233557315770737;65,0.002013450071199715;66,0.001772817283730865;67,0.001523507030971876;68,0.0012671324314702742;69,0.0009706523673905303;70,0.0006703898184407263;71,0.0003421480064079744;72,0.00000417185831256675;73,0.000004950605197579209;74,0.00000517310430758277;75,0.0000043943574225703095;76,0.0000035043609825560703;77,0.00000361561053755785;78,0.000004060608757564969;79,0.00000456123175507298;80,0.000004060608757564969;81,0.000004728106087575649;82,0.0000038937344250623;83,0.00000433873264506942;84,0.00000378248487006052;85,0.00000411623353506586;86,0.00000456123175507298;87,0.0000035043609825560695;88,0.00000355998576005696;89,0.0000043943574225703095;90,0.00000394935920256319;91,0.0000030037379850480596;92,0.0000044499822000711994;93,0.0000022806158775364896;94,0.0000032818618725525103;95,0.00000300373798504806;96,0.0000031149875400498394;97,0.00000228061587753649;98,0.0000016131185475258098;99,0.0000013349946600213597;100,0.0000010012459950160199;101,0.00000066749733001068;102,0.00000061187255250979;103,0.0000003893734425062299;104,0.00000027812388750444997;105,0.00000027812388750445;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.0015479263082947671;2,0.0015463688145247421;3,0.0015413069597721607;4,0.0015368013527945886;5,0.0015388038447846208;6,0.0015468138127447489;7,0.0015561587753648983;8,0.0015269001423994304;9,0.0015096564613741547;10,0.0015209482912068354;11,0.001579688056247775;12,0.0016741389284442862;13,0.0018170946066215735;14,0.0018650987896048417;15,0.0018816193485226061;16,0.0018784487362050553;17,0.0018358957814168745;18,0.001848188857244571;19,0.0018328920434318263;20,0.0018242145781416875;21,0.0018526388394446423;22,0.0018288314346742614;23,0.0017827741189035246;24,0.0017433361516553934;25,0.0017827741189035244;26,0.0017868903524385902;27,0.001788002847988608;28,0.0018217670879316483;29,0.0018055802776788892;30,0.0017886703453186188;31,0.0017353261836952653;32,0.0017362718049127805;33,0.001757798593805625;34,0.0017652523139907441;35,0.001766809807760769;36,0.001762860448558206;37,0.0017495661267354933;38,0.0017353261836952653;39,0.001730931826272695;40,0.0017224212353150587;41,0.0017590779636881453;42,0.0017428355286578856;43,0.0017267599679601283;44,0.0016971675863296546;45,0.0017120750266998933;46,0.001745116144535422;47,0.001735938056247775;48,0.0017055669277322892;49,0.001685375133499466;50,0.0017196399964400145;51,0.001773429156283375;52,0.0017231443574225705;53,0.0016913826094695622;54,0.0017011725703097186;55,0.0016908819864720542;56,0.0016573402456390176;57,0.0016774764150943398;58,0.0016820376468494127;59,0.001708181292274831;60,0.0017282618369526522;61,0.0017068462976148097;62,0.0017003381986472057;63,0.0017007275720897115;64,0.00168938011747953;65,0.001468438501245995;66,0.0012376512993948026;67,0.001029614631541474;68,0.0008447734959060164;69,0.000634623086507654;70,0.0004164627091491634;71,0.00020097232111071557;72,0.00000016687433250267;73,0.00000016687433250266998;74,0.00000038937344250623;75,0.00000005562477750089;76,0.00000005562477750089;77,0.00000022249911000355996;78,0;79,0.00000016687433250267;80,0.00000022249911000355994;81,0;82,0;83,0.00000016687433250266998;84,0.00000016687433250266998;85,0;86,0;87,0;88,0.00000005562477750089;89,0.00000022249911000356;90,0;91,0;92,0.00000005562477750089;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0.00000005562477750089001;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000005562477750088999;12,0.0000003337486650053399;13,0.0000004449982200071199;14,0.00000038937344250622997;15,0.00000022249911000355996;16,0.00000022249911000355996;17,0.00000022249911000355996;18,0.0000005006229975080099;19,0.0000007231221075115699;20,0.0000011124955500177996;21,0.0000008899964400142398;22,0.00000139061943752225;23,0.0000008899964400142398;24,0.00000100124599501602;25,0.0000014462442150231403;26,0.0000011124955500178;27,0.0000008899964400142402;28,0.00000066749733001068;29,0.0000008752211084905664;30,0.0000018060669944820222;31,0.000001923400509522962;32,0.0000021076575849946602;33,0.0000010186287379850481;34,0.0000005006229975080099;35,0.00000044499822000712003;36,0.0000007231221075115699;37,0.00000100124599501602;38,0.00000088999644001424;39,0.00000050062299750801;40,0.0000006118725525097899;41,0.00000038937344250623;42,0.0000006674973300106801;43,0.0000007787468850124598;44,0.00000077874688501246;45,0.00000038937344250623;46,0.00000061187255250979;47,0.0000003928499911000357;48,0.0000010047225436098258;49,0.00000105687077251691;50,0.0000008343716625133501;51,0.00000155749377002492;52,0.00000100124599501602;53,0.0000005562477750089;54,0.00000100124599501602;55,0.0000008343716625133501;56,0.0000008343716625133501;57,0.0000009456212175151302;58,0.00000066749733001068;59,0.0000007231221075115699;60,0.0000007231221075115699;61,0.0000008899964400142401;62,0.00000061187255250979;63,0.0000011124955500178;64,0.0000010134139150943397;65,0.0000009456212175151299;66,0.00000105687077251691;67,0.0000006118725525097899;68,0.0000011124955500178;69,0.0000015574937700249199;70,0.000001009937366500534;71,0.00000094562121751513;72,0.0000006292552954788182;73,0.0000011455227616589533;74,0.0000015574937700249199;75,0.00000100124599501602;76,0.00000116812032751869;77,0.00000139061943752225;78,0.0000017799928800284797;79,0.0000011124955500177999;80,0.0000009004260857956568;81,0.0000014784022895158418;82,0.000000477156294499822;83,0.0000011333548415806339;84,0.0000005075760946956213;85,0.00000083437166251335;86,0.0000020137907729619076;87,0.000001765217548504806;88,0.0000018182349145603416;89,0.0000018912424350302597;90,0.0000021867490655037383;91,0.000001689602616589534;92,0.0000010151521893912425;93,0.000001122925195799217;94,0.0000010151521893912425;95,0.0000010255818351726594;96,0.0000019068869037023855;97,0.000001827795423193307;98,0.0000015609703186187255;99,0.0000019572968583125667;100,0.0000027499499377002492;101,0.0000025552632164471338;102,0.0000036608056692773227;103,0.0000022302059229263084;104,0.0000025848138794944824;105,0.0000014497207636169457;106,0.0000010151521893912425;107,0.0000012237451050195799;108,0.00000083437166251335;109,0.00000083437166251335;110,0.0000016374543876824494;111,0.000001187241344784621;112,0.0000009456212175151297;113,0.0000007335517532929869;114,0.0000012341747508009968;115,0.0000017278446511213956;116,0.0000014497207636169459;117,0.0000015644468672125312;118,0.0000011785499733001069;119,0.0000011820265218939124;120,0.0000003372252135991456;121,0.0000006188256496974012;122,0.0000005597243236027056;123,0.000002405771626913492;124,0.0000012932760768956925;125,0.0000013940959861160558;126,0.0000018356176575293698;127,0.00000100124599501602;128,0.0000011124955500178;129,0.000001846047303310787;130,0.000002617841091135635;131,0.000004230959638661446;132,0.0000034522127536489854;133,0.000004603819475347099;134,0.0000036156105375578497;135,0.0000009525743147027411;136,0.00000005562477750089;137,0.00000005562477750089;138,0;139,0.00000014340762949448205;140,0.00000050062299750801;141,0.00000022249911000356;142,0.00000033374866500533997;143,0;144,0.00000038937344250622997;145,0.0000005562477750088999;146,0.0000005597243236027057;147,0.000000750934496262015;148,0.0000007300752046991813;149,0.0000004658575115699538;150,0.00000028507698469206126;151,0.00000005562477750089;152,0;153,0.00000041023273406906374;154,0.00000044239080856176586;155,0.0000003693832880918476;156,0.00000016687433250266998;157,0.0000007622332791918833;158,0.0000004980155860626559;159,0.0000002329287557849769;160,0.00000044847476860092565;161,0.0000005840601637593451;162,0.0000004693340601637594;163,0.00000011124955500177995;164,0.0000004554278657885369;165,0.0000006848800729797081;166,0.0000010255818351726592;167,0.0000006118725525097899;168,0.0000002224991100035599;169,0.00000005562477750088998;170,0.0000002224991100035599;171,0.00000028160043609825553;172,0;173,0.00000011124955500177998;174,0;175,0.00000011124955500177995;176,0.00000016687433250266998;177,0;178,0.00000027812388750444997;179,0.00000016687433250266998;180,0.00000022249911000355994;181,0.00000077874688501246;182,0.00000038937344250623;183,0.0000005006229975080099;184,0.00000050062299750801;185,0.00000033374866500534;186,0.00000027812388750445007;187,0.00000033374866500534;188,0.00000011124955500178;189,0.00000027812388750445007;190,0.00000027812388750445007;191,0.00000011124955500178;192,0.00000005562477750089;193,0;194,0.0000008899964400142401;195,0.0000008343716625133501;196,0.00000072312210751157;197,0.0000012793698825204702;198,0.0000015018689925240302;199,0.0000008343716625133501;200,0.00000061187255250979;201,0.0000006118725525097899;202,0.0000008899964400142401;203,0.0000007231221075115702;204,0.00000150186899252403;205,0.0000010568707725169098;206,0.00000077874688501246;207,0.00000044499822000712;208,0.00000022249911000356;209,0;210,0;211,0.00000027812388750445007;212,0.00000044499822000711987;213,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000011124955500178;49,0.00000005562477750089;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00000011124955500177998;57,0;58,0.00000005562477750089;59,0.00000018773362406550372;60,0.00000011124955500177998;61,0.00000022249911000355996;62,0.00000022249911000355996;63,0.00000005562477750089;64,0.00000043748135818267533;65,0.00000017556570398718403;66,0.00000041544755695977224;67,0.0000005666774207903168;68,0.000000789176530793877;69,0.0000007535419077073692;70,0.0000005412041912789138;71,0.0000002706070256800053;72,0.00000061187255250979;73,0.0000005649391464934141;74,0.00000083437166251335;75,0.00000039806481399074405;76,0.00000083437166251335;77,0.0000008387173482556071;78,0.0000005751005400685188;79,0.0000006336009812210752;80,0.000001007940700078416;81,0.0000012292653004219064;82,0.00000133499466002136;83,0.000002733698349034703;84,0.000002366402063107964;85,0.000001307783156213054;86,0.0000013008300590254432;87,0.000001384267225276778;88,0.0000014110066052019744;89,0.0000016566397854778953;90,0.0000026163549739126667;91,0.000002561143304809497;92,0.000002754592948387935;93,0.000003918834784006929;94,0.0000017150677985347473;95,0.0000025164574172784388;96,0.0000019764178755784976;97,0.0000015018689925240298;98,0.0000014462442150231399;99,0.000002417330614483483;100,0.000002523097094388243;101,0.0000019292162173558097;102,0.0000010603473211107155;103,0.0000008937783611196637;104,0.0000013384712086151659;105,0.0000006257787468850124;106,0.0000003372252135991456;107,0.0000005649391464934141;108,0.000000449343905749377;109,0.000000894342125756497;110,0.0000011681203275186898;111,0.0000011124955500177999;112,0.0000008193379388644609;113,0.0000005006229975080099;114,0.0000013136185842080955;115,0.0000029917110061289485;116,0.000002243031568414267;117,0.00000155749377002492;118,0.0000017799928800284797;119,0.00000088999644001424;120,0.0000010012459950160199;121,0.0000009305874938662406;122,0.0000009305874938662406;123,0.0000017243681025275898;124,0.0000015574937700249199;125,0.00000083437166251335;126,0.0000014462442150231399;127,0.00000127936988252047;128,0.000002862420982748502;129,0.000002621354760034747;130,0.000003714229908679298;131,0.000005142510215953463;132,0.0000044499822000712;133,0.0000033630439802565118;134,0.0000017724760182040352;135,0.00000194686721253115;136,0.00000150186899252403;137,0.0000011124955500178;138,0.0000005562477750089;139,0.0000007231221075115699;140,0.0000005006229975080099;141,0.0000005006229975080099;142,0.00000027812388750444997;143,0.00000011124955500178001;144,0.00000022249911000356;145,0.0000005006229975080099;146,0.0000005006229975080099;147,0.00000022249911000356;148,0.00000033374866500534;149,0.00000022249911000356;150,0.00000022249911000355994;151,0.00000005562477750089;152,0.00000011124955500178001;153,0.00000005562477750089001;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000016687433250266998;13,0.0000002224991100035599;14,0.00000033374866500533997;15,0.00000038937344250622997;16,0.00000027812388750444997;17,0.0000003337486650053399;18,0.0000003337486650053399;19,0.00000027812388750444997;20,0.00000016687433250266996;21,0;22,0.0000005110526432894268;23,0.0000005805836151655393;24,0.0000009073791829832681;25,0.0000015818296101815593;26,0.0000017313211997152014;27,0.0000012237451050195799;28,0.00000100124599501602;29,0.000000973433606265575;30,0.0000007856999822000713;31,0.00000044499822000712014;32,0.0000010186287379850481;33,0.0000010247126980242078;34,0.000001249819219473122;35,0.000001647884033463866;36,0.0000017999830344428623;37,0.0000012063623620505518;38,0.0000012463426708793164;39,0.0000007405048504805984;40,0.0000005319119348522607;41,0.000001048179401032396;42,0.0000009612656861872553;43,0.00000011472610359558563;44,0.00000027812388750444997;45,0.0000009664805090779636;46,0.0000007891765307938767;47,0.0000011333548415806335;48,0.0000014844862495550017;49,0.00000047628715735137054;50,0.0000006987862673549308;51,0.0000008413247597009613;52,0.0000012306982022071912;53,0.0000007265986561053755;54,0.0000006118725525097901;55,0.000000806559273762905;56,0.0000008413247597009613;57,0.0000007405048504805981;58,0.0000006501145870416518;59,0.0000007300752046991812;60,0.0000012428661222855108;61,0.0000006188256496974012;62,0.00000039284999110003564;63,0.0000003407017621929512;64,0.0000016652667764328941;65,0.0000017765163314346741;66,0.0000009021643600925596;67,0.000001561839455767177;68,0.0000023631839066393734;69,0.000001741750845496618;70,0.0000024335840156639375;71,0.000002050294533196867;72,0.0000020268278301886793;73,0.0000014062639061943753;74,0.0000011437844873620506;75,0.0000015783530615877537;76,0.0000033392249243503035;77,0.0000026951942973478112;78,0.0000028177426352794594;79,0.0000004241389284442863;80,0.0000004050179111783554;81,0.0000020963588020647923;82,0.000001802590445888217;83,0.0000025726459594161635;84,0.0000013819280660377362;85,0.00000038937344250623;86,0.00000022249911000356007;87,0.00000005562477750089002;88,0;89,0;90,0;91,0;92,0.00000005562477750089001;93,0.00000027812388750445;94,0.00000038937344250623;95,0.00000033374866500533997;96,0.00000050062299750801;97,0.00000105687077251691;98,0.00000127936988252047;99,0.0000012237451050195797;100,0.0000008343716625133497;101,0.00000105687077251691;102,0.00000127936988252047;103,0.0000007787468850124599;104,0.0000007787468850124599;105,0.0000002781238875044499;106,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000011124955500178001;49,0.00000027812388750444997;50,0.00000016687433250266998;51,0.00000005562477750088999;52,0.000000055624777500890004;53,0.00000022249911000356001;54,0.0000005369000263129382;55,0.0000009073791829832682;56,0.0000004623809629761482;57,0.0000005718922436810252;58,0.0000004935943231770551;59,0.00000028507698469206126;60,0.00000045195131719473127;61,0.0000009734336062655751;62,0.00000040067222543609827;63,0.0000006918331701673194;64,0.0000021450304823780707;65,0.0000011089434242806507;66,0.0000011950635791206835;67,0.0000021623376482037553;68,0.0000018798680749570481;69,0.0000019199239609291563;70,0.0000021180872307760767;71,0.0000011898487562299752;72,0.0000016512850049143282;73,0.0000008681924341596112;74,0.000001237348990821428;75,0.0000011992581105762534;76,0.0000015226527069435202;77,0.0000013150045056069775;78,0.000002327549283552866;79,0.0000016383235248309006;80,0.0000011941188648288886;81,0.0000014893231867289922;82,0.0000009968247321304192;83,0.0000012724167853328588;84,0.0000018121509545211823;85,0.0000010707769668921324;86,0.0000009073791829832681;87,0.0000007865691193485226;88,0.00000046491279727815867;89,0.0000002902162304394261;90,0.000000898687811498754;91,0.0000007318134789960841;92,0.000000616218238252047;93,0.0000005597243236027056;94,0.00000011124955500178002;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.0000189124243503026;62,0.00008532840868636526;63,0.00021927287290850834;64,0.0003623623982066572;65,0.00044783334538536844;66,0.0005071589088643646;67,0.0005125545122819509;68,0.0004851175907796369;69,0.0004406177687789249;70,0.00032723013639195445;71,0.00018193300273673907;72,0.00000011124955500177998;73,0.00000022249911000355996;74,0.00000027812388750444997;75,0.00000027812388750445;76,0.00000016687433250267;77,0.00000016687433250267;78,0;79,0;80,0;81,0;82,0;83,0.00000011124955500177998;84,0.00000011124955500178;85,0.00000005562477750089;86,0.00000038937344250622997;87,0.00000027812388750444997;88,0;89,0;90,0;91,0;92,0;93,0;94,0.00000005562477750088999;95,0;96,0.00000005562477750088999;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0.00000005562477750089;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0.000000055624777500890004;136,0.00000016687433250266998;137,0.000000055624777500890004;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0.00000006257787468850124;32,0;33,0.000000055624777500889984;34,0.000000132709731506753;35,0.00000035065928409125884;36,0.00000011124955500178;37,0;38,0.00000011124955500177998;39,0.00000016687433250267;40,0;41,0.0000004137092826628693;42,0.0000005249588376646494;43,0.00000028160043609825564;44,0.00000022249911000356;45,0.0000010012459950160199;46,0.00000083437166251335;47,0.0000006674973300106799;48,0.00000011124955500178;49,0;50,0.0000007578875934496262;51,0.0000007231221075115699;52,0.0000010985893556425772;53,0.000002124171190815236;54,0.0000015418493013527943;55,0.00000017556570398718403;56,0.00000019294844695621218;57,0.000000250311498754005;58,0.00000043109202563189745;59,0.0000003407017621929512;60,0.00000027812388750444997;61,0.0000008343716625133498;62,0.0000013906194375222496;63,0.0000009039026343894624;64,0.0000010638238697045213;65,0.0000010221052865788537;66,0.0000022562800373798504;67,0.0000017660866856532574;68,0.0000009560508632965469;69,0.0000013610687744749021;70,0.0000017973756229975082;71,0.0000010116756407974368;72,0.0000015740073758454967;73,0.000001550540672837309;74,0.0000026265324626201492;75,0.000001793695202726905;76,0.0000013349946600213597;77,0.0000014323380206479172;78,0.0000014818788381096474;79,0.0000015653160043609827;80,0.00000233624065503738;81,0.000004283440500304357;82,0.0000029372114378826442;83,0.0000017487039426842294;84,0.000004127993711790585;85,0.000004576661621980055;86,0.000004403907201115023;87,0.000004495906977791842;88,0.000002962620286864532;89,0.000002577860782306871;90,0.0000028061756001432785;91,0.000002659559674261303;92,0.000002071153824759701;93,0.0000028116586752402997;94,0.0000032740396382164477;95,0.0000036573291206835173;96,0.0000028264340067639734;97,0.0000034174472677109293;98,0.000004390880873976504;99,0.000004349162290850836;100,0.000004354977998683684;101,0.000002754628256178334;102,0.0000023640530437878253;103,0.0000019798944241723034;104,0.0000016374543876824492;105,0.000001630501290494838;106,0.000001853000400498398;107,0.00000083437166251335;108,0.0000012376512993948026;109,0.0000019094943151477394;110,0.0000019414485179636443;111,0.00000047401237864184344;112,0.0000019659882297970807;113,0.0000007787468850124599;114,0.0000015062146782662866;115,0.000002678144187114609;116,0.000003922748583697024;117,0.000004844634845997653;118,0.0000037413671718769907;119,0.0000036503760234959062;120,0.0000045368959149163405;121,0.00000404844083748665;122,0.000002738651154770381;123,0.0000036781884122463516;124,0.000004234436187255251;125,0.0000057797620372018526;126,0.000006373382709594162;127,0.000006839240221164115;128,0.000007813542964578143;129,0.000014027004438857244;130,0.000016014721097365612;131,0.000018403367503428137;132,0.000017317418191746986;133,0.000016637023295656816;134,0.000013044879461107156;135,0.000011683810686632255;136,0.00000634122463510146;137,0.000008065592737629051;138,0.0000047837308650765405;139,0.0000027812388750445;140,0.0000030593627625489503;141,0.000004283107867568531;142,0.00000745372018511926;143,0.00000717559629761481;144,0.00000417185831256675;145,0.0000026699893200427206;146,0.0000024474902100391606;147,0.0000015018689925240302;148,0.00000239186543253827;149,0.00000305936276254895;150,0.00000250311498754005;151,0.0000007231221075115699;152,0.00000022249911000356;153,0.00000005562477750089;154,0;155,0;156,0.0000005562477750088999;157,0.00000088999644001424;158,0.00000044499822000712;159,0.00000005562477750089;160,0.00000011124955500178;161,0;162,0;163,0.00000022249911000356;164,0.00000011124955500178;165,0;166,0;167,0.00000016687433250267;168,0.00000022249911000356001;169,0.000000055624777500890004;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0.00000038937344250623;180,0.00000016687433250266998;181,0;182,0;183,0.00000016687433250267;184,0.00000011124955500178;185,0.00000027812388750445007;186,0;187,0;188,0.00000044499822000712;189,0.00000077874688501246;190,0.0000004449982200071199;191,0.00000038937344250622997;192,0.0000005562477750088999;193,0.00000044499822000712;194,0.00000050062299750801;195,0.0000012793698825204702;196,0.0000011124955500178003;197,0.0000008343716625133502;198,0.0000011681203275186902;199,0.0000006118725525097901;200,0;201,0;202,0;203,0;204,0;205,0.00000027812388750445007;206,0.0000011124955500178003;207,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00000044934390574937693;82,0.000001095944533889532;83,0.0000030136395364860234;84,0.000004867168031327875;85,0.000004867168031327875;86,0.0000022145614542541832;87,0.0000021137415450338195;88,0.0000016465616225873436;89,0.0000032129668759071467;90,0.0000030871751512993953;91,0.000004552087109860395;92,0.000003277516186810253;93,0.000003430548705467215;94,0.000003199293843449626;95,0.0000031966864320042717;96,0.0000029961088923005418;97,0.000001703508810964756;98,0.000002440537112851549;99,0.0000024162012726949094;100,0.0000017878151143645425;101,0.0000013775823802954787;102,0.0000014492674898888744;103,0.0000025873838806321453;104,0.0000012724167853328584;105,0.0000019980714836744004;106,0.00000129278539285993;107,0.0000008621840512637948;108,0.00000017556570398718403;109,0.0000005597243236027056;110,0.00000030419800195799224;111,0.0000004589044143823425;112,0.0000015270739698291206;113,0.0000006362083926664294;114,0.00000038937344250623;115,0.0000013906194375222498;116,0.00000211374154503382;117,0.0000012967526254894982;118,0.0000017408817083481666;119,0.0000032523112095051625;120,0.000002671727594339623;121,0.000002987224379227483;122,0.000003647768612050551;123,0.0000030784837798148804;124,0.00000228061587753649;125,0.000003511314079743681;126,0.0000027881919722321115;127,0.000002753426486294055;128,0.000004885419911445354;129,0.000007677957569419722;130,0.000009284992156906373;131,0.000005518151755517978;132,0.000009287599568351726;133,0.000009443175117924528;134,0.000008782630885101459;135,0.000003786830555802777;136,0.0000006118725525097899;137,0.0000012793698825204702;138,0.00000161311854752581;139,0.0000009456212175151301;140,0.0000007231221075115699;141,0.00000005562477750089;142,0.00000044499822000712;143,0.000001011675640797437;144,0.00000022597565859736563;145,0.00000011124955500178;146,0.00000028160043609825564;147,0.00000050062299750801;148,0.0000006883566215735136;149,0.0000008030827251690993;150,0.00000011124955500178;151,0.00000022249911000356;152,0.00000040327963688145255;153,0.0000004137092826628694;154,0.00000011472610359558563;155,0.000000399803088287647;156,0.0000009247619259522964;157,0.00000045542786578853683;158,0.0000007474579476682094;159,0.0000006362083926664294;160,0.00000005562477750089;161,0;162,0.00000005910132609469563;163,0.0000005180057404770381;164,0.000000622302198291207;165,0.00000011472610359558563;166,0.0000002224991100035599;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.00000005562477750089;179,0;180,0.00000005562477750089;181,0.00000005562477750088998;182,0.0000002224991100035599;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000016687433250266998;30,0.00000022249911000356001;31,0.00000016687433250267;32,0.00000061187255250979;33,0.00000044499822000712003;34,0.0000008934729886080455;35,0.00000239186543253827;36,0.0000007231221075115702;37,0.000001508822089711641;38,0.00000183561765752937;39,0.0000011124955500178;40,0.0000007300752046991813;41,0.00000177999288002848;42,0.0000011159720986116056;43,0.0000015157751868992523;44,0.00000266998932004272;45,0.000002016398184407262;46,0.0000019607734069063725;47,0.00000189124243503026;48,0.0000019712030526877894;49,0.0000018981955322178713;50,0.00000083437166251335;51,0.0000010012459950160196;52,0.0000019121017265930937;53,0.0000019155782751868995;54,0.0000016687433250267;55,0.0000017938990744037024;56,0.0000019121017265930933;57,0.000001686126067995728;58,0.0000017278446511213954;59,0.0000014462442150231399;60,0.00000194686721253115;61,0.0000024022950783196867;62,0.0000020198747330010686;63,0.0000019920623442506232;64,0.0000034104941705233177;65,0.000005190487050551798;66,0.000004436076005695977;67,0.000005611149430402279;68,0.000005060116478284087;69,0.000003933714733891064;70,0.000004835879093983625;71,0.0000036955711552153796;72,0.0000035721536801352796;73,0.000004635977549839801;74,0.000004147522472410111;75,0.00000509314368992524;76,0.000003978909865610538;77,0.000005001015152189391;78,0.000005578122218761125;79,0.000005433845452118192;80,0.000006487239676041295;81,0.000005930991901032395;82,0.000007126924617301531;83,0.000006271693663225348;84,0.000005364314480242079;85,0.000006426400075649698;86,0.000008519282329120685;87,0.000006195209594161624;88,0.000006369037023851905;89,0.00000746588810519758;90,0.000008044733446066217;91,0.000008451489631541476;92,0.00000799258521715913;93,0.000007464149830900677;94,0.000007650145180669278;95,0.0000068001290494838025;96,0.000005816265797436811;97,0.000006963526833392667;98,0.000005360837931648273;99,0.000006454212464400143;100,0.000004376974679601282;101,0.000004641192372730509;102,0.000003413970719117124;103,0.000002583075605197579;104,0.0000030245972766108934;105,0.000002475302598789605;106,0.000002631747285510858;107,0.0000017869459772160912;108,0.0000019016720808116768;109,0.0000015609703186187255;110,0.0000016131185475258098;111,0.0000015053455411178356;112,0.000002346670300818797;113,0.0000010673004182983269;114,0.00000331315080989676;115,0.0000036434229263082947;116,0.000005258279748131008;117,0.00000492626935742257;118,0.0000072068852349590615;119,0.000005190487050551797;120,0.0000034695954966180134;121,0.000004780254316482734;122,0.000005096620238519046;123,0.000005878843672125312;124,0.000006223021982912069;125,0.000008093405126379496;126,0.000008441059985760057;127,0.000004849785288358846;128,0.0000008378482111071557;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004370995016019936;2,0.0005332191171235315;3,0.0006325649697401211;4,0.0007368058027767889;5,0.0008535622107511571;6,0.0010074759700961196;7,0.0011420323068707726;8,0.0012412669099323601;9,0.0012942216981132076;10,0.0013985181559273763;11,0.0015927042541829836;12,0.0019052598789604841;13,0.002229051708793165;14,0.0023990966536133855;15,0.0024907106621573517;16,0.002543554200783197;17,0.0026788336596653612;18,0.0028581123175507304;19,0.003017811053755785;20,0.0031420211819152724;21,0.0031940859736561055;22,0.003217670879316483;23,0.003365410288358847;24,0.0035496395514417944;25,0.003725858846564614;26,0.0038728195087219656;27,0.003957146671413315;28,0.004070176219295123;29,0.004157785243859024;30,0.004241389284442862;31,0.004329610181559274;32,0.004477293965824136;33,0.004747463510145961;34,0.004967292630829477;35,0.005062577874688501;36,0.005067639729441083;37,0.00510129271982912;38,0.005213487896048417;39,0.00539810653257387;40,0.005492112406550374;41,0.005613930669277322;42,0.00570993903524386;43,0.0059299350302598796;44,0.006111438679245284;45,0.006186587753648986;46,0.0062102839088643644;47,0.006317417230331079;48,0.006406361249555003;49,0.006628526610893556;50,0.006711463154147384;51,0.006828275186899253;52,0.006920334193663226;53,0.006992646404414382;54,0.007123920879316484;55,0.007323836329654681;56,0.007477638839444642;57,0.007637337575649697;58,0.0077044766820932725;59,0.007715768511925953;60,0.007689291117835529;61,0.007577596564613742;62,0.007346698113207548;63,0.00707741856532574;64,0.006811087130651478;65,0.005849279102883589;66,0.004963398896404415;67,0.004065837486650053;68,0.0031829610181559275;69,0.002314157618369527;70,0.0015283463866144536;71,0.00074437077251691;72,0.0000003893734425062301;73,0.00000022249911000356001;74,0.0000008343716625133502;75,0.0000005006229975080099;76,0.0000004449982200071199;77,0.0000005006229975080099;78,0.00000038937344250623;79,0;80,0.00000033374866500534;81,0.00000038937344250623;82,0;83,0.00000016687433250266998;84,0;85,0;86,0;87,0;88,0;89,0.00000011124955500178;90,0.00000033374866500533997;91,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.00000023640530437878246;55,0.00000011124955500178001;56,0.00000016687433250267004;57,0.000000055624777500890004;58,0.00000005562477750089;59,0.00000016687433250266998;60,0;61,0.0000001147261035955856;62,0.00000033374866500533997;63,0.00000011124955500178;64,0.00000041023273406906374;65,0.0000004484747686009257;66,0.0000006935714444642222;67,0.00000045282045434318266;68,0.00000022945220719117123;69,0.0000010864214355642578;70,0.0000007729231296134229;71,0.0000009525743147027412;72,0.0000013054439969740123;73,0.0000010969798424047047;74,0.0000008943421257564971;75,0.000000793522216536134;76,0.0000009619309516589095;77,0.0000012762903471920065;78,0.0000013993751895362788;79,0.0000005180057404770381;80,0.000001624937739735924;81,0.0000018356176575293698;82,0.0000012306982022071912;83,0.0000012515574937700248;84,0.0000015227282840868636;85,0.0000020008824767941672;86,0.0000015610346991482404;87,0.000001519251735493058;88,0.0000016794331754482398;89,0.0000016677856646501654;90,0.000001746965668387326;91,0.0000019155782751868995;92,0.000002180665105464578;93,0.0000015459267348887395;94,0.0000013541156772872906;95,0.000001450922533501224;96,0.0000013083840411551934;97,0.0000011656845974853758;98,0.0000012063623620505518;99,0.000001187906610256275;100,0.0000015702464799130005;101,0.0000007335517532929869;102,0.00000033374866500533997;103,0.0000005840601637593451;104,0.00000022597565859736563;105,0.00000027812388750445;106,0.00000033374866500533997;107,0.00000027812388750445;108,0.00000044499822000712;109,0.00000016687433250267004;110,0.00000027812388750445;111,0.0000002824695732467071;112,0.0000003372252135991456;113,0.00000011820265218939126;114,0.00000018078052687789246;115,0.0000002920300818796725;116,0.0000005632008721965112;117,0.0000002920300818796725;118,0.00000017035088109647563;119,0.0000003928499911000356;120,0;121,0.00000022249911000356001;122,0.0000006118725525097899;123,0.00000066749733001068;124,0.00000028160043609825564;125,0.00000023640530437878252;126,0.00000005910132609469563;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.0000020087775838283155;27,0.000008035110335313262;28,0.0000020087775838283155;29,0.0000020087775838283155;30,0.000006026332751484947;31,0.000011723755479886138;32,0.000009714977896057821;33,0;34,0.000009115876365441907;35,0.000011612643062357494;36,0.0000036362512425958248;37,0.0000013572821512353484;38,0.000007112158472473224;39,0.000012322857010502052;40,0.000015741310647542768;41,0.000011453563972353976;42,0;43,0;44,0;45,0;46,0;47,0;48,0.000006836907274081431;49,0.000009402701983140212;50,0.0000023935180077529884;51,0.0000002714564302470697;52,0.00001185063927507448;53,0.000008432185638033764;54,0;55,0.000002278969091360477;56,0.00000705470487963654;57,0.000004401030668866395;58,0.000005697422728401191;59,0.0000011394845456802384;60,0;61,0.000004557938182720954;62,0.000004557938182720954;63,0.0000005680105334089942;64,0.0000028400526670449707;65,0.000008537475395446163;66,0.0000034115266793162154;67,0.0000017040316002269824;68,0.0000011360210668179884;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000005562477750089;24,0.00000011124955500178;25,0;26,0;27,0;28,0;29,0;30,0;31,0.00000005562477750089;32,0.00000011124955500178;33,0.00000005562477750089002;34,0.00000033374866500533997;35,0.0000003893734425062299;36,0.00000005562477750089;37,0;38,0.00000005562477750088999;39,0.000001063823869704521;40,0.0000016548371306514776;41,0.0000004936699003203988;42,0.000001195932716269135;43,0.0000021624132253470987;44,0.0000010429645781416877;45,0.0000008552309540761837;46,0.0000008691371484514063;47,0.00000127936988252047;48,0.00000100124599501602;49,0.0000003407017621929512;50,0.0000006153491011035957;51,0.0000012237451050195799;52,0.0000016687433250267001;53,0.00000226844795745817;54,0.0000012046240877536492;55,0.00000038937344250622997;56,0.0000013906194375222502;57,0.0000011264017443930223;58,0.00000083437166251335;59,0.0000007787468850124599;60,0.0000011542141331434675;61,0.000001863430046279815;62,0.000002510068084727661;63,0.0000039284999110003565;64,0.0000039493592025631895;65,0.0000031706123175507297;66,0.0000036190870861516555;67,0.0000025118063590245637;68,0.00000324535811231755;69,0.000004510821800462798;70,0.000004613379983980064;71,0.000003921546813812745;72,0.0000032227605464578142;73,0.000006633254716981131;74,0.000005423415806336774;75,0.000006377728395336419;76,0.000007226006252224992;77,0.000006103081056425773;78,0.0000048045901566393735;79,0.0000033027211641153433;80,0.0000049471286489854044;81,0.000005515544344072624;82,0.000007952604908330367;83,0.00000682967971253115;84,0.000004971464489142043;85,0.0000072659865610537555;86,0.000010226267688679245;87,0.000009045979441082236;88,0.000007806589867390531;89,0.000006708000511747952;90,0.000006911378604485582;91,0.000009749980531327876;92,0.000008569692283730865;93,0.000009421446689213243;94,0.0000097047853996084;95,0.0000075528018200427194;96,0.000007208623509255964;97,0.0000056407000934496265;98,0.000005892749866500535;99,0.000006827941438234249;100,0.000005244373553755785;101,0.000005193963599145604;102,0.0000034939313367746534;103,0.0000031862567862228557;104,0.00000385027756763973;105,0.000004568184852260592;106,0.00000433873264506942;107,0.000003546079565681737;108,0.000002384912335350659;109,0.0000018947189836240657;110,0.000002624794188323247;111,0.000003125417185831257;112,0.0000032262370950516204;113,0.00000194686721253115;114,0.0000026699893200427198;115,0.0000048949804200783195;116,0.000006010952518689927;117,0.000006007475970096121;118,0.000010290583837664649;119,0.00000695309718761125;120,0.000005079237495550018;121,0.00000878871484514062;122,0.000007398095407618371;123,0.00000949966903257387;124,0.000012515574937700253;125,0.000013794944820220722;126,0.00001856476949092204;127,0.000019805897338910643;128,0.000023317211418654326;129,0.00002543442951228195;130,0.00002408552865788537;131,0.00002186053755784977;132,0.000027423015307938766;133,0.00002820176219295123;134,0.000027756763972944107;135,0.00002024741901032396;136,0.00000789871840512638;137,0.00000734247063011748;138,0.00000806559273762905;139,0.00000628559985760057;140,0.00000406060875756497;141,0.00000784309362762549;142,0.00000767621929512282;143,0.000005840601637593451;144,0.0000028924884300462798;145,0.0000021693663225347102;146,0.0000017243681025275902;147,0.0000038937344250623005;148,0.00000367123531505874;149,0.0000012237451050195799;150,0.0000016687433250267001;151,0.00000133499466002136;152,0.0000012237451050195799;153,0.0000015018689925240298;154,0;155,0.00000011124955500177995;156,0.0000009456212175151301;157,0.00000139061943752225;158,0.0000007787468850124598;159,0.00000011124955500177998;160,0.0000007231221075115698;161,0.00000050062299750801;162,0.00000127936988252047;163,0.0000008343716625133501;164,0;165,0;166,0;167,0.00000044499822000712;168,0.0000008343716625133501;169,0.0000011681203275186902;170,0.00000027812388750445007;171,0;172,0.0000002224991100035599;173,0.00000027812388750444997;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0.00000011124955500177995;182,0.0000008899964400142396;183,0;184,0.00000022249911000356;185,0.00000066749733001068;186,0.00000094562121751513;187,0.0000005562477750089;188,0.00000005562477750088998;189,0.00000005562477750088998;190,0;191,0.00000005562477750089;192,0.00000027812388750445007;193,0.00000105687077251691;194,0.0000011124955500178003;195,0.00000105687077251691;196,0.00000100124599501602;197,0.0000011124955500178003;198,0.0000012237451050195803;199,0.00000144624421502314;200,0.00000105687077251691;201,0.00000077874688501246;202,0.00000066749733001068;203,0.00000011124955500177995;204,0;205,0;206,0;207,0;208,0;209,0.0000008343716625133502;210,0.00000072312210751157;211,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.000424750800996796;2,0.0005398940904236384;3,0.0006546480064079744;4,0.0007676219295122819;5,0.0008835439658241367;6,0.0010001334994660022;7,0.0011172792808828765;8,0.001229251957992168;9,0.0013513483446066217;10,0.0014510835706657173;11,0.0016081679423282308;12,0.0018551975792096833;13,0.0021572957458170167;14,0.002341803132787469;15,0.0024182872018511927;16,0.0025930602527589894;17,0.0027411890352438593;18,0.0028784153613385546;19,0.003011525453898185;20,0.003206935297258811;21,0.0033372085261658955;22,0.0034041251334994667;23,0.003455800551797793;24,0.0035652144891420434;25,0.0036956545923816303;26,0.0038196422214311146;27,0.003925218049127804;28,0.004038358846564614;29,0.004072289960840157;30,0.0041750289248843;31,0.004350191349234604;32,0.00451995817016732;33,0.004692951228195087;34,0.004856766197935208;35,0.004962898273406907;36,0.004973578230687078;37,0.005088276521893913;38,0.005256763972944108;39,0.005340979886080456;40,0.00544249510501958;41,0.005583559540761838;42,0.0057261258454966175;43,0.005837097276610893;44,0.005928488786044856;45,0.006056926397294412;46,0.0061935408508365965;47,0.006340779636881453;48,0.00642249243503026;49,0.0065710105909576365;50,0.006686376379494482;51,0.006739053043787826;52,0.006856921947312211;53,0.006952930313278747;54,0.0070742479530081885;55,0.007115410288358846;56,0.007103506585973656;57,0.007285844606621574;58,0.007479196333214668;59,0.0075817684229263094;60,0.0076183695265218945;61,0.0075821577963688155;62,0.007394757920968317;63,0.0071369370772516915;64,0.006734769935920256;65,0.005783641865432538;66,0.004878126112495549;67,0.003992857778568885;68,0.0031250556247775013;69,0.002277055891776433;70,0.001497808383766465;71,0.000740310163759345;72,0;73,0.00000016687433250267;74,0.00000038937344250622997;75,0.00000022249911000355996;76,0.00000011124955500177997;77,0;78,0.0000005562477750088999;79,0.0000008899964400142398;80,0.00000088999644001424;81,0.00000033374866500533997;82,0.00000011124955500178;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0.00000011124955500178;94,0.00000011124955500178;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.00000011994092648629408;26,0;27,0;28,0;29,0.00000019005132312804085;30,0.000001110757275720897;31,0.0000024457519357422573;32,0.0000012695196615046876;33,0.0000017938990744037022;34,0.0000009039026343894625;35,0.0000004913522012578617;36,0.000001242866122285511;37,0.000001075991789782841;38,0.0000008366893615758871;39,0.0000020187158834698;40,0.0000028843764833274005;41,0.000002646812329417349;42,0.000002624214763557612;43,0.00000016687433250267;44,0.0000011211869215023139;45,0.0000006935714444642223;46,0.00000223310304675448;47,0.000002128227164174677;48,0.0000011126243110768296;49,0.0000007956575040983786;50,0.0000005562477750088999;51,0.0000007787468850124602;52,0.00000038937344250622997;53,0.00000028507698469206126;54,0.0000022041318084727663;55,0.000004233277337723983;56,0.000003232610767473597;57,0.0000016444074848700607;58,0.00000016687433250267;59,0.0000017019636782563983;60,0.000002456503484171249;61,0.0000025261632171063915;62,0.0000005562477750088999;63,0;64,0.000002759864539245547;65,0.0000030199618784858194;66,0.0000013303592618962857;67,0.0000017536290531921205;68,0.0000026294875289248846;69,0.000001497319435104976;70,0.0000011033320546501767;71,0.000001733724739483758;72,0.0000015181787266678095;73,0.0000011003490901159853;74,0.00000007013185681825175;75,0.00000011124955500177998;76,0.00000022249911000356;77,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000028160043609825564;48,0.0000005597243236027056;49,0.0000003893734425062299;50,0.00000072312210751157;51,0.000000695309718761125;52,0.000000509314368992524;53,0.00000038937344250623;54,0.00000027812388750444997;55,0.00000050062299750801;56,0.0000008943421257564971;57,0.0000008552309540761837;58,0.0000005093143689925241;59,0.0000009073791829832681;60,0.0000007491962219651122;61,0.0000007874382564969741;62,0.00000018078052687789249;63,0.000000973433606265575;64,0.000001759133588465646;65,0.0000014688417808828764;66,0.0000015105603640085438;67,0.000001684387793698825;68,0.0000014149552776788896;69,0.0000019590351326094696;70,0.0000022388972944108224;71,0.0000011359622530259878;72,0.000001185503070487718;73,0.00000116812032751869;74,0.0000015192517354930582;75,0.0000015731382386970453;76,0.00000155749377002492;77,0.0000021406847966358134;78,0.0000013601996373264507;79,0.000001700901399519402;80,0.0000027595104463332147;81,0.0000013975725347098611;82,0.0000017452273940904238;83,0.0000018025904458882164;84,0.0000025778607823068713;85,0.000002109395859291563;86,0.0000025926361138305446;87,0.000002122432916518334;88,0.0000023006060319508724;89,0.000002310166540583838;90,0.000002583075605197579;91,0.0000033348792386080455;92,0.000002684764651566394;93,0.0000031193332257920966;94,0.0000032140691749733006;95,0.0000023866506096475616;96,0.0000026604288114097543;97,0.0000021406847966358134;98,0.0000017938990744037024;99,0.0000018182349145603418;100,0.000002231944197223211;101,0.0000023779592381630476;102,0.0000009612656861872553;103,0.0000007874382564969741;104,0.00000028681525898896404;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "draconicevolution:deepslate_draconium_ore", + "distrib": "0,0;1,0.00010158648818529727;2,0.00009853929334282665;3,0.00009999249065503738;4,0.00010321525120149519;5,0.0001011814702741189;6,0.00010107022071911712;7,0.0000962951812255251;8,0.00009304460829031684;9,0.00008986182805268778;10,0.00009192863619170524;11,0.00010137963354396582;12,0.00011364837353150588;13,0.00011357362773673906;14,0.00010520731354574582;15,0.0000574812544499822;16,0.000010791206835172659;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.0000015218742588155235;171,0.000004565622776446571;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0.0000022928230068094765;188,0.000009171292027237906;189,0.0000022928230068094765;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0.000004585646013618953;203,0.0000022928230068094765;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.0000006674973300106799;26,0.00000161311854752581;27,0.00000116812032751869;28,0.00000044499822000712003;29,0.0000006118725525097899;30,0.0000024474902100391597;31,0.00000155749377002492;32,0.00000061187255250979;33,0.0000014497207636169459;34,0.00000317061231755073;35,0.000003956312299750801;36,0.0000030593627625489503;37,0.000001953820309718761;38,0.0000023640530437878245;39,0.000004742012281950872;40,0.000006271693663225348;41,0.000005965757386970453;42,0.0000032905532440370235;43,0.000004665528212887148;44,0.00000650809896760413;45,0.000006987862673549306;46,0.000006410755606977572;47,0.000006296029503381985;48,0.00000450560697757209;49,0.0000033374866500534;50,0.0000071408308116767534;51,0.000006542864453542186;52,0.000006633254716981133;53,0.000007224267977928089;54,0.0000063203653435386255;55,0.000007078252936988253;56,0.0000064038025097899625;57,0.0000064594272872908516;58,0.000006313412246351014;59,0.000005006229975080101;60,0.00000461685653257387;61,0.000005447751646493414;62,0.000006803605598077608;63,0.0000063203653435386255;64,0.000011065854174083305;65,0.000010864214355642577;66,0.000009007737406550373;67,0.000009421446689213245;68,0.000007151260457458171;69,0.000007797898495906017;70,0.0000073355175329298685;71,0.00001021583804289783;72,0.000007667527923638305;73,0.000007363329921680313;74,0.000008204654681381276;75,0.00000951183695265219;76,0.000009101604218583127;77,0.000009080744927020291;78,0.000008913870594517622;79,0.000005027089266642933;80,0.000004802851882342471;81,0.0000054807788581345676;82,0.00000595185119259523;83,0.00000709563567995728;84,0.000007457196733713066;85,0.000006668020202919188;86,0.000007307705144179423;87,0.000004509083526165896;88,0.000004477794588821645;89,0.000003546079565681738;90,0.0000036364698291206835;91,0.000004102327340690637;92,0.000004175334861160556;93,0.0000040397494660021355;94,0.0000014462442150231399;95,0.00000077874688501246;96,0.000001077730064079744;97,0.00000038937344250623;98,0.0000003893734425062301;99,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00005406728373086508;2,0.00007081034175863297;3,0.00008671902812388752;4,0.00010980331078675685;5,0.00012726949092203632;6,0.00012471075115699537;7,0.00013800507297970807;8,0.00015619437522249914;9,0.00019001423994304022;10,0.00020531105375578497;11,0.00022600347098611609;12,0.00025231399074403704;13,0.000282629494482022;14,0.00030104129583481665;15,0.0003225124599501602;16,0.0003579454432182271;17,0.0003763572445710217;18,0.00039232155571377713;19,0.0004167964578141688;20,0.0004466113385546458;21,0.00044027011391954435;22,0.00044038136347454614;23,0.00045367568529725884;24,0.00048132119971520113;25,0.0004991767532929868;26,0.0005322734959060163;27,0.0005563590245639017;28,0.0005818907974368103;29,0.0005940169989320042;30,0.0005741589533641866;31,0.0005660933606265575;32,0.0005921813812744749;33,0.0006411311854752582;34,0.0006748954254182983;35,0.0006990922036311856;36,0.0007072690459238164;37,0.0007232889818440726;38,0.0007492101281594874;39,0.0007511013705945176;40,0.0007314101993592026;41,0.0007394201673193307;42,0.0007844762370950516;43,0.0008065592737629049;44,0.0008196867212531152;45,0.0008408241367034532;46,0.0008563434496262016;47,0.0008369860270558918;48,0.0008254716981132076;49,0.0008749777500889997;50,0.0009334950160199359;51,0.0009583592915628337;52,0.0009598611605553577;53,0.0009935141509433963;54,0.001019435297258811;55,0.0010204921680313278;56,0.0010150409398362408;57,0.0010434652011391955;58,0.0010599857600569597;59,0.0010613207547169813;60,0.0010505851726593093;61,0.0010707769668921326;62,0.0010820687967248131;63,0.0010697200961196157;64,0.001079621306514774;65,0.0009816104485582057;66,0.0008426597543609825;67,0.0007148896404414382;68,0.000577440815236739;69,0.0004261414204343183;70,0.0002850769846920612;71,0.00015419188323246706;72,0;73,0;74,0;75,0.00000016687433250266998;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0.00000005562477750089001;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.00000034678572223211105;43,0.0000005562477750088999;44,0.0000006674973300106799;45,0.0000006674973300106799;46,0.00000028681525898896404;47,0.00000038937344250622997;48,0.0000007830925707547171;49,0.0000005006229975080099;50,0.0000009525743147027411;51,0.0000006779269757920968;52,0.0000006718430157529371;53,0.00000077874688501246;54,0.00000083437166251335;55,0.0000005632008721965113;56,0.00000045368959149163416;57,0.00000038937344250623;58,0.000000898687811498754;59,0.000001065562144001424;60,0.0000009099865944286224;61,0.0000010238435608757568;62,0.0000005632008721965112;63,0.0000007900456679423283;64,0.0000012306982022071914;65,0.000001899933806514774;66,0.0000026395695198469205;67,0.0000018616917719829123;68,0.000002082452607689569;69,0.000002456181581523674;70,0.0000015062146782662868;71,0.0000018616917719829123;72,0.0000015192517354930582;73,0.000001339340345763617;74,0.0000015018689925240302;75,0.0000018573460862406553;76,0.000001626155604752581;77,0.0000024735643244927022;78,0.0000022006552598789606;79,0.0000022545417630829476;80,0.0000021528527167141332;81,0.000002122432916518334;82,0.0000022580183116767533;83,0.0000035408647427910285;84,0.0000025170211819152723;85,0.0000033887657418120333;86,0.0000029785330077429694;87,0.0000026873720630117482;88,0.0000028047055780526877;89,0.0000022562800373798504;90,0.000003313150809896761;91,0.000003429615187789249;92,0.0000029837478306336776;93,0.0000029689724991100035;94,0.000003042849156728373;95,0.0000024440136614453544;96,0.000002869890864186543;97,0.0000025822064680491277;98,0.0000014106095919366324;99,0.000001867775732022072;100,0.0000021337316994482027;101,0.0000022249911000356;102,0.000001899933806514774;103,0.0000014792714266642935;104,0.000001289799528301887;105,0.000001119448647205411;106,0.000000787438256496974;107,0.000000731813478996084;108,0.00000100124599501602;109,0.0000005127909175863297;110,0.0000008943421257564969;111,0.0000005006229975080099;112,0.0000008943421257564969;113,0.00000038937344250622997;114,0.0000008343716625133497;115,0.00000094562121751513;116,0.0000019468672125311502;117,0.0000021172180936276253;118,0.0000016131185475258098;119,0.0000027812388750445;120,0.000002297998620505518;121,0.0000015574937700249197;122,0.0000025031149875400496;123,0.0000016687433250267001;124,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000023640530437878252;5,0.00000011820265218939126;6,0;7,0.00000016687433250267;8,0.00000016687433250267;9,0.00000012863229797080813;10,0.00000011994092648629405;11,0.00000027812388750445;12,0.00000033374866500534;13,0.0000010568707725169102;14,0.0000011124955500178;15,0.0000007231221075115699;16,0.0000004449982200071199;17,0.0000011124955500178;18,0.0000006118725525097899;19,0.00000100124599501602;20,0.0000011681203275186902;21,0.00000200249199003204;22,0.00000228061587753649;23,0.0000025587397650409395;24,0.0000021693663225347102;25,0.00000300373798504806;26,0.00000328186187255251;27,0.0000022249911000356;28,0.00000283686365254539;29,0.0000022249911000355997;30,0.0000022249911000356;31,0.00000228061587753649;32,0.00000183561765752937;33,0.0000012793698825204698;34,0.0000011124955500177999;35,0.0000010012459950160199;36,0.00000139061943752225;37,0.00000189124243503026;38,0.0000027812388750444995;39,0.00000239186543253827;40,0.0000016687433250266995;41,0.0000017799928800284797;42,0.00000183561765752937;43,0.0000012237451050195803;44,0.00000066749733001068;45,0.0000009108557315770737;46,0.0000007996061765752937;47,0.0000007439813990744038;48,0.0000006883566215735139;49,0.0000003893734425062301;50,0.0000015574937700249205;51,0.0000017799928800284803;52,0.0000017243681025275902;53,0.00000272561409754361;54,0.00000305936276254895;55,0.00000255873976504094;56,0.00000344873620505518;57,0.0000029481132075471697;58,0.00000205811676753293;59,0.00000155749377002492;60,0.0000022249911000356;61,0.00000311498754004984;62,0.00000266998932004272;63,0.00000216936632253471;64,0.00000139061943752225;65,0.0000019642499555001783;66,0.0000017678249599501607;67,0.0000015922592559629762;68,0.0000014427676664293343;69,0.0000009073791829832681;70,0.0000006744504271982912;71,0.0000007856999822000712;72,0.0000009456212175151302;73,0.00000116812032751869;74,0.0000006118725525097899;75,0.0000008343716625133501;76,0.0000006814035243859024;77,0.0000007509344962620151;78,0.0000007370283018867926;79,0.0000014253849234603065;80,0.0000021763194197223214;81,0.0000033374866500534002;82,0.0000033513928444286225;83,0.000002920300818796725;84,0.0000013489008543965826;85,0.0000005006229975080099;86,0.00000088999644001424;87,0.00000133499466002136;88,0.0000016756964222143112;89,0.000001519251735493058;90,0.0000017400125711997152;91,0.00000205811676753293;92,0.000002920300818796725;93,0.000002697801708793165;94,0.000003636469829120684;95,0.000005220037713599146;96,0.000004656836841402635;97,0.0000031427999288002847;98,0.0000037963910644357425;99,0.000004032796368814524;100,0.000005362576205945175;101,0.0000061813033997864;102,0.000004616856532573869;103,0.00000383810964756141;104,0.0000035738919544321825;105,0.0000019121017265930937;106,0.0000025378804734781057;107,0.0000012863229797080813;108,0.0000014462442150231399;109,0.00000194686721253115;110,0.000002461396404414382;111,0.0000017313211997152011;112,0.000003511314079743681;113,0.0000025587397650409395;114,0.000005729352082591669;115,0.000008858245817016731;116,0.000017612195176219296;117,0.000021213899519401926;118,0.000018314457992168033;119,0.00001752180491278035;120,0.000013765394157173371;121,0.000011808097298860805;122,0.000018344008655215378;123,0.0000224984842248131;124,0.00002642872241011036;125,0.00003083003292986828;126,0.000024758240810786756;127,0.00002258365966536134;128,0.00002314686053755785;129,0.00003292986828052688;130,0.000042386080455678175;131,0.00005763422258810966;132,0.0000742868903524386;133,0.00007289627091491634;134,0.00005850335973656106;135,0.000034097988608045574;136,0.00001828664560341759;137,0.000017523543187077252;138,0.000022501960773406912;139,0.000020485562588999646;140,0.000015185564257742972;141,0.00001529681381274475;142,0.000014629316482734073;143,0.000014851815592737632;144,0.0000083437166251335;145,0.0000077874688501246;146,0.00000589622641509434;147,0.000005951851192595229;148,0.0000094562121751513;149,0.000009789960840156639;150,0.000006841847632609469;151,0.0000037824848700605202;152,0.0000029481132075471697;153,0.00000233624065503738;154,0.00000300373798504806;155,0.0000037824848700605202;156,0.0000043943574225703095;157,0.00000344873620505518;158,0.0000027812388750445004;159,0.00000211374154503382;160,0.00000433873264506942;161,0.0000038937344250623005;162,0.00000266998932004272;163,0.00000328186187255251;164,0.0000035043609825560695;165,0.0000033374866500534002;166,0.00000261436454254183;167,0.0000007231221075115698;168,0.0000010568707725169098;169,0.0000005562477750088999;170,0.00000033374866500533997;171,0.0000002781238875044499;172,0.0000007231221075115698;173,0.0000006118725525097899;174,0;175,0.00000011124955500177995;176,0;177,0.00000022249911000355994;178,0.0000002224991100035599;179,0.00000088999644001424;180,0.00000133499466002136;181,0.0000008343716625133502;182,0;183,0.00000077874688501246;184,0.00000066749733001068;185,0.0000005562477750089001;186,0.00000033374866500534;187,0.00000211374154503382;188,0.00000250311498754005;189,0.0000019468672125311502;190,0.00000189124243503026;191,0.00000072312210751157;192,0.00000005562477750089;193,0.00000016687433250266998;194,0.00000127936988252047;195,0.00000244749021003916;196,0.00000228061587753649;197,0.0000016131185475258102;198,0.00000216936632253471;199,0.00000305936276254895;200,0.0000028924884300462798;201,0.0000027256140975436105;202,0.0000022249911000355997;203,0.0000020024919900320397;204,0.00000177999288002848;205,0.00000194686721253115;206,0.0000028368636525453903;207,0.0000021693663225347107;208,0.0000021693663225347102;209,0.00000144624421502314;210,0.00000177999288002848;211,0.00000083437166251335;212,0.0000002224991100035599;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.000002278969091360477;37,0.0000034184536370407154;38,0.000002278969091360477;39,0.0000011394845456802384;40,0;41,0.000006087497035262094;42,0.0000015218742588155235;43,0.0000011394845456802384;44,0.000002278969091360477;45,0;46,0.000003043748517631047;47,0.000003043748517631047;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0.000004613353844516952;59,0.000003460015383387714;60,0;61,0;62,0;63,0;64,0;65,0;66,0.000002278969091360477;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.000000055624777500890004;63,0.00000011124955500178003;64,0.0000005562477750089;65,0.00000033374866500534;66,0.0000007231221075115702;67,0.0000008378482111071557;68,0.0000006362083926664293;69,0.0000006240404725881097;70,0.0000006674973300106799;71,0.00000045368959149163416;72,0.0000006362083926664293;73,0.0000008500161311854755;74,0.00000033374866500534;75,0.00000028507698469206126;76,0.00000038937344250623;77,0.0000006761887014951941;78,0.0000005006229975080099;79,0.0000006118725525097899;80,0.00000033374866500534;81,0.00000038937344250622997;82,0.0000011227740415125295;83,0.0000009803867034531865;84,0.0000008204654681381276;85,0.0000007561493191527235;86,0.0000007996061765752939;87,0.000000806559273762905;88,0.0000008621840512637949;89,0.0000006257787468850124;90,0.000000770055513527946;91,0.000000568340117943876;92,0.0000011173324871917904;93,0.000002730798689576981;94,0.0000009747184177024162;95,0.0000010858923955608524;96,0.0000005006229975080099;97,0.00000039284999110003554;98,0.0000007309443418476326;99,0.0000005736305179779281;100,0.0000004076253226237095;101,0.00000028246957324670703;102,0.00000033374866500534;103,0.0000005214822890708437;104,0.0000004032796368814525;105,0.0000004102327340690637;106,0;107,0.00000011124955500178;108,0.00000016687433250266998;109,0.0000006918331701673194;110,0.00000041189543122262294;111,0.00000005562477750088999;112,0.00000011994092648629408;113,0;114,0.00000006771712043586609;115,0.0000003501866936825731;116,0.0000008193695995596451;117,0.0000009262734688191681;118,0.0000007473067933815221;119,0.0000007231221075115699;120,0.0000007787468850124599;121,0.0000010012459950160199;122,0.0000011124955500177999;123,0.0000012393139965483616;124,0.000000844801308294767;125,0.000001140307938768245;126,0.0000020667325618741006;127,0.0000009681432062315228;128,0.00000105687077251691;129,0.0000013591793458913122;130,0.000001816269908833408;131,0.0000026365842226848486;132,0.000003487885165307165;133,0.00000309337247705357;134,0.0000025905199538169238;135,0.0000010012459950160199;136,0.00000061187255250979;137,0.0000006046171467488042;138,0.0000011294248301267665;139,0.0000013083915055644126;140,0.0000008948333771882305;141,0.0000013277392542603744;142,0.0000008706486913182782;143,0.0000004449982200071199;144,0.0000001703508810964756;145,0;146,0;147,0.00000011124955500178001;148,0.00000033722521359914564;149,0.0000003407017621929513;150,0;151,0.00000005910132609469563;152,0;153,0.00000011124955500177998;154,0;155,0;156,0;157,0;158,0;159,0.00000011820265218939126;160,0.00000023640530437878252;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0.00000013543424087173218;192,0.00000006771712043586609;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00015346876112495552;2,0.00018812299750801;3,0.0002192728729085084;4,0.0002893044677821289;5,0.0003467648629405483;6,0.00038903969384122464;7,0.0004255295478818085;8,0.000467248131007476;9,0.0004893311676753293;10,0.0004831011925952297;11,0.0005379472232111071;12,0.0006419099323602706;13,0.0007421457814168744;14,0.0008187967248131007;15,0.000892443930224279;16,0.0009549661801352795;17,0.0010162646849412602;18,0.0011348010857956568;19,0.0012151232645069422;20,0.0012098389106443574;21,0.0012127870238519047;22,0.0012527256140975435;23,0.001296613563545746;24,0.001313690370238519;25,0.0013629182983268067;26,0.001405860626557494;27,0.0014380673727305091;28,0.0014845140619437521;29,0.001500867746529014;30,0.0015032039871840513;31,0.0015523206657173372;32,0.0016294722321110715;33,0.0016976682093271626;34,0.001727816838732645;35,0.0017490098789604844;36,0.0017824403702385192;37,0.0018409020113919546;38,0.0019024786400854395;39,0.0019001423994304024;40,0.0018489676041295836;41,0.0018174839800640798;42,0.0017873909754360982;43,0.0017576317194731223;44,0.0017003938234247064;45,0.0016239097543609825;46,0.0015444775720897118;47,0.0014812878248487008;48,0.001386558828764685;49,0.0013467871128515487;50,0.0013479552331790673;51,0.0013524052153791387;52,0.001296001690993236;53,0.001225191349234603;54,0.0012037201851192595;55,0.0011455366678533286;56,0.001042630829476682;57,0.000979941705233179;58,0.0009702073691705234;59,0.000946678088287647;60,0.0009295456568173728;61,0.0008691371484514062;62,0.0008160711107155572;63,0.0007806937522249911;64,0.0007445932716269134;65,0.0005943507475970096;66,0.0004638550195799217;67,0.0003568885724457103;68,0.0002525364898540406;69,0.00018000177999288004;70,0.0000990677287290851;71,0.000048449181203275187;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.000011550964390365923;55,0.0000023101928780731846;56,0;57,0;58,0;59,0;60,0.000004620385756146369;61,0;62,0;63,0.0000015045043875518154;64,0.0000015045043875518154;65,0.0000030090087751036307;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0.000004513513162655446;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000322623709505162;46,0.00002825738697045212;47,0.00007915405838376647;48,0.0001256563723745105;49,0.00016993369526521895;50,0.00022528034887860448;51,0.00027957013171947315;52,0.00034259300462798146;53,0.0003931003025987896;54,0.00041718583125667497;55,0.0004612962798148807;56,0.0005031817372730509;57,0.0005636458704165184;58,0.000605865076539694;59,0.0006480842826628694;60,0.0007087709149163403;61,0.0007642844428622285;62,0.0008215779636881452;63,0.0008436053755784978;64,0.0008567884478462087;65,0.0008235248309006763;66,0.0007350814346742613;67,0.0006440792986828053;68,0.0005414515841936633;69,0.0004074514951940192;70,0.00028251824492702034;71,0.00014607066571733715;72,0;73,0.00000011124955500178;74,0.00000022249911000355996;75,0.00000016687433250266996;76,0;77,0;78,0.00000011124955500177997;79,0.00000027812388750444997;80,0.00000005562477750088999;81,0.00000016687433250266998;82,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000022249911000355996;28,0.00000022249911000356001;29,0.00000011124955500177998;30,0;31,0;32,0.00000028681525898896404;33,0.0000007917839422392311;34,0.0000005645904186252083;35,0.0000005555503192724885;36,0.000000055624777500890004;37,0;38,0;39,0.0000005006229975080099;40,0.00000066749733001068;41,0.00000027812388750444997;42,0.00000011124955500177998;43,0.00000022249911000355996;44,0.00000033374866500534;45,0.0000006882680983454308;46,0.0000006292552954788182;47,0.0000008517544054823781;48,0.0000003893734425062299;49,0.00000045709056294209604;50,0.00000038937344250622997;51,0.0000003476548593805625;52,0.0000003476548593805625;53,0.00000035460795656817384;54,0.00000033374866500533997;55,0.00000022249911000356;56,0.00000027812388750445;57,0.0000003928499911000356;58,0.0000005006229975080099;59,0.00000050062299750801;60,0.0000005006229975080099;61,0.00000033374866500533997;62,0.00000022249911000356;63,0.00000033374866500534;64,0.00000033374866500534;65,0.00000038937344250622997;66,0.00000034070176219295115;67,0.00000022249911000355996;68,0.0000006581085027897544;69,0.00000038467902889576714;70,0.0000011493882759519116;71,0.0000007019945637424242;72,0.0000005127909175863297;73,0.00000039284999110003564;74,0.00000027812388750444997;75,0.00000027812388750445;76,0.0000003372252135991456;77,0.0000005075760946956213;78,0.00000042761547703809194;79,0.0000006327318440726238;80,0.0000004345685742257031;81,0.00000028507698469206126;82,0.0000007144307360270559;83,0.0000011436333330753633;84,0.0000012270704993266982;85,0.0000007265986561053756;86,0.0000011785499733001069;87,0.000000737897439035244;88,0.0000005640700093449627;89,0.0000007231221075115699;90,0.0000011472610359558562;91,0.0000009282384745461019;92,0.000001037749755250979;93,0.0000007103452549249217;94,0.000000779725072514347;95,0.0000009280873202594147;96,0.0000013071066941275715;97,0.0000006188256496974012;98,0.000000797867902278391;99,0.0000005852619336436235;100,0.00000017122001824492702;101,0.0000006084603844454993;102,0.00000010519778522737763;103,0.00000011124955500177998;104,0.0000002466837958735121;105,0.00000030665425911665915;106,0.00000027812388750445;107,0.00000044499822000712;108,0.0000003893734425062299;109,0.00000022249911000356;110,0.0000003893734425062299;111,0.00000011124955500177997;112,0.00000006771712043586609;113,0.0000004014657854412061;114,0.00000033374866500533997;115,0.00000016687433250266998;116,0.00000050062299750801;117,0.00000033374866500533997;118,0.0000005562477750089;119,0.0000007943913536845853;120,0.00000072312210751157;121,0.0000005006229975080099;122,0.00000022249911000356;123,0.00000022249911000355996;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0006146537913848343;2,0.0007674550551797794;3,0.0009219806870772518;4,0.001057315770736917;5,0.001251446244215023;6,0.00143311676753293;7,0.0015668943574225704;8,0.0017280393378426488;9,0.0018953586685653257;10,0.002057059896760413;11,0.002254416607333571;12,0.002565692862228551;13,0.0029817661979352084;14,0.0033209660911356353;15,0.003530727127091492;16,0.00368814524741901;17,0.003820865966536134;18,0.0040229507831968676;19,0.004237829298682805;20,0.004411100480598077;21,0.004569631096475614;22,0.004772717159131364;23,0.004981977572089711;24,0.005096898362406552;25,0.005239798415806338;26,0.005374187878248487;27,0.00562438812744749;28,0.005778524385902457;29,0.005854785955856177;30,0.006016932182271272;31,0.006305902901388395;32,0.006439513616945532;33,0.00666624021003916;34,0.00687817061231755;35,0.007063957369170524;36,0.0072624822000712;37,0.007460228284086864;38,0.007639228818084728;39,0.007758933339266643;40,0.007788025097899609;41,0.007956957547169814;42,0.008246373264506944;43,0.008483167942328233;44,0.008526110270558919;45,0.00862629049483802;46,0.008933172392310432;47,0.009139540316838734;48,0.009138260946956212;49,0.009163403346386614;50,0.009107945443218229;51,0.00895681292274831;52,0.00867996840512638;53,0.008513483446066217;54,0.008361405304378781;55,0.008188968494126023;56,0.007921747063011748;57,0.007699526076895693;58,0.00752124866500534;59,0.0073304556781772865;60,0.007154903880384479;61,0.006993758899964401;62,0.006772817283730866;63,0.0065062077251691;64,0.006192984603061588;65,0.005311165005339978;66,0.0044595496618013535;67,0.003568941349234603;68,0.0027662758098967602;69,0.0020341424884300465;70,0.0013427265040939836;71,0.0006250000000000001;72,0.00000005562477750088999;73,0.00000016687433250267;74,0.0000011681203275186902;75,0.0000015574937700249197;76,0.00000088999644001424;77,0.00000077874688501246;78,0.0000007231221075115699;79,0.00000033374866500534;80,0;81,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0.00000005562477750089;31,0.0000007283369304022783;32,0.0000005440798549305802;33,0.0000007544110448558205;34,0.0000007787468850124599;35,0.0000013349946600213599;36,0.0000012498192194731221;37,0.0000019590351326094696;38,0.000002000753715735137;39,0.0000011264017443930225;40,0.0000010151521893912425;41,0.0000005701539693841225;42,0.0000010429645781416875;43,0.000001362807048771805;44,0.0000009525743147027411;45,0.000002708231354574582;46,0.0000028837970585617657;47,0.0000019955388928444286;48,0.0000011681203275186898;49,0.0000012967526254894982;50,0.0000014253849234603065;51,0.0000022910455233179074;52,0.000003023728139462442;53,0.000002469218638750445;54,0.0000016965557137771453;55,0.000002563954587931648;56,0.0000020181364587041657;57,0.0000019712030526877894;58,0.0000017713015085439663;59,0.000001866906594873621;60,0.000002077237784798861;61,0.0000010777300640797438;62,0.0000032001629805980775;63,0.0000025274508276966892;64,0.000005207869793520826;65,0.000004498653880384479;66,0.0000033392249243503027;67,0.000002118956367924528;68,0.0000029411601103595585;69,0.0000032192839978640093;70,0.000003249703798059808;71,0.0000024318457413670346;72,0.00000116812032751869;73,0.0000015018689925240298;74,0.000002186749065503738;75,0.0000016687433250266997;76,0.00000239186543253827;77,0.0000027742857778568884;78,0.000003372252135991456;79,0.0000025239742791028835;80,0.0000014114787290850838;81,0.0000022362898829654685;82,0.000004064085306158776;83,0.0000022354207458170166;84,0.000002065069864720541;85,0.0000026873720630117482;86,0.0000026317472855108583;87,0.000003959788848344607;88,0.000002464872953008188;89,0.0000015574937700249199;90,0.0000021693663225347102;91,0.00000050062299750801;92,0.00000005562477750089001;93,0.00000016687433250266998;94,0.0000003337486650053401;95,0.00000027812388750444997;96,0.00000050062299750801;97,0.00000016687433250266998;98,0.00000038937344250622997;99,0.00000038937344250622997;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000035113140797436817;28,0.0000006422923527055892;29,0.0000005266971119615522;30,0.0000007874382564969741;31,0.00000105687077251691;32,0.0000011368313901744392;33,0.0000007822234336062656;34,0.0000007318134789960841;35,0.0000007405048504805982;36,0.0000003980648139907441;37,0.00000061187255250979;38,0.0000010012459950160199;39,0.0000024474902100391597;40,0.0000036503760234959062;41,0.000002231944197223211;42,0.0000025839447423460306;43,0.00000352261286267355;44,0.000003898949247953008;45,0.000003199293843449627;46,0.0000044499822000712;47,0.0000052287290850836606;48,0.000004263117713154147;49,0.0000031480147516909934;50,0.0000022927837976148094;51,0.0000037651021270914926;52,0.000007149522183161268;53,0.000007182549394802421;54,0.000002871629138483446;55,0.000003650376023495906;56,0.00000283686365254539;57,0.000003542603017087932;58,0.000004220529992880029;59,0.000003834633098967605;60,0.0000035860598745105023;61,0.0000049758101748843;62,0.000004390880873976505;63,0.000004520382309095764;64,0.00001029753693485226;65,0.000010219314591491634;66,0.000011821134356087576;67,0.000012951881786222855;68,0.000009068577006941974;69,0.000012145322512459952;70,0.000013007506563723747;71,0.000011067592448380208;72,0.000005997915461463154;73,0.000006747111683428266;74,0.000008889534754360982;75,0.000011965411122730511;76,0.000011240550740922035;77,0.000009591797570309718;78,0.000010752095663492347;79,0.00000870267026744393;80,0.000008701801130295478;81,0.000008761771593538626;82,0.000010712984491812032;83,0.00001172552926975792;84,0.000011285745872641509;85,0.00000929629093983624;86,0.000009683056970897115;87,0.000010889419332947667;88,0.000010223660277233891;89,0.00001035837653524386;90,0.000007800505907351371;91,0.00001043225319286223;92,0.000011590813011747954;93,0.00001202711986027056;94,0.000010489616244660021;95,0.000008934729886080455;96,0.000007421562110626557;97,0.000008122086652278392;98,0.000007752703364186545;99,0.000004901933517265931;100,0.000003259264306692773;101,0.0000037546724813100753;102,0.000003006345396493414;103,0.000003546079565681739;104,0.0000018338793832324671;105,0.0000012863229797080813;106,0.0000006814035243859025;107,0.0000012063623620505518;108,0.0000011472610359558564;109,0.000001301098311231755;110,0.0000008343716625133501;111,0.00000016687433250267;112,0.00000017556570398718408;113,0.00000011124955500178;114,0.000000680534387237451;115,0.00000027812388750444997;116,0.00000005562477750089;117,0;118,0.00000005910132609469563;119,0.00000005910132609469563;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0.00000011820265218939123;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000019121017265930937;25,0.00000038242034531861874;26,0.00000043804512281950874;27,0.00000038242034531861874;28,0.00000038242034531861874;29,0.0000007144307360270559;30,0.000000712692461730153;31,0.0000008552309540761836;32,0.0000008552309540761836;33,0.0000001425384923460306;34,0;35,0.0000002868152589889641;36,0;37,0;38,0;39,0.00000011124955500178;40,0;41,0;42,0;43,0.0000000950256615640204;44,0.00000011820265218939126;45,0;46,0.00000019121017265930937;47,0;48,0.0000017208915539337842;49,0.0000029237773673905305;50,0.0000034417831078675685;51,0.000005449489920790317;52,0.0000014340762949448203;53,0;54,0;55,0;56,0;57,0.00000011994092648629408;58,0.00000008691371484514062;59,0;60,0;61,0;62,0;63,0.00000017382742969028122;64,0;65,0.0000005058378203987185;66,0.0000014862245238519046;67,0.0000012046240877536492;68,0.0000014027873576005698;69,0.00000041718583125667503;70,0;71,0;72,0.00000009502566156402041;73,0.0000001425384923460306;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.00000016687433250267;85,0.0000005805836151655394;86,0.0000011472610359558564;87,0.0000008604457769668921;88,0.0000008604457769668921;89,0.0000014340762949448203;90,0;91,0;92,0;93,0.00000022249911000356001;94,0;95,0;96,0;97,0;98,0;99,0.0000006205639239943038;100,0.0000005006229975080098;101,0.0000011124955500177994;102,0.0000013906194375222496;103,0.0000007874382564969739;104,0.0000008482778568885722;105,0.0000012040446629880144;106,0.000000629255295478818;107,0.0000006083960039159843;108,0.0000003476548593805625;109,0;110,0;111,0;112,0.00000011820265218939126;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0.00000016687433250267;156,0.00000044499822000712;157,0.00000011124955500178;158,0;159,0;160,0;161,0.00000011124955500178;162,0.00000011124955500178;163,0;164,0.0000003838326931848523;165,0;166,0;167,0;168,0.00000019191634659242614;169,0.00000019191634659242614;170,0;171,0;172,0;173,0;174,0;175,0.00000011124955500178;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0.00000011124955500178;185,0;186,0;187,0;188,0.00000011124955500178;189,0.00000011124955500178;190,0;191,0.00000011124955500178;192,0;193,0;194,0;195,0.0000003031659015942062;196,0.00000011124955500178;197,0.00000011124955500178;198,0.0000003031659015942062;199,0;200,0.00000011124955500178;201,0;202,0;203,0;204,0.00000022249911000356;205,0;206,0.00000011124955500178;207,0.00000011124955500178;208,0.00000019191634659242614;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0000004728106087575651;30,0.0000012721144767594843;31,0.0000008899964400142402;32,0.00000066749733001068;33,0.000000699655404503382;34,0.0000006162182382520469;35,0.00000022249911000356001;36,0.00000038937344250622997;37,0.00000027086848174346436;38,0.00000039806481399074405;39,0.0000005788453408686365;40,0.0000004102327340690638;41,0.0000006674973300106799;42,0.0000004032796368814525;43,0.0000008004753137237451;44,0.0000009421446689213244;45,0.00000038937344250623;46,0.00000043471972851239033;47,0.0000007666545420774839;48,0.00000033809435074759703;49,0.00000033374866500534;50,0.0000006814035243859025;51,0.0000005075760946956212;52,0.0000007370283018867923;53,0.000000731813478996084;54,0.0000006188256496974013;55,0.0000004405769571215194;56,0.000000707402061696101;57,0.0000010394880295478817;58,0.0000006866939244199545;59,0.00000029898317906728373;60,0.00000017382742969028125;61,0.00000016687433250266998;62,0.0000002781238875044499;63,0.00000018954747550575016;64,0.0000001825188011747953;65,0.0000002294522071911712;66,0.0000007265986561053756;67,0.0000006918331701673193;68,0.0000010551324982200075;69,0.0000003267955678177287;70,0.0000001251557493770025;71,0.00000040241049973300106;72,0.00000023119048148807403;73,0.00000005562477750089;74,0.00000005562477750089001;75,0.00000018078052687789249;76,0.0000004606426886792454;77,0.00000005562477750088999;78,0.00000005562477750088999;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0.000000055624777500890004;92,0.00000022249911000356001;93,0.00000044499822000712003;94,0.0000004623809629761481;95,0.00000028855353328586693;96,0.0000003546079565681738;97,0.0000003546079565681738;98,0.0000001773039782840869;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000005562477750088999;46,0.0000062855998576005695;47,0.00001251557493770025;48,0.000026199270202919187;49,0.00003470986116055536;50,0.00004144045923816305;51,0.000046836062655749374;52,0.00005968538625845497;53,0.00006691660733357068;54,0.00007386970452118192;55,0.0000833815414738341;56,0.00009372775008899964;57,0.00010629894980420079;58,0.00011364142043431827;59,0.0001189257742969028;60,0.00013144134923460306;61,0.00014100881096475615;62,0.00014406817372730507;63,0.00016186810252758992;64,0.00015830811676753294;65,0.0001507431470274119;66,0.00013622508009967962;67,0.00011564391242435031;68,0.00009534086863652545;69,0.00007720719117123532;70,0.000051731043075827705;71,0.00002831301174795301;72,0;73,0;74,0;75,0;76,0.00000005562477750088999;77,0;78,0.00000011124955500177998;79,0.000000055624777500889984;80,0.000000055624777500889984;81,0;82,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0019350747597009612;2,0.001884178088287647;3,0.001888572445710217;4,0.001876613118547526;5,0.0018407351370594515;6,0.0018177064791740835;7,0.0018062477750089;8,0.0017839422392310431;9,0.0017316549483802064;10,0.001669243948024208;11,0.0016585639907440374;12,0.0016310297258810965;13,0.001594428622285511;14,0.0015833592915628339;15,0.0015593293876824492;16,0.0015522094161623352;17,0.0015440325738697047;18,0.001507765218939124;19,0.001491355909576362;20,0.001468438501245995;21,0.0014566460484158065;22,0.001409809985760057;23,0.001357578319686721;24,0.0013485114809540764;25,0.0013336040405838377;26,0.0013097966358134566;27,0.0012928867034531864;28,0.001280371128515486;29,0.0012650743147027412;30,0.001241433784264863;31,0.001199492702029192;32,0.0011709015663937344;33,0.0011671747063011747;34,0.0011774096653613389;35,0.0011628359736561055;36,0.0011293498576005697;37,0.00109936810252759;38,0.001103428711285155;39,0.0010626001245995016;40,0.001013372196511214;41,0.001038180847276611;42,0.001025943396226415;43,0.0010203809184763262;44,0.0009868391776432894;45,0.0009595830366678532;46,0.000978940459238163;47,0.0009392243681025276;48,0.0009232044321822713;49,0.0009056826272694911;50,0.0008968382876468495;51,0.0008536734603061589;52,0.0008354285332858669;53,0.0008199092203631186;54,0.0008083948914204344;55,0.0007630050729797082;56,0.0007356376824492703;57,0.0007193396226415095;58,0.0006706679423282306;59,0.0005272672659309362;60,0.0003919321822712709;61,0.0003536623353506586;62,0.00034337175151299395;63,0.0003063256496974012;64,0.0002800151299394803;65,0.00023345719117123532;66,0.00018751112495550017;67,0.00013655882876468495;68,0.00010902456390174438;69,0.00007214533641865432;70,0.00004333170167319331;71,0.00001919054823780705;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00012248576005695978;2,0.00016548371306514774;3,0.00018834549661801353;4,0.00020280793876824494;5,0.00024575026699893206;6,0.0002884144713421146;7,0.0003379761480954076;8,0.00035839044143823426;9,0.00037924973300106806;10,0.00042185831256674977;11,0.0004888861694553222;12,0.0005442328230687078;13,0.0005985226059095764;14,0.0006521448914204343;15,0.000706935297258811;16,0.0007603350836596654;17,0.0007836974902100391;18,0.0008175173549305802;19,0.0008431603773584905;20,0.000877369615521538;21,0.0009085194909220363;22,0.0009608067817728728;23,0.0009669811320754717;24,0.0009872285510857956;25,0.0010338421146315413;26,0.0011061543253826985;27,0.001172236561053756;28,0.0012219094873620506;29,0.0012341469384122463;30,0.001238875044499822;31,0.001243992524029904;32,0.0012647405660377359;33,0.0013453964934140262;34,0.0013367190281238874;35,0.001360303933784265;36,0.0014453542185831256;37,0.0015227839088643646;38,0.001529681381274475;39,0.0015138839444642223;40,0.001550818796724813;41,0.0016160666607333571;42,0.0016566727483090069;43,0.0016566727483090069;44,0.0016984469562121754;45,0.0017293187077251691;46,0.001789560341758633;47,0.0017978484336062656;48,0.001811754627981488;49,0.0018261614453542185;50,0.0018401232645069419;51,0.0018884611961552155;52,0.00194937032751869;53,0.001995372018511926;54,0.00200560697757209;55,0.0020331412424350304;56,0.0020964978640085436;57,0.0021633032217871126;58,0.0022027968138127445;59,0.0022510791206835174;60,0.002314491367034532;61,0.002326005695977216;62,0.0023146026165895336;63,0.002292630829476682;64,0.002327285065859736;65,0.002079476682093272;66,0.0018257720719117125;67,0.00154748131007476;68,0.0012649630651477394;69,0.0009391131185475258;70,0.0006198825204699181;71,0.0003237362050551798;72,0.00000022249911000355994;73,0.00000016687433250267;74,0.00000022249911000355996;75,0.00000038937344250622997;76,0.00000044499822000712;77,0.00000005562477750089002;78,0;79,0.00000022249911000356;80,0.0000005562477750089;81,0.00000038937344250623;82,0.00000033374866500534;83,0.0000002781238875044499;84,0.0000002781238875044499;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.00000005562477750089;97,0.00000005562477750089;98,0.00000005562477750088999;99,0.00000005562477750088999;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000011124955500178003;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000018912424350302603;19,0.00003815859736561054;20,0.00003693485226059097;21,0.000034431737273050915;22,0.000037880473478106084;23,0.00003420923816304736;24,0.00003415361338554646;25,0.00003537735849056604;26,0.00003771359914560342;27,0.00003415361338554645;28,0.000032707369170523324;29,0.00003459861160555358;30,0.000036044855820576715;31,0.00003743547525809897;32,0.000034320487718049124;33,0.00003610048059807761;34,0.00003776922392310431;35,0.00003426486294054824;36,0.00003365299038803845;37,0.00003348611605553578;38,0.00003521048415806337;39,0.00003515485938056249;40,0.000035043609825560705;41,0.000035711107155571374;42,0.00003259611961552153;43,0.00003565548237807049;44,0.000034487362050551794;45,0.00003610048059807761;46,0.00003565548237807048;47,0.000036044855820576715;48,0.00003426486294054824;49,0.00003432048771804913;50,0.00003365299038803845;51,0.000034876735493058035;52,0.00003437611249555002;53,0.00003331924172303311;54,0.00003582235671057316;55,0.00003648985404058384;56,0.0000339311142755429;57,0.00003476548593805625;58,0.00003153924884300463;59,0.00003309674261302955;60,0.00003437611249555002;61,0.00003304111783552866;62,0.000033374866500534;63,0.00003320799216803132;64,0.00003270736917052332;65,0.00002859113563545746;66,0.000026254894980420086;67,0.0000216936632253471;68,0.00001585306158775365;69,0.000011291829832680669;70,0.00000817684229263083;71,0.00000394935920256319;72,0;73,0;74,0;75,0.00000005562477750089001;76,0.00000005562477750089;77,0.00000005562477750089001;78,0;79,0.00000011124955500178003;80,0;81,0.00000005562477750089;82,0.00000005562477750088999;83,0;84,0.00000011124955500178002;85,0;86,0;87,0.00000005562477750089;88,0;89,0.00000005562477750089;90,0.00000016687433250267;91,0.00000027812388750445;92,0.00000005562477750089;93,0;94,0.00000005562477750089;95,0;96,0.000000055624777500889964;97,0.000000055624777500889984;98,0;99,0.00000005562477750089;100,0.00000011124955500177998;101,0.00000011124955500178;102,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000011180580277678889;46,0.00006313412246351015;47,0.00015269001423994305;48,0.00025581835172659305;49,0.00037274163403346386;50,0.00048410243859024565;51,0.0005737139551441795;52,0.0006906372374510503;53,0.0007998286756852973;54,0.000903680135279459;55,0.0009843916874332503;56,0.0010838487896048417;57,0.0012226882342470631;58,0.0013551308294766822;59,0.001441738608045568;60,0.0015335751156995373;61,0.0016336440904236383;62,0.0017022850658597367;63,0.0017779347632609467;64,0.0018964155393378429;65,0.0017488986294054824;66,0.0015602193841224637;67,0.0013722076361694555;68,0.0011600547347810609;69,0.0009164182093271628;70,0.0006278368636525454;71,0.00032101059095763617;72,0.00000011124955500178;73,0.00000011124955500177998;74,0.00000016687433250267;75,0.00000027812388750445;76,0.00000033374866500533997;77,0.00000011124955500177998;78,0;79,0.00000016687433250267;80,0.0000004449982200071199;81,0.00000033374866500534;82,0.00000027812388750445;83,0.0000006118725525097899;84,0.00000033374866500533997;85,0.00000027812388750444997;86,0.00000022249911000356;87,0.00000005562477750089001;88,0;89,0;90,0;91,0;92,0.00000005562477750089;93,0.00000005562477750089;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750088999;103,0.00000005562477750088999;104,0;105,0.00000005562477750088999;106,0.00000005562477750088999;107,0;108,0;109,0;110,0.00000011124955500178002;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000011124955500178;128,0.00000022249911000356;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000061187255250979;25,0.0000005562477750088999;26,0.00000027812388750444997;27,0;28,0;29,0.00000005562477750089;30,0.00000022249911000356001;31,0.0000005006229975080099;32,0.00000100124599501602;33,0.0000010099373665005337;34,0.00000218153424261303;35,0.0000017504422169811323;36,0.0000015018689925240302;37,0.0000018634300462798148;38,0.0000015088220897116413;39,0.0000022249911000356;40,0.0000031080344428622287;41,0.000003351392844428622;42,0.000003636469829120683;43,0.000002565692862228551;44,0.00000228061587753649;45,0.0000038381096475614106;46,0.000004408263616945532;47,0.000006344701183695266;48,0.0000035738919544321825;49,0.0000044560661601103596;50,0.00000561810252758989;51,0.000008436714300017801;52,0.000008412378459861162;53,0.00000798476298282307;54,0.00000810296563501246;55,0.000006494192773228907;56,0.000004084944597721609;57,0.00000354781783997864;58,0.000006140453953809185;59,0.0000065532940993236025;60,0.00000642118525275899;61,0.000004936699003203987;62,0.000004463888394446422;63,0.000005678072990833037;64,0.00001253469595496618;65,0.000008922561966002135;66,0.0000076032117746529015;67,0.000008663559095763618;68,0.000006827941438234247;69,0.00000793087647961908;70,0.000006750588232022072;71,0.00000843584516286935;72,0.000008959934863385547;73,0.000008284615299038805;74,0.000007126055480153081;75,0.000006596750956746174;76,0.00000608222176486294;77,0.000008448013082947668;78,0.00000816988919544322;79,0.000010026366144535422;80,0.000012536434229263085;81,0.000012436483457191172;82,0.000012772839533641867;83,0.000013489877681114275;84,0.000014268624566126735;85,0.000011381350958971162;86,0.000010029842693129227;87,0.000008305474590601638;88,0.000006546341002135991;89,0.000008441059985760058;90,0.000008141207669544324;91,0.000006262133154592382;92,0.000007397226270469919;93,0.000009793437388750448;94,0.000009415362729174083;95,0.000004489093371751514;96,0.0000033644299016553937;97,0.000003855492390530438;98,0.000004043226014595942;99,0.000004185764506941972;100,0.000004710723344606623;101,0.000004440421691438234;102,0.000004133616278034888;103,0.0000032792544611071556;104,0.0000020728920990566037;105,0.0000018390942061231758;106,0.00000066749733001068;107,0.00000027812388750444997;108,0.0000005006229975080101;109,0.00000011124955500178;110,0.0000012237451050195799;111,0.0000009456212175151301;112,0.0000014219083748665005;113,0.000000055624777500890004;114,0.00000050062299750801;115,0.00000177999288002848;116,0.00000200249199003204;117,0.0000011124955500178;118,0.00000088999644001424;119,0.0000007231221075115698;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0006454699181203275;2,0.0006374043253826986;3,0.0006298393556425775;4,0.0006299506051975792;5,0.0006241100035599858;6,0.0006226081345674617;7,0.000622997508009968;8,0.0006163225347098611;9,0.0006068663225347098;10,0.0005958526165895336;11,0.0006128181737273051;12,0.0006770091669633322;13,0.0007345808116767532;14,0.0007556069775720897;15,0.0007539382342470632;16,0.0007542163581345674;17,0.0007551619793520826;18,0.0007572200961196156;19,0.0007506007475970096;20,0.0007553844784620861;21,0.0007527701139195443;22,0.0007296858312566749;23,0.0007104396582413671;24,0.0007053778034887861;25,0.0007206189925240299;26,0.0007275720897116412;27,0.0007232333570665718;28,0.0007334126913492347;29,0.0007416451584193664;30,0.0007368058027767889;31,0.000717559629761481;32,0.0006863541295834817;33,0.0006869103773584906;34,0.0006950315948736204;35,0.0006959215913136348;36,0.0006872441260234959;37,0.0006878559985760058;38,0.0006835728907084371;39,0.0006820710217159132;40,0.0006733379316482735;41,0.0006737829298682806;42,0.0006910266108935564;43,0.0007017065681737273;44,0.0006966447134211464;45,0.0006970340868636526;46,0.0006906372374510503;47,0.0006828497686009257;48,0.0006725035599857601;49,0.0006649942150231399;50,0.0006787335350658598;51,0.0006974790850836597;52,0.0006994815770736916;53,0.000702874688501246;54,0.0006997597009611961;55,0.0006967003381986472;56,0.0006987028301886794;57,0.000695365343538626;58,0.0006894691171235315;59,0.0006865210039159843;60,0.0006817928978284087;61,0.0006738385546457814;62,0.0005866745283018869;63,0.00047303310786756854;64,0.00037624599501602;65,0.00026149207903168386;66,0.00022439035243859029;67,0.00018528613385546458;68,0.00014668253826984694;69,0.00011436454254182984;70,0.00007631719473122108;71,0.000036990477038091846;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0.00000011124955500178;80,0.00000016687433250266998;81,0;82,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00028390886436454254;30,0.001506374599501602;31,0.0027273384656461373;32,0.0029929467782128876;33,0.00299500489498042;34,0.003037168476326095;35,0.003048794054823781;36,0.0030539671591313638;37,0.0030339422392310434;38,0.0029849924350302598;39,0.002978039337842649;40,0.0029463332146671415;41,0.0029495594517621932;42,0.0029334838910644364;43,0.0029630206479174083;44,0.0029365988786044855;45,0.002928644535421858;46,0.0029560119259522963;47,0.0029497263260946957;48,0.0028942684229263087;49,0.002920745817016732;50,0.0029205233179067287;51,0.002907062121751513;52,0.0029221364364542543;53,0.0028999977750089004;54,0.002917408330366679;55,0.002893489676041296;56,0.0028158374866500534;57,0.0028735203809184765;58,0.002902111516553934;59,0.0028933228017087934;60,0.0029249733001067996;61,0.002920690192239231;62,0.002892377180491278;63,0.002907228996084016;64,0.0028127781238875046;65,0.0024847031861872553;66,0.0021569619971520118;67,0.0017825516197935206;68,0.0014156505873976506;69,0.0010474145603417587;70,0.0007000378248487006;71,0.0003553310786756853;72,0.0000006118725525097899;73,0.0000003893734425062299;74,0.00000033374866500533997;75,0.00000038937344250622997;76,0;77,0;78,0.00000005562477750089;79,0.00000022249911000356;80,0.0000005562477750088999;81,0.0000004449982200071199;82,0.0000004449982200071199;83,0.0000005006229975080099;84,0.00000027812388750444997;85,0;86,0.00000005562477750089;87,0.00000016687433250266998;88,0.00000005562477750089;89,0;90,0.00000011124955500178;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.00000005562477750088999;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0.00000022249911000355996;123,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000023101928780731846;55,0.0000023101928780731846;56,0;57,0;58,0.0000023101928780731846;59,0.0000023101928780731846;60,0;61,0.000004620385756146369;62,0;63,0.000003119094461997666;64,0.0000012476377847990665;65,0.0000006238188923995333;66,0;67,0.0000006238188923995333;68,0.0000012476377847990665;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.000006164798466065975;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005382253470986116;2,0.0005398940904236384;3,0.0005426197045211819;4,0.0005380584727661089;5,0.0005265997686009255;6,0.0005240966536133856;7,0.0005165873086507654;8,0.0005287135101459594;9,0.0005269891420434318;10,0.0005020136169455321;11,0.0005092448380206479;12,0.0005205366678533287;13,0.0005191460484158064;14,0.0005086329654681381;15,0.0005012348700605198;16,0.0004913892844428622;17,0.000488997419010324;18,0.0004995105019579922;19,0.000498064257742969;20,0.0004804868280526878;21,0.0004762593449626202;22,0.00047097499110003557;23,0.00047848433606265583;24,0.0004714199893200427;25,0.000469250622997508;26,0.000471809362762549;27,0.000447000711997152;28,0.0004639662691349235;29,0.0004802087041651834;30,0.00048488118547525814;31,0.0005069642221431114;32,0.0005342203631185476;33,0.0005571933962264151;34,0.000600691972232111;35,0.0006392399430402278;36,0.0006368480776076896;37,0.0006832947668209328;38,0.0006988140797436811;39,0.0007174483802064792;40,0.0007555513527945888;41,0.0008034999110003559;42,0.0008307004271982913;43,0.0008448291206835173;44,0.0008696377714489143;45,0.0009049038803844785;46,0.0009214244393022429;47,0.0009482912068351727;48,0.0009377781238875044;49,0.0009846698113207548;50,0.0010317283730865076;51,0.0010735025809896761;52,0.0010932493770024919;53,0.0011137749199003203;54,0.0011248998754004986;55,0.0011546035065859736;56,0.0011859202563189748;57,0.001226303844784621;58,0.0012525587397650409;59,0.0012983379316482736;60,0.0013336040405838377;61,0.001365866411534354;62,0.001395681292274831;63,0.0014108668565325738;64,0.0013777701139195443;65,0.001190481488074048;66,0.0010073647205411178;67,0.0008281973122107511;68,0.0006425218049127804;69,0.0004702518689925241;70,0.00031249999999999995;71,0.00015146626913492344;72,0.00000022249911000355996;73,0;74,0.00000005562477750089001;75,0.00000005562477750089001;76,0;77,0;78,0.00000005562477750088999;79,0.00000005562477750088999;80,0.00000022249911000355994;81,0.000000055624777500889984;82,0;83,0.00000005562477750088999;84,0.00000022249911000355996;85,0;86,0;87,0;88,0;89,0.000000055624777500889964;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.00000016687433250267004;23,0.00000005562477750089001;24,0;25,0;26,0.00000005562477750088999;27,0;28,0.00000005562477750089;29,0.00000027812388750445;30,0.00000033374866500533997;31,0.00000023292875578497687;32,0.0000004449982200071199;33,0.0000005632008721965112;34,0.0000012341747508009968;35,0.0000008448013082947669;36,0.0000010047225436098258;37,0.00000066749733001068;38,0.000002051163670345319;39,0.0000017504422169811323;40,0.0000017000322623709504;41,0.0000010116756407974368;42,0.0000016270247419010325;43,0.000001630501290494838;44,0.000001967726504093983;45,0.0000017938990744037024;46,0.00000116812032751869;47,0.0000011124955500177996;48,0.0000015157751868992525;49,0.0000006379466669633322;50,0.0000014879627981488075;51,0.00000205811676753293;52,0.0000020094450872196513;53,0.0000013767132431470273;54,0.0000017139384567461733;55,0.0000026004583481666076;56,0.0000020442105731577073;57,0.000002030304378782485;58,0.0000025726459594161626;59,0.0000015713999644001424;60,0.0000016200716447134211;61,0.000002073761236205055;62,0.0000016061654503381984;63,0.000002096358802064792;64,0.0000036399463777144897;65,0.000004630762726949092;66,0.000004900195242969028;67,0.000004469103217337131;68,0.0000034974078853684588;69,0.000003820726904592382;70,0.0000039145937166251334;71,0.0000035877981488074048;72,0.0000033061977127091495;73,0.0000034417831078675685;74,0.0000033374866500533994;75,0.000004940175551797793;76,0.0000036816649608401574;77,0.000004898456968672125;78,0.000004316135079209685;79,0.0000050914054156283374;80,0.000004575137949448202;81,0.000004901933517265931;82,0.000005221775987896048;83,0.0000055537863786044855;84,0.000006375990121039516;85,0.000007505868414026345;86,0.000005114002981488075;87,0.000002480517421680313;88,0.0000006953097187611249;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000022249911000356001;29,0.00000011124955500178001;30,0;31,0.00000011124955500178;32,0.00000105687077251691;33,0.00000044499822000712;34,0.00000044499822000712;35,0.00000100124599501602;36,0.00000233624065503738;37,0.00000139061943752225;38,0.0000009490977661089354;39,0.0000010603473211107153;40,0.00000122374510501958;41,0.000001463626957992168;42,0.000001185503070487718;43,0.000000862184051263795;44,0.0000013593305001779993;45,0.000001373236694553222;46,0.0000009039026343894626;47,0.000001075991789782841;48,0.0000019911932071021718;49,0.0000018477855776076898;50,0.0000010794683383766467;51,0.0000012863229797080813;52,0.0000013349946600213597;53,0.000001425384923460306;54,0.0000019781561498754005;55,0.00000200249199003204;56,0.0000012446043965824137;57,0.00000034070176219295126;58,0.0000013419477572089712;59,0.0000025031149875400496;60,0.000002510068084727661;61,0.0000023501468494126026;62,0.0000021693663225347102;63,0.00000228061587753649;64,0.000005922300529547882;65,0.0000063073282863118556;66,0.00000694092926753293;67,0.000006937452718939124;68,0.000005824957168921324;69,0.000004425646359914561;70,0.000004199670701317195;71,0.000004212707758543966;72,0.000004503868703275187;73,0.000006864445198469206;74,0.000006767101837842649;75,0.000010071561276254893;76,0.000010526989142043433;77,0.000010712984491812032;78,0.000007786599712976148;79,0.0000051339931359024565;80,0.000005815396660288358;81,0.000008509721820487719;82,0.000010652144891420434;83,0.000011634269869170523;84,0.000013019674483802067;85,0.00001322565998798505;86,0.000011900225836596654;87,0.000010414001312744749;88,0.000009176350013349946;89,0.000008806097588109648;90,0.00000783787880473478;91,0.000008752211084905662;92,0.000010838140241189037;93,0.00001032795673504806;94,0.000010587828742435031;95,0.000013010983112317551;96,0.000011689025509522962;97,0.00001018541824270203;98,0.000008388911756852972;99,0.000009452735626557494;100,0.000008140338532395869;101,0.000008521889740566036;102,0.000007645799494927019;103,0.000006824464889640442;104,0.000004748965379138484;105,0.000005382566360359559;106,0.000003909378893734426;107,0.0000030515405282128873;108,0.0000035860598745105023;109,0.0000033166273584905664;110,0.0000024726951873442508;111,0.0000034695954966180134;112,0.0000035052301197045218;113,0.0000012498192194731221;114,0.0000016687433250267;115,0.00000422748309006764;116,0.00000639684941260235;117,0.00000717559629761481;118,0.000005896226415094339;119,0.0000049853706835172655;120,0.0000047698246707013166;121,0.00000481501980242079;122,0.000008076022383410465;123,0.000010351423438056248;124,0.000011639484692061233;125,0.000011952374065503738;126,0.000011477825182449271;127,0.000007667527923638307;128,0.000010028104418832325;129,0.000013256079788180848;130,0.00001616942750978996;131,0.000020462965023139908;132,0.000025378804734781064;133,0.000023817834416162338;134,0.00001659008988964044;135,0.000014135646582413671;136,0.000010391403746885011;137,0.000008131647160911358;138,0.000008392388305446779;139,0.000003907640619437523;140,0.0000031288937344250625;141,0.000003678188412246351;142,0.000005395603417586331;143,0.00000734247063011748;144,0.000004922792808828764;145,0.0000019225313723745106;146,0.0000005180057404770382;147,0.0000011542141331434677;148,0.0000017417508454966178;149,0.0000022562800373798504;150,0.000001964249955500178;151,0.0000013593305001779993;152,0.0000006883566215735136;153,0;154,0;155,0;156,0.00000011820265218939126;157,0.00000023640530437878252;158,0.0000005910132609469562;159,0.0000011229251957992168;160,0.000001063823869704521;161,0.00000047281060875756503;162,0.0000006501145870416519;163,0.0000015957358045567815;164,0.0000010047225436098256;165,0.00000023640530437878252;166,0;167,0;168,0;169,0;170,0.0000005006229975080099;171,0.0000008899964400142396;172,0.0000005562477750088999;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0.00000016687433250267;189,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00002115101898608249;72,0.000140827220873195;73,0.00037783243126111106;74,0.0006831629191263405;75,0.0010535820751433667;76,0.0014707059608766154;77,0.0017986440438717461;78,0.0021286323950606752;79,0.0023572236200538913;80,0.002258764531306753;81,0.002078846053766338;82,0.0018073849145133522;83,0.0015249505674715337;84,0.0012582728094996355;85,0.0009592731306845919;86,0.0006564994912093894;87,0.00039763860858834906;88,0.00016763885141047837;89,0.00002451422075256179;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00007994874378658616;66,0.00016429272122601876;67,0.00025214175841392373;68,0.0003529539530842746;69,0.0004428615174260444;70,0.0005359959621711698;71,0.000639089227471479;72,0.0007288298842061786;73,0.0008054404758513624;74,0.0008737613230120637;75,0.000907254116164134;76,0.0009616103601999687;77,0.0009571594906780989;78,0.0009199390943014627;79,0.0008896731815527482;80,0.0008236890408910286;81,0.000757426720884192;82,0.0007395119710586662;83,0.0007094129659170217;84,0.0006756976292888578;85,0.0006709129445528479;86,0.000668075515232656;87,0.0006270162438934072;88,0.000583230814972013;89,0.0005647040705872299;90,0.0005757199726538577;91,0.0005506281957243168;92,0.0005073991254931564;93,0.0004762986747090912;94,0.0004605537237754768;95,0.0004347943164176554;96,0.0004120948818561195;97,0.0003842769473444333;98,0.0003639142192818789;99,0.00034260568144592736;100,0.00031896043711099407;101,0.00030605291549757165;102,0.0002593187855179388;103,0.00023233538904160318;104,0.0002187046011308769;105,0.00019450299810570994;106,0.0001797038569454929;107,0.00015639242782469984;108,0.00012790686288473318;109,0.00010409471094272979;110,0.00007800148837076813;111,0.00005430060816681147;112,0.000035328776829841486;113,0.00001335260856560938;114,0.0000018359836777712896;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.0000006212985305971538;86,0.000003121935937869276;87,0.000004644633816522414;88,0.000007356375759279115;89,0.000013297104472201166;90,0.000017421869185692114;91,0.000023097928107842085;92,0.000027501360451287463;93,0.00003181560624118017;94,0.00003092129928146565;95,0.000040009511035819065;96,0.00004723677938076713;97,0.00004964632612792336;98,0.00005606160436894257;99,0.00005541701935056896;100,0.00005943899397665398;101,0.00006892137928447239;102,0.0000706699375029587;103,0.00007623055383561469;104,0.00008311055972457793;105,0.00008309565171428623;106,0.00008741350652160806;107,0.00009661152311646275;108,0.00009415965290196339;109,0.00009976573284336559;110,0.00011410850235976263;111,0.00011674906095394;112,0.00011499182291063194;113,0.00012153147792354964;114,0.00012286634447478148;115,0.00011922947029352704;116,0.000132856339667356;117,0.00013725968416039127;118,0.00014655289893279248;119,0.0001623535511124796;120,0.00017560700005995653;121,0.0001772211645167595;122,0.00017098786329269275;123,0.0001594251629077869;124,0.00016472506986874036;125,0.0001703699081852616;126,0.00018098891027116187;127,0.00019095201506611278;128,0.0001793632956370696;129,0.0001845388523855509;130,0.00020287133193264698;131,0.00020024770395122654;132,0.00019253647586913602;133,0.0001951674117788576;134,0.00020187115399207444;135,0.0002037817114313453;136,0.00021206683151110044;137,0.00022147810804103648;138,0.00021939015508585185;139,0.00021322812506077452;140,0.00023145799226431769;141,0.0002482382316785715;142,0.00025581675660861497;143,0.0002620505573541997;144,0.00025694292531699265;145,0.0002609624483037258;146,0.0002622608119880423;147,0.0002595598838178598;148,0.00026132640540218;149,0.00025753028702986256;150,0.0002418292081824485;151,0.00024302678701604551;152,0.0002468898463793473;153,0.0002491145497345422;154,0.00025936766099144966;155,0.00024790282085581977;156,0.00025568339253545936;157,0.0002772715234952208;158,0.0002728107534364353;159,0.0002583136164482526;160,0.0002613913666943878;161,0.0002758501753658544;162,0.0002879093194397853;163,0.0002898263522714942;164,0.0002957583899229141;165,0.00030263796983953997;166,0.00029767132136629057;167,0.0002949637349522352;168,0.00030520770568042603;169,0.0003181530734548253;170,0.0003557684616195601;171,0.00036151913209931633;172,0.00037496692964882473;173,0.00039306004645235757;174,0.00039323845531253677;175,0.00042506516850149696;176,0.0004542758006721747;177,0.0004417208156038925;178,0.00041781386796180297;179,0.0004627983385282738;180,0.00043519439331437626;181,0.00037569495416950376;182,0.00033650593838313147;183,0.0003056589554410336;184,0.0002875265664396341;185,0.0002533221553417303;186,0.00020953809116624203;187,0.0001711433002921457;188,0.0001239470454883473;189,0.00008799038339018354;190,0.00004743287171128756;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000002966200655628562;66,0.000006329373819648754;67,0.000008861146025172262;68,0.000014102710098651395;69,0.000019203408082558446;70,0.000021583013162614492;71,0.00002496875060231876;72,0.000026083622360866592;73,0.000027187797821225835;74,0.000029179766031238604;75,0.000029870300900163212;76,0.0000302988331576272;77,0.00002688282103647747;78,0.00002500533723357869;79,0.000023974826385126078;80,0.000020169892326306175;81,0.00001741633256682265;82,0.000016135233531124818;83,0.000015348734347356232;84,0.000011843561210563747;85,0.000013690845924230411;86,0.000012713854362827452;87,0.000010313877181274395;88,0.000005693718897614056;89,0.000006151278565003286;90,0.000004562934978156681;91,0.000003058687728658584;92,0.0000021160150321151525;93,0.0000009755931054560384;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.000009719642706088251;126,0.0000417541793198672;127,0.00010218168756287755;128,0.0001690106805110041;129,0.0002408576153352015;130,0.0003012269972522136;131,0.0003735099500060291;132,0.0004570104143670508;133,0.0005316876125739182;134,0.0005912356605765219;135,0.0006519879385059808;136,0.0007234106263339978;137,0.000770906648188922;138,0.0008404834140061455;139,0.0009180723793244167;140,0.0009929945116252743;141,0.0010315918722653618;142,0.0010617889215292337;143,0.0011312943099097625;144,0.0011983157024066358;145,0.0012457333218566062;146,0.0012905692067340959;147,0.0013906701409893518;148,0.0014580605205314163;149,0.001529206532686452;150,0.0015462376166885668;151,0.00155552105350602;152,0.0016226643139305216;153,0.001695170867429901;154,0.0017299816527038482;155,0.0017841689685731805;156,0.0018075008382370692;157,0.001868112029429414;158,0.0018941182739662726;159,0.001866611388132796;160,0.0018365967765897712;161,0.0017724137297132976;162,0.0017247972731182495;163,0.0017006373030153416;164,0.0016342193059526988;165,0.001527920235153812;166,0.0014692736151017236;167,0.0013869899504268168;168,0.0013144664336261556;169,0.0013247067228092534;170,0.001342598165716675;171,0.0013395269623691253;172,0.001341009724064254;173,0.0013086601211482777;174,0.0012464942504419353;175,0.0011742730422251947;176,0.0010950874590372642;177,0.0010180009786559877;178,0.0009640117715905426;179,0.0008987769765397315;180,0.0007503874442447394;181,0.0006235020916274886;182,0.0004956397280400233;183,0.0003732151832776646;184,0.00029007541227021004;185,0.00021961993804864787;186,0.0001573483169003822;187,0.00009994412944534805;188,0.00004878236637731845;189,0.000019055942997064447;190,0.0000034071331006306475;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.00004105927133924884;126,0.0001830976449559186;127,0.00042316641979177057;128,0.00071169403654698;129,0.0009765207730982326;130,0.001212361221888308;131,0.0015069531483670648;132,0.001804660683511131;133,0.0020489577843927588;134,0.00231573177635983;135,0.0025520729479711164;136,0.002797760945578328;137,0.003086455469940608;138,0.0033409339348535135;139,0.0035900157204711517;140,0.003873703016621327;141,0.0040679834712509435;142,0.004259482132429392;143,0.0044726787825269555;144,0.004732553926735127;145,0.0050019428045462964;146,0.005290080970218342;147,0.005577774048938201;148,0.005760482242810956;149,0.005910142730483828;150,0.006057188332312601;151,0.006191159504920881;152,0.006492761550896584;153,0.006769828178632978;154,0.006985917893919756;155,0.007208405734144224;156,0.007463607465354432;157,0.007553014306874992;158,0.007598746991212204;159,0.007432284471094274;160,0.007181255430060818;161,0.0070358232684337215;162,0.006881878818846051;163,0.006704122217316375;164,0.006475124980416175;165,0.006145482456452694;166,0.00580855163364715;167,0.005549956114426515;168,0.0053197348884078;169,0.005349110627252141;170,0.005402131610431415;171,0.005427223387360956;172,0.005347886638133626;173,0.005204791183005512;174,0.004974180505903633;175,0.0046706312045121144;176,0.0044253882938570886;177,0.004098305019868681;178,0.003789859762003105;179,0.003523197041774081;180,0.0029601064113885293;181,0.0024352932588910573;182,0.0019981066001053967;183,0.0015816721204654543;184,0.0011733604777029243;185,0.0008759311219039753;186,0.0006249577167395423;187,0.00037253777898050167;188,0.0001804827591118201;189,0.00006893284171995842;190,0.000014187146600959963;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00001972054667226185;66,0.000036794147208318506;67,0.00006346994875338133;68,0.00008732247000186119;69,0.00011006058836781924;70,0.0001302606940845871;71,0.00015913059946118528;72,0.00016766832930913453;73,0.00019364699698935084;74,0.00021236615011652817;75,0.00021102823331733614;76,0.00021140232283692797;77,0.000210249122761664;78,0.0002036933390263607;79,0.0001968924567329274;80,0.00018369236669442594;81,0.00016766527395359234;82,0.00014860139173109368;83,0.00015404734182671704;84,0.00015204844569250268;85,0.0001481536733526691;86,0.00014353181015814285;87,0.00013513249578193031;88,0.00012712313609646492;89,0.00011976874207899519;90,0.00011818011451059031;91,0.00011923077681299827;92,0.00010799783009303983;93,0.00010579688516619657;94,0.00010595680049353208;95,0.00009180379603509505;96,0.00008751818743586406;97,0.00008131279199671913;98,0.00007449089915404096;99,0.00007532516035844808;100,0.00007128594457862157;101,0.00006935118741591572;102,0.00006329031407352622;103,0.00006182600096451964;104,0.000055593982765047016;105,0.000049276767033550364;106,0.00004101382101021578;107,0.0000401100282492426;108,0.00003267200268438479;109,0.00002574559237007407;110,0.00002073873292538972;111,0.000014501613273032564;112,0.000008313253662833399;113,0.000004415567958236757;114,0.0000005285407557220379;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00002474757697971308;66,0.00004630708709307505;67,0.00006685420295127777;68,0.00008846504937114988;69,0.00010919241792662764;70,0.00013210922709129037;71,0.00014216263802176464;72,0.000164431200031772;73,0.00018598730338795135;74,0.00021058930610902052;75,0.00022824105428005003;76,0.00024671178687777566;77,0.00024816205515784564;78,0.0002491102144189551;79,0.00024204680854069896;80,0.0002322265137810228;81,0.00021931889818809194;82,0.00021281319020806543;83,0.00020370415586348412;84,0.00019868687184397264;85,0.00020102966351612873;86,0.0002094448941393164;87,0.00020349634367534573;88,0.00020590611924217479;89,0.00020078616260964298;90,0.00019727863589907277;91,0.0002072753536910532;92,0.00020968289724455571;93,0.0002070800172826662;94,0.0002064916585697932;95,0.00020699950033877137;96,0.00020996316763373637;97,0.00022018487236903086;98,0.00022745940321309955;99,0.00022982949593247068;100,0.0002390845509383612;101,0.000239554965368085;102,0.00023023952852799256;103,0.00022164089689399562;104,0.00022337176449152595;105,0.0002467474051114917;106,0.000244881347991005;107,0.00024378686263518373;108,0.00023024843308642155;109,0.00024036826403451786;110,0.00024576043231337773;111,0.00023969753228245737;112,0.0002485604342943154;113,0.00024069742726298807;114,0.00024711594575401726;115,0.00024939032034399595;116,0.0002455519622686799;117,0.0002433506097567944;118,0.0002442410890945709;119,0.00022806002625182996;120,0.0002293830932671649;121,0.00023520357315594704;122,0.00023510489467203733;123,0.00023551560861899575;124,0.00024129795632220997;125,0.00023094228379756947;126,0.00021051482734854582;127,0.00011601871350497507;128,0.000019910122749688487;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00009218863497172808;66,0.00018999649271481676;67,0.0002841323831023629;68,0.0003640254910199257;69,0.00047095763128284754;70,0.000558584124994659;71,0.0006418710209226475;72,0.0007436290253663956;73,0.0008510062525815044;74,0.0009338480615573058;75,0.0010027809032772644;76,0.0010935230056543846;77,0.0010958040762843431;78,0.001078167505803934;79,0.0010828409188018973;80,0.0010230323596017719;81,0.0009794694741564714;82,0.0009956038761732493;83,0.000993489713150361;84,0.0009816392730483828;85,0.0010017794576348436;86,0.0009935453490193845;87,0.000978245485037957;88,0.0009858675990941591;89,0.0010142975281651023;90,0.0009706233709817552;91,0.0009653935992935581;92,0.0009736277079090171;93,0.0009606645504265715;94,0.0009677303057925396;95,0.0009874254034268135;96,0.0009534318874535331;97,0.000939244740852573;98,0.0009553235070003277;99,0.0009803040121918218;100,0.0009998322022190258;101,0.000993322805543291;102,0.0009716248166241758;103,0.000953431887453533;104,0.000945364686445144;105,0.0009511508168235747;106,0.0009867021371295097;107,0.000989706474056772;108,0.0009860901425702527;109,0.0009944355229237584;110,0.0010095684792981157;111,0.000978245485037957;112,0.0009640583384369972;113,0.0009506500940023644;114,0.0009715691807551524;115,0.0009839759795473644;116,0.0009572151265471224;117,0.0009510951809545514;118,0.0009514846320377151;119,0.0009506500940023644;120,0.0009554904146073978;121,0.0009586616591417301;122,0.0009389665615074563;123,0.0009334586104741423;124,0.0009549340559171641;125,0.0009400792788879237;126,0.0008560134807936079;127,0.0004685096530458191;128,0.00008951811325860621;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.000015565986368515434;75,0.000015482343584447008;76,0.000014307224831861632;77,0.000018272792344043855;78,0.000013995898301192123;79,0.000001955948520352936;80,0.000002707032752168464;81,0.0000016690760707011724;82,0.0000016690760707011727;83,0.0000019472554158180345;84,0.0000013908967255843102;85,0.0000017247119397245443;86,0.0000017803478087479173;87,0.000000945809773397331;88,0.0000010570815114440756;89,0.000001653201705898308;90,0.0000013352608565609379;91,0.0000013978512092122319;92,0.0000028364466214184822;93,0.0000020784079059750332;94,0.0000018757451819917974;95,0.0000027857998384760098;96,0.000001686462279770976;97,0.000002178491996446426;98,0.000002735833385453661;99,0.000003922555542787796;100,0.000003596450734408953;101,0.0000008442138386589987;102,0.000001976282825743272;103,0.0000023367064989816414;104,0.0000015270383018222095;105,0.0000013750223607814459;106,0.0000028781735231860123;107,0.000002569454923876972;108,0.0000028953329556157746;109,0.000001891090401301233;110,0.0000018920731000747438;111,0.0000016675642264342327;112,0.0000021649609902573178;113,0.0000023265015501798;114,0.0000022075194063716636;115,0.0000027551849920704864;116,0.000002217195209680077;117,0.000002064083181545782;118,0.0000027994442329851393;119,0.000002884825637960545;120,0.000004682106102498185;121,0.00000228617310435919;122,0.0000022283828572554284;123,0.000002160576641883193;124,0.0000017821620218682448;125,0.000001539662201451154;126,0.000003034573812600899;127,0.0000018881423049807012;128,0.0000018811878213527798;129,0.0000011258704255898215;130,0.000002481238810901054;131,0.0000016134402016777997;132,0.0000017803478087479169;133,0.00000218189364604704;134,0.000002614885844098503;135,0.0000017445926918347987;136,0.000002078407905975033;137,0.0000020227720369516603;138,0.0000029328266934358733;139,0.0000018553352843881147;140,0.000002281070629958269;141,0.0000019472554158180345;142,0.000002424506854784151;143,0.0000017012405574803094;144,0.0000020390621589279337;145,0.0000013091815429562319;146,0.000002028857210126092;147,0.000001090644454170132;148,0.0000014704197340253264;149,0.0000019609376064338363;150,0.000001502168463631055;151,0.0000017485990791421883;152,0.000002300951382068523;153,0.0000024718653764460295;154,0.000001514112033339877;155,0.0000029010779638301446;156,0.000002849372889900815;157,0.0000030453834991095168;158,0.000002948247504958656;159,0.0000032380680509309518;160,0.0000017689333845325242;161,0.0000020796929736019317;162,0.000002260207179074504;163,0.0000016308264107476038;164,0.0000022862864926792096;165,0.0000025460969299527573;166,0.000002756470059697385;167,0.0000024566713415632877;168,0.0000021750147546324654;169,0.0000020009258872943856;170,0.0000017942567760037602;171,0.000002607628991617194;172,0.0000016801881260631776;173,0.000001956931219126447;174,0.0000011697895015444132;175,0.0000010381834581073326;176,0.0000005268021348150576;177,0.0000004450869521869792;178,0.00000027817934511686214;179,0.00000011127173804674484;180,0.00000005563586902337242;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0002896403341356768;66,0.0005877929562319295;67,0.0008528978721282991;68,0.0011043720001139424;69,0.0013555679487544689;70,0.0016129951147256128;71,0.0018438283353035853;72,0.0020920755828858725;73,0.002295758499380439;74,0.002460385035820598;75,0.0026640679523151642;76,0.0028630218199427442;77,0.0027990405705658654;78,0.0027341135114155903;79,0.002666126479469029;80,0.002530430594921024;81,0.0023473329499651046;82,0.002303324977567618;83,0.0022679962007377766;84,0.0022341139565025428;85,0.0022012331579097295;86,0.002195391391662275;87,0.0021423704084830015;88,0.0020618096701371584;89,0.001989037953454587;90,0.0019490357636267825;91,0.0019127055411545203;92,0.0019013001880047288;93,0.0018112257160558887;94,0.0017180912713107635;95,0.001692443135690989;96,0.001677254543447608;97,0.001647823168734244;98,0.0015684307836378918;99,0.0014933779963253622;100,0.0015053397081653873;101,0.0014543216162709548;102,0.0014024689863411717;103,0.0013492810955548279;104,0.0013232435088518894;105,0.0012950917591260627;106,0.001223098944609819;107,0.0011587282441497771;108,0.0011291855976983665;109,0.0011333026520060961;110,0.0010875699676688839;111,0.0010189153052940422;112,0.0009513733602996683;113,0.0008981298336443008;114,0.0008755973066898351;115,0.0008491702689037332;116,0.000793868215094501;117,0.0007234888407799348;118,0.0006755863575508113;119,0.0006152770755294755;120,0.0005650935216703935;121,0.0005359959621711698;122,0.0004938796093204769;123,0.00045376614775462535;124,0.0004099250829642079;125,0.00036675164860207094;126,0.00033409339348535133;127,0.0002798484211875632;128,0.00022399000868809734;129,0.00018905068294141947;130,0.0001500499387560354;131,0.00010860121633362294;132,0.00006759758086339748;133,0.000028096113856803068;134,0.000005619222771360613;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000010070092293230406;66,0.000025648135619774683;67,0.000040836727863155354;68,0.000057638760308213814;69,0.00007488587970545926;70,0.00008745958610474142;71,0.00009408025451852276;72,0.00011004774892823063;73,0.00012056292817364801;74,0.0001200065694834143;75,0.00012523634117161129;76,0.00012890830852715386;77,0.00012056292817364802;78,0.00010854558046459958;79,0.00010359398812151944;80,0.00009063083063907366;81,0.00008211854267849768;82,0.00007638804816909033;83,0.00007215972212331402;84,0.0000649270591502756;85,0.00005552459728532567;86,0.00005012791799005854;87,0.00004322907023116037;88,0.0000377211191978465;89,0.00002820738559484981;90,0.000021809260657161986;91,0.000018026021563572664;92,0.000008846103174716214;93,0.0000036719673555425792;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00008974065673469971;72,0.0005937459942174303;73,0.0016495478806739686;74,0.003035270470439105;75,0.004669852302345788;76,0.006554906816595691;77,0.007902296292603724;78,0.00924117348065118;79,0.01046065609377448;80,0.01055290036461523;81,0.009587618037059719;82,0.008382934565096638;83,0.00703827124667075;84,0.0058566766603523664;85,0.004605425966016721;86,0.0032391202945407415;87,0.0018954584217572748;88,0.0007701673348905443;89,0.0001365304225833559;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.000003393788010425718;86,0.000013185700958539263;87,0.000027094668214382364;88,0.00003950146700659441;89,0.00005730494509407358;90,0.0000764436840381137;91,0.00009552678711313043;92,0.00011460989018814715;93,0.00013831077039210384;94,0.00015021684636310552;95,0.0001655723462135563;96,0.00018465544928857302;97,0.0002083563294925297;98,0.00022254347609348962;99,0.00023172339448234613;100,0.0002622118507071542;101,0.0002796815135804931;102,0.0002817400407343579;103,0.0003066092741878054;104,0.00033209050220050996;105,0.00036269023016336475;106,0.00038666928971243825;107,0.0003842769473444332;108,0.0004144315883551011;109,0.0004384106479041746;110,0.0004330696044779309;111,0.000432791425132814;112,0.00045332106080243846;113,0.00048447714745552704;114,0.0005005002777342582;115,0.0005180255764766206;116,0.000550071837034083;117,0.0005619222771360614;118,0.0005812835595561949;119,0.0005940241735625472;120,0.0006023695539160532;121,0.0005892394888265373;122,0.0005974735974419963;123,0.0006516072980017377;124,0.0006771997977524889;125,0.0006740841890871801;126,0.000699899232314025;127,0.0007171463517112702;128,0.0007256030038028231;129,0.000719761237555369;130,0.0007351167374058196;131,0.0007819621391234993;132,0.0007706680577117546;133,0.0007358400037031235;134,0.0007666622751420719;135,0.0007955372911652021;136,0.0008123393236102606;137,0.0008211854267849768;138,0.0008488920895586162;139,0.0008783234642719803;140,0.0008936233282534076;141,0.0008954593119311789;142,0.0009081999259375312;143,0.0009217194421102107;144,0.0009292859202973894;145,0.0009468112190397517;146,0.0009704008275056616;147,0.0009883155773311874;148,0.0009960489631254362;149,0.00100122309894461;150,0.0010160778759738503;151,0.0009684535720898436;152,0.0009854781480109955;153,0.001030209386705787;154,0.0010436176311404196;155,0.0010525750060531827;156,0.0010699333971884747;157,0.0010761646145190926;158,0.0010576378701343096;159,0.0010547448049450943;160,0.0010571371473130993;161,0.0011096017718021391;162,0.0011722477603224569;163,0.001194835923145946;164,0.0011964493633476237;165,0.0011924992166469643;166,0.0011845989232456453;167,0.0011855447330190428;168,0.0012012896839526572;169,0.0012865794711654868;170,0.0014115376329919813;171,0.0014914863767785677;172,0.001539221952400621;173,0.0015936894681745028;174,0.0016202277776986513;175,0.0016701331522126165;176,0.0017023463203771493;177,0.0017108586083377252;178,0.00176093089045876;179,0.001800209813989261;180,0.0016855442879320907;181,0.0015514062077167396;182,0.0013875585734429078;183,0.0012292745260714135;184,0.0011009782121035165;185,0.0009744066100753443;186,0.0008253024810927065;187,0.0006590068685818463;188,0.000463112973750552;189,0.0002892508830525132;190,0.00014048056928401534;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.0000025931530827612483;86,0.000010916800674929856;87,0.00002609418586192364;88,0.00004263490828363838;89,0.00006147500384458892;90,0.00007417858992459795;91,0.00008410127535876896;92,0.00010021509586318866;93,0.00013020809211926156;94,0.00014988648489590214;95,0.000166551142794432;96,0.00018846850338122934;97,0.00020829785074337462;98,0.00023939134704381186;99,0.00026673851470261753;100,0.0002770549272875882;101,0.0002827236537650435;102,0.0002959607380198471;103,0.0003124684031494522;104,0.0003468253378820458;105,0.0003676766419143388;106,0.0004016042077675397;107,0.00044951007425896874;108,0.00046883585591977204;109,0.00047825337800095675;110,0.0004815451982446758;111,0.00048676223570947295;112,0.0005183234680236422;113,0.0005504412469870621;114,0.0005660059922131557;115,0.0005917902806458488;116,0.0006258995793735833;117,0.0006510085310583;118,0.0006650932399950107;119,0.0006537912173147991;120,0.000676301682579648;121,0.0006806267840242872;122,0.0007089715676605428;123,0.0007339504047157613;124,0.0007484232020327627;125,0.000771841156926424;126,0.0007858992696622336;127,0.0008138431837050444;128,0.0008446975256512633;129,0.0008633959705980493;130,0.0008651856223781372;131,0.0008795501318064863;132,0.0008970145788171043;133,0.0009205544956179025;134,0.0009078151973246689;135,0.0008967632071267828;136,0.0009284689094403713;137,0.000958550340413929;138,0.0009809859510002692;139,0.0009899017399805274;140,0.0009770146354153234;141,0.0009513954219892852;142,0.0009222446230985042;143,0.0008873018201100125;144,0.0008668816705677737;145,0.0008664640491269415;146,0.0008285649327400236;147,0.0007993130823827439;148,0.0007752342635854131;149,0.0007664158373759459;150,0.000738814784074967;151,0.0007160955198371405;152,0.0007060623145009907;153,0.0006705290852504391;154,0.0006418787507372205;155,0.000613709191894536;156,0.0006130132971290786;157,0.0005832678663932334;158,0.000553965760493791;159,0.0005360431868741838;160,0.0005238233133243492;161,0.0005118464707834579;162,0.0004947527964286921;163,0.0004786856837399897;164,0.00048410005467772914;165,0.00045954335007975;166,0.00042938302330881883;167,0.00040408045034174504;168,0.00039339401693699004;169,0.0003844889886104535;170,0.0003787422591409553;171,0.0003858689602181764;172,0.0003930329946551433;173,0.0003870812488878841;174,0.0003684385337896301;175,0.0003470732323305533;176,0.000336590029612898;177,0.0003182656700996384;178,0.0002927991498800118;179,0.0002677892291023616;180,0.00023414472952871886;181,0.00019636968958787883;182,0.00015232769660831954;183,0.00011906456588011064;184,0.00008978799891209922;185,0.00007080824980153935;186,0.00005029022060121287;187,0.000034396100692754984;188,0.000021942876023351137;189,0.000011505323851942717;190,0.0000027731003466337187;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.000009625005341043427;86,0.000050406097335175406;87,0.0001123288195581889;88,0.00019717351981883184;89,0.00028808252980302236;90,0.0003712025181239407;91,0.0004554908596943499;92,0.0005219757231772798;93,0.0005923550974918461;94,0.0006756419934198347;95,0.0007824072260756862;96,0.0008640250459329736;97,0.0009117049856860037;98,0.0009915424577345432;99,0.0010906299404651694;100,0.0011928886677301277;101,0.001276453743003233;102,0.00132407804688724;103,0.0013981293885573487;104,0.0014950470723960633;105,0.0015482349631824074;106,0.0016494922448049452;107,0.0017692206349432427;108,0.0018437726994345615;109,0.0019027467205993368;110,0.001987257605645839;111,0.002047845067012292;112,0.0021152757402686188;113,0.002223264962042985;114,0.0022708892659269913;115,0.0022880251135861908;116,0.002398684857073678;117,0.002539777420916951;118,0.002573659665152184;119,0.0026333569526142625;120,0.0027084653757958157;121,0.0028179567660338127;122,0.0028812703849824105;123,0.0029221627487145893;124,0.0029894821502328695;125,0.00303254431285696;126,0.0031191137250573273;127,0.003182761159220065;128,0.0032546427019982628;129,0.0033801015866459674;130,0.00345832561849283;131,0.003512960041873781;132,0.0035931313291364606;133,0.003644650143852103;134,0.0037018994530771533;135,0.0036850417847630714;136,0.003706405958468047;137,0.003766826512227429;138,0.003826245620344391;139,0.0038468865277520616;140,0.0037935317293586483;141,0.0037175331322727213;142,0.0035991956388600078;143,0.003510345156029682;144,0.0033954570864964187;145,0.0033262460654313432;146,0.0032578695824016183;147,0.003164011871359189;148,0.0030950790296392305;149,0.003066426557092194;150,0.0029660594493740302;151,0.0028500030265912746;152,0.002755143869906425;153,0.0026299631646038374;154,0.0025625324913475097;155,0.002514574372249363;156,0.0024530967369785365;157,0.0023588495748529436;158,0.0022492469128769;159,0.0021587829898448967;160,0.002091074137243452;161,0.0020535199256526758;162,0.0020171340673113903;163,0.001976631154662375;164,0.0019111477368218659;165,0.001813506786685847;166,0.0016796468858156133;167,0.0016157769081767818;168,0.0015744950933614392;169,0.0015693209575422659;170,0.0015863455334634176;171,0.0016083217017276497;172,0.0015714351205651537;173,0.0015398339469598781;174,0.0014994423060489099;175,0.0014389104805514806;176,0.0013352608565609379;177,0.0012454089280881917;178,0.0011682976136217975;179,0.0010948026306419221;180,0.000907421023771204;181,0.0007362850906553104;182,0.0006131629125065872;183,0.00048753712025181243;184,0.0003781570017518623;185,0.00029164322542051826;186,0.00019839750893734605;187,0.0001292977596103175;188,0.00007043501018358947;189,0.00003110045078406518;190,0.000009513733602996684;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00007386310275764516;66,0.00013403321951420907;67,0.00020544717031248621;68,0.00027486296251138723;69,0.00033420928145599417;70,0.0003753116842820559;71,0.0004229280755000547;72,0.00047314068026393897;73,0.0005301972354740528;74,0.000579872049651244;75,0.0006232179435620665;76,0.0006472664692906568;77,0.0006291638319543078;78,0.00062242699873894;79,0.0006153028422590628;80,0.0005557639797318971;81,0.0005373133883729629;82,0.0005245283639412693;83,0.0004919711960441225;84,0.0004753361845944541;85,0.0004788787043707056;86,0.00044621787605418303;87,0.00045595726875828266;88,0.0004441932377067748;89,0.00041999520896747944;90,0.0004151190739975819;91,0.0004105597725532479;92,0.0003990303970977476;93,0.0004098813395890735;94,0.0003871163420621723;95,0.0003694936948502486;96,0.0003732866485647694;97,0.00037181141238093425;98,0.00037197854267857875;99,0.000371247003119979;100,0.0003692767104663853;101,0.0003460718285703048;102,0.00033619002320080856;103,0.00033018713623667094;104,0.00032984181261880687;105,0.00031716408418334453;106,0.00028591465646951835;107,0.0002872842402770044;108,0.0002960749384454029;109,0.000270283241975802;110,0.00025533363042885214;111,0.00025421618751353414;112,0.00025874609278052373;113,0.00024705631064830125;114,0.00022949233218758246;115,0.00020543895527762491;116,0.0001953207230026892;117,0.00019598412435308784;118,0.00018607128633697984;119,0.00016117663857710186;120,0.00014583808261912115;121,0.0001329687258797914;122,0.00012001306530618015;123,0.0001087971217266428;124,0.00010403815979501507;125,0.00009371176903788257;126,0.00009275480736998376;127,0.00007991137263073364;128,0.00006224605157134283;129,0.00004435703782991236;130,0.000034982189596194794;131,0.000024149860155130996;132,0.000013112527696019393;133,0.0000055084045865939505;134,0.0000007232662973038413;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.00006378739314574997;75,0.000050776423588362225;76,0.00005081641186922278;77,0.00006564163234304455;78,0.00004350724957627722;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "ad_astra:mars_ostrum_ore", + "distrib": "0,0;1,0.0005152188870138474;2,0.0005049921340251712;3,0.0005407857694855378;4,0.0005799061800145097;5,0.0005943838122575151;6,0.0006296845921521623;7,0.0006304238755007413;8,0.0006490291731066462;9,0.0006944334920985396;10,0.0007153182466958963;11,0.00073478604154181;12,0.0007467993959562188;13,0.0007691011103050185;14,0.0007829010661451598;15,0.0008266419976027505;16,0.0008397642770400279;17,0.0008596017135602309;18,0.000909072090969309;19,0.0009355630776267231;20,0.0009290943483266568;21,0.0009417853791439297;22,0.0009693236838784974;23,0.0009927343232501657;24,0.001018362812667571;25,0.0010403564922877961;26,0.0010776903013910355;27,0.0010956795295397914;28,0.0011293169219001357;29,0.001152665954326089;30,0.0011524195265432294;31,0.0011819292535406745;32,0.0011885828036778856;33,0.001199856874743715;34,0.0012331246254297702;35,0.0012734771748730404;36,0.0012994136990190203;37,0.0013140145451534556;38,0.001337240363687979;39,0.0013480215791880897;40,0.0013833223590827368;41,0.0013885589494685045;42,0.0014050696109201024;43,0.0014471471548433905;44,0.001473884569283664;45,0.0014668613774721636;46,0.0014999443073210738;47,0.0015332736649528438;48,0.0015489834361101474;49,0.0015749815672018424;50,0.0015895208063905625;51,0.001606893965082169;52,0.0016399768949310791;53,0.0016567955911112515;54,0.0016730598247799895;55,0.0016893240584487275;56,0.001700043667003123;57,0.0017128579117118255;58,0.0017488979749550517;59,0.0017947951495126645;60,0.0017903594494211906;61,0.001817281684698609;62,0.001840261075450273;63,0.001810073672049964;64,0.0017979987106898402;65,0.0017868478535154402;66,0.0017792085922467907;67,0.0017433533498407091;68,0.0017040481184745927;69,0.0016753392817714413;70,0.0016787892707314767;71,0.0016427492074882503;72,0.0015835449326562158;73,0.0016019038024792606;74,0.0015873029563448257;75,0.0015540968126044855;76,0.0015565610904330822;77,0.0015155924715326628;78,0.0015177487146326848;79,0.0015006835906696528;80,0.0014883005945809545;81,0.0014655060246664357;82,0.0014351338004289817;83,0.0014329159503832442;84,0.0014107990568715896;85,0.0013795027284484122;86,0.0013608358238967923;87,0.00131068777008485;88,0.0012515451021985302;89,0.0012464317257041917;90,0.0012397165686212663;91,0.0012223434099296597;92,0.0011980702733179827;93,0.0011736123158691608;94,0.0011701007199634106;95,0.0011352927956344825;96,0.001102517900514147;97,0.001053848413399363;98,0.0010498439619278934;99,0.001051630563353626;100,0.0010411573825820902;101,0.0010008048331388198;102,0.0009733897422956818;103,0.0009501023168154434;104,0.0009184979536636913;105,0.0008859078793805003;106,0.0008933007128662904;107,0.0008901587586348296;108,0.0008651463386745734;109,0.0008442615840772168;110,0.000830153593508501;111,0.0008098233014225784;112,0.0007848108814623222;113,0.0007603529240135003;114,0.0007164271717187648;115,0.0006877799419613286;116,0.0006722549916411697;117,0.0006548202260038482;118,0.0006400345590322683;119,0.0006067668083462134;120,0.0005685088950572502;121,0.0005513205572027885;122,0.0005224268996624925;123,0.0005002483992051226;124,0.00048749576144213483;125,0.0004590333525218434;126,0.00043254236586442925;127,0.00038707643992682086;128,0.0003683479284294862;129,0.0003632345519351481;130,0.00033027483597766776;131,0.00031524274122322806;132,0.00030310617291738954;133,0.0002766767932056903;134,0.00022893141027662998;135,0.00019270652619625904;136,0.00017822889395325366;137,0.00017176016465318743;138,0.00014268168627574681;139,0.0001193942607955083;140,0.00009179434911522571;141,0.00006382479576065357;142,0.00003462310349178311;143,0.000011828533577263983;144,0.0000024026708828817464;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.000021624037945935715;38,0.00012629423871557895;39,0.000314626671766079;40,0.0005073331979623379;41,0.0007017647186386147;42,0.00090469799782355;43,0.0011229714064914993;44,0.0013437706999337602;45,0.001538263827555752;46,0.0017203739590890455;47,0.0019435759234141883;48,0.0021314771078446834;49,0.002347471059521181;50,0.002580899776835;51,0.002781430385137054;52,0.0029890457921963225;53,0.0031736818085039272;54,0.003366757976374476;55,0.0035500386398763526;56,0.0037102783056808504;57,0.0039198651350029964;58,0.004122921628079362;59,0.004392020766962117;60,0.00459292101693846;61,0.004837808626155253;62,0.005034334782985838;63,0.005124404137621046;64,0.005319082086080182;65,0.00557930982477999;66,0.005697779981389773;67,0.005968912149481122;68,0.006182934678894742;69,0.006374655493959563;70,0.0065484486878213425;71,0.0066856473559284615;72,0.006855620919155916;73,0.007094902296312652;74,0.007306275727060532;75,0.0075183268342112735;76,0.007672775447118569;77,0.007962081664195817;78,0.008309544838027948;79,0.008340471524776835;80,0.008100327650380091;81,0.007977606614515978;82,0.007777076006213924;83,0.007522331285682744;84,0.007315455161972054;85,0.007077036282055327;86,0.006902811839573543;87,0.00669679821310286;88,0.006440574925874524;89,0.0062216854477494254;90,0.006086519808850898;91,0.0059413738447465555;92,0.005739179848910198;93,0.005489117256253352;94,0.005267393858625367;95,0.005086023010440652;96,0.004851608581995395;97,0.004676028786707883;98,0.004531930140680693;99,0.004315997795949911;100,0.004065935203293064;101,0.0038437805570450748;102,0.0036654900561461064;103,0.003443520230735262;104,0.0031767005488439583;105,0.0029704404945904176;106,0.0028087222620887613;107,0.002638502271078447;108,0.0024040262356874744;109,0.0022253044861685013;110,0.0020250203056493077;111,0.0017902978424754756;112,0.0015637691030817272;113,0.0013845544979970352;114,0.0011755837381320377;115,0.0009537371266126235;116,0.0007455056500962054;117,0.0005344402540769013;118,0.000327132881746207;119,0.0001290049443270353;120,0.000024273136611677126;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000018605297605904807;30,0.00012198175251553481;31,0.0003142570300917895;32,0.0005208867260196196;33,0.0007501877779705392;34,0.0009770245520928618;35,0.0012076809568495094;36,0.0014257695446803142;37,0.0016248215862852097;38,0.0018457440936189005;39,0.0020423318573951996;40,0.002221916104154181;41,0.0024640314008138034;42,0.0026765137565845504;43,0.002852648014383497;44,0.003053609871305555;45,0.003362507097120147;46,0.003574003741759455;47,0.0037262961115667285;48,0.00391727764328297;49,0.004214531156357442;50,0.004435145628962559;51,0.004634197670567454;52,0.004821914034160806;53,0.0050305767592972285;54,0.005209976185219065;55,0.005363685514777781;56,0.0054798762143961136;57,0.005806146598902312;58,0.005988071909598461;59,0.0061624811729173905;60,0.006360978752010851;61,0.006592805688736082;62,0.006722796344194556;63,0.006731421316594644;64,0.006499039917357979;65,0.006387592952559695;66,0.006160694571491657;67,0.0059469184698608965;68,0.005799000193199381;69,0.005600009758540201;70,0.005368983712109265;71,0.005104936342775132;72,0.004834605064978077;73,0.004723774169636943;74,0.0045589755898495414;75,0.004335219163012964;76,0.004131977849099454;77,0.003956582874649087;78,0.003752848705169858;79,0.0034961941693215154;80,0.0032554342254676218;81,0.003091806177648803;82,0.002890844320726745;83,0.0026926547763618585;84,0.0024828215192568524;85,0.0022184045082484305;86,0.0020461514880295243;87,0.001833607525313062;88,0.0016049841497650067;89,0.0013969374940857335;90,0.0011901845842664733;91,0.0009704942158470808;92,0.0007695939658707378;93,0.0005303125887140018;94,0.00031733737737753536;95,0.00013873884174999212;96,0.00002445795744882188;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0002648482596284263;2,0.0002827142738857522;3,0.00030594009242027574;4,0.00030594009242027574;5,0.0003188159440746933;6,0.0003475863877235593;7,0.0003551024351007791;8,0.00035547207677506863;9,0.0003720443451723812;10,0.0003903416080497114;11,0.0004074067320127433;12,0.0004090701195470461;13,0.000413567426584235;14,0.0004314334408415608;15,0.0004494226689903164;16,0.00043907270211021045;17,0.0004626681623190234;18,0.0004846618419392487;19,0.0004898368253793017;20,0.0005005564339336971;21,0.0005295116984197079;22,0.0005391839888969498;23,0.0005551401878371132;24,0.0005540928697599596;25,0.0005618553449200391;26,0.0005696794270258335;27,0.0005869293718260102;28,0.0006060891319433492;29,0.0006235238975806706;30,0.000632888153329338;31,0.0006428684785351544;32,0.0006606112789010504;33,0.0006622130594896382;34,0.0006777380098097972;35,0.0006789085417783807;36,0.0006776764028640824;37,0.0007161807439359051;38,0.0007188298426016467;39,0.0007467377890105038;40,0.0007485243904362364;41,0.0007577038253477589;42,0.0007765555507365234;43,0.0007790198285651201;44,0.0008073590235939817;45,0.0008091456250197142;46,0.0008400107048228875;47,0.0008567677940573448;48,0.0008453089021543704;49,0.00084555532993723;50,0.0008697668596031923;51,0.0009015560435920891;52,0.0009141238605179322;53,0.0009342077248209948;54,0.0009493014265211495;55,0.0009465291139639782;56,0.0009329139789609817;57,0.0009418469860896447;58,0.0009505951723811627;59,0.000990331652367284;60,0.001022675298867615;61,0.001007766418004605;62,0.0010120789042046495;63,0.0010117708694760746;64,0.0009924262885215912;65,0.0009751147367756995;66,0.0009524433807526102;67,0.0009746218812099802;68,0.0009560165836040753;69,0.0009228104398637354;70,0.0009231800815380248;71,0.0009180050980979719;72,0.0008886185849919567;73,0.0008830739598776141;74,0.0008700748943317668;75,0.0008525785217487304;76,0.0008472187174715328;77,0.0008437687285114974;78,0.0008367455366999969;79,0.0008300919865627859;80,0.0008178322043655176;81,0.0008119179375768856;82,0.0008072358097025519;83,0.0007903555065766647;84,0.00075320651831057;85,0.0007271467802731603;86,0.0007342315790303758;87,0.0007157494953159008;88,0.0007160575300444753;89,0.0007136548591615935;90,0.0006938790295871054;91,0.0006781692584298016;92,0.0006846379877298678;93,0.0006513702370438129;94,0.000634982789483645;95,0.0006252488920606882;96,0.0006104016181433932;97,0.0005917347135917737;98,0.0005800293939059395;99,0.0005871757996088699;100,0.0005696178200801185;101,0.0005576660726114247;102,0.000529450091473993;103,0.0005001867922594077;104,0.0005004948269879823;105,0.0004860788016906918;106,0.00047770025707346306;107,0.0004923627101536133;108,0.0004603270983818566;109,0.00044671196337886006;110,0.00043630038955303917;111,0.00040531209585843616;112,0.00041831116140428353;113,0.000400999609658392;114,0.00039730319291549695;115,0.00037993003422389054;116,0.00037721932861243423;117,0.0003494962030407217;118,0.00034733995994069963;119,0.00034462925432924326;120,0.0003143802439832193;121,0.00028862854067438415;122,0.00028788925732580514;123,0.0002644786179541369;124,0.00025745542614263634;125,0.00025147955240828945;126,0.0002313340811595117;127,0.00021359128079361574;128,0.00020921718764785666;129,0.00019781990269059711;130,0.00016898785209601614;131,0.00016251912279594992;132,0.00015420218512443616;133,0.0001439138251900451;134,0.00012894333738132038;135,0.00011656034129262216;136,0.00010553269800965209;137,0.0000869890073494622;138,0.00007251137510645681;139,0.00005704803173201274;140,0.000044295393969025014;141,0.000032220432608901365;142,0.000019899043465918053;143,0.000009549076585812068;144,0.0000009241041857237486;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0000007479058635819705;2,0.000040324591144794576;3,0.0002173913043478261;4,0.00042057239728759467;5,0.0004914988033506182;6,0.0005272736338252891;7,0.0005516428998803349;8,0.000565229856402074;9,0.0005839898284802552;10,0.0005989479457518946;11,0.0006129711806940566;12,0.000637153470283207;13,0.0006508650777822097;14,0.0006612111088950938;15,0.0006892575787794176;16,0.0007205449740725967;17,0.0007346305345033906;18,0.0007411123853211009;19,0.0007684109493418427;20,0.0007819355803749502;21,0.0008224471479856403;22,0.0008324192261667332;23,0.0008267476067012364;24,0.0008601540686078979;25,0.000905776326286398;26,0.0008928126246509772;27,0.0009100144595133625;28,0.0009293976864778619;29,0.0009613706621459912;30,0.0009923464299960113;31,0.0009983920023932987;32,0.001016030115676107;33,0.0010422068209014759;34,0.0010456970482648582;35,0.001074927702433187;36,0.0010820951336258475;37,0.00113868667730355;38,0.0011523359593139208;39,0.00115638711607499;40,0.0011558885121659352;41,0.0011922242720382927;42,0.0011810056840845632;43,0.0012169051655364976;44,0.0012587255684084562;45,0.0012657060231352213;46,0.001277984144395692;47,0.0013353235939369762;48,0.0013161896689270042;49,0.0013446100917431192;50,0.0013661123853211008;51,0.0013617496011168726;52,0.0013659254088552054;53,0.0014109867371360192;54,0.0014558610889509372;55,0.0014371011168727561;56,0.0014250722975668129;57,0.0014647113083366573;58,0.0014797940765855604;59,0.0015151326286398084;60,0.0014885196449940167;61,0.0015018572995612284;62,0.0015585111687275626;63,0.0015677976665337055;64,0.0015796395093737533;65,0.0015739678899082568;66,0.0016130459712804148;67,0.0016266952532907857;68,0.0016430868568009572;69,0.001644271041084962;70,0.0016707593737534904;71,0.0017340820702034302;72,0.0017426829876346231;73,0.0017780215396888711;74,0.0017895517550857599;75,0.001814107997606701;76,0.0018367944754686875;77,0.0018702632628639806;78,0.0018984343837255683;79,0.0019192510969286;80,0.0019572073195053847;81,0.0019802054248105306;82,0.0019908630833665735;83,0.0019872482050259273;84,0.0020141104906262466;85,0.00205780065815716;86,0.0020834787594734743;87,0.002098810829676905;88,0.0021621335261268445;89,0.0021800209413641806;90,0.002154779118468289;91,0.0021374526326286398;92,0.0021811428001595533;93,0.0022331222576785;94,0.0022819854407658555;95,0.0022981277423215;96,0.0022797417231751097;97,0.0023082244714798562;98,0.0022929547267650577;99,0.002336520243318707;100,0.0023446848823294774;101,0.0023695527522935777;102,0.002433748005584364;103,0.002488407459114479;104,0.0025307887913841244;105,0.0025129637016354208;106,0.0025400129637016353;107,0.0025815840646190667;108,0.0025823942959712805;109,0.002599471479856402;110,0.0026472751296370165;111,0.0026882229756681293;112,0.002667281611487834;113,0.002714088053450339;114,0.0027534154367770246;115,0.002742134523334663;116,0.0027596479856402075;117,0.0027961083964898282;118,0.0028113158157159956;119,0.0028140581372157955;120,0.0028064544276027127;121,0.002792181890706023;122,0.0027627642600717983;123,0.002730604307937774;124,0.0026942062225767845;125,0.0027040536497806144;126,0.002708416433984842;127,0.002636555145592341;128,0.00260757379337854;129,0.002605330075787794;130,0.0025878166134822495;131,0.0025833291783007575;132,0.0026080723972875947;133,0.0025730454726765055;134,0.002529729258077383;135,0.0025223748504188273;136,0.0025117795173514156;137,0.0024839200239329872;138,0.002459239130434782;139,0.0024586782010370956;140,0.0024160475668129236;141,0.0023774680893498203;142,0.0023489853410450737;143,0.0023209388711607493;144,0.002360640207419226;145,0.002344373254886318;146,0.0023004337854008773;147,0.0023213128240925406;148,0.0022625398883127238;149,0.0022721380135620264;150,0.002310966792979657;151,0.0023034254088552053;152,0.0022521315317112086;153,0.002254873853211009;154,0.0022308785400877544;155,0.002248018049461508;156,0.002239292481053051;157,0.0022280115676106896;158,0.0021850693059433587;159,0.002189369764658955;160,0.0021788367570801754;161,0.0020983745512564824;162,0.002087280614280016;163,0.002037170921420024;164,0.0019396315317112085;165,0.0017097751296370161;166,0.0014112983645791781;167,0.0010005733944954127;168,0.0006684408655763861;169,0.0005251545672118069;170,0.00039221429996011165;171,0.0002877567810131631;172,0.00021396340247307539;173,0.00017070951336258476;174,0.00012907608695652173;175,0.00010844635021938572;176,0.00008875149581172718;177,0.00005416084962106103;178,0.000034902273633825294;179,0.000023870662145991222;180,0.000015768348623853207;181,0.000013026027124052652;182,0.000008289289988033504;183,0.000005173015556441961;184,0.000004238133226964499;185,0.0000011218587953729557;186,0.0000005609293976864779;187,0.0000003116274431591543;188,0.00000006232548863183088;189,0.0000001869764658954926;190,0.00000006232548863183085;", + "silktouch": false, + "dim": "ad_astra:mercury" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.00002369121442397305;38,0.00012439287762563625;39,0.00031157027385475663;40,0.0005291037888020646;41,0.0007383481790809378;42,0.0009311823428202739;43,0.0011225043013836117;44,0.0013263719621478243;45,0.0015261510681769301;46,0.0017663676607642125;47,0.0019204445659187041;48,0.0021177593375869236;49,0.002348230607928884;50,0.0025526583446842076;51,0.0027945551652448206;52,0.002983860850240161;53,0.0031889046705857052;54,0.003395628718904581;55,0.0035641555846297225;56,0.003711567585489999;57,0.003970322693383039;58,0.004178894992472579;59,0.004377385923722131;60,0.004579293318517457;61,0.004748940336224819;62,0.004969722291920568;63,0.005128335812603055;64,0.0052293735213993844;65,0.00552223725715105;66,0.0056562634418237875;67,0.0058499937271489;68,0.006082089217865081;69,0.006296206269266615;70,0.00635372607355366;71,0.006418134812531366;72,0.006647093877697326;73,0.006951719209262313;74,0.007174293408129615;75,0.007406780952039574;76,0.007514763603125672;77,0.007649741916983296;78,0.007831598591296868;79,0.007790769051544914;80,0.007560857857194064;81,0.007487991970750592;82,0.007367631640260951;83,0.007152954512868306;84,0.006958832174349415;85,0.006743034894974551;86,0.006491336744569504;87,0.0062974944440461695;88,0.006047980590006451;89,0.005890935282099075;90,0.005724256667144599;91,0.005510139615743063;92,0.005277708079432218;93,0.005083641748512439;94,0.0048390005555953835;95,0.004628019929744068;96,0.004454508387698043;97,0.004327539160513299;98,0.004127760054484193;99,0.003927308857265754;100,0.0037112875474944445;101,0.003508540038712453;102,0.0033511026776112986;103,0.0031028769983511366;104,0.00294639176643487;105,0.002752325435515091;106,0.0025611154921499754;107,0.0023997015915119364;108,0.002236439440103233;109,0.0020167776363897057;110,0.0018005883038210626;111,0.0015969446734532943;112,0.0014288098609219302;113,0.0012548502580830166;114,0.0010591597067890171;115,0.0008572523119936913;116,0.0006663784142232419;117,0.0004831215499318948;118,0.0002889992114130046;119,0.00012898550075274214;120,0.000023635206824862;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_cheese_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0.000001736235572442469;68,0.000011481557817764714;69,0.00003069216431285396;70,0.000051358968384830446;71,0.00006883333930747724;72,0.00008412341386479318;73,0.00010915881066743135;74,0.00013189789590651658;75,0.00014601181088250056;76,0.000159509642268263;77,0.00017356754964513587;78,0.00020028317442110545;79,0.00022548659402107674;80,0.00023668811384328626;81,0.0002594832066814825;82,0.0002711887948956915;83,0.00029650422969388485;84,0.00030787377231342747;85,0.00031806715535163813;86,0.0003532399275933759;87,0.0003661216753889168;88,0.00037973152197290133;89,0.0003969258548999928;90,0.0004245376012617392;91,0.00042352946447774036;92,0.0004371953186608359;93,0.0004676634525772457;94,0.0004989717004803212;95,0.0005148778586278587;96,0.0005386810882500538;97,0.0005445058785576027;98,0.0005727337085095706;99,0.0006087465947379741;100,0.0006217403577317371;101,0.0006102587999139723;102,0.0006061142375797547;103,0.0006261649580615099;104,0.0006641381102588;105,0.000692533963008101;106,0.0007216579145458456;107,0.0007184654813965159;108,0.0007344836547422754;109,0.000769432396587569;110,0.0007856746003297727;111,0.0007953079073768729;112,0.0008155826582550721;113,0.0008325529607857195;114,0.0008535558104523621;115,0.000891024894257653;116,0.0009025624596745287;117,0.0009030665280665281;118,0.0009217730661696178;119,0.0009357189583482687;120,0.0009678113126388989;121,0.000989374238296652;122,0.0010299797476521614;123,0.001061512025951681;124,0.0010629122159294573;125,0.0010947245322245323;126,0.0011214961645996128;127,0.0011119188651516239;128,0.0011274889777044951;129,0.0011591332712022366;130,0.0012131245967452863;131,0.0012093720876048463;132,0.0012285826940999357;133,0.0012673959602838916;134,0.0012997123449709656;135,0.001302288694530074;136,0.0013029047781202958;137,0.0013467587282242456;138,0.001369833859057997;139,0.0013889884579539754;140,0.0014278017241379313;141,0.0014658868915334434;142,0.0014686872714889956;143,0.0014766403505627646;144,0.0014918184099218584;145,0.0015271592049609292;146,0.0015950964226826294;147,0.0016325094988888095;148,0.0016663380887518818;149,0.0016872289232203025;150,0.0016879570220087463;151,0.0017463729478815685;152,0.0017707922610939852;153,0.001806917162520611;154,0.0018158223707792672;155,0.0018050689117499463;156,0.0018489788694530075;157,0.0018655571187898776;158,0.0018748543802423116;159,0.0018436021399383467;160,0.0017497334038282313;161,0.0015046441501182883;162,0.0011478197361818052;163,0.0007266985984658398;164,0.0005652286902286903;165,0.000432546687934619;166,0.00032859658398451505;167,0.00024531328410638755;168,0.00017541580041580043;169,0.00013133781991540614;170,0.0000996375188185533;171,0.00008311527708079432;172,0.00006172037422037421;173,0.00003881326618395584;174,0.000026715624775969605;175,0.000019602659688866582;176,0.000014729998566205463;177,0.000007785056276435588;178,0.000006496881496881497;179,0.00000364049394221808;180,0.0000017922431715535165;181,0.0000013441823786651373;182,0.0000007841063875546635;183,0.0000003360455946662843;184,0.000000056007599111047385;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000026995662771524838;30,0.0001428753853322819;31,0.0003435506129471647;32,0.0005563234819700337;33,0.0007584549071618038;34,0.0009680913506344541;35,0.0012038273352928527;36,0.0014065188364757331;37,0.0016159312495519396;38,0.0018372732812387983;39,0.002051838393433221;40,0.0022323508853681266;41,0.0024159998028532516;42,0.002660192934977418;43,0.0029027618467273642;44,0.0031691899956986166;45,0.00338005860635171;46,0.003542984712165747;47,0.003716776292207327;48,0.0039467995017563985;49,0.00419597731020145;50,0.004335716269983512;51,0.004542608341099721;52,0.004806908201304753;53,0.0050379955552369345;54,0.005183279267330992;55,0.005351582102659689;56,0.005598239569144741;57,0.005856042547852892;58,0.0060294420747006965;59,0.00620721019427916;60,0.006407829414294932;61,0.006623682701268909;62,0.006813268424259803;63,0.006695204405333716;64,0.0064534195999713245;65,0.0062726830776399746;66,0.006098443436805505;67,0.005857386730231558;68,0.005648870438741129;69,0.005432681106172486;70,0.005221028389131838;71,0.004936957846440605;72,0.004661624489210697;73,0.00452871845652018;74,0.0043925639830812244;75,0.00421104335436232;76,0.0040170330310416525;77,0.0038663165818338236;78,0.0035721086637034915;79,0.0033163219585633378;80,0.0031334571474657684;81,0.0029384946949602125;82,0.002748124865581762;83,0.002592199709656606;84,0.002357863914975984;85,0.002107453939350491;86,0.0019190443759409277;87,0.0017063275145171699;88,0.0014761922897698761;89,0.0012969679726145245;90,0.0011012774213205248;91,0.0008807194960212203;92,0.0006799322532081153;93,0.0004998118144669869;94,0.0002982964728654384;95,0.00011296732740698258;96,0.000021002849666642775;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_desh_ore", + "distrib": "0,0;1,0.0006545608108108107;2,0.0006819485267761131;3,0.0007310671911965015;4,0.0007683682522044592;5,0.0008139584378808517;6,0.0008377056599039358;7,0.000839105849881712;8,0.000852155620474586;9,0.0009061469460176357;10,0.0009419918094487061;11,0.000979684923650441;12,0.0010106571259588502;13,0.0010408452218797046;14,0.0010765780701125528;15,0.0011077182952182953;16,0.0011306814108538248;17,0.0011609815219729013;18,0.0012002428489497458;19,0.0012302069144741559;20,0.0012825180120438742;21,0.001284478278012761;22,0.0013040249301025163;23,0.0013631689547637825;24,0.00136036857480823;25,0.0013880363287690875;26,0.0014456681482543552;27,0.0014741200086027671;28,0.0014885139615743066;29,0.001523126657824934;30,0.0015728614058355436;31,0.0015926320883217437;32,0.0015842309484550864;33,0.0015866392752168614;34,0.0016511600293927882;35,0.0017226257258584846;36,0.0017424524159437953;37,0.0017605988780557747;38,0.0018060770485339452;39,0.0018044528281597248;40,0.0018023245393935048;41,0.0018287041185748084;42,0.0019092430460964946;43,0.0019571295433364402;44,0.0019856934188830742;45,0.0020194660011470357;46,0.0020260748978421393;47,0.0020511102946447774;48,0.0020719451215140874;49,0.0021482274715033337;50,0.002201714728654384;51,0.002201714728654384;52,0.0022393518352570073;53,0.002289478636461395;54,0.0022931751380027244;55,0.0023069530073840418;56,0.002311825668506703;57,0.002350806957487992;58,0.0023827312889812893;59,0.002448820255932325;60,0.0024297776722345685;61,0.002442939458025665;62,0.0024598537529572015;63,0.0024381788121012257;64,0.0023504149042942154;65,0.0023536073374435446;66,0.0023565197325973192;67,0.0023433019392071117;68,0.0023257155530862425;69,0.00227474863789519;70,0.0022131962864721487;71,0.0021350096781131266;72,0.002134897662914904;73,0.0021290728726073554;74,0.002107005878557603;75,0.0020534626138074413;76,0.002038788622840347;77,0.002031563642555022;78,0.0019506326618395583;79,0.0019192123987382612;80,0.0018986016022653957;81,0.0018554197433507777;82,0.0018140861352068248;83,0.0018159903935766005;84,0.001781041651731307;85,0.001728954584558033;86,0.0016814601405118648;87,0.0016676262635314362;88,0.0016368780916194712;89,0.001609434368055058;90,0.0015847910244461967;91,0.0015433454011040217;92,0.0015215584450498244;93,0.0014585498960498961;94,0.0014302660584988173;95,0.0014281377697325974;96,0.0014084791024446199;97,0.0013589683848304534;98,0.0013302924940855976;99,0.0013009445121514086;100,0.0012510977489425766;101,0.0012141887411283962;102,0.0011924577926733099;103,0.0011821523944368774;104,0.0011516282529213566;105,0.001119423883432504;106,0.0011055900064520755;107,0.001048462255358807;108,0.0010361405835543768;109,0.0010115532475446268;110,0.0009696595634095635;111,0.0009647869022869023;112,0.0009154442074700695;113,0.0008753427665065597;114,0.000859268585561689;115,0.0008405060398594881;116,0.0007949158541830956;117,0.0007664639938346835;118,0.0007346516775396086;119,0.0007140408810667432;120,0.0006931500465983224;121,0.0006716431285396802;122,0.0006442554125743781;123,0.0006166996738117428;124,0.0005847753423184458;125,0.0005511707828518174;126,0.0005330803283389491;127,0.000493987024159438;128,0.0004584221987239229;129,0.00044246003297727433;130,0.000413672127034196;131,0.00039026095060577814;132,0.00035520019356226253;133,0.0003240599684565202;134,0.00029062343178722495;135,0.0002597072370779267;136,0.00022582263961574305;137,0.00019339423973044665;138,0.0001652224173775898;139,0.00014427557531005808;140,0.00011117508423542908;141,0.00007734649437235645;142,0.00004721440605061295;143,0.000020274750878199156;144,0.000005936805505771024;145,0.0000001680227973331421;146,0.00000005600759911104737;147,0.0000015682127751093271;148,0.0000003360455946662844;149,0.0000032484407484407486;150,0.0000006720911893325686;151,0.0000010081367839988529;152,0.00000016802279733314216;153,0.0000008401139866657106;154,0.0000009521291848878056;155,0.00000022403039644418954;156,0.00000005600759911104739;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0.0000007841063875546632;166,0.0000001680227973331421;167,0.00000005600759911104737;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0000883696321225299;2,0.0001240297451557204;3,0.00019847257306388695;4,0.00029677207904329475;5,0.00037683559026667517;6,0.0004183037427255868;7,0.0004562121290848628;8,0.0005092339083583807;9,0.0005407097349235787;10,0.0006023498952804247;11,0.0006686115063631132;12,0.0007035221949542751;13,0.0007492995379548507;14,0.0008153113408901964;15,0.000852907467065294;16,0.0008875058954722774;17,0.0009419016195561809;18,0.0009926751255036133;19,0.0010423869468248383;20,0.0010678673778538083;21,0.0011137696249280552;22,0.0011468692044509818;23,0.0012164407734859628;24,0.0012842012334527086;25,0.001349276255835518;26,0.0013898076277418943;27,0.0014111037723028713;28,0.0014400190653578052;29,0.0015060308682931507;30,0.0015992717592888664;31,0.0016258763269808788;32,0.0016459858828419775;33,0.001706002290241095;34,0.0017165566844663301;35,0.0017499685241734349;36,0.0017858784453539682;37,0.0018498293310737352;38,0.0019400725243013367;39,0.0020038360539105966;40,0.0020292540329027308;41,0.0020433681932276013;42,0.002091456261591098;43,0.002161714803031272;44,0.002201184490311441;45,0.002221668758393554;46,0.002269507018609708;47,0.0022692572104623648;48,0.0022092408030632473;49,0.0021505358884376796;50,0.0020956405480590905;51,0.002090082316780713;52,0.0020205107477457318;53,0.001967926132730063;54,0.0019180894073351665;55,0.0018601339171516276;56,0.001807486850099124;57,0.0017791960774125471;58,0.0017291095438703077;59,0.0016857678303063245;60,0.0016279996962332928;61,0.0015987096909573447;62,0.0015381936672635415;63,0.0014782397119012598;64,0.0014345857381530983;65,0.0013908693123681013;66,0.0013487766395408325;67,0.0013061218983820427;68,0.0012233729495747265;69,0.0011809680165632795;70,0.001169851554006523;71,0.0011620450494020593;72,0.0010779846078211933;73,0.0010486321505084094;74,0.000982183183315214;75,0.0009319717456993031;76,0.0008984350019185266;77,0.0008552181924282151;78,0.0008121887390484108;79,0.0007420551016819083;80,0.0006974643473812113;81,0.0006677996298842489;82,0.000619524205410245;83,0.0005655031935473556;84,0.000533090586429622;85,0.00048556458639764666;86,0.0004318558347189359;87,0.00039226124336509563;88,0.0003486072696169342;89,0.00030226785828483724;90,0.0002626108148941613;91,0.0002159591433778858;92,0.00017399137462428854;93,0.00011984545868772782;94,0.00006338881738824583;95,0.000027166636023533926;96,0.000006370107757242437;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0.000875077940141971;2,0.0009735023501950503;3,0.0013826880955426233;4,0.001836776855375072;5,0.0020311275940078023;6,0.0020930800145488263;7,0.0021557818595318795;8,0.0021884442747969564;9,0.0021875699462812564;10,0.002299421544254013;11,0.0024582995259640594;12,0.0025270592185201767;13,0.002595069486634265;14,0.0027047977153546073;15,0.002798850482829187;16,0.0028603657391123617;17,0.0029062679861866086;18,0.0029761518154057687;19,0.0030535298890452135;20,0.0031685040888597563;21,0.003266928498912835;22,0.003320200086333696;23,0.003434612217816717;24,0.0035397814478480526;25,0.0035514599787363306;26,0.0036016089643154062;27,0.0036961613480846704;28,0.0037374421444330754;29,0.003790588827780265;30,0.003875273789729488;31,0.003907374136663043;32,0.0039748223364456095;33,0.004114090378589244;34,0.00417716693579331;35,0.004317933826821002;36,0.004410675101522031;37,0.00442204137222613;38,0.004589974899277355;39,0.004678906599731407;40,0.004669039177911364;41,0.004758720302807443;42,0.0048212347916799896;43,0.004904046192524141;44,0.0049510101242245955;45,0.004978988636726993;46,0.005094400000799387;47,0.005208250063950886;48,0.005362756403082432;49,0.005461742881467033;50,0.00539029775132698;51,0.0054584329235147395;52,0.0055372473940014065;53,0.005664399740998912;54,0.005758452508473492;55,0.005765509588635928;56,0.005787180445417919;57,0.0059538649317324305;58,0.0061532742853488516;59,0.006201299901675512;60,0.006128855538946088;61,0.006084077428534885;62,0.006186561220982286;63,0.0062955400252606;64,0.006327577920157318;65,0.0064293747401995265;66,0.006449921460318476;67,0.006470468180437424;68,0.006567019029385432;69,0.0067321422147790504;70,0.006799965126782631;71,0.006802275852145552;72,0.006833252062416065;73,0.006987258785252927;74,0.007114161324103089;75,0.007174052827428536;76,0.007324000167871075;77,0.00750517352673147;78,0.0076065331825158275;79,0.007620085274509176;80,0.007706393989416128;81,0.00789712250991239;82,0.008026897842456993;83,0.008063369831969047;84,0.00811620425513206;85,0.008296940449734603;86,0.008383436520752064;87,0.008308369172475539;88,0.008398362557555798;89,0.00858334549066317;90,0.008645422815277866;91,0.008694260308083393;92,0.008777383969111723;93,0.008842334087420863;94,0.008963990655176824;95,0.009012266079650829;96,0.009157029901036003;97,0.009336766863049179;98,0.009425198947208543;99,0.009538424489991686;100,0.009537862421660166;101,0.009578830957824393;102,0.009549603404585279;103,0.009622609835646223;104,0.009806031467832705;105,0.009978149281351921;106,0.010127347197352435;107,0.010239760863656713;108,0.010273110251326982;109,0.010390145368357102;110,0.010503121102992901;111,0.010563387318539362;112,0.010651756950661891;113,0.010721578327844216;114,0.010861470890356207;115,0.011027156144081347;116,0.011118710830082496;117,0.011139944522606639;118,0.011165549857709279;119,0.011221069718456225;120,0.011183723400428471;121,0.011016726653929781;122,0.010980442020528235;123,0.010930105678838651;124,0.010816130711613482;125,0.01068566840666368;126,0.010610850866534502;127,0.010487882806004989;128,0.010416000511607085;129,0.01044535296891987;130,0.010342931628509305;131,0.010134216921404362;132,0.009996197919997443;133,0.009974901775436466;134,0.009902270056596534;135,0.009907828287874914;136,0.009825329147214939;137,0.0097595047003901;138,0.009815087013173882;139,0.009743829239144339;140,0.009581329039297821;141,0.009383793246786468;142,0.009292113656711645;143,0.00927443973028714;144,0.0092427140955746;145,0.00926569644513014;146,0.009108504668414657;147,0.008980290636790945;148,0.009038683291232336;149,0.009075342636854895;150,0.009060853764309009;151,0.009013015504092857;152,0.008936261950821771;153,0.008497536392050906;154,0.00838493536963612;155,0.006786600390899789;156,0.006749378976945705;157,0.0049105412043550555;158,0.004751475866534502;159,0.00411864937727825;160,0.00407992911444011;161,0.0037548038106734027;162,0.0032418852321417155;163,0.0025166921804054485;164,0.0017762608316812686;165,0.0012427330809937965;166,0.0009320966497729745;167,0.0007049585918014964;168,0.0005301553406983436;169,0.0003918865311440813;170,0.00027235333264053206;171,0.00019997142194794394;172,0.00014863584766899022;173,0.00010585620243652873;174,0.00007868956641299481;175,0.00005439572408390356;176,0.000034973140627997696;177,0.000021233692524141458;178,0.000014488872545884758;179,0.00001136627070409925;180,0.000008431024972820874;181,0.000004059382394321162;182,0.000001124136663042783;183,0.0000004996162946856814;184,0.0000004996162946856813;185,0.00000006245203683571019;186,0;187,0;188,0.0000006245203683571018;189,0.00000012490407367142035;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.000028197094631323144;171,0.00000469951577188719;172,0.0000010638405027857025;173,0.0000062992046517132515;174,0.000002530110570929381;175,0.0000011323456905409147;176,0;177,0;178,0;179,0.0000037851084465216032;180,0.0000006308514077536006;181,0;182,0;183,0;184,0.0000014543518078116005;185,0.00000166084597168287;186,0.000013176292769451166;187,0.000003824940432076508;188,0.0000010443619774117022;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.00018623197384408775;2,0.00021945645744068557;3,0.0003000195849587517;4,0.0003828934378397391;5,0.00043285506730830726;6,0.00045371404761143435;7,0.00046589219479439793;8,0.000495619364328196;9,0.0005168530568523374;10,0.0005099833328004093;11,0.0005161660844471445;12,0.0005528878821065421;13,0.0005677514668734412;14,0.0005858625575557972;15,0.0006135288098740168;16,0.0006388218847924794;17,0.0006402582816397006;18,0.0006416322264500864;19,0.0006634279873057494;20,0.0006979639636758969;21,0.0006991505523757754;22,0.0007066447967960606;23,0.0007071444130907461;24,0.0007393072120611371;25,0.0007564815221909574;26,0.0007620397534693355;27,0.0007743428047259705;28,0.0007801508441516915;29,0.000819682983468696;30,0.000852470302807444;31,0.0008745783238472853;32,0.0008836338691884632;33,0.0008997464946920766;34,0.0008945629756347126;35,0.0009343449230990599;36,0.0009571399165440941;37,0.0009523311097077445;38,0.0009371552647566668;39,0.000963822284485515;40,0.0010223398430005755;41,0.0010199666656008186;42,0.0010453221925561169;43,0.0010331440453731533;44,0.0010213406104112041;45,0.001029958991494532;46,0.0010626214067596088;47,0.0011376263029992965;48,0.0011533642162818956;49,0.0011581105710814095;50,0.001156923982381531;51,0.0011845902346997506;52,0.0012065733516659208;53,0.0012059488312975634;54,0.0012358009049050329;55,0.0012428579850674681;56,0.001228931180853105;57,0.0012510392018929462;58,0.0012731472229327878;59,0.0012875736434418367;60,0.0013222345238856556;61,0.0013154897039073991;62,0.0013296038642322697;63,0.0013168636487177847;64,0.0012896970126942508;65,0.0012813284397582656;66,0.0012968165448935217;67,0.0012727100586749376;68,0.0012395480271151756;69,0.0012070105159237704;70,0.0012013898326085567;71,0.0011973304502142354;72,0.0011709132386327299;73,0.0011932710678199143;74,0.0011612331729231949;75,0.001150616326661124;76,0.0011257604160005116;77,0.0011064002845814415;78,0.0011072121610603055;79,0.0010836052911364074;80,0.0010637455434226516;81,0.0010310206761207392;82,0.0010550647103024875;83,0.0010606853936177016;84,0.0010418873305301527;85,0.001013221845622562;86,0.0009893027155144847;87,0.0009696927759480719;88,0.0009436502765875807;89,0.0009379046891986954;90,0.0009132361346485899;91,0.0009184196537059539;92,0.0009031189046812048;93,0.0008661472988744643;94,0.0008421657167295518;95,0.000820557311984396;96,0.0007882696089403339;97,0.0007825864735882843;98,0.0007587922475538786;99,0.0007359348020720087;100,0.0007351853776299802;101,0.0007435539505659654;102,0.0007166371226897741;103,0.0006876593775980048;104,0.0006807896535460766;105,0.0006882838979663619;106,0.0006551843184434355;107,0.0006111556324742598;108,0.000599477101585982;109,0.0005839265444138901;110,0.0005864246258873184;111,0.000588485543102897;112,0.0005780560529513334;113,0.000557259524685042;114,0.000535900928087229;115,0.0005029887046748098;116,0.00048100558770863974;117,0.0004554627046428344;118,0.0004443462420860779;119,0.0004228002893777579;120,0.00041118421052631577;121,0.00038664056004988163;122,0.00036509460734156164;123,0.00035635132218456226;124,0.00033917701205474194;125,0.00032387626302999293;126,0.00031232263621538655;127,0.00028677975314958114;128,0.0002676069778410181;129,0.0002510571880795549;130,0.0002463108332800409;131,0.00022857445481869925;132,0.00019816031287970838;133,0.000184233508665345;134,0.0001596898581889109;135,0.00015400672283686126;136,0.0001350837556756411;137,0.00011360025500415681;138,0.00010379528522095032;139,0.00008293630491782311;140,0.00006107809202532455;141,0.000041468152458911554;142,0.00002604249936049114;143,0.000009929873856877917;144,0.0000023107253629212763;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.00000939903154377438;171,0.00000469951577188719;172,0.000005054129272815758;173,0.000007502219273404876;174,0.00000157507163085275;175,0.0000002654191898475515;176,0;177,0;178,0;179,0.0000012617028155072013;180,0.0000006308514077536006;181,0.0000006308514077536006;182,0;183,0;184,0.0000004847839359372002;185,0.000002370072973540005;186,0.000009626383286016453;187,0.0000024259649537362393;188,0.0000013816029763245371;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "ad_astra:venus_calorite_ore", + "distrib": "0,0;1,0.0002524311328899405;2,0.00029377438127518065;3,0.0003882643130076102;4,0.0005140427151947304;5,0.0005806165864615974;6,0.000606596633785253;7,0.000630265955745987;8,0.0006475027179126431;9,0.0006579946601010424;10,0.0006780417639253055;11,0.0007180110675001598;12,0.0007315631594935091;13,0.0007512980031335934;14,0.000788456965050841;15,0.0008091910412802967;16,0.0008481611122657798;17,0.0008572166576069579;18,0.0008748281319946281;19,0.0008855698823303703;20,0.0009246024053526892;21,0.0009442747969559378;22,0.0009764375959263286;23,0.0010069766419389908;24,0.0010220900348532327;25,0.0010396390572040672;26,0.001066181172859244;27,0.001082606058547036;28,0.0010861658246466713;29,0.0011149562136279338;30,0.0011491799298139027;31,0.0011524274357293599;32,0.0011732239639956512;33,0.001180655756379101;34,0.001211694418686449;35,0.0012471671756091323;36,0.0012575966657606959;37,0.0012804541112425658;38,0.0013038736250559572;39,0.0013285421796060625;40,0.0013502754884248897;41,0.0013818137670269233;42,0.0013982386527147152;43,0.0014353351625951269;44,0.001461627470102961;45,0.001480800245411524;46,0.0015168975227025645;47,0.0015350086133849201;48,0.0015649231390292256;49,0.0015712307947496325;50,0.0015782878749120675;51,0.0016136357277610795;52,0.001590653378205538;53,0.0015900288578371813;54,0.0016828325845750461;55,0.0016998195385943596;56,0.0017036291128413377;57,0.0017099992205985804;58,0.0017168689446505087;59,0.001711060905224787;60,0.0017623964795037412;61,0.0017971822640212318;62,0.0018180412443243588;63,0.00175746276859372;64,0.0017533409341625632;65,0.0017778221326021615;66,0.0017319823375647504;67,0.0017056900300569163;68,0.0017042536332096952;69,0.001659038358540641;70,0.0016472349235786918;71,0.0016241276699494789;72,0.0015756648893649676;73,0.0015656101114344184;74,0.001572354931412675;75,0.0015448760352049628;76,0.0015162730023342073;77,0.0014879822296476307;78,0.001449574226993669;79,0.0014635010312080321;80,0.0014645627158342395;81,0.0014584424162243398;82,0.001414663538402507;83,0.0013704474963228239;84,0.0013618915672763317;85,0.0013603927183922747;86,0.0013203609627805847;87,0.0013040609811664642;88,0.0012852629180789153;89,0.0012697123609068236;90,0.0012354886447208543;91,0.0011912101506043357;92,0.0011463695881562957;93,0.001170288718264373;94,0.0011744105526955298;95,0.0011385630835518323;96,0.0010945968496194924;97,0.0010754240743109293;98,0.0010633708312016371;99,0.00104338617941421;100,0.0010268988416895822;101,0.00101878007690094;102,0.001003729136023534;103,0.0009645717089275436;104,0.0009342824710622242;105,0.0009146100794589754;106,0.0008866315669565773;107,0.0008538442476178295;108,0.0008238672699366887;109,0.0008133128757114535;110,0.0007812125287778985;111,0.0007800259400780201;112,0.0007814623369252415;113,0.0007296895983884377;114,0.0007000873329283112;115,0.0006905321712924475;116,0.0006653015484108205;117,0.0006348249544349939;118,0.000597103924186225;119,0.0005818656271983117;120,0.0005650660292895056;121,0.000547766815086014;122,0.0005148545916735947;123,0.0004888745443499393;124,0.00046027151147918404;125,0.0004417857085758138;126,0.0004276090962141076;127,0.000406625211837309;128,0.0003716520712093112;129,0.00033911456001790624;130,0.00032874752190317834;131,0.0002934621210910021;132,0.00026973034709343226;133,0.00024968324326916924;134,0.00022270396335614246;135,0.00020590436544733645;136,0.00018492048107053783;137,0.0001681833351985675;138,0.0001410791512118693;139,0.00010698033909957154;140,0.00008343592121250879;141,0.00005764322999936049;142,0.00004140570042207585;143,0.000017486570313998848;144,0.000002373177399756987;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "blue_skies:ventium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002024300658708147;66,0.0019447055385642354;67,0.001969749532560769;68,0.0019539316600556762;69,0.0019712749595886515;70,0.001959172456080307;71,0.001988495087677352;72,0.0019848253142781707;73,0.0019287469374043118;74,0.001959556931737794;75,0.0019304116494779139;76,0.0019151198516274125;77,0.0019481499601433317;78,0.001922443664913819;79,0.001960667578280979;80,0.0019846386365634334;81,0.0019962862272537942;82,0.001933867099917358;83,0.0018505271047639313;84,0.0017628835411678018;85,0.00163209600157728;86,0.001492214075439282;87,0.001391927464696747;88,0.001318085031837806;89,0.0012971254559789062;90,0.001289864887912489;91,0.0012648152714108863;92,0.0012838807924364795;93,0.0012981658282570886;94,0.0013043078634455574;95,0.0013137744333058875;96,0.0012933706370348058;97,0.0012551461462240018;98,0.001248274424322076;99,0.001182243666836019;100,0.0011217262880124038;101,0.0010500662068188003;102,0.001008207307638378;103,0.0010200405652560475;104,0.0010179828735447775;105,0.0009629643762066832;106,0.0009816484487160649;107,0.0009969048110533758;108,0.0009809017905893123;109,0.0009899156446324321;110,0.000994741593865546;111,0.0009960650638945565;112,0.0009943978175429706;113,0.000986785510070375;114,0.0009771392064378674;115,0.0009766024558631667;116,0.000978357534734512;117,0.000992145326836775;118,0.0009680489700707973;119,0.0009792628786559738;120,0.0009592662229664719;121,0.0009535518437940884;122,0.0009369660876704528;123,0.0009127721486716818;124,0.0008611052898317704;125,0.0007579347219097302;126,0.0003705861361038578;127,0.00005562284118944856;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:falsite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0020275886760736605;66,0.0020011767849124626;67,0.0019695076035136008;68,0.0020031955942001072;69,0.001979600890817052;70,0.00199294785742901;71,0.0019384598762582402;72,0.0019371121781349091;73,0.0019453650961567528;74,0.0019799409335957744;75,0.0019634071004110496;76,0.001977629298772507;77,0.0019292728977187963;78,0.001939115856415087;79,0.0019163282949868784;80,0.0019670433705926355;81,0.001981811491798183;82,0.0019246114123715428;83,0.0018278485809853353;84,0.001729242472737362;85,0.0016155755299999222;86,0.0015227219440530208;87,0.0014095716776310737;88,0.0013646276202744414;89,0.0013304974936242603;90,0.0013049937845252572;91,0.0012969388926042762;92,0.0012936500508413714;93,0.0013071151349604644;94,0.001308124008888677;95,0.0013126839576105853;96,0.00131983402823315;97,0.0012799066341867686;98,0.0012504821203335528;99,0.0011883439527445776;100,0.0011569549782236156;101,0.0010875288599399972;102,0.0010292922801357774;103,0.0009906464945867934;104,0.0009906155595837422;105,0.0010052675838128095;106,0.0009982426868916415;107,0.000979130707757721;108,0.0009946289547636197;109,0.0010197650317037002;110,0.0010075915673676114;111,0.00100044211230206;112,0.0010117784838405302;113,0.0010053545204073483;114,0.0009736515935360525;115,0.0009448285102109219;116,0.0009866858107182527;117,0.0009685014645172072;118,0.0009631759054042679;119,0.0009772061945995262;120,0.0009591533729357642;121,0.0009506236949464552;122,0.000941658486614619;123,0.0009268080327006594;124,0.0008802376418666385;125,0.0007511567275693258;126,0.00036603392387374214;127,0.00006443636457813806;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_aquite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002740027523785108;66,0.0026521797377941094;67,0.00263126094898308;68,0.00260310960021079;69,0.0026409414523158436;70,0.002624862915171196;71,0.0025673918810174895;72,0.0025894233713610205;73,0.0025679482317837402;74,0.0025843049443115135;75,0.002595932675326155;76,0.0025644432219563604;77,0.002558100823221102;78,0.0025937629073377773;79,0.0025778512754230046;80,0.0025888113855181455;81,0.0025821908113997606;82,0.002572510308066997;83,0.0025237739809434285;84,0.002451837826867202;85,0.0023517503240186866;86,0.002312638865151256;87,0.002275641539195579;88,0.002237253336324275;89,0.002224512903777132;90,0.0022114386607702385;91,0.0022419266827607815;92,0.002185790890446077;93,0.002215889466900245;94,0.0022107154047741125;95,0.002248602891955791;96,0.002234471582493021;97,0.002199032038682846;98,0.00220531880234148;99,0.0021506851570956527;100,0.0021120187788412235;101,0.0021057320151825895;102,0.0020864822786703127;103,0.0020742425618127955;104,0.0020615577643422777;105,0.0020630042763345293;106,0.002054714649917393;107,0.0020720171587477925;108,0.0020644507883267817;109,0.0020784151925596767;110,0.0020627817360280294;111,0.0020552153656070186;112,0.0020672881772346606;113,0.002076746140260924;114,0.002071572078134792;115,0.0021074010674813418;116,0.001957186360593631;117,0.0010693618078106307;118,0.00016245442374522874;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_charoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0009155864560189142;66,0.0008784778599099869;67,0.0008854322444881217;68,0.0008646803609069674;69,0.0008708558544123512;70,0.0008882139983193756;71,0.0008967818001196378;72,0.0008774207934541104;73,0.0008660156027459694;74,0.0008695206125733493;75,0.0007868468887084828;76,0.00043228454537685865;77,0.00007249250484247706;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0.0001142946235451734;69,0.00010371128324858882;70,0.00011112661314475753;71,0.00011074711431424362;72,0.00012130049137095916;73,0.00011278124057771647;74,0.0001169934524793038;75,0.00013271786609329089;76,0.00011404795976816928;77,0.00010302724535165712;78,0.00011561163146424822;79,0.00010737199509363455;80,0.00011493224274599688;81,0.00010739261774986387;82,0.00011150262069239652;83,0.00011464838309860147;84,0.0001035856898389041;85,0.00010932256111008402;86,0.00010668768082546171;87,0.00010764306771284058;88,0.00011328255090712082;89,0.00010757240923509674;90,0.00011511775499827439;91,0.00011609109886489182;92,0.00010180990294997579;93,0.00010943338471872406;94,0.00010063235720933692;95,0.0001112315197437779;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_diopside_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006542685011109212;66,0.0006374110728935224;67,0.0006228903178943771;68,0.0006209430902124992;69,0.0006004693820144704;70,0.0006090928188913576;71,0.0006235579388138779;72,0.0006072568613627301;73,0.0006072568613627299;74,0.0005969087371104654;75,0.0006031398656924742;76,0.0006068117807497294;77,0.0006136548951746138;78,0.0006060328896769784;79,0.0006074794016692304;80,0.000610817506266735;81,0.0005506203533584002;82,0.0002953666218025409;83,0.000051017365265196835;84,0.00000033381045975047005;85,0.00000022254030650031333;86,0.0000007232559961260181;87,0.00000033381045975046994;88,0.00000027817538312539163;89,0.000000500715689625705;90,0.00000027817538312539163;91,0.0000002781753831253917;92,0.00000022254030650031333;93,0.00000033381045975047;94,0.0000007232559961260182;95,0.0000003894455363755483;96,0.0000005007156896257049;97,0.00000038944553637554835;98,0.0000002781753831253917;99,0.00000027817538312539163;100,0.00000044508061300062666;101,0.000000166905229875235;102,0.0000002781753831253917;103,0.00000033381045975046994;104,0.0000003338104597504699;105,0.0000002781753831253917;106,0.00000016690522987523497;107,0.00000038944553637554835;108,0.00000016690522987523497;109,0.00000011127015325015666;110,0.00000016690522987523497;111,0.00000011127015325015665;112,0.00000005563507662507833;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:horizonite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0013012241242756767;66,0.0012333201248605947;67,0.0012069823025720676;68,0.0012024537363317165;69,0.0012117497451182477;70,0.0011874388557016565;71,0.0012006827947912413;72,0.0011625981924950467;73,0.0011657928684984478;74,0.0011893933491310196;75,0.001178948450785278;76,0.001190217130471962;77,0.0011862331543022837;78,0.001158702109515691;79,0.0011532391131005154;80,0.0011944154308057334;81,0.001187786255951053;82,0.0011994767263653597;83,0.0012004678911116074;84,0.0012068460391512913;85,0.0011999475827420853;86,0.0011231837952050555;87,0.0005901876090230997;88,0.00006528580615427083;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0.00000016690047568860917;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_aquite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0027259854694220527;66,0.0026583351432762697;67,0.0026393084890477684;68,0.0026217283056085682;69,0.002605650226450565;70,0.0026342458412852137;71,0.0026418676296749936;72,0.002610212172786054;73,0.0025889601788817045;74,0.0026089326024724413;75,0.0025727708327399094;76,0.002545399154726977;77,0.002566039180220469;78,0.002548180829321787;79,0.0025686539543395906;80,0.002541671710769932;81,0.00254228367918079;82,0.0025343280898396333;83,0.002558918093257755;84,0.0025588624597658585;85,0.00257026732560458;86,0.0025768877111402282;87,0.002586957373173441;88,0.0025742729370211064;89,0.002561866668328254;90,0.0025596413286524053;91,0.002586178504286894;92,0.002559474428176717;93,0.0025726039322642212;94,0.002572993366707494;95,0.0025551350158088135;96,0.0025470125259919674;97,0.0025629793381661773;98,0.00256954409020993;99,0.0025790017838322843;100,0.002575051805907654;101,0.0026098227383427805;102,0.002597694637109409;103,0.0026073192312074515;104,0.0025983622390121624;105,0.0025866792057139603;106,0.0026192804319651354;107,0.002621895206084257;108,0.0026440929693508416;109,0.0026333557054148745;110,0.00262067126926254;111,0.0026553865682057715;112,0.002654218264875951;113,0.0026598928810493633;114,0.002621617038624776;115,0.0026231747763978694;116,0.0024499320826330932;117,0.001311114503517817;118,0.00019488412211239923;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_charoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0009152822086763324;66,0.0008929731784259548;67,0.0008837380187711853;68,0.0008654345999373344;69,0.0008903027708149372;70,0.0008590923818611672;71,0.0008568670421853191;72,0.0008692733108781724;73,0.0008623747578830434;74,0.0008570895761529039;75,0.0007863237744609338;76,0.00042765465220611276;77,0.00007382564374626144;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0.00014422438864620466;69,0.00011988284720848758;70,0.00016107983631492167;71,0.00013593160272981132;72,0.00014069141218961542;73,0.00014245421075963699;74,0.00014314878117134956;75,0.00016033510855332809;76,0.00013626358176647594;77,0.00016293130888334984;78,0.00013788694864619582;79,0.00015875086697681297;80,0.00013850264342579516;81,0.00014624353874940279;82,0.00014750629977595365;83,0.00014797842228755329;84,0.00016130542532039304;85,0.00014823207303789706;86,0.0001558534009625048;87,0.00013833234840395013;88,0.0001470933277671521;89,0.0001424956756354172;90,0.0001376871243310926;91,0.00016073294013070432;92,0.00014350590351748516;93,0.00014278994263078825;94,0.00014564858496092455;95,0.00013592428734860923;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_diopside_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006418992294983906;66,0.0006020656493007093;67,0.0006175873935397499;68,0.0006229282087617854;69,0.000624485946534879;70,0.0006086860348363573;71,0.0006171979590964764;72,0.0006076846319822257;73,0.0006135817821232232;74,0.0006252091819295298;75,0.000589937548067337;76,0.0006048473238955193;77,0.0006032339526305295;78,0.0006183662624262968;79,0.0006004522780357194;80,0.0006010642464465777;81,0.0005662933140114508;82,0.0003101567173213319;83,0.000052629283333808076;", + "silktouch": false, + "dim": "blue_skies:everdawn" + } +] \ No newline at end of file diff --git a/config/worldplaytime/config.json b/config/worldplaytime/config.json new file mode 100644 index 0000000..e8894b2 --- /dev/null +++ b/config/worldplaytime/config.json @@ -0,0 +1,8 @@ +{ + "showServerPlayTime": false, + "serverPlayTimePosition": "after_name", + "serverPlayTimeColor": "(128, 128, 128, 255)", + "showWorldPlayTime": true, + "worldPlayTimePosition": "top_right", + "worldPlayTimeColor": "(128, 128, 128, 255)" +} \ No newline at end of file diff --git a/config/wormhole-common.toml b/config/wormhole-common.toml new file mode 100644 index 0000000..9971f87 --- /dev/null +++ b/config/wormhole-common.toml @@ -0,0 +1,90 @@ +# Power consumption will be calculated as follows: +#Idle power drain = idlePowerDrain + portal size * sizePowerDrain +#Interdimensional teleport power drain = travelPowerDrain + dimensionPowerDrain +#Same dimension teleport power drain = travelPowerDrain + (target distance)^(1/2) * distancePowerDrain +["Power Consumption"] + # If false, a portal will not require power. + # Allowed values: true, false - Default: true + requirePower = true + + # How much power will a portal drain per tick when idle? + # Allowed range: 0 ~ 1000000 - Default: 1 + idlePowerDrain = 1 + + # How much idle power does the portal drain per block of its size? + # Allowed range: 0.0 ~ 1000000.0 - Default: 0.5 + sizePowerDrain = 0.5 + + # How much power will be drained when an entity is teleported? + # Allowed range: 0 ~ 1000000 - Default: 100 + travelPowerDrain = 100 + + # How much energy is drained when an entity is teleported multiplied by the distance? + # Allowed range: 0.0 ~ 1000000.0 - Default: 0.5 + distancePowerDrain = 0.5 + + # How much energy is drained when an entity is teleported to another dimension? + # Allowed range: 0 ~ 1000000 - Default: 400 + dimensionPowerDrain = 400 + +[General] + # If true, a portal will require frame blocks at its corners. Previously build portals won't be affected. + # Allowed values: true, false - Default: false + requireCorners = false + + # How big can the area inside a portal be? Higher numbers can impact performance when activating a portal. Previously build portals won't be affected. + # Allowed range: 1 ~ 2000 - Default: 400 + maxPortalSize = 400 + + # Does a portal require a dimensional core for interdimensional travel? (WIP) + # Allowed values: true, false - Default: true + requireDimensionalCore = true + +["Target Devices"] + # The maximum number of targets that can be stored in the basic target definition device. + # Allowed range: 1 ~ 10 - Default: 1 + basicDeviceTargetCount = 1 + + # The maximum number of targets that can be stored in the advanced target definition device. + # Allowed range: 1 ~ 10 - Default: 5 + advancedDeviceTargetCount = 5 + +["Energy Cells"] + # The amount of energy the portal stabilizer can store. + # Allowed range: 1 ~ 1000000 - Default: 5000 + stabilizerEnergyCapacity = 5000 + + # The amount of energy the basic energy cell can store. + # Allowed range: 1 ~ 1000000 - Default: 10000 + basicEnergyCellCapacity = 10000 + + # The amount of energy the advanced energy cell can store. + # Allowed range: 1 ~ 1000000 - Default: 25000 + advancedEnergyCellCapacity = 25000 + +["Target Cells"] + # The number of targets the portal stabilizer can store. + # Allowed range: 1 ~ 20 - Default: 1 + stabilizerTargetCapacity = 1 + + # The number of targets the basic target cell can store. + # Allowed range: 1 ~ 20 - Default: 4 + basicTargetCellCapacity = 4 + + # The number of targets the advanced target cell can store. + # Allowed range: 1 ~ 20 - Default: 8 + advancedTargetCellCapacity = 8 + +[Generators] + # How much energy does the coal generator generate per tick? + # Allowed range: 1 ~ 1000000 - Default: 10 + coalGeneratorPower = 10 + + # How much energy can the coal generator store? + # Allowed range: 1 ~ 1000000 - Default: 5000 + coalGeneratorCapacity = 5000 + + # In what area (coalGeneratorRange^3) should the coal generator send energy? + # Allowed range: 1 ~ 4 - Default: 2 + coalGeneratorRange = 2 + diff --git a/config/wstweaks.cfg b/config/wstweaks.cfg new file mode 100644 index 0000000..1665d17 --- /dev/null +++ b/config/wstweaks.cfg @@ -0,0 +1,48 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +general { + # The chance for a skull shard to drop. 1 = 100%, 0.5 = 50%, etc + # Default: 1.0; Range: [0.0 ~ 1.0] + S:"Shard Drop Chance"=1.0 + + # If skeletons in ALL biomes are converted, instead of just the nether. + # Default: false + B:"Convert All Biomes"=false + + # The chance for skeletons to be converted in all biomes, when enabled. 1 = 100%, 0.5 = 50%, etc + # Default: 0.15; Range: [0.0 ~ 1.0] + S:"All Biomes Chance"=0.15 + + # If stone swords and other trash are removed from wither skeleton drop tables. + # Default: true + B:"Delete Swords"=true + + # If converted skeletons receive bows (Wither Skeletons always shoot flaming arrows). + # Default: true + B:"Give Bows"=true +} + + +blades { + # [Unsynced] + # [Requires Restart] + # The durability of immolation blades. + # Default: 4096; Range: [1 ~ 65536] + I:Durability=4096 + + # [Unsynced] + # [Requires Restart] + # The attack damage of immolation blades. This is a modifier, so the real value is always 1 higher. + # Default: 11.0; Range: [1.0 ~ 4096.0] + S:"Attack Damage"=11.0 + + # [Unsynced] + # [Requires Restart] + # The attack speed of immolation blades. This is a modifier, so the real value is a bit different. + # Default: -2.0; Range: [-4096.0 ~ 4096.0] + S:"Attack Speed"=-2.0 +} + + diff --git a/config/xaero/lib/client.cfg b/config/xaero/lib/client.cfg new file mode 100644 index 0000000..13b80b8 --- /dev/null +++ b/config/xaero/lib/client.cfg @@ -0,0 +1 @@ +current_profile = default diff --git a/config/xaero/lib/common.cfg b/config/xaero/lib/common.cfg new file mode 100644 index 0000000..d9bc3cb --- /dev/null +++ b/config/xaero/lib/common.cfg @@ -0,0 +1,5 @@ +default_enforced_profile = default +enforced_profile_permission_node = xaero.lib.enforced_server_profile +allow_internet_access = true +everyone_tracks_everyone = false +edit_server_profiles_permission_node = xaero.lib.edit_server_profiles diff --git a/config/xaero/lib/profiles/default.cfg b/config/xaero/lib/profiles/default.cfg new file mode 100644 index 0000000..f0fa9f0 --- /dev/null +++ b/config/xaero/lib/profiles/default.cfg @@ -0,0 +1,6 @@ +############ +## Client Config Profile "default" +## + +profile_name = Default +ignore_enforcement_if_edit_permission = false diff --git a/config/xaero/lib/server_profiles/default.cfg b/config/xaero/lib/server_profiles/default.cfg new file mode 100644 index 0000000..79fc867 --- /dev/null +++ b/config/xaero/lib/server_profiles/default.cfg @@ -0,0 +1,5 @@ +############ +## Server Config Profile "default" +## + +profile_name = Default diff --git a/config/xaero/minimap/client.cfg b/config/xaero/minimap/client.cfg new file mode 100644 index 0000000..7e62b83 --- /dev/null +++ b/config/xaero/minimap/client.cfg @@ -0,0 +1,8 @@ +current_profile = default +update_notifications = true +ignored_update = 0 +allow_wrong_world_teleport = false +differentiate_by_server_address = true +debug_entity_icons = false +debug_entity_variant_ids = false +waypoint_mutual_edit = true diff --git a/config/xaero/minimap/common.cfg b/config/xaero/minimap/common.cfg new file mode 100644 index 0000000..4219acc --- /dev/null +++ b/config/xaero/minimap/common.cfg @@ -0,0 +1,3 @@ +default_enforced_profile = default +enforced_profile_permission_node = xaero.minimap.enforced_server_profile +register_minimap_status_effects = true diff --git a/config/xaero/minimap/default_radar_categories_client.json b/config/xaero/minimap/default_radar_categories_client.json new file mode 100644 index 0000000..f7ab2ff --- /dev/null +++ b/config/xaero/minimap/default_radar_categories_client.json @@ -0,0 +1,191 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:glow_item_frame", + "minecraft:item_frame" + ], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": { + "displayed": true, + "displayHeight": 0.0, + "heightBasedFade": true, + "renderOrder": 0.0, + "color": 13.0, + "displayNameWhenIconFails": true, + "entityNumber": 1000.0, + "alwaysDisplayNametags": false, + "startFadingAt": 0.0, + "dotSize": 2.0, + "renderOverMinimapFrame": 1.0, + "icons": 1.0, + "heightLimit": 20.0, + "names": 0.0, + "iconScale": 1.0 + }, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": { + "renderOrder": 2.0, + "color": 14.0 + }, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": { + "renderOrder": 6.0, + "heightLimit": 2050.0, + "color": 15.0 + }, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": { + "icons": 2.0 + }, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": { + "renderOrder": 7.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": { + "renderOrder": 3.0 + }, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 5.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 4.0 + }, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": { + "renderOrder": 1.0, + "color": 12.0 + }, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": { + "color": 5.0 + }, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/config/xaero/minimap/default_radar_categories_server.json b/config/xaero/minimap/default_radar_categories_server.json new file mode 100644 index 0000000..09fe5a8 --- /dev/null +++ b/config/xaero/minimap/default_radar_categories_server.json @@ -0,0 +1,150 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/config/xaero/minimap/profiles/default.cfg b/config/xaero/minimap/profiles/default.cfg new file mode 100644 index 0000000..6604038 --- /dev/null +++ b/config/xaero/minimap/profiles/default.cfg @@ -0,0 +1,121 @@ +############ +## Client Config Profile "default" +## + +profile_name = Default +ignore_enforcement_if_edit_permission = false +display_minimap = true +minimap_item = - +minimap_safe_mode = false +minimap_ui_scale = 1 +entity_radar_categories = This option's value is saved to sub-folder "entity_radar_categories". +display_radar = true +radar_dots_style = 0 +radar_smooth_dots = true +radar_name_scale = 1.0 +radar_main_entity = 0 +radar_main_dot_size = 2 +radar_hide_invisible_entities = true +minimap_arrow_scale = 1.5 +minimap_arrow_color = 0 +minimap_arrow_opacity = 100 +tracked_players_on_minimap = true +tracked_players_in_world = true +tracked_player_minimap_icon_scale = 0 +tracked_player_world_icon_scale = 0 +tracked_player_world_name_scale = 0 +waypoints_in_world = true +waypoints_on_minimap = true +waypoints_all_sets = false +deathpoints = true +old_deathpoints = true +delete_reached_deathpoints = true +switch_auto_waypoints_on_death = true +waypoint_icon_scale_in_world = 0 +waypoint_name_scale_in_world = 0 +waypoint_close_scale_in_world = 1.0 +waypoint_distance_scale_in_world = 0 +multiple_waypoints_info = 1 +waypoint_distance_in_world = 1 +waypoint_distance_in_menu = true +waypoint_name_in_world = true +waypoint_short_distance_in_world = false +waypoint_vertical_pointing_angle = 180 +waypoint_horizontal_pointing_angle = 10 +waypoint_max_distance = 0 +waypoint_max_distance_dimension_scale = true +waypoint_min_distance_in_world = 0.0 +waypoint_convert_distance_to_km_at = 10000 +waypoint_distance_precision = 1 +waypoint_opacity_in_world = 80 +waypoint_opacity_on_minimap = 90 +waypoint_icon_scale_on_minimap = 0 +temporary_waypoints_global = true +default_waypoint_teleport_format = /tp @s {x} {y} {z} +default_waypoint_teleport_rotation_format = /tp @s {x} {y} {z} {yaw} ~ +waypoint_teleport_cross_dimension = true +waypoint_partial_y_teleport = true +new_waypoints_to_bottom = false +hide_world_names = 1 +minimap_compass_over_everything = true +hide_waypoint_coordinates = false +minimap_compass_location = 1 +minimap_compass_shadow_color = 9 +minimap_compass_north_shadow_color = -1 +minimap_compass_scale = 0 +minimap_block_colors = 0 +minimap_biomes_in_vanilla_colors = false +minimap_cave_mode_allowed = true +minimap_auto_cave_mode = 2 +minimap_cave_mode_allowed_dimensions = [] +minimap_manual_cave_mode_start = 2147483647 +minimap_cave_mode_depth = 30 +minimap_legible_cave_maps = false +minimap_cave_mode_toggle_timer = 1000.0 +minimap_biome_blending = true +minimap_display_world_map_chunks = true +minimap_terrain_depth = true +minimap_terrain_slopes = 2 +minimap_display_redstone = true +minimap_display_flowers = true +minimap_block_transparency = true +minimap_display_stained_glass = true +minimap_adjust_height_for_short_blocks = true +minimap_anti_aliasing = true +minimap_size = 0 +minimap_shape = 1 +minimap_north_locked = true +minimap_zoom = 3 +minimap_further_zoomout = false +minimap_cave_mode_extra_zoom = 2 +minimap_enlarged_zoom = 0 +minimap_centered_when_enlarged = false +keep_enlarged_minimap_unlocked = false +minimap_toggled_enlarged = false +minimap_lighting = false +minimap_opacity = 50 +minimap_frame = 0 +minimap_frame_color = 0 +hide_minimap_under_screen = true +hide_minimap_under_f3 = true +boss_health_push_box = 1 +potion_effect_push_box = 1 +minimap_chunk_grid = -1 +minimap_chunk_grid_line_width = 1 +minimap_slime_chunks = false +minimap_open_slime_chunks_screen = true +minimap_light_overlay_type = 0 +minimap_light_overlay_max_light = 7 +minimap_light_overlay_min_light = 0 +minimap_light_overlay_color = 13 +minimap_display_opac_claims = true +minimap_opac_claim_fill_opacity = 46 +minimap_opac_claim_border_opacity = 80 +minimap_display_opac_current_claim = true +minimap_info_display_background_opacity = 40 +minimap_info_display_alignment = 0 +info_display_config = This option's value is saved to sub-folder "info_display_config". +hud_render_layer = 1 +minimap_undiscovered_opacity = 50 +discovered_waystone_waypoints = true +other_waystone_waypoints = true diff --git a/config/xaero/minimap/profiles/entity_radar_categories/default.cfg.json b/config/xaero/minimap/profiles/entity_radar_categories/default.cfg.json new file mode 100644 index 0000000..7f813b6 --- /dev/null +++ b/config/xaero/minimap/profiles/entity_radar_categories/default.cfg.json @@ -0,0 +1,191 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:glow_item_frame", + "minecraft:item_frame" + ], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": { + "displayed": true, + "displayHeight": 0.0, + "heightBasedFade": true, + "renderOrder": 0.0, + "color": 13.0, + "displayNameWhenIconFails": true, + "entityNumber": 1000.0, + "alwaysDisplayNametags": false, + "startFadingAt": 0.0, + "dotSize": 2.0, + "renderOverMinimapFrame": 1.0, + "icons": 1.0, + "names": 0.0, + "heightLimit": 20.0, + "iconScale": 1.0 + }, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": { + "renderOrder": 2.0, + "color": 14.0 + }, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": { + "renderOrder": 6.0, + "heightLimit": 2050.0, + "color": 15.0 + }, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": { + "icons": 2.0 + }, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": { + "renderOrder": 7.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": { + "renderOrder": 3.0 + }, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 5.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 4.0 + }, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": { + "renderOrder": 1.0, + "color": 12.0 + }, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": { + "color": 5.0 + }, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/config/xaero/minimap/profiles/info_display_config/default.cfg.txt b/config/xaero/minimap/profiles/info_display_config/default.cfg.txt new file mode 100644 index 0000000..14d1ace --- /dev/null +++ b/config/xaero/minimap/profiles/info_display_config/default.cfg.txt @@ -0,0 +1,15 @@ +infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world +infoDisplay:coords:true:15:-1 +infoDisplay:overworld_coords:false:15:-1 +infoDisplay:chunk_coords:false:15:-1 +infoDisplay:angles:false:15:-1 +infoDisplay:dimension:false:15:-1 +infoDisplay:biome:false:15:-1 +infoDisplay:weather:false:15:-1 +infoDisplay:light_level:0:15:-1 +infoDisplay:time:0:15:-1 +infoDisplay:real_time:0:15:-1 +infoDisplay:highlights:true:15:-1 +infoDisplay:light_overlay_indicator:true:15:-1 +infoDisplay:manual_cave_mode_indicator:true:15:-1 +infoDisplay:custom_sub_world:true:15:-1 diff --git a/config/xaero/minimap/server_profiles/default.cfg b/config/xaero/minimap/server_profiles/default.cfg new file mode 100644 index 0000000..79fc867 --- /dev/null +++ b/config/xaero/minimap/server_profiles/default.cfg @@ -0,0 +1,5 @@ +############ +## Server Config Profile "default" +## + +profile_name = Default diff --git a/config/xaero/world-map/client.cfg b/config/xaero/world-map/client.cfg new file mode 100644 index 0000000..240527c --- /dev/null +++ b/config/xaero/world-map/client.cfg @@ -0,0 +1,18 @@ +current_profile = default +ignored_update = 0 +update_notifications = true +reload_viewed = false +reload_viewed_version = 0 +debug = false +cave_mode_start_y = 2147483647 +png_export_in_multiple_images = false +png_export_night = false +png_export_scale_down_square = 20 +png_export_highlights = false +differentiate_by_server_address = true +display_disabled_waypoints = false +close_waypoints_after_hopping = true +only_display_current_map_waypoints = false +global_version = 1 +max_loaded_regions = 300 +ignore_map_file_locks = false diff --git a/config/xaero/world-map/common.cfg b/config/xaero/world-map/common.cfg new file mode 100644 index 0000000..f34b48c --- /dev/null +++ b/config/xaero/world-map/common.cfg @@ -0,0 +1,3 @@ +default_enforced_profile = default +enforced_profile_permission_node = xaero.world_map.enforced_server_profile +register_status_effects = true diff --git a/config/xaero/world-map/profiles/default.cfg b/config/xaero/world-map/profiles/default.cfg new file mode 100644 index 0000000..58b0368 --- /dev/null +++ b/config/xaero/world-map/profiles/default.cfg @@ -0,0 +1,59 @@ +############ +## Client Config Profile "default" +## + +profile_name = Default +ignore_enforcement_if_edit_permission = false +lighting = true +block_colors = 0 +load_new_chunks = true +update_chunks = true +terrain_depth = true +terrain_slopes = 2 +footsteps = true +display_coordinates = true +waypoints = true +render_waypoints = true +waypoint_backgrounds = true +waypoint_scale = 1.0 +biome_blending = true +biome_colors_in_vanilla = false +minimum_zoom_for_local_waypoints = 0.0 +adjust_height_for_short_blocks = true +display_flowers = true +display_stained_glass = true +cave_mode_allowed = true +cave_mode_allowed_dimensions = [] +cave_mode_depth = 30 +legible_cave_maps = false +auto_cave_mode = -1 +cave_mode_toggle_timer = 1.0 +default_cave_mode_type = 1 +display_cave_mode_start = true +map_writing_distance = -1 +display_player_as_arrow = true +opening_animation = true +arrow_color = -2 +display_zoom = true +display_hovered_biome = true +zoom_buttons = true +detect_ambiguous_y = true +default_map_teleport_command_format = /tp @s {x} {y} {z} +default_map_teleport_command_dimension_format = /execute as @s in {d} run tp {x} {y} {z} +default_player_teleport_command_format = /tp @s {name} +map_teleport_allowed = true +partial_y_teleport = true +display_opac_claims = true +opac_claims_border_opacity = 80 +opac_claims_fill_opacity = 46 +map_item = - +display_minimap_radar = true +display_tracked_players = true +unlimited_zoom_in = false +unlimited_zoom_out = false +skip_world_render = true +display_server_chunk_radius = false +force_fast_map_writing = false +display_map_distances = true +convert_map_distances_to_km_at = 10000 +map_distance_precision = 1 diff --git a/config/xaero/world-map/server_profiles/default.cfg b/config/xaero/world-map/server_profiles/default.cfg new file mode 100644 index 0000000..79fc867 --- /dev/null +++ b/config/xaero/world-map/server_profiles/default.cfg @@ -0,0 +1,5 @@ +############ +## Server Config Profile "default" +## + +profile_name = Default diff --git a/config/xaerohud.txt b/config/xaerohud.txt new file mode 100644 index 0000000..14a6c20 --- /dev/null +++ b/config/xaerohud.txt @@ -0,0 +1 @@ +module;id=xaerominimap:minimap;x=0;y=0;centered=false;fromRight=true;fromBottom=false;flippedVer=false;flippedHor=false; diff --git a/config/xaeropatreon.txt b/config/xaeropatreon.txt new file mode 100644 index 0000000..e69de29 diff --git a/config/xnet-client.toml b/config/xnet-client.toml new file mode 100644 index 0000000..3d78654 --- /dev/null +++ b/config/xnet-client.toml @@ -0,0 +1,9 @@ + +#General settings +[general] + #Maximum size of the packet used to send copy/pasted channels/connectors to the server. -1 means no maximum (packets are split) + #Range: -1 ~ 1000000000 + controllerMaxPaste = -1 + #If true then cables are also shown when sneaking even if they are not in a facade + showNonFacadedCablesWhileSneaking = true + diff --git a/config/yacl.json5 b/config/yacl.json5 new file mode 100644 index 0000000..2c8b942 --- /dev/null +++ b/config/yacl.json5 @@ -0,0 +1,3 @@ +{ + showColorPickerIndicator: true +} \ No newline at end of file diff --git a/config/zeta-common.toml b/config/zeta-common.toml new file mode 100644 index 0000000..e898b44 --- /dev/null +++ b/config/zeta-common.toml @@ -0,0 +1,28 @@ + +[general] + #Disable this to turn off the module system logic that makes features turn off when specified mods with the same content are loaded + "Use Anti Overlap" = true + #Enable Zeta's piston structure resolver, needed for some Quark or other mod features. If you're having troubles, try turning this off, but be aware other Zeta-using mods can enable it too. + "Use Piston Logic Replacement" = true + #Changes the piston push limit. Only has an effect if Zeta's piston structure resolver is in use. + #Allowed values: (0,) + "Piston Push Limit" = 12 + #Set to false to disable the behavior where Zeta will automatically hide any disabled items from creative and JEI + "Hide Disabled Content" = true + #Set to false to disable Zeta's item info when viewing recipe/uses for an item in JEI + "Enable Jei Item Info" = true + #For JEI info purposes, add any items here to specifically disable their JEI info from Zeta. Note that Zeta already only shows info that's relevant to which features are enabled + "Suppressed Info" = [] + #Set to false to stop Zeta from adding mod items to multi-requirement vanilla advancements + "Enable Advancement Modification" = true + #Set to false to stop Zeta mods from adding their own advancements + "Enable Modded Advancements" = true + #Set to true to enable a system that debugs Zeta mod worldgen features. This should ONLY be used if you're asked to by a dev. + "Enable Worldgen Watchdog" = false + #Set to true to make the Zeta big worldgen features generate as spheres rather than unique shapes. It's faster, but won't look as cool + "Use Fast Worldgen" = false + #Set to true to enable verbose logging of creative tab logic, for debugging purposes + "Enable Creative Verbose Logging" = false + #Set to true to force all creative tab additions to be added to the end of the creative tabs rather than the middle, as a failsafe + "Force Creative Tab Appends" = false + diff --git a/config/zfastnoise.mixin.properties b/config/zfastnoise.mixin.properties new file mode 100644 index 0000000..b6f9b0f --- /dev/null +++ b/config/zfastnoise.mixin.properties @@ -0,0 +1,4 @@ +# +#Sun Jul 19 16:06:30 GMT 2026 +mixin.perf.biome=true +mixin.perf.noise=true diff --git a/config/zipline.json b/config/zipline.json new file mode 100644 index 0000000..1b42547 --- /dev/null +++ b/config/zipline.json @@ -0,0 +1,12 @@ +{ + "snapRadius": 2.0, + "clickReach": 3.0, + "useAnywhere": false, + "maxTurnAngle": 0.707, + "hangOffset": 2.1, + "speedMultiplier": 1.0, + "realisticPhysics": false, + "exitJumpMultiplier": 1.4, + "consumeDurability": true, + "releaseCooldown": 10 +} \ No newline at end of file diff --git a/config/zps-client.toml b/config/zps-client.toml new file mode 100644 index 0000000..7400de1 --- /dev/null +++ b/config/zps-client.toml @@ -0,0 +1,2 @@ +TerminalKeyboardSounds = true + diff --git a/config/zume.json5 b/config/zume.json5 new file mode 100644 index 0000000..2fcacd4 --- /dev/null +++ b/config/zume.json5 @@ -0,0 +1,57 @@ +{ + // Enable Cinematic Camera while zooming. + // If you disable this, you should also try setting `zoomSmoothnessMs` to `0`. + // DEFAULT: `true` + "enableCinematicZoom": true, + // Mouse Sensitivity will not be reduced below this amount while zoomed in. + // Set to `1.0` to prevent it from being changed at all (not recommended without `enableCinematicZoom`). + // DEFAULT: `0.4` + "mouseSensitivityFloor": 0.4, + // Speed for Zoom In/Out key binds & zoom scrolling (if enabled). + // DEFAULT: `20` + "zoomSpeed": 20, + // Allows you to zoom in and out by scrolling up and down on your mouse while zoom is active. + // This will prevent you from scrolling through your hotbar while zooming if enabled. + // DEFAULT: `true` + "enableZoomScrolling": true, + // FOV changes will be spread out over this many milliseconds. + // Set to `0` to disable animations. + // DEFAULT: `150` + "zoomSmoothnessMs": 50, + // The exponent used for easing animations. + // You should probably leave this at the default if you don't understand what it does. + // DEFAULT: `4.0` + "animationEasingExponent": 4.0, + // The exponent used for making differences in FOV more uniform. + // You should probably leave this at the default if you don't understand what it does. + // DEFAULT: `2.0` + "zoomEasingExponent": 2.0, + // Default starting zoom percentage. + // DEFAULT: `0.5` + "defaultZoom": 0.5, + // If `true`, the Zoom keybind will act as a toggle in first-person. + // If `false`, Zoom will only be active in first-person while the keybind is held. + // DEFAULT: `false` + "toggleMode": false, + // If `true`, the Zoom keybind will act as a toggle in third-person. + // If `false`, Zoom will only be active in third-person while the keybind is held. + // DEFAULT: `true` + "thirdPersonToggleMode": true, + // Minimum zoom FOV. + // DEFAULT: `1.0` + "minFOV": 10.0, + // Maximum third-person zoom distance (in blocks). + // Set to `0.0` to disable third-person zoom. + // DEFAULT: `15.0` + "maxThirdPersonZoomDistance": 15.0, + // Minimum third-person zoom distance (in blocks). + // Set to `4.0` to mimic vanilla. + // DEFAULT: `0.5` + "minThirdPersonZoomDistance": 0.5, + // If `true`, the mod will be disabled (on some platforms, key binds will still show in game options; they won't do anything if this is set to `true`). + // Requires re-launch to take effect. + // DEFAULT: `false` + "disable": false, + // Used internally. Don't modify this. + "configVersion": 1 +} \ No newline at end of file diff --git a/defaultconfigs/assembly line.txt b/defaultconfigs/assembly line.txt new file mode 100644 index 0000000..988dbdd --- /dev/null +++ b/defaultconfigs/assembly line.txt @@ -0,0 +1,18 @@ +Comment: 'Usage is joules per tick' +D:default=8.0 -> CONVEYORBELT_USAGE='8.0' +Comment: 'Usage is joules per entity movement.' +D:default=8.0 -> SORTERBELT_USAGE='8.0' +Comment: 'Usage is per craft.' +D:default=200.0 -> AUTOCRAFTER_USAGE='200.0' +Comment: 'Usage is per tick.' +D:default=20.0 -> BLOCKBREAKER_USAGE='20.0' +Comment: 'Usage is per usage.' +D:default=40.0 -> BLOCKPLACER_USAGE='40.0' +Comment: 'Usage is per usage' +D:default=40.0 -> RANCHER_USAGE='40.0' +Comment: 'Usage is per usage' +D:default=40.0 -> MOBGRINDER_USAGE='40.0' +Comment: 'Usage is per usage' +D:default=40.0 -> FARMER_USAGE='40.0' +Comment: 'How many additional conveyers a single one can power' +I:default=16 -> CONVEYOR_MAX_SPREAD='16' diff --git a/defaultconfigs/ballistix.txt b/defaultconfigs/ballistix.txt new file mode 100644 index 0000000..1151996 --- /dev/null +++ b/defaultconfigs/ballistix.txt @@ -0,0 +1,138 @@ +Comment: 'Whether explosions will be cached; may use a lot of memory!' +T:default=true -> SHOULD_CACHE_EXPLOSIONS='true' +D:default=10.0 -> EXPLOSIVE_OBSIDIAN_SIZE='10.0' +D:default=2.5 -> EXPLOSIVE_CONDENSIVE_SIZE='2.5' +D:default=1.0 -> EXPLOSIVE_ATTRACTIVE_SIZE='1.0' +D:default=2.0 -> EXPLOSIVE_ATTRACTIVE_REPULSIVE_PUSH_STRENGTH='2.0' +D:default=1.0 -> EXPLOSIVE_REPULSIVE_SIZE='1.0' +D:default=7.0 -> EXPLOSIVE_INCENDIARY_RADIUS='7.0' +D:default=25.0 -> EXPLOSIVE_SHRAPNEL_SHRAPNEL_COUNT='25.0' +D:default=7.0 -> EXPLOSIVE_CHEMICAL_SIZE='7.0' +Comment: 'Value is in ticks.' +D:default=1200.0 -> EXPLOSIVE_CHEMICAL_DURATION='1200.0' +I:default=20 -> EXPLOSIVE_ANVIL_ANVILSPERBLAST='10' +D:default=7.0 -> EXPLOSIVE_INFESTIVE_RADIUS='7.0' +Comment: 'Value is in ticks.' +D:default=20.0 -> EXPLOSIVE_INFESTIVE_DURATION='20.0' +D:default=7.0 -> EXPLOSIVE_DEBILITATION_SIZE='7.0' +Comment: 'Value is in ticks.' +D:default=1200.0 -> EXPLOSIVE_DEBILITATION_DURATION='1200.0' +D:default=50.0 -> EXPLOSIVE_FRAGMENTATION_SHRAPNEL_COUNT='50.0' +D:default=7.0 -> EXPLOSIVE_CONTAGIOUS_SIZE='7.0' +I:default=10 -> VIRUS_EFFECT_RADIUS='10' +Comment: 'Value is in ticks.' +D:default=1200.0 -> EXPLOSIVE_CONTAGIOUS_DURATION='1200.0' +D:default=5.0 -> EXPLOSIVE_BREACHING_SIZE='5.0' +Comment: 'Value is in ticks.' +D:default=1.0 -> EXPLOSIVE_BREACHING_DURATION='1.0' +D:default=60.0 -> EXPLOSIVE_BREACHING_ENERGY='60.0' +D:default=30.0 -> EXPLOSIVE_THERMOBARIC_SIZE='30.0' +Comment: 'Value is in ticks.' +D:default=45.0 -> EXPLOSIVE_THERMOBARIC_DURATION='45.0' +D:default=60.0 -> EXPLOSIVE_THERMOBARIC_ENERGY='60.0' +D:default=2.0 -> EXPLOSIVE_SONIC_MAXHARDNESS='2.0' +D:default=10.0 -> EXPLOSIVE_SONIC_RADIUS='10.0' +D:default=1.0 -> EXPLOSIVE_SONIC_VELOCITY='1.0' +Comment: 'Value is in ticks.' +D:default=20.0 -> EXPLOSIVE_SONIC_DURATION='20.0' +I:default=3 -> EXPLOSIVE_ANTIGRAVITY_CHUNKRADIUS='3' +Comment: 'Value is in ticks.' +I:default=12000 -> EXPLOSIVE_ANTIGRAVITY_CHUNKDURATION='12000' +D:default=1.1 -> EXPLOSIVE_ANTIGRAVITY_GRAVITYFACTOR='1.1' +I:default=300 -> EXPLOSIVE_ANTIGRAVITY_MAXHEIGHT='300' +Comment: 'It is recommended to keep this value low' +I:default=1 -> EXPLOSIVE_ANTIGRAVITY_MAXBLOCKCHECKS='1' +D:default=45.0 -> EXPLOSIVE_EMP_RADIUS='45.0' +D:default=45.0 -> EXPLOSIVE_NUCLEAR_SIZE='45.0' +Comment: 'Value is in ticks.' +D:default=360.0 -> EXPLOSIVE_NUCLEAR_DURATION='360.0' +D:default=120.0 -> EXPLOSIVE_NUCLEAR_ENERGY='120.0' +D:default=90.0 -> EXPLOSIVE_NUCLEAR_RADIATION_RADIUS='90.0' +D:default=5.0 -> EXPLOSIVE_NUCLEAR_RADIATION_DURATION_REAL_DAYS='5.0' +D:default=1.0 -> EXPLOSIVE_ENDOTHERMIC_MAXHARDNESS='1.0' +D:default=30.0 -> EXPLOSIVE_ENDOTHERMIC_RADIUS='30.0' +D:default=1.5 -> EXPLOSIVE_ENDOTHERMIC_VELOCITY='1.5' +Comment: 'Value is in ticks.' +D:default=20.0 -> EXPLOSIVE_ENDOTHERMIC_DURATION='20.0' +D:default=2.0 -> EXPLOSIVE_EXOTHERMIC_MAXHARDNESS='2.0' +D:default=40.0 -> EXPLOSIVE_EXOTHERMIC_RADIUS='40.0' +D:default=0.01 -> EXPLOSIVE_EXOTHERMIC_CHANCE_FOR_LAVA='0.01' +D:default=0.3 -> EXPLOSIVE_EXOTHERMIC_CHANCE_TO_BURN='0.3' +Comment: 'Value is in ticks.' +D:default=20.0 -> EXPLOSIVE_EXOTHERMIC_DURATION='20.0' +D:default=9.0 -> EXPLOSIVE_ENDER_RADIUS='9.0' +I:default=10 -> EXPLOSIVE_ENDER_ENDERMANCOUNT='10' +D:default=3.0 -> EXPLOSIVE_HYPERSONIC_MAXHARDNESS='3.0' +D:default=18.0 -> EXPLOSIVE_HYPERSONIC_RADIUS='18.0' +D:default=1.5 -> EXPLOSIVE_HYPERSONIC_VELOCITY='1.5' +Comment: 'Value is in ticks.' +D:default=50.0 -> EXPLOSIVE_HYPERSONIC_DURATION='50.0' +D:default=45.0 -> EXPLOSIVE_ANTIMATTER_RADIUS='45.0' +Comment: 'Value is in ticks.' +D:default=80.0 -> EXPLOSIVE_ANTIMATTER_DURATION='80.0' +D:default=100.0 -> EXPLOSIVE_LARGEANTIMATTER_RADIUS='100.0' +Comment: 'Value is in ticks.' +D:default=200.0 -> EXPLOSIVE_LARGEANTIMATTER_DURATION='200.0' +D:default=50.0 -> EXPLOSIVE_DARKMATTER_RADIUS='50.0' +Comment: 'Value is in ticks.' +D:default=1200.0 -> EXPLOSIVE_DARKMATTER_DURATION='1200.0' +Comment: 'How many iterations the blast will perform. Set to -1 for infinite, 0 for none.' +I:default=1200 -> EXPLOSIVE_DARKMATTER_PERSISTANCE='1200' +Comment: 'Value is in ticks.' +I:default=5 -> EXPLOSIVE_DARKMATTER_MOVEMENTTICKS='5' +Comment: 'Value is in ticks.' +I:default=1 -> EXPLOSIVE_DARKMATTER_REPEATDURATION='1' +Comment: 'Usage per launch in joules' +D:default=10000.0 -> MISSILESILO_USAGE='10000.0' +I:default=100 -> MISSILE_HEALTH='100' +I:default=500 -> LAUNCHER_PLATFORM_RANGE_T1='500' +I:default=3000 -> LAUNCHER_PLATFORM_RANGE_T2='3000' +I:default=10000 -> LAUNCHER_PLATFORM_RANGE_T3='10000' +I:default=500 -> VLS_RANGE='500' +I:default=45 -> LAUNCH_PLATFORM_DEFAULT_INACCURACY='45' +D:default=1000.0 -> ESM_TOWER_USAGE_PER_TICK='1000.0' +D:default=100.0 -> ESM_TOWER_SEARCH_RADIUS='200.0' +Comment: 'Usage in watt for radar' +D:default=10000.0 -> RADAR_USAGE='10000.0' +I:default=600 -> RADAR_RANGE='600' +Comment: 'Usage in watt for fire control radar' +D:default=10000.0 -> FIRE_CONTROL_RADAR_USAGE='10000.0' +I:default=550 -> FIRE_CONTROL_RADAR_RANGE='550' +Comment: 'How far a turret can be from a fire control radar' +D:default=32.0 -> MAX_DISTANCE_FROM_RADAR='32.0' +D:default=1000.0 -> SAM_TURRET_USAGEPERTICK='1000.0' +D:default=300.0 -> SAM_TURRET_BASE_RANGE='300.0' +D:default=0.2 -> SAM_TURRET_ROTATIONSPEEDRADIANS='0.2' +I:default=100 -> SAM_TURRET_COOLDOWN='100' +D:default=0.1 -> SAM_ENTITY_TURNINGSPEEDRADIANS='0.1' +F:default=5.0 -> SAM_TOP_SPEED='3.0' +F:default=0.1 -> SAM_ACCELERATION='0.04' +F:default=0.25 -> SAM_MINTURNSPEED_PERC='0.25' +D:default=0.7 -> SAM_CHANCE_TO_DESTROY='0.5' +D:default=0.05 -> ANTIBALLISTICMISSILE_ENTITY_TURNINGSPEEDRADIANS='0.05' +D:default=0.95 -> ANTIBALLISTICMISSILE_CHANCE_TO_DESTROY='0.85' +F:default=5.0 -> ANTIBALLISTICMISSILE_TOP_SPEED='5.0' +F:default=0.04 -> ANTIBALLISTICMISSILE_ACCELERATION='0.04' +F:default=0.15 -> ANTIBALLISTICMISSILE_MINTURNSPEED_PERC='0.15' +Comment: 'The amount of inaccuracy each range upgrade will add to the turret. Affects shots past the base range. Set to 1 to disable.' +D:default=1.01 -> RANGE_INCREASE_INACCURACY_MULTIPLIER='1.001' +D:default=1000.0 -> CIWS_TURRET_USAGEPERTICK='1000.0' +D:default=100.0 -> CIWS_TURRET_BASE_RANGE='100.0' +D:default=0.6 -> CIWS_TURRET_ROTATIONSPEEDRADIANS='0.6' +D:default=0.05 -> CIWS_INNACCURACY='0.05' +D:default=10000.0 -> LASER_TURRET_USAGEPERTICK='10000.0' +D:default=300.0 -> LASER_TURRET_BASE_RANGE='300.0' +D:default=0.2 -> LASER_TURRET_ROTATIONSPEEDRADIANS='0.2' +D:default=100.0 -> LASER_TURRET_MAXHEAT='100.0' +D:default=40.0 -> LASER_TURRET_COOLTHRESHHOLD='40.0' +D:default=3.0 -> LASER_TURRET_BASE_DAMAGE='1.0' +D:default=10000.0 -> RAILGUN_TURRET_USAGEPERTICK='10000.0' +D:default=300.0 -> RAILGUN_TURRET_BASE_RANGE='300.0' +D:default=0.1 -> RAILGUN_TURRET_ROTATIONSPEEDRADIANS='0.1' +I:default=100 -> RAILGUN_TURRET_COOLDOWN='100' +D:default=0.05 -> RAILGUN_INNACCURACY='0.05' +D:default=100.0 -> PROXIMITYDETECTOR_USAGEPERTICK='100.0' +I:default=60 -> ROCKET_LAUNCHER_COOLDOWN_TICKS='60' +I:default=1000 -> LASER_DESIGNATOR_RANGE='1000' +Comment: 'NB! This is ONLY useful for very slow pc's. Like very slow. It is very BAD for slow - mediocre - good pc's and will make raytracing SLOWER for these!!!' +T:default=false -> SHOULD_MULTITHREAD_RAYTRACING='false' diff --git a/defaultconfigs/blastcraft.txt b/defaultconfigs/blastcraft.txt new file mode 100644 index 0000000..e69de29 diff --git a/defaultconfigs/electrodynamics.txt b/defaultconfigs/electrodynamics.txt new file mode 100644 index 0000000..db71b21 --- /dev/null +++ b/defaultconfigs/electrodynamics.txt @@ -0,0 +1,72 @@ +F:default=0.9925 -> TRANSFORMER_EFFICIENCY='0.9925' +F:default=0.995 -> CIRCUITBREAKER_EFFICIENCY='0.995' +F:default=1.0 -> RELAY_EFFICIENCY='1.0' +F:default=0.995 -> CURRENTREGULATOR_EFFICIENCY='0.995' +D:default=34.0 -> COALGENERATOR_AMPERAGE='34.0' +D:default=4.5 -> THERMOELECTRICGENERATOR_AMPERAGE='4.5' +D:default=6.0 -> HYDROELECTRICGENERATOR_AMPERAGE='6.0' +D:default=10.0 -> WINDMILL_MAX_AMPERAGE='10.0' +D:default=7.0 -> SOLARPANEL_AMPERAGE='7.0' +D:default=50.0 -> ELECTRICPUMP_USAGE_PER_TICK='50.0' +D:default=25.0 -> ADVANCEDSOLARPANEL_AMPERAGE='25.0' +D:default=175.0 -> ELECTRICFURNACE_USAGE_PER_TICK='175.0' +I:default=100 -> ELECTRICFURNACE_REQUIRED_TICKS='100' +D:default=175.0 -> ELECTRICARCFURNACE_USAGE_PER_TICK='175.0' +I:default=50 -> ELECTRICARCFURNACE_REQUIRED_TICKS='50' +D:default=125.0 -> WIREMILL_USAGE_PER_TICK='125.0' +D:default=1000.0 -> ROTARY_UNIFIER_USAGE='1000.0' +I:default=1 -> ROTARY_UNIFIER_CONVERSION_RATE='1' +I:default=200 -> WIREMILL_REQUIRED_TICKS='200' +D:default=350.0 -> COMBUSTIONCHAMBER_JOULES_PER_TICK='350.0' +D:default=1000.0 -> CHARGER_USAGE_PER_TICK='1000.0' +D:default=100.0 -> GAS_COLLECTOR_USAGE_PER_TICK='100.0' +D:default=100.0 -> COMPRESSOR_USAGE_PER_TICK='100.0' +I:default=20 -> COMPRESSOR_CONVERSION_RATE='20' +D:default=100.0 -> DECOMPRESSOR_USAGE_PER_TICK='100.0' +I:default=20 -> DECOMPRESSOR_CONVERSION_RATE='20' +D:default=100.0 -> ADVACNED_COMPRESSOR_USAGE_PER_TICK='100.0' +I:default=80 -> ADVACNED_COMPRESSOR_CONVERSION_RATE='80' +D:default=100.0 -> ADVANCED_DECOMPRESSOR_USAGE_PER_TICK='100.0' +I:default=80 -> ADVANCED_DECOMPRESSOR_CONVERSION_RATE='80' +D:default=100.0 -> THERMOELECTRIC_MANIPULATOR_USAGE_PER_TICK='100.0' +I:default=10 -> THERMOELECTRIC_MANIPULATOR_HEAT_TRANSFER='10' +I:default=20 -> THERMOELECTRIC_MANIPULATOR_CONVERSION_RATE='20' +D:default=100.0 -> ADVANCED_THERMOELECTRIC_MANIPULATOR_USAGE_PER_TICK='100.0' +I:default=10 -> ADVANCED_THERMOELECTRIC_MANIPULATOR_HEAT_TRANSFER='80' +I:default=80 -> ADVANCED_THERMOELECTRIC_MANIPULATOR_CONVERSION_RATE='80' +I:default=1048576 -> GAS_TRANSFORMER_INPUT_PRESSURE_CAP='1048576' +I:default=1000000 -> GAS_TRANSFORMER_INPUT_TEMP_CAP='1000000' +I:default=5000 -> GAS_TRANSFORMER_BASE_INPUT_CAPCITY='5000' +I:default=1048576 -> GAS_TRANSFORMER_OUTPUT_PRESSURE_CAP='1048576' +Comment: 'The thermoelectric manipulator can turn water into steam. With the default advanced manipulator values very high steam temperatures can become energy-positive in a turbine if conversion-rate scaling is disabled or bypassed. Keep the default conservative.' +I:default=1000 -> GAS_TRANSFORMER_OUTPUT_TEMP_CAP='1000' +I:default=5000 -> GAS_TRANSFORMER_BASE_OUTPUT_CAPCITY='5000' +I:default=5000 -> GAS_TRANSFORMER_ADDON_TANK_CAPCITY='5000' +I:default=5 -> GAS_TRANSFORMER_ADDON_TANK_LIMIT='5' +D:default=100.0 -> MOTORCOMPLEX_USAGE_PER_TICK='100.0' +D:default=10.0 -> PIPE_PUMP_USAGE_PER_TICK='10.0' +D:default=100000.0 -> ELECTROLOSIS_CHAMBER_TARGET_JOULES='100000.0' +D:default=100.0 -> QUARRY_USAGE_PER_TICK='100.0' +I:default=10 -> QUARRY_WATERUSAGE_PER_BLOCK='10' +Comment: 'max radius = 128, min radius = 2' +I:default=64 -> MARKER_RADIUS='64' +Comment: 'max possible is 1 tick / block' +I:default=1 -> MAX_QUARRYBLOCKS_PER_TICK='1' +Comment: 'min possible speed is 100 ticks / block' +I:default=100 -> MIN_QUARRYBLOCKS_PER_TICK='100' +Comment: 'how many air blocks the quarry can skip over in one clearing tick; max is 128, min is zero' +I:default=64 -> CLEARING_AIR_SKIP='64' +Comment: 'controls whether or not the quarry will mine blocks that have been placed into the mining area' +T:default=true -> MAINTAIN_MINING_AREA='true' +Comment: 'Controls whether the quarry can bypass claims or not' +T:default=false -> BYPASS_CLAIMS='false' +Comment: 'When set to true, this will make transformers tick, but give them the ability to hum as they do in real life. If you need to gain performance, you can disable this to stop transformers from ticking and thus producing sound.' +T:default=true -> SHOULD_TRANSFORMER_HUM='true' +Comment: 'The Watts a transformer needs to see to be considered under "full load" and thus hum as loud as it can. Set to 0 to have it hum under any load greater than 0 Watts' +D:default=5000.0 -> TRANSFORMER_SOUND_LOAD_TARGET='5000.0' +Comment: 'Whether or not wires should set things on fire around them if their voltage exceeds their insulation value.' +T:default=true -> CONDUCTORS_BURN_SURROUNDINGS='true' +Comment: 'The hardness value that a block must have to not be instantly vaporized by a wire over 30,720V, which is the maximum voltage achievable by default electrodynamics. 6 is the explosion resistance of an Iron Block' +F:default=6.0 -> BLOCK_VAPORIZATION_HARDNESS='6.0' +Comment: 'Set to false to disable the HUD rendering for combat armor.' +T:default=true -> RENDER_COMBAT_ARMOR_STATUS='true' diff --git a/defaultconfigs/electrodynamics_ore_config.txt b/defaultconfigs/electrodynamics_ore_config.txt new file mode 100644 index 0000000..d9e8dd4 --- /dev/null +++ b/defaultconfigs/electrodynamics_ore_config.txt @@ -0,0 +1,38 @@ +T:default=false -> DISABLE_ALL_ORES='false' +T:default=false -> DISABLE_STONE_ORES='false' +T:default=true -> SPAWN_ALUMINUM_ORE='true' +T:default=true -> SPAWN_CHROMIUM_ORE='true' +T:default=true -> SPAWN_FLUORITE_ORE='true' +T:default=true -> SPAWN_LEAD_ORE='true' +T:default=true -> SPAWN_LITHIUM_ORE='true' +T:default=true -> SPAWN_MOLYBDENUM_ORE='true' +T:default=true -> SPAWN_MONAZITE_ORE='true' +T:default=true -> SPAWN_NITER_ORE='true' +T:default=true -> SPAWN_SALT_ORE='true' +T:default=true -> SPAWN_SILVER_ORE='true' +T:default=true -> SPAWN_SULFUR_ORE='true' +T:default=true -> SPAWN_SYLVITE_ORE='true' +T:default=true -> SPAWN_TIN_ORE='true' +T:default=true -> SPAWN_TITANIUM_ORE='true' +T:default=true -> SPAWN_THORIUM_ORE='true' +T:default=true -> SPAWN_URANIUM_ORE='true' +T:default=true -> SPAWN_VANADIUM_ORE='true' +T:default=false -> DISABLE_DEEPSLATE_ORES='false' +T:default=true -> SPAWN_DEEP_ALUMINUM_ORE='true' +T:default=true -> SPAWN_DEEP_CHROMIUM_ORE='true' +T:default=true -> SPAWN_DEEP_FLUORITE_ORE='true' +T:default=true -> SPAWN_DEEP_LEAD_ORE='true' +T:default=true -> SPAWN_DEEP_LITHIUM_ORE='true' +T:default=true -> SPAWN_DEEP_MOLYBDENUM_ORE='true' +T:default=true -> SPAWN_DEEP_MONAZITE_ORE='true' +T:default=true -> SPAWN_DEEP_NITER_ORE='true' +T:default=true -> SPAWN_DEEP_SALT_ORE='true' +T:default=true -> SPAWN_DEEP_SILVER_ORE='true' +T:default=true -> SPAWN_DEEP_SULFUR_ORE='true' +T:default=true -> SPAWN_DEEP_SYLVITE_ORE='true' +T:default=true -> SPAWN_DEEP_TIN_ORE='true' +T:default=true -> SPAWN_DEEP_TITANIUM_ORE='true' +T:default=true -> SPAWN_DEEP_THORIUM_ORE='true' +T:default=true -> SPAWN_DEEP_URANIUM_ORE='true' +T:default=true -> SPAWN_DEEP_VANADIUM_ORE='true' +D:default=1.0 -> ORE_GENERATION_MULTIPLIER='1.0' diff --git a/defaultconfigs/ftblibrary/ftblibrary-client.snbt b/defaultconfigs/ftblibrary/ftblibrary-client.snbt new file mode 100644 index 0000000..78dce1c --- /dev/null +++ b/defaultconfigs/ftblibrary/ftblibrary-client.snbt @@ -0,0 +1,4 @@ +# Default config file that will be copied to local/ftblibrary-client.snbt if it doesn't exist! +# Just copy any values you wish to override in here! + +{ } diff --git a/defaultconfigs/modular forcefields.txt b/defaultconfigs/modular forcefields.txt new file mode 100644 index 0000000..a0199c7 --- /dev/null +++ b/defaultconfigs/modular forcefields.txt @@ -0,0 +1 @@ +D:default=480.0 -> COERCIONDERIVER_VOLTAGE='480.0' diff --git a/defaultconfigs/nuclear science.txt b/defaultconfigs/nuclear science.txt new file mode 100644 index 0000000..0c5432f --- /dev/null +++ b/defaultconfigs/nuclear science.txt @@ -0,0 +1,34 @@ +D:default=1000000.0 -> TELEPORTER_USAGE_PER_TELEPORT='1000000.0' +D:default=120.0 -> RADIOISOTOPEGENERATOR_VOLTAGE='120.0' +D:default=0.35 -> RADIOISOTOPEGENERATOR_OUTPUT_MULTIPLIER='0.3499999940395355' +D:default=350000.0 -> FISSIONREACTOR_MAXENERGYTARGET='350000.0' +D:default=850000.0 -> MSRREACTOR_MAXENERGYTARGET='850000.0' +D:default=6000000.0 -> FUSIONREACTOR_MAXENERGYTARGET='6000000.0' +D:default=50000.0 -> FUSIONREACTOR_USAGE_PER_TICK='50000.0' +D:default=2.0E8 -> PARTICLEINJECTOR_USAGE_PER_PARTICLE='2.0E8' +I:default=1024 -> FUSIONREACTOR_MAXSTORAGE='1024' +D:default=1500.0 -> GASCENTRIFUGE_USAGE_PER_TICK='1500.0' +I:default=20 -> GASCENTRIFUGE_REQUIRED_TICKS_PER_PROCESSING='20' +D:default=1200.0 -> FREEZEPLUG_USAGE_PER_TICK='200.0' +D:default=120.0 -> MOLTENSALTSUPPLIER_VOLTAGE='120.0' +D:default=200.0 -> MOLTENSALTSUPPLIER_USAGE_PER_TICK='200.0' +D:default=1250.0 -> ATOMICASSEMBLER_USAGE_PER_TICK='6000.0' +D:default=480.0 -> ATOMICASSEMBLER_VOLTAGE='480.0' +I:default=6000 -> ATOMICASSEMBLER_REQUIRED_TICKS='6000' +I:default=40 -> QUANTUM_TUNNEL_FREQUENCY_CAP_PER_PLAYER='40' +I:default=40 -> ANTIMATTER_TICKS_ON_GROUND='40' +D:default=100.0 -> CLOUD_CHAMBER_ENERGY_USAGE_PER_TICK='100.0' +I:default=1 -> CLOUD_CHAMBER_FLUID_USAGE_PER_TICK='1' +D:default=200.0 -> FALLOUT_SCRUBBER_USAGE_PER_TICK='100.0' +I:default=5 -> ATOMIC_ASSEMBLER_RADIATION_RADIUS='5' +I:default=3 -> CHEMICAL_EXTRACTOR_RADIATION_RADIUS='3' +I:default=10 -> FUEL_REPROCESSOR_RADIATION_RADIUS='10' +I:default=5 -> GAS_CENTRIFUGE_RADIATION_RADIUS='5' +I:default=5 -> NUCLEAR_BOILER_RADIATION_RADIUS='5' +I:default=3 -> PARTICLE_INJECTOR_RADIATION_RADIUS='3' +I:default=5 -> RADIOACTIVE_PROCESSOR_RADIATION_RADIUS='5' +I:default=10 -> RADIO_GENATOR_RADIATION_RADIUS='10' +I:default=5 -> MOLTEN_SAL_SUPPLIER_RADIATION_RADIUS='5' +I:default=50 -> DEFAULT_PARTICLE_COOLDOWN_TICKS='50' +I:default=800 -> PARTICLE_SURVIVAL_TICKS='800' +D:default=5.0 -> FISSION_REACTOR_MELTDOWN_RADIATION_DURATION_REAL_DAYS='2.0' diff --git a/defaultconfigs/voltaic.txt b/defaultconfigs/voltaic.txt new file mode 100644 index 0000000..55ba49b --- /dev/null +++ b/defaultconfigs/voltaic.txt @@ -0,0 +1,9 @@ +T:default=true -> DISPENSE_GUIDEBOOK='true' +D:default=1.0 -> BACKROUND_RADIATION_DISSIPATION='1.0' +D:default=300.0 -> IODINE_RESISTANCE_THRESHHOLD='300.0' +D:default=0.8 -> IODINE_RAD_REDUCTION='0.8' +T:default=true -> RADIATION_SYSTEM_ENABLED='true' +Comment: 'Whether ores like Uranium will emit radiation' +T:default=true -> ORES_EMIT_RADIATION='true' +Comment: 'How frequently ores random tick radiation. Value of 1 is fastest rate.' +I:default=20 -> ORE_RADIATION_ADMIT_RATE='20' diff --git a/index.toml b/index.toml index a9aa1b5..a414c28 100644 --- a/index.toml +++ b/index.toml @@ -8,6 +8,4906 @@ hash = "106dab17c69017c65de1c370cc15c8fd172d96bb988493c04ff8dbf4c3aad3fc" file = "build.sh" hash = "2d074d1534656f87e314e36ee00ad08fa4c90f20e43978cb4341f2b84c4f4046" +[[files]] +file = "config/AdvancedBackups-client.properties" +hash = "0ccf7084062f696c9c2c8255dc74994327a71512cb290f9e2e2b7ff502850b5e" + +[[files]] +file = "config/AdvancedBackups.properties" +hash = "db154f73880c88d89fd212b0caa6db2aa4dbfb032c3a7841bd43ec3524a75fa4" + +[[files]] +file = "config/CustomNpcs.cfg" +hash = "6c653794c8e1d87b8bc9af443c7df6453565b82eeb4e2b98dcb180d0b118d46d" + +[[files]] +file = "config/DistantHorizons.toml" +hash = "f52972ceae5a183f577c06c02c8957c35542d45c5eecdf805fa4bb1a271b0439" + +[[files]] +file = "config/EnderStorage.cfg" +hash = "ee18dee1a8206cc3853e156102d70038554a4d0e30937e1e8145ef49086d0670" + +[[files]] +file = "config/Hexerei-client.toml" +hash = "70d41a3e3d638cfd61783d99f01d38e4867b01495c005bfdb8255115aa75feb8" + +[[files]] +file = "config/Hexerei-common.toml" +hash = "3c02f6c557fe221194e526bb26dda5c00887e935ae78520fd9b49c2c49020a6d" + +[[files]] +file = "config/LibertyVillagers.json" +hash = "98638bc33dbd5f9d9dba63bb5d16d7be2c24b64273929dc52b0cbce50eb421c1" + +[[files]] +file = "config/MouseTweaks.cfg" +hash = "4069ce1a439d8c37453c1b1e9f2037e0942674c7e48723a39b37eab245792ad4" + +[[files]] +file = "config/NoChatReports/NCR-Client.json" +hash = "edfe78d985fe67dce28104f3d87673e94c89134144451c291ecedcd2e2c3b480" + +[[files]] +file = "config/NoChatReports/NCR-Common.json" +hash = "0eaad2630bd70ade719f7810e805810ada25379269ea194e43d3eea30c51dec0" + +[[files]] +file = "config/NoChatReports/NCR-Encryption.json" +hash = "3729f962d19f85c182f06682a09896b113eb1d4b8cdb64a09ba03a96bfa93243" + +[[files]] +file = "config/NoChatReports/NCR-ServerPreferences.json" +hash = "0aedfb747a69746aee77882bef359c7fe40ac78037dc6e2c29b79207789bb5c2" + +[[files]] +file = "config/NoChatReports/README.md" +hash = "c52b76ccad2bd1063a22c7f6bb9e7c5db6b00fb53a6fd605585972ee0e5fc01f" + +[[files]] +file = "config/Plushie_Buddies-Common.toml" +hash = "fcb64fad821f249a156362afccf4e5fdf77491c3a6d4229313fa833f27c59db2" + +[[files]] +file = "config/ProjectRed.cfg" +hash = "8605c2990ba5181e5473ed70296ab79d2843accfa84bc74bb088bc4e2dfb026f" + +[[files]] +file = "config/RPG-HUD" +hash = "135bb559ca2ce166bada4a32b4dc79e401ea2f1a3cd3df8f7cef299248dd09a1" + +[[files]] +file = "config/Signal_Flares_Server.toml" +hash = "c301387dca12594aaede491c6b285df770f94e372ba2c7da070454e57247dcfd" + +[[files]] +file = "config/Undead_mobs.toml" +hash = "2a667b25f5819b5294f1af801bfd966bf99907b6f314c3caf1dd2596b0adc8fc" + +[[files]] +file = "config/VinURLConfig.json5" +hash = "77fd149d1d1e61f13406f6a4a432c7b69586ecc1076d43023b7099d66cab7ab6" + +[[files]] +file = "config/Wardrobe.toml" +hash = "74b09a8b9f4a4a21ddfa482ee48c6a6da3757afcd3ddbd20b431693e50c61187" + +[[files]] +file = "config/YungsCaveBiomes-forge-1_20_1.toml" +hash = "1106f174658cdf06203205d51ddd9f2daaedc0266e904ec327f5d4aa6ec5e35e" + +[[files]] +file = "config/accessories.json5" +hash = "d459b76d2a92b8770584a407f8bfc6570cc17923e95c32e23d083fe14505e60d" + +[[files]] +file = "config/actuallyadditions-common.toml" +hash = "4743dd12977794012d29c8a19d9819210f6bdf20506f08f0b38dd61d346c3c2b" + +[[files]] +file = "config/ad_astra-client.jsonc" +hash = "eff1be886673bc30e4dde7030f6970915c5c1c648d671f81bae5c941025705b3" + +[[files]] +file = "config/ad_astra.jsonc" +hash = "52e9c20de34fd2fd4c0410697538922c8a63591da58117c40c88c681e08f7264" + +[[files]] +file = "config/additional-additions-config.json" +hash = "f8e4a776c8a78e9cb0b1339bc1caa937499b41c91796135b0b8ea4c939d727c0" + +[[files]] +file = "config/additional_attributes-client.toml" +hash = "34f5e301f0860ab13189e3cd5e239116456543b2531b021a5025aa3d8c3c5f39" + +[[files]] +file = "config/additionalstructures-client.toml" +hash = "cba9f5227c506c4cf5c858fb5d94327c9fe683bcc39029602d5cbd2ac031b8cb" + +[[files]] +file = "config/addonslib-common.toml" +hash = "ffad783336c001e357c75994066d3eeed96c514d2e837be3f7d4fa4ba9256b57" + +[[files]] +file = "config/advanced_ae-client.toml" +hash = "c272dc30942cbf7367668db820d2dc63370cdcfc07ad413334d295222db10e87" + +[[files]] +file = "config/advanced_ae-common.toml" +hash = "61e6db66f8919d7b988d9ada0247b6f55875ababa6e43773b1ffcd31c5a06c46" + +[[files]] +file = "config/advancementplaques-common.toml" +hash = "b7812dd0a3535dea9871f2695b363727bb0abde965d365ca41e8c63b8bd67884" + +[[files]] +file = "config/ae2/client.json" +hash = "e3a0bcd693d66ed7f52a71a8bdb3b53d5ee08d04ca4a312530f8802dc208c103" + +[[files]] +file = "config/ae2/common.json" +hash = "c399a1afc07b836bfe97521b5aa355872dacce511588aca2ad156981dc1a5169" + +[[files]] +file = "config/ae2additions-common.toml" +hash = "0c3f29e54a5313bc9c883ae292e84f93c1609c744139de1ebc037f73c1d7deab" + +[[files]] +file = "config/aeroblender-common.toml" +hash = "c49abe2aded10d13ae50078dd5d3950eff25d7f2dde9054c0a6cb6b2cdca34fd" + +[[files]] +file = "config/aestheticstairs-common.toml" +hash = "c5ff2cc6e0454b4b160f101c82e0c366ad84aaf4423c3499c65a0354948abda6" + +[[files]] +file = "config/aether-client.toml" +hash = "3caea3de135896849b33d1d57a336d3d1a5d9e306938d8115835fcc490c19cec" + +[[files]] +file = "config/aether-common.toml" +hash = "c48fcf909782f15a5e7da5b1adf223bb23b19d335b03dbc20eafaf6fdc33e763" + +[[files]] +file = "config/aether_redux_client.toml" +hash = "15ae7b7d05299202a0eb58aba471819b6a7c56065d8177bff22f2ac548d30afa" + +[[files]] +file = "config/aether_redux_common.toml" +hash = "011b47b04a10a8060ac6d04f8af455d182351ceeba1e85a82c87065e3aeac57a" + +[[files]] +file = "config/aether_redux_pack_config.json" +hash = "c3b4e44e8c35be64eec2a272592f0ab2249ddba7f7dc9696a293485e67f49e6b" + +[[files]] +file = "config/aiimprovements-common.toml" +hash = "d65113ea15e814463b1f477b0cebcc98dfe06a5d3f7100e3bacd414c7cb391ec" + +[[files]] +file = "config/aiotbotania-client.toml" +hash = "6a9f8db86f3beef6ac56eeeab8cfa8c160aee9216d834a862c7d2d903befdc4e" + +[[files]] +file = "config/aiotbotania-common.toml" +hash = "65b655cc0b6de937037c3cee68791040093411080bd8518a92b96a4d08a5351d" + +[[files]] +file = "config/akashictome-common.toml" +hash = "1570c4025fc3501c1c98b8b74883f9274046f7cfd87816a763a517eedcbe8533" + +[[files]] +file = "config/alexscaves-client.toml" +hash = "903071646b91031ad415b3d27cc03ccb78540d38bd1f0dd5289635723dbafcf8" + +[[files]] +file = "config/alexscaves-general.toml" +hash = "232e6e03c16b2d664ffbca9014dc72da2ff952b514d514087288fda1237dbaed" + +[[files]] +file = "config/alexscavesdelight-common.toml" +hash = "3d29f1312d2c893a7938e977f3ca03ddeffd1c787e7405459601f252dc2c6f24" + +[[files]] +file = "config/alexsmobs.toml" +hash = "401efa9056289c8a375d11a4eed5bb4fdcea8bee7340304ef9971ab6493aeca6" + +[[files]] +file = "config/alexsmobs/alligator_snapping_turtle_spawns.json" +hash = "df14afd6e1e96ace0dc8e4c71bc325e3baec8dbeaebf61f682561a70fc145f9d" + +[[files]] +file = "config/alexsmobs/anaconda_spawns.json" +hash = "ca961946a7b3c6e9abcb1bb82bbf36e1f9ce01d11769a06a7fbff6351293ff5d" + +[[files]] +file = "config/alexsmobs/anteater_spawns.json" +hash = "f65e31155b2f2e033bed66dc5ec2ce7f6962be3389369ff800b69dfdecb5d990" + +[[files]] +file = "config/alexsmobs/bald_eagle_spawns.json" +hash = "f8b51a798bfa4b51e0ee8fb78c860ca5b2677583db10584792a0e1548f17d396" + +[[files]] +file = "config/alexsmobs/banana_slug_spawns.json" +hash = "1d5d0ce4ef42e94f0361c41b4b2402b64e87f0b1b987e1f1b2f6b2ac377211a7" + +[[files]] +file = "config/alexsmobs/bison_spawns.json" +hash = "78e726ed002a31f5084a7b49fcce467c5623a046981d6c59d9ed7c4eb6cdbb1e" + +[[files]] +file = "config/alexsmobs/blobfish_spawns.json" +hash = "7e7b175c33aed22c3d2cd31e215c6243e3790b07a3664b42d130a8f3b897489f" + +[[files]] +file = "config/alexsmobs/blue_jay_spawns.json" +hash = "7d1f784ab378e1e851e73dbb6f81866420c1328d25f754546d82c417bf304644" + +[[files]] +file = "config/alexsmobs/bone_serpent_spawns.json" +hash = "47eef91378d3d6455a911d58cc3afdbfcdda7fd49968a7921b22620faa8ff672" + +[[files]] +file = "config/alexsmobs/bunfungus_spawns.json" +hash = "5d5a9d2039b6df546b788f62cb376cc29312a7115a5553541652aad7259436a6" + +[[files]] +file = "config/alexsmobs/cachalot_whale_beached_spawns.json" +hash = "73b8f83ddfa936642b38af1003e3c47eab6f089ad61612ee5181137409038f57" + +[[files]] +file = "config/alexsmobs/cachalot_whale_spawns.json" +hash = "fb901f1ea0bce7b9fb51dfaeb565539a3c1a9ee86bafb49caddac7ca1002e296" + +[[files]] +file = "config/alexsmobs/caiman_spawns.json" +hash = "542cca079ae671a6d928737b622b205deebfe2aed5864a01b5048f501aec2753" + +[[files]] +file = "config/alexsmobs/capuchin_monkey_spawns.json" +hash = "83b68d395236771ae9276f48b2988cfa9eb65e14dc41531b37a6b4e77c64859a" + +[[files]] +file = "config/alexsmobs/catfish_spawns.json" +hash = "3c097d29c1f74807815d4c13e3586a76528ac3c104670ce95852bd3b62f9e16e" + +[[files]] +file = "config/alexsmobs/cave_centipede_spawns.json" +hash = "973b8ebc19fa04e02b050f28359ee6bffbae93367f49ecac10892f4a2c1dad7d" + +[[files]] +file = "config/alexsmobs/cockroach_spawns.json" +hash = "97a67afb52f1398f2c55e2a74001e5b893394e28d3f0eb00695f049bdd19f204" + +[[files]] +file = "config/alexsmobs/comb_jelly_spawns.json" +hash = "cf9ba87b0d2001543fe09d8f6a4c602c03644643a9bd49d1e9ca0b041ab4dc02" + +[[files]] +file = "config/alexsmobs/cosmaw_spawns.json" +hash = "8e1d05a9b4ab8b923ff4951ef391665f3bdd218d943152f6f1f57509786bc0f7" + +[[files]] +file = "config/alexsmobs/cosmic_cod_spawns.json" +hash = "aed14e990ed38ee78214b1ea4a15e06bca1b8d098e1e440596be9ab14e4403b8" + +[[files]] +file = "config/alexsmobs/crimson_mosquito_spawns.json" +hash = "104fa9ce71421c5023abba88ce382957828b22341b44c2d03b3300b760482c9d" + +[[files]] +file = "config/alexsmobs/crocodile_spawns.json" +hash = "a73d36d1b5dd75eb20f6143193b991e942f4ef4cef725835b66ec01197d7074f" + +[[files]] +file = "config/alexsmobs/crow_spawns.json" +hash = "cace87b5d504be10d1fff107ad14349066ae1c39d5200a7a29bdd5476167d9b8" + +[[files]] +file = "config/alexsmobs/devils_hole_pupfish_spawns.json" +hash = "e7855fa7d73f4d3af77f47ddd70b4fcbab7862302d004b4ddae9dddc75c4e402" + +[[files]] +file = "config/alexsmobs/dropbear_spawns.json" +hash = "0fa8f72e4c73805727577a343758cfd39377cbdadebb88b6b2343183053e16cb" + +[[files]] +file = "config/alexsmobs/elephant_spawns.json" +hash = "cac271d780a6ed65db7b22e6944b6d456805d72b309865d6293ad6aa4f60c3e2" + +[[files]] +file = "config/alexsmobs/emu_spawns.json" +hash = "70e30e058709266e665eb6642df126eeee744d05e63d77344501e78cb4a37851" + +[[files]] +file = "config/alexsmobs/endergrade_spawns.json" +hash = "ca6e68bd3e74eb9cedcdbae4c82f594c4e85bdd54e1d0e35344a3febb9672980" + +[[files]] +file = "config/alexsmobs/enderiophage_spawns.json" +hash = "846748f4f352dead7fae39221d653713b7cbd775eaf10f80e0dea86f4e9ccb9a" + +[[files]] +file = "config/alexsmobs/farseer.json" +hash = "c245528d844458d8ac416572ee0df7575bb23d58beb07367d4cd55c66fec9000" + +[[files]] +file = "config/alexsmobs/flutter_spawns.json" +hash = "f729be2a0bc7bccc88cde40464f990d6074bfcf52a0d1d6719d8ebcd63c496ff" + +[[files]] +file = "config/alexsmobs/fly_spawns.json" +hash = "e7855fa7d73f4d3af77f47ddd70b4fcbab7862302d004b4ddae9dddc75c4e402" + +[[files]] +file = "config/alexsmobs/flying_fish_spawns.json" +hash = "69904b309696b6081cdec1ea87bdb62f84886cf6dac600a8bca231860c3a3f2f" + +[[files]] +file = "config/alexsmobs/frilled_shark_spawns.json" +hash = "7e7b175c33aed22c3d2cd31e215c6243e3790b07a3664b42d130a8f3b897489f" + +[[files]] +file = "config/alexsmobs/froststalker_spawns.json" +hash = "2cc43cdc9df3b20cc2eeb75a3c11736558f544571640607d08dec5c0a939c02d" + +[[files]] +file = "config/alexsmobs/gazelle_spawns.json" +hash = "17a5c3263942410596f91fb0aece138e5115bfabfa2a5913a63406fcb64b42d0" + +[[files]] +file = "config/alexsmobs/gelada_monkey_spawns.json" +hash = "cdd0380bfa9b754856150966a042f807ac48d2f9409f4f2b543be19e87f4c41f" + +[[files]] +file = "config/alexsmobs/giant_squid_spawns.json" +hash = "7e7b175c33aed22c3d2cd31e215c6243e3790b07a3664b42d130a8f3b897489f" + +[[files]] +file = "config/alexsmobs/gorilla_spawns.json" +hash = "8c90151f66a632b01e7b8f6998f72618720aae5362c1df0bdd7fefdb13cc20c8" + +[[files]] +file = "config/alexsmobs/grizzly_bear_spawns.json" +hash = "7d1f784ab378e1e851e73dbb6f81866420c1328d25f754546d82c417bf304644" + +[[files]] +file = "config/alexsmobs/guster_spawns.json" +hash = "263974f58a4b48df633648246820681745da9f9e16f30fefe6e07f576251dfb1" + +[[files]] +file = "config/alexsmobs/hammerhead_shark_spawns.json" +hash = "a5eeb1a3843a12ef4fde1d8a3a5f13161034457c0901d3f938aa71a20e6712f3" + +[[files]] +file = "config/alexsmobs/hummingbird_spawns.json" +hash = "6aa305d47ca32364d445c04c8a20da36a7ccef97955c27e834d4114604d2785d" + +[[files]] +file = "config/alexsmobs/jerboa_spawns.json" +hash = "c4b2ef89d9ad5c4dffcebb51209837da430b166c5767c1a38d90911c4445b124" + +[[files]] +file = "config/alexsmobs/kangaroo_spawns.json" +hash = "70e30e058709266e665eb6642df126eeee744d05e63d77344501e78cb4a37851" + +[[files]] +file = "config/alexsmobs/komodo_dragon_spawns.json" +hash = "695a3eb4d61a8208cc634871c237b0e6efc980ac668793f4686848e32cda0907" + +[[files]] +file = "config/alexsmobs/laviathan_spawns.json" +hash = "07d0215377f12f1299ec46b6277426c3cf957aa1d310c97fa943cdf5ace8d260" + +[[files]] +file = "config/alexsmobs/leafcutter_anthill_spawns.json" +hash = "f65e31155b2f2e033bed66dc5ec2ce7f6962be3389369ff800b69dfdecb5d990" + +[[files]] +file = "config/alexsmobs/lobster_spawns.json" +hash = "bb0c918e8dbd4d003417a1bcabb38b8433d1f9be95fe6f8feef95d30616b49a7" + +[[files]] +file = "config/alexsmobs/maned_wolf_spawns.json" +hash = "8483d96341369b430ff2ebfebd7562b0c58c40b96be541cc88189fc696606a0d" + +[[files]] +file = "config/alexsmobs/mantis_shrimp_spawns.json" +hash = "4f6099fe4d9f99530f9f0f9bae7e55c0713506efdc47da69d227ae62137647e4" + +[[files]] +file = "config/alexsmobs/mimic_octopus_spawns.json" +hash = "9c68a433ab6f75ff9e8d46868480158e4c1f46949779cb0b0d973f7759dbfc2d" + +[[files]] +file = "config/alexsmobs/mimicube_spawns.json" +hash = "fcace6e8c558df6eb13827f7a2b4a7f43c9fdfd3015331bd7e277329ca034c34" + +[[files]] +file = "config/alexsmobs/moose_spawns.json" +hash = "abac051da2458ec848604b66a6d7889f7c715060bb9706c1d1822155127d096c" + +[[files]] +file = "config/alexsmobs/mudskipper_spawns.json" +hash = "542cca079ae671a6d928737b622b205deebfe2aed5864a01b5048f501aec2753" + +[[files]] +file = "config/alexsmobs/mungus_spawns.json" +hash = "5d5a9d2039b6df546b788f62cb376cc29312a7115a5553541652aad7259436a6" + +[[files]] +file = "config/alexsmobs/murmur.json" +hash = "973b8ebc19fa04e02b050f28359ee6bffbae93367f49ecac10892f4a2c1dad7d" + +[[files]] +file = "config/alexsmobs/orca_spawns.json" +hash = "2e62ae273c3488a294068e5ed737dbf08791f4758cd3659308824d7bf4ece377" + +[[files]] +file = "config/alexsmobs/platypus_spawns.json" +hash = "b96f9e44f59f54b67460784fb1fdfa06d053f9ca9abb4fc3b04f222fd65ee958" + +[[files]] +file = "config/alexsmobs/potoo_spawns.json" +hash = "59c5832a40ef0e7212a4d499862f931a5dfcd3ff6d68598153f1274191b0939d" + +[[files]] +file = "config/alexsmobs/raccoon_spawns.json" +hash = "2f353aa8720d03fbdef9d9e4932ecc4435b7923bbc72191fab6f46acb66d3a12" + +[[files]] +file = "config/alexsmobs/rain_frog_spawns.json" +hash = "c4b2ef89d9ad5c4dffcebb51209837da430b166c5767c1a38d90911c4445b124" + +[[files]] +file = "config/alexsmobs/rattlesnake_spawns.json" +hash = "b8662bb3de9e2e5cc4af3773700fe6446c389980a80f6350f99d51f3fa2cef39" + +[[files]] +file = "config/alexsmobs/rhinoceros_spawns.json" +hash = "17a5c3263942410596f91fb0aece138e5115bfabfa2a5913a63406fcb64b42d0" + +[[files]] +file = "config/alexsmobs/roadrunner_spawns.json" +hash = "b8662bb3de9e2e5cc4af3773700fe6446c389980a80f6350f99d51f3fa2cef39" + +[[files]] +file = "config/alexsmobs/rocky_roller_spawns.json" +hash = "98dc351abc061685560adc82bd3ffa6e4c87d4faab81e9bb6a9e2a6f07cdb177" + +[[files]] +file = "config/alexsmobs/seagull_spawns.json" +hash = "4dca182ebef46ea0076b8e8066add18f69527cf2f81da83e77e0409127c92dc4" + +[[files]] +file = "config/alexsmobs/seal_spawns.json" +hash = "ef706c1e2ba0b9356523f8aeb3679303ab98d85c9b761d0e55962e930be4d8e6" + +[[files]] +file = "config/alexsmobs/shoebill_spawns.json" +hash = "0d8683c0a1b8176d4e89f88c4f3b1e6fbf6b269781497a190749904c7323eeec" + +[[files]] +file = "config/alexsmobs/skelewag_spawns.json" +hash = "86aad88d05c283679e85900cab1bf3977d496849005ac068a14e40b93db35aa2" + +[[files]] +file = "config/alexsmobs/skreecher.json" +hash = "f812e719afb24421c6853dacf4d1f66864305e335cfdf6193613d7c408ecab30" + +[[files]] +file = "config/alexsmobs/skunk_spawns.json" +hash = "01cc2eb4d92ba30b7301b9325a353cd96c5c7ff263c348795bfb34698cf8f11b" + +[[files]] +file = "config/alexsmobs/snow_leopard_spawns.json" +hash = "fdf546af7c7ff2307d0862c0802450eef1e99554af3a340e7a6af69fa5785ea5" + +[[files]] +file = "config/alexsmobs/soul_vulture_spawns.json" +hash = "45407796e49769550eef92fd3953daa191c85aaf032fb2be32fe591b0199a172" + +[[files]] +file = "config/alexsmobs/spectre_spawns.json" +hash = "ca6e68bd3e74eb9cedcdbae4c82f594c4e85bdd54e1d0e35344a3febb9672980" + +[[files]] +file = "config/alexsmobs/straddler_spawns.json" +hash = "5ee746cf50b358048a0243e4c45997285cf4a9b736758d388ad730d4ed493900" + +[[files]] +file = "config/alexsmobs/stradpole_spawns.json" +hash = "5ee746cf50b358048a0243e4c45997285cf4a9b736758d388ad730d4ed493900" + +[[files]] +file = "config/alexsmobs/sugar_glider_spawns.json" +hash = "cec5208e2e9f12aa8ce13d0f6d34a18500a77d143441c9b511df21c623fe368f" + +[[files]] +file = "config/alexsmobs/sunbird_spawns.json" +hash = "7b82ff39e191bd213cd8ecf06ff9a78c4658e6f6b9d8b48a4fcc4017e7268cb5" + +[[files]] +file = "config/alexsmobs/tarantula_hawk_spawns.json" +hash = "c4b2ef89d9ad5c4dffcebb51209837da430b166c5767c1a38d90911c4445b124" + +[[files]] +file = "config/alexsmobs/tasmanian_devil_spawns.json" +hash = "40c769365424d492a4c17700bb8cfac4c8ce7fac2bc16728f0c4287e3a043130" + +[[files]] +file = "config/alexsmobs/terrapin_spawns.json" +hash = "b96f9e44f59f54b67460784fb1fdfa06d053f9ca9abb4fc3b04f222fd65ee958" + +[[files]] +file = "config/alexsmobs/tiger_spawns.json" +hash = "f88fc1b519759fe41347afca59030619365e173c577e8c1adfcb88777078d066" + +[[files]] +file = "config/alexsmobs/toucan_spawns.json" +hash = "f65e31155b2f2e033bed66dc5ec2ce7f6962be3389369ff800b69dfdecb5d990" + +[[files]] +file = "config/alexsmobs/triops_spawns.json" +hash = "c4b2ef89d9ad5c4dffcebb51209837da430b166c5767c1a38d90911c4445b124" + +[[files]] +file = "config/alexsmobs/tusklin_spawns.json" +hash = "9ab4772704660c679ea30dff2db2c1272843e00675e2a7e610adcc6486120c3c" + +[[files]] +file = "config/alexsmobs/underminer.json" +hash = "97a67afb52f1398f2c55e2a74001e5b893394e28d3f0eb00695f049bdd19f204" + +[[files]] +file = "config/alexsmobs/void_worm_spawns.json" +hash = "6712a2d6165ed52b7d251a8fc4cbfb6c1f834210a8bda82b55440402fd2d3273" + +[[files]] +file = "config/alexsmobs/warped_mosco_spawns.json" +hash = "6712a2d6165ed52b7d251a8fc4cbfb6c1f834210a8bda82b55440402fd2d3273" + +[[files]] +file = "config/alexsmobs/warped_toad_spawns.json" +hash = "72126b26d7f3ae03b80df97dd103e0cec87d10829e86ac8b08da23abc7b318d8" + +[[files]] +file = "config/allthearcanistgear-server.toml" +hash = "ebd1c8b8af64e49f7b2d925225d126e0e256a5bf0222bcce700d1279fab7e1ed" + +[[files]] +file = "config/allthecompatibility-client.toml" +hash = "cba9f5227c506c4cf5c858fb5d94327c9fe683bcc39029602d5cbd2ac031b8cb" + +[[files]] +file = "config/alltheleaks.json" +hash = "ed68f0c0b35f9ebbb3d3f93a4913e314b04bfdeab480fc7683bd6ae392cd2e0e" + +[[files]] +file = "config/allurement-client.toml" +hash = "41c4ca4a2dc0e88d4ac245f61e81b55b4811d2529aa482e452ee1d68aa68aceb" + +[[files]] +file = "config/allurement-common.toml" +hash = "7e172760e0b295705251d4bbeedc7c08bc691836f04bfd84a8ae53804ece0c82" + +[[files]] +file = "config/almostunified/debug.json" +hash = "3e03a291b5310a6b94a45aff63e4731baa643701c42a968ed716483ccd1d5a37" + +[[files]] +file = "config/almostunified/duplicates.json" +hash = "40639e8cb9e9ea52b8557c50d29fc06e73e2ad1e7ca27ae5ce8fe2eca2e97188" + +[[files]] +file = "config/almostunified/startup.json" +hash = "ad711622f9b8c5cc8115f52396f5d82587b809fb20cbf9d94c7744aeebcaf4d5" + +[[files]] +file = "config/almostunified/unify.json" +hash = "23159b1ed8215bf862ac954057c7d969bb2579cca29222ef09634f6dba5b8f56" + +[[files]] +file = "config/ambientsounds-client.json" +hash = "c98f572839ace55b0792042fa4b984311e7d876abdaccfc8a4694f5bebad766c" + +[[files]] +file = "config/amendments-client.toml" +hash = "5c15a095035ddcf18432043d3881197eb97063632bbc8593dafd96a654e6fd5c" + +[[files]] +file = "config/amendments-common.toml" +hash = "bd98c35e394d4ae37e2385f719680d2365527df98894b337d6cf0f2089b15ee6" + +[[files]] +file = "config/angelring-common.toml" +hash = "d88d9f12e175684d660e2130e872fcc133ef15c9051f2f9a45be903e1cd31ddd" + +[[files]] +file = "config/animal_pen_config.json" +hash = "7aff1ff33ef31df8e97ddc25494ea8d4a1ddd36580a42a40bf34d871670546ba" + +[[files]] +file = "config/animal_pen_config.json.bak1" +hash = "7a180817275d0da443673ac814d9d29fa3784b33a4c11f439c026a3896d93022" + +[[files]] +file = "config/animal_pen_config.json.bak2" +hash = "85c5622b35c56e0832dea2fe13e4e988aa2124018c370c8851c935979a180858" + +[[files]] +file = "config/aoa3/client_config.toml" +hash = "424f0f0860b1fbb0a398c313570bcc5a22a8ecc7f096615baf66a8fb574ef664" + +[[files]] +file = "config/aoa3/integrations_config.toml" +hash = "abfb9acf5c082dca33511e10b02a642135ea11a5fb6359d5707d206d1270685f" + +[[files]] +file = "config/apothic_category_compat-common.toml" +hash = "8ca879498af9f781933799b3c31c6dd68a6605853b72dd922590880b54e050fc" + +[[files]] +file = "config/apothic_filter_compat-common.toml" +hash = "9753356f640bb0de6604d87561cff17c07a13e632e622e50d69f576d76a00f2b" + +[[files]] +file = "config/apothic_tooltip_cleanup-client.toml" +hash = "86d5c94acc5bb2bf7fcd672daed9c49c8e9ceee14389c851fb0920998fdaab10" + +[[files]] +file = "config/appflux-common.toml" +hash = "0001e065fd56cbc7f63768b7678495221cbccde4ede73ebd7f70e9464d6c9611" + +[[files]] +file = "config/appleskin-client.toml" +hash = "4f8278b45def834a2a6c03b9b2c29d821808bdb36e6be39abb4be38e81f863ae" + +[[files]] +file = "config/appliedpneumatics-common.toml" +hash = "c9a70680ecb7a8d20dfce12329cef6622dff78e9bca9dbc581e273080b54b88d" + +[[files]] +file = "config/appliedsorting-client.toml" +hash = "c3c860e48bdbc5504db99560e6dbcdaa26c0a11958a7bd6730edc6659ccb063d" + +[[files]] +file = "config/aquaculture-common.toml" +hash = "aff201054383adfd67347e968dd6aeaccd339454d51dd50983654b2c732acc31" + +[[files]] +file = "config/armorposer-common.toml" +hash = "afbdc2589f9aa510173ec94728264212efb68f28170e56e32d597ba942bca91c" + +[[files]] +file = "config/ars_additions-common.toml" +hash = "2b789c57c685e414836248b8abe560b20ed975c659d19d60922a2858b3894b3d" + +[[files]] +file = "config/ars_additions-server.toml" +hash = "4f4a99a73fd1779dac2a70817f8caa631d3fa4388bab95d6a0e1252adf2961d4" + +[[files]] +file = "config/ars_additions/glyph_mark.toml" +hash = "ffb4272390bc84fe0722549f8092713200deded08a1613c80e3b727c5deb89eb" + +[[files]] +file = "config/ars_additions/glyph_recall.toml" +hash = "bd12a6a3b5bb27b6cf822c376ffee30830f8cd9965ec231b2c7467488e38239e" + +[[files]] +file = "config/ars_additions/glyph_retaliate.toml" +hash = "23f6123888cd31598c6456e4edec8225ba56e28c9a3a75dc2282012d1e7d800d" + +[[files]] +file = "config/ars_controle-server.toml" +hash = "d57594f48f2076ac649e2dbd129827957f96fb5e91d65602200c1aecb5837e10" + +[[files]] +file = "config/ars_creo-common.toml" +hash = "f14ed9a338fc9fd74ca70226fe6ad18b369d95ecd5ff09938b98c0daf22da91f" + +[[files]] +file = "config/ars_elemental-client.toml" +hash = "6ae5daef46d37499e15902fb416da5acfb396111ca96aa6e5a5ff50eb0df446c" + +[[files]] +file = "config/ars_elemental-common.toml" +hash = "f4887de42e6817f23fa76ee1554f85f1e10ef4afdd171395ab5e28338404937f" + +[[files]] +file = "config/ars_elemental/glyph_aerial_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_aquatic_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_arc_projectile.toml" +hash = "b203aff5887875b58cef799d759c36f85e47f2f3d08655a42594e8ec4d63801a" + +[[files]] +file = "config/ars_elemental/glyph_bubble_shield.toml" +hash = "b55d9775b7578a06cb60922618fef79e00acc89520de813659c1cdf388da939f" + +[[files]] +file = "config/ars_elemental/glyph_charm.toml" +hash = "d3ae3b56a4078492f791bdd31fdba839521093e58ccfb78f77a112062253281d" + +[[files]] +file = "config/ars_elemental/glyph_conjure_terrain.toml" +hash = "e053eae5e8dc34626f4bfe95bf798ce47dd202459449e17e82af4902ff3badee" + +[[files]] +file = "config/ars_elemental/glyph_discharge.toml" +hash = "8a0f24b87304d9836aae08db7fde0d640a3c7344c1f729bed8c804cd1ad55254" + +[[files]] +file = "config/ars_elemental/glyph_envenom.toml" +hash = "0d8f3ac8b7be6ef854ce2949e9ec6d5cd8d2bd006fb57d95cc768091e494cc51" + +[[files]] +file = "config/ars_elemental/glyph_fiery_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_homing_projectile.toml" +hash = "7c004070054e824f8e1f9d8d900ce13d921831cd4f7e4102f8cd893020525e1a" + +[[files]] +file = "config/ars_elemental/glyph_insect_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_life_link.toml" +hash = "fa6af571a3370734ba573b93e26648951006469b050e525ea9900ef8671ae291" + +[[files]] +file = "config/ars_elemental/glyph_not_aerial_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_not_aquatic_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_not_fiery_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_not_insect_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_not_summon_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_not_undead_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_phantom_grasp.toml" +hash = "d8b6982c77c049321a2db7a1443173752296000ab3b04bb596ce39c5a312c6ff" + +[[files]] +file = "config/ars_elemental/glyph_poison_spores.toml" +hash = "3161c2dfe2a15a88b8b081b1dc13c99bef585b61141c39f1a3686d4bdc9f2eb8" + +[[files]] +file = "config/ars_elemental/glyph_propagator_arc.toml" +hash = "bdc4bd65de2d264882070d9e229710220a75d57ee7427667042a24bbd9f26c79" + +[[files]] +file = "config/ars_elemental/glyph_propagator_homing.toml" +hash = "e4548fab98804638aaf716c0bbcb7354a3c05c95d6f1d997e45c55f9f1a3ae42" + +[[files]] +file = "config/ars_elemental/glyph_spark.toml" +hash = "2194f62a28a57efb75165bf79b33985a366203e212f7a45e1b7f72eedf2925da" + +[[files]] +file = "config/ars_elemental/glyph_spike.toml" +hash = "d11eea3c64ff4e345d3d365d432cf6dd049f132a30d259e27ad15081ec4292d7" + +[[files]] +file = "config/ars_elemental/glyph_summon_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_undead_filter.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_elemental/glyph_watery_grave.toml" +hash = "00fb52a45b1d60a3b590621519a1759be651f0b36eccdbc8b01f28deb83abaaa" + +[[files]] +file = "config/ars_instrumentum-client.toml" +hash = "6959fdc28e3976a5d499f2fa78288b67dc54c4a1b861a564020f6a8e0749d22d" + +[[files]] +file = "config/ars_mekanica-common.toml" +hash = "c10f59c13924378abeb7a195aed6adeb7a516fafcb082f70a0943cd42869ff1a" + +[[files]] +file = "config/ars_nouveau-client.toml" +hash = "c54f14d2579cfff9ad95df94dd3a8abb781f8e05a80ddc0138bdb133963c3d4a" + +[[files]] +file = "config/ars_nouveau-common.toml" +hash = "6dcb19167fd1858fb60b6057b37f318568c5ecedbcf226ab68d2c8b53286478a" + +[[files]] +file = "config/ars_nouveau-server.toml" +hash = "bb55ffdda2646040992732befd7d7ec1cfb093a2e1b9f60234e5259413ed5728" + +[[files]] +file = "config/ars_nouveau/burst.toml" +hash = "45b1430312393c589a586ca781d575c6c134aec7a77ce455b82c26775273b62f" + +[[files]] +file = "config/ars_nouveau/glyph_accelerate.toml" +hash = "6b0666c5de9a0a15c25163ef8fc91d261480a36b315ffd1aed57fa0af98135e8" + +[[files]] +file = "config/ars_nouveau/glyph_amplify.toml" +hash = "a2c9970801c2f3f8b85f81f3b57bf2f9f1822fc9241e4455e4f179c9245f7946" + +[[files]] +file = "config/ars_nouveau/glyph_animate_block.toml" +hash = "55ed5db20768bf7d6801662de73021264fdf62d5b7349f37d209ceb9e2ff7868" + +[[files]] +file = "config/ars_nouveau/glyph_aoe.toml" +hash = "e46e626227737449586a7dc08b5b016d4e44bf9e82bc9975eba15aced57c2687" + +[[files]] +file = "config/ars_nouveau/glyph_blink.toml" +hash = "7cc1382396e65010f4bd0bd9969eba62067ca13939356e09d29d9c0150ed63c2" + +[[files]] +file = "config/ars_nouveau/glyph_bounce.toml" +hash = "80c3dae62eae321065d85cecb33f7005a04f0e591637e070aaf10988831a4fe7" + +[[files]] +file = "config/ars_nouveau/glyph_break.toml" +hash = "d1c68b1ee40d7e73ac1d482c5e41dbb5616f2055e2f9bc59c4b6d4977b8004c3" + +[[files]] +file = "config/ars_nouveau/glyph_cold_snap.toml" +hash = "fee7673db9373180e672ae6896099573195d9d42a3a65d4e749b07ef8b3b2913" + +[[files]] +file = "config/ars_nouveau/glyph_conjure_water.toml" +hash = "0b9e437616e1694c66290f302fc9e77775cd069be09a6f581fd48758b6fc4138" + +[[files]] +file = "config/ars_nouveau/glyph_craft.toml" +hash = "6abe3d14b0965bb56fea23c60f50071acc0d4f26eb316770f4b6d293abc400cb" + +[[files]] +file = "config/ars_nouveau/glyph_crush.toml" +hash = "f9826988f23227060dce6471d7443ffc58c863e1547688ca0340f60888ee93a5" + +[[files]] +file = "config/ars_nouveau/glyph_cut.toml" +hash = "249d64bb6b0c3c99c5621b9334ef56360861dc32168a84e0ed1500c4b9a399d6" + +[[files]] +file = "config/ars_nouveau/glyph_dampen.toml" +hash = "fed67597320cc89745beb11fe12a330d10f603464d80fed2195ac83bdfea6c92" + +[[files]] +file = "config/ars_nouveau/glyph_decelerate.toml" +hash = "d746bc1ad9493dbd889c1b9af9c5d185211fef39c23507128d34b14e9feb2edb" + +[[files]] +file = "config/ars_nouveau/glyph_delay.toml" +hash = "950b2783de461a551c49122a033a83700321869feae2886fd739864e66d4334c" + +[[files]] +file = "config/ars_nouveau/glyph_dispel.toml" +hash = "ee00d3505701989b055110fa5e3ef0a59facfda3bd522b263be91ecfb9c75e61" + +[[files]] +file = "config/ars_nouveau/glyph_duration_down.toml" +hash = "e3f1fb0c06de7e832086c7a39faae30efa6085528a1fb738e292bcba502d2f6a" + +[[files]] +file = "config/ars_nouveau/glyph_ender_inventory.toml" +hash = "cbcada286e40b04b8b92d1e0a561fa2f043c8c5d79b80228cfd64d0bde1d26be" + +[[files]] +file = "config/ars_nouveau/glyph_evaporate.toml" +hash = "6abe3d14b0965bb56fea23c60f50071acc0d4f26eb316770f4b6d293abc400cb" + +[[files]] +file = "config/ars_nouveau/glyph_exchange.toml" +hash = "cbcada286e40b04b8b92d1e0a561fa2f043c8c5d79b80228cfd64d0bde1d26be" + +[[files]] +file = "config/ars_nouveau/glyph_explosion.toml" +hash = "6d5966636072bc85282f2dca402efb7d4091beca6c74856f97d9f4171dbefe5f" + +[[files]] +file = "config/ars_nouveau/glyph_extend_time.toml" +hash = "6b0666c5de9a0a15c25163ef8fc91d261480a36b315ffd1aed57fa0af98135e8" + +[[files]] +file = "config/ars_nouveau/glyph_extract.toml" +hash = "dbbe4c453c11f936deab6890674f99c7fc48ba3fda2e3e067459aef8d92fc287" + +[[files]] +file = "config/ars_nouveau/glyph_fangs.toml" +hash = "3cb605cd2bdafcac9e7ff83818a946e62a28ace7571eb63745c5f16df1a3bc2f" + +[[files]] +file = "config/ars_nouveau/glyph_fell.toml" +hash = "8ac6ca56815fb7f4e9d7398612ee5c2103de3b755f666436811b6e86ba112df2" + +[[files]] +file = "config/ars_nouveau/glyph_firework.toml" +hash = "ee1c326842d50f891722d249c3cc748e24c4d699de63b7372b94fa3c16a3b9d4" + +[[files]] +file = "config/ars_nouveau/glyph_flare.toml" +hash = "e3fdbf6d2259912d7946b1aa06810d858fd1b09cb5ff64a3be98c6135dd08948" + +[[files]] +file = "config/ars_nouveau/glyph_fortune.toml" +hash = "b77575d4f30a85f39a7f437e8645ce1ca853f01f21102cf1b7183f5f73151d2e" + +[[files]] +file = "config/ars_nouveau/glyph_freeze.toml" +hash = "e1d201e03b3b5304b4e9fbbe2194f401b869a90465698adf178f94fa33e727a4" + +[[files]] +file = "config/ars_nouveau/glyph_glide.toml" +hash = "ab942321448797f678e8207c48dec942629e14f4867f6776b518e86c0f3d9242" + +[[files]] +file = "config/ars_nouveau/glyph_gravity.toml" +hash = "dd8c240e8a845adec76c7abcc4801a58cf8ccf7ebf15cd780d420710ae50caa0" + +[[files]] +file = "config/ars_nouveau/glyph_grow.toml" +hash = "8a88cdc272a08cbc3ee7ad8c51f6fd66be5c60056f5851d4caeef99a134224cd" + +[[files]] +file = "config/ars_nouveau/glyph_gust.toml" +hash = "ca104eb31e28eefdfd1ac562e5292d455d773610151c9f77e8fe6878bb63fd1e" + +[[files]] +file = "config/ars_nouveau/glyph_harm.toml" +hash = "0eed6270e616f8f0633022b5c025dcb50885039005f474291295c8ff511e4550" + +[[files]] +file = "config/ars_nouveau/glyph_harvest.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_heal.toml" +hash = "f3f2c03173b7b3510247ac6c26a6d88d59dd876a47f04ac5e11868efd46eac12" + +[[files]] +file = "config/ars_nouveau/glyph_hex.toml" +hash = "2815f61974ad3d0babc30101dc8b96abdba929300409e48ef37eb8b58074ec4e" + +[[files]] +file = "config/ars_nouveau/glyph_ignite.toml" +hash = "488ffaaa99d16ced5e6c7df6efd298371676d0a075802645ded8c4ba5dead890" + +[[files]] +file = "config/ars_nouveau/glyph_infuse.toml" +hash = "352b331949d65d72830cc78a71a3b286d51a0e4686f5657c2da346da3842e6cb" + +[[files]] +file = "config/ars_nouveau/glyph_intangible.toml" +hash = "18f5d54e8dfd0f78077edd1bf243bb72677641194d449f795b86e5b7fcd3124b" + +[[files]] +file = "config/ars_nouveau/glyph_interact.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_invisibility.toml" +hash = "c121346027a2f6b7f9b7479fb9a7f8083063fde61b5a821994040ea17f42e331" + +[[files]] +file = "config/ars_nouveau/glyph_launch.toml" +hash = "b59e8a0e299cdb31d60e87d4a0d9a1bb45501dbcca886d52dbc1e3888c4e1d55" + +[[files]] +file = "config/ars_nouveau/glyph_leap.toml" +hash = "848588b049b76173b0348ddc2e707b07941d0905d60e271db21a894aa0f41080" + +[[files]] +file = "config/ars_nouveau/glyph_light.toml" +hash = "7426254e6c19ede471aa92ec90640f6d5e8b9448ed6148c86a5b02ca29f1ef33" + +[[files]] +file = "config/ars_nouveau/glyph_lightning.toml" +hash = "02c7554a728cbf1f9f9c1280ada85554619a4b3e45c5112ce159759b8a86881d" + +[[files]] +file = "config/ars_nouveau/glyph_linger.toml" +hash = "fd4f53706fa152871e6f8754cb1ef5c53391e5fafc7ee6af69368bf12124c98c" + +[[files]] +file = "config/ars_nouveau/glyph_name.toml" +hash = "ad7f63467f3d933793aabcb89084910fd70893982d581bfd5c1e62fd5724420c" + +[[files]] +file = "config/ars_nouveau/glyph_orbit.toml" +hash = "f992f7231d43f942ec519e897ff59eedecacb6bd7e3bdca868d2f1da21ac9fb1" + +[[files]] +file = "config/ars_nouveau/glyph_phantom_block.toml" +hash = "9c337b6cbe80df35e42a1df5ae123161f4fdfc4b389a6babf5b54f53723ded86" + +[[files]] +file = "config/ars_nouveau/glyph_pickup.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_pierce.toml" +hash = "76d685e75d70095c7563cf8e63992eaa3272eef7570f9510eaed6d8d50626199" + +[[files]] +file = "config/ars_nouveau/glyph_place_block.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_projectile.toml" +hash = "c7e0372e93810fd4b0f0d6dff86d6314c2fb41b541d3c4f88e30100b91ea44d4" + +[[files]] +file = "config/ars_nouveau/glyph_pull.toml" +hash = "1b7d408a603bfeeb73c33e033b25e3552b3ff139ce308cb3e776adddf00e2070" + +[[files]] +file = "config/ars_nouveau/glyph_randomize.toml" +hash = "b9e929fdb19420048911aa4a1c64e14377504998deff61096ba86aa0d0f07720" + +[[files]] +file = "config/ars_nouveau/glyph_redstone_signal.toml" +hash = "06000460f30ddc139a3a3d94e208919b907a6003dbe6b946b93e15feb2db1686" + +[[files]] +file = "config/ars_nouveau/glyph_rotate.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_rune.toml" +hash = "ee00d3505701989b055110fa5e3ef0a59facfda3bd522b263be91ecfb9c75e61" + +[[files]] +file = "config/ars_nouveau/glyph_self.toml" +hash = "4a7113a4fdd162532673239d34f44f033136c9df55062c433aaddcbcbbb70172" + +[[files]] +file = "config/ars_nouveau/glyph_sense_magic.toml" +hash = "c1acd2ce38428c15ae9b4e1231c875554d8e70958f1b83958bdf098e4ab5f0f0" + +[[files]] +file = "config/ars_nouveau/glyph_sensitive.toml" +hash = "c48949045229a5e6f43cfe89e6738bef557d3ed5943b4ce1fee7b02a2c075e8c" + +[[files]] +file = "config/ars_nouveau/glyph_slowfall.toml" +hash = "c121346027a2f6b7f9b7479fb9a7f8083063fde61b5a821994040ea17f42e331" + +[[files]] +file = "config/ars_nouveau/glyph_smelt.toml" +hash = "ec6c6791d75a1d6ba3494c3aaea0cb2b5a86cc816f005324a5c3265a8fbd0575" + +[[files]] +file = "config/ars_nouveau/glyph_snare.toml" +hash = "3e58c2e6f6c3309e73b33f580accb3f4d680579d83ed48a4eb43b32df29a72c4" + +[[files]] +file = "config/ars_nouveau/glyph_split.toml" +hash = "171081a485f6ac848e1a3fe44b677a042025b19b03702ff4989b4ca347355b5c" + +[[files]] +file = "config/ars_nouveau/glyph_summon_decoy.toml" +hash = "79231b4d8c850ddd9848d63dcdfc3041813444fb7c6629447d1aa995b941dc23" + +[[files]] +file = "config/ars_nouveau/glyph_summon_steed.toml" +hash = "558feeebf1ff1c3dd0218fbf9edd485c4b4d014968d6b5775a5450ab053cb5ae" + +[[files]] +file = "config/ars_nouveau/glyph_summon_undead.toml" +hash = "60d6ba6ac30f84475077898abab8f87a792a91ca53dcea7ceb98e1f47ab40b3d" + +[[files]] +file = "config/ars_nouveau/glyph_summon_vex.toml" +hash = "60d6ba6ac30f84475077898abab8f87a792a91ca53dcea7ceb98e1f47ab40b3d" + +[[files]] +file = "config/ars_nouveau/glyph_summon_wolves.toml" +hash = "906f4b2e3d3dd77f0009db1ce6257d76e9de53b624f2d1cf98af5207180d8f00" + +[[files]] +file = "config/ars_nouveau/glyph_toss.toml" +hash = "3922646fe38cd90a469e2696ed86ea610ae8c68971ed2320d882284303ca4226" + +[[files]] +file = "config/ars_nouveau/glyph_touch.toml" +hash = "36f30ab737eab4619bc93e3ed201ac9be1ceaca5e93ff3a8d392508acee71774" + +[[files]] +file = "config/ars_nouveau/glyph_underfoot.toml" +hash = "8b55581276c0cfc770326a50d49583b699c851dc71f3fcae0eab08dd81934b1b" + +[[files]] +file = "config/ars_nouveau/glyph_wall.toml" +hash = "911c6afe2ea64729a04e87215b4779706492a69ae3a9826079a83f4f8efaed46" + +[[files]] +file = "config/ars_nouveau/glyph_wind_shear.toml" +hash = "39bb68ec82deb3e54bd969dc1c3e1c21a33e8afe1343011897e11eb02f01bbbe" + +[[files]] +file = "config/ars_nouveau/glyph_wither.toml" +hash = "2815f61974ad3d0babc30101dc8b96abdba929300409e48ef37eb8b58074ec4e" + +[[files]] +file = "config/ars_nouveau/reset.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/ars_nouveau/rewind.toml" +hash = "f8f3b7ce795163c67eac874ccc94e9d8f75a4d29a22e777a7737926b084cc22f" + +[[files]] +file = "config/ars_nouveau/wololo.toml" +hash = "ee00d3505701989b055110fa5e3ef0a59facfda3bd522b263be91ecfb9c75e61" + +[[files]] +file = "config/arsdelight-common.toml" +hash = "f5761cf3a8debeb13a8da1eca8fea8293117669efda7c8582aa7e4ebfbfa949f" + +[[files]] +file = "config/arseng-common.toml" +hash = "e2f591923558d17aa4bd65859e30b388083de43a58b7642dbeb4863e53d7d145" + +[[files]] +file = "config/arstechnic/glyph_generator.toml" +hash = "6abe3d14b0965bb56fea23c60f50071acc0d4f26eb316770f4b6d293abc400cb" + +[[files]] +file = "config/arstechnic/glyph_wrench.toml" +hash = "9f6c3d55ecd06f0df3124b46a3316fd5e3fa71c5294ecdcb9b944496b531fd63" + +[[files]] +file = "config/asynclogger.toml" +hash = "e0804713763b355f2d434ae1c930dd9fe5e720db313ca68fad3ea32c208b1d59" + +[[files]] +file = "config/attributefix.json" +hash = "38169f3e11b8958a05b0853320bf29ceef7cc554dc3083f8ab3ff355b55df5d7" + +[[files]] +file = "config/attributeslib.cfg" +hash = "fe85b449a9f8e1b5b74799822840aedfb5e2b8e269cbb1503f6d4c12a7a47fe7" + +[[files]] +file = "config/azurelib.json" +hash = "9f136b36f13fb0f7d0de277ecf6d933914c7dcc3f646136cd09a68e904659109" + +[[files]] +file = "config/backpacked.augments.toml" +hash = "1fdac7b9d3b8e35f6d6bdcb4ab8a2f9014aa134c0f1fe434c57702bc3e7afbfa" + +[[files]] +file = "config/backpacked.backpack.toml" +hash = "937cfd5361a2bc0f2cd68a1c5c5fbe4cdf5772db35ed3c16ecc5711fc23700e4" + +[[files]] +file = "config/backpacked.client.toml" +hash = "3ea1d586056d5aaf7c4814dabc89651c6470ecf2bcce69fabf4f882b319ca9c0" + +[[files]] +file = "config/backpacked.server.toml" +hash = "0c51b729498f72a8e7e0f7add9732b481c5678c55321fe2d4e6fae4aae9b6c2b" + +[[files]] +file = "config/badoptimizations.txt" +hash = "9f56bd826fea6a8c6d68db34b09218e9c66154b82854150f954ddf56ec80f439" + +[[files]] +file = "config/bagus_lib-client.toml" +hash = "7fc6abc62630b2624bc7f5ecfad2796425ebaaba49d1157041d51970de1ec5ab" + +[[files]] +file = "config/bagus_lib-common.toml" +hash = "f10af1f0cfbc5835aa297a43b2d06d3d565c6b3b430a6cd51d7b7a9067f9d81c" + +[[files]] +file = "config/bakery.toml" +hash = "2be13ae4a1ca9b9183001e25081825805382379fd05b96891c647a8f1c3b03d8" + +[[files]] +file = "config/balm-client.toml" +hash = "4719b58de048b9b8666d2d5f3b880361a5bef0419420804355e987d96fa9e9e1" + +[[files]] +file = "config/balm-common.toml" +hash = "6624945ea96137093a33fccd8ca6a5f62f1eeca1c41e3dcd067d0665364ed6cf" + +[[files]] +file = "config/barteringstation-client.toml" +hash = "284ee1c6a5a7bdce7cccb40f818c89f66c51c95d45fc81201c537715c9e5becb" + +[[files]] +file = "config/barteringstation-server.toml" +hash = "05d6fec280c71adee13f88e336ee4ed9a572803337754c939946851fb93dbb9d" + +[[files]] +file = "config/bcc-common.toml" +hash = "df965f7cde753913e54298bbbd450f27b7a7737e7996fcb6d220b57bf477f662" + +[[files]] +file = "config/beachparty.toml" +hash = "f40a82d8d40961f42831e3aa385aa69fb2fe8b678310f393792c301769238904" + +[[files]] +file = "config/betteradvancements-client.toml" +hash = "2c5eba79cde20bd1658a43dc0527e5d45b2e462d2f065e228527eee8513446be" + +[[files]] +file = "config/betteranimationscollection-client.toml" +hash = "41a7dceb6285d755fdf2623414564ff1153e03a740e223a9fb996180ba882351" + +[[files]] +file = "config/betterarcheology-common.toml" +hash = "b2729a5916c5aac214f67337d1d38ee7767e1e14b7f2dcb7b7371a9509829a96" + +[[files]] +file = "config/bettercaves/README.txt" +hash = "e6f25132180339d5b7f53c1f5473f28cdf743f76292bc8f87142e4b0300e0f2c" + +[[files]] +file = "config/bettercaves/forge-1_20_1/README.txt" +hash = "1dc29f3ad9f62887f2667aeaed28c3fd3a2520055382ecb3636e3cb9ea563baa" + +[[files]] +file = "config/bettercaves/forge-1_20_1/liquidregions.json" +hash = "ad0e43cd1d8fff16d76ff6036699bd67598ff8bc18220b7e8e951245c92cf139" + +[[files]] +file = "config/betterchunkloading.json" +hash = "5c77c279bb5b3f74ae8ecd8cace949ff87276f1a6753a0c5595721802b209c70" + +[[files]] +file = "config/betterclouds-v1.json" +hash = "f356532d675bc64ab1484b91b8d5398b56a75d964d33e1f9155559d3be73a0f4" + +[[files]] +file = "config/betterdays-client.toml" +hash = "af6ff3ed6f8674eb8a5cea78e2082981bb2e2ebb6fa7d51af36fd2c42d4d5526" + +[[files]] +file = "config/betterdays-common.toml" +hash = "2479d4948c86acf514bb9734888dcf59335741a26fe52663470ceba6dc253697" + +[[files]] +file = "config/betterdeserttemples-forge-1_20.toml" +hash = "c8fba68f434b5288b51476e67cf24d15c3809c6cf4ad37ea24ed877cfa783dc4" + +[[files]] +file = "config/betterdeserttemples/README.txt" +hash = "3646bc39be8c42a1432506e77721f3b963d33948d4bbd4cd5a10703834979116" + +[[files]] +file = "config/betterdeserttemples/forge-1_20/README.txt" +hash = "80ba474fdd1912739a1dc3326de6539ccfceb9d5c97f540131b567e295a7b112" + +[[files]] +file = "config/betterdeserttemples/forge-1_20/armorstands.json" +hash = "4f7815cab9c6771ec8acdda394710f725dd4f7ea1c80fba1a615a47d57ebe4c0" + +[[files]] +file = "config/betterdeserttemples/forge-1_20/itemframes.json" +hash = "57a7c232db8f88d3cc507a3ffcc4a23a750d5774e1a3aac9815d2204b21819d0" + +[[files]] +file = "config/betterdungeons-forge-1_20.toml" +hash = "61bddf5e2cdd86d220a56c7e79de8f49a16b269294e859a884a318834009e6ab" + +[[files]] +file = "config/betterendisland-forge-1_20.toml" +hash = "ce07dcc8f1e6d751f1c79f03ea7132ad06cac0d21e2a5cfd01eb3a7dc265cb80" + +[[files]] +file = "config/betterf3.toml" +hash = "d017c4fb4b31f558bb9439194471fc9928ac01ca03dbaa1f11b27cd765923115" + +[[files]] +file = "config/betterfortresses-forge-1_20.toml" +hash = "f2f62d4aeb0accb643062ecd12a24e5697e99a50bb8a258bb31d1b82e60636bb" + +[[files]] +file = "config/betterfortresses/README.txt" +hash = "70c4264947f42dd780d476f3d36966c2d01c23d6f089d98c317f8a820e4040ee" + +[[files]] +file = "config/betterfortresses/forge-1_20/README.txt" +hash = "1175dbf9cd2e7c91b1c852a51e3c0203c68484917e877465b283e2370ad62864" + +[[files]] +file = "config/betterfortresses/forge-1_20/itemframes.json" +hash = "f42c0ff8e0ba956cbf13fbe9799ee3ad271405d8d684223384bc3475226fd1a3" + +[[files]] +file = "config/betterjungletemples-forge-1_20.toml" +hash = "0b6922c44eca9364bc0687d6b757342836c226e53114e30dd619a40dd21b08ff" + +[[files]] +file = "config/bettermineshafts-forge-1_20.toml" +hash = "1d7adabcca64c0d0dca4494cfee67081cc2a3071e734594b2afe56559467211c" + +[[files]] +file = "config/bettermodsbutton-client.toml" +hash = "8aa80f4bfa134b53ab51d3a8c272f31facc5abc459fac5b4954e9bf0c8974f20" + +[[files]] +file = "config/betteroceanmonuments-forge-1_20.toml" +hash = "3fc30fb36ba5fc5cabbecb82aa5a9800d7e30539212ec88246be179ede48f382" + +[[files]] +file = "config/betterstrongholds-forge-1_20.toml" +hash = "b1a6d4c96bbfc7bd824427d25bcf41a3e165f156c61eb5fa5351928474a7a635" + +[[files]] +file = "config/betterstrongholds/README.txt" +hash = "13c5f6bd52bf778533a100453d8b295802f923109e0a2951446a00674113700b" + +[[files]] +file = "config/betterstrongholds/forge-1_20/README.txt" +hash = "5aad271e60a03218eb5207dd78df8d1d36c676f212bf823701e33646010d2f19" + +[[files]] +file = "config/betterstrongholds/forge-1_20/armorstands.json" +hash = "f7c8f0fd0970e3791bcd9fa3a0d3f6f5b50286f8ac2ed7035aabce3cb1ab60a1" + +[[files]] +file = "config/betterstrongholds/forge-1_20/itemframes.json" +hash = "4bd1062612bf61ee604d79d0bb339f8ff70cd64998b1544b582d6dcaedc6578a" + +[[files]] +file = "config/betterstrongholds/forge-1_20/ores.json" +hash = "621b0ae2f6225e31548b59ab21ba1be137f427a294789b467c40d33c8cc86ad0" + +[[files]] +file = "config/betterstrongholds/forge-1_20/rareblocks.json" +hash = "eee83286c8d9a76bcbabf0447331f929689b8a22b7c72aaa46096a8b4c5135cb" + +[[files]] +file = "config/betterthirdperson-common.toml" +hash = "1cae9855e777afbbdca5cd858bc66d10069c902fbd1b8d073cbedace3fa71779" + +[[files]] +file = "config/bettervillage_1.properties" +hash = "b1c936747f5943d987fa64ec70c661175e41f33edd0ed67dd50031ddf7fc7b0d" + +[[files]] +file = "config/betterwitchhuts-forge-1_20.toml" +hash = "7867f84eff68a159b630c1f1be013b60e88be0ee07f4fb1371f7823f494124c8" + +[[files]] +file = "config/betterworldloading20.json" +hash = "f610df0d212f97241d8d80f3ca5186e517acc32fd750ca71d07ed8b410b3e727" + +[[files]] +file = "config/bhmenu-client.toml" +hash = "295b4fd4085b0af8cd98d26fe8b83897f7f93a16a78d1cd054de2999e6d8766d" + +[[files]] +file = "config/biggerstacks-client.toml" +hash = "e0339204399acca229cad4709bc0c430eba0bfc9353cb7c276af9a3791526e92" + +[[files]] +file = "config/biggerstacks-local.toml" +hash = "8e065a073ddbf8d908618b9513f1c42ad9baf0b1e0ae69c17cb477a91b156280" + +[[files]] +file = "config/biggerstacks-rules.xml" +hash = "36a80fc8e118c33e84387f10765c7a6758451a6a73e9f3b73b072ffd998d7d9a" + +[[files]] +file = "config/biomemusic.json" +hash = "9f69bb2097d2e2f18d0ca77819f42fd53e5dea45adb00191b23f34ce24e75828" + +[[files]] +file = "config/biomeremover-common.toml" +hash = "ad3bcc5d56ed8778b0d814d39a6470602e39f73ff87d5029de34f191ba1dca89" + +[[files]] +file = "config/biomesoplenty/biome_toggles.json" +hash = "6e81cf8f8ffd55004413d05e2579a63613d39a180bf5a4ff67ffa98ec44b1aa9" + +[[files]] +file = "config/biomesoplenty/gameplay.toml" +hash = "4d2c61e691eb5e07dbea9c8dd3b03073911d01558ff741073561b5b4328f87fd" + +[[files]] +file = "config/biomesoplenty/generation.toml" +hash = "9f6f4e0b8cebc8210273e49a9b436c3e6a5bfb5695c2b44ce346d56b96ef9996" + +[[files]] +file = "config/bloodmagic-client.toml" +hash = "797d06917505ea9abaa843524f885960f5d182c20932a7c2e958f13925395d35" + +[[files]] +file = "config/bloodmagic-common.toml" +hash = "07c2526ba145be9a24163c4e760b1573349af60c2123c8ee4a8c0114bd6d2f61" + +[[files]] +file = "config/blue_skies-client.toml" +hash = "d32b06c31421f969e6add4d4dff2bf2443a42a11125a02410d29f4c90073f6ff" + +[[files]] +file = "config/blue_skies-common.toml" +hash = "2f7939a0f248dac38bc613b05992d9dfa73fd6e8e2150d328d2bd10d3706394c" + +[[files]] +file = "config/blueprint-client.toml" +hash = "997a6c4a022023ed5dbb4962667825c48c11b1dfd5b920a702e3cba7e2a4758d" + +[[files]] +file = "config/blueprint-common.toml" +hash = "54b999cd4b8859787eec9d1b8df99b5e318030961fe7bf444dc31727de8a69f6" + +[[files]] +file = "config/blur-client.toml" +hash = "6ab6714bad3c0cfc510332ce2624c6cbe9c9063cbc635511ee336e04d235f0dd" + +[[files]] +file = "config/boatiview-client.toml" +hash = "d45af4bac4a8cd85ccbe6007c17c202a9043e9fe2f99442ce221afb21f8a8cb0" + +[[files]] +file = "config/botania-client.toml" +hash = "53829ecdf8ecb1b0616bf528db9e3fea9006dd18a05d899bd69eed4a00f18d77" + +[[files]] +file = "config/botania-common.toml" +hash = "07e55bb5645a21e30392969aa5b2f8295a2bba660942cb5afa5b34a21ac65dea" + +[[files]] +file = "config/botaniajei-client.toml" +hash = "4391777b1af72a226ff3e64445c9e074ed6fdd3f877c7b2bd9f10ca4cbc9e112" + +[[files]] +file = "config/botanicalmachinery/client.json5" +hash = "87700c0b066ef0ccbafb5cffa0fb5d9610eef68428a80774a822e372286635a0" + +[[files]] +file = "config/botanicalmachinery/server.json5" +hash = "ca8d006698d05818c044eb33e356b1d5597484cf089f1f3ed43efea0ea394b49" + +[[files]] +file = "config/botanypotstiers-common.toml" +hash = "452068ec6ccb237aeb5cc0a79dd9204fd7a4589577cda4fb7099cc2db1f6656a" + +[[files]] +file = "config/bountiful/bountiful.json" +hash = "d9d47ef737d069382da1d2bb2b16d52a0f27401fd5c0992a62b7e601b0e0eeea" + +[[files]] +file = "config/brandon3055/BrandonsCore.cfg" +hash = "1d56ce851586b9e31b0bc40ceacce9a5f05d6568d40d05fbc6c7608d3001a7bb" + +[[files]] +file = "config/brandon3055/DraconicAdditions.cfg" +hash = "3d0a1c4d3d7bf64994c6b35fcfce21c0633b7271650f33a5cb1346ad089a38bf" + +[[files]] +file = "config/brandon3055/DraconicEvolution.cfg" +hash = "bff0b6fedcf9e1259b5d93883f1d38c7dd2404d8e284556e77098e70fd051885" + +[[files]] +file = "config/brandon3055/ModuleStats.cfg" +hash = "f0a816673cd675d134f591070451b521fb3cc2f0aee86b0b110b1fa3cfa49772" + +[[files]] +file = "config/brandon3055/contributors.json" +hash = "f8ea9acca35ec7a715a2926c048e57522d4e18e4cfc6d1c5106271f8f0f80005" + +[[files]] +file = "config/brandon3055/contributors.json.etag" +hash = "9389857c4aff2b270391684ca71b8767c1bf03280f3abc23865b76f1333fd19c" + +[[files]] +file = "config/brandon3055/hud_settings.json" +hash = "12f7829b4f2a7073226189b5d090797ec5c1a6a35ce5767fd22e4afe62cbc646" + +[[files]] +file = "config/brewinandchewin-client.toml" +hash = "425c196faa3e26bc4a04b2cddf560c0f238acab72590fe046aace789d532bdc4" + +[[files]] +file = "config/brewinandchewin-common.toml" +hash = "f7ebe31b918fc9e8894cb196abcec57e5a6e364e8a49f2c90da8ac815b6455f4" + +[[files]] +file = "config/buildersaddition-common.toml" +hash = "e76f7334e7d8b7ea595c9bdca6192009798666200105e0284c9c210d8e2568b5" + +[[files]] +file = "config/buildinggadgets2-common.toml" +hash = "cd34bf34ff49c47333b435be7523979037df203f9572bfd0ea5b5f961c86445f" + +[[files]] +file = "config/buzzier_bees-common.toml" +hash = "d5ced1e70770f0b38f9ff0ba4d394ba5ef3ba9cb3e9701808abbc26858bd3a99" + +[[files]] +file = "config/bwncr-common.toml" +hash = "b758120a06d5baa142e34cca95de36088b47ac0663e2543dc9023789b59e418e" + +[[files]] +file = "config/c2me.toml" +hash = "4b21e62742a0c9f83b84ae5cec2b0638328c63750f5a24dacda0b3cdde13c177" + +[[files]] +file = "config/callablehorses-common.toml" +hash = "d3ff62c6e589a63ff28eb6f3ba698845fae8541e12928764e205adffd7930844" + +[[files]] +file = "config/camping-common.toml" +hash = "8b8e71537a06b8588512af35efb3a8b108f33c14c2ef51b1a4e7200cb2f88b7f" + +[[files]] +file = "config/canary.properties" +hash = "a37eb7f218ab61f3277a103a85c5bd14ff0abe0dff94e17883bcbb5ea28a3855" + +[[files]] +file = "config/carryon-client.toml" +hash = "099145bca17d3a362f8c5078438c29a14db444ee354757d42aff232094e8a10c" + +[[files]] +file = "config/carryon-common.toml" +hash = "e309110397629770f5080b9ba81ab26e9476250c4372a051ece7c13557370f29" + +[[files]] +file = "config/cataclysm-client.toml" +hash = "89e3830c10eb3f84ea51b16e9e93fce1aaad7f6eaaf48baf25c19a6e20719757" + +[[files]] +file = "config/cataclysm-common.toml" +hash = "a59a4c9fca43b7e46a3ad90878670f7e62c5a8e7f2a7213d674b26ef9653558d" + +[[files]] +file = "config/cataclysm.toml" +hash = "5766cfa9b261807745fd9e28bfd3f2629dcb34f68e7a97f31b1e62e0ce984305" + +[[files]] +file = "config/cataclysm/amethyst_crab_spawns.json" +hash = "f729be2a0bc7bccc88cde40464f990d6074bfcf52a0d1d6719d8ebcd63c496ff" + +[[files]] +file = "config/cataclysm/coral_golem_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/deepling_angler_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/deepling_brute_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/deepling_priest_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/deepling_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/deepling_warlock_spawns.json" +hash = "5d14a33cfda3d4bf6b694ffb68acf01389d46e2882635c22fac80ca1b643605c" + +[[files]] +file = "config/cataclysm/koboleton_spawns.json" +hash = "5831a4da569ac4fb3d7d5396967281b8bdad765c25cf3cd5c6a5d708952c2b16" + +[[files]] +file = "config/cataclysm_spellbooks_config.toml" +hash = "b2faf27d78152af7063769e55f3399eef8f8c394bb00cf5c3a3dc604fcbabab0" + +[[files]] +file = "config/caupona-common.toml" +hash = "4bf126f8a6aec7940ab9fbcb9c046773c9bd9940db255de09b8fc6e267477e69" + +[[files]] +file = "config/ccl.cfg" +hash = "d0accd9879a8d31db8bdb55163dbb1b1668890a4558ac0689f807c6e207d1d99" + +[[files]] +file = "config/cerulean-client.toml" +hash = "a62607857db7a6573ffd3e0f0cf3406b374599cd313694fcf81f3d6265b94fe9" + +[[files]] +file = "config/cerulean-common.toml" +hash = "cd7c1e4b664b5177f19dd5b838680f9bac4b86644b7817fa600a65b99fd7eb62" + +[[files]] +file = "config/cerulean.yml" +hash = "d9b33f8022bfa4b9818b3abcc197414c1e88272d21b0df4a01db016c7887d5d2" + +[[files]] +file = "config/chalk-client.toml" +hash = "ce3f311460e4198f74c6a9f8bb8ad0ddcb12f00d20760f3edff929d666815392" + +[[files]] +file = "config/chalk-common.toml" +hash = "ccdfe30e89e460a8ee440a3b2c19e1cf3b4292c0691e9689db32b680c2c9366d" + +[[files]] +file = "config/charmofundying-server.toml" +hash = "e4c5841a10d5024f4ee31cf46b201233a385aaf9badf314d9ebded3feb12d356" + +[[files]] +file = "config/chat_heads.json5" +hash = "787a65e2b51049dd08ce4fc41e3deff1465089e24c41ea349cccbac1b555fd4b" + +[[files]] +file = "config/chatnotify.json" +hash = "80052a04acbb99107ffb2af8b6b5d56f55eef7afaf38dbd1f3a11eac0cded8dc" + +[[files]] +file = "config/chefsdelight-common.toml" +hash = "e82c9444a81f9378e1f497c27863f7a774529011453ff0c7c37d6121974629c4" + +[[files]] +file = "config/chisel.json" +hash = "f30375505d2b59c55c43f5157f53c97251c1ad40aa64dd210a38b80c9cdd7d0b" + +[[files]] +file = "config/chiselsandbits-client.toml" +hash = "8f56a9f6d45c076a1a0b52235004f62832d3703b3043544bab9de88204eeb475" + +[[files]] +file = "config/chiselsandbits-common.toml" +hash = "a1243530aae0f4f4a2f6dd0846cc0caeaa5efd34317cd729ff424656e7fdf4e8" + +[[files]] +file = "config/chloride-client.json" +hash = "ed8c75900f5811e00e50f28f736fbe298e1779831fe068c4ca1e6f6dacd8873f" + +[[files]] +file = "config/chunksending.json" +hash = "e589c5988aa0f23e08400df47ef156a61eea1978f2161ba014da278c28a60ac7" + +[[files]] +file = "config/citadel-common.toml" +hash = "0a41518641bbb4133fc61b934e8663ae5271ffd8190a281e5b35d1efd97fb3e3" + +[[files]] +file = "config/citresewn.json" +hash = "f40a21e858b346630f19d8b0724fe94473ae3db46f856fa8338da5e13364ad18" + +[[files]] +file = "config/clickadv-common.toml" +hash = "3b8b3eaea923506879392cf068bb4fbdd01cbbd0f0160eedd0b4f04a25f45ae5" + +[[files]] +file = "config/clickadv.json" +hash = "866158b110490b25e3e29ef10543296316a78e16dd25870c03a660affe67020e" + +[[files]] +file = "config/clienttweaks-common.toml" +hash = "fea5fa4a3b1d5d717a124cea3a70314ce8a85eee54e5e0ebabce48c57989ae65" + +[[files]] +file = "config/climbladdersfast.json5" +hash = "cb3a4cd5b4624a393f443cd623c8ae4d2c4195bb9d72d61eff506287afbf63e5" + +[[files]] +file = "config/cofh_core-client.toml" +hash = "49fd3b3cb48eb63b75241c52361ef9c597e97aefa2ebace628a2062511a76757" + +[[files]] +file = "config/cofh_core-common.toml" +hash = "a9c6ee5c60e634126d5b5b462f088a943beb73f6a0afc62570c59499b98a9a0f" + +[[files]] +file = "config/collective.json5" +hash = "92809d098b5efeca95c37ec4fef9184bd169160d18efecf81f395c4030c0f83f" + +[[files]] +file = "config/colossalchests-common.toml" +hash = "04c4aef87003c0c4168c747f17ba05764331ec1049742b7122438665fd994f25" + +[[files]] +file = "config/comforts-server.toml" +hash = "04e49bd0851cabb26a7177b014dc7f5622b4e817f6fbdeaf5c9f53030bed8a3a" + +[[files]] +file = "config/commoncapabilities-common.toml" +hash = "46d688d2225d63bbeec8baea28276a11696c1e449783c31cb670adbc0aeb06e4" + +[[files]] +file = "config/compactmachines-common.toml" +hash = "dc3c5a5d190d6281eddf4f987dc32cc0543dc89547358e1b3c150f7f94746651" + +[[files]] +file = "config/compressedcreativity-client.toml" +hash = "170b5fa335241f2fef18f151d593ff70fd98ac8646a23c3c3763bb48b49824ed" + +[[files]] +file = "config/compressiumblocks.json" +hash = "f0910f44e3a98eaa2effdef12a983e4e8108ef293c4a0425bb042b0038324ede" + +[[files]] +file = "config/computercraft-client.toml" +hash = "74a4490a9e22547861cccba0a9cf729be26b2a482ca3fd2c694ea0f4d08e77f2" + +[[files]] +file = "config/configured-client.toml" +hash = "fded2b62bfa868e8f23007991e6f192a08f7d73c87ebd34f10a5b08bf1c26ff0" + +[[files]] +file = "config/connectivity.json" +hash = "6b95731807c56659d67f5c439439493834d0c42ad33baf23ef60d45bb7e73202" + +[[files]] +file = "config/connector.json" +hash = "a02f3e3f57b4882122a62611a9335d2341e910e705f0e00546516ddfc6143865" + +[[files]] +file = "config/constructionwand-client.toml" +hash = "49dab16d69ef53b3846431d403918762dc0b22a4efba307c80894eeec64a1118" + +[[files]] +file = "config/cookingforblockheads-common.toml" +hash = "e47daa4f9c1d08b1401767e1f5b44cf2ed1284d737338a1133dfde43ded8a9af" + +[[files]] +file = "config/corail_recycler-common.toml" +hash = "16032991d6e883ead3e2f7a1e41ae9b0f6aa8c9510669a79ebbb231733a867b3" + +[[files]] +file = "config/corail_recycler-server.toml" +hash = "fb6216e7d209e5e02544580dd6de28254fd74ed507991038c30449c2bc4c2f0f" + +[[files]] +file = "config/corgilib/announcement_config.json5" +hash = "37f3bbf0adb04001cfb813938d4ace3c4d8f62021dbffecc562f2c1ebcfae56c" + +[[files]] +file = "config/corpsecurioscompat-common.toml" +hash = "d64eeb88abddcdbb3463fc4eb95fd8a69761a1fa1c9219d8b902a58b6deed196" + +[[files]] +file = "config/cosmeticarmorreworked-client.toml" +hash = "1f09257bc11babe19b5e78bce02ed7dcade4efab2a9353008bacb96ddd6bd75f" + +[[files]] +file = "config/cosmeticarmorreworked-common.toml" +hash = "ad632cac4e88a5138ae60ff7304bb3586eb93e9d3b34f241e5d532c1e5d19e7e" + +[[files]] +file = "config/craftingstation-client.toml" +hash = "19dda85dc0e9f7443429fd7b95876365c4878e75aee66b5bd08708514f1577ee" + +[[files]] +file = "config/craftingtweaks-common.toml" +hash = "7ac94e5c0a1bfbe7611666c05491a2da0009940cfa6e7886d6a4f6051f672c09" + +[[files]] +file = "config/crawlondemand.json" +hash = "0162d8c5bebe3f6d13f638e768418d7c604b1689f4687148b53171f379ffd41f" + +[[files]] +file = "config/create-client.toml" +hash = "8c10d0f7ce0d1a451cc9b3ed18caa98b03ba630ac44375fb84a08851c0e81095" + +[[files]] +file = "config/create-common.toml" +hash = "36a4d9f5da68f6801b83ce0c4a1a8805fbeffb0dd997f2d405465d7774522296" + +[[files]] +file = "config/create-stuff-additions.toml" +hash = "8ed87c8d5f1b178160590380b2e1a41513fa624f2b8a834dcf9a20ccfd01b0ff" + +[[files]] +file = "config/create_better_motors-common.toml" +hash = "5a9ef74376cf2d3af0f8bcba291b18c554d6087808df233ba15102e56b1757a2" + +[[files]] +file = "config/create_central_kitchen-common.toml" +hash = "d769909a3c4ab55be032c8a07904bd870477dc443cdadb3464c8e30aedf3441c" + +[[files]] +file = "config/create_hypertube-client.toml" +hash = "758713575b187195367bcc8f0459b5e079c689eaa846556df5d452f1411a5555" + +[[files]] +file = "config/create_item_silo.toml" +hash = "6eefbf97d0f8dbc12e2c4115dfa9a1fb67bc416dd7c303fbb1a9775229f456b5" + +[[files]] +file = "config/create_kart-client.toml" +hash = "53c4446230eda09566c7e2838c30e7158444b420fdf48fad0c35c87e61b55c34" + +[[files]] +file = "config/create_new_age-client.toml" +hash = "6c43ef83a82c7bfb82f3f5fc39bcdd9fe1cf56c76ca035971cc067f99153fbad" + +[[files]] +file = "config/create_new_age-common.toml" +hash = "2b94526494fc5aee3fb801a0e5827585d39f028b1383bae85cfb7ca18dae00bb" + +[[files]] +file = "config/createaddition-common.toml" +hash = "97d4858e0b7612ff5926755455d9e0c5b1b91b566e0b576027d16dd4b23d2891" + +[[files]] +file = "config/createdieselgenerators-client.toml" +hash = "517f456eab2ca28cfcd471b2fefb23641301a3bbf49fc5c4a9111914166aea93" + +[[files]] +file = "config/createdieselgenerators-common.toml" +hash = "3c9ccf9ddb67bbb16a6e59ee8bee9531dca9c07dd58bf12f5dde6d482a577dc6" + +[[files]] +file = "config/createsolar-common.toml" +hash = "be52637c3ee9cb89abd144c6dbd16a20ed612f6f50a0874524831e65de41e0d9" + +[[files]] +file = "config/creeperoverhaul.jsonc" +hash = "7ed52c7f86be331882f5c94d23c4842a12b206ac40c05ec628303d087124a003" + +[[files]] +file = "config/crittersandcompanions-common.toml" +hash = "f5de51f8729c971f1b41872bab965d7a6a45b29111d8d9e1340fbca1e4ef0e4f" + +[[files]] +file = "config/cryonicconfig.json" +hash = "bc17cffb9ac63d90331ffe1aa114611597cba47905883bbdc33f6e00d42c0545" + +[[files]] +file = "config/cucumber-client.toml" +hash = "d920a1787b62c4293c13f70e768fac4f5bf44cd8f7e51cbad251693bac8108bf" + +[[files]] +file = "config/cucumber-common.toml" +hash = "c611d28e90bc2321fa00f7dbcb86344f58a25c1c6401c7c12ca7d054d650d814" + +[[files]] +file = "config/cucumber-tags.json" +hash = "1bb17ac01282c58c36bce60f722d840910076a36fa5a4508ac43e25207ba5d2d" + +[[files]] +file = "config/culinaryconstruct-server.toml" +hash = "25ac30701c1d366099e8ca20599c0aa3ed0c2cb51e1d14a157ecd8bc4a41fffd" + +[[files]] +file = "config/cull-less-leaves.json" +hash = "f905b94a10cd01a281b422d7eda25a6850bd8e2d50997d640f223e43b5108262" + +[[files]] +file = "config/cullleaves.json" +hash = "6596cbe9453cc9cf69b4addfb02fe9d1501ffc9254ac047d9cd7a23bc6ce7dcc" + +[[files]] +file = "config/cumulus_menus-client.toml" +hash = "dad55e4be8ba3a1c9587e1441418151888c88d5593c108f1ffd5a4b3ab548e91" + +[[files]] +file = "config/cupboard.json" +hash = "937698438af081495eebab187013f66570218e1443f35db8a2ca0b4cb6d9638b" + +[[files]] +file = "config/curios-client.toml" +hash = "3903cd1fcf402a8c155f21bb581eb78d26e067537cb8af0b24bb8b8be63b3b30" + +[[files]] +file = "config/curios-common.toml" +hash = "541ee90994c1cf3d4e132df2ac3ff74004bc3952d3914ae843b5089a4dda8a95" + +[[files]] +file = "config/curiotiab-client.toml" +hash = "1828e9c111cda09285608f9dff145601846e45d545cc5dbdd13f05fde0ed42e4" + +[[files]] +file = "config/custom-micromaterials.cfg" +hash = "e135509de6da12c503afab230207e0306ecc8925f80e9ec1df4ce1dd3edb8a25" + +[[files]] +file = "config/cutthrough-client.toml" +hash = "2dfca01b0ad9942ed5c6cede6fd043ca4adf912f5edee1857a39216f461b4a3b" + +[[files]] +file = "config/cyclepaintings.json5" +hash = "6e90cdb4f40e00a310741ba15682d4b92d1ec288219ab9533d067ed7d1c2e11d" + +[[files]] +file = "config/cyclic-client.toml" +hash = "8d443f8fe3b1a0b7867aeb97ae06037fa94bce499498779a2b0d66c7686931b3" + +[[files]] +file = "config/cyclic.toml" +hash = "115ea19de9cf146222cf46f7f7ada0a1b84152a4541f74ee2cadc446d770b896" + +[[files]] +file = "config/cyclopscore-common.toml" +hash = "df80efc2586a311f7ebc380326ac0f135cca713322617e84f658ac85902ff3c3" + +[[files]] +file = "config/daily_rewards-common.toml" +hash = "aff7517eed52383faa180ca3ed8cb95a99d1d593c889a4c5e6a1c357995cd39a" + +[[files]] +file = "config/darkdoppelganger-common.toml" +hash = "b16f94fb6e97b0454d9d8cbe9245ac445207a5c2a3dfab719aa00c6d3dff9059" + +[[files]] +file = "config/de/mari_023/ae2wtlib.json5" +hash = "e9838cc6c67a746008e2c8bc88577be4c350d4f990ee5ca4861f07bce76e36ea" + +[[files]] +file = "config/deeperdarker-common.toml" +hash = "456c664072bff23a9d6a45a571d6a09f4b4be2c0ad0423281894d836a4f679a7" + +[[files]] +file = "config/delightful-common.toml" +hash = "68bd81fb12af9d5d1e5aa4029129dc032bfe5a6c8409fa481516b7e04ee29a68" + +[[files]] +file = "config/deltaboxlib.common.conf" +hash = "89098eae0a3a835a68f250971c51ac8bfa3cfdd21c4896201e33b5a2d037229f" + +[[files]] +file = "config/derenderpatcher-client.toml" +hash = "4014e12e61f6e986400f81ffe332030e97503d484e65ff293e60fe3c9ed6e52c" + +[[files]] +file = "config/despawntweaks-common.toml" +hash = "2f9f18b0d4a18e80c19068340fd1d53b705100606b9ab0f0ed12400c26fe1874" + +[[files]] +file = "config/dimpaintings-common.toml" +hash = "7333d34151c70bc25d392fa3cfd9abf277b570ff255928c5b464900f7e52d7e3" + +[[files]] +file = "config/dimthread-common.toml" +hash = "3ca70f369f5f7ff35c694e62b23b0417bcc6ab22a4674e3600a52ad9e75961cd" + +[[files]] +file = "config/displaydelight-common.toml" +hash = "f82396610cbc2b96a6be4dcbd03e9d4f36759083d45d31e362e61d79172c5880" + +[[files]] +file = "config/does_it_tick-common.toml" +hash = "74d59e23d34db2746bf58c9ad145147a691a96a639492429de058ec44bef40dc" + +[[files]] +file = "config/doggytalents-client.toml" +hash = "14fc91989f506b8ec766907812ec2e8b2d1460808d4064d9835deb99cc803f59" + +[[files]] +file = "config/doggytalents-dog_custom_skins_client.toml" +hash = "922d6ea872ad4087927cfc62351886ad6b7b74550f4e6cb213c9fd0f3408f984" + +[[files]] +file = "config/doubledoors.json5" +hash = "ed3b25678a185a7c560868e047b60ffd7d7bf9b13d3a45cc5c056f5cfd5b088e" + +[[files]] +file = "config/drippyloadingscreen/options.txt" +hash = "f7fd1f6b87451a3497674af0133d26491d996f13181205912ce95b163f8233ca" + +[[files]] +file = "config/dtterralithconfig.toml" +hash = "dbe1276013d482c0ad5526f9c2211f96f3940e0c84646be402f5a6b1cf56fea9" + +[[files]] +file = "config/dungeon_crawl.toml" +hash = "ff56eb5193313c4e0acabe78b8179e14144391fced80f43aef8890b7b181c0f5" + +[[files]] +file = "config/durabilitytooltip-common.toml" +hash = "2f33433f38df628bf545b76e0ae5babe3efe1ad08dae14b6077a44c768072d7f" + +[[files]] +file = "config/dynamic_fps.json" +hash = "5f8ce9c9a4809cfbfbd986f51d877cdd407e4a9882a742f8471e06d1e719cade" + +[[files]] +file = "config/dynamic_lights_reforged.toml" +hash = "dc3dfd1d1136889139dcc862ce0bce601ab67d95bbac0d684fcef304935b9f11" + +[[files]] +file = "config/dynamictrees-common.toml" +hash = "1270af8cfdadb7cdda85993d82b28040edcd7897398b4f374cc3cd78321ef42f" + +[[files]] +file = "config/dynamictreesplus-common.toml" +hash = "e880b83e47dd85df1afd043535e9ac68e4a9783a4cb4f1e9ebc68ed18323e7e4" + +[[files]] +file = "config/easy_villagers-client.toml" +hash = "bfc5ff20e38af514fbb492e89e780fb00183cdd0390d38811cee083d78a33960" + +[[files]] +file = "config/ec_ars_plugin.toml" +hash = "bab448e9d543b118ad5c02943ee5601e69f067be1493ac951f1034f9cb12223f" + +[[files]] +file = "config/ec_lec_plugin.toml" +hash = "f01731f536251a3143ef0f321cd55960a3656bb88b8d44343ca2d3ef978e9ad1" + +[[files]] +file = "config/ec_tf_plugin.toml" +hash = "8ce46f0acd19fd315dc689499b3ccfaef0ced5761ba66b2e931b34c974aab081" + +[[files]] +file = "config/eccentrictome-common.toml" +hash = "ebd28b7226d3aa7c03fc95a448fd4874cd85950debcac0fc3e8ce51ec9b1818e" + +[[files]] +file = "config/eclipticseasons-client.toml" +hash = "ee2f679bc81befe6ee43512066bce3dccfa63c4c1eb59cc4b479b21de040f397" + +[[files]] +file = "config/eclipticseasons-common.toml" +hash = "fb3145a02bb2f2e923dbe2318d09e41dd85a7628f2d88643eb12453ad2bf6ab3" + +[[files]] +file = "config/eclipticseasons-mixins.toml" +hash = "5dde7c4384e310550fed39e58e4845ab094453abd3286977d56d7f8384783d97" + +[[files]] +file = "config/eclipticseasons_bundles-common.toml" +hash = "5466fa31fed376bfddbf6f8535d7d3678af9d7957674dc6c9ebf2970fa3a5206" + +[[files]] +file = "config/eclipticseasons_multimodpatch-client.toml" +hash = "1f2e5583ac5e99ca34e1fdd80bae11c4ecb45f0d1d6a8d3c1fd3e7016e63d5e5" + +[[files]] +file = "config/eclipticseasons_multimodpatch-common.toml" +hash = "b83ff8ea3b8d7ae79b218e99163250f563bc1eb577534bc2995a882eb53fd421" + +[[files]] +file = "config/effectdescriptions-client.toml" +hash = "960dada3e11b0e070531fde5e8e2125de9b4d5ce79db23e88f7591179b7ddb89" + +[[files]] +file = "config/eidolon-client.toml" +hash = "802d1db17dc65a2d9ce09d3177fcb9c74e2766b9304926f3e9072158e530c411" + +[[files]] +file = "config/eidolon-common.toml" +hash = "7e4d540aa1bb14e9ffb52a30e598669f925f572e016de585d20cecbb88ffb9c3" + +[[files]] +file = "config/embeddium-fingerprint.json" +hash = "cc4dfa5e65560ac81c33778dbf879df7a657e4eef9a951154f07766c2da4acfb" + +[[files]] +file = "config/embeddium-mixins.properties" +hash = "09ff183e061d93b79514bc171bf9118497578757e7a5c45946039487656e2619" + +[[files]] +file = "config/embeddium-options.json" +hash = "ebccf771b4057b15416e685d79f12e3ed15ca1d73075e1627b978e0c70313901" + +[[files]] +file = "config/enchantinginfuser-server.toml" +hash = "e2359b3381662011c1cca7768d276a1beb299be0206fbceed5df12141d685c95" + +[[files]] +file = "config/enchantwithmob-client.toml" +hash = "9976ae7791a0b07421d1d8d91801da88e41c21f7d035dedbe4988ead1037687e" + +[[files]] +file = "config/enchantwithmob-common.toml" +hash = "ce69e6691c0089a3eb0eef592e753ab353e4676ebccef86ab98d2120dd06fd5d" + +[[files]] +file = "config/enchdesc.json" +hash = "69e1df6089b71c3c2fe2c7cf6760937094fd22434111f527229a9fcea3f90bc5" + +[[files]] +file = "config/ender-sins-common.toml" +hash = "06953b113fd2c8bce013d617c075c481ede6a3575bcf2e9886d1ad98617680c5" + +[[files]] +file = "config/enderchests-client.toml" +hash = "272e486d7a4deec3077c417e61f729da7af0097d48322b56a8352d1f467c440a" + +[[files]] +file = "config/enderchests.toml" +hash = "2b5c670fe982e67ffbbf0b4f766ea4cb641ecbecfc8aedc2642faa48861ef339" + +[[files]] +file = "config/endergetic-common.toml" +hash = "d4101832272fd0801cf9db7288774b8898a5257bbe833a7ece259d19ac6693ef" + +[[files]] +file = "config/endermanoverhaul-client.jsonc" +hash = "5d9315a8ce308b193ca880f5a782879c0f117861b08ccb38baed6d049e29b26a" + +[[files]] +file = "config/endermanoverhaul.jsonc" +hash = "9502aced0fb4379a4a5e72c484fb155ffcdf80aff96f8f88ed4a0111b42d9003" + +[[files]] +file = "config/endertanks-client.toml" +hash = "dd685b6f8552fab49713916bea17506512789554cb909bf25e2161875a24094f" + +[[files]] +file = "config/endertanks.toml" +hash = "40444fe1cf925e7070759e964196956a264d8b58699bd2f26b45bbc1a32867f7" + +[[files]] +file = "config/endrem.toml" +hash = "4fdf07c3f2c3887852ff0acc0f8e40b4d7a5d36a20a2e05d3d5a7cf0a455dfc5" + +[[files]] +file = "config/ends_delight-common.toml" +hash = "54d0256f1b1b803d4aebb78a5c04c248f8e7557a326cf4069802f26bf94acf78" + +[[files]] +file = "config/enigmaticaddons-client.omniconf" +hash = "156091af877dd2ef07d5bca93a255aea201771894f049fee058dcbcc488dde84" + +[[files]] +file = "config/enigmaticaddons-common.omniconf" +hash = "e66c84e3502d9490906af9af2bbbca0c8ccf5ecb773db204a8aebb1fa8225770" + +[[files]] +file = "config/enigmaticdelicacy-client.omniconf" +hash = "0477f1dbfcc0f36871b296346cbdc9351c98c4597662dc3b43eeabe54dbdbcc7" + +[[files]] +file = "config/enigmaticdelicacy-common.omniconf" +hash = "8543a1222f2d9c5a992fc169ad4e624f048a1880eb85564fd9e69a8679fcd4d1" + +[[files]] +file = "config/enigmaticlegacy-client.omniconf" +hash = "ccdbd2fb9de29901b88d92fdc23c2ab4f108a11f3789fa5fa50cfd7e7835ee9b" + +[[files]] +file = "config/enigmaticlegacy-common.omniconf" +hash = "8dae8ef06b04ca8cab6b4885d449f3bbd4189cbbd7f1e58662f0d8ddb1d8d8bb" + +[[files]] +file = "config/entangled-common.toml" +hash = "419e187d83bb43ef3dc1b50824a2a4b560747d27ddd64297120b16f5b0ea1562" + +[[files]] +file = "config/entity_model_features.json" +hash = "d6ff2922e9d2752d80821be3c02abf3bba0ba5e4efd57399553dfd87b9f9561f" + +[[files]] +file = "config/entity_texture_features.json" +hash = "d8d72a9ac49bbe45921f1ace5a22c30b65802c5e70829343cf7acfd25f79b8dc" + +[[files]] +file = "config/entityculling.json" +hash = "e92e6772c4b6ec28b9c179c80831d56d11fc65064591424a120133d397b2ab49" + +[[files]] +file = "config/environmental-client.toml" +hash = "6951f0f734aadf747862e4c5bfab3715982eb10080fef98ebf78a3d8fcf222d9" + +[[files]] +file = "config/environmental-common.toml" +hash = "0c8dc1ab5d7d06a01cbfaacb36ba1e904c63c63adea644be339824ba43a70f0a" + +[[files]] +file = "config/equipmentcompare-common.toml" +hash = "d948df75200e0fb832303f0dac6175864ad3704d86912e863b835d8a36421968" + +[[files]] +file = "config/essentials-client.toml" +hash = "c8871003b574b4891822efc9fa67f2cae539760208bbcaf942363650f9109fcb" + +[[files]] +file = "config/essentials-server.toml" +hash = "93630ef13624e529644c684530911529a1180266a597bc317dc5282cbeb04c73" + +[[files]] +file = "config/etf_warnings.json" +hash = "a5ba22e63061c1fb67f0f895f17681351eaeccc225faef966c29ee630593275e" + +[[files]] +file = "config/everycomp-client.toml" +hash = "488c9da035e87b31673ecf85b9656fd460c5b7d2f00365ce8e714640cd5b83e9" + +[[files]] +file = "config/everycomp-common.toml" +hash = "6f6d67e493c8ff573df151015640bad166cebf9603b74a4eb978a30942ec6780" + +[[files]] +file = "config/everycomp-entries.toml" +hash = "e718e803130f29fac6c54088c2fb7f568674cdd712c0b8abaff6895d3d7b28cd" + +[[files]] +file = "config/everycomp-hazardous.toml" +hash = "0e8c3ae8e308dfbabcc58b5595d4192c1241b91f7974b0fbcc12f865c9e6e08c" + +[[files]] +file = "config/expanded_combat.toml" +hash = "670c7e7e94afe7d648068babf2446e6e923e0cb56f015fb2df6c3a76af68592a" + +[[files]] +file = "config/expatternprovider-common.toml" +hash = "8891cc00c11d5a913368961d6d4143bf0e4ba90b7f4d85a08870798313ea7bec" + +[[files]] +file = "config/experienceobelisk-common.toml" +hash = "7c1482c32b9f9bcdd2fb069b0b0925833798843bdcc424a89ee5fc74c44fe492" + +[[files]] +file = "config/explorerscompass-client.toml" +hash = "eaaa7a0af68a2b00a557d5df97191c80c996042cc33cc53eccd14e78431bff28" + +[[files]] +file = "config/explorerscompass-common.toml" +hash = "900df123d095ffb7c89bd05888e875551e7f90ec567bbb7c67efc9bf0f1f5bf9" + +[[files]] +file = "config/exposure-client.toml" +hash = "179c590fd6e981fb4d0d6db83b5cb828b826b66a8da028ce2deefc308554e1da" + +[[files]] +file = "config/exposure-common.toml" +hash = "f7d96d208d00c8d5cf91348dec1c4ab45c2bff08d39f85dce71e5849b8cfc365" + +[[files]] +file = "config/exposure_polaroid-client.toml" +hash = "b4660c461873a4c409fb9619d5d9418ab6e233ce648e87391db773442f2a0c05" + +[[files]] +file = "config/extendedcrafting-client.toml" +hash = "3ef75b93fbd31067ff23bb2fae109644500119a0300a8c3fc8b72ac081e42381" + +[[files]] +file = "config/extendedcrafting-common.toml" +hash = "bffa291ed9a42dff94359f2f95556246757bd51955cf9d92cc6f44ca92b7a070" + +[[files]] +file = "config/extradisks-common.toml" +hash = "7d7d20feff914c8cdccdad2115a5688d804c2b2d354b0de5b4e817278baf5af1" + +[[files]] +file = "config/extremesoundmuffler-client.toml" +hash = "61059deee868b9e7d6e0b2adcfa9b449dd536079f917693eca8e6b80455ee582" + +[[files]] +file = "config/fabric/indigo-renderer.properties" +hash = "f472b618479f33e6a508742d79af88428b0225a703bda52de27d1c4774a77e43" + +[[files]] +file = "config/fabric_loader_dependencies.json" +hash = "e9b9af324a1536cd1e6b77e8ec33fa43aa03972947ca73306897b89f39c2f0cb" + +[[files]] +file = "config/fallingleaves-client.toml" +hash = "2cd017af6632239398b694fadf8191d6073cf39585549876cc682843f521ecb3" + +[[files]] +file = "config/fallingtree.json" +hash = "a6c09cca2ca81979b01af8be67c278d5c63cc3f22c665608f6c3190051c649a2" + +[[files]] +file = "config/fancymenu/animation_controller_states.json" +hash = "e11c13ab1491b1deb76d0786a482be313f999706551a2cf05cbc797964142858" + +[[files]] +file = "config/fancymenu/assets/6.png" +hash = "912c9d7e5fab4b908b79ec1926715863f1add54574d503259d93c1f38ebe6e20" + +[[files]] +file = "config/fancymenu/assets/altbg.png" +hash = "1b5ad73dbe5ac087b78d5b9119371b0accca2e16fc0678474c3106c81823d718" + +[[files]] +file = "config/fancymenu/assets/background.png" +hash = "8486f79510ec67a2059e6db3072c028b5db12ffc6116d8f51cb22b5a50061a19" + +[[files]] +file = "config/fancymenu/assets/imr-all-static.png" +hash = "b3c22946d5354070e2c15ef546d978cb80d8b665e1984d7ad228bbab9656a81a" + +[[files]] +file = "config/fancymenu/assets/imr-animated.gif" +hash = "3d003169aa2f3b8158ef05827880d937c91a4d5a5e5cd61a42f84f5922277a2b" + +[[files]] +file = "config/fancymenu/assets/imr-background.png" +hash = "fe7f97b543926886b6795c9195628cd14028f2fd8e2c9294a1110cc6d3abbaa2" + +[[files]] +file = "config/fancymenu/assets/imr-button-small.png" +hash = "27d59ca20945f132d8a8550229e837cf6981df1d415653a132b6de8b57cad210" + +[[files]] +file = "config/fancymenu/assets/imr-button-small_off.png" +hash = "7562f15c61843ca16a685481bbc889e7654291f55e65803e0bcc377ca183ebe2" + +[[files]] +file = "config/fancymenu/assets/imr-button-small_on.png" +hash = "cbdc6c35861a9a3bf792de4a1fddd88f0fefc7cbee167cd095a15462ffd2bf80" + +[[files]] +file = "config/fancymenu/assets/imr-button-square.png" +hash = "0c28c4ebed17838ea8abaecf8c308901c60ff707bde4ca32a0d9cf4a42032fa3" + +[[files]] +file = "config/fancymenu/assets/imr-button-square_off.png" +hash = "6a03d666d16adcb8062cb75d17b8cfdadf211fedfc8a8d70428b3c017dc7a393" + +[[files]] +file = "config/fancymenu/assets/imr-button-square_on.png" +hash = "7e07fcc8487cf24994abe50bf7375c1d1c8dca9a517bc20fcbbf319ec7163be9" + +[[files]] +file = "config/fancymenu/assets/imr-button.png" +hash = "26e7cd9a53b9271ffce93034df160b19a7f5d8db33589d9740da248e27d7ebd4" + +[[files]] +file = "config/fancymenu/assets/imr-button_off.png" +hash = "886f3a84e73b129a16bdf3f7fc3c9efa3c2c4b2ead5222467a190e06c0e1c763" + +[[files]] +file = "config/fancymenu/assets/imr-button_on.png" +hash = "6d34ceb227fc3613c2aab19d973da67447df4fa013c4c63a2ce74726ce94b7d6" + +[[files]] +file = "config/fancymenu/assets/imr-magic-static.png" +hash = "265baa36544a1281281fdf3147b2d8c024eb1d36f28b522174e512496ba4bfaa" + +[[files]] +file = "config/fancymenu/assets/imr-magic.gif" +hash = "8e831e9c48e454d4d1651a81d6ebff7a3bad3a895f3b8108aae2145f8c6c1587" + +[[files]] +file = "config/fancymenu/assets/imr-mod-background.png" +hash = "bd650e274c5d576b4338b697138d791cc5d9c6cf09d6fd561807f7e4e7239023" + +[[files]] +file = "config/fancymenu/assets/imr-modlist-1.png" +hash = "63c2c885f9daaf81f0e207ac016034a505d0471f8875ed3ae703bf2f99fb99aa" + +[[files]] +file = "config/fancymenu/assets/imr-nostalgia.png" +hash = "bba53c65d6262309be5a79e92927850cf2cfd1b605f01decdf2b62435aaeb8be" + +[[files]] +file = "config/fancymenu/assets/imr-series-nostalgia.png" +hash = "a2c57c1bd43c81c6aae58490ed38d526eed1edc0fec83a8d35ab5d67b978ab43" + +[[files]] +file = "config/fancymenu/assets/imr6-icon-light.png" +hash = "cfb8fac22c88c897eef021b640ae3058a49323c21574709d227fe174ffc744e5" + +[[files]] +file = "config/fancymenu/assets/imr6-icon.png" +hash = "605ac5ed13da216778dfbc063e68e49f45a3b6f678ac1c8217b0a3487c4179d9" + +[[files]] +file = "config/fancymenu/assets/version.txt" +hash = "d3ad6c13afa605a161298a2374bc2f41cad7f34c12636cb1860e4a7ab35be64f" + +[[files]] +file = "config/fancymenu/custom_gui_screens.txt" +hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880" + +[[files]] +file = "config/fancymenu/customizablemenus.txt" +hash = "225250d53f193324c488c2f9a2af54424147f62b9861e96453ac7aa20762c649" + +[[files]] +file = "config/fancymenu/customization/drippy_loading_overlay_layout.txt" +hash = "8f4cf769112ee82f980340aeac75f22654c6f1b9057106db302d2b981439442a" + +[[files]] +file = "config/fancymenu/customization/level_loading_screen_layout.txt" +hash = "9221e6218fd9b7d86c7926e8e0340119cefff4834d6f5d5a56db2991623e25ec" + +[[files]] +file = "config/fancymenu/customization/title_screen_layout.txt" +hash = "53411fca58fd1ade978d19c837a9e29ce486a5c699ad6246e1828eb6ecb6ed90" + +[[files]] +file = "config/fancymenu/layout_editor/widgets/element_layer_control.lewidget" +hash = "dbe8129b5d974bb639521d9776c57f11215a3fe359ce58c829a4fb040128734c" + +[[files]] +file = "config/fancymenu/legacy_checklist.txt" +hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0" + +[[files]] +file = "config/fancymenu/options.txt" +hash = "619b68f6d400277deb78b1c30304bbc471a8a6f401d1b8ac637604b71513d4e0" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_1.png" +hash = "eff5c63349040628c93cd12243d7256f286e106f087dba5c2b48985937c0d117" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_2.png" +hash = "39e1ab3717fd72d15b78c4f343ff4c75ee0602b4692d35d4c4a2cd95a756d250" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_3.png" +hash = "ef4f4345f6d9c01b41deb12246557f1835e33c25ebade463eb82a5a21baf94ec" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_4.png" +hash = "85677daa8ac9fe2eb8e2f59fc10d904a2c9080681357e3fc61341285d7e92e70" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_5.png" +hash = "ccf2a0b7dfcabafc917520473120304d39b08e5ba7bcac7cfad57b032fb0c0d7" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_6.png" +hash = "c78dc6e91def85de1ed55ce472018cded2edc92a589d2a711c8afdbdd245c559" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_7.png" +hash = "014be97065c7aa3c4c803a44f2aadb9491adbe17284604b7efd8ae92cacbb816" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_8.png" +hash = "0548adbf9f7827c8322a34e4582b23ccb3f03c2e8812163f9c3ed5d2eb6c4cba" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/images/image_9.png" +hash = "402907ea6b269ad83a8b145ed2a738ab8456df057ef060ab1e0c7c97cb18a312" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-bottom-right/properties.txt" +hash = "4fa5897ef47923ce9e3cf0500abbce12bc1dac63bfd49c1fc25badda4459e19c" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_1.png" +hash = "22ef42a6bc2c5c334c2a7fa07b968bc3d8044e3df4e5509f5e0d5eda9c084971" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_2.png" +hash = "685e07370c00b281103961d2e25fd92ae9dade1cb1a66a6fb7e1f091ea57faf3" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_3.png" +hash = "8292edf7f9fbaad294862d20e264a91e7d8bda3ed2b0c2421e854b29577bdcd2" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_4.png" +hash = "8588f7a5de80777ecbb3f8eb347bd072854106d828bf686d1d9088ae01a557c5" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_5.png" +hash = "03aa02c5c4da0c7388c49062881bf1fd37833965fdb97363337a455fd492d9a2" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_6.png" +hash = "4f5a6c591236355a3e0f42d3ef4ff3690ce7e625da9913992b13c7cbf8c7111d" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_7.png" +hash = "2b41670932dcaf5aeab75ee83536255dfc68090784f5265017010294ae2bf338" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_8.png" +hash = "68da4e91c6c51b9fdbed22123d548d7b61a6f6b369b3e9bbfb698cb978e543df" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/images/image_9.png" +hash = "6bf7b2af57ea1cd61c13e3e36e984a7223193f7afbc28f9da4a95b72b5f9c3a8" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-left/properties.txt" +hash = "7b75f54d54982e4135c07788f1b5269013121bb26139c7a9de4e8c0bc9714273" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_1.png" +hash = "e4282dd2009890e684a977ae829c32623e3f10d2dd0b50d3840eadd7744366da" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_2.png" +hash = "57c1c608f7b52ac29e10598b3b807cfab96837c9e6f75730fdd04b7394cf30d5" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_3.png" +hash = "f706f2f1cf0610bd8ef8d080e9efcaac1d7fb775b9c9a0c3c08ebfc80c707f25" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_4.png" +hash = "433a01a5b533534a2e2123bf72c63a8261855c3903d6ffbbf35d2973815e5fa6" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_5.png" +hash = "5819256c7b6e4e3400957aa720c6ea77158332238d445961539713d828b51484" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_6.png" +hash = "9dcdb0ce722788b4c8f0d21e6b295f16369d4ce2b0418b38f1ac4905344fa1f4" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_7.png" +hash = "720ef704b8d71f1cf21c6e67419c160711ac9b6499cca60b8ff4d4767e393bb0" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_8.png" +hash = "882cb3cf2fe8a998e2a33f532290b0bc14d8d0513f47fb95a086d87b12bcd8f1" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/images/image_9.png" +hash = "e369d5405ff610e8a6d9658e2723a7518748a9e225e24c1f4f2ac5f122363808" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-middle/properties.txt" +hash = "554e9b621011d8b5fd1207368811dbb72d5634bc3f4db79f0258d2b03971323b" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_1.png" +hash = "6cf15d1364a70f4be41dfa56d989a39538f4f162d8e52f7b5f38274fe236b387" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_2.png" +hash = "01a8bde8ab935a70d465905cc37e0214fd7ae23882ee7faab7307dc28c726c66" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_3.png" +hash = "dde8b3705c5c12f6822d31a811cab52df152cba60ddec9b1f21a8e67593c893e" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_4.png" +hash = "b785a6b542049db2ab82242ca9571d78ece1bc5cd6dac95209f0369195c23af4" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_5.png" +hash = "52fc966f1cec166bf69243464ed1b6a0d09fcc56b87e5bb7dfc0411d16f1b08e" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_6.png" +hash = "4fe0a357e44d57bf2f348aa79753cc721fa280e922c7480a82cc94291462b2eb" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_7.png" +hash = "40600ca7593e84ecbb9fe3e6d18db7e0b2158a03ac529a9d8fcd56c42c54efee" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_8.png" +hash = "208ab1fa850238067be001307ef2934a8e799efa3764e78e61881152dad65ba2" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/images/image_9.png" +hash = "53f88a567b8549eb7d62aa0e7bf35c427eb34643d555a60ff07ac5d7365bb9d8" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-right/properties.txt" +hash = "572bbada65a892d19b1f5a92ae066940b597bca2d584a47ac9616f8c954cff9b" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_1.png" +hash = "b3dd028bb239b46c9a2dd72fbb4a039f3f17508313ca4dd0fe32ed9b21e0a5a5" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_2.png" +hash = "0b2943ef08dedb04698c89abdd898b09192ccac505f1d8975c291de4c1323533" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_3.png" +hash = "ed6765ee3d00d52c3c4e4c70b7afea2cfedf97fa3b3baf0d6a17c0e892a67907" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_4.png" +hash = "89f370baff79154f07b39f7680a059f260b197bf1eb7eebc2a18e7b7f23f3e21" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_5.png" +hash = "4e68cbba2e7a6f98c5cd3513688c924f711cfbf2ac9dacae445a7a7f93f59e6f" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_6.png" +hash = "afc46703ca37fcb36e9c90a39853f5d6ff77a307e5ab814a395f5d94d5a12c3c" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_7.png" +hash = "348c24436956962c28a0b81dc77d55bf386a2c489de8ab08c7bb2c20c12b6c8d" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_8.png" +hash = "db8424cbaa1e0f5afd8b6d62d1ffec148c7c843b5f651fb4e24c80ff9c86754a" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/images/image_9.png" +hash = "9ad5fd9ecc96a8eaa4783d3d08adc1ee9b3c2cff3ed26b6e773f8c4c5e0c5019" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-left/properties.txt" +hash = "f2771f07f0c553be726a9665ba12677299a421911e507e63d64862abe4fa2c0d" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_1.png" +hash = "e12bb1131f0ab80240afc3267660b62121c75545a1c477f52353f5d65fe67147" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_2.png" +hash = "cd4de29af3cbc327871a5a07d5f866bfa7932348cea577acbcf581ec38662f8b" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_3.png" +hash = "6cb975061f3dee6e7546a11b9408e0b0492aecc24b600e961396ed7825088be1" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_4.png" +hash = "1f8b93513237e87a3d9288d3bf1dadef7a2386ade3039bcd1a7f1c6ccdcc35e8" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_5.png" +hash = "3a29d14238c0bf88791796340869cbffe47d1c908d16383c7106e2753cba7b7a" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_6.png" +hash = "592fbe21e2d7bfc69587a9e1e9cc5e7573b88629341fc474d3945fee811f0df3" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_7.png" +hash = "55d4b3635921f31b089a047ca26c9fa25f68ba99af86e50f64aeae3f20048279" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_8.png" +hash = "4f208c7bd6519bfbd19c9f469b028f8dd855776411997d83db976081e4fb4c87" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/images/image_9.png" +hash = "34b76ebc7ba50468efddd4f9d4e12a7566343a5a1042ff19628d0beec247ec94" + +[[files]] +file = "config/fancymenu/slideshows/imr-nostalgia-top-right/properties.txt" +hash = "bf40559b7496979626fa004561c72dd9e252c0c6f12bbc003750ac8bbedc4ecb" + +[[files]] +file = "config/fancymenu/ui_themes/cherry_blossom.json" +hash = "993c16664fe2d1b9e8ad107bf1c19c1dbb244729c403ed058ca2e54616dc5452" + +[[files]] +file = "config/fancymenu/ui_themes/cozy_campfire.json" +hash = "1e7505231b9d99e6315845043ce810dfc7004ce1d8f5a4ceddb4ecb96c03ac50" + +[[files]] +file = "config/fancymenu/ui_themes/dark.json" +hash = "01e2a3b5d250c0259a7f97f0d353785bfeab6d7ee2e147c16bb910f1d23e9498" + +[[files]] +file = "config/fancymenu/ui_themes/dark_high_contrast.json" +hash = "54316a2b309ddb472b9133f8ccb8694dce9b57be6ebcfb3c2e9d1bbfdade3f26" + +[[files]] +file = "config/fancymenu/ui_themes/light.json" +hash = "a05e95f7b62f338049fe0045d9a6a50060d3aba52d5ab83ac1ed6ff55cac1153" + +[[files]] +file = "config/fancymenu/ui_themes/light_high_contrast.json" +hash = "7c96ba2f2cb4d59d20eaf88960de7a9308ce8a3460c4e1757e07c42e174ea65a" + +[[files]] +file = "config/fancymenu/ui_themes/pumpkin_soup.json" +hash = "7c6a5d5b19e53ca2f88371c2e867f51339b045697aab29864df5877a6bba9311" + +[[files]] +file = "config/fancymenu/ui_themes/purple_void.json" +hash = "fa63577441fd576ebac90ecf06b7ded376cbf80ca5103d398bc9a73a25c6c2c0" + +[[files]] +file = "config/fancymenu/ui_themes/spooky_season.json" +hash = "cfa46554bbb027efe3c2184a073ee652000acac2500cd5136764f901355ec0cd" + +[[files]] +file = "config/fancymenu/user_variables.db" +hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823" + +[[files]] +file = "config/farmandcharm.toml" +hash = "68821ed9ccb662fa46bb6d30f39e55530ec7a8d25852840add371a0a28e5ab62" + +[[files]] +file = "config/farmersdelight-client.toml" +hash = "e4a752b4f86b93e50eeeaf91e045a67be910b0a70c0b582927099bb93c0b3132" + +[[files]] +file = "config/farmersdelight-common.toml" +hash = "a05079b5dbd8e2b989a348eb3fb341da5b98a23e1a9f22c86cba866bd646267e" + +[[files]] +file = "config/farmersdelightplus-client.toml" +hash = "be35164c2264b811631d2929a9ad0ba667e3ed5903e6e0fb2d7cefd321a45625" + +[[files]] +file = "config/farmersdelightplus-common.toml" +hash = "ab20f6cc7189df8b303b558f98ebd35de58e49dba71be552123ff880705ff38f" + +[[files]] +file = "config/farmersrespite-common.toml" +hash = "4ae780256c98ad13138e0d1edfc6e2a10abfefee24b710e5a1056687641cb6e7" + +[[files]] +file = "config/farmingforblockheads-common.toml" +hash = "072c835dcc3ddae1e30ebc71524f48f8e1d0e96daad5048dbf46ca6ceccbfbf1" + +[[files]] +file = "config/farsight.json" +hash = "e152b698cf3c42076fbc2480492d494169773aecb546e20aff26588e577a92a2" + +[[files]] +file = "config/fastpaintings-common.toml" +hash = "4cce6e2bd5d9440c7a6f4618dc05eeb82cc2fc293afa892a3010efe21405ac79" + +[[files]] +file = "config/fastrecipes-common.toml" +hash = "adbe230f48363d73e162a3c7921e0ba50837206305a07c639ccdac12a3b941fe" + +[[files]] +file = "config/fastsuite.cfg" +hash = "44198ad591572d87a9f71b0b636229d91508a8c971f9dca907bed3c6d6754193" + +[[files]] +file = "config/ferritecore-mixin.toml" +hash = "26104fe981181e0cc44672ef057db957826e0d6f9d84e65fc85b1a04179c76ac" + +[[files]] +file = "config/findme.json" +hash = "4e0913a2fef137b2ba6345a2ce3e6104fb0872efe194c5eb7cbb75782b933fc6" + +[[files]] +file = "config/fishofthieves.json" +hash = "9a60d5a2aea06a5c5ab195a28566d9a32c6337c9dfce701af734b6a84c6c37ed" + +[[files]] +file = "config/flerovium.json" +hash = "f8f7b6978ff358427c0e3ca886513abe22cbb782bdda63b1634fa6d304098ca6" + +[[files]] +file = "config/flib.toml" +hash = "d72695400ec11f2beb0ed48d1d967fef1812254b19e8a667a9fe46fa8f476744" + +[[files]] +file = "config/fluxnetworks-client.toml" +hash = "a4d5d1dbd640f1cfe4daa2f78ad76f4fe2a939937bbcec2b157b54ecda4e7d6e" + +[[files]] +file = "config/fluxnetworks-common.toml" +hash = "a67d3281d40aefa23a85aec7b69bc9b0dee81496793d9c33cd7d25e879bf41a1" + +[[files]] +file = "config/flywheel-client.toml" +hash = "8622cc9c9d8caa10d2c4e247e1a948cbafd658c67c7c65066a68a5fc7926d186" + +[[files]] +file = "config/fml.toml" +hash = "153a6c75e43af6d281d3ecef0e8febe719413c033ca6dda29874a71cc9566004" + +[[files]] +file = "config/foolproof-common.toml" +hash = "490ab0243bf8e6c0cd3d996737809360e4f5dca8e5324cee354e94a14a9ee62a" + +[[files]] +file = "config/forbidden_arcanus-client.toml" +hash = "4c3a3d564325ed9221403b137063018e57c4495f7848d42ffbcd29b30ac27535" + +[[files]] +file = "config/forbidden_arcanus-common.toml" +hash = "890d4932fb287408a158a2aed584f4cf675703aeafa90b1e7c1f2b8fc33e3c4f" + +[[files]] +file = "config/forcecraft-common.toml" +hash = "f0c276ac10891cfe1a9558ccc1928c1c122f9600b25d6aa4a92a9802b60151e0" + +[[files]] +file = "config/forestry-client.toml" +hash = "612b20503905440aa48c9f73a4669fc48c56cc77db0e7c5ec79201e57dde00f8" + +[[files]] +file = "config/forge-client.toml" +hash = "a8448518860cd8b542dadf75521bfab981451775212ee1b51ddc646d998f9311" + +[[files]] +file = "config/fps_overlay/config.json" +hash = "6c90fa6f91e6d5bbc6b0967639e92bb8b2437cadc180f60b48fdf63c948ab654" + +[[files]] +file = "config/framedblocks-client.toml" +hash = "af9d0cf2049b6e33e5211c9505cbb63f49598f4df4cf6caa642ec30d7ba4786c" + +[[files]] +file = "config/framedblocks-common.toml" +hash = "3df7937868159c8c2570d09c9ef9e0a1127dfbab70c3404c8fd069c7390d39ff" + +[[files]] +file = "config/freecam.toml" +hash = "5b23e9cabc54e5a9a69cf4775d95ece75cb13c8899170c65446b2a88d2bbbc1d" + +[[files]] +file = "config/fsr2-client.toml" +hash = "929bb5e5490e922c75c8ab31d3fd45f79f96aa40ff9a87164531efe15102cc31" + +[[files]] +file = "config/ftbpc-client.snbt" +hash = "da72f402d42e3e485f404c155a6d7dc41f2c46b007d122e7fe043f893092694c" + +[[files]] +file = "config/ftbpc-common.snbt" +hash = "30432b5d1540f267553f2b78e98680a7aed487ebb6b968158898f01c22057c34" + +[[files]] +file = "config/ftbpc_pad_actions.snbt" +hash = "af2a196ca8c29ec1465d1005ccda1f867f6046933d4be18f542688655a615b90" + +[[files]] +file = "config/ftbqoptimizer.snbt" +hash = "eeb91f92d91cd3f7f6df8a7fff515d798da504031d0a23beaea689fddfa080ab" + +[[files]] +file = "config/ftbxmodcompat.snbt" +hash = "9abe2c7f784810cac3ca71c74d02aacd5fe6861d744cb143d077a525a2b42e76" + +[[files]] +file = "config/fzzy_config/keybinds.toml" +hash = "26ac5810c9b5dc5c1968827357f0a58c58ac2b6f7b082630960228e16585062f" + +[[files]] +file = "config/gamemenumodoption-client.toml" +hash = "fc8a2e57c27b338eb4d7bfa848e10cf73a1b7e947863fe3be8b1a39b71316993" + +[[files]] +file = "config/genetic-animals-common.toml" +hash = "2ef5eee12e56525e257769c4e29e2512e884d367b325f17ac0ec2652f5e8740d" + +[[files]] +file = "config/geore-client.toml" +hash = "88a5656bdd0e770f85ad44a8d83c1490b3ac43dcfbb385cb7b043a89e7104fca" + +[[files]] +file = "config/geore-common.toml" +hash = "75e3de9fab85a2211090ca7519796e01fcc5d86af8d714dd5f62711ce425c98f" + +[[files]] +file = "config/ghosts.toml" +hash = "2a640f61cdbd91340487326e7bb7b96d5c9681ba01656c22c7612fbf3dc67014" + +[[files]] +file = "config/goat_man-common.toml" +hash = "634fb7c8a3e1a16276a01e0ab348f6683481c6c5060c2bd7477d72930b5fbcd3" + +[[files]] +file = "config/gobber-general.toml" +hash = "8b5f00face4e10e3b9cb355e51bceab65576c0d84b3007360cfa384211570f95" + +[[files]] +file = "config/goblintraders-entities.toml" +hash = "6abfd189f53f490a2a3125a6f7e2b1a70f3db6157a0aedf786bfd52e70169178" + +[[files]] +file = "config/golemoverhaul.jsonc" +hash = "c1936d6bdb9c5bf80775f48c6a17348ad8a915189738b85c5526d0a75a7ba5c8" + +[[files]] +file = "config/grand_teleport.properties" +hash = "80295fcb7b4f22c1567e16b9a5b4d7f8ed65903e391e9b65988856a640a434b9" + +[[files]] +file = "config/grapplemod.toml" +hash = "0390dfc8ee58e0c47bd52b9649fcbeffc2664f104a7a42b629269a22308a3dee" + +[[files]] +file = "config/gravelminer-common.toml" +hash = "c41da4d780601cacb4daf259c9c9f862f3b34f61a37e73946e6e5c56f5f16612" + +[[files]] +file = "config/graveyard-1.19.x-common.toml" +hash = "e194150da8417e9c3c67cb9dcb3a1fe6d2eb93278f263404ecf4bc58f6e8f767" + +[[files]] +file = "config/graveyard/the-graveyard-3.0-config.json5" +hash = "d565c99daef747c7fe6ee3281146f7a8ebe9a5b591cc2908bf72006907b7ca77" + +[[files]] +file = "config/great_scrollable_tooltips.toml" +hash = "ec4b668d3b0aaead36c75267d8ae8bc7ce90d60245d36f19f1d4dba652ca85eb" + +[[files]] +file = "config/grimoireofgaia-client.toml" +hash = "4358542fd11e06f9f2abcf63c9217df1abfb8f260965d37ae89b87950386a86a" + +[[files]] +file = "config/grimoireofgaia-common.toml" +hash = "578325c584fe9fa87e44dd72138bb025f611e512b0698f9e86f1e9a94fcc97b8" + +[[files]] +file = "config/gtbcs_spell_lib-common.toml" +hash = "3d29f1312d2c893a7938e977f3ca03ddeffd1c787e7405459601f252dc2c6f24" + +[[files]] +file = "config/guardvillagers-client.toml" +hash = "645da331f569f887cda302c428cdaa1a8dc934183c914c708dc6821c20d9c713" + +[[files]] +file = "config/guardvillagers-common-1.toml.bak" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guardvillagers-common-2.toml.bak" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guardvillagers-common-3.toml.bak" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guardvillagers-common-4.toml.bak" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guardvillagers-common-5.toml.bak" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guardvillagers-common.toml" +hash = "d703bbc5dac576a4433431a6f4e895b85f12b352d93142231a461b59a7673cb4" + +[[files]] +file = "config/guiclock.json5" +hash = "3bef8e69a917603081d182c174990fce58f19bad4b56024c9cac417f62e89d44" + +[[files]] +file = "config/guideme.toml" +hash = "82bcfdf8624ec94cf4cfe30b1def3a0f3d562561b31a0ccef7468657f48e0987" + +[[files]] +file = "config/guiscale.json" +hash = "3082557b3976e2de25ccfdb3e11faa5805db0bda57f4c7f3b21f9676df3be850" + +[[files]] +file = "config/guiscaler-client.toml" +hash = "e03648743065c08038727b24ef2d6322a7987c148372452e33ea5db097872b8d" + +[[files]] +file = "config/handoveryouritems.json5" +hash = "793dd29112341a3751e7d42bc8c2329fdd4971e271e0d58d4a3952250849bd68" + +[[files]] +file = "config/hangglider-client.toml" +hash = "0de7107881d0628a90da9d84dfb76f46e4e3aa69b823081368af9e099643ce50" + +[[files]] +file = "config/hangglider-server.toml" +hash = "5461e6a5d55833ac4e7c4147a41661fa77ae4b921e7beae7f1d307416a7c517a" + +[[files]] +file = "config/harimt.toml" +hash = "8d006b744d6381227f29c65e33029da8d083ee104089b62be314dec3af64ea32" + +[[files]] +file = "config/healingcampfire.json5" +hash = "66cb4fa208703d9f68183988cc1d8bec10a9786683775e3c09da618bb59a35ae" + +[[files]] +file = "config/herbalbrews.toml" +hash = "7c4ba324bf4778cd520d4b5ac36a1d475b45265e27f17ff70f8a1d7f53bbebcd" + +[[files]] +file = "config/horseexpert-client.toml" +hash = "d55537fbaa760eb6273c2b4b12369ebaabb6f40568e20f6b3c355e224e743723" + +[[files]] +file = "config/horseman-client.toml" +hash = "e767a44e27a1aa0778acc7853f2df679bd323fb625d2c9b2c603f013d82ba145" + +[[files]] +file = "config/horseman-common.toml" +hash = "811ff39a7ad1cde5599287a101d423954dc3f608beaa364171cd0a5061c2aeb9" + +[[files]] +file = "config/hostilenetworks.cfg" +hash = "845eee6714fb94e96efad05682fcd8205ab209124c072e2bc8c942de3a3824b5" + +[[files]] +file = "config/iaie-common.toml" +hash = "a47e0d17f2fb9905b197b337c52e987c9e86e7bf9cf80a1f6edf073d95d1ea92" + +[[files]] +file = "config/icarus.jsonc" +hash = "3a32deb692d227b3b424a9d2a314309405fb8eeabe859a8c7913f30aaf73d543" + +[[files]] +file = "config/iceandfire-client.toml" +hash = "a4dcf9cc2e7f541fe73ee2f9780694cb8e9c7738a0a06e2a456453c3a47a8b9d" + +[[files]] +file = "config/iceandfire-common.toml" +hash = "500a84fa358a7abf14eeacf673d85c3e1de2eeed6474984671e4e29f23ab693d" + +[[files]] +file = "config/icterine.yml" +hash = "c5f80c76ddfd2fe281b3d077f91ede0d985f27f4fd592217b97fb950835e3dcd" + +[[files]] +file = "config/illagerinvasion-server.toml" +hash = "2285f327a5814d1f21a91f5c2d50aa1f9054ab0caa579fbefd14c0a60f5ba563" + +[[files]] +file = "config/illuminations.properties" +hash = "daa5b57b2d0c7334efe0eb2ee379d7aed08b86875c0c4b749c9eece3b2224805" + +[[files]] +file = "config/immediatelyfast.json" +hash = "01e8d5dfbdec05402033099049fc6a3bd718ae5647d091252dd49c697c3228b4" + +[[files]] +file = "config/immersive_aircraft.json" +hash = "898347b99b3326ae0ce719a06351eb930b1a3567e4f3c22ba94f014f1e115a46" + +[[files]] +file = "config/immersive_melodies.json" +hash = "defa57a62f8d6f593d1f12135a6121b57b7ac045d2ad43a68d66bcbbd5b6ade1" + +[[files]] +file = "config/immersive_optimization.json" +hash = "f3ec38fd3a3db317ee9e1765364e8a75e1bb9c26e5dc9685daeb1b25c70cb24c" + +[[files]] +file = "config/immersiveconvergence-common.toml" +hash = "bec4b32129322a8f561dcb5b4c9093d7f83deeaf6a0eb4fd3d4c7e3994449967" + +[[files]] +file = "config/immersivedamageindicators-client.toml" +hash = "9f479a2420960cc775b19f7fb55ad43e0dc0529f26fadad6ead85f50c9852085" + +[[files]] +file = "config/immersiveengineering-client.toml" +hash = "5885f6699cda8460fde62aa7f84b1f5fb636a3d7e8e489904de7bafa3d3b4d12" + +[[files]] +file = "config/immersiveengineering-common.toml" +hash = "68550b1b9f85bb8b055e602c6178a9a7ff8ec90d226c739f8d8c5ca66e089e47" + +[[files]] +file = "config/immersivelanterns-client.toml" +hash = "1db214510bc5ece32e1e586ee8d585a201e6c5972c01bfb17541c44fb6c0bce3" + +[[files]] +file = "config/immersivemessages-client.toml" +hash = "2b6f2b3021c705bf0b5c8aeaeb8574b0a63aba26cd28b82804fb52138df83071" + +[[files]] +file = "config/immersivepetroleum-client.toml" +hash = "f7c3d055044e78f8f862edc59c96c10fc74547cbd774bdafbfae4377c20ffaca" + +[[files]] +file = "config/immersivetechnology-client.toml" +hash = "5e9f6bff1eb130183fe0ef9cf3c54e1299ca751d7b19b0a58c2d340e60688a5d" + +[[files]] +file = "config/immersivetechnology-common.toml" +hash = "c34570d6c38f546d0fe9265bd7e37d7912eaded7dcd1f2a2e2063d5eec903cce" + +[[files]] +file = "config/immersivetips-client.toml" +hash = "bf70a123c7d19ee63da6ed6e57e4c55001506c50cd60f7445ce3ffaf5c4bb6d8" + +[[files]] +file = "config/immersiveui.yaml" +hash = "534f2120968484ac5a3a13aa0cb16eedf8c938bcf8476b657074a6e6ddd75328" + +[[files]] +file = "config/industrialforestry-common.toml" +hash = "1f589d6133a7cbca6910ddce0af01d35bad793b4b9215ae1b953dbde3ea73bfb" + +[[files]] +file = "config/infinitybuttons.toml" +hash = "3fce971ec14b5fa92180827404357f0f9c25b603209fb7f1bc0d7c2f87fe9038" + +[[files]] +file = "config/infuserapothcompat-common.toml" +hash = "68042a5b7db24f2765eba6fd796177ed7648cad554e0e3bc1358932aba8ac1a0" + +[[files]] +file = "config/integrated_lucky_blocks-common.toml" +hash = "f7462d54c9bae646c4235ce4aa6d072d16cbbdb18c97da694a3bd504da8ea269" + +[[files]] +file = "config/inventory_pets_illuminati_blacklist.json" +hash = "ecf44f2079f489655e2f17429ef7b50f63d78acb16efab851858f0f68c2d2f9a" + +[[files]] +file = "config/inventoryessentials-common.toml" +hash = "78283647ccc61b98ab1613e80790fa7a603a8badde399df2b40c2d8db86bb450" + +[[files]] +file = "config/inventorypets-common.toml" +hash = "c865a776baa9f16334ebb5a4a122e3a9717eebe996bb8dde0286db0aa1e53e6e" + +[[files]] +file = "config/invtweaks-client.toml" +hash = "f4d85357509a83e20021070714a248185d77ce49436d057d1fe282bc34d60d0a" + +[[files]] +file = "config/iris-excluded.json" +hash = "4d3264b58c502afaeca3f44e8d2db0843c54b8ba957afd21a2d450fe10dafefb" + +[[files]] +file = "config/ironbows-common.toml" +hash = "18f4389bdf7280744e1bed2baa9a4b0ae17c15de291f70f6f8b41d36ffaef678" + +[[files]] +file = "config/ironfurnaces-client.toml" +hash = "7a0f4bf61eccfebf18729b71053a8395341985e5d8f2d86190d2ee8d71766e6a" + +[[files]] +file = "config/ironfurnaces.toml" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/ironjetpacks-client.toml" +hash = "8e4bf67aa422c91f299fa0ec91498c7c8f790288a4d911a9e9507e38b92286fe" + +[[files]] +file = "config/ironjetpacks-common.toml" +hash = "ee2d7f260fb1bd1c48cf13346e541895264d8be63111ffd0f2157beca6bb10b9" + +[[files]] +file = "config/irons_spellbooks-client.toml" +hash = "db7f2bc600e6e91d9c18ceb6ef34db93027e20b5cc36148531fb4e66015c40c6" + +[[files]] +file = "config/itemcollectors-common.toml" +hash = "0d6144344dd7efef2a0198f2372b9ae83b72f32f3203434046c5aa216cb186e3" + +[[files]] +file = "config/iwannaskate-client.toml" +hash = "dd92f6cd582dd49340ab6638f2d4ca9d2df161338ed1c4dae068cac878915c18" + +[[files]] +file = "config/iwannaskate-common.toml" +hash = "d95f9bef77a71c29794bde35ac6c2a234ea28056a035a99dec8f1041664ebf4a" + +[[files]] +file = "config/jade/hide-blocks.json" +hash = "247df2699ebb5a0d4c9585aeeb267ef9388cd5bee2b13ca340f35124a135b35b" + +[[files]] +file = "config/jade/hide-entities.json" +hash = "22b4560c3dc05da35a70bb6611da0ce04cff295ab8c663afd58e725c396a24b3" + +[[files]] +file = "config/jade/jade.json" +hash = "32fedf814a21987ff476ed15e7ff98a0166a2498cdf42c46caeea8c24e357eed" + +[[files]] +file = "config/jade/plugins.json" +hash = "2702fc0025f7595b470fb08bfc00958719d20ad345eba2aa8304183127338271" + +[[files]] +file = "config/jade/sort-order.json" +hash = "c89cfdbc72d8077e359a59bc288a2b38e4161c9ca20bd1ab03bd8bfbf5b0f04f" + +[[files]] +file = "config/jearchaeology-common.toml" +hash = "78d2710249a6e256f422c208b80378db2d1d1afef5bf5d2b052dc5396a8bf7f0" + +[[files]] +file = "config/jeed-client.toml" +hash = "b444836f74e487bd1a4df35e31d38917a40a7d7afc111f9d348e95bada8ed6bf" + +[[files]] +file = "config/jei/async_incompatible_plugins.json" +hash = "7f148f2eed9888f633a4d8ebb068a63a9312aa2325261a5bc7cb13b0e9b12d9b" + +[[files]] +file = "config/jei/blacklist.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/jei/ingredient-list-mod-sort-order.ini" +hash = "c1dcd488c180438bead0896c3adf68ce3c12b17258b92c2427280c56d3065c12" + +[[files]] +file = "config/jei/ingredient-list-type-sort-order.ini" +hash = "39f4ea314660784f7aea9016518456bdd4d9dd1e3650150157fca6a5c839ac14" + +[[files]] +file = "config/jei/jei-client.ini" +hash = "34588df52d85317d1678a70c5bcfd905833cc7eb3b6077c500789fd2248998d5" + +[[files]] +file = "config/jei/jei-colors.ini" +hash = "30ffef1681a9b0255e65a756406f85b1cca8b0bb3c0fab357c2727e325401bd0" + +[[files]] +file = "config/jei/jei-debug.ini" +hash = "44e73ad4423c5bf0381da8e934861ac552cca4a12d4a007801cacf6eb85d12e9" + +[[files]] +file = "config/jei/jei-mod-id-format.ini" +hash = "07052785400b48d3757dbbcfff0b50899fbaed1ac54ea09bc9024ea7f73b7644" + +[[files]] +file = "config/jei/recipe-category-sort-order.ini" +hash = "ff09801d2b4f887101e030958dfb18cf83751eb36e62ec67489338963d74fed4" + +[[files]] +file = "config/jei/world/local/New_World/lookupHistory.ini" +hash = "a2f14bf43d116c2841cab8d84a7ced46fd26dc37ef39ba19b4d8dcc65409e098" + +[[files]] +file = "config/jei/world/server/Industrial_Magic_Reloaded__6_a70939dc/lookupHistory.ini" +hash = "5307af6e8dd157680644236c70eb3768582374189eb0982dcac8bfb937febfbf" + +[[files]] +file = "config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini" +hash = "cd3a4b413521cd6c6c4a3c3957ed51a898570aa195ed65d778bd077241e6087b" + +[[files]] +file = "config/jei_mekanism_multiblocks-client.toml" +hash = "8508f573308320d0409aa79c99aa8a2e8646ef00a8800ede6baac0f53451dac3" + +[[files]] +file = "config/jeiintegration-client.toml" +hash = "c6cf2a1f253bff9c24251312b981d31869b2dcb676f399a7ca2a7756cfb8f76d" + +[[files]] +file = "config/jeioptimizer-client.toml" +hash = "5b464c89fca359a37b6ca907f0f06a69386536e3348a58fbff0e54288fa34230" + +[[files]] +file = "config/jeresources-common.toml" +hash = "9dbe8c6973dc932be6dd20cb63381276740b23c75349dbe870fc8098c8529989" + +[[files]] +file = "config/jeresources.toml" +hash = "9dbe8c6973dc932be6dd20cb63381276740b23c75349dbe870fc8098c8529989" + +[[files]] +file = "config/jerintegration-client.toml" +hash = "7be3ace566d05565164add71a87f8bd4be25500a5ad6552ab57e4e9ca8fbf2ad" + +[[files]] +file = "config/jmi-client.toml" +hash = "5f2c4767c9db4c9daca581fb7c68cfb24dbbb015d0e66ba92a7187c7e9140009" + +[[files]] +file = "config/jumpoverfences-client.toml" +hash = "ada077dea7fa7bc15b84a0111cf5a742ed3d5dc08df78bada634337b12f12847" + +[[files]] +file = "config/justenoughbreeding-offsets.json" +hash = "a1d6c7261526c48721e40fa1b9380f4a7da1be0e7e149ce2672705509e3203b6" + +[[files]] +file = "config/keybindatlas-client.toml" +hash = "d361b3c908009559b3e1068fd28fb32073f38233076a588dc2378a514ccc11ac" + +[[files]] +file = "config/kiwi-client.yaml" +hash = "fcf939cc6b0e0847b035a52b6e1d03510bb5a6a8b3bfabf959b95d1197a6a7a1" + +[[files]] +file = "config/kiwi-common.yaml" +hash = "be8ffd6a4ed69300864736280b44e2b537fef40ee69fcdf8687403d9a13b8014" + +[[files]] +file = "config/kleeslabs-common.toml" +hash = "b630e660d677e22c694d5b87b5f2da9d8029e2a0ca9cbecbcdb6a774eae6e5c0" + +[[files]] +file = "config/konkrete/locals/de_de.local" +hash = "79a34cfd15c2d9c06498dc221be79279507d9b57666cd44f8d2c2cf95d3582ef" + +[[files]] +file = "config/konkrete/locals/en_us.local" +hash = "fdf1864fd049b3f1b9af1f8db6c5125a627be7d06a451c778da3329843d3c39a" + +[[files]] +file = "config/konkrete/locals/pl_pl.local" +hash = "d38a7776e362e4de6082078d803c1c9358d9d40526edfe4bdfd29c552aef76d8" + +[[files]] +file = "config/konkrete/locals/pt_br.local" +hash = "dca55a2792451b31424cd5c24037141ec57cdca51955d062dd908fa9ca6a3e9c" + +[[files]] +file = "config/krypton_fnp.yaml" +hash = "2638a1b4f548c586e7b6965cb9b66856b8057425ef5f26d271cfbb59532295d3" + +[[files]] +file = "config/l2_configs/l2library-client.toml" +hash = "882837e34970cba3824f63f1c3092dfff5b95b13c40c0f504182dfdce76a3fa0" + +[[files]] +file = "config/l2_configs/l2library-common.toml" +hash = "5a1791dfc285628c7dc6a6faf4bfe241c6be682bfa44cdba62208fdb0e64ea04" + +[[files]] +file = "config/lazyyyyy.general.json" +hash = "93d1fda5f054f54a9870b7eed6f732bd0d85bb66dbaffdefad99f9882c016018" + +[[files]] +file = "config/lazyyyyy.mixins.json" +hash = "78c1917e4df68f02240d700d69a51034d45aa09c531c5ffa3dd104346b24a7c8" + +[[files]] +file = "config/leaderboards-client.json" +hash = "090be63ddf13e55225d282a833aa7a441982702f6ede86d30be40f2a430a8f0a" + +[[files]] +file = "config/leavemybarsalone-client.toml" +hash = "2993a01aef4fe189edaa9b616da006daabcf1d635e4b793476afcdda31b25192" + +[[files]] +file = "config/leavesbegone-server.toml" +hash = "d959f115d82689b7f6075b0af48e8be95a09b3f73b6a67319646aa4bfdc0b101" + +[[files]] +file = "config/legendary_monsters-common.toml" +hash = "b88b3898af64e60999d8156a3aa70965f3ddf69c9fb1f14dd9da6929589f1402" + +[[files]] +file = "config/legendaryblockentities-client.toml" +hash = "29afbb6dfc1cb20c1a7f5da041420c086856b76b7d524c8fd7250632edd2d2bc" + +[[files]] +file = "config/legendarytooltips-common.toml" +hash = "c51c5a927c1f59d9373c038aea225dc618647ac076a9142d25111c86feaab64e" + +[[files]] +file = "config/libraryferret_1.properties" +hash = "a8b0e360329602a590fb52b7d65026d9c3493728b996505475ae214faa81e10c" + +[[files]] +file = "config/lightspeed-common.toml" +hash = "1c8bd2b827def2c2f6a335c4ebe80b193f7c405f4e430d489da8512f3bff9a81" + +[[files]] +file = "config/lithium.properties" +hash = "3e9fd3aa43be18b4ab9a8e95327274e3ac2a51239c4db1fd40cbedcd231bdcfd" + +[[files]] +file = "config/lithostitched.json" +hash = "d8a63933ec4757186a594debea59dd35724a0a895fe601b324f96217c28312df" + +[[files]] +file = "config/littlejoys-common.toml" +hash = "65f85dc28f868e961b67cc14c8863765b52def4410b372cb7f4e8a5c5d8f73bd" + +[[files]] +file = "config/lmft.json" +hash = "2a2ee19297afe3fc512f5cbe639349847f3e7a74616f282d24a179a17f4559ed" + +[[files]] +file = "config/lodestone-client.toml" +hash = "441957dfd29357d90c26f0c963f063337dcf62a2a0ec2e2fe3f1ef278e7003b4" + +[[files]] +file = "config/logbegone.toml" +hash = "3f693b6b3efd8f6cccddb3f307fd896b4a2049676c36ebd90bcb63ef0315755e" + +[[files]] +file = "config/lootintegrations.json" +hash = "898873bac11398a75f7faddeb31410246d43be578868ba58d390b58667b44d31" + +[[files]] +file = "config/lootr-client.toml" +hash = "4e37c085446f2a5be3a3cc4765ffc9657e71473245574c3e398c64fef07615a0" + +[[files]] +file = "config/lootr-common.toml" +hash = "c056a537b6cbc9cf4c49f29ec98480537a68932e412f7c5dbd7f0a70bee69ce4" + +[[files]] +file = "config/lootr_liason-common.toml" +hash = "3f5a2d90130c30e8196dad196383cbd95767d52e8e7168fa778a0ede4b798fb1" + +[[files]] +file = "config/lucent-client.toml" +hash = "edffd78fae8f887389bb01432492d12ccad558c6c6c8322d37a5003e4f2b3dfa" + +[[files]] +file = "config/magnumtorch-server.toml" +hash = "1f65f23de94c2e4054d9dd5167811693e7acba633d6c8480e6e5122a6eb76f19" + +[[files]] +file = "config/mahoutsukai-client.toml" +hash = "20e21e28b8f27dee459bf35f2d8fd17a04e39d34e2af8158a311b5e31d987194" + +[[files]] +file = "config/majruszlibrary.json" +hash = "cb33d48e8c3d60d977d6957a29baad2b219b447cdf2c7bcb3f9cb93961df4c50" + +[[files]] +file = "config/majruszsaccessories.json" +hash = "6b2ba1b9e90469832a1cd18a5d78601bb83a43cfbf7c1d41d7eb3467d5b423fe" + +[[files]] +file = "config/majruszsdifficulty.json" +hash = "221e78272f2f8a6380eae8f5d2e7231f70778e04698470640bfd0f821e66f12a" + +[[files]] +file = "config/majruszsenchantments.json" +hash = "156be9d53f7f4943b3ab7bc960930054431ff638f23b9eed0a556b0046641c91" + +[[files]] +file = "config/malum-client.toml" +hash = "0921dab8b3c7ec26009d0c1c29ba68b912963b12c72c70bb1b1a1218447c01b7" + +[[files]] +file = "config/malum-common.toml" +hash = "f71210c026f7b8376f129efc48a0bff427989364c16e2b285c2b15d8fff77f07" + +[[files]] +file = "config/mantle-client.toml" +hash = "83a767bf5d96b03174cacef236ef7aebdd3577e184d53a5a1e9d3e7a5256d075" + +[[files]] +file = "config/matc-client.toml" +hash = "6a5819bbc00276ebd511a6f95a31628bea702b6ed80a401cb867ca092bb052be" + +[[files]] +file = "config/mcjtylib-client.toml" +hash = "d1e8040321a75d58a472dec80d22df4010ea5965e2e73dee1ddc28e2ff69cf36" + +[[files]] +file = "config/meadow.toml" +hash = "48ca34aff5519b090e225b44697bd957461b9668d985d5644723f7b7a8fbd33e" + +[[files]] +file = "config/measurements-client.toml" +hash = "76dafa79e0a2e83290ca6bea781b64f9dee72e969a887bb61c109d9fde93f638" + +[[files]] +file = "config/megacells.json" +hash = "b9d8a859859ce598ea852230e4d18726756f89b371c03dce59c9ffe5025318d2" + +[[files]] +file = "config/mekanism_turrets-common.toml" +hash = "e095181b5e1e2697e01166fdb74d0b1b922cf222e767ac299ba25432e6b06f47" + +[[files]] +file = "config/mekanismcovers.json" +hash = "d6dd0e83dc8903b9fad926cc47f0a02b8c446d7bac54a86c95900ed5d16c0cd6" + +[[files]] +file = "config/merequester-common.toml" +hash = "a87e0e5a2bacb1c4c5399265ba2615d6b697f1a23513dad44044b18d400f1015" + +[[files]] +file = "config/mffs-client.toml" +hash = "f30c46224e22f58c8d4684e03c4ed31f5081b66cd934480a48f31081c67f806a" + +[[files]] +file = "config/mffs-common.toml" +hash = "d6d7d140e271c02296f38d563b8fb3be3869f2395c43a334d26b1914b00a0f65" + +[[files]] +file = "config/midnight-client.toml" +hash = "c1dfb13dfab8b1045ff5ec183e930f974e17f049fcae3d595000ea7b25e6a8c2" + +[[files]] +file = "config/midnightlib.json" +hash = "9bcdd9f5ae6c9fecc3a0dfee7507bf17c56702f14e40db9cdde90148f1d3b387" + +[[files]] +file = "config/mighty_mail.server.toml" +hash = "d944b35893d1d085d25807f8d2cebcd064222aa4e4ec1d8ffe59661fae319b4e" + +[[files]] +file = "config/minecolonies-client.toml" +hash = "acdfa2c63513f88c4eb4210f34c5f76b69ad086ca37a882cb548edd40a898905" + +[[files]] +file = "config/minecolonies-common.toml" +hash = "e2a317da31de1103db85186962e8e67428ae26afc6a54c8c2aca6d4282ee7cee" + +[[files]] +file = "config/minecolonies_compatibility-common.toml" +hash = "82c5eacb93bf0d9351b5cd2480ab518c7fdb1f327b78a5aec76d455ddb0f31dc" + +[[files]] +file = "config/minecolonies_tweaks-client.toml" +hash = "e1356036cf89a85cc2aee970bf3680c70996237991eb3b8fa2f1177e1eb6b2b3" + +[[files]] +file = "config/minecolonies_tweaks-common.toml" +hash = "fad1de7e13e131d8e0a582896998ad50c2f9c2bb86ac7b3a8df00fd8962871ca" + +[[files]] +file = "config/minecolonies_tweaks-custom_tools.json" +hash = "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + +[[files]] +file = "config/mininggadgets-client.toml" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/mininggadgets-common.toml" +hash = "9c6fb197faf5c507a463b4906084c954ab412d6c35f2d225583862dd47dd85fd" + +[[files]] +file = "config/misanthropy_ftb_quest_additions-common.toml" +hash = "58ce790e9968cc7ae6d5c9a272c196ebc5ed95547ad98f547f6197bf84544f27" + +[[files]] +file = "config/mobcompack-common.toml" +hash = "ec74bf2abdf5b9e4ed226db1d415032148d5926ba1cd312e5043dd4f3ed3c57a" + +[[files]] +file = "config/modelfix-client.toml" +hash = "fa745470318f2031347f2b34c369ca01b81eece56b4a9eb58e2edf47a8cea230" + +[[files]] +file = "config/modernfix-common.toml" +hash = "fad9aea710ec3508eab562cd8f2b5f8e2dda6ee1c5fb1fe818f90ce253017f66" + +[[files]] +file = "config/modernfix-mixins.properties" +hash = "fae1f0d72241a7f109727f59d1b662709c53c42af26d5b0457df9c4470ad58e4" + +[[files]] +file = "config/modernworldcreation/config.txt" +hash = "d1bd56ec12c026110b417a9fc8aadbb5d65ae34ff66e6ce796e2decb6003ba9b" + +[[files]] +file = "config/modonomicon-client.toml" +hash = "ac399eabe0ff6b5dffc5c39469ab794394375525af0eefcc8c45b71213eb83f3" + +[[files]] +file = "config/mods_optimizer/config.toml" +hash = "1beb3eea4cec118531f8085bb5e0de5e7d130e528605f1a211ec8ee720d4cba1" + +[[files]] +file = "config/mods_optimizer/mods-database-override.json" +hash = "dfd779cd43b4dca829b6c0279d4cb777c12c607039108edec09cba0d3d78dc9e" + +[[files]] +file = "config/mods_optimizer/mods-database.json" +hash = "cd6e0f100089b022189b3c492ef77d3edcc243966f1779c13dc1a86be2fe9cd8" + +[[files]] +file = "config/mods_optimizer/mods-database.json.sha256" +hash = "0c04038f0341f9a129de9c8b12ad3b518e13c4fdaa2211943b0894399e4951e9" + +[[files]] +file = "config/modularrouters-client.toml" +hash = "f621820f348b8c8b47567632b47f61452d454368e622e3f2551aca0c9f27fd4a" + +[[files]] +file = "config/modularrouters-common.toml" +hash = "b75b567642a35003a7923122aba3a103f8cd3e17a37fda5cd0fb88b63ac80539" + +[[files]] +file = "config/monobank-common.toml" +hash = "bc7b1162c9f98264cb1c723477d1106eb0fa3f86860d96b7a96a630f10aa253c" + +[[files]] +file = "config/monolib-common.toml" +hash = "875328038c958562c9d720174940394a1bdf4bc970db79130f9d4850a3a1f0b9" + +[[files]] +file = "config/monolib-server.json" +hash = "fb45d48f9c131fd07c80dcad3f47a99c44290db73a2c3a73aba155e8f00c63bd" + +[[files]] +file = "config/moonlight-client.toml" +hash = "f85ad76e43a673255d83bb837a72389a5a593877a04ce037a6c0c1d6c52fc898" + +[[files]] +file = "config/moonlight-common.toml" +hash = "5908907a17f4cb15978ab4611ec13fc7c6841483f0c645c2774507c628aad1ab" + +[[files]] +file = "config/more_immersive_wires-common.toml" +hash = "7b4b09ddf774ac3f52a9fd5952495173c8585f6d12b26b8d7532e96cd9ddafe9" + +[[files]] +file = "config/moremekanismprocessing-client.toml" +hash = "b93eaf16f6b468d2d3bdef5e5b774fc2dff3c4cb019970c50b6e3209aa86c670" + +[[files]] +file = "config/moremekanismprocessing-common.toml" +hash = "c5879e054d10e8d18698175011137fe146ff481996f954c5369abc36e7e95faf" + +[[files]] +file = "config/moreoverlays.toml" +hash = "bc7082cf82f1d09420a7ee97a32e2a06e0c7f41a00c4cb495d21a3cc8ebc67ce" + +[[files]] +file = "config/morerelics-client.toml" +hash = "94a42079847bbfd7830d706c84513c31d714dc0cff8b1c3465652334c17d5d11" + +[[files]] +file = "config/morerelics-common.toml" +hash = "818ebb3066ac157457257eeaa6dc96b9475bdd7ded6c1c016f2eb1e03ddbe6cd" + +[[files]] +file = "config/morevillagers-common.toml" +hash = "8f71e1883d7ee987a1f057080606a59ca42567533a1b33e86f3ff788105f0471" + +[[files]] +file = "config/movingelevators-common.toml" +hash = "08ab02cdf46632d0185786e037f1ec96d9b7725aaac1f110144eddb94089a1eb" + +[[files]] +file = "config/mowziesmobs-client.toml" +hash = "b2ed15f55eb1b57f7e1b4a81b99edd02d98d9000d319d72d73caae13e5fc4cc4" + +[[files]] +file = "config/mowziesmobs-common.toml" +hash = "e1add6dce3cbd2d1b49536ccc3309e00a09455bd12d85a9dd6717529cdbdfcc7" + +[[files]] +file = "config/musicbox.common.conf" +hash = "a8f6170704a149f686062235771258b44fe9feaeb2e944a1ce624e53da9d6d51" + +[[files]] +file = "config/mystianapiary-common.toml" +hash = "919eda5bd2fe441c5a79f1c8d314719f1098e0a6378de593fca4def562da5034" + +[[files]] +file = "config/mysticaladaptations-common.toml" +hash = "166d29e520cc4876d8e098964a138cf5fb18e324fadf6f7db4c0044d8f7740a2" + +[[files]] +file = "config/mysticalagradditions-common.toml" +hash = "a821366c1cd576168df4db09a27c46f9b24deda53c3f31e9c4718fa20fd1862f" + +[[files]] +file = "config/mysticalagriculture-client.toml" +hash = "79f1559a4239d9a72bf9126438554995c1995779dc8a89a55b69a6a7b462eb17" + +[[files]] +file = "config/mysticalagriculture-common.toml" +hash = "490f4f4ae0121a8367f72c36e25c77d8984042ec0dc922c0ddb91c5633a7854d" + +[[files]] +file = "config/mythicbotany-client.toml" +hash = "d25e3e6d87d778432c0b3fb7d076dfe492de6a14fb813079f01d20d604e870a1" + +[[files]] +file = "config/mythicbotany.json5" +hash = "a60fe155819ee2e9fbeeda25a7550d5a5fa39fab83e09116b098c7cfd5dfb9d3" + +[[files]] +file = "config/nasty-common.toml" +hash = "36a8eb48ca5ee0a017da3f3ce95a20e3da6617777c424b85a84c40e489c66598" + +[[files]] +file = "config/naturalist.json" +hash = "0f9c04cb8fe5b78bc9c225c4700cc4b568a8e226d13b9e76584d8c154c7bd90c" + +[[files]] +file = "config/naturesaura-common.toml" +hash = "fab6900ef08671d6f259eb13bafbaf995d1a2b2401ec26f99e6cb05c36a40b83" + +[[files]] +file = "config/naturescompass-client.toml" +hash = "12e21e8f6b4f99c727bf907935dbc7140cfd8e332f494e067f1c5fb7077b98d2" + +[[files]] +file = "config/naturescompass-common.toml" +hash = "e9f315861a5c0f7e2446dc6dc27a467dc540d0a454b831f650323bf3c9a96c57" + +[[files]] +file = "config/necronomicon.json5" +hash = "f97fc5ae7dd7d312e86ecddf2e4491fee3e3a16b7a26cbb3aa078fdd3255c4df" + +[[files]] +file = "config/nerb.yaml" +hash = "dceda831a1a2585df3fb5f3baae348eb43a7179ced0609a8a47869dfb0243d71" + +[[files]] +file = "config/neruina.json" +hash = "f46a492fde1433396b7b0529b70e93cdc82473cfd52783f38b8720db8bafb43e" + +[[files]] +file = "config/nightconfigfixes.toml" +hash = "6bef543d9d16fdbf8ff4d0ed21a6ef91db78c52aa89efcd9a2ba56cbb18a4be2" + +[[files]] +file = "config/nostartupmessages-common.toml" +hash = "1402655db70112882c31ceffb9c0070801df9d20761c2828380d848795578ebc" + +[[files]] +file = "config/notenoughanimations.json" +hash = "ed5963ab9132632e89ea83f63f992f793f102d114b77938514d89d255a5754f7" + +[[files]] +file = "config/numismatics-utils-client.toml" +hash = "db1b1832bec45136966be40efbb598a1e28b7597fa551c150fb579a2322f39a2" + +[[files]] +file = "config/nyfsspiders.toml" +hash = "1988b86b1249cd3e48054df8c94f0225022dbc17689cc0fec2f0e0bde40709c8" + +[[files]] +file = "config/occultengineering-client.toml" +hash = "43b1185bc1d479e341795c31f5606d3e094a7b6e55083a278974b8f7814fcc72" + +[[files]] +file = "config/occultism-client.toml" +hash = "2da918542d7e57dad43c0b0614f5d79ddf67989016a71ef2d61344163edd7f1e" + +[[files]] +file = "config/oculus.properties" +hash = "06b11e527b6413b25ad001407e8c41c10c1617a51e7146f03e570de1156d21ff" + +[[files]] +file = "config/oculus_shader_bypass-client.toml" +hash = "77e551d73070e568d9d915ed18bc70a16446d86823e2c5b4f3a056e41d5aec3f" + +[[files]] +file = "config/okzoomer-client.toml" +hash = "d0b7763e135cbba21d71c339253562b04460e4b42f599aa4a05f33cd06c9169d" + +[[files]] +file = "config/opolis_utilities.toml" +hash = "38b232c9e1c97724435ad2d6543618a70761d5aec9447a1b8bf24ef72a9b169c" + +[[files]] +file = "config/out_of_sight-client.toml" +hash = "7ee5b614e568ae95c889c363f9cb2023d816b17449270aa709d90024f5fa099e" + +[[files]] +file = "config/overflowingbars-client.toml" +hash = "95eff954328b6ce0d67ab9a0f6e6893f89c4b7784484ea49633a5b6231d846fa" + +[[files]] +file = "config/packetfixer.properties" +hash = "ee9d9ba3d6d4b6d4a165de223189123c355d00088cc0931fd50d0fe4c0df30cd" + +[[files]] +file = "config/paintings-client.toml" +hash = "3a061cf93df17f94c375bef31cf2f5f4821457d7061fdeb3d581de8a03e04d6f" + +[[files]] +file = "config/pamhc2trees.toml" +hash = "d8d203aa6939fb29602b29d00b15f9e8ffe3b7c3db67077cc29c8472cce2e0b2" + +[[files]] +file = "config/paraglider-common.toml" +hash = "c0b43d3f889471a3c73e20613ebe77495b5f9f5de70c0f265690c37de677b421" + +[[files]] +file = "config/paraglider-player-states.toml" +hash = "5f20f70f861ff20321e17f084b1ff6832dc5fc3a8b838bfa2b7898b0ed595bf3" + +[[files]] +file = "config/particle_core_config.toml" +hash = "534e788af9aa6e26674caa6d5e6d6c8b100c74e835b8d391c26949e0c144e552" + +[[files]] +file = "config/particle_core_disabled_optimizations_v2.json" +hash = "7189bb61c58cb1030b8ee486e66abf694d257192248b9b3ac4978df2b1366f7d" + +[[files]] +file = "config/passiveskilltreeadditions-client.toml" +hash = "5ffeea50dc00df80332a417d25496b568a33a437b088e2a25f17301a44ad0846" + +[[files]] +file = "config/patchouli-client.toml" +hash = "3b6236845f6a5ff8804487b63b0d74305b91316dc9a008362838607b0be3bd8e" + +[[files]] +file = "config/patchouli_library-client.toml" +hash = "11d6d2ce6a8475f9030ee7eb7bb937320e12d10821e50b606b6b9a5f83740ed3" + +[[files]] +file = "config/paxi/datapack_load_order.json" +hash = "d0aaf3172f34275479f0669aa5b0a94b85788ae638f3062b948ec49d31c38293" + +[[files]] +file = "config/paxi/datapacks/GobberxCreate.zip" +hash = "96c64b916d210824447769bdd95475baef1c83bf52d7d5cd41103dae1fdd8049" + +[[files]] +file = "config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip" +hash = "26e66358fc8de45c068e02fc5dd42b1ba555a0001ce763528f6cda13318a7be7" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip" +hash = "60fe56b43ea75dd276cebf8b1e6184ea02e42b7395cb29eddc78ad1f0392f11f" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip" +hash = "b0147d0c9b1506c958018120a0899859909144d17466d2673588971ef9d40433" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip" +hash = "a6d7837bf6ddacfa7521f44dd1ee14bdbb7c0b6152857e175791fc7fa537d915" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip" +hash = "942d2bddd973d57ed78edfac7d564753fd3850b6c23f2f66047b715f289c949c" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip" +hash = "1c05059321b8928fb1a4123d1724de6ff1755af6da95fc90c106f3913296be0b" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip" +hash = "4ecace941dbbef488669ff6a6e44088b2bdc9e83662855b24d28d49a171152dd" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip" +hash = "009bbea81fb0f500ebea78112cbecee7bf2f94bf3301a342442f850132e47476" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip" +hash = "880d7a0791d51be8e93fafb8e1181f2f6b6eb655642f36786803291a5c2770cf" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip" +hash = "645938a5c414791163bae88a8a464183ec8642c64a172a01993ee675553656e4" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip" +hash = "ff899242a00ddafb7fdb7d7a2b0654f1da06f3ac1a85bbb0a0512489dcf51272" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip" +hash = "af0c73093283ce1cf99375da45f09619d49c371e0556de6a1a8c1f1db4902025" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip" +hash = "f2b286f9202aab6a1771f25929c2b1263a5f83c6724029da2257f47211a01cee" + +[[files]] +file = "config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip" +hash = "b1978f9a141e72185fc39ee2b62b66873773f5cdb5bf58400aeaa8c27bca3d40" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip" +hash = "20818ce82e68755bf55cd73e137fd4b871e1e3f57987297308980bfff5efcc76" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip" +hash = "6ca8f1aa1676b6afad191c7a41d17b94f470da2637baa63f4cd29a40bfb5dd88" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip" +hash = "3c91d83fbd287afe89add04072960fc8acc6f26051df6ecd4cb12afbb4a7aaba" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip" +hash = "d5758540c434d9755d1f2a8e4107f812942bac15d92ab93342ccf6cd1073c5a0" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip" +hash = "992eb73e458af65cf447cfaa938506bce4a6d5d02f16fcf1f9806f512d009bf2" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip" +hash = "5055c0fd6a1a99d92baa4f3a882e7fa004d90cb7909b3f3fada39433ece58579" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip" +hash = "587be80824fd131ebbbbbed4eb17c45d4534b38b6146866ce59e03047b54b7f0" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip" +hash = "7a543c14f87aa1ef380304c5dee3ec855e399fc16eec9c159a1f6074c07510cc" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip" +hash = "0966c5088950f353b5b515ce92f41e39c2b7fb18d356559c5f42ec976de7c579" + +[[files]] +file = "config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip" +hash = "c86b69b0efccb8c56ab287b55d502ad4da7410b5f68c4ea6c986589bdc9ecd4d" + +[[files]] +file = "config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip" +hash = "e6e783eb48399941a23ac899bd370f5224d8ce311643202ee9910316a3a330e0" + +[[files]] +file = "config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip" +hash = "d328f8483ede7105f3f1009ab07ada29ab96c32771acc63a41adab848942f979" + +[[files]] +file = "config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip" +hash = "3bbcaca8a773be45a2f3f7e04c344d418f797641311d8b9f312bce829858edcb" + +[[files]] +file = "config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip" +hash = "55afdc42fe04a547927e7575f941de6af73c76e0a262b657e4bfca70663f7a1b" + +[[files]] +file = "config/paxi/resourcepack_load_order.json" +hash = "d0aaf3172f34275479f0669aa5b0a94b85788ae638f3062b948ec49d31c38293" + +[[files]] +file = "config/paxi/resourcepacks/alex's naturals.zip" +hash = "02febcd68e5895bf10541a23d87ff04b4dbd3e0c5b4f0e58c3e834c29cbe7ddd" + +[[files]] +file = "config/paxi/resourcepacks/tconjeidark.zip" +hash = "f6f084ae1df2f43e4a0e70b7d361ea766a0db9be9429ef43614d3d1ad8c20be4" + +[[files]] +file = "config/paxi/resourcepacks/waystones_1.20.1_update_5.zip" +hash = "274db09c0cfeaba5c7c4ba2e55925e90e6642d4b519d1b819a91a8f93499a625" + +[[files]] +file = "config/pehkui-client.toml" +hash = "b99f791974a57bce18a9c3bde4b416de180f24df878e985336814e6be4615e0d" + +[[files]] +file = "config/pehkui-common.toml" +hash = "e9a129d0a2dbf13d36d4f3e47ae3b2b01d32a9e872a771633bf356d9cdebc895" + +[[files]] +file = "config/pickletweaks-client.toml" +hash = "06b26d64a015da1588a702866ac2f7a97fd013a1997215a2dc5a068e64efdfb5" + +[[files]] +file = "config/pickletweaks-common.toml" +hash = "221a88eec8892a02d5011f2fd5ddbb25ce731d4d5ceafc12b10fd754b3d8edbf" + +[[files]] +file = "config/ping-client.toml" +hash = "54a73bdc7b642dca435c5bff516a3c3b365cf82612f0d698e3d11c57d5b26739" + +[[files]] +file = "config/pingwheel.json" +hash = "41c4ff6f1cb894359d3b7afe7d5e6c7550b07d3dbeace1b2c972160f80f844ca" + +[[files]] +file = "config/pingwheel.server.json" +hash = "821d5d12d0c096996c82d1a65349ac803adffcc25b89420a146c727fb92b381a" + +[[files]] +file = "config/pipezlagfix-common.toml" +hash = "e261e6f1703a25307f251cbc3c0b7661a931ce4e00e9256713752919d85a9867" + +[[files]] +file = "config/pneumaticcraft-client.toml" +hash = "c5e2ba705042dc9fb16ba6f5facbaaa8c5313d05d34deaa20594d8ab8e28f5bb" + +[[files]] +file = "config/pneumaticcraft-common.toml" +hash = "72a800d878606ae8438c06ccd174ebf8e745fd3c386a6dfa349cca7c6bfb3f1c" + +[[files]] +file = "config/polymorph-integrations.toml" +hash = "47c2b8a65ca08ee0a73400bf6b8ccc0a831b4c220fa95097eff6216456fc511a" + +[[files]] +file = "config/ponder-client.toml" +hash = "7508f3f5ceed80c7c606d01ee2dc93e2c72a8afa199ccb691fc5225c894d5bbd" + +[[files]] +file = "config/powah.json5" +hash = "5a6253e9e31bd6767c01da2b924e0bfa2306971ca915abbe72beca8b15ad8a87" + +[[files]] +file = "config/prefab.toml" +hash = "81b323974ff87676dcfd8ff4bcf445a2d65ecae811fef6a0af69247f834ca42d" + +[[files]] +file = "config/prettybeaches-common.toml" +hash = "499a636c45c9bc2fcb406607b93d35b193f5eed2d2f5faa6491ac633150a428c" + +[[files]] +file = "config/productivebees-client.toml" +hash = "0e500a05a9f3f4e091f8fe7a96a1c52db8f7a3e78843255d0a559ad9ad284e80" + +[[files]] +file = "config/projectile_damage.json" +hash = "8c3eb2a4150a8575e522c02acbdd88f7d6a387e9caf07da4683d6df4b4abac29" + +[[files]] +file = "config/projectvibrantjourneys-common.toml" +hash = "835876f5a785e56d9aa154cc0d1aedba61218393dc553bca850a2da8d26e6ed8" + +[[files]] +file = "config/puzzlesapi-iteminteractions-client.toml" +hash = "a6aaff33ecabcd21bd315e1f8167716faa333d64e5dc166b270a26274c5cbdd0" + +[[files]] +file = "config/puzzlesapi-iteminteractions-server.toml" +hash = "86ff328a054a94ad7845364eee53b77273614c13643d9b35bba1b430ed7123f7" + +[[files]] +file = "config/puzzlesapi-slotcycling-client.toml" +hash = "480697ae74306cdcd17eed12a34795b7856f00d183d06ce69fd0fbf046c54c2e" + +[[files]] +file = "config/quality_food-client.toml" +hash = "c549eaf0d27bd625dc7a1f08507fa4a1f74512154a955a429804e0fb5d8abb31" + +[[files]] +file = "config/quark-common.toml" +hash = "2c8e627c28a3f47214783d9fb51781fcfcf541b48b0e101adad2212d068da4ff" + +[[files]] +file = "config/raided-common.toml" +hash = "66b2e906e56932093d0292e9c83c88ebdc0db75f6b33bc812f089b82cc23bba5" + +[[files]] +file = "config/railcraft-client.toml" +hash = "6617227512b39ee3771cf71b37c96137221743947c691f68b0fa283779725ba5" + +[[files]] +file = "config/railcraft-common.toml" +hash = "5159343c153ac7a096a81fb480dd135fca3fef93ab72a8b2846fe456c71cb152" + +[[files]] +file = "config/ramchunks-server.toml" +hash = "cefb2937fcc0ddd839487ef1e3dc03890c818f0b296a28cb72d8dca57d8c0092" + +[[files]] +file = "config/rats-client.toml" +hash = "0d354749b37326cf43bb67d2b7cd4050a1145aedc2046a118da4cb6d747f6ce6" + +[[files]] +file = "config/rats-common.toml" +hash = "1d06fc665b9512a76b08d18d1589642572b45883736a50e806e7f2b076405f60" + +[[files]] +file = "config/realistic-landing.properties" +hash = "a82623b8b29a68cc71458719f70bee76452c6bc4956e1eda5269a4679fca0b41" + +[[files]] +file = "config/rebornstorage-common.toml" +hash = "1ad387a945ebad38297edff6ce37903a393ad921e8af18c811c17c8d2b4af1ce" + +[[files]] +file = "config/recipeessentials.json" +hash = "d5e9999392e13549752157c6cb574c761cd323414d8eda96b31bfc6c42f98d25" + +[[files]] +file = "config/refinedstorage-client.toml" +hash = "1688fbd31e8cd3a63f9ca3f5aa407dc4c5725bb727e450df69a24fd45418181a" + +[[files]] +file = "config/refurbished_furniture.client.toml" +hash = "f151762bc99261b0244618cb3cc856e4d1fe089b6cf9eaf7b23c42a9fbc57970" + +[[files]] +file = "config/refurbished_furniture.server.toml" +hash = "be7867ef2a50eb35f3b03f2b84f3cf55029ca2e11fac4ed1622039e036341514" + +[[files]] +file = "config/regions_unexplored/ru-common.toml" +hash = "88600dde2d44a3368c7601e7a7722a726151ccd46cff22791557f7cc85c81770" + +[[files]] +file = "config/regions_unexplored/ru-primary-region.toml" +hash = "a5ac7f7722dcfb7d58188ec777d53eccccc0dcba226e620af58a722c72e10c9d" + +[[files]] +file = "config/regions_unexplored/ru-secondary-region.toml" +hash = "a22188fc95d389d7e2ed321197be409b76fa9fff7c7b6b10ed7e892afc20dcb5" + +[[files]] +file = "config/relics.yaml" +hash = "4411078ac8d2107482e0f717576b1d9e1fa6c0938d11135a2541f4d8c2518278" + +[[files]] +file = "config/reliquary-client.toml" +hash = "25d2d6716b8394a5ac31d7b1a8166143d2cc8f16e996e2c89acf14e280e51cbf" + +[[files]] +file = "config/reliquary-common.toml" +hash = "9b9e8c0f08093a339ea66c554ae1c9d0201fc937278d177f43ca2bb4cd99c29c" + +[[files]] +file = "config/resourceful-config-web.json" +hash = "25593c79ed97f67a36ca9b50370afba67d910f33e3ab314282f7087aad7843f9" + +[[files]] +file = "config/resourcepackoverrides.json" +hash = "1cab1e1beef2a63354027d6a5f8ce299fee685dd5387d7fd21125c487c50c4c1" + +[[files]] +file = "config/rftoolsbuilder-client.toml" +hash = "5c17254a35d8fdf5d4bab537a40cedfcb9a02b398c915c82dc4a657a13a6b73b" + +[[files]] +file = "config/rftoolsstorage-client.toml" +hash = "087cb9c3837da540b82ebd77fe4103ba7abd657e8cce7e2bc83fbbc3ef6f6e26" + +[[files]] +file = "config/rftoolsutility-client.toml" +hash = "77b0594f22ea4de4e3f5d45d3426829bae7fa13daa351c39094fab7eff1caad5" + +[[files]] +file = "config/ribbits-forge-1_20_1.toml" +hash = "fb650d06ef5cd1bbf28beabac22203ad62d39eb712a84f2c2fcca6856ea09cf8" + +[[files]] +file = "config/ribbits-options.json" +hash = "671ee75b5333f98d3a9b92fcfcc79c7df7a6b4c0e5cda025a7b449ab79562b2b" + +[[files]] +file = "config/rightclickharvest.json5" +hash = "6eb5169563472ae96184c94e9f42ff7d76fdba403ed3190ffb308e817ea0a21e" + +[[files]] +file = "config/rrls.toml" +hash = "c5d83c819577431d0aaaca1fd79d66a56b1e53d4bcbcb7a81ccd37ad43f3620f" + +[[files]] +file = "config/rsmixin-common.toml" +hash = "6980b63af3abdc28d8431f917d1aa6c4119f50c758d95f281fa16c6d9341657c" + +[[files]] +file = "config/rsrequestify-common.toml" +hash = "dd9d58eb53802e7d5192f347b50fea11d50289fc35f763c0a9268c87c73154e6" + +[[files]] +file = "config/runiclib.json" +hash = "d8b59dc047396b66cf2e6a8d2de8bd9c85a0a37b0f569eef520f2a52409aae54" + +[[files]] +file = "config/sanguine_networks-common.toml" +hash = "666a0c237ab96ec41f44a7cce3ef943a052de7187a6e76ab92c808de49ad7c2f" + +[[files]] +file = "config/saturn-optimizations.toml" +hash = "47019e25dcb00d2d1da22d725095dc39bcbbf10cdfb8429d8d5a97b231a272b3" + +[[files]] +file = "config/seamless_loading_screen.json" +hash = "11709f830f3d33ed6407a05fbffc3161713b194005e1c97b2cddab457689aac8" + +[[files]] +file = "config/seasonhud-client.toml" +hash = "9c3373fab31803cebf9eddef8f481c7782e4ff7430905e54cb2d4673a0995b9a" + +[[files]] +file = "config/seaworthyboats.json5" +hash = "601a7f73a4bd4020efef4b2b1d485177ba058c3d5d70410b63c26f231db4e38b" + +[[files]] +file = "config/sebastrnlib-client.toml" +hash = "9b311670cb1d0d0bc2fc63a223677fef6d0d2765767b2bc2a220b8d368cabe52" + +[[files]] +file = "config/securitycraft-client.toml" +hash = "a42ea30f59d791197a01657daadd1484938b1cbce7ff35441a679467d15e3bdb" + +[[files]] +file = "config/sereneseasons/fertility.toml" +hash = "e67138d1168068fa5a5ab66f90f9583b87dea826b7e6c0bb77730fe76b275c06" + +[[files]] +file = "config/sereneseasons/seasons.toml" +hash = "02d8280b9b8ec7c39f564a0ab136f2a8b9ae3a91a8b5b283568a17d801d8a5cd" + +[[files]] +file = "config/sereneseasonsplus-common.toml" +hash = "0a5fabfc0300d1efac9d0c5ba49dc3b9febabe7381804223be022889bf90cf10" + +[[files]] +file = "config/serializationisbad-remotecache.json" +hash = "53784981469d3944fb0a26e4739882907e3304f0885eda5a56b0ba7d36622b81" + +[[files]] +file = "config/serializationisbad.json" +hash = "a7f5083dc6d5462e02ecf5237861df29e829aacaf3920388e4b9ce8036ba3834" + +[[files]] +file = "config/serverconfigcleaner-common.toml" +hash = "6971970e670bd21ba5358a2efea6b42d18947fcc1efee1d36c662933a0f310c1" + +[[files]] +file = "config/serverconfigupdater-common.toml" +hash = "7550be2e9f49f227113b89e8f41378aa7fc676186804de9a19be2329f99cbd46" + +[[files]] +file = "config/servertabinfo-client.toml" +hash = "b425a8c7805cfbe9d3fffa0d802b69945dbf45dd69a00a0817ce114331c814d0" + +[[files]] +file = "config/servertabinfo-server.toml" +hash = "dad0ee045d558dc591a03f42312ca5aafa3d748603ba48cf5dc4ee78cec04467" + +[[files]] +file = "config/sfm-client-program-editor.toml" +hash = "6fb3a3375aafe612d965c16f453e5a757f5feba459d88ab8ef59afe084cf07cb" + +[[files]] +file = "config/sfm-client.toml" +hash = "32311440b83fc4a649aabe30c1556a01ed221bac1808f28c7dbc651bd08084df" + +[[files]] +file = "config/shetiphiancore-client.toml" +hash = "d94be400344a5216de111fd93a2caa2af9c7d09849a195170c780ff1d9439008" + +[[files]] +file = "config/shetiphiancore.toml" +hash = "c594c165ac260b22346a7aa75a2561af8522e4e2eeab821183a250603b0e39fd" + +[[files]] +file = "config/shrink-common.toml" +hash = "5d52ba0a054155354c3f82ddf79b32e983eab73fbf1d09fe5a8e6e520be25d44" + +[[files]] +file = "config/shut_up_gl_error.json5" +hash = "f0f184bc987b3ae959f3f4c145922449a77a029723040da5c1be3cbc992a4a1b" + +[[files]] +file = "config/sidebar_buttons.json" +hash = "4ae319656022b11804fa9be3021cd7be3818ee8fdae31130a6452f750dd8c161" + +[[files]] +file = "config/simple-custom-early-loading.json" +hash = "6eafa29cbc1d86fb9c41c492c7f27aae87ff0fc489ecb573faeda7ce5612b538" + +[[files]] +file = "config/simple-custom-early-loading/loading.png" +hash = "1b5ad73dbe5ac087b78d5b9119371b0accca2e16fc0678474c3106c81823d718" + +[[files]] +file = "config/simplebackups-common.toml" +hash = "684d7a2050865a631cbbe8b6bc94971535b136f75a75081fc37ae1ec05c44588" + +[[files]] +file = "config/simplehats.json" +hash = "ef023c7f0d6c273b463f595c62145afab8f3b65b43b0b3304e3da5e9355cb5dc" + +[[files]] +file = "config/simplehats/client.toml" +hash = "394fbb3127d89c7df83532390a639f3b1913c7473a74eb5ae47d9e8557d3df3d" + +[[files]] +file = "config/simplehats/common.toml" +hash = "60fe4644dae4d1f2a720f4ed407bdac5496173a6acb5e74c482fdcefad8c0390" + +[[files]] +file = "config/skilltree-client.toml" +hash = "1d040dc05c4a0b196482ac84ecb402e4f0f93cf90c55967fd9ca3524b2cfcd1c" + +[[files]] +file = "config/skilltree-common.toml" +hash = "d0a188aade923e3cc0fba7929a2e7c35341d939418bed5ec650a91384ca19b59" + +[[files]] +file = "config/skinlayers.json" +hash = "6938dedbced0a6bb0ef345264f8df432b6db8b759f6614b32bae655ca72e131d" + +[[files]] +file = "config/smallships-client.toml" +hash = "2055d621b5cb01a3a0cc7134bb97d8109f56152938131f7c31bf27b28c264f9b" + +[[files]] +file = "config/smallships-common.toml" +hash = "0c89c2c56094816dcad1d0693cb52dbb61720797d8b2b0e2d25f9937a464de56" + +[[files]] +file = "config/smarterfarmers-common.toml" +hash = "32722ba1b3094c0ae26fcb43cd15d35ed8d4a8333529e1350fc4db83c91c9153" + +[[files]] +file = "config/smoothboot.json" +hash = "0c74b7cd8bc5d68a6faf71fe2708e92f28549bb06676ff3974264a9afbad385e" + +[[files]] +file = "config/smoothchunk.json" +hash = "c436bafdbff9f91207a0d8849db304223deaa165654413a06d3de849bdbceb0a" + +[[files]] +file = "config/smoothgui.json" +hash = "8a7a7774bd7e590beef25c25944044c769a45e5a110cb8975a54b2558e1d4534" + +[[files]] +file = "config/snad-common.toml" +hash = "49444dbb42707f6bbe29b4c7b6600cca2c314c4c089df3abd033aeaede440050" + +[[files]] +file = "config/snowrealmagic-client.yaml" +hash = "34909564dc66fb400f716437577c349965144e46febfb432a388aed3b0fe81e9" + +[[files]] +file = "config/snowrealmagic-common.yaml" +hash = "5a8b5e5eca6cee82b97a45811975a9487749803b714f9489e1741e51c60964d8" + +[[files]] +file = "config/snowundertrees-common.toml" +hash = "c554d592cbfb283aefeee5de67b89d84c51fdd305712d329b153beb7c9a7068a" + +[[files]] +file = "config/sodium-extra-options.json" +hash = "e6775ff08a44ff4e846f826255bdcc0b6219dafde45aacb671fc092ecfac4fe7" + +[[files]] +file = "config/sodium-extra.properties" +hash = "a2f1b47c1eaa119ab34727f1d43c2506cb3d7f17ba8fb4efb49e20c8e0b58e70" + +[[files]] +file = "config/sodiumdynamiclights-client.toml" +hash = "086238b6b2335e35a1d96eabc842f5e048a6e067f0b53c11625ab306c780d8b1" + +[[files]] +file = "config/sodiumextras-client.toml" +hash = "ac4a04e6de61085437961c6f53f9d587ce47afb6e634231a886d66364e7563c3" + +[[files]] +file = "config/solcarrot-client.toml" +hash = "a6beae371ecd0bff5f45ae0a4d42ebe7b1f5ba35f358ff0d1e963cf6c60ae49f" + +[[files]] +file = "config/solonion-client.json" +hash = "49d3f49f2e20a5ffcd61a834e77cec538789af782b6fe2a741642aaa43fccdf6" + +[[files]] +file = "config/solonion.json" +hash = "d5d03583171893f836877357595352961d3a5acebd9b10081242405627e5b565" + +[[files]] +file = "config/sophisticatedbackpacks-common.toml" +hash = "b377e97ca3d8ae8560448b92ab820872d7c11bef0ca52dcf3f4901b44c6ddca7" + +[[files]] +file = "config/sophisticatedcore-client.toml" +hash = "4d77564fb4509f9ee615aab4d07a0d524dc63b6671c8afdb60b194f8529bac65" + +[[files]] +file = "config/sophisticatedcore-common.toml" +hash = "1114920688ab081e096cb5241a19204f0fa214ec19fb10d5547b22e462c012ee" + +[[files]] +file = "config/sophisticateditemactions-client.toml" +hash = "a5057b98da793fcb2905951a673906d0f841e99f9a96b1c2dc04cb2a14cac788" + +[[files]] +file = "config/sophisticatedstorage-client.toml" +hash = "e1ec9b1e181aa0e2a488dae1b13e00662f1706ef5be637f56bf10878891bb62d" + +[[files]] +file = "config/sophisticatedstorage-common.toml" +hash = "55a7b289f6d2ecb116d39b385fb8a883f8317734dd42f3be16af11380e26c0a3" + +[[files]] +file = "config/sosorgans-common.toml" +hash = "3d29f1312d2c893a7938e977f3ca03ddeffd1c787e7405459601f252dc2c6f24" + +[[files]] +file = "config/soundofrain-client.toml" +hash = "1233377ac6e51e8df587e4ad8272d4bf4853fd8eff40aa4bfabc871554cf722e" + +[[files]] +file = "config/sounds/chat.json" +hash = "e837d6a1472be99ecb0f6d05e8b35953d6b0dd192707907644b5bd0a0a90bb86" + +[[files]] +file = "config/sounds/event.json" +hash = "6245d6fd01be9aac33c2c7967fb795b8542a21526623ffc19a85596b3a6e1d1f" + +[[files]] +file = "config/sounds/mod_utils.json" +hash = "ad4c5fe9811db5595602b39957453cf553ca0ccf0c084db6393caa2f2fa05132" + +[[files]] +file = "config/sounds/ui.json" +hash = "ad2d93625c17340af17d4f8160853cb2a8db338ebc5e8989c574798039379f56" + +[[files]] +file = "config/sounds/world.json" +hash = "916a0011dcc2f28267e83abd8da5708c5559df1c8e973c05b36f3c9eb3b0eb58" + +[[files]] +file = "config/sparsestructures.json5" +hash = "459991eab04e55687cdbed56903c671cf3a358c3d0d3a33cc691075e6ad4a644" + +[[files]] +file = "config/splendid_slimes.cfg" +hash = "1253abe0c8cadd411780fe07c6565371aeea1c7a54924824e792a61703419f06" + +[[files]] +file = "config/stardew_fishing-client.toml" +hash = "77c7abb6da5274ebb9503001729b4c43c074e937e333a355b4f5b06308de3280" + +[[files]] +file = "config/stonezone-common.toml" +hash = "f4dee046982e65d4af5440c472444f80c1086858af8eb40b66b34f7d985c181b" + +[[files]] +file = "config/stonezone-hazardous.toml" +hash = "0a34e80318eeeb6bf61759b15c8b251c8c8d8ead35219a34f36e4aaccff7adac" + +[[files]] +file = "config/storagedrawers-client.toml" +hash = "4c4880cbb9c0cd43cba00ce28519867e27468afaea353312d9af1a1a68d2b2c8" + +[[files]] +file = "config/storagedrawers-common.toml" +hash = "ab5e86a993ac69322ffcc648dd8d058620d4050ecea737b3b12bae8daacd3019" + +[[files]] +file = "config/storagedrawers-common.v2.toml" +hash = "e42ed583bb9541c6b7241248b238b71c25db5ba691d5e62ce40e1675932a674a" + +[[files]] +file = "config/strainers.toml" +hash = "a620c686339fbc90a5b8f0317531989a632a4e97235fe3de6bd7cc5e067488ad" + +[[files]] +file = "config/strongfarmland.toml" +hash = "70dad887429a8db4beb88015df1a333388677044b29e8f167a03c4ca2cb7186c" + +[[files]] +file = "config/structure_gel-client.toml" +hash = "8058ecb1b7e59f183db54b31fe49e2040bc222294a46ba5c7c82a172a7277354" + +[[files]] +file = "config/structure_gel-common.toml" +hash = "888d2904bd7dd577f72d901603912a440540eba21212b004cf6abe41f1cde23b" + +[[files]] +file = "config/structure_layout_optimizer.jsonc" +hash = "c1150586b8ab28b23913ed762c3907952a00835f5f2e5dc3dd493efe64c67f77" + +[[files]] +file = "config/structurecompass-common.toml" +hash = "b7b60525a8b8da6ab6989e14bc2ac6252209302e0b115fdf9b609107082a7c99" + +[[files]] +file = "config/structureessentials.json" +hash = "54826c1ce55156e6a3d19a22949d733668806c7ed4a77218cc1d26bb6c5fa7bd" + +[[files]] +file = "config/structurize-client.toml" +hash = "9ea1dc7b7681945d07f7bae2164da372017ff88145e454b7c52a82beec4b7e44" + +[[files]] +file = "config/stylisheffects-client.toml" +hash = "98b255db3cc47f8d2ac1709292150fd4f46c4a3340a9784996995dd87256eda8" + +[[files]] +file = "config/supplementaries-client.toml" +hash = "bc2af74f03869ca245a82e4a77c66f5854c2bba6966860713935856f65395789" + +[[files]] +file = "config/supplementaries-common.toml" +hash = "50cc1a80707c1b00a36845360a0fb2426d8898ebc4409f2e2bf3403f8c413751" + +[[files]] +file = "config/suppsquared-common.toml" +hash = "2c20ac633c33b24a105115888730e73444ea6d11a291318de3cf5fa157f83685" + +[[files]] +file = "config/swplanets.jsonc" +hash = "402db0bd833e275b1c0244891c82a3852630cc8cc8b0bf54bc9a2e3ebf0fe095" + +[[files]] +file = "config/tarotcards/tarotcards.toml" +hash = "fa5a0d330d13737664d8c8ecf12dcc015dd5fd4e76b5ac761225c46dded18704" + +[[files]] +file = "config/tcompat-client.toml" +hash = "fb217f41633a4d781cda76a63fe7f256fc2634cc1e313800a7bef2b53cd29f8b" + +[[files]] +file = "config/tconjei-client.toml" +hash = "eabd46602a92d93ccb170f7a4f9ed4c6dc0a1629d49bb034471be43aad569c34" + +[[files]] +file = "config/tconstruct-client.toml" +hash = "3c45675117fb9fdca36f825fbc0fd72b1be887ec17895b17f1052c550b7f0e2f" + +[[files]] +file = "config/tconstruct-common.toml" +hash = "a7b6e914e4b191b67ef0b67723f30e9335516e9f7a80961123c857e935ab18f6" + +[[files]] +file = "config/tectonic.json" +hash = "9edbc0a7900f8446e515e3a603eb6dde591b471fed228d69e38417d772eb93c3" + +[[files]] +file = "config/tempad-client.jsonc" +hash = "d56d8431a85eeabaa8007550f4557112b813922a9036414cb6eea11fefd753ae" + +[[files]] +file = "config/tempad.jsonc" +hash = "103249151fef996292834f3c4628d929305097d6f4f9da348870a17c167bcd6b" + +[[files]] +file = "config/terrablender.toml" +hash = "c73292a81a8409d74edb12b0bb9226bda03f39e11afc8abfe6bff52cc30ef480" + +[[files]] +file = "config/tgears-client.toml" +hash = "93d97a01ec7195eb415ad13ecb9cc816597cac9e8d873980a69538163d7213c9" + +[[files]] +file = "config/tgears-common.toml" +hash = "b8826d42932f505c8a0442977e6e7f0af6d53a28837b2749ec36b15d963215ed" + +[[files]] +file = "config/thermal-client.toml" +hash = "1321925a170309d09cce31f4dd2cdc80125f5e3a8adb58d3234a6afc9f4536db" + +[[files]] +file = "config/thermal-common.toml" +hash = "1bdda4f8a9b08815b9c8b5360edb06e2cd39cc5b45a0746949d07f247bcd2e0e" + +[[files]] +file = "config/thermal_integration-common.toml" +hash = "33515e31b15193aa07be4a9d3951cd5ee7d643def1625a3d354a046328b7a67d" + +[[files]] +file = "config/theurgy-client.toml" +hash = "853a69847741cb185dd5dc00207d8a5f9027a02970af900c1b4d40cb5e1f0172" + +[[files]] +file = "config/tinkerslevellingaddon-client.toml" +hash = "dd004b3d8a3257a6199d857ab4e0891751625f10ce429eafca6216c3dbdda741" + +[[files]] +file = "config/toastcontrol-common.toml" +hash = "b0976505b1e84813c804b645fe0988fc1fc68bd1e0350db6cbc3fa2698d77587" + +[[files]] +file = "config/tombstone-client.toml" +hash = "c41ac0417803d2da2654159bb9b4d434ef0decb31df44c35217eb573a5b32a90" + +[[files]] +file = "config/tombstone-common.toml" +hash = "bf89a2de32b9dced35a544323e06dd2fae84af6de66934276fb0462d2ab5a757" + +[[files]] +file = "config/tombstone-server.toml" +hash = "6929e854bd0482841841441bc332d8dc2612a22bcc78a96f1892f34ee2ddc689" + +[[files]] +file = "config/toms_storage-common.toml" +hash = "cb2644a6bbca7895ef4ff9a7237a51302839493c7d7e9ffbea74e8bc93494b64" + +[[files]] +file = "config/toolbelt-client.toml" +hash = "dfe8d07c832c05d517cf5bb50798c7678fc529ed4a4bc41367314abf9b40bc5f" + +[[files]] +file = "config/toolbelt-common.toml" +hash = "b2e66325535b673063f023e6b99d9ba072a202ef3823b0543f446e0730ec62b9" + +[[files]] +file = "config/toolstats.json" +hash = "27a7daab8a6e86487fe1d019ffdf0411db6ea7438d99d6aa4d727094473857f9" + +[[files]] +file = "config/torchmaster.toml" +hash = "8e6a91f152a24b60d2d03ebecb980527249f009382d2548af84e973f1d59c220" + +[[files]] +file = "config/tradingpost-server.toml" +hash = "9b8e43967d82532c59db13620f764f47ab6aef83fdf6ad50f71a24a384c34f7c" + +[[files]] +file = "config/transition.json" +hash = "60420a41571a4658b91babfa2b47d6fefb7c1766eeea969f51ff98ab34c2431c" + +[[files]] +file = "config/transmog.json" +hash = "67d1027e2398f84b22794425893a57512d6497b9268c591cbc80dca1f5a24e16" + +[[files]] +file = "config/trashcans-common.toml" +hash = "fe5a6b7611945c20c356f34813150e9893ab1a2ea9694740c3cc5d0367d96ad1" + +[[files]] +file = "config/trashslot-common.toml" +hash = "21493e0c7d7e821cdd69f2e58647eb22f39a0f5dd6045db3bb65a9250bc0cbd7" + +[[files]] +file = "config/travelerstitles-forge-1_20.toml" +hash = "4233e1f037a1797c9f6533040af9cd19b7a77d73f06b8d9469777983856ecbf0" + +[[files]] +file = "config/trender.json" +hash = "fe0bed19bd0927b3d519816c73378730689080a8f07e66a6167c266ffde29dd2" + +[[files]] +file = "config/trimseffects-config2.json" +hash = "937cd9b6aae0a1fcda7a0d1ac1ba1e958bac42749cdeeea3002c70182ed35e60" + +[[files]] +file = "config/tumbleweed-common.toml" +hash = "690af999cc3720cf328348144e5d2b4e2d287e187842453a597aacf10c9f2c01" + +[[files]] +file = "config/twilightdelight-client.toml" +hash = "e1e69cd353751721bbe8e4b24978eed91a7ba84603f2d981b7537f2a0aef09c8" + +[[files]] +file = "config/twilightdelight-common.toml" +hash = "369f632d700fd6a593bb55a245554983850f4688af6cb1981747c6abe1175ed9" + +[[files]] +file = "config/twilightforest-client.toml" +hash = "77e7aacadc5d425ebe3f19b78bb8af526a589134877c8406244a52108c4697a0" + +[[files]] +file = "config/twilightforest-common.toml" +hash = "ae4d9b6a2f63f37de7630a0bc4333e3ab682a6fa713347dae899ffe512a6b9f5" + +[[files]] +file = "config/twilighttweaks-common.toml" +hash = "28ca682c4f0045bea542ea14ee33d5e5c2af7437ba5924426e8306a1a9c20d81" + +[[files]] +file = "config/undergarden-client.toml" +hash = "a96576d9790443bdd21828e4b875ee4f6dd7aa12d267536743f0b37c970efcad" + +[[files]] +file = "config/undergarden-common.toml" +hash = "0ea925ef308c63ef4f955f41fa778cb5795bcdd947c8fa568a37ac28208081d4" + +[[files]] +file = "config/underground_villages-common.toml" +hash = "f5e39983d64b3706881451ff40d6ed9f0f909628caffc55d672f47f1b9c3390c" + +[[files]] +file = "config/unusualend-common.toml" +hash = "bb47e0560f5cfb64bdf63eaafb34df89130d40bba9353c151567d4745b15348d" + +[[files]] +file = "config/unusualprehistory-common.toml" +hash = "9a569fcb41eeee42018a9f8cbde88e2d58744124cde6bcb18735df8d6d2f7d2d" + +[[files]] +file = "config/upgrade_aquatic-client.toml" +hash = "815f751451060fcf358b949699d9fb4a171d7f85a75fffa8390fb693002d6aca" + +[[files]] +file = "config/upgrade_aquatic-common.toml" +hash = "2a9c2108676ba1222066f1032d23a7da35ee5215e6b73ac2e058ef76f8cb426a" + +[[files]] +file = "config/valhelsia_structures-client.toml" +hash = "8ab414b34601e3023481f85777bc831a1b3cc78478103b71645b503792c7e6e7" + +[[files]] +file = "config/valhelsia_structures-common.toml" +hash = "b867176a5df54ccc38411903baf8a5ad4129f66ffad4594fc292601cc3cb9eeb" + +[[files]] +file = "config/vanillabackport-client.toml" +hash = "3a3ade0cfe7387fa3a98b43bc3688d8787dc565b4c8340da6528eb4a96809765" + +[[files]] +file = "config/vanillabackport-common.toml" +hash = "1b5fbe2ae7431f93e1e710d156df53fdb31ec336d5150ad1e78ea857006516c4" + +[[files]] +file = "config/villagernames.json5" +hash = "c6a90f762893e4b57c5ef6bd5fcc6a29180e8cb69c6fce3959bacb2ecf9041ea" + +[[files]] +file = "config/vinery.toml" +hash = "e2e15d173048831c77626d267f42148590f9f333291b3b5c7fff3c09ed1bed59" + +[[files]] +file = "config/visual_workbench.json" +hash = "d8c8e902fe74a2e43b3da8f273e0ff397f8e856d521d5428fb3dfc7078ee319f" + +[[files]] +file = "config/visualworkbench-client.toml" +hash = "a48b352862f74f6fe3ab071e7e43e631618e9c5f68b5f992b591d4dc87992954" + +[[files]] +file = "config/voidtotem-client.toml" +hash = "6c72cc82e466643ebd88f565f79b6a1bd7ee6d7f973fa06a6c66c6cf35e757bc" + +[[files]] +file = "config/voidtotem-common.toml" +hash = "af7e3140dcabae3acb0ed21c95b75439094038f4f89753b94b6592829e35dc06" + +[[files]] +file = "config/watut-client.toml" +hash = "f30aba6a74c4656d7284081651de0fbc5281e1da8daf7535dae43543959f7fdf" + +[[files]] +file = "config/watut-common.toml" +hash = "17a113c1bf3c30dca221ee72b7285cf1cee3aea24fd5a48d82c47398e2eaa726" + +[[files]] +file = "config/watut-item-arm-adjustments.json" +hash = "543e09f71cda1d97d238ac4150e43e50868cf781027c88d68fc714f261d88982" + +[[files]] +file = "config/watut-server.toml" +hash = "690202e25181bb7ab70d0cd61cf05fa84d45117764dc3bf3498457dc13309c65" + +[[files]] +file = "config/waystones-common.toml" +hash = "54383dd0f5b4dd7b5e9bfc765032d886cacb83dad1621c7863876170646d9a27" + +[[files]] +file = "config/weather2_additions-common.toml" +hash = "ecd466da83c15fd27304ff852b5e4778448b2fde1465e51cf0e27e860eb401fa" + +[[files]] +file = "config/wesleys-roguelike-dungeons-config.toml" +hash = "41d553af8d4cd06f196e246ce2f1e9a7501e2be467fc070bf1ffd27a578b8c6c" + +[[files]] +file = "config/whitenoise-client.toml" +hash = "d31db13ba0f951e3b157f967b07c09310ae95ccf08b06dedf088629ead521d58" + +[[files]] +file = "config/wildernature.toml" +hash = "839314049b69a419a0af54855718459fa01e0afcafe4b6b56af65c44bf872a59" + +[[files]] +file = "config/wirelesschargers-common.toml" +hash = "a724da9613f7296b7000f6d2ee48613283e8f30bb07cb9a657659c5151ada28a" + +[[files]] +file = "config/woot_revived-common.toml" +hash = "483070ab69c3b7d11d503ce4dc7421505e0cbc40390f9f26ecc829408f233460" + +[[files]] +file = "config/world-gen.json" +hash = "8edc1e45b3b1a7fbcb03ea2f7474c619562f8a50bad5db807e7e0ce7d4ad9f66" + +[[files]] +file = "config/worldplaytime/config.json" +hash = "2dafd311e06ef3b74cbb2d686e4312a9be24f8e2870b02d0af8f3b9097665a5e" + +[[files]] +file = "config/wormhole-common.toml" +hash = "09cb063b6fb50c33b96c8b162a7160b5c7a6d09750f299cf96bc49117b56a65f" + +[[files]] +file = "config/wstweaks.cfg" +hash = "7459025523c6613759e61b7c6ad079dccff7735c054fa82444fd5c45af0888c7" + +[[files]] +file = "config/xaero/lib/client.cfg" +hash = "43ed9dbfa5b4d6f0f3d2e8c2ced17ad298164b22c68ff11d415257a39b074336" + +[[files]] +file = "config/xaero/lib/common.cfg" +hash = "98f698d96a6d21d830a455b4ad045b70516fa63c298021742d8499e7f0366cd2" + +[[files]] +file = "config/xaero/lib/profiles/default.cfg" +hash = "34ae854b17d896d7cb853bdc28c27231a3947e91cb9f0991f372846ee3c2a907" + +[[files]] +file = "config/xaero/lib/server_profiles/default.cfg" +hash = "d438aea41ca41e93697e059f523686935c0add482f6abe96b532bbf10c6ed80a" + +[[files]] +file = "config/xaero/minimap/client.cfg" +hash = "c0915eff5d1a7905cd1038d646eb9086fd1a29e2f637d53535e4da161de17b9f" + +[[files]] +file = "config/xaero/minimap/common.cfg" +hash = "2b49df024c03a369c62a303c72755e7fedeb4f4653ff53a12fd37bd83ccd4ed0" + +[[files]] +file = "config/xaero/minimap/default_radar_categories_client.json" +hash = "d44155ad6524baf93af689dcc2f7bab16d1989475f4c91a88ee526687e4957ec" + +[[files]] +file = "config/xaero/minimap/default_radar_categories_server.json" +hash = "a4c652cafa7dea324e5f5cf3b1df46a84e54b6d4f877195857bce55a559c1cfd" + +[[files]] +file = "config/xaero/minimap/profiles/default.cfg" +hash = "0dfd45a371553c4ca5c53ed40ac27bd3fe60a7b12575c3299ee33f60d8e6cf69" + +[[files]] +file = "config/xaero/minimap/profiles/entity_radar_categories/default.cfg.json" +hash = "b8ddf54611a9ab8c53177fc0d062321e9e731192b65b9e50d0fcb38a86a91696" + +[[files]] +file = "config/xaero/minimap/profiles/info_display_config/default.cfg.txt" +hash = "184e654fa1fc8ad09943c97c4e65ab78acb5b3cfca22417a831513d1b6d9bbc6" + +[[files]] +file = "config/xaero/minimap/server_profiles/default.cfg" +hash = "d438aea41ca41e93697e059f523686935c0add482f6abe96b532bbf10c6ed80a" + +[[files]] +file = "config/xaero/world-map/client.cfg" +hash = "d0f079a8df083f6f60a0e0c1316a25fc841755a91bdcb2f86c66ead8e7d4d13d" + +[[files]] +file = "config/xaero/world-map/common.cfg" +hash = "0c229eb0daf85bd09af51f21eeeb99497a3bd50a825d5ab1ca695fb21bf6cf9d" + +[[files]] +file = "config/xaero/world-map/profiles/default.cfg" +hash = "5422abf9c83fedef6509144293fad20f588d4bb6ce0cf1af78cbcd2bcd0d2ccf" + +[[files]] +file = "config/xaero/world-map/server_profiles/default.cfg" +hash = "d438aea41ca41e93697e059f523686935c0add482f6abe96b532bbf10c6ed80a" + +[[files]] +file = "config/xaerohud.txt" +hash = "8d13c5f398016036aa4fdefb366ef3926d89f96ca104155bc9f6e5a7ec682ecd" + +[[files]] +file = "config/xaeropatreon.txt" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/xnet-client.toml" +hash = "3940248651afaf0f27adf3709a5ce9ebafff02602a86dfff712d72439183c268" + +[[files]] +file = "config/yacl.json5" +hash = "d26a63d3cdf326412ba86dcc2781060bc53ed6c74ac7808e65325452e264e820" + +[[files]] +file = "config/zeta-common.toml" +hash = "684816927033626b990f8e277a43c0e24f6ef650cb38f9fee935f974fffd7392" + +[[files]] +file = "config/zfastnoise.mixin.properties" +hash = "1241225c7441fe14d239721bd99ce1b1abbabac8f0d6501603cdd4d73b2e4f15" + +[[files]] +file = "config/zipline.json" +hash = "ba6377f2149c5a4ea4198571f212a2ad3987fac8b1f18a90a04754c93c944080" + +[[files]] +file = "config/zps-client.toml" +hash = "c134fab3fdf9f1ec87e5b4d5314b789d42ec9b973674b92699c4359512a12334" + +[[files]] +file = "config/zume.json5" +hash = "e357eb0ec36050096b2ce27ea56a24454b7997df7843fe86a23b6b4d470458bd" + +[[files]] +file = "defaultconfigs/assembly line.txt" +hash = "18e3c9799ad4c996301549ccd2ae886cbcc1a628e1cc11795f4016b4c1c3fdad" + +[[files]] +file = "defaultconfigs/ballistix.txt" +hash = "89b232794091e823a9dee7d9a73046f27f2b24f3c9d1d1983e79a19f2d6efd27" + +[[files]] +file = "defaultconfigs/blastcraft.txt" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "defaultconfigs/electrodynamics.txt" +hash = "41de555ecf4e7da41fa2c195abc47225fa2217b3439d4227e9eee80fd113b650" + +[[files]] +file = "defaultconfigs/electrodynamics_ore_config.txt" +hash = "4d5f55e2d426a0a949d58e64e457beca2c61c0e5024df7b2a8048806643a54c7" + +[[files]] +file = "defaultconfigs/ftblibrary/ftblibrary-client.snbt" +hash = "7cf44bc2b79d6798ac1b0bca7dc52ab570a14ade2c11eccf4e1272ce6e081001" + +[[files]] +file = "defaultconfigs/modular forcefields.txt" +hash = "9a8aafca315580c436b64ac22caa052ae194f9fba22c4bf4fe551429eafba0ef" + +[[files]] +file = "defaultconfigs/nuclear science.txt" +hash = "eb04fc4a04127245960a731ed41abefc228b3943ec0ebb0a843fa4148e959c86" + +[[files]] +file = "defaultconfigs/voltaic.txt" +hash = "0a6a23e10c72a7a5bad173d3a8b2e4d5169d4c27548bad02bc16a3ff22ec9ed7" + [[files]] file = "mods/accessories.pw.toml" hash = "dbf33f21250d9021ee1477fa6a32813f3dfad8f2277455176e13b9186d802e6b" diff --git a/pack.toml b/pack.toml index e63a579..ecee426 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "4ae6b334b0fc06c94f28e7a28999ec3152ef9b281e5526618c9332dbd6895767" +hash = "5c1ca53d21ff535f1679ee9ec23362568024ef94c96f0ad8f194dcab622308e3" [versions] forge = "47.4.12"