Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8582a026a | |||
| 0d709336d9 | |||
| 47825fe622 | |||
| 3d44723d14 |
73 changed files with 4691 additions and 44 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,2 @@
|
|||
# Ignore the exported modpack
|
||||
Hydractify's Cobblemon Campaign-1.1.0.mrpack
|
||||
Hydractify's Cobblemon Campaign*
|
||||
|
|
|
|||
39
config/bobby.conf
Normal file
39
config/bobby.conf
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Delete regions from the cache when they have not been loaded for X days.
|
||||
#
|
||||
# The cache for a given world is cleaned up whenever you disconnect from the server.
|
||||
# Entire worlds are cleaned up when the game starts and you have not visited them for X days.
|
||||
#
|
||||
# Set to -1 to disabled.
|
||||
# Set to 0 to clean up everything after every disconnect.
|
||||
delete-unused-regions-after-days=-1
|
||||
# Enables support for servers with multiple identically-named worlds.
|
||||
#
|
||||
# When enabled, a new local cache is started on each world change. If there are enough chunks with similar content in two caches, they will automatically be merged.
|
||||
# This does mean that you may need to walk around a little before Bobby loads in cached chunks if there is little identifying information in your world (e.g. flat worlds).
|
||||
#
|
||||
# You may need to delete your existing cache if it is comprised of multiple worlds to prevent Bobby from merging into it.
|
||||
# Requires a `/bobby upgrade` after enabling with existing cache.
|
||||
dynamic-multi-world=false
|
||||
enabled=true
|
||||
# Changes the maximum value configurable for Render Distance.
|
||||
#
|
||||
# Requires Sodium.
|
||||
max-render-distance=32
|
||||
# Do not load block entities (e.g. chests) in fake chunks.
|
||||
# These need updating every tick which can add up.
|
||||
#
|
||||
# Enabled by default because the render distance for block entities is usually smaller than the server-view distance anyway.
|
||||
no-block-entities=true
|
||||
# Reduces the light levels in fake chunks so you can tell the difference from real ones.
|
||||
taint-fake-chunks=false
|
||||
# Delays the unloading of chunks which are outside your view distance.
|
||||
# Saves you from having to reload all chunks when leaving the area for a short moment (e.g. cut scenes).
|
||||
# Does not work across dimensions.
|
||||
unload-delay-secs=60
|
||||
# Overwrites the view-distance of the integrated server.
|
||||
# This allows Bobby to be useful in Singleplayer.
|
||||
#
|
||||
# Disabled when at 0.
|
||||
# Bobby is active in singleplayer only if this is enabled.
|
||||
# Requires re-log to en-/disable.
|
||||
view-distance-overwrite=0
|
||||
210
config/c2me.toml
Normal file
210
config/c2me.toml
Normal file
|
|
@ -0,0 +1,210 @@
|
|||
version = 3
|
||||
# (Default:
|
||||
# max(
|
||||
# 1,
|
||||
# min(
|
||||
# if( is_windows,
|
||||
# (cpus / 1.6),
|
||||
# (cpus / 1.3)
|
||||
# ) - if(is_client, 1, 0),
|
||||
# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 0.6 )
|
||||
# )
|
||||
# )
|
||||
# )
|
||||
# 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: 4) Sets the thread priority for worker threads
|
||||
#
|
||||
# References:
|
||||
# - https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Thread.html#setPriority(int)
|
||||
#
|
||||
threadPoolPriority = "default"
|
||||
# (Default: 8) 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.modifyMaxVDConfig]
|
||||
# (Default: true) Whether to modify maximum view distance
|
||||
# Set to false for the following reasons:
|
||||
# Incompatible with bobby@5.2.4+mc1.21 (*) (defined in c2me)
|
||||
enabled = "default"
|
||||
# (Default: 83) Max render distance allowed in game options
|
||||
maxViewDistance = "default"
|
||||
# (Default: true) Enable client-side support for extended render distance protocol (c2me:ext_render_distance_v1)
|
||||
# This allows requesting render distances higher than 127 chunks from the server
|
||||
#
|
||||
# Requires Fabric API (currently available)
|
||||
#
|
||||
# Note: The server must advertise support this protocol for this to work
|
||||
#
|
||||
enableExtRenderDistanceProtocol = "default"
|
||||
|
||||
[noTickViewDistance]
|
||||
# (Default: true) Whether to enable no-tick view distance
|
||||
enabled = "default"
|
||||
# (Default: 9) No-tick view distance max concurrent chunk loads
|
||||
# Lower this for a better latency and higher this for a faster loading
|
||||
maxConcurrentChunkLoads = "default"
|
||||
# (Default: true) Whether to use compatibility mode to send chunks
|
||||
# This may fix some mod compatibility issues
|
||||
compatibilityMode = "default"
|
||||
# (Default: true) Enable server-side support for extended render distance protocol (c2me:ext_render_distance_v1)
|
||||
# This allows requesting render distances higher than 127 chunks from the server
|
||||
#
|
||||
# Requires Fabric API (currently available)
|
||||
#
|
||||
enableExtRenderDistanceProtocol = "default"
|
||||
# (Default: false) Whether to ensure correct chunks within normal render distance
|
||||
# This will send chunks twice increasing network load
|
||||
ensureChunkCorrectness = "default"
|
||||
|
||||
[ioSystem]
|
||||
# (Default: 8192) Soft limit for io worker nbt cache
|
||||
chunkDataCacheSoftLimit = "default"
|
||||
# (Default: 32678) Hard limit for io worker nbt cache
|
||||
chunkDataCacheLimit = "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@13.0.8 (*) (defined in c2me)
|
||||
gcFreeChunkSerializer = "default"
|
||||
# (Default: true) Whether to use the optimized implementation of IO system
|
||||
replaceImpl = "default"
|
||||
|
||||
[vanillaWorldGenOptimizations]
|
||||
# (Default: false) Whether to use density function compiler to accelerate world generation
|
||||
#
|
||||
# Density function: https://minecraft.wiki/w/Density_function
|
||||
#
|
||||
# This functionality compiles density functions from world generation
|
||||
# datapacks (including vanilla generation) to JVM bytecode to increase
|
||||
# performance by allowing JVM JIT to better optimize the code
|
||||
#
|
||||
# Currently, all functions provided by vanilla are implemented.
|
||||
# Chunk upgrades from pre-1.18 versions are not implemented and will
|
||||
# fall back to the unoptimized version of density functions.
|
||||
#
|
||||
useDensityFunctionCompiler = "default"
|
||||
# (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"
|
||||
# (Default: true) Whether to enable StructureWeightSampler optimizations to accelerate world generation
|
||||
#
|
||||
optimizeStructureWeightSampler = "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"
|
||||
|
||||
[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"
|
||||
|
||||
[chunkSystem]
|
||||
# (Default: true) Whether to enable async serialization
|
||||
#
|
||||
asyncSerialization = "default"
|
||||
# (Default: false) Whether to recover from errors when loading chunks
|
||||
# This will cause errored chunk to be regenerated entirely, which may cause data loss
|
||||
# Only applies when async chunk loading is enabled
|
||||
#
|
||||
recoverFromErrors = "default"
|
||||
# (Default: true) Whether to allow POIs (Point of Interest) to be unloaded
|
||||
# Unloaded POIs are reloaded on-demand or when the corresponding chunks are loaded again,
|
||||
# which should not cause any behavior change
|
||||
#
|
||||
# Note:
|
||||
# Vanilla never unloads POIs when chunks unload, causing small memory leaks
|
||||
# These leaks adds up and eventually cause issues after generating millions of chunks
|
||||
# in a single world instance
|
||||
#
|
||||
allowPOIUnloading = "default"
|
||||
# (Default: false) This option workarounds MC-276863, a bug that makes mushrooms appear in non-postprocessed chunks
|
||||
# This bug is amplified with notickvd as it exposes non-postprocessed chunks to players
|
||||
#
|
||||
# This should not affect other worldgen behavior and game mechanics in general
|
||||
#
|
||||
suppressGhostMushrooms = "default"
|
||||
# (Default: true) Whether to synchronize the management of player tickets
|
||||
#
|
||||
# In vanilla Minecraft, player tickets are not always removed immediately when players leave an area.
|
||||
# The delay in removal increases with the chunk system’s throughput, but due to vanilla’s typically
|
||||
# slow chunk loading, tickets are almost always removed immediately. However, some contraptions rely
|
||||
# on this immediate removal behavior and tend to be broken with the increased chunk throughput.
|
||||
# Enabling this option synchronizes player ticket handling, making it more predictable and
|
||||
# thus improving compatibility with these contraptions.
|
||||
#
|
||||
syncPlayerTickets = "default"
|
||||
# (Default: true) Whether to turn fluid postprocessing into scheduled tick
|
||||
#
|
||||
# Fluid post-processing is very expensive when loading in new chunks, and this can affect
|
||||
# MSPT significantly. This option delays fluid post-processing to scheduled tick to hopefully
|
||||
# mitigate this issue.
|
||||
#
|
||||
fluidPostProcessingToScheduledTick = "default"
|
||||
# (Default: true) Whether to filter fluid post-processing on worldgen threads
|
||||
#
|
||||
# The worldgen processes creates a lot of unnecessary fluid post-processing tasks,
|
||||
# which can overload the server thread and cause stutters.
|
||||
# This applies a rough filter to filter out fluids that are definitely not going to flow
|
||||
#
|
||||
filterFluidPostProcessing = "default"
|
||||
# (Default: true) Whether to use legacy scheduling for neighbor chunks
|
||||
#
|
||||
# Enabling this restores the behavior of always loading in neighbor chunks when a chunk is loaded.
|
||||
#
|
||||
useLegacyScheduling = "default"
|
||||
# (Default: false) Whether to enable low memory mode
|
||||
#
|
||||
# This option will attempt to aggressively unload unused chunks.
|
||||
# Only applies when useLegacyScheduling is disabled.
|
||||
#
|
||||
lowMemoryMode = "default"
|
||||
9
config/cardinal-components-api.properties
Normal file
9
config/cardinal-components-api.properties
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# If set to false, warnings will not get logged when a component fails to be resolved (typically due to mods being removed)
|
||||
# Default value: true
|
||||
log-deserialization-warnings = true
|
||||
# If log-deserialization-warnings is enabled, warnings will be printed at most *this number of times* for every component type
|
||||
# Default value: 5
|
||||
max-deserialization-warnings = 5
|
||||
|
||||
# Internal value, do not edit or your changes may be arbitrarily reset
|
||||
config-version = 2
|
||||
9
config/chat_heads.json5
Normal file
9
config/chat_heads.json5
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"renderPosition": "BEFORE_NAME",
|
||||
"offsetNonPlayerText": true,
|
||||
"senderDetection": "UUID_AND_HEURISTIC",
|
||||
"smartHeuristics": true,
|
||||
"handleSystemMessages": true,
|
||||
"drawShadow": true,
|
||||
"nameAliases": { }
|
||||
}
|
||||
4
config/comforts-common.toml
Normal file
4
config/comforts-common.toml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#If enabled, the default hammock recipes will be available.
|
||||
enableHammockRecipes = true
|
||||
#If enabled, the default sleeping bag recipes will be available.
|
||||
enableSleepingBagRecipes = true
|
||||
38
config/comforts-server.toml
Normal file
38
config/comforts-server.toml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#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 = []
|
||||
3
config/creativecore-client.json
Normal file
3
config/creativecore-client.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"maxGuiScale": 10
|
||||
}
|
||||
19
config/creativecore.json
Normal file
19
config/creativecore.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"usergroups": {
|
||||
"creative": {
|
||||
"filters": [
|
||||
"{id:\"mode\",mode:1}"
|
||||
]
|
||||
},
|
||||
"survival": {
|
||||
"filters": [
|
||||
"{id:\"mode\",mode:0}"
|
||||
]
|
||||
},
|
||||
"adventure": {
|
||||
"filters": [
|
||||
"{id:\"mode\",mode:2}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
25
config/easymagic-client.toml
Normal file
25
config/easymagic-client.toml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#Keep the vanilla book inside the enchantment screen instead of rendering a reroll button.
|
||||
#The button is simply not visible, rerolling still works by clicking the book. Disabling the reroll feature itself is possible in the server config.
|
||||
#Default Value: false
|
||||
keep_enchantment_screen_book = false
|
||||
#Offset on y-axis for chiseled bookshelf book tooltips from original position.
|
||||
#Default Value: 0
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
chiseled_bookshelf_tooltip_offset_y = 0
|
||||
#Render inventory contents of an enchanting table.
|
||||
#Default Value: FLOATING
|
||||
#Allowed Values: NONE, FLAT, FLOATING
|
||||
render_enchanting_table_contents = "FLOATING"
|
||||
#Show a tooltip for the hovered book in a chiseled bookshelf.
|
||||
#DISABLED: Vanilla behavior, no tooltip shows.
|
||||
#CROUCHING: A tooltip only shows while the player is crouching.
|
||||
#ENABLED: A tooltip always shows when a book is looked at.
|
||||
#Default Value: ENABLED
|
||||
#Allowed Values: DISABLED, CROUCHING, ENABLED
|
||||
chiseled_bookshelf_tooltip = "ENABLED"
|
||||
#Offset on x-axis for chiseled bookshelf book tooltips from original position.
|
||||
#Default Value: 0
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
chiseled_bookshelf_tooltip_offset_x = 0
|
||||
6
config/easymagic-common.toml
Normal file
6
config/easymagic-common.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Replace vanilla enchanting tables created in structures during world generation. Does not affect already generated blocks.
|
||||
#Default Value: true
|
||||
convert_vanilla_enchanting_table_during_world_gen = true
|
||||
#Leftover vanilla enchanting tables in a world become unusable until they are broken and replaced.
|
||||
#Default Value: true
|
||||
disable_vanilla_enchanting_table = true
|
||||
43
config/easymagic-server.toml
Normal file
43
config/easymagic-server.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
#Amount of bookshelves required to perform enchantments at the highest level.
|
||||
#Default Value: 15
|
||||
# Default: 15
|
||||
# Range: 0 ~ 50
|
||||
max_enchanting_power = 15
|
||||
#Add a button in the enchanting screen to allow for re-rolling enchantments.
|
||||
#This costs experience levels as well as lapis lazuli, or can be free when the costs are set to 0.
|
||||
#Default Value: true
|
||||
reroll_enchantments = true
|
||||
#Switch re-rolling cost from experience points to full enchantment levels, making re-rolls considerable more expensive.
|
||||
#Default Value: false
|
||||
rerolling_takes_enchantment_levels = false
|
||||
#Blocks without a full collision shape (e.g. torches & carpet) do not block bookshelves placed behind from counting towards current enchanting power.
|
||||
#Default Value: true
|
||||
lenient_bookshelves = true
|
||||
#Amount of catalyst item taken as a cost for re-rolling enchantments. Set to 0 to disable this kind of cost.
|
||||
#The default re-roll catalyst is simply lapis lazuli as defined in 'easymagic:enchanting_catalysts'.
|
||||
#Requires the re-rolling option to be enabled.
|
||||
#Default Value: 1
|
||||
# Default: 1
|
||||
# Range: 0 ~ 64
|
||||
reroll_catalyst_cost = 1
|
||||
#Choose how many enchantments are shown on the enchanting tooltip, if any at all.
|
||||
#Default Value: SINGLE
|
||||
#Allowed Values: NONE, SINGLE, ALL
|
||||
enchantment_hint = "SINGLE"
|
||||
#Do chiseled bookshelves provide enchanting power to an enchanting table, one for every three contained books.
|
||||
#NONE: Vanilla behavior, no power is provided.
|
||||
#FACING: The bookshelf must face the enchanting table to provide any power.
|
||||
#ALL: Chiseled bookshelves provide enchanting power regardless of where they are facing.
|
||||
#Default Value: FACING
|
||||
#Allowed Values: NONE, FACING, ALL
|
||||
chiseled_bookshelf_enchanting_power = "FACING"
|
||||
#Catalyst items for re-rolling are defined by the 'easymagic:reroll_catalysts' item tag instead of 'easymagic:enchanting_catalysts' (which includes just lapis lazuli by default).
|
||||
#Unlocks an additional slot for providing those items in the enchanting table interface.
|
||||
#Default Value: false
|
||||
dedicated_reroll_catalyst = false
|
||||
#Amount of experience points (not enchantment levels) taken as a cost for re-rolling enchantments. Set to 0 to disable this kind of cost.
|
||||
#Requires the re-rolling option to be enabled.
|
||||
#Default Value: 5
|
||||
# Default: 5
|
||||
# Range: > 0
|
||||
reroll_experience_points_cost = 5
|
||||
129
config/exposure-client.toml
Normal file
129
config/exposure-client.toml
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
[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.
|
||||
#Default: 0.75
|
||||
# Default: 0.75
|
||||
# Range: 0.0 ~ 1.0
|
||||
zoom_sensitivity_influence = 0.75
|
||||
#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
|
||||
# Default: 0
|
||||
# Range: -999 ~ 999
|
||||
status_icon_offset_x = 0
|
||||
#Y offset of a viewfinder status icon. Default: 0
|
||||
# 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.
|
||||
# Default: 4
|
||||
# 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)
|
||||
# Default: 0
|
||||
# Range: 0 ~ 100
|
||||
direct_capture_delay_frames = 0
|
||||
|
||||
[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.
|
||||
# Default: 64
|
||||
# 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
|
||||
# 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 '<instance>/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
|
||||
# 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
|
||||
7
config/exposure-common.toml
Normal file
7
config/exposure-common.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[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
|
||||
121
config/exposure-server.toml
Normal file
121
config/exposure-server.toml
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
[camera]
|
||||
#Default focal range of the camera (without a lens attached).
|
||||
#Allowed range: 10-300
|
||||
#Default: 18-55
|
||||
default_focal_range = "18-55"
|
||||
#Can attack while looking through Viewfinder.
|
||||
#Default: true
|
||||
viewfinder_attacking = true
|
||||
#Camera distance in thirdperson-front mode. Default: 1.75
|
||||
# Default: 1.75
|
||||
# Range: 0.1 ~ 4.0
|
||||
selfie_camera_distance = 1.75
|
||||
#Shifts viewfinder view down to match waist-level camera position. Default: false.
|
||||
waist_level_viewfinder = false
|
||||
#Right-clicking a Camera in GUI will open Camera Attachments screen. Only in player inventory.
|
||||
#Default: true
|
||||
right_click_attachments_screen = true
|
||||
#Right-clicking Camera in GUI with attachment item will insert/swap it.
|
||||
#Default: true
|
||||
right_click_hotswap = true
|
||||
#Self-timer will attract attention of nearby entities and makes them look at the Camera. Default: true
|
||||
timer_attracts_mob_attention = true
|
||||
#Radius in blocks around the camera in which mobs will be affected by the timer. Default: 16
|
||||
# Default: 16
|
||||
# Range: 1 ~ 64
|
||||
timer_attention_radius = 16
|
||||
|
||||
[camera_stand]
|
||||
#Maximum allowed distance between Camera Stand and a player for the stand to function.
|
||||
#Camera on stand will capture the chunks that player is currently seeing, this may result is some parts of the world missing when camera on stand is taking photos while a player far away. Short render distances can be a problem as well.
|
||||
#Default: 100
|
||||
# Default: 100
|
||||
# Range: > 1
|
||||
working_range = 100
|
||||
#Attempting to take a photo outside the working range will cause the Camera on stand to 'malfunction' and it would need to be repaired (by simply using it). Default: true
|
||||
out_of_working_range_malfunction = true
|
||||
#If owner of the Camera Stand is not in range, closest player will be chosen to create and render a photo. Default: true
|
||||
fallback_to_other_players = true
|
||||
#Other players can be chosen for Interplanar Projector exposure, if owner is not in range.
|
||||
#WARNING: If enabled, projector will attempt to load an image from other player's computer (or use their PC to load from URL). Potentially, this can be used for malicious intents.
|
||||
#Default: false
|
||||
fallback_to_other_players_projector = false
|
||||
|
||||
[capture]
|
||||
#Default size of an exposure image. High values take more disk space and can cause lag. Default: 320
|
||||
# Default: 320
|
||||
# Range: 1 ~ 2048
|
||||
default_frame_size = 320
|
||||
#Interplanar Projector can load images from URL or file on client's PC. Default: true
|
||||
projecting_enabled = true
|
||||
#Time limit in ticks for projecting.
|
||||
#Default: 100 (5 seconds)
|
||||
# Default: 100
|
||||
# Range: 1 ~ 200
|
||||
projecting_timeout_ticks = 100
|
||||
|
||||
[lightroom]
|
||||
#Light level that is required for Lightroom to work. Default: 13
|
||||
# Default: 13
|
||||
# Range: 0 ~ 15
|
||||
lightroom_light_requirement = 13
|
||||
#Dyes that are used for particular printing process.
|
||||
#Valid dyes are: cyan, magenta, yellow, black.
|
||||
#Multiple definitions will make the lightroom consume multiple items per print. ["black", "black"] -> 2 Black Dye is consumed per print.
|
||||
#Dyes for black and white print. Default: ["black"]
|
||||
dyes_black_and_white = ["black"]
|
||||
#Dyes for color print. Default: ["cyan", "magenta", "yellow", "black"]
|
||||
dyes_color = ["cyan", "magenta", "yellow", "black"]
|
||||
#Dyes for chromatic red channel print. Default: ["magenta", "yellow"]
|
||||
dyes_chromatic_red = ["magenta", "yellow"]
|
||||
#Dyes for chromatic green channel print. Default: ["cyan", "yellow"]
|
||||
dyes_chromatic_green = ["cyan", "yellow"]
|
||||
#Dyes for chromatic blue channel print. Default: ["cyan", "magenta"]
|
||||
dyes_chromatic_blue = ["cyan", "magenta"]
|
||||
#Time in ticks to print black and white photograph. Default: 80
|
||||
# Default: 80
|
||||
# Range: > 1
|
||||
print_time_black_and_white = 80
|
||||
#Time in ticks to print color photograph. Default: 160
|
||||
# Default: 160
|
||||
# Range: > 1
|
||||
print_time_color = 160
|
||||
#Time in ticks to print one channel of a chromatic photograph. Default: 120
|
||||
# Default: 120
|
||||
# Range: > 1
|
||||
print_time_chromatic = 120
|
||||
#Amount of experience awarded per printed black and white Photograph. Default: 2
|
||||
# Default: 2
|
||||
# Range: 0 ~ 99
|
||||
experience_black_and_white = 2
|
||||
#Amount of experience awarded per printed color Photograph. Default: 4
|
||||
# Default: 4
|
||||
# Range: 0 ~ 99
|
||||
experience_color = 4
|
||||
#Amount of experience awarded per printed chromatic Photograph (when all three channels have been printed). Default: 5
|
||||
# Default: 5
|
||||
# Range: 0 ~ 99
|
||||
experience_chromatic = 5
|
||||
|
||||
[photographs]
|
||||
#How many photographs can be stacked in Stacked Photographs item. Default: 16.
|
||||
#Larger numbers may cause errors. Use at your own risk. 32 should be fine though.
|
||||
# Default: 16
|
||||
# Range: 2 ~ 64
|
||||
stacked_photographs_size = 16
|
||||
|
||||
[misc]
|
||||
#Film rolls can be renamed by using the item. No experience cost. Default: true
|
||||
film_roll_easy_renaming = true
|
||||
#Increases item name length limit for Interplanar Projector to 150 characters. Vanilla limit: 50.
|
||||
#Default: true
|
||||
increase_interplanar_projector_name_limit = true
|
||||
|
||||
[integration]
|
||||
#Create Deployers will be able to insert/swap attachments on Camera Stand. Default: true
|
||||
create_deployer_stand_hotswap = true
|
||||
|
||||
#You wouldn't need to touch these settings most likely. They are there to help debug/fix some weird issues.
|
||||
[debug]
|
||||
#Clean up data about timed-out expected exposure uploads on level/server save. Default: true
|
||||
cleanup_timed_out_expected_uploads = true
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
#Indigo properties file
|
||||
#Mon Dec 01 20:10:25 BRT 2025
|
||||
#Tue Dec 02 21:56:48 BRT 2025
|
||||
always-tesselate-blocks=auto
|
||||
ambient-occlusion-mode=hybrid
|
||||
debug-compare-lighting=auto
|
||||
|
|
|
|||
8
config/farmersdelight-client.json
Normal file
8
config/farmersdelight-client.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"#README": "This config file does not support comments. To see them configure it in-game using YACL or Cloth Config (or just use Forge)",
|
||||
"client": {
|
||||
"nourishmentHungerOverlay": true,
|
||||
"comfortHealthOverlay": true,
|
||||
"foodEffectTooltip": true
|
||||
}
|
||||
}
|
||||
74
config/farmersdelight-common.json
Normal file
74
config/farmersdelight-common.json
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
{
|
||||
"#README": "This config file does not support comments. To see them configure it in-game using YACL or Cloth Config (or just use Forge)",
|
||||
"settings": {
|
||||
"enableVanillaCropCrates": true,
|
||||
"farmersBuyFDCrops": true,
|
||||
"wanderingTraderSellsFDItems": true,
|
||||
"richSoilBoostChance": 0.2,
|
||||
"cuttingBoardFortuneBonus": 0.1,
|
||||
"enableRopeReeling": true,
|
||||
"canvasSignDarkBackgroundList": [
|
||||
"gray",
|
||||
"purple",
|
||||
"blue",
|
||||
"brown",
|
||||
"green",
|
||||
"red",
|
||||
"black"
|
||||
]
|
||||
},
|
||||
"farming": {
|
||||
"defaultTomatoVineRope": "farmersdelight:rope",
|
||||
"enableTomatoVineClimbingTaggedRopes": true
|
||||
},
|
||||
"recipe_book": {
|
||||
"enableRecipeBookCookingPot": true
|
||||
},
|
||||
"overrides": {
|
||||
"vanillaSoupExtraEffects": true,
|
||||
"rabbitStewBuff": true,
|
||||
"dispenserUsesToolsOnCuttingBoard": true,
|
||||
"stack_size": {
|
||||
"enableStackableSoupItems": true,
|
||||
"soupItemList": [
|
||||
"minecraft:mushroom_stew",
|
||||
"minecraft:beetroot_soup",
|
||||
"minecraft:rabbit_stew"
|
||||
]
|
||||
}
|
||||
},
|
||||
"world": {
|
||||
"generateFDChestLoot": true,
|
||||
"genVillageCompostHeaps": true,
|
||||
"genFDCropsOnVillageFarms": true,
|
||||
"wild_cabbages": {
|
||||
"chance": 30
|
||||
},
|
||||
"wild_beetroots": {
|
||||
"chance": 30
|
||||
},
|
||||
"wild_potatoes": {
|
||||
"chance": 100
|
||||
},
|
||||
"wild_carrots": {
|
||||
"chance": 120
|
||||
},
|
||||
"wild_onions": {
|
||||
"chance": 120
|
||||
},
|
||||
"wild_tomatoes": {
|
||||
"chance": 100
|
||||
},
|
||||
"wild_rice": {
|
||||
"chance": 20
|
||||
},
|
||||
"brown_mushroom_colonies": {
|
||||
"genBrownMushroomColony": true,
|
||||
"chance": 15
|
||||
},
|
||||
"red_mushroom_colonies": {
|
||||
"genRedMushroomColony": true,
|
||||
"chance": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
#Disables File Watcher. Used to automatically update config if its file has been modified.
|
||||
disableConfigWatcher = false
|
||||
#A config option mainly for developers. Logs out configuration values that do not have translations when running a client in a development environment.
|
||||
logUntranslatedConfigurationWarnings = true
|
||||
#Path to load default configs from, intended for setting global server configs for newly created worlds, but also works when recreating client and common configs.
|
||||
defaultConfigsPath = "defaultconfigs"
|
||||
|
|
|
|||
17
config/highlighter.toml
Normal file
17
config/highlighter.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#Client Configuration
|
||||
[client]
|
||||
|
||||
[client.options]
|
||||
# If new item markers should be cleared when the inventory is closed.
|
||||
clear_on_close = true
|
||||
# If new item markers should be cleared when the item tooltip is displayed.
|
||||
clear_on_hover = true
|
||||
# If new item markers should be cleared when the item is selected on the hotbar.
|
||||
clear_on_select = true
|
||||
# If icons should match the color of items names (as shown in tooltips). Otherwise icons will all be gold.
|
||||
item_name_color = false
|
||||
# If new item markers should show on the hotbar.
|
||||
show_on_hotbar = true
|
||||
# The position of new item markers.
|
||||
#Allowed values: UpperLeft, UpperRight, LowerLeft, LowerRight
|
||||
icon_position = "UpperLeft"
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||
#Mon Dec 01 20:10:29 BRT 2025
|
||||
#Tue Dec 02 21:56:51 BRT 2025
|
||||
allowUnknownShaders=false
|
||||
colorSpace=SRGB
|
||||
disableUpdateMessage=true
|
||||
|
|
|
|||
|
|
@ -52,6 +52,10 @@
|
|||
"painting": true,
|
||||
"chiseled_bookshelf": true
|
||||
},
|
||||
"exposure": {
|
||||
"lightroom": true,
|
||||
"photograph_frame": true
|
||||
},
|
||||
"jade_access": {
|
||||
"held_item": true,
|
||||
"sign": true,
|
||||
|
|
@ -70,6 +74,9 @@
|
|||
"block_properties": false,
|
||||
"mod_name": true
|
||||
},
|
||||
"waystones": {
|
||||
"waystone": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"balm:jade": null,
|
||||
"exposure:lightroom": null,
|
||||
"exposure:photograph_frame": null,
|
||||
"jade:block_face": null,
|
||||
"jade:block_properties": null,
|
||||
"jade:block_states": null,
|
||||
|
|
@ -59,5 +61,6 @@
|
|||
"minecraft:total_enchantment_power": null,
|
||||
"minecraft:villager_profession": null,
|
||||
"minecraft:waxed": null,
|
||||
"minecraft:zombie_villager": null
|
||||
"minecraft:zombie_villager": null,
|
||||
"waystones:waystone": null
|
||||
}
|
||||
|
|
@ -1,15 +1,17 @@
|
|||
minecraft:crafting
|
||||
minecraft:anvil
|
||||
minecraft:blasting
|
||||
minecraft:brewing
|
||||
minecraft:campfire_cooking
|
||||
minecraft:compostable
|
||||
minecraft:fuel
|
||||
minecraft:smelting
|
||||
minecraft:smithing
|
||||
minecraft:smoking
|
||||
minecraft:stonecutting
|
||||
cobblemon:berry_recipe
|
||||
jei:information
|
||||
minecraft:grindstone
|
||||
cobblemon:campfire_pot_recipe
|
||||
minecraft:crafting
|
||||
minecraft:anvil
|
||||
minecraft:blasting
|
||||
minecraft:brewing
|
||||
minecraft:campfire_cooking
|
||||
minecraft:compostable
|
||||
minecraft:fuel
|
||||
minecraft:smelting
|
||||
minecraft:smithing
|
||||
minecraft:smoking
|
||||
minecraft:stonecutting
|
||||
cobblemon:berry_recipe
|
||||
jei:information
|
||||
minecraft:grindstone
|
||||
cobblemon:campfire_pot_recipe
|
||||
exposure:photograph_printing
|
||||
exposure:photograph_stacking
|
||||
|
|
|
|||
19
config/moonlight-client.json
Normal file
19
config/moonlight-client.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"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
|
||||
// Accepted range: 0 to 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
|
||||
// Accepted values: FALSE, NO_GUI, TRUE
|
||||
"consistent_entity_renderer_shading": "NO_GUI",
|
||||
// Enables some debug renderers. Require the use of the /supp debug command to enable their data being sent
|
||||
"debug_renderers": false,
|
||||
// Show Item and Block tags on item tooltip
|
||||
// Accepted values: OFF, ON, ADVANCED_ONLY
|
||||
"tags_tooltips": "OFF"
|
||||
}
|
||||
}
|
||||
12
config/moonlight-common.json
Normal file
12
config/moonlight-common.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"general": {
|
||||
// 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,
|
||||
// Makes the dynamic assets cache use a tree structure for indexing, drastically speeds up query time but could cost some ram.
|
||||
"faster_cache_search": true,
|
||||
// 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"
|
||||
}
|
||||
}
|
||||
125
config/sodiumextras-client-1.toml.bak
Normal file
125
config/sodiumextras-client-1.toml.bak
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
[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 = "WINDOWED"
|
||||
#Configure FPS Display mode
|
||||
#Complete mode gives you min FPS count and average count
|
||||
#Allowed Values: OFF, SIMPLE, ADVANCED
|
||||
fpsDisplay = "OFF"
|
||||
#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.tileEntities]
|
||||
#Toggles distance culling for Block Entities
|
||||
#Maybe you use another mod for that :(
|
||||
enable = false
|
||||
#Configure horizontal max distance before cull Block entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 36864
|
||||
#Configure vertical max distance before cull Block entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 64
|
||||
#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 = false
|
||||
#Configure horizontal max distance before cull entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 36864
|
||||
#Configure vertical max distance before cull entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 64
|
||||
#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
|
||||
|
|
@ -16,7 +16,8 @@
|
|||
fpsDisplaySystem = "OFF"
|
||||
#Configure FPS Display margin
|
||||
#Give some space between corner and text
|
||||
#Range: 0 ~ 48
|
||||
# Default: 12
|
||||
# Range: 0 ~ 48
|
||||
fpsDisplayMargin = 12
|
||||
#Toggle FPS Display shadow
|
||||
#In case sometimes you can't see the text
|
||||
|
|
@ -28,7 +29,8 @@
|
|||
fog = true
|
||||
#Raise clouds
|
||||
#Modify clouds height perfect for a adaptative world experience
|
||||
#Range: 0 ~ 512
|
||||
# Default: 192
|
||||
# Range: 0 ~ 512
|
||||
cloudsHeight = 192
|
||||
#Chunks fade in speed
|
||||
#This option doesn't affect performance, just changes speed
|
||||
|
|
@ -45,12 +47,14 @@
|
|||
#Toggle Darkness on Nether dimension
|
||||
enableOnNether = false
|
||||
#Configure fog brightness on nether when darkness is enabled
|
||||
#Range: 0.0 ~ 1.0
|
||||
# Default: 0.5
|
||||
# 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
|
||||
# Default: 0.5
|
||||
# Range: 0.0 ~ 1.0
|
||||
endFogBright = 0.5
|
||||
#Toggle Darkness default mode for modded dimensions
|
||||
valueByDefault = false
|
||||
|
|
@ -65,10 +69,12 @@
|
|||
#Toggles if moon phases affects darkness in the overworld
|
||||
affectedByMoonPhase = true
|
||||
#Configure max moon brightness level with darkness
|
||||
#Range: 0.0 ~ 1.0
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 1.0
|
||||
fullMoonBright = 0.25
|
||||
#Configure min moon brightness level with darkness
|
||||
#Range: 0.0 ~ 1.0
|
||||
# Default: 0.0
|
||||
# Range: 0.0 ~ 1.0
|
||||
newMoonBright = 0.0
|
||||
|
||||
[embeddiumextras.performance]
|
||||
|
|
@ -86,11 +92,13 @@
|
|||
enable = false
|
||||
#Configure horizontal max distance before cull Block entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
# Default: 4096
|
||||
# Range: > 0
|
||||
cullingMaxDistanceX = 36864
|
||||
#Configure vertical max distance before cull Block entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
# Default: 32
|
||||
# Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 64
|
||||
#List of all Block Entities to be ignored by distance culling
|
||||
#Uses ResourceLocation to identify it
|
||||
|
|
@ -104,11 +112,13 @@
|
|||
enable = false
|
||||
#Configure horizontal max distance before cull entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
# Default: 4096
|
||||
# Range: > 0
|
||||
cullingMaxDistanceX = 36864
|
||||
#Configure vertical max distance before cull entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
# Default: 32
|
||||
# Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 64
|
||||
#List of all Entities to be ignored by distance culling
|
||||
#Uses ResourceLocation to identify it
|
||||
|
|
|
|||
219
config/sound_physics_remastered/occlusion.properties
Normal file
219
config/sound_physics_remastered/occlusion.properties
Normal file
|
|
@ -0,0 +1,219 @@
|
|||
# Values for blocks can be defined as follows:
|
||||
#
|
||||
# By sound type:
|
||||
# WOOD=1.0
|
||||
#
|
||||
# By block tag:
|
||||
# \#minecraft\:logs=1.0
|
||||
#
|
||||
# By block ID:
|
||||
# minecraft\:oak_log=1.0
|
||||
|
||||
# Amethyst (Sound Type)
|
||||
AMETHYST=1.0
|
||||
# Amethyst Cluster (Sound Type)
|
||||
AMETHYST_CLUSTER=1.0
|
||||
# Ancient Debris (Sound Type)
|
||||
ANCIENT_DEBRIS=1.0
|
||||
# Anvil (Sound Type)
|
||||
ANVIL=1.0
|
||||
# Azalea (Sound Type)
|
||||
AZALEA=1.0
|
||||
# Azalea Leaves (Sound Type)
|
||||
AZALEA_LEAVES=1.0
|
||||
# Bamboo (Sound Type)
|
||||
BAMBOO=0.1
|
||||
# Bamboo Sapling (Sound Type)
|
||||
BAMBOO_SAPLING=0.1
|
||||
# Bamboo Wood (Sound Type)
|
||||
BAMBOO_WOOD=1.0
|
||||
# Bamboo Wood Hanging Sign (Sound Type)
|
||||
BAMBOO_WOOD_HANGING_SIGN=1.0
|
||||
# Basalt (Sound Type)
|
||||
BASALT=1.0
|
||||
# Big Dripleaf (Sound Type)
|
||||
BIG_DRIPLEAF=1.0
|
||||
# Bone Block (Sound Type)
|
||||
BONE_BLOCK=1.0
|
||||
# Calcite (Sound Type)
|
||||
CALCITE=1.0
|
||||
# Candle (Sound Type)
|
||||
CANDLE=1.0
|
||||
# Cave Vines (Sound Type)
|
||||
CAVE_VINES=1.0
|
||||
# Chain (Sound Type)
|
||||
CHAIN=0.0
|
||||
# Cherry Leaves (Sound Type)
|
||||
CHERRY_LEAVES=1.0
|
||||
# Cherry Sapling (Sound Type)
|
||||
CHERRY_SAPLING=1.0
|
||||
# Cherry Wood (Sound Type)
|
||||
CHERRY_WOOD=1.0
|
||||
# Cherry Wood Hanging Sign (Sound Type)
|
||||
CHERRY_WOOD_HANGING_SIGN=1.0
|
||||
# Chiseled Bookshelf (Sound Type)
|
||||
CHISELED_BOOKSHELF=1.0
|
||||
# Copper (Sound Type)
|
||||
COPPER=1.0
|
||||
# Coral Block (Sound Type)
|
||||
CORAL_BLOCK=1.0
|
||||
# Crop (Sound Type)
|
||||
CROP=0.0
|
||||
# Decorated Pot (Sound Type)
|
||||
DECORATED_POT=1.0
|
||||
# Decorated Pot Cracked (Sound Type)
|
||||
DECORATED_POT_CRACKED=1.0
|
||||
# Deepslate (Sound Type)
|
||||
DEEPSLATE=1.0
|
||||
# Deepslate Bricks (Sound Type)
|
||||
DEEPSLATE_BRICKS=1.0
|
||||
# Deepslate Tiles (Sound Type)
|
||||
DEEPSLATE_TILES=1.0
|
||||
# Dripstone Block (Sound Type)
|
||||
DRIPSTONE_BLOCK=1.0
|
||||
# Flowering Azalea (Sound Type)
|
||||
FLOWERING_AZALEA=1.0
|
||||
# Froglight (Sound Type)
|
||||
FROGLIGHT=1.0
|
||||
# Frogspawn (Sound Type)
|
||||
FROGSPAWN=1.0
|
||||
# Fungus (Sound Type)
|
||||
FUNGUS=0.0
|
||||
# Gilded Blackstone (Sound Type)
|
||||
GILDED_BLACKSTONE=1.0
|
||||
# Glass (Sound Type)
|
||||
GLASS=0.1
|
||||
# Glow Lichen (Sound Type)
|
||||
GLOW_LICHEN=0.0
|
||||
# Grass (Sound Type)
|
||||
GRASS=1.0
|
||||
# Gravel (Sound Type)
|
||||
GRAVEL=1.0
|
||||
# Hanging Roots (Sound Type)
|
||||
HANGING_ROOTS=1.0
|
||||
# Hanging Sign (Sound Type)
|
||||
HANGING_SIGN=1.0
|
||||
# Hard Crop (Sound Type)
|
||||
HARD_CROP=1.0
|
||||
# Honey Block (Sound Type)
|
||||
HONEY_BLOCK=0.5
|
||||
# Ladder (Sound Type)
|
||||
LADDER=0.0
|
||||
# Lantern (Sound Type)
|
||||
LANTERN=1.0
|
||||
# Large Amethyst Bud (Sound Type)
|
||||
LARGE_AMETHYST_BUD=0.0
|
||||
# Lily Pad (Sound Type)
|
||||
LILY_PAD=0.0
|
||||
# Lodestone (Sound Type)
|
||||
LODESTONE=1.0
|
||||
# Mangrove Roots (Sound Type)
|
||||
MANGROVE_ROOTS=1.0
|
||||
# Medium Amethyst Bud (Sound Type)
|
||||
MEDIUM_AMETHYST_BUD=0.0
|
||||
# Metal (Sound Type)
|
||||
METAL=1.0
|
||||
# Moss (Sound Type)
|
||||
MOSS=0.75
|
||||
# Moss Carpet (Sound Type)
|
||||
MOSS_CARPET=0.1
|
||||
# Mud (Sound Type)
|
||||
MUD=1.0
|
||||
# Muddy Mangrove Roots (Sound Type)
|
||||
MUDDY_MANGROVE_ROOTS=1.0
|
||||
# Mud Bricks (Sound Type)
|
||||
MUD_BRICKS=1.0
|
||||
# Netherite Block (Sound Type)
|
||||
NETHERITE_BLOCK=1.0
|
||||
# Netherrack (Sound Type)
|
||||
NETHERRACK=1.0
|
||||
# Nether Bricks (Sound Type)
|
||||
NETHER_BRICKS=1.0
|
||||
# Nether Gold Ore (Sound Type)
|
||||
NETHER_GOLD_ORE=1.0
|
||||
# Nether Ore (Sound Type)
|
||||
NETHER_ORE=1.0
|
||||
# Nether Sprouts (Sound Type)
|
||||
NETHER_SPROUTS=1.0
|
||||
# Nether Wart (Sound Type)
|
||||
NETHER_WART=1.0
|
||||
# Nether Wood (Sound Type)
|
||||
NETHER_WOOD=1.0
|
||||
# Nether Wood Hanging Sign (Sound Type)
|
||||
NETHER_WOOD_HANGING_SIGN=1.0
|
||||
# Nylium (Sound Type)
|
||||
NYLIUM=1.0
|
||||
# Packed Mud (Sound Type)
|
||||
PACKED_MUD=1.0
|
||||
# Pointed Dripstone (Sound Type)
|
||||
POINTED_DRIPSTONE=0.0
|
||||
# Polished Deepslate (Sound Type)
|
||||
POLISHED_DEEPSLATE=1.0
|
||||
# Powder Snow (Sound Type)
|
||||
POWDER_SNOW=0.1
|
||||
# Rooted Dirt (Sound Type)
|
||||
ROOTED_DIRT=1.0
|
||||
# Roots (Sound Type)
|
||||
ROOTS=0.0
|
||||
# Sand (Sound Type)
|
||||
SAND=1.0
|
||||
# Scaffolding (Sound Type)
|
||||
SCAFFOLDING=0.0
|
||||
# Sculk (Sound Type)
|
||||
SCULK=1.0
|
||||
# Sculk Catalyst (Sound Type)
|
||||
SCULK_CATALYST=1.0
|
||||
# Sculk Sensor (Sound Type)
|
||||
SCULK_SENSOR=1.0
|
||||
# Sculk Shrieker (Sound Type)
|
||||
SCULK_SHRIEKER=1.0
|
||||
# Sculk Vein (Sound Type)
|
||||
SCULK_VEIN=1.0
|
||||
# Shroomlight (Sound Type)
|
||||
SHROOMLIGHT=1.0
|
||||
# Slime Block (Sound Type)
|
||||
SLIME_BLOCK=1.0
|
||||
# Small Amethyst Bud (Sound Type)
|
||||
SMALL_AMETHYST_BUD=0.0
|
||||
# Small Dripleaf (Sound Type)
|
||||
SMALL_DRIPLEAF=0.0
|
||||
# Snow (Sound Type)
|
||||
SNOW=0.1
|
||||
# Soul Sand (Sound Type)
|
||||
SOUL_SAND=1.0
|
||||
# Soul Soil (Sound Type)
|
||||
SOUL_SOIL=1.0
|
||||
# Spore Blossom (Sound Type)
|
||||
SPORE_BLOSSOM=0.0
|
||||
# Stem (Sound Type)
|
||||
STEM=1.0
|
||||
# Stone (Sound Type)
|
||||
STONE=1.0
|
||||
# Suspicious Gravel (Sound Type)
|
||||
SUSPICIOUS_GRAVEL=1.0
|
||||
# Suspicious Sand (Sound Type)
|
||||
SUSPICIOUS_SAND=1.0
|
||||
# Sweet Berry Bush (Sound Type)
|
||||
SWEET_BERRY_BUSH=0.0
|
||||
# Tuff (Sound Type)
|
||||
TUFF=1.0
|
||||
# Twisting Vines (Sound Type)
|
||||
TWISTING_VINES=0.0
|
||||
# Vine (Sound Type)
|
||||
VINE=0.0
|
||||
# Wart Block (Sound Type)
|
||||
WART_BLOCK=1.0
|
||||
# Weeping Vines (Sound Type)
|
||||
WEEPING_VINES=0.0
|
||||
# Wet Grass (Sound Type)
|
||||
WET_GRASS=0.1
|
||||
# Wood (Sound Type)
|
||||
WOOD=1.0
|
||||
# Wool (Sound Type)
|
||||
WOOL=1.5
|
||||
# Jukebox (Block)
|
||||
minecraft\:jukebox=0.0
|
||||
# Lava (Block)
|
||||
minecraft\:lava=0.75
|
||||
# Water (Block)
|
||||
minecraft\:water=0.25
|
||||
213
config/sound_physics_remastered/reflectivity.properties
Normal file
213
config/sound_physics_remastered/reflectivity.properties
Normal file
|
|
@ -0,0 +1,213 @@
|
|||
# Values for blocks can be defined as follows:
|
||||
#
|
||||
# By sound type:
|
||||
# WOOD=1.0
|
||||
#
|
||||
# By block tag:
|
||||
# \#minecraft\:logs=1.0
|
||||
#
|
||||
# By block ID:
|
||||
# minecraft\:oak_log=1.0
|
||||
|
||||
# Amethyst (Sound Type)
|
||||
AMETHYST=1.5
|
||||
# Amethyst Cluster (Sound Type)
|
||||
AMETHYST_CLUSTER=0.5
|
||||
# Ancient Debris (Sound Type)
|
||||
ANCIENT_DEBRIS=0.5
|
||||
# Anvil (Sound Type)
|
||||
ANVIL=0.5
|
||||
# Azalea (Sound Type)
|
||||
AZALEA=0.5
|
||||
# Azalea Leaves (Sound Type)
|
||||
AZALEA_LEAVES=0.5
|
||||
# Bamboo (Sound Type)
|
||||
BAMBOO=0.5
|
||||
# Bamboo Sapling (Sound Type)
|
||||
BAMBOO_SAPLING=0.5
|
||||
# Bamboo Wood (Sound Type)
|
||||
BAMBOO_WOOD=0.5
|
||||
# Bamboo Wood Hanging Sign (Sound Type)
|
||||
BAMBOO_WOOD_HANGING_SIGN=0.5
|
||||
# Basalt (Sound Type)
|
||||
BASALT=1.5
|
||||
# Big Dripleaf (Sound Type)
|
||||
BIG_DRIPLEAF=0.5
|
||||
# Bone Block (Sound Type)
|
||||
BONE_BLOCK=1.5
|
||||
# Calcite (Sound Type)
|
||||
CALCITE=1.5
|
||||
# Candle (Sound Type)
|
||||
CANDLE=0.5
|
||||
# Cave Vines (Sound Type)
|
||||
CAVE_VINES=0.5
|
||||
# Chain (Sound Type)
|
||||
CHAIN=0.5
|
||||
# Cherry Leaves (Sound Type)
|
||||
CHERRY_LEAVES=0.5
|
||||
# Cherry Sapling (Sound Type)
|
||||
CHERRY_SAPLING=0.5
|
||||
# Cherry Wood (Sound Type)
|
||||
CHERRY_WOOD=0.5
|
||||
# Cherry Wood Hanging Sign (Sound Type)
|
||||
CHERRY_WOOD_HANGING_SIGN=0.5
|
||||
# Chiseled Bookshelf (Sound Type)
|
||||
CHISELED_BOOKSHELF=0.5
|
||||
# Copper (Sound Type)
|
||||
COPPER=1.25
|
||||
# Coral Block (Sound Type)
|
||||
CORAL_BLOCK=0.2
|
||||
# Crop (Sound Type)
|
||||
CROP=0.5
|
||||
# Decorated Pot (Sound Type)
|
||||
DECORATED_POT=0.5
|
||||
# Decorated Pot Cracked (Sound Type)
|
||||
DECORATED_POT_CRACKED=0.5
|
||||
# Deepslate (Sound Type)
|
||||
DEEPSLATE=1.5
|
||||
# Deepslate Bricks (Sound Type)
|
||||
DEEPSLATE_BRICKS=1.5
|
||||
# Deepslate Tiles (Sound Type)
|
||||
DEEPSLATE_TILES=1.5
|
||||
# Dripstone Block (Sound Type)
|
||||
DRIPSTONE_BLOCK=0.5
|
||||
# Flowering Azalea (Sound Type)
|
||||
FLOWERING_AZALEA=0.5
|
||||
# Froglight (Sound Type)
|
||||
FROGLIGHT=0.5
|
||||
# Frogspawn (Sound Type)
|
||||
FROGSPAWN=0.5
|
||||
# Fungus (Sound Type)
|
||||
FUNGUS=0.5
|
||||
# Gilded Blackstone (Sound Type)
|
||||
GILDED_BLACKSTONE=0.5
|
||||
# Glass (Sound Type)
|
||||
GLASS=0.75
|
||||
# Glow Lichen (Sound Type)
|
||||
GLOW_LICHEN=0.5
|
||||
# Grass (Sound Type)
|
||||
GRASS=0.3
|
||||
# Gravel (Sound Type)
|
||||
GRAVEL=0.3
|
||||
# Hanging Roots (Sound Type)
|
||||
HANGING_ROOTS=0.5
|
||||
# Hanging Sign (Sound Type)
|
||||
HANGING_SIGN=0.5
|
||||
# Hard Crop (Sound Type)
|
||||
HARD_CROP=0.5
|
||||
# Honey Block (Sound Type)
|
||||
HONEY_BLOCK=0.1
|
||||
# Ladder (Sound Type)
|
||||
LADDER=0.5
|
||||
# Lantern (Sound Type)
|
||||
LANTERN=0.5
|
||||
# Large Amethyst Bud (Sound Type)
|
||||
LARGE_AMETHYST_BUD=0.5
|
||||
# Lily Pad (Sound Type)
|
||||
LILY_PAD=0.5
|
||||
# Lodestone (Sound Type)
|
||||
LODESTONE=0.5
|
||||
# Mangrove Roots (Sound Type)
|
||||
MANGROVE_ROOTS=0.5
|
||||
# Medium Amethyst Bud (Sound Type)
|
||||
MEDIUM_AMETHYST_BUD=0.5
|
||||
# Metal (Sound Type)
|
||||
METAL=1.25
|
||||
# Moss (Sound Type)
|
||||
MOSS=0.1
|
||||
# Moss Carpet (Sound Type)
|
||||
MOSS_CARPET=0.5
|
||||
# Mud (Sound Type)
|
||||
MUD=0.5
|
||||
# Muddy Mangrove Roots (Sound Type)
|
||||
MUDDY_MANGROVE_ROOTS=0.5
|
||||
# Mud Bricks (Sound Type)
|
||||
MUD_BRICKS=0.5
|
||||
# Netherite Block (Sound Type)
|
||||
NETHERITE_BLOCK=1.5
|
||||
# Netherrack (Sound Type)
|
||||
NETHERRACK=1.1
|
||||
# Nether Bricks (Sound Type)
|
||||
NETHER_BRICKS=1.5
|
||||
# Nether Gold Ore (Sound Type)
|
||||
NETHER_GOLD_ORE=1.1
|
||||
# Nether Ore (Sound Type)
|
||||
NETHER_ORE=1.1
|
||||
# Nether Sprouts (Sound Type)
|
||||
NETHER_SPROUTS=0.5
|
||||
# Nether Wart (Sound Type)
|
||||
NETHER_WART=0.5
|
||||
# Nether Wood (Sound Type)
|
||||
NETHER_WOOD=0.5
|
||||
# Nether Wood Hanging Sign (Sound Type)
|
||||
NETHER_WOOD_HANGING_SIGN=0.5
|
||||
# Nylium (Sound Type)
|
||||
NYLIUM=0.5
|
||||
# Packed Mud (Sound Type)
|
||||
PACKED_MUD=0.5
|
||||
# Pointed Dripstone (Sound Type)
|
||||
POINTED_DRIPSTONE=0.5
|
||||
# Polished Deepslate (Sound Type)
|
||||
POLISHED_DEEPSLATE=1.5
|
||||
# Powder Snow (Sound Type)
|
||||
POWDER_SNOW=0.5
|
||||
# Rooted Dirt (Sound Type)
|
||||
ROOTED_DIRT=0.5
|
||||
# Roots (Sound Type)
|
||||
ROOTS=0.5
|
||||
# Sand (Sound Type)
|
||||
SAND=0.2
|
||||
# Scaffolding (Sound Type)
|
||||
SCAFFOLDING=0.5
|
||||
# Sculk (Sound Type)
|
||||
SCULK=0.5
|
||||
# Sculk Catalyst (Sound Type)
|
||||
SCULK_CATALYST=0.5
|
||||
# Sculk Sensor (Sound Type)
|
||||
SCULK_SENSOR=0.5
|
||||
# Sculk Shrieker (Sound Type)
|
||||
SCULK_SHRIEKER=0.5
|
||||
# Sculk Vein (Sound Type)
|
||||
SCULK_VEIN=0.5
|
||||
# Shroomlight (Sound Type)
|
||||
SHROOMLIGHT=0.5
|
||||
# Slime Block (Sound Type)
|
||||
SLIME_BLOCK=0.5
|
||||
# Small Amethyst Bud (Sound Type)
|
||||
SMALL_AMETHYST_BUD=0.5
|
||||
# Small Dripleaf (Sound Type)
|
||||
SMALL_DRIPLEAF=0.5
|
||||
# Snow (Sound Type)
|
||||
SNOW=0.15
|
||||
# Soul Sand (Sound Type)
|
||||
SOUL_SAND=0.2
|
||||
# Soul Soil (Sound Type)
|
||||
SOUL_SOIL=0.2
|
||||
# Spore Blossom (Sound Type)
|
||||
SPORE_BLOSSOM=0.5
|
||||
# Stem (Sound Type)
|
||||
STEM=0.4
|
||||
# Stone (Sound Type)
|
||||
STONE=1.5
|
||||
# Suspicious Gravel (Sound Type)
|
||||
SUSPICIOUS_GRAVEL=0.5
|
||||
# Suspicious Sand (Sound Type)
|
||||
SUSPICIOUS_SAND=0.5
|
||||
# Sweet Berry Bush (Sound Type)
|
||||
SWEET_BERRY_BUSH=0.5
|
||||
# Tuff (Sound Type)
|
||||
TUFF=1.5
|
||||
# Twisting Vines (Sound Type)
|
||||
TWISTING_VINES=0.5
|
||||
# Vine (Sound Type)
|
||||
VINE=0.5
|
||||
# Wart Block (Sound Type)
|
||||
WART_BLOCK=0.5
|
||||
# Weeping Vines (Sound Type)
|
||||
WEEPING_VINES=0.5
|
||||
# Wet Grass (Sound Type)
|
||||
WET_GRASS=0.5
|
||||
# Wood (Sound Type)
|
||||
WOOD=0.4
|
||||
# Wool (Sound Type)
|
||||
WOOL=0.1
|
||||
1838
config/sound_physics_remastered/sound_rates.properties
Normal file
1838
config/sound_physics_remastered/sound_rates.properties
Normal file
File diff suppressed because it is too large
Load diff
99
config/sound_physics_remastered/soundphysics.properties
Normal file
99
config/sound_physics_remastered/soundphysics.properties
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
# Enables/Disables all sound effects
|
||||
enabled=true
|
||||
# Affects how quiet a sound gets based on distance
|
||||
# Lower values mean distant sounds are louder
|
||||
# This setting requires you to be in singleplayer or having the mod installed on the server
|
||||
# 1.0 is the physically correct value
|
||||
attenuation_factor=1.0
|
||||
# The ray distance at which reverb starts
|
||||
# 0.0 disables reverb attenuation
|
||||
reverb_attenuation_distance=0.0
|
||||
# The volume of simulated reverberations
|
||||
reverb_gain=1.0
|
||||
# The brightness of reverberation
|
||||
# Higher values result in more high frequencies in reverberation
|
||||
# Lower values give a more muffled sound to the reverb
|
||||
reverb_brightness=1.0
|
||||
# The distance of reverb relative to the sound distance
|
||||
reverb_distance=1.5
|
||||
# The amount of sound that will be absorbed when traveling through blocks
|
||||
block_absorption=1.0
|
||||
# Higher values mean smaller objects won't be considered as occluding
|
||||
occlusion_variation=0.35
|
||||
# The default amount of sound reflectance energy for all blocks
|
||||
# Lower values result in more conservative reverb simulation with shorter reverb tails
|
||||
# Higher values result in more generous reverb simulation with higher reverb tails
|
||||
default_block_reflectivity=0.5
|
||||
# The default amount of occlusion for all blocks
|
||||
# Lower values will result in sounds being less muffled through walls
|
||||
# Higher values mean sounds will be not audible though thicker walls
|
||||
default_block_occlusion_factor=1.0
|
||||
# Minecraft won't allow sounds to play past a certain distance
|
||||
# This parameter is a multiplier for how far away a sound source is allowed to be in order for it to actually play
|
||||
# This setting only takes affect in singleplayer worlds and when installed on the server
|
||||
sound_distance_allowance=4.0
|
||||
# A value controlling the amount that air absorbs high frequencies with distance
|
||||
# A value of 1.0 is physically correct for air with normal humidity and temperature
|
||||
# Higher values mean air will absorb more high frequencies with distance
|
||||
# 0 disables this effect
|
||||
air_absorption=1.0
|
||||
# How much sound is filtered when the player is underwater
|
||||
# 0.0 means no filter
|
||||
# 1.0 means fully filtered
|
||||
underwater_filter=0.9
|
||||
# Whether sounds like cave, nether or underwater ambient sounds should have sound physics
|
||||
evaluate_ambient_sounds=false
|
||||
# The number of rays to trace to determine reverberation for each sound source
|
||||
# More rays provides more consistent tracing results but takes more time to calculate
|
||||
# Decrease this value if you experience lag spikes when sounds play
|
||||
environment_evaluation_ray_count=32
|
||||
# The number of rays bounces to trace to determine reverberation for each sound source
|
||||
# More bounces provides more echo and sound ducting but takes more time to calculate
|
||||
# Decrease this value if you experience lag spikes when sounds play
|
||||
environment_evaluation_ray_bounces=4
|
||||
# If sound hits a non-full-square side, block occlusion is multiplied by this
|
||||
non_full_block_occlusion_factor=0.25
|
||||
# The maximum amount of rays to determine occlusion
|
||||
# Directly correlates to the amount of blocks between walls that are considered
|
||||
max_occlusion_rays=16
|
||||
# The amount at which occlusion is capped
|
||||
max_occlusion=64.0
|
||||
# If enabled, the occlusion calculation only uses one path between the sound source and the listener instead of 9
|
||||
strict_occlusion=false
|
||||
# Whether to try calculating where the sound should come from based on reflections
|
||||
sound_direction_evaluation=true
|
||||
# Skip redirecting non-occluded sounds (the ones you can see directly)
|
||||
redirect_non_occluded_sounds=true
|
||||
# If music discs or other longer sounds should be frequently reevaluated
|
||||
update_moving_sounds=false
|
||||
# The interval in ticks that moving sounds are reevaluated
|
||||
# Lower values mean more frequent reevaluation but also more lag
|
||||
# This option only takes effect if update_moving_sounds is enabled
|
||||
sound_update_interval=5
|
||||
# The maximum distance a sound can be processed
|
||||
max_sound_processing_distance=512.0
|
||||
# Disable level clone and cache. This will fall back to original main thread access.
|
||||
# WARNING! Enabling this will cause instability and issues with other mods.
|
||||
unsafe_level_access=false
|
||||
# The radius of chunks to clone for level access
|
||||
level_clone_range=4
|
||||
# The maximum number of ticks to retain the cloned level in the cache
|
||||
level_clone_max_retain_ticks=20
|
||||
# The maximum distance a player can move from the cloned origin before invalidation
|
||||
level_clone_max_retain_block_distance=16
|
||||
# Enables debug logging
|
||||
debug_logging=false
|
||||
# Provides more information about occlusion in the logs
|
||||
occlusion_logging=false
|
||||
# Provides more information about the environment calculation in the logs
|
||||
environment_logging=false
|
||||
# Provides more information about how long computations take
|
||||
performance_logging=false
|
||||
# If enabled, the path of the sound will be rendered in game
|
||||
render_sound_bounces=false
|
||||
# If enabled, occlusion will be visualized in game
|
||||
render_occlusion=false
|
||||
# Enables/Disables sound effects for Simple Voice Chat audio
|
||||
simple_voice_chat_integration=true
|
||||
# Enables/Disables hearing your own echo with Simple Voice Chat
|
||||
simple_voice_chat_hear_self=false
|
||||
278
config/travelersbackpack.json5
Normal file
278
config/travelersbackpack.json5
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
{
|
||||
"backpackSettings": {
|
||||
"leather": {
|
||||
// Number of inventory slots for the tier
|
||||
"inventorySlotCount": 27,
|
||||
// Number of upgrade slots for the tier
|
||||
"upgradeSlotCount": 2,
|
||||
// Number of tool slots for the tier
|
||||
"toolSlotCount": 2,
|
||||
// Tank capacity per row of backpack storage, 81000 equals 1 Bucket (Leather backpack 3 rows of 9 slots = 3 * 81000
|
||||
"tankCapacityPerRow": 81000
|
||||
},
|
||||
"iron": {
|
||||
// Number of inventory slots for the tier
|
||||
"inventorySlotCount": 45,
|
||||
// Number of upgrade slots for the tier
|
||||
"upgradeSlotCount": 3,
|
||||
// Number of tool slots for the tier
|
||||
"toolSlotCount": 3,
|
||||
// Tank capacity per row of backpack storage, 81000 equals 1 Bucket (Leather backpack 3 rows of 9 slots = 3 * 81000
|
||||
"tankCapacityPerRow": 81000
|
||||
},
|
||||
"gold": {
|
||||
// Number of inventory slots for the tier
|
||||
"inventorySlotCount": 63,
|
||||
// Number of upgrade slots for the tier
|
||||
"upgradeSlotCount": 4,
|
||||
// Number of tool slots for the tier
|
||||
"toolSlotCount": 4,
|
||||
// Tank capacity per row of backpack storage, 81000 equals 1 Bucket (Leather backpack 3 rows of 9 slots = 3 * 81000
|
||||
"tankCapacityPerRow": 81000
|
||||
},
|
||||
"diamond": {
|
||||
// Number of inventory slots for the tier
|
||||
"inventorySlotCount": 81,
|
||||
// Number of upgrade slots for the tier
|
||||
"upgradeSlotCount": 5,
|
||||
// Number of tool slots for the tier
|
||||
"toolSlotCount": 5,
|
||||
// Tank capacity per row of backpack storage, 81000 equals 1 Bucket (Leather backpack 3 rows of 9 slots = 3 * 81000
|
||||
"tankCapacityPerRow": 81000
|
||||
},
|
||||
"netherite": {
|
||||
// Number of inventory slots for the tier
|
||||
"inventorySlotCount": 99,
|
||||
// Number of upgrade slots for the tier
|
||||
"upgradeSlotCount": 6,
|
||||
// Number of tool slots for the tier
|
||||
"toolSlotCount": 6,
|
||||
// Tank capacity per row of backpack storage, 81000 equals 1 Bucket (Leather backpack 3 rows of 9 slots = 3 * 81000
|
||||
"tankCapacityPerRow": 81000
|
||||
},
|
||||
// Enables equipping the backpack on right-click from the ground (Disabled if Trinkets/Accessories Integration is enabled)
|
||||
"rightClickEquip": true,
|
||||
// Enables unequipping the backpack on right-click on the ground with empty hand (Disabled if Trinkets/Accessories Integration is enabled)
|
||||
"rightClickUnequip": false,
|
||||
// Allows to use only equipped backpack
|
||||
"allowOnlyEquippedBackpack": false,
|
||||
// Allows opening the backpack by pressing a keybind while hovering over the slot with backpack in the player's inventory
|
||||
"allowOpeningFromSlot": false,
|
||||
// Prevents more than one player from accessing the backpack at the same time when it's placed on the ground
|
||||
"preventMultiplePlayersAccess": false,
|
||||
// Backpack immune to any damage source (lava, fire), can't be destroyed, never disappears as floating item
|
||||
"invulnerableBackpack": true,
|
||||
// List of items that can be put in tool slots (Use registry names, for example: minecraft:apple, minecraft:flint)
|
||||
"toolSlotsAcceptableItems": [],
|
||||
// List of items that can't be put in backpack inventory (Use registry names, for example: minecraft:apple, minecraft:flint)
|
||||
"blacklistedItems": [],
|
||||
// Tool slots accept any item
|
||||
"toolSlotsAcceptEverything": false,
|
||||
// Allows putting shulker boxes and other items with inventory in backpack
|
||||
"allowShulkerBoxes": false,
|
||||
// Prevents backpack disappearing in void, spawns floating backpack above minimum Y when player dies in void
|
||||
"voidProtection": true,
|
||||
// Places backpack at place where player died
|
||||
"backpackDeathPlace": true,
|
||||
// Places backpack at place where player died, replacing all blocks that are breakable and do not have inventory (backpackDeathPlace must be true in order to work)
|
||||
"backpackForceDeathPlace": false,
|
||||
// Allows sleeping in a sleeping bag without the need to unequip and place the backpack on the ground
|
||||
"quickSleepingBag": true,
|
||||
"enableSleepingBagSpawnPoint": false,
|
||||
// Backpacks can only be equipped in the Trinkets/Accessories 'Back' slot, provided those mods are installed. If set to false, backpacks can only be equipped by clicking the button in the Backpack GUI. This setting can be changed without unequipping the backpack. An already equipped backpack will not disappear and can be retrieved from the player's inventory.
|
||||
"backSlotIntegration": true
|
||||
},
|
||||
"backpackUpgrades": {
|
||||
"enableTanksUpgrade": true,
|
||||
"enableCraftingUpgrade": true,
|
||||
"enableFurnaceUpgrade": true,
|
||||
"enableSmokerUpgrade": true,
|
||||
"enableBlastFurnaceUpgrade": true,
|
||||
"enableJukeboxUpgrade": true,
|
||||
"pickupUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"slotsInRow": 3
|
||||
},
|
||||
"magnetUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"slotsInRow": 3,
|
||||
"pullRange": 5,
|
||||
"tickRate": 10
|
||||
},
|
||||
"feedingUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"slotsInRow": 3,
|
||||
"tickRate": 100
|
||||
},
|
||||
"refillUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"slotsInRow": 3,
|
||||
"tickRate": 5
|
||||
},
|
||||
"voidUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"slotsInRow": 3
|
||||
}
|
||||
},
|
||||
"world": {
|
||||
// Enables backpacks spawning in loot chests
|
||||
"enableLoot": true,
|
||||
// Enables chance to spawn Zombie, Skeleton, Wither Skeleton, Piglin or Enderman with random backpack equipped
|
||||
"spawnEntitiesWithBackpack": true,
|
||||
// List of overworld entity types that can spawn with equipped backpack. DO NOT ADD anything to this list, because the game will crash, remove entries if mob should not spawn with backpack
|
||||
"possibleOverworldEntityTypes": [
|
||||
"minecraft:zombie",
|
||||
"minecraft:skeleton",
|
||||
"minecraft:enderman"
|
||||
],
|
||||
// List of nether entity types that can spawn with equipped backpack. DO NOT ADD anything to this list, because the game will crash, remove entries if mob should not spawn with backpack
|
||||
"possibleNetherEntityTypes": [
|
||||
"minecraft:wither_skeleton",
|
||||
"minecraft:piglin"
|
||||
],
|
||||
// Defines spawn chance of entity with a backpack
|
||||
"chance": 0.004999999888241291,
|
||||
// List of backpacks that can spawn on overworld mobs
|
||||
"overworldBackpacks": [
|
||||
"travelersbackpack:standard",
|
||||
"travelersbackpack:diamond",
|
||||
"travelersbackpack:gold",
|
||||
"travelersbackpack:emerald",
|
||||
"travelersbackpack:iron",
|
||||
"travelersbackpack:lapis",
|
||||
"travelersbackpack:redstone",
|
||||
"travelersbackpack:coal",
|
||||
"travelersbackpack:bookshelf",
|
||||
"travelersbackpack:sandstone",
|
||||
"travelersbackpack:snow",
|
||||
"travelersbackpack:sponge",
|
||||
"travelersbackpack:cake",
|
||||
"travelersbackpack:cactus",
|
||||
"travelersbackpack:hay",
|
||||
"travelersbackpack:melon",
|
||||
"travelersbackpack:pumpkin",
|
||||
"travelersbackpack:creeper",
|
||||
"travelersbackpack:enderman",
|
||||
"travelersbackpack:skeleton",
|
||||
"travelersbackpack:spider",
|
||||
"travelersbackpack:bee",
|
||||
"travelersbackpack:wolf",
|
||||
"travelersbackpack:fox",
|
||||
"travelersbackpack:ocelot",
|
||||
"travelersbackpack:horse",
|
||||
"travelersbackpack:cow",
|
||||
"travelersbackpack:pig",
|
||||
"travelersbackpack:sheep",
|
||||
"travelersbackpack:chicken",
|
||||
"travelersbackpack:squid"
|
||||
],
|
||||
// List of backpacks that can spawn on nether mobs
|
||||
"netherBackpacks": [
|
||||
"travelersbackpack:quartz",
|
||||
"travelersbackpack:nether",
|
||||
"travelersbackpack:blaze",
|
||||
"travelersbackpack:ghast",
|
||||
"travelersbackpack:magma_cube",
|
||||
"travelersbackpack:wither"
|
||||
],
|
||||
// Enables trade for Villager Backpack in Librarian villager trades
|
||||
"enableVillagerTrade": true
|
||||
},
|
||||
"backpackAbilities": {
|
||||
"enableBackpackAbilities": true,
|
||||
// Newly crafted backpacks will have ability enabled by default
|
||||
"forceAbilityEnabled": true,
|
||||
// List of backpacks that are allowed to have an ability. DO NOT ADD anything to this list, because the game will crash, remove entries if backpack should not have ability
|
||||
"allowedAbilities": [
|
||||
"travelersbackpack:netherite",
|
||||
"travelersbackpack:diamond",
|
||||
"travelersbackpack:gold",
|
||||
"travelersbackpack:emerald",
|
||||
"travelersbackpack:iron",
|
||||
"travelersbackpack:lapis",
|
||||
"travelersbackpack:redstone",
|
||||
"travelersbackpack:bookshelf",
|
||||
"travelersbackpack:sponge",
|
||||
"travelersbackpack:cake",
|
||||
"travelersbackpack:cactus",
|
||||
"travelersbackpack:melon",
|
||||
"travelersbackpack:pumpkin",
|
||||
"travelersbackpack:creeper",
|
||||
"travelersbackpack:dragon",
|
||||
"travelersbackpack:enderman",
|
||||
"travelersbackpack:blaze",
|
||||
"travelersbackpack:ghast",
|
||||
"travelersbackpack:magma_cube",
|
||||
"travelersbackpack:spider",
|
||||
"travelersbackpack:wither",
|
||||
"travelersbackpack:warden",
|
||||
"travelersbackpack:bat",
|
||||
"travelersbackpack:bee",
|
||||
"travelersbackpack:ocelot",
|
||||
"travelersbackpack:cow",
|
||||
"travelersbackpack:chicken",
|
||||
"travelersbackpack:squid",
|
||||
"travelersbackpack:hay",
|
||||
"travelersbackpack:fox"
|
||||
],
|
||||
/* List of effect abilities associated with backpacks, you can modify this list as you wish. Different effects can be added to different backpacks.
|
||||
Formatting: "<backpack_registry_name>; <status_effect_registry_name>; <min_duration_ticks>; <max_duration_ticks>; <amplifier>"
|
||||
*/
|
||||
"backpackEffects": [
|
||||
"travelersbackpack:bat; minecraft:night_vision; 260; 300; 0",
|
||||
"travelersbackpack:magma_cube; minecraft:fire_resistance; 260; 300; 0",
|
||||
"travelersbackpack:squid; minecraft:water_breathing; 260; 300; 0",
|
||||
"travelersbackpack:squid; minecraft:night_vision; 260; 300; 0",
|
||||
"travelersbackpack:dragon; minecraft:regeneration; 260; 300; 0",
|
||||
"travelersbackpack:dragon; minecraft:strength; 250; 290; 0",
|
||||
"travelersbackpack:quartz; minecraft:haste; 260; 300; 0",
|
||||
"travelersbackpack:fox; minecraft:jump_boost; 260; 300; 0"
|
||||
],
|
||||
/* List of cooldowns that are being applied after ability usage, the backpacks on the list are all that currently have cooldowns, adding additional backpack will not give it cooldown.
|
||||
Formatting: "<backpack_registry_name>; <min_possible_cooldown_seconds>; <max_possible_cooldown_seconds>"
|
||||
*/
|
||||
"cooldowns": [
|
||||
"travelersbackpack:creeper; 1200; 1800",
|
||||
"travelersbackpack:cow; 480; 540",
|
||||
"travelersbackpack:chicken; 360; 600",
|
||||
"travelersbackpack:cake; 360; 480",
|
||||
"travelersbackpack:melon; 120; 480"
|
||||
]
|
||||
},
|
||||
"slownessDebuff": {
|
||||
// Player gets slowness effect, if carries too many backpacks in inventory
|
||||
"tooManyBackpacksSlowness": false,
|
||||
// Maximum number of backpacks, which can be carried in inventory, without slowness effect
|
||||
"maxNumberOfBackpacks": 3,
|
||||
"slownessPerExcessedBackpack": 1
|
||||
},
|
||||
"client": {
|
||||
"overlay": {
|
||||
// Enables tanks and tool slots overlay, while backpack is worn
|
||||
"enableOverlay": true,
|
||||
// Offsets to left side
|
||||
"offsetX": 20,
|
||||
// Offsets to up
|
||||
"offsetY": 30
|
||||
},
|
||||
// Whether the backpack icon should be visible in player's inventory
|
||||
"showBackpackIconInInventory": true,
|
||||
// Sends a message to the player on death with backpack coordinates
|
||||
"sendBackpackCoordinatesMessage": true,
|
||||
// Enables tool cycling via keybind (Default Z) + scroll combination, while backpack is worn
|
||||
"enableToolCycling": true,
|
||||
// Allows tool cycling using keybinding only (Default Z)
|
||||
"disableScrollWheel": false,
|
||||
// Enables tip, how to obtain a backpack, if there's no crafting recipe for it
|
||||
"obtainTips": true,
|
||||
// Render tools in tool slots on the backpack, while worn
|
||||
"renderTools": true,
|
||||
// Only for supporters, option to show/hide the Supporter Star Badge. If you want to receive the Supporter Star Badge, visit my Ko-fi page :)! - https://ko-fi.com/tiviacz1337
|
||||
"showSupporterBadge": true
|
||||
}
|
||||
}
|
||||
10
config/visualworkbench-client.toml
Normal file
10
config/visualworkbench-client.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#Rotate crafting table contents so they always face the closest player.
|
||||
#Default Value: CLOSEST_PLAYER
|
||||
#Allowed Values: CLOSEST_PLAYER, CRAFTING_PLAYER, NEVER
|
||||
rotate_ingredients = "CLOSEST_PLAYER"
|
||||
#Makes crafting table contents lay flat on the table instead of floating above.
|
||||
#Default Value: false
|
||||
flat_rendering = false
|
||||
#Render the result of the crafting operation in addition to crafting table contents.
|
||||
#Default Value: true
|
||||
render_result = true
|
||||
6
config/visualworkbench-common.toml
Normal file
6
config/visualworkbench-common.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Leftover vanilla crafting tables in a world become unusable until they are broken and replaced.
|
||||
#Default Value: true
|
||||
disable_vanilla_workbench = true
|
||||
#Replace vanilla crafting tables created in structures during world generation. Does not affect already generated blocks.
|
||||
#Default Value: true
|
||||
convert_vanilla_workbench_during_world_gen = true
|
||||
113
config/waystones-common.toml
Normal file
113
config/waystones-common.toml
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
[client]
|
||||
|
||||
# If enabled, the text overlay on waystones will no longer always render at full brightness.
|
||||
disableTextGlow = false
|
||||
|
||||
[compatibility]
|
||||
|
||||
# If enabled, Waystones will add markers for waystones and sharestones to BlueMap.
|
||||
blueMap = true
|
||||
|
||||
# If enabled, Waystones will add markers for waystones and sharestones to Dynmap.
|
||||
dynmap = true
|
||||
|
||||
# If enabled, JourneyMap waypoints will be created for each activated waystone.
|
||||
journeyMap = true
|
||||
|
||||
# If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed
|
||||
preferJourneyMapIntegrationMod = true
|
||||
|
||||
[general]
|
||||
|
||||
# Add "GLOBAL" to allow every player to create global waystones.
|
||||
allowedVisibilities = [ ]
|
||||
|
||||
# Set to "GLOBAL" to have newly placed or found waystones be global by default.
|
||||
defaultVisibility = "ACTIVATION"
|
||||
|
||||
# List of waystone origins that should prevent others from editing. PLAYER is special in that it allows only edits by the owner of the waystone.
|
||||
restrictedWaystones = [ "PLAYER" ]
|
||||
|
||||
# The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click.
|
||||
scrollUseTime = 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 = 15
|
||||
|
||||
# The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click.
|
||||
warpStoneUseTime = 32
|
||||
|
||||
[inventoryButton]
|
||||
|
||||
# The y position of the inventory button in the creative menu.
|
||||
creativeInventoryButtonX = 88
|
||||
|
||||
# The y position of the inventory button in the creative menu.
|
||||
creativeInventoryButtonY = 33
|
||||
|
||||
# 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 inventory button in the inventory.
|
||||
inventoryButtonX = 58
|
||||
|
||||
# The y position of the inventory button in the inventory.
|
||||
inventoryButtonY = 60
|
||||
|
||||
[teleports]
|
||||
|
||||
# Set to false to simply disable all cooldowns. See warpRequirements for more fine-grained control.
|
||||
enableCooldowns = true
|
||||
|
||||
# Set to false to simply disable all xp costs. See warpRequirements for more fine-grained control.
|
||||
enableCosts = true
|
||||
|
||||
# Set to true to enable warp modifier items for applying status effects on teleports.
|
||||
enableModifiers = true
|
||||
|
||||
# List of entities that cannot be teleported, either as pet, leashed, or on warp plates.
|
||||
entityDenyList = [ "minecraft:wither" ]
|
||||
|
||||
# Set to ENABLED to have leashed mobs teleport with you. Set to SAME_DIMENSION to have leashed mobs teleport with you only if you're not changing dimensions. Set to DISABLED to disable.
|
||||
transportLeashed = "ENABLED"
|
||||
|
||||
# Set to ENABLED to have nearby pets teleport with you. Set to SAME_DIMENSION to have nearby pets teleport with you only if you're not changing dimensions. Set to DISABLED to disable.
|
||||
transportPets = "DISABLED"
|
||||
|
||||
# List of warp requirements with comma-separated parameters in parentheses. Conditions can be defined as comma-separated list in square brackets. Will be applied in order.
|
||||
warpRequirements = [
|
||||
"[is_not_interdimensional] scaled_add_xp_cost(distance, 0.01)",
|
||||
"[is_interdimensional] add_xp_cost(27)",
|
||||
"[source_is_warp_plate] multiply_xp_cost(0)",
|
||||
"[target_is_global] multiply_xp_cost(0)",
|
||||
"min_xp_cost(0)",
|
||||
"max_xp_cost(27)",
|
||||
"[source_is_inventory_button] add_cooldown(inventory_button, 300)"
|
||||
]
|
||||
|
||||
[worldGen]
|
||||
|
||||
# Approximate chunk distance between wild waystones being generated. Set to 0 to disable generation.
|
||||
chunksBetweenWildWaystones = 25
|
||||
|
||||
# Set to 'PRESET_FIRST' to first use names from the nameGenerationPresets. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names.
|
||||
nameGenerationMode = "PRESET_FIRST"
|
||||
|
||||
# These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info.
|
||||
nameGenerationPresets = [ ]
|
||||
|
||||
# The template to use when generating new names. Supported placeholders are {Biome} (english biome name) and {MrPork} (the default name generator).
|
||||
nameGenerationTemplate = "{MrPork}"
|
||||
|
||||
# Set to REGULAR to have waystones spawn in some villages. Set to FREQUENT to have waystones spawn in most villages. Set to DISABLED to disable waystone generation in villages. Waystones will only spawn in vanilla or supported villages.
|
||||
spawnInVillages = "REGULAR"
|
||||
|
||||
# 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.
|
||||
wildWaystoneStyle = "BIOME"
|
||||
|
||||
# List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList are used.
|
||||
wildWaystonesDimensionAllowList = [ "minecraft:overworld", "minecraft:the_end", "minecraft:the_nether" ]
|
||||
|
||||
# List of dimensions that wild waystones are not allowed to spawn in. Only used if wildWaystonesDimensionAllowList is empty.
|
||||
wildWaystonesDimensionDenyList = [ ]
|
||||
|
||||
8
config/xaeromaps_waystones.json5
Normal file
8
config/xaeromaps_waystones.json5
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
waypointIcon: "☰",
|
||||
waypointNameTemplate: "{waystone_name} [Waystone]",
|
||||
waypointColorFallback: "GRAY",
|
||||
waypointColors: {
|
||||
"waystones:warp_plate": "YELLOW"
|
||||
}
|
||||
}
|
||||
|
|
@ -106,12 +106,12 @@
|
|||
"displayNameWhenIconFails": true,
|
||||
"entityNumber": 1000.0,
|
||||
"alwaysDisplayNametags": false,
|
||||
"dotSize": 2.0,
|
||||
"startFadingAt": 0.0,
|
||||
"dotSize": 2.0,
|
||||
"renderOverMinimapFrame": 1.0,
|
||||
"icons": 2.0,
|
||||
"heightLimit": 20.0,
|
||||
"names": 2.0,
|
||||
"heightLimit": 20.0,
|
||||
"iconScale": 1.0
|
||||
},
|
||||
"subCategories": [
|
||||
|
|
|
|||
212
config/yigd.json
Normal file
212
config/yigd.json
Normal file
|
|
@ -0,0 +1,212 @@
|
|||
{
|
||||
"inventoryConfig": {
|
||||
"dropPlayerHead": false,
|
||||
"itemLoss": {
|
||||
"enabled": false,
|
||||
"affectStacks": false,
|
||||
"usePercentRange": true,
|
||||
"lossRangeFrom": 0,
|
||||
"lossRangeTo": 100,
|
||||
"weightedSelection": true,
|
||||
"lossDropRule": "DESTROY",
|
||||
"percentChanceOfLoss": 50,
|
||||
"canLoseSoulbound": false,
|
||||
"includeModdedInventories": true
|
||||
},
|
||||
"loseSoulboundLevelOnDeath": false,
|
||||
"vanishingSlots": [],
|
||||
"soulboundSlots": [],
|
||||
"dropOnGroundSlots": []
|
||||
},
|
||||
"expConfig": {
|
||||
"dropBehaviour": "BEST_OF_BOTH",
|
||||
"dropPercentage": 0,
|
||||
"keepPercentage": 0
|
||||
},
|
||||
"graveConfig": {
|
||||
"enabled": true,
|
||||
"storeItems": true,
|
||||
"storeXp": true,
|
||||
"informGraveLocation": true,
|
||||
"requireItem": false,
|
||||
"requiredItem": "yigd:grave",
|
||||
"requiredItemCount": 1,
|
||||
"requireShovelToLoot": false,
|
||||
"retrieveMethods": {
|
||||
"onClick": true,
|
||||
"onBreak": false,
|
||||
"onSneak": false,
|
||||
"onStand": false
|
||||
},
|
||||
"mergeStacksOnRetrieve": true,
|
||||
"dropOnRetrieve": "IN_INVENTORY",
|
||||
"dropGraveBlock": false,
|
||||
"generateEmptyGraves": false,
|
||||
"overrideSpawnProtection": true,
|
||||
"claimPriority": "GRAVE",
|
||||
"graveRobbing": {
|
||||
"enabled": true,
|
||||
"killerSkipWaitTime": false,
|
||||
"afterTime": 1,
|
||||
"timeUnit": "HOURS",
|
||||
"robPriority": "INVENTORY",
|
||||
"notifyWhenRobbed": true,
|
||||
"tellWhoRobbed": true
|
||||
},
|
||||
"graveTimeout": {
|
||||
"enabled": false,
|
||||
"afterTime": 5,
|
||||
"timeUnit": "HOURS",
|
||||
"dropContentsOnTimeout": true
|
||||
},
|
||||
"treatBindingCurse": true,
|
||||
"generateGraveInVoid": true,
|
||||
"minimumGraveYLevel": [
|
||||
{
|
||||
"key": "minecraft:overworld",
|
||||
"value": -60
|
||||
},
|
||||
{
|
||||
"key": "minecraft:the_nether",
|
||||
"value": 3
|
||||
},
|
||||
{
|
||||
"key": "minecraft:the_end",
|
||||
"value": 3
|
||||
},
|
||||
{
|
||||
"key": "misc",
|
||||
"value": 3
|
||||
}
|
||||
],
|
||||
"generateOnlyWithinBorder": true,
|
||||
"ignoredDeathTypes": [],
|
||||
"unlockable": true,
|
||||
"randomSpawn": {
|
||||
"percentSpawnChance": 0,
|
||||
"spawnEntity": "minecraft:zombie",
|
||||
"spawnNbt": "{ArmorItems:[{},{},{},{id:\"minecraft:player_head\",components:{\"minecraft:profile\":{name:\"${owner.name}\",id:${owner.uuid}}}}]}"
|
||||
},
|
||||
"generateOnLastGroundPos": false,
|
||||
"tryGenerateOnGround": false,
|
||||
"generationMaxDistance": {
|
||||
"x": 5,
|
||||
"y": 5,
|
||||
"z": 5
|
||||
},
|
||||
"useSoftBlockWhitelist": false,
|
||||
"useStrictBlockBlacklist": true,
|
||||
"replaceOldWhenClaimed": true,
|
||||
"dropItemsIfDestroyed": false,
|
||||
"notifyOwnerIfDestroyed": true,
|
||||
"persistentGraves": {
|
||||
"enabled": false,
|
||||
"showDeathDay": true,
|
||||
"showDeathIrlTime": true,
|
||||
"useAmPm": true
|
||||
},
|
||||
"dimensionBlacklist": [],
|
||||
"blockUnderGrave": {
|
||||
"enabled": true,
|
||||
"blockInDimensions": [
|
||||
{
|
||||
"key": "minecraft:overworld",
|
||||
"value": "minecraft:cobblestone"
|
||||
},
|
||||
{
|
||||
"key": "minecraft:the_nether",
|
||||
"value": "minecraft:soul_soil"
|
||||
},
|
||||
{
|
||||
"key": "minecraft:the_end",
|
||||
"value": "minecraft:end_stone"
|
||||
},
|
||||
{
|
||||
"key": "misc",
|
||||
"value": "minecraft:dirt"
|
||||
}
|
||||
],
|
||||
"generateOnProtectedLand": false,
|
||||
"generateInOwnClaim": true
|
||||
},
|
||||
"sellOutOfflinePeople": false,
|
||||
"maxBackupsPerPerson": 100,
|
||||
"dropFromOldestWhenDeleted": true
|
||||
},
|
||||
"respawnConfig": {
|
||||
"respawnEffects": [],
|
||||
"respawnHealth": -1,
|
||||
"resetHunger": true,
|
||||
"respawnHunger": -1,
|
||||
"resetSaturation": true,
|
||||
"respawnSaturation": -1.0,
|
||||
"extraItemDrops": [],
|
||||
"treatBindingCurse": true
|
||||
},
|
||||
"compatConfig": {
|
||||
"enableProtectionApiCompat": true,
|
||||
"standardDropRuleInClaim": "DROP",
|
||||
"standardDropRuleInOwnClaim": "PUT_IN_GRAVE",
|
||||
"enableAccessoriesCompat": true,
|
||||
"defaultAccessoriesDropRule": "PUT_IN_GRAVE",
|
||||
"enableLevelzCompat": true,
|
||||
"defaultLevelzDropRule": "PUT_IN_GRAVE",
|
||||
"enableTravelersBackpackCompat": true,
|
||||
"defaultTravelersBackpackDropRule": "PUT_IN_GRAVE",
|
||||
"enableTrinketsCompat": true,
|
||||
"defaultTrinketsDropRule": "PUT_IN_GRAVE"
|
||||
},
|
||||
"commandConfig": {
|
||||
"mainCommand": "yigd",
|
||||
"basePermissionLevel": 0,
|
||||
"viewLatestPermissionLevel": 0,
|
||||
"viewSelfPermissionLevel": 0,
|
||||
"viewUserPermissionLevel": 2,
|
||||
"viewAllPermissionLevel": 2,
|
||||
"restorePermissionLevel": 2,
|
||||
"robPermissionLevel": 2,
|
||||
"whitelistPermissionLevel": 3,
|
||||
"deletePermissionLevel": 3,
|
||||
"unlockPermissionLevel": 0
|
||||
},
|
||||
"graveRendering": {
|
||||
"useCustomFeatureRenderer": true,
|
||||
"useSkullRenderer": true,
|
||||
"useTextRenderer": true,
|
||||
"adaptRenderer": false,
|
||||
"useGlowingEffect": true,
|
||||
"glowingDistance": 15
|
||||
},
|
||||
"extraFeatures": {
|
||||
"enableSoulbound": true,
|
||||
"deathSightEnchant": {
|
||||
"enabled": false,
|
||||
"range": 64.0,
|
||||
"targets": "PLAYER_GRAVES"
|
||||
},
|
||||
"graveKeys": {
|
||||
"enabled": false,
|
||||
"rebindable": true,
|
||||
"required": true,
|
||||
"receiveOnRespawn": true,
|
||||
"obtainableFromGui": false,
|
||||
"targeting": "PLAYER_GRAVE"
|
||||
},
|
||||
"deathScroll": {
|
||||
"enabled": false,
|
||||
"rebindable": false,
|
||||
"receiveOnRespawn": false,
|
||||
"clickFunction": "VIEW_CONTENTS",
|
||||
"consumeOnUse": false,
|
||||
"useTime": 0,
|
||||
"useCooldown": 0
|
||||
},
|
||||
"graveCompass": {
|
||||
"receiveOnRespawn": false,
|
||||
"consumeOnUse": true,
|
||||
"deleteWhenUnlinked": true,
|
||||
"cloneRecoveryCompassWithGUI": false,
|
||||
"pointToClosest": "DISABLED"
|
||||
}
|
||||
}
|
||||
}
|
||||
26
config/zoomify.json
Normal file
26
config/zoomify.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"initialZoom": 4,
|
||||
"zoomInTime": 1.0,
|
||||
"zoomOutTime": 0.5,
|
||||
"zoomInTransition": "ease_out_exp",
|
||||
"zoomOutTransition": "ease_out_exp",
|
||||
"affectHandFov": true,
|
||||
"retainZoomSteps": false,
|
||||
"linearLikeSteps": true,
|
||||
"scrollZoom": true,
|
||||
"scrollZoomAmount": 3,
|
||||
"scrollZoomSmoothness": 70,
|
||||
"zoomKeyBehaviour": "hold",
|
||||
"_keybindScrolling": false,
|
||||
"relativeSensitivity": 100,
|
||||
"relativeViewBobbing": true,
|
||||
"cinematicCamera": 0,
|
||||
"spyglassBehaviour": "combine",
|
||||
"spyglassOverlayVisibility": "holding",
|
||||
"spyglassSoundBehaviour": "with_overlay",
|
||||
"secondaryZoomAmount": 4,
|
||||
"secondaryZoomInTime": 10.0,
|
||||
"secondaryZoomOutTime": 1.0,
|
||||
"secondaryHideHUDOnZoom": true,
|
||||
"_firstLaunch": false
|
||||
}
|
||||
294
index.toml
294
index.toml
|
|
@ -60,10 +60,26 @@ hash = "5488000c8d5da039ed9e7e80b3744a949e6b4972b0536e382e1318a0c72d7d8a"
|
|||
file = "config/bhmenu/bhmenu-server_creator_banner.properties"
|
||||
hash = "af6c65a1544e625a61506cd47f01042b8c953e12417e15b7bad30e4b65270c89"
|
||||
|
||||
[[files]]
|
||||
file = "config/bobby.conf"
|
||||
hash = "7b8ca233ee25d95db7ea4601b786d656f3f7569ddf129836ce7f8dbbe5eb8926"
|
||||
|
||||
[[files]]
|
||||
file = "config/bwncr.toml"
|
||||
hash = "b35a981348a11e9ef2e73e87530e4f97d2feb7e3e6df50af897159825fa5a9ff"
|
||||
|
||||
[[files]]
|
||||
file = "config/c2me.toml"
|
||||
hash = "de795e10a12db56f34ed030726e2b61542631bd20604cdf8a40746732339c391"
|
||||
|
||||
[[files]]
|
||||
file = "config/cardinal-components-api.properties"
|
||||
hash = "8d3ae8c9240fc60475fbb98a87b7e2e0874703b173a449fb346fb0857ada7bba"
|
||||
|
||||
[[files]]
|
||||
file = "config/chat_heads.json5"
|
||||
hash = "2e33e5590888ad9c37d35ef6ef29d50e8ab7430ee7fd572a69b3583428abebf9"
|
||||
|
||||
[[files]]
|
||||
file = "config/citresewn.json"
|
||||
hash = "1ea03400477ac2075d61ae58cfc573bc78ce954507d090ab69547de279918656"
|
||||
|
|
@ -72,6 +88,14 @@ hash = "1ea03400477ac2075d61ae58cfc573bc78ce954507d090ab69547de279918656"
|
|||
file = "config/cobblemon/main.json"
|
||||
hash = "ac76e4a6127c62f008768d97e139ff3b7ce91dea373d4b1d55885bbc7736f17f"
|
||||
|
||||
[[files]]
|
||||
file = "config/comforts-common.toml"
|
||||
hash = "d1ff6e8f5aa2b77d6708b9d4a566d2de96e6f1ec594139742162b1dfdf92c476"
|
||||
|
||||
[[files]]
|
||||
file = "config/comforts-server.toml"
|
||||
hash = "00097d03bb5a4016c869695ecce545a38391c7089d8bd9f80cd6feccbae9738e"
|
||||
|
||||
[[files]]
|
||||
file = "config/craftingtweaks-common.toml"
|
||||
hash = "4af862cd0a1c7c379c40c110d5ddea00e211dec005fb09dcee1bfa490b3682b0"
|
||||
|
|
@ -84,10 +108,30 @@ hash = "8830d327f96393c7952f119a69679025a5f1f21cffa278356503021d55d861b2"
|
|||
file = "config/craftpresence.json"
|
||||
hash = "e404ad1628320d9808cbce40b97fccaffd6655dfe642300492d56a33b53dd9a6"
|
||||
|
||||
[[files]]
|
||||
file = "config/creativecore-client.json"
|
||||
hash = "acb6c8c1394d4d6f2d0c98d5c314c5ef8ad34b8a76f0a420fc596733bcbc51ac"
|
||||
|
||||
[[files]]
|
||||
file = "config/creativecore.json"
|
||||
hash = "5f08d0878d7f89c6b4c947a49dce368d7738255d44fecf9aad59ec6ae8a4fcef"
|
||||
|
||||
[[files]]
|
||||
file = "config/dynamiccrosshair.json5"
|
||||
hash = "add5ed0bc9c7f6acbbef0041e48423f0538c88de9abb92961bb82191cc5f3f89"
|
||||
|
||||
[[files]]
|
||||
file = "config/easymagic-client.toml"
|
||||
hash = "541675df333589853c40092d5d978861fa9dd3ba134e5670f8179ce363462698"
|
||||
|
||||
[[files]]
|
||||
file = "config/easymagic-common.toml"
|
||||
hash = "1831109fee7afc163f381d19d57f45db6ad9a8574da583437f5a1e91beb85478"
|
||||
|
||||
[[files]]
|
||||
file = "config/easymagic-server.toml"
|
||||
hash = "887c00afdd5780ce901d398a9a06c3665edbc163071a823ac675ec3d32953a91"
|
||||
|
||||
[[files]]
|
||||
file = "config/emi.css"
|
||||
hash = "eaa7a68db0a98d21a97918d90ba8e176d4599607831deb54e30697fa547fe015"
|
||||
|
|
@ -120,9 +164,21 @@ hash = "68320f4d33013254db37919b8c6132480e845752f721a2cc6109f553678f79a7"
|
|||
file = "config/etf_warnings.json"
|
||||
hash = "a5ba22e63061c1fb67f0f895f17681351eaeccc225faef966c29ee630593275e"
|
||||
|
||||
[[files]]
|
||||
file = "config/exposure-client.toml"
|
||||
hash = "c78f2c700598387c7fb6a7f38fa22e87dcad1baa48d910f6b7b7ba216393ab64"
|
||||
|
||||
[[files]]
|
||||
file = "config/exposure-common.toml"
|
||||
hash = "f2f309a4876192ac4b04d8f8f745d680ab8f368b6802acbd42d05748b986971d"
|
||||
|
||||
[[files]]
|
||||
file = "config/exposure-server.toml"
|
||||
hash = "f48425f8dad0dbe60bdd0c32f0bff73a6d8f16b76afb94c9887c6aee492539d9"
|
||||
|
||||
[[files]]
|
||||
file = "config/fabric/indigo-renderer.properties"
|
||||
hash = "d0eaacfa73870cc7a31eb03e5e4e9fea623bc7767cfa37be48ace6a4184d5e7e"
|
||||
hash = "298f477bc0594fb1f6b19eacce8784c97a4e0b274c2438ad6a16c3c005824181"
|
||||
|
||||
[[files]]
|
||||
file = "config/fallingleaves.json"
|
||||
|
|
@ -304,13 +360,25 @@ hash = "3fcfc5f9957fbb86aea846c9ad49a24f47ca709c523c4018b584668e38b72f41"
|
|||
file = "config/fancymenu/user_variables.db"
|
||||
hash = "f7b6125de1e267744e311629ac0e683717288ed0d94fa9de78d5126c82e04a4b"
|
||||
|
||||
[[files]]
|
||||
file = "config/farmersdelight-client.json"
|
||||
hash = "b68ada748cdab82dcf67d923c4608a3181dad70d40758588995261590a2235e9"
|
||||
|
||||
[[files]]
|
||||
file = "config/farmersdelight-common.json"
|
||||
hash = "bdd90884cfbde8fad7593b041685789364ac6e6636602550f836e3e03818c2b0"
|
||||
|
||||
[[files]]
|
||||
file = "config/ferritecore.mixin.properties"
|
||||
hash = "3cc3011619f098fda6ad213a7c4d1468802ff827591a5917c2b7bf3150bfb2ea"
|
||||
|
||||
[[files]]
|
||||
file = "config/forgeconfigapiport.toml"
|
||||
hash = "5955dc79234034b3937443113055746e7254ac4659953b8b108a8cb143f5757b"
|
||||
hash = "647ad92f7bdc5e0ccef37d6e7386b08f2a19715b77742202f2f9048fb14e0dec"
|
||||
|
||||
[[files]]
|
||||
file = "config/highlighter.toml"
|
||||
hash = "daba189bd24f1c5a37a3250496cc68c25934641ee48be59899123c0c312a086b"
|
||||
|
||||
[[files]]
|
||||
file = "config/immediatelyfast.json"
|
||||
|
|
@ -322,7 +390,7 @@ hash = "ca413dea02cce69c69dccdc525fb0ec013236876eff2d142772c68db3d772d3a"
|
|||
|
||||
[[files]]
|
||||
file = "config/inventoryprofilesnext/inventoryprofiles.json"
|
||||
hash = "a44027e5b5bf7106a7657a84978cbdb46b0d55ac9db0cf77636d4670c4ebfdc3"
|
||||
hash = "ee1719432cb8f7a8368eb59d9603450da50d1b9ff563309dde09352e3ffe8441"
|
||||
|
||||
[[files]]
|
||||
file = "config/inventoryprofilesnext/play.thewizard.link/villager-trading-config-v2.json"
|
||||
|
|
@ -362,7 +430,7 @@ hash = "4d3264b58c502afaeca3f44e8d2db0843c54b8ba957afd21a2d450fe10dafefb"
|
|||
|
||||
[[files]]
|
||||
file = "config/iris.properties"
|
||||
hash = "932b8f3f6c77fde83e3cea245e80dc02ba4b1b37ee9c6fb3e10a509822381f99"
|
||||
hash = "6602a2fde796981b9662b71293d3a4df02301e1ca1b8a42ecb55bd4ebd139a86"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/hide-blocks.json"
|
||||
|
|
@ -378,11 +446,11 @@ hash = "5754114a0a663b321793a61f741bafa70c2a6dd649657260cdc096600763ad94"
|
|||
|
||||
[[files]]
|
||||
file = "config/jade/plugins.json"
|
||||
hash = "d01aec2b1f436d3cc03dc0be05817918cf60e8781fc24adc774f530ad24580ad"
|
||||
hash = "3606bb275669f2fdde0e4c7fff7796dbf3bc745bd673d242900d96d4ee9d463c"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/sort-order.json"
|
||||
hash = "fa18a75aa1e0741427df4f9307682ea7d8ba9819d9b4bb8eae5f30ec3136629a"
|
||||
hash = "68ec2f703995d2a64ae119293ecb428453be517d865128d9f459f5995bd531b0"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/usernamecache.json"
|
||||
|
|
@ -410,7 +478,7 @@ hash = "4eb3a3eb280558bdd2665fb4792d32551cb6dddc468776e66afc1c3ea981781e"
|
|||
|
||||
[[files]]
|
||||
file = "config/jei/recipe-category-sort-order.ini"
|
||||
hash = "b93efb452b74d100f254258571c74e3b06d598cb1522c51a05259f6e52b28058"
|
||||
hash = "ff12fe1f8030b8603ad8680e3a68557ce7062901b6c6b5d995df32501b11f905"
|
||||
|
||||
[[files]]
|
||||
file = "config/konkrete/locals/de_de.local"
|
||||
|
|
@ -472,6 +540,14 @@ hash = "b14c45c6447f9ee5474d70784a2ef96731abbeca1e92485b7599e76e9dce1444"
|
|||
file = "config/modmenu.json"
|
||||
hash = "1d1bb1874d8b7116c41314633a95075675304bd6c205b8d8c5920730dcc6169e"
|
||||
|
||||
[[files]]
|
||||
file = "config/moonlight-client.json"
|
||||
hash = "468730b66703fdbae23f71ee15a9d880f2a79ff8fe67abda746dcbf10f2f06ab"
|
||||
|
||||
[[files]]
|
||||
file = "config/moonlight-common.json"
|
||||
hash = "4e3beb2cf4e3b298278883a7d804e0c1fa94424ef1501c4053d709408cd8a1ee"
|
||||
|
||||
[[files]]
|
||||
file = "config/moreculling.toml"
|
||||
hash = "3ec4f9263c72988bc6490c7d488d5d576c9ebbc4c614f683de3a4772e8e89f0c"
|
||||
|
|
@ -557,9 +633,29 @@ file = "config/sodium-shadowy-path-blocks-options.json"
|
|||
hash = "25baba4e198fbefd6656a38dcf0cdc3e7ccef211221b4f5218d22a778d1853fa"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodiumextras-client.toml"
|
||||
file = "config/sodiumextras-client-1.toml.bak"
|
||||
hash = "0a18f32c23c3b3469b0319aa5c884797121f51a1bcfd3ee2c89487708c647b2e"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodiumextras-client.toml"
|
||||
hash = "cfdf1b72a8c99c54fd3b1dd0474fd0a178c87d8dcc7b22ec6bed2b5b3f951e19"
|
||||
|
||||
[[files]]
|
||||
file = "config/sound_physics_remastered/occlusion.properties"
|
||||
hash = "cb08fad009eefaaf888bb4324c351ac426a49fb0db7cb75c4fddbcdcf8d8f414"
|
||||
|
||||
[[files]]
|
||||
file = "config/sound_physics_remastered/reflectivity.properties"
|
||||
hash = "bc029afc200ba2fba522a27245d65c8e5db0f20cd0eddd5873a316054d962923"
|
||||
|
||||
[[files]]
|
||||
file = "config/sound_physics_remastered/sound_rates.properties"
|
||||
hash = "0a7d633d9016b71504b082198b467e8736785292c5858ad67d884a038238f0b0"
|
||||
|
||||
[[files]]
|
||||
file = "config/sound_physics_remastered/soundphysics.properties"
|
||||
hash = "9573c64dd047712ef1c7ec7f8e2a2b442906f7272eb0c0c73986fc876a3e6235"
|
||||
|
||||
[[files]]
|
||||
file = "config/stendhal/stendhal.properties"
|
||||
hash = "9475d8c3f0bc7d3f5c3083ff02d9e651b94fa19a2343b408642896b128b19f7a"
|
||||
|
|
@ -568,14 +664,34 @@ hash = "9475d8c3f0bc7d3f5c3083ff02d9e651b94fa19a2343b408642896b128b19f7a"
|
|||
file = "config/tipsmod.json"
|
||||
hash = "5684d479ee2d0eb82b344957d1fce05b21c3d766045f9e7c7d301f4b1e31e44f"
|
||||
|
||||
[[files]]
|
||||
file = "config/travelersbackpack.json5"
|
||||
hash = "a99e3621e596568df6f96dda62eb82bb1d781e716d6b934c04b3500f7bab1948"
|
||||
|
||||
[[files]]
|
||||
file = "config/visuality.json"
|
||||
hash = "31853a4d7b21d8d1a2fa597d60d12682bdfc6f97f1de065a2d5f7af01f400fb7"
|
||||
|
||||
[[files]]
|
||||
file = "config/visualworkbench-client.toml"
|
||||
hash = "1890069f63baa9eca78bf5013ea591d70f8a29eb8d95437b4094b6de4b14abd1"
|
||||
|
||||
[[files]]
|
||||
file = "config/visualworkbench-common.toml"
|
||||
hash = "db3a2a559ddbdb5a40c2e7e1b3afd88dd5def2fd35c0af17a1ba4bb967d9be88"
|
||||
|
||||
[[files]]
|
||||
file = "config/wakes.json"
|
||||
hash = "e895e8c54dd96ec33f0424acf64b4a0b1666d4e275647740068c4085e3ad50e5"
|
||||
|
||||
[[files]]
|
||||
file = "config/waystones-common.toml"
|
||||
hash = "0143fb63ced4af6589b0942a7a6e9502597894be1b6cfd1e0d13f15592154d7e"
|
||||
|
||||
[[files]]
|
||||
file = "config/xaeromaps_waystones.json5"
|
||||
hash = "eaf2f8a42954ff45d38ecd0db817b6db3aacb9f4878a847f4bfe5cacbf9dce3b"
|
||||
|
||||
[[files]]
|
||||
file = "config/xaerominimap-common.txt"
|
||||
hash = "b410746ddef0f7dd5f1d860ef3fcd6ad29c10988abbf6281181cb9c3acb628ca"
|
||||
|
|
@ -586,7 +702,7 @@ hash = "7c6a08f18a84545a73ffa3afc52c4f7118742ac13ea0c3df2adc523c42388736"
|
|||
|
||||
[[files]]
|
||||
file = "config/xaerominimap_entities.json"
|
||||
hash = "a656042c8986e1dc97e800ca1d5e7adb55b91937353fc5a730a26f62c7d4df8c"
|
||||
hash = "dcfaa6d806416c3a2dd8a1b69d1fa1aebd5d590635e745880ee927271d7248df"
|
||||
|
||||
[[files]]
|
||||
file = "config/xaeropatreon.txt"
|
||||
|
|
@ -604,6 +720,10 @@ hash = "6cae8c6c64eeebf4dd15076b8f172a440bf1ece460aef63d3abe206e2d45fe8f"
|
|||
file = "config/yacl.json5"
|
||||
hash = "121b93764159be6fb7dab523b29a844e2bb78400ce8c48f52135a097e9b0006e"
|
||||
|
||||
[[files]]
|
||||
file = "config/yigd.json"
|
||||
hash = "8472a3bd56e33cc0c0d96c22477c754438c142560bfaf94778d956fd87027f6b"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/ali/ali_common.json"
|
||||
hash = "266212cdb34ba278f92d1bc3f867c87d06775f5299b543175ed768b48ebe09d4"
|
||||
|
|
@ -988,6 +1108,10 @@ hash = "3648836f76557db94ea0765e9ad8fa6b1ba6fa987168894cd350e2f17e968ffe"
|
|||
file = "config/yosbr/shaderpacks/ComplementaryReimagined_r5.6.1.zip.txt"
|
||||
hash = "13698a7e373a11bdb61ef72815daa4e0a22f834e9bf464ec7e466e357ba62ffb"
|
||||
|
||||
[[files]]
|
||||
file = "config/zoomify.json"
|
||||
hash = "60a78fe1b271ce9b53e295235eb5a7cdb3a8692ca583fdaa7f5bc09f9049e2f4"
|
||||
|
||||
[[files]]
|
||||
file = "mods/accessories.pw.toml"
|
||||
hash = "97befad2275e44c557794fbd321b154510279ce7906426607288062e096df86d"
|
||||
|
|
@ -1008,6 +1132,16 @@ file = "mods/ambient-environment.pw.toml"
|
|||
hash = "9d0fa5bcf0c786acd008d55bd6573d3a38fbe9261b641ab84f36f02183cdb235"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ambientsounds.pw.toml"
|
||||
hash = "3fab60aca0fee9153c49b40e1b06b1deebb23800dce7b8b8f471e23f43f3efe5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/another-furniture.pw.toml"
|
||||
hash = "60cd797dfe0cc7a6be4762120a05eed6e7068111b267e4da5993ef2229ce74dc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "17fc9c6cab5ae0ea6973440f143ad6ffa4e5d373749c80077b631dbbe4df3f3b"
|
||||
|
|
@ -1043,11 +1177,26 @@ file = "mods/better-third-person.pw.toml"
|
|||
hash = "dd18db1413980ef467ac2e86c7e5f3cef26d366119f43121204a442583e7c0bd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bobby.pw.toml"
|
||||
hash = "8bc168948c5f92a10252f12ad4f41caeefbe508f0326fc4185217d60c4cb2292"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bookshelf-lib.pw.toml"
|
||||
hash = "5f32244bbf7f4864d6570bde7f7223655f52d5df455e7b9fe650b10dee42f830"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/c2me-fabric.pw.toml"
|
||||
hash = "941c3f358ef74f4fc99727e550106b8905d77cb4971321fd8ca4406e33b704a6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cardinal-components-api.pw.toml"
|
||||
hash = "0c345c80310a4bd58c757e43d6060338a85d34eaffcb674a6e9cbf22ecbc9cb8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chat-heads.pw.toml"
|
||||
hash = "2dda36229536c02155b8bdc705598904b74b3e958e56bf7946785f59c3427a9b"
|
||||
|
|
@ -1078,11 +1227,26 @@ file = "mods/cobblemon-mega-showdown.pw.toml"
|
|||
hash = "41dc43f228ab5996e532233380548421ae9ecdbe750e3257f40a5552f92619e8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cobblemon-myths-and-legends-sidemod.pw.toml"
|
||||
hash = "dcddd73570fb0fdf95b42ed571983ad923612309c723e030b0875ea003fab8f1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cobblemon.pw.toml"
|
||||
hash = "d0d21c8cd26fc4ddcdd03893e4b7ad5e1d1a4701a272f002f2932f9686770a6e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cobbreeding.pw.toml"
|
||||
hash = "04c247ff830d3df40c658262eff0e40a3e7b5f64ca0c8a5e5cbce34da352bf37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/comforts.pw.toml"
|
||||
hash = "55176d940577a671525a837cb9db04380a0d3339f2b93314d5df9001653347f9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/crafting-tweaks.pw.toml"
|
||||
hash = "25c69b6d03bd0cd0ad66a6b44af07dbe748bf008300abbde356b7775259b590f"
|
||||
|
|
@ -1093,11 +1257,31 @@ file = "mods/craftpresence.pw.toml"
|
|||
hash = "01e094e3599564ea056dc71f42cc10854609a5ffbb3f83415225a3bdcbf8680e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/crate-delight.pw.toml"
|
||||
hash = "8b2987cd310d39c76c1c9a53b68f40e5b0f4d67cb80544fd7cc752ee4293b0aa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/creativecore.pw.toml"
|
||||
hash = "31535a06bf76553e83bd982eb3df9158b815cb7d0207a3fc719758d020d683b7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dripsounds.pw.toml"
|
||||
hash = "8cd1bcb8bd326f6a659d28ca8c0795febc84fbc79eec8ef2b85ee15344f30302"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamiccrosshair.pw.toml"
|
||||
hash = "e16d6a33648db866dedba7b9f76698025fb5ae4942bb0ea0ed5761135ed0cb99"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/easy-magic.pw.toml"
|
||||
hash = "e7a682a577780a52963a998f6941c13cbd75455a65368e9b665c56efca37cbb6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi-enchanting.pw.toml"
|
||||
hash = "1f9cd4e83ced98ba9f8ccff164ce108990e1e8f8f8205b6c549f7db26f1d8c11"
|
||||
|
|
@ -1143,6 +1327,11 @@ file = "mods/entitytexturefeatures.pw.toml"
|
|||
hash = "1824d1cc8f4f82a88972b9220dc6806c05968d651fb38f6bfe69e4d8215fc0ed"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/exposure.pw.toml"
|
||||
hash = "2b5f19e8d0dde0e603b4df323970429589147eef5d3658ce9f63d4a4d2ace93c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "446f8047ee9168b65fe9d4600f82cb915c7aa0d0f049a344177ba340a5b93a8a"
|
||||
|
|
@ -1163,11 +1352,21 @@ file = "mods/fancymenu.pw.toml"
|
|||
hash = "1157104e93eab88b9d3c864fe5efea64497c6c4d5614aaa370a96e94a850014b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/farmers-delight-refabricated.pw.toml"
|
||||
hash = "debc633d962665af2873b7e4c74a5bd8da18d6a883971e73b9039f9612f457b7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ferrite-core.pw.toml"
|
||||
hash = "9fb4d588bd578e2f16a9605ff6303872130b36ccb0fdfff98bd7274da94f91b9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/forge-config-api-port.pw.toml"
|
||||
hash = "238b3ceb4214a682480ce00eefae5d34efa299ff6ff667e4b2f2ed503c6e76ee"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iceberg.pw.toml"
|
||||
hash = "8cb1da4da5375889e24a5e99882fd6f48121e0eb9f028227c84e4375aaf76381"
|
||||
|
|
@ -1273,6 +1472,16 @@ file = "mods/monsters-in-the-closet.pw.toml"
|
|||
hash = "0220080e63da514cdfd5ff73355572eba1ebb0202951e12f95740ce413912fb2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moonlight.pw.toml"
|
||||
hash = "f77a1de001da650d5745acd2b410d6729bf61282d91cf3e8883e891f9707f85a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/more-delight.pw.toml"
|
||||
hash = "f1a7bff7a5ed9e9f88a02786b33737a99852a5e4f5e6c05b6269a63daf9f1e72"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/netherportalfix.pw.toml"
|
||||
hash = "537bdd1937193d94cf47f2232e2b38357415e5af8c950d97661b3ae881adbb4e"
|
||||
|
|
@ -1303,6 +1512,11 @@ file = "mods/particular.pw.toml"
|
|||
hash = "9bceeadea46405d869a5b781efb109ac9fd7b4455c9c536092ccc93a135bad96"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ping-wheel.pw.toml"
|
||||
hash = "f1746f7abc78b5a149212d295b903cfc232477b1abd9e2050e5d4af3acc530b5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/placeholder-api.pw.toml"
|
||||
hash = "2e2c1b47b513663871e71c89a699c66ac9fcc97633f007ed064ce4410f220f5a"
|
||||
|
|
@ -1318,16 +1532,46 @@ file = "mods/prickle.pw.toml"
|
|||
hash = "122659d423e8fe5c47b4121bf382e5ceea0ea2c644cd0a08d577cf58ef55d495"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/puzzles-lib.pw.toml"
|
||||
hash = "44a6662d6ac604b2173a8bc426a10c0d621c8ba99d37d1b72525c140c42cb358"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/reeses-sodium-options.pw.toml"
|
||||
hash = "55a727cabdd9d6e84fb0232b49d0dfa207751002e7f1f63b959baa35e2f29868"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/scalablelux.pw.toml"
|
||||
hash = "ceb180c764fa9c7c12c7e750cc7b726171277cb2b68e47370888c4ff4679a4ed"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/servercore.pw.toml"
|
||||
hash = "509a129f843e72b23f7269fb940bbd757a78716d6f2350f33ebe751c40bb77f8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/shulkerboxtooltip.pw.toml"
|
||||
hash = "c8bda7e40ba3e14e7e78d1c1f80be842eb6d0acd21fca7b2e6a962bc810b9e46"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "272b27d64cd27b909567437683287909b35de9f78db27214efb1d5e4334f9f82"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simpletms-tms-and-trs-for-cobblemon.pw.toml"
|
||||
hash = "b7518f4aa0c5028b2849d94d0d7599979e1828ceff685b09d1e39cc2763954be"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/smarter-farmers-farmers-replant.pw.toml"
|
||||
hash = "17058653782f00f2ef41bf069374ad368007726722ef8bf72aaa304836627b9d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.pw.toml"
|
||||
hash = "1af09f16a643df0f61f2c799e981aa0b8c109999f0784584a6eff9a81f1c00c1"
|
||||
|
|
@ -1358,11 +1602,21 @@ file = "mods/sodiumleafculling.pw.toml"
|
|||
hash = "0a6179657082b15117e18fbc80fd60538dc91024a63006e843cb5dbf1991bcbe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sound-physics-remastered.pw.toml"
|
||||
hash = "4ea85fa7d750bf5a167fe9652f2ac896d12ab068dacb8b04539e316ba5b74042"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/stendhal.pw.toml"
|
||||
hash = "8cd4c8bc9d0b3a0059f870c04b0fa273c32812c34e56340d3fa66c5b79cc965e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/storage-delight.pw.toml"
|
||||
hash = "570a995d2e20eed34c5b708f09b4b02fea827054a32df7bb55257719b8cc849e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/swingthrough.pw.toml"
|
||||
hash = "2f05b23513f7682101e2ab609964833f1b4e8557a3c9b272f7c51d9dfa7ad254"
|
||||
|
|
@ -1378,11 +1632,21 @@ file = "mods/tooltipfix.pw.toml"
|
|||
hash = "ee103bf45111c2cd7ea2d9b31087867dd4b0d07a4b7dad7b138a4ae506127b37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/travelersbackpack.pw.toml"
|
||||
hash = "fb543e76311a6ae078aa9e5b56c93c2a3b3fba34900809d024c61900db3acf2e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/unilib.pw.toml"
|
||||
hash = "19faff688fb5bdd5e0151876da94b1ceb98aedaf411574f494497cef06f7fed9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/visual-workbench.pw.toml"
|
||||
hash = "37c8746fe9057612cd4f21e1221760e8dd2f78ce6b38a237b0ac925de21541e0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/visuality.pw.toml"
|
||||
hash = "39426bfeeab22ea17f94fd3904dd9b78f9a3c9b4ddcb732b734ddbfd0e3568af"
|
||||
|
|
@ -1398,6 +1662,11 @@ file = "mods/waystones.pw.toml"
|
|||
hash = "a6fa6d762556487f3ec34b332bbf3e6ad3758d1ecd046026f1a3dfd6f48d17d7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-maps-x-waystones.pw.toml"
|
||||
hash = "8329778c3e0b5ea85553ad96e8a6ba158a54be83c87dfb7e5eadd264895ba92f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-minimap.pw.toml"
|
||||
hash = "8f391603f2b1aaf63717c180e82635b7cd2d57617c02edac60f9d25244731df1"
|
||||
|
|
@ -1423,9 +1692,14 @@ file = "mods/yosbr.pw.toml"
|
|||
hash = "649c259a4777ba1b544b69d04a79f2b1b0e1a3c520033cc86a3c14d5fa53564a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/zoomify.pw.toml"
|
||||
hash = "fb09f6357ae2e3dcfea36520efde6e9b761efffc63b4dfdec5e4b11011bac58c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "options.txt"
|
||||
hash = "d07f33e1aa5ea8e1578c2e057333a28d483f571c23d2141824e7969ec40d8765"
|
||||
hash = "a8365c939e6ae9977fafcd3cbe6365fb10706e46ab022ca32081371080a5470e"
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/better-leaves.pw.toml"
|
||||
|
|
|
|||
13
mods/ambientsounds.pw.toml
Normal file
13
mods/ambientsounds.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "AmbientSounds"
|
||||
filename = "AmbientSounds_FABRIC_v6.3.1_mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fM515JnW/versions/ybXRUW4r/AmbientSounds_FABRIC_v6.3.1_mc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "11cc959f768506329c8938e95f4a0086c4a00cff82852e09c72f60d0938a91beba53499ec4c1cf11abc07f8b853bcb4ff8f87268b67b274fc6972f9abf9a0b92"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fM515JnW"
|
||||
version = "ybXRUW4r"
|
||||
13
mods/another-furniture.pw.toml
Normal file
13
mods/another-furniture.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Another Furniture"
|
||||
filename = "another_furniture-fabric-4.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ulloLmqG/versions/y4yMDiD3/another_furniture-fabric-4.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e525135d24143fb0185c25360c26ebaebeccb3cfabb97b1e125e3c7fc3ebb50db3629739db6a07f7b42808bfdb7b85103f86fe613f4c2fbb6937ed225d9e40f3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ulloLmqG"
|
||||
version = "y4yMDiD3"
|
||||
13
mods/bobby.pw.toml
Normal file
13
mods/bobby.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Bobby"
|
||||
filename = "bobby-5.2.4+mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M08ruV16/versions/oeSOphtG/bobby-5.2.4%2Bmc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "414436bf14ee9ad76ff2f849ffb5a2acda122a7588231d14dfbd27253924d08c22368c73ebd4b0048209d14682579be58743993265daaface4fdec6ec8e6e7ee"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M08ruV16"
|
||||
version = "oeSOphtG"
|
||||
13
mods/c2me-fabric.pw.toml
Normal file
13
mods/c2me-fabric.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.21.1-0.3.0+alpha.0.362.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/DSqOVCaF/c2me-fabric-mc1.21.1-0.3.0%2Balpha.0.362.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8653a751eb2ad1ad70da38017ccad0ee2bda5448ffe405d28049f09a61936765303f63ba4fcff798f32bb1e6b4645e892c275515b69c98c1730e24caab0ba7e0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VSNURh3q"
|
||||
version = "DSqOVCaF"
|
||||
13
mods/cardinal-components-api.pw.toml
Normal file
13
mods/cardinal-components-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Cardinal Components API"
|
||||
filename = "cardinal-components-api-6.1.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/nLsCe2VD/cardinal-components-api-6.1.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "db52fc8c4f14dda723b69eec5a52a693fcb1db72e97114cb530ac8a306d95c13a4234ea54bc6e632134038cb05ba551b5240b9187562fb775a4c7bacb681eff1"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "K01OU20C"
|
||||
version = "nLsCe2VD"
|
||||
13
mods/cobblemon-myths-and-legends-sidemod.pw.toml
Normal file
13
mods/cobblemon-myths-and-legends-sidemod.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Myths and Legends [Cobblemon Sidemod]"
|
||||
filename = "MythsAndLegends-fabric-1.9.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/CaOWby9K/versions/eg83qtSQ/MythsAndLegends-fabric-1.9.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0203aa357f430a567c2afb861774db4f815342f567a85714efbd16b8abb2ec8f98ca5c8d92cb3371f41bbf1e682cd560f68e1edebe316ff503a608ef8fdc379c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "CaOWby9K"
|
||||
version = "eg83qtSQ"
|
||||
13
mods/cobbreeding.pw.toml
Normal file
13
mods/cobbreeding.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Cobbreeding"
|
||||
filename = "Cobbreeding-fabric-2.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ItmVb4zY/versions/txiMM5yA/Cobbreeding-fabric-2.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "10dcac2cc364ff723659d0893da72b69a5dc1c0e1437cd6d79309b7021ef989546d81cc38fd224e3511fb483d96070178a635868cbfe807995360741a1110ff2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ItmVb4zY"
|
||||
version = "txiMM5yA"
|
||||
13
mods/comforts.pw.toml
Normal file
13
mods/comforts.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Comforts"
|
||||
filename = "comforts-fabric-9.0.4+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/SaCpeal4/versions/lsjaY4WO/comforts-fabric-9.0.4%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "095d6f795722408fe8e6a7eef7bc27f0c52fd445ab33fe85e210f434eabe2b094140004a6be127e5e01abe7b0af66be0cd27e54000c91ce7a30b9c780771e898"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "SaCpeal4"
|
||||
version = "lsjaY4WO"
|
||||
13
mods/crate-delight.pw.toml
Normal file
13
mods/crate-delight.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Crate Delight"
|
||||
filename = "cratedelight-25.09.22-1.21-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9rlXSyLg/versions/elNrtwZk/cratedelight-25.09.22-1.21-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "135bbf3a66b7e93e4788c9c1613dd6c82b3a4a0ce431f1ece5bd24cca07b80b6db0a90ac8c71c7ff46423bcb204ff31057849d78d2129f874d17389b886315ea"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9rlXSyLg"
|
||||
version = "elNrtwZk"
|
||||
13
mods/creativecore.pw.toml
Normal file
13
mods/creativecore.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "CreativeCore"
|
||||
filename = "CreativeCore_FABRIC_v2.13.14_mc1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/IAULUUTE/CreativeCore_FABRIC_v2.13.14_mc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "426ebfbd485d209af62fbebb49119b3e807a0b45a0f9cfe7c815012c169a63ce6b8b0cec62b6c55981514e0f0f97b80a51cbd05d3cb84bf3f97e5fc87499025f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OsZiaDHq"
|
||||
version = "IAULUUTE"
|
||||
13
mods/dripsounds.pw.toml
Normal file
13
mods/dripsounds.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Drip Sounds"
|
||||
filename = "Drip Sounds-0.5.2+1.21.8-Fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/T8MMXTpr/versions/IHe5nXPW/Drip%20Sounds-0.5.2%2B1.21.8-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4e042882bc94adcfe0187708121ae30a7049fe7d690669e07538a215798ec90cd2610bbac3a022dbc62a643212d075f28a3a71ad97684834b8a79b87adbe5a60"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "T8MMXTpr"
|
||||
version = "IHe5nXPW"
|
||||
13
mods/easy-magic.pw.toml
Normal file
13
mods/easy-magic.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Easy Magic"
|
||||
filename = "EasyMagic-v21.1.4-1.21.1-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9hx3AbJM/versions/LLLfoeWJ/EasyMagic-v21.1.4-1.21.1-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "46927747f1867a152cb291bd76a8e013cf1cd0821663614f9d737c704743fe4c356aff6fb7cbcc3e8c425d964678631fab8afdd2b26cda5f577b6a3cc9160a5a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9hx3AbJM"
|
||||
version = "LLLfoeWJ"
|
||||
13
mods/exposure.pw.toml
Normal file
13
mods/exposure.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Exposure"
|
||||
filename = "exposure-fabric-1.21.1-1.9.11.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/hB899VmG/versions/oqPcl2Kd/exposure-fabric-1.21.1-1.9.11.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "25b380b7be3c883c681dad84bba3b2dbf1ee8f3bc7a138824fc029c4eebf44ef0a608546fb6d4c66c38c02a676aa319f8661b19da1fc3428e0ce9ae386a76066"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "hB899VmG"
|
||||
version = "oqPcl2Kd"
|
||||
13
mods/farmers-delight-refabricated.pw.toml
Normal file
13
mods/farmers-delight-refabricated.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Farmer's Delight Refabricated"
|
||||
filename = "FarmersDelight-1.21.1-3.2.2+refabricated.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/7vxePowz/versions/vj4n2BSl/FarmersDelight-1.21.1-3.2.2%2Brefabricated.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5481e22235f6ace7b369eb7bcbeb5d0b31b32030cd5a8e33113f2eba016d22de864ed671e42789cc42071e045336a473df90fdbf4c417575405f8f7bc280d4cc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "7vxePowz"
|
||||
version = "vj4n2BSl"
|
||||
13
mods/forge-config-api-port.pw.toml
Normal file
13
mods/forge-config-api-port.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Forge Config API Port"
|
||||
filename = "ForgeConfigAPIPort-v21.1.6-1.21.1-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/N5qzq0XV/ForgeConfigAPIPort-v21.1.6-1.21.1-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "cd9296e78ba969f7aed6e3692aa25eb61c102c79c55ca5f9592576bacaa26feab5d5d48fa30cf07ca852e0f1d42afc4d4558feff69a67b225183d2bc15898cf9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ohNO6lps"
|
||||
version = "N5qzq0XV"
|
||||
13
mods/moonlight.pw.toml
Normal file
13
mods/moonlight.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Moonlight Lib"
|
||||
filename = "moonlight-1.21-2.26.8-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/twkfQtEc/versions/5S8O9kOP/moonlight-1.21-2.26.8-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1045b0c6a8daeb3ea3efb8b9c3b9b13ddb20ed35835a2f0c9d6c14fc0b4121b25d6352724a4657429fe3b8ed3d8fa9e28ab86131a30b2f668ffa50506ca08b99"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "twkfQtEc"
|
||||
version = "5S8O9kOP"
|
||||
13
mods/more-delight.pw.toml
Normal file
13
mods/more-delight.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "More Delight (for Farmer's Delight)"
|
||||
filename = "moredelight-25.07.28-1.21-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/znHQQtuU/versions/t4YUvHQh/moredelight-25.07.28-1.21-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "79b5124e7e3149ce63c9cbeece5c36b1252f0571f85b49dc08d3c4fc5f1abd04baa402a74bbf6011a08b870862b7e317de747be5b362d31f1c7afb925b6ca836"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "znHQQtuU"
|
||||
version = "t4YUvHQh"
|
||||
13
mods/ping-wheel.pw.toml
Normal file
13
mods/ping-wheel.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Ping Wheel"
|
||||
filename = "Ping-Wheel-1.12.0-fabric-1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/QQXAdCzh/versions/ZhtUjte3/Ping-Wheel-1.12.0-fabric-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "060e45b3f1761fa47ebd3093a5261ae925079547fed25c6830d97e95c91a4d77e7f32f53a458bb26f3ea8cc917f764dee7cf4cef4c5a529e9cd97257a86409c7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "QQXAdCzh"
|
||||
version = "ZhtUjte3"
|
||||
13
mods/puzzles-lib.pw.toml
Normal file
13
mods/puzzles-lib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Puzzles Lib"
|
||||
filename = "PuzzlesLib-v21.1.39-1.21.1-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/QAGBst4M/versions/L007zH3l/PuzzlesLib-v21.1.39-1.21.1-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2c5bc1f0bc1b2d6edfc66660d33495a76e4268f75ec02c6fe81f3d7f633a8873695f841c0fdb4e828a5b9d0da428d38d37d084da8ab149909f9a36b160492eb1"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "QAGBst4M"
|
||||
version = "L007zH3l"
|
||||
13
mods/scalablelux.pw.toml
Normal file
13
mods/scalablelux.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "ScalableLux"
|
||||
filename = "ScalableLux-0.1.0.1+fabric.d0d58ab-all.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ps1zyz6x/versions/Yx1tgJMI/ScalableLux-0.1.0.1%2Bfabric.d0d58ab-all.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "bbfe02184c3bf3b0da28175574a5a236ce7c9acc00069addd69770857f2ac572924893f3eb033bbbc965afa9779c7a7f8fc54168f9e90481a40de92f6ee3645f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ps1zyz6x"
|
||||
version = "Yx1tgJMI"
|
||||
13
mods/servercore.pw.toml
Normal file
13
mods/servercore.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "ServerCore"
|
||||
filename = "servercore-fabric-1.5.10+1.21.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/FDzBkBBD/servercore-fabric-1.5.10%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "dac68103d1ab69adeecdff220d391b4b5d9a826db1b94a8c5372fec8d5e6c41eb37ebc96b8361be84df5c3499a1b0e4d2a657d60df553b47dde133100666268d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4WWQxlQP"
|
||||
version = "FDzBkBBD"
|
||||
13
mods/simple-voice-chat.pw.toml
Normal file
13
mods/simple-voice-chat.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-fabric-1.21.1-2.6.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/DqM4TqJA/voicechat-fabric-1.21.1-2.6.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9fdfb5c2e3862aea1ac391dc1be6e30b2fef0d80fed5f0ad29097ec129f0e3329b71c10db70f915011398a4facca56f028eb3860aeca471839e3c7e3b53be172"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "DqM4TqJA"
|
||||
13
mods/simpletms-tms-and-trs-for-cobblemon.pw.toml
Normal file
13
mods/simpletms-tms-and-trs-for-cobblemon.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "SimpleTMs: TMs and TRs for Cobblemon"
|
||||
filename = "SimpleTMs-fabric-2.2.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yFqR0DNc/versions/HIU7GC0H/SimpleTMs-fabric-2.2.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ac6ddf73223364aa0595ddac6e6178eb9ff5a7f83f11661003a4c249d3c55b80468d9a87e54c939488a8e9c7e6a5fef7a6be5805c63f96638736027d6dd945a3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yFqR0DNc"
|
||||
version = "HIU7GC0H"
|
||||
13
mods/smarter-farmers-farmers-replant.pw.toml
Normal file
13
mods/smarter-farmers-farmers-replant.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Smarter Farmers (farmers replant)"
|
||||
filename = "smarterfarmers-1.21-2.2.4-fabric.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Bh6ZOMvp/versions/bsYbob1i/smarterfarmers-1.21-2.2.4-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b9b8bb07f010b00e58bdf431c0ef259598e9af54cab8dc9a45387816d457a7591244e6f6582e8f3e8137187f252f6238334010e04fc621e1a146a159b2ac8bd2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Bh6ZOMvp"
|
||||
version = "bsYbob1i"
|
||||
13
mods/sound-physics-remastered.pw.toml
Normal file
13
mods/sound-physics-remastered.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Sound Physics Remastered"
|
||||
filename = "sound-physics-remastered-fabric-1.21.1-1.5.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/tVu2EZ4u/sound-physics-remastered-fabric-1.21.1-1.5.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "72c69678b6afc5ec48027f6e40f7421370dffa1483e23767e0b5f1b36581be652308b33864848e186845df9052f512b79698c69242adb297058cdc3357b64d60"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qyVF9oeo"
|
||||
version = "tVu2EZ4u"
|
||||
13
mods/storage-delight.pw.toml
Normal file
13
mods/storage-delight.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Storage Delight"
|
||||
filename = "storagedelight-25.06.24-1.21-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LTTvOp5L/versions/SIJ9zqcb/storagedelight-25.06.24-1.21-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3246a5fb261cf95947d3f1340f0bd47a6bfe0c164604b112775882f1c8afb3b5654f20ceb55e48498eb84e5ca2c7fc48619f2da594d7479263d014c2144b5d44"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LTTvOp5L"
|
||||
version = "SIJ9zqcb"
|
||||
13
mods/travelersbackpack.pw.toml
Normal file
13
mods/travelersbackpack.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Traveler's Backpack"
|
||||
filename = "travelersbackpack-fabric-1.21.1-10.1.29.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/rlloIFEV/versions/NykLNihR/travelersbackpack-fabric-1.21.1-10.1.29.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4cddb134ed76078ed54e75b5ada94249916c01d3f45b93967bd0e1d15dc8fa9a0623e795251ac3f7633482ef2c96fa82cd83a41aaff5181c5527568ee3b03e1d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "rlloIFEV"
|
||||
version = "NykLNihR"
|
||||
13
mods/visual-workbench.pw.toml
Normal file
13
mods/visual-workbench.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Visual Workbench"
|
||||
filename = "VisualWorkbench-v21.1.1-1.21.1-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kfqD1JRw/versions/fGXmFJ8q/VisualWorkbench-v21.1.1-1.21.1-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2cad5e792a1b27de446c64c994a1cd32511c1dc28640e13677e633cf021327520997d67ca3876732f429842d346aae792d8a7cea33cdff1debcfb81a51eed280"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kfqD1JRw"
|
||||
version = "fGXmFJ8q"
|
||||
13
mods/xaeros-maps-x-waystones.pw.toml
Normal file
13
mods/xaeros-maps-x-waystones.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Xaero's Maps x Waystones"
|
||||
filename = "xaeromaps_waystones-1.0.6+1.21.x-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/iv2jCzkP/versions/2ANnN1tX/xaeromaps_waystones-1.0.6%2B1.21.x-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "35aa82a2800c2635af7477bc61ad472f2ead846cf309e0b7a01048c49242b82a77c4d7909b9a4fe44bb357f922967f530f3daeb91c1b9daff516eec4037dc90b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "iv2jCzkP"
|
||||
version = "2ANnN1tX"
|
||||
13
mods/zoomify.pw.toml
Normal file
13
mods/zoomify.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Zoomify"
|
||||
filename = "Zoomify-2.14.6+1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/4IZeSKNU/Zoomify-2.14.6%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ced6eac462c2dc33565d77bbf5b198860ce8afcb19a3e2b81d5548f35097fdaf1f4034fa1913eb6086baff70be00d27b62980784239c704346d36f14a0532b8f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "w7ThoJFB"
|
||||
version = "4IZeSKNU"
|
||||
22
options.txt
22
options.txt
|
|
@ -48,7 +48,7 @@ mouseSensitivity:0.21830985915492956
|
|||
damageTiltStrength:1.0
|
||||
highContrast:false
|
||||
narratorHotkey:true
|
||||
resourcePacks:["vanilla","fabric","cobblemon:gyaradosjump","cobblemon:regionbiasforms","openloader//home/wizardlink/.local/share/PrismLauncher/instances/Cobblemon Official Modpack [Fabric]/minecraft/config/openloader/resources/Cobblemon-Tips-2.0.zip","file/E19 Cobblemon Minimap Icons.zip"]
|
||||
resourcePacks:["vanilla","fabric","cobblemon:gyaradosjump","cobblemon:regionbiasforms","file/E19 Cobblemon Minimap Icons.zip","cobbreeding:pasturefix"]
|
||||
incompatibleResourcePacks:["ali","ambientenvironment","appleskin","balm","betteradvancements","bookshelf","cherishedworlds","craftingtweaks","emiprofessions","enchdesc","entity_model_features","entity_texture_features","fancymenu","jei","konkrete","netherportalfix","particlerain","sodiumextras","sodiumleafculling","sodiumoptionsapi","tipsmod","xaerominimap","xaeroworldmap","yet_another_config_lib_v3"]
|
||||
lastServer:
|
||||
lang:en_us
|
||||
|
|
@ -143,6 +143,7 @@ key_key.craftingtweaks.decompress_all:key.keyboard.unknown
|
|||
key_key.craftingtweaks.refill_last_stack:key.keyboard.tab
|
||||
key_key.craftingtweaks.transfer_stack:key.keyboard.unknown
|
||||
key_key.entityculling.toggle:key.keyboard.unknown
|
||||
key_key.exposure.camera_controls:key.keyboard.unknown
|
||||
key_keybind.invmove.toggleMove:key.keyboard.unknown
|
||||
key_key.jade.config:key.keyboard.keypad.0
|
||||
key_key.jade.show_overlay:key.keyboard.keypad.1
|
||||
|
|
@ -183,8 +184,25 @@ key_key.jei.nextCategory:key.keyboard.page.down
|
|||
key_key.jei.closeRecipeGui:key.keyboard.escape
|
||||
key_key.jei.copy.recipe.id:key.keyboard.unknown
|
||||
key_key.modmenu.open_menu:key.keyboard.unknown
|
||||
key_key.pingwheel.ping_location:key.mouse.4
|
||||
key_key.pingwheel.open_settings:key.keyboard.unknown
|
||||
key_key.presencefootsteps.settings:key.keyboard.f10
|
||||
key_key.presencefootsteps.toggle:key.keyboard.unknown
|
||||
key_key.travelersbackpack.inventory:key.mouse.5
|
||||
key_key.travelersbackpack.sort:key.keyboard.unknown
|
||||
key_key.travelersbackpack.ability:key.keyboard.unknown
|
||||
key_key.travelersbackpack.cycle_tool:key.keyboard.z
|
||||
key_key.travelersbackpack.toggle_tank:key.keyboard.n
|
||||
key_key.push_to_talk:key.keyboard.unknown
|
||||
key_key.whisper:key.keyboard.unknown
|
||||
key_key.mute_microphone:key.keyboard.comma
|
||||
key_key.disable_voice_chat:key.keyboard.period
|
||||
key_key.hide_icons:key.keyboard.h
|
||||
key_key.voice_chat:key.keyboard.v
|
||||
key_key.voice_chat_settings:key.keyboard.unknown
|
||||
key_key.voice_chat_group:key.keyboard.g
|
||||
key_key.voice_chat_toggle_recording:key.keyboard.unknown
|
||||
key_key.voice_chat_adjust_volumes:key.keyboard.unknown
|
||||
key_gui.xaero_minimap_settings:key.keyboard.y
|
||||
key_gui.xaero_zoom_in:key.keyboard.unknown
|
||||
key_gui.xaero_zoom_out:key.keyboard.unknown
|
||||
|
|
@ -213,6 +231,8 @@ key_gui.xaero_map_zoom_in:key.keyboard.unknown
|
|||
key_gui.xaero_map_zoom_out:key.keyboard.unknown
|
||||
key_gui.xaero_quick_confirm:key.keyboard.right.shift
|
||||
key_gui.xaero_toggle_dimension:key.keyboard.unknown
|
||||
key_zoomify.key.zoom:key.keyboard.c
|
||||
key_zoomify.key.zoom.secondary:key.keyboard.f6
|
||||
key_iris.keybind.reload:key.keyboard.unknown
|
||||
key_iris.keybind.toggleShaders:key.keyboard.unknown
|
||||
key_iris.keybind.shaderPackSelection:key.keyboard.unknown
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
name = "Hydractify's Cobblemon Campaign"
|
||||
author = "wizardlink"
|
||||
version = "1.1.1"
|
||||
version = "1.3.0"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "af62588eec543a95b55b44c9bbda880895b68c2d8a25b972591ca7c6016592a4"
|
||||
hash = "758450fb5b8a3ac59b0b70ed2cf77213b99ea78b3cba6711073c3632401a4531"
|
||||
|
||||
[versions]
|
||||
fabric = "0.18.0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue