This commit is contained in:
anonoe 2026-01-06 23:13:05 +01:00
commit 22b43cb9b2
115 changed files with 1377 additions and 0 deletions

View file

@ -0,0 +1,4 @@
hackOnlineMode = true
hackEarlySend = false
hackMessageChain = false
secret = "PUT SOMETHING HERE"

View file

@ -0,0 +1,5 @@
{
"showNCRButton": false,
"showReloadButton": false,
"verifiedIconEnabled": false
}

View file

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

View file

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

View file

@ -0,0 +1,45 @@
# The URL of the Filebin service that the mod should use
filebin_url=https://filebin.net/
# The maximum allowed size of an uploaded file in bytes
max_upload_size=20000000
# The cooldown of goat horns with custom audio in ticks
goat_horn_cooldown=140
# The range of music discs with custom audio in blocks
music_disc_range=65.0
# The range of note blocks with custom audio in blocks
note_block_range=16.0
# The range of goat horns with custom audio in blocks
goat_horn_range=256.0
# The maximum allowed range of a music disc with custom audio in blocks
max_music_disc_range=256.0
# The maximum allowed range of a note block with custom audio in blocks
max_note_block_range=256.0
# The maximum allowed range of a goat horn with custom audio in blocks
max_goat_horn_range=512.0
# Whether users should be able to upload .wav files
# Note that .wav files are not compressed and can be very large
# Playing .wav files may result in more RAM usage
allow_wav_upload=true
# Whether users should be able to upload .mp3 files
# Note that .mp3 files require Simple Voice Chats mp3 decoder
# Playing .mp3 files can be slightly more CPU intensive
allow_mp3_upload=true
# The maximum allowed duration of a custom music disc in seconds
max_music_disc_duration=600
# The maximum allowed duration of a note block with custom audio in seconds
max_note_block_duration=300
# The maximum allowed duration of a custom goat horn in seconds
max_goat_horn_duration=20
# The maximum amount of audio files that are cached in memory
# Setting this to 0 will disable the cache
# A higher value will result in less disk reads, but more RAM usage
cache_size=16
# Static audio does not have directionality or falloff (volume does not decrease with distance)
# The /audioplayer setstatic [enabled] command can be used when this is set to true
# If this config option is disabled, static audio is completely disabled and will play as if the option wouldn't be set
allow_static_audio=true
# If the mod should run a webserver for uploads
# You can configure the webserver in the webserver.properties config
# The webserver.properties will only be generated if this option is set to true
# NOTE: This option is experimental and subject to change
run_web_server=false

144
config/c2me.toml Normal file
View file

@ -0,0 +1,144 @@
version = 3
# (Default:
# max(
# 1,
# min(
# if( is_windows,
# (cpus / 1.6 - 2),
# (cpus / 1.2 - 2)
# ),
# if( is_j9vm,
# ( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.5 ),
# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 1.2 )
# )
# ) - if(is_client, 2, 0)
# )
# )
# The expression for the default value of global executor parallelism.
# This is used when the parallelism isn't overridden.
# Available variables: is_windows, is_j9vm, is_client, cpus, mem_gb
#
defaultGlobalExecutorParallelismExpression = "max(1,min(if(is_client,(cpus/2.66+1),(cpus/1.5)),if(is_j9vm,((mem_gb-(if(is_client,0.5,0.2)))/0.2),((mem_gb-(if(is_client,0.8,0.5)))/0.2))))"
# (Default: 2) Configures the parallelism of global executor
globalExecutorParallelism = "default"
[noTickViewDistance]
# (Default: true) Whether to use compatibility mode to send chunks
# This may fix some mod compatibility issues
compatibilityMode = "default"
# (Default: 3) No-tick view distance max concurrent chunk loads
# Lower this for a better latency and higher this for a faster loading
maxConcurrentChunkLoads = 2
# (Default: false) Whether to ensure correct chunks within normal render distance
# This will send chunks twice increasing network load
ensureChunkCorrectness = "default"
# (Default: true) Whether to enable no-tick view distance
enabled = "default"
[ioSystem]
# (Default: true) Whether to use async chunk loading & unloading
async = "default"
# (Default: -1) Defines which chunk compression should be used
# -1 for Vanilla default
# 1 for GZip (RFC1952) (Vanilla compatible)
# 2 for Zlib (RFC1950) (Vanilla default) (Vanilla compatible)
# 3 for Uncompressed (Fastest, but higher disk usage) (Vanilla compatible)
#
# Original chunk data will still readable after modifying this option
# as this option only affects newly stored chunks
# Invalid values will fall back to vanilla default
#
chunkStreamVersion = "default"
# (Default: false) EXPERIMENTAL FEATURE
# This replaces the way your chunks are saved.
# Please keep regular backups of your world if you are using this feature,
# and report any world issues you encounter with this feature to our GitHub.
#
# Whether to use the fast reduced allocation chunk serializer
# (may cause incompatibility with other mods)
#
# Set to false for the following reasons:
# Incompatible with architectury@9.2.14 (*) (defined in c2me)
gcFreeChunkSerializer = "default"
# (Default: true) Whether to use the optimized implementation of IO system
replaceImpl = "default"
# (Default: 8192) Soft limit for io worker nbt cache
chunkDataCacheSoftLimit = "default"
# (Default: 32678) Hard limit for io worker nbt cache
chunkDataCacheLimit = "default"
[threadedWorldGen]
# (Default: true) Whether to allow feature generation (world decorations like trees, ores and etc.) run in parallel
# (may cause incompatibility with other mods)
allowThreadedFeatures = "default"
# (Default: true) Whether to allow reducing lock radius
# (may cause incompatibility with other mods)
reduceLockRadius = "default"
# (Default: true) Whether to enable async and parallel scheduling
# This will reduce server thread load
# (may cause incompatibility with other mods)
#
asyncScheduling = "default"
# (Default: false) Whether to enable this feature
enabled = "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"
[generalOptimizations]
# (Default: 100000) The task interval of mid-tick chunk tasks in nanoseconds (-1 to disable)
# Mid-tick chunk tasks is to execute chunk tasks during server tick loop
# to speed up chunk loading and generation
# This helps chunks loading and generating under high MSPT but may raise
# MSPT when chunks are loading or generating
#
# It is generally not recommended to adjust this value unless you know
# what you are doing
#
# Incompatible with Dimensional Threading (dimthread)
#
midTickChunkTasksInterval = "default"
# (Default: true) Whether to let async chunk request no longer block server thread
# (may cause incompatibility with other mods)
optimizeAsyncChunkRequest = "default"
[generalOptimizations.autoSave]
# (Default: ENHANCED) Defines how auto save should be handled
# VANILLA: Use vanilla auto-save behavior (auto-save performed every tick during ticking)
# ENHANCED: Use C2ME enhanced auto-save (auto-save performed when the server have spare time after ticking)
# PERIODIC: Use pre-1.18 vanilla auto-save behavior (auto-save performed every 6000 ticks during ticking)
#
# Please preserve quotes so this config don't break
#
mode = "default"
# (Default: 20000) Defines the delay in milliseconds between performing auto-save for a chunk
# This is only used when mode is set to ENHANCED
#
delay = "default"
[vanillaWorldGenOptimizations]
# (Default: true) Whether to enable aquifer optimizations to accelerate overworld worldgen
# (may cause incompatibility with other mods)
optimizeAquifer = "default"
# (Default: true) Whether to enable End Biome Cache to accelerate The End worldgen
# This is no longer included in lithium-fabric
# (may cause incompatibility with other mods)
#
useEndBiomeCache = "default"

View file

@ -0,0 +1,4 @@
{
"playerGroups": {},
"globalGroupForced": false
}

View file

@ -0,0 +1,37 @@
# The default range for the /instantgroup command if no range was provided
default_instant_group_range=128.0
# The name of the instant group
instant_group_name=Instant Group
# The default permission level of the /instantgroup command
# EVERYONE - Every player can use this command
# OPS - Operators can use this command
# NOONE - The command can't be used by anyone
instant_group_command_permission_level=EVERYONE
# The default permission level of the /persistentgroup command
# EVERYONE - Every player can use this command
# OPS - Operators can use this command
# NOONE - The command can't be used by anyone
persistent_group_command_permission_level=OPS
# The default permission level of the /autojoingroup command
# EVERYONE - Every player can use this command
# OPS - Operators can use this command
# NOONE - The command can't be used by anyone
auto_join_group_command_permission_type=EVERYONE
# The default permission level of the /autojoingroup global command
# EVERYONE - Every player can use this command
# OPS - Operators can use this command
# NOONE - The command can't be used by anyone
auto_join_group_global_command_permission_type=OPS
# The default permission level of the /forcejoingroup command
# EVERYONE - Every player can use this command
# OPS - Operators can use this command
# NOONE - The command can't be used by anyone
force_join_group_command_permission_type=OPS
# Determines if a summary of all groups should be shown when a player joins the server
group_summary=true
# Forces all groups to be of the given type
# OFF - No group type is forced
# NORMAL - All groups are forced to be normal groups
# OPEN - All groups are forced to be open groups
# ISOLATED - All groups are forced to be isolated groups
force_group_type=OFF

View file

@ -0,0 +1,8 @@
[
{
"name": "general",
"type": "OPEN",
"hidden": false,
"id": "9c8f061b-56c7-424c-ba80-a14c71781b5f"
}
]

View file

@ -0,0 +1,22 @@
# Replace the blockstate neighbor table
replaceNeighborLookup = true
# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled
replacePropertyMap = true
# Cache the predicate instances used in multipart models
cacheMultipartPredicates = true
# Avoid creation of new strings when creating ModelResourceLocations
modelResourceLocations = true
# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled
multipartDeduplication = true
# Deduplicate cached data for blockstates, most importantly collision and render shapes
blockstateCacheDeduplication = true
# Deduplicate vertex data of baked quads in the basic model implementations
bakedQuadDeduplication = true
# Use smaller data structures for "simple" models, especially models with few side-specific faces
modelSides = true
# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk!
useSmallThreadingDetector = true
# Use a slightly more compact, but also slightly slower representation for block states
compactFastMap = false
# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly.
populateNeighborTable = false

View file

@ -0,0 +1,92 @@
# This is the configuration file for ModernFix.
# In general, prefer using the config screen to editing this file. It can be accessed
# via the standard mod menu on your respective mod loader. Changes will, however,
# require restarting the game to take effect.
#
# The following options can be enabled or disabled if there is a compatibility issue.
# Add a line with your option name and =true or =false at the bottom of the file to enable
# or disable a rule. For example:
# mixin.perf.dynamic_resources=true
# Do not include the #. You may reset to defaults by deleting this file.
#
# Available options:
# mixin.bugfix.buffer_builder_leak=true # (default)
# mixin.bugfix.chunk_deadlock=false # (overridden for mod compat)
# mixin.bugfix.concurrency=true # (default)
# mixin.bugfix.ender_dragon_leak=true # (default)
# mixin.bugfix.missing_block_entities=false # (default)
# mixin.bugfix.packet_leak=false # (default)
# mixin.bugfix.paper_chunk_patches=false # (overridden for mod compat)
# mixin.bugfix.registry_ops_cme=true # (default)
# mixin.bugfix.restore_old_dragon_movement=false # (default)
# mixin.bugfix.world_leaks=true # (default)
# mixin.bugfix.world_screen_skipped=true # (default)
# mixin.devenv=false # (default)
# mixin.feature.blockentity_incorrect_thread=false # (default)
# mixin.feature.branding=true # (default)
# mixin.feature.cause_lag_by_disabling_threads=false # (default)
# mixin.feature.direct_stack_trace=false # (default)
# mixin.feature.disable_unihex_font=false # (default)
# mixin.feature.integrated_server_watchdog=true # (default)
# mixin.feature.log_stdout_in_log_files=true # (default)
# mixin.feature.mcfunction_profiling=true # (default)
# mixin.feature.measure_time=true # (default)
# mixin.feature.remove_chat_signing=false # (default)
# mixin.feature.remove_telemetry=true # (default)
# mixin.feature.snapshot_easter_egg=true # (default)
# mixin.feature.spam_thread_dump=false # (default)
# mixin.feature.spark_profile_launch=false # (default)
# mixin.feature.spark_profile_world_join=false # (default)
# mixin.feature.stalled_chunk_load_detection=false # (default)
# mixin.feature.suppress_narrator_stacktrace=true # (default)
# mixin.feature.warn_missing_perf_mods=true # (default)
# mixin.launch.class_search_cache=true # (default)
# mixin.perf.blast_search_trees=true # (default)
# mixin.perf.blast_search_trees.force=false # (default)
# mixin.perf.cache_blockstate_cache_arrays=true # (default)
# mixin.perf.cache_model_materials=true # (default)
# mixin.perf.cache_profile_texture_url=true # (default)
# mixin.perf.cache_strongholds=false # (overridden for mod compat)
# mixin.perf.cache_upgraded_structures=true # (default)
# mixin.perf.chunk_meshing=true # (default)
# mixin.perf.clear_fabric_mapping_tables=false # (default)
# mixin.perf.clear_mixin_classinfo=false # (default)
# mixin.perf.compact_bit_storage=true # (default)
# mixin.perf.compact_mojang_registries=true # (default)
# mixin.perf.compress_unihex_font=true # (default)
# mixin.perf.dedicated_reload_executor=true # (default)
# mixin.perf.deduplicate_climate_parameters=false # (default)
# mixin.perf.deduplicate_location=false # (default)
# mixin.perf.deduplicate_wall_shapes=true # (default)
# mixin.perf.dynamic_dfu=true # (default)
# mixin.perf.dynamic_entity_renderers=false # (default)
# mixin.perf.dynamic_resources=false # (default)
# mixin.perf.dynamic_structure_manager=true # (default)
# mixin.perf.faster_command_suggestions=true # (default)
# mixin.perf.faster_item_rendering=false # (default)
# mixin.perf.faster_structure_location=true # (default)
# mixin.perf.faster_texture_stitching=true # (default)
# mixin.perf.fix_loop_spin_waiting=true # (default)
# mixin.perf.ingredient_item_deduplication=false # (default)
# mixin.perf.lazy_search_tree_registry=true # (default)
# mixin.perf.memoize_creative_tab_build=true # (default)
# mixin.perf.model_optimizations=true # (default)
# mixin.perf.mojang_registry_size=true # (default)
# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default)
# mixin.perf.remove_biome_temperature_cache=true # (default)
# mixin.perf.remove_spawn_chunks=false # (default)
# mixin.perf.state_definition_construct=true # (default)
# mixin.perf.thread_priorities=false # (overridden for mod compat)
# mixin.perf.ticking_chunk_alloc=true # (default)
# mixin.perf.worldgen_allocation=true # (default)
# mixin.safety=true # (default)
#
# User overrides go here.
mixin.bugfix.packet_leak=true
mixin.perf.clear_fabric_mapping_tables=true
mixin.perf.clear_mixin_classinfo=true
mixin.perf.deduplicate_location=true
mixin.perf.dynamic_entity_renderers=true
mixin.perf.dynamic_resources=true
mixin.perf.faster_item_rendering=true
mixin.perf.remove_spawn_chunks=true

View file

@ -0,0 +1,14 @@
{
"enabled_modules": {
"forest": true,
"ore_vein": true,
"taiga": true,
"birch_forest": true,
"well": true,
"swamp": true,
"tectonic_trees": false,
"cherry_grove": true,
"dungeon": true,
"mansion": true
}
}

13
config/shulkercharm.json5 Normal file
View file

@ -0,0 +1,13 @@
{
/* The modifier for the maximum distance from a beacon to keep charging.
Formula is <beacon level> * <modifier> + 10.
Vanilla range modifier is 10; set to -1 to disable charge requirement.
*/
"rangeModifier": 10,
/* The maximum amount of power a shulker charm can store.
Charm gains 20 energy per second when in beacon range,
and loses 20 energy per second when out of it.
Default value 1200 (60 seconds).
*/
"maxPower": 1200
}

56
config/tectonic.json Normal file
View file

@ -0,0 +1,56 @@
{
"biomes": {
"temperature_multiplier": 1.0,
"temperature_offset": 0.0,
"temperature_scale": 0.25,
"vegetation_multiplier": 1.0,
"vegetation_offset": 0.0,
"vegetation_scale": 0.25
},
"caves": {
"carvers_enabled": true,
"cheese_additive": 0.27,
"cheese_enabled": true,
"depth_cutoff_size": 0.1,
"depth_cutoff_start": 0.1,
"noodle_additive": -0.075,
"noodle_enabled": true,
"spaghetti_enabled": true
},
"continents": {
"continents_scale": 0.13,
"erosion_scale": 0.25,
"flat_terrain_skew": 0.1,
"jungle_pillars": true,
"ocean_offset": -0.8,
"ridge_scale": 0.25,
"river_lanterns": true,
"rolling_hills": true,
"underground_rivers": true
},
"general": {
"mod_enabled": true,
"snow_start_offset": 128
},
"global_terrain": {
"elevation_boost": 0.0,
"lava_tunnels": true,
"max_y": 320,
"min_y": -64,
"ultrasmooth": false,
"vertical_scale": 1.125
},
"islands": {
"enabled": true,
"noise_multiplier": 1.0,
"noise_offset": 0.0,
"noise_scale": 0.11
},
"minor_version": 1,
"oceans": {
"deep_ocean_depth": -0.45,
"monument_offset": -30,
"ocean_depth": -0.15,
"remove_frozen_ocean_ice": false
}
}

13
config/threadtweak.json Normal file
View file

@ -0,0 +1,13 @@
{
"threadCount": {
"bootstrap": 1,
"main": 3
},
"threadPriority": {
"game": 8,
"bootstrap": 1,
"main": 4,
"io": 7,
"integratedServer": 7
}
}

15
config/vmp.properties Normal file
View file

@ -0,0 +1,15 @@
#Configuration file for VMP
#Sat Apr 12 14:26:44 GMT 2025
deprecated_precache_biome_lookup=false
exp3_use_packet_priority_system=false
exp_use_optimized_chunk_ticking_iteration=true
exp_use_packet_priority_system_block_update_consolidation=false
show_async_loading_messages=false
show_chunk_tracking_messages=false
target_chunk_send_rate=-1
use_async_chunks_on_login=true
use_async_chunks_on_some_commands=false
use_async_logging=true
use_async_portals=true
use_multiple_netty_event_loops=false
use_optimized_entity_tracking=true

View file

@ -0,0 +1,14 @@
# Simple Voice Chat translations
# This file contains all server-side translations for the Simple Voice Chat mod
# The message a player gets when kicked for not having voice chat installed and the server has force_voicechat enabled
# The first parameter is the mod/plugin name and the second parameter is the mod/plugin version
force_voicechat_kick_message=You need %s %s to play on this server
# The message a player gets when joining a server with an incompatible voice chat version
# The first parameter is the mod/plugin version and the second parameter is the mod/plugin name
voicechat_not_compatible_message=Your voice chat version is not compatible with the servers version.\\nPlease install version %s of %s.
# The message a player gets when trying to execute a command that requires the voice chat mod installed on the client side.
# The first parameter is the mod/plugin name
voicechat_needed_for_command_message=You need to have %s installed on your client to use this command
# The message a player gets when trying to execute a command that can only be executed as a player
player_command_message=This command can only be executed as a player

View file

@ -0,0 +1,51 @@
# Simple Voice Chat server config v1.20.1-2.6.11
# The port number to use for the voice chat communication.
# Audio packets are always transmitted via the UDP protocol on the port number
# specified here, independently of other networking used for the game server.
# Set this to '-1' to use the same port number that is used by the Minecraft server.
# However, it is strongly recommended NOT to use the same port number because UDP on
# it is also used by default for the server query. Doing so may crash the server!
port=24455
# The server IP address to bind the voice chat to
# Leave blank to use the 'server-ip' property from the 'server.properties' config file
# To bind to the wildcard IP address, use '*'
bind_address=
# The distance to which the voice can be heard
max_voice_distance=48.0
# The distance to which the voice can be heard when whispering
whisper_distance=24.0
# The Opus codec
# Valid values are 'VOIP', 'AUDIO', and 'RESTRICTED_LOWDELAY'
codec=VOIP
# The maximum size that audio packets are allowed to have (in bytes)
# Set this to a lower value if audio packets don't arrive
mtu_size=1024
# The frequency at which keep-alive packets are sent (in milliseconds)
# Setting this to a higher value may result in timeouts
keep_alive=1000
# If group chats are allowed
enable_groups=true
# The hostname that clients should use to connect to the voice chat
# This may also include a port, e.g. 'example.com:24454' or just a port, e.g. '24454'
# Do NOT change this value if you don't know what you're doing
voice_host=
# If players are allowed to record the voice chat audio
allow_recording=true
# If spectators are allowed to talk to other players
spectator_interaction=false
# If spectators can talk to players they are spectating
spectator_player_possession=false
# If players without the voice chat mod should be kicked from the server
force_voice_chat=true
# The amount of time the server should wait to check if a player has the mod installed (in milliseconds)
# Only relevant when 'force_voice_chat' is set to 'true'
login_timeout=10000
# The range in which the voice chat should broadcast audio
# A value less than 0 means 'max_voice_distance'
broadcast_range=-1.0
# If the voice chat server should reply to external pings
allow_pings=true
# If the mod should load native libraries on dedicated servers
# This is mostly relevant for voice chat addons
use_natives=true

Binary file not shown.

View file

@ -0,0 +1,16 @@
filename = 'architectury-9.2.14-fabric.jar'
name = 'Architectury API'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar'
[update.modrinth]
mod-id = 'lhGA9TYQ'
version = 'WbL7MStR'

View file

@ -0,0 +1,16 @@
filename = 'audioplayer-fabric-1.20.1-1.13.2.jar'
name = 'AudioPlayer'
side = 'server'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = '2012f04a9fc8092df4f6ac43a38dd1b463c40d8b90ecebaae3412b3d9d99b9fad5297657b729f69bb016270a0741475abb4ee3b41d9aed17107cdfa3873b6fb7'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/SRlzjEBS/versions/M6EFtrdy/audioplayer-fabric-1.20.1-1.13.2.jar'
[update.modrinth]
mod-id = 'SRlzjEBS'
version = 'M6EFtrdy'

View file

@ -0,0 +1,16 @@
filename = 'botarium-fabric-1.20.1-2.3.4.jar'
name = 'Botarium'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '03589a8d05c17dbb4271c212d0eb00c53d9d5c0705f63c7816ff9e099245db71f94e7c544e323beaeac28d30bd3807eeccb1352792cb6d778ff6ecf68f4635c7'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/2u6LRnMa/versions/f3ATcSfq/botarium-fabric-1.20.1-2.3.4.jar'
[update.modrinth]
mod-id = '2u6LRnMa'
version = 'f3ATcSfq'

View file

@ -0,0 +1,16 @@
filename = 'c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar'
name = 'Concurrent Chunk Management Engine (Fabric)'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'alpha'
[download]
hash = '359c715fd6a0464192d36b4d9dbb7927776eaae498f0cab939b49740fc724bda83aaf4f069f395dc5975d1e82762ee3b602111d9375eb27ab6f5360c4b17f2ff'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/VSNURh3q/versions/s4WOiNtz/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.16.jar'
[update.modrinth]
mod-id = 'VSNURh3q'
version = 's4WOiNtz'

View file

@ -0,0 +1,16 @@
filename = 'fabric-carpet-1.20-1.4.112+v230608.jar'
name = 'Carpet'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'bf9060e6b1d30d676d9efd30369ccb5baef164fc2d87aad7c7a19d2d9265b5d1d328428a308bdd15960a26bfe46dcd823a236c39f4e26474847354337b043c51'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/TQTTVgYE/versions/K0Wj117C/fabric-carpet-1.20-1.4.112%2Bv230608.jar'
[update.modrinth]
mod-id = 'TQTTVgYE'
version = 'K0Wj117C'

View file

@ -0,0 +1,16 @@
filename = 'cloth-config-11.1.136-fabric.jar'
name = 'Cloth Config API'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar'
[update.modrinth]
mod-id = '9s6osm5g'
version = '2xQdCMyG'

View file

@ -0,0 +1,16 @@
filename = 'copycats-2.2.2+mc.1.20.1-fabric.jar'
name = 'Create: Copycats+'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '21c4409d5f453a29d161b34ebed3b6253953529fbfcac4651fd4476059a99f6d2244486345b69a46dc9b3a1ebdfd39cd0ef0c1b8b814a95b3cf7c8465471eee1'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/UT2M39wf/versions/WYmjbo0H/copycats-2.2.2%2Bmc.1.20.1-fabric.jar'
[update.modrinth]
mod-id = 'UT2M39wf'
version = 'WYmjbo0H'

View file

@ -0,0 +1,16 @@
filename = 'coroutil-fabric-1.20.1-1.3.7.jar'
name = 'CoroUtil'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '4a03363dd9cfd517eb04bea77779c88e74f12c1dacadc726869cb9b595348d615e50041893ad72155f7ac2c359219604710d6157dec95a46fe0e598ef5642035'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/rLLJ1OZM/versions/7tRnsYkP/coroutil-fabric-1.20.1-1.3.7.jar'
[update.modrinth]
mod-id = 'rLLJ1OZM'
version = '7tRnsYkP'

View file

@ -0,0 +1,16 @@
filename = 'createdeco-2.0.2-1.20.1-fabric.jar'
name = 'Create Deco'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'f7ce4b520b7eb47fb9d1a8f510465b96673dee2d6f91ff0720713ee62143d095b399a980666538ebfb8b401fb5e93baf50a2cb2be6a4f2adfde2024f198a35c9'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/sMvUb4Rb/versions/GsxgfeNu/createdeco-2.0.2-1.20.1-fabric.jar'
[update.modrinth]
mod-id = 'sMvUb4Rb'
version = 'GsxgfeNu'

View file

@ -0,0 +1,16 @@
filename = 'createestrogen-1.0.0+1.20.1-fabric.jar'
name = 'Create: Estrogen'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'alpha'
[download]
hash = '41e588e14e55b1d17134603992b188a8f47a65691db27a4f08db79d9402ce1ad26af6d76731b95fa0f553196812a668da6704c8f8a2f84a0fb6670a10e9193bf'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/OEAJaSuI/versions/v2ijIuGa/createestrogen-1.0.0%2B1.20.1-fabric.jar'
[update.modrinth]
mod-id = 'OEAJaSuI'
version = 'v2ijIuGa'

View file

@ -0,0 +1,16 @@
filename = 'create-fabric-6.0.8.1+build.1744-mc1.20.1.jar'
name = 'Create Fabric'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '6edaddb93bc87bf8204376d3ceddd3e3dfec1d716556a5925802f2ade59ce5a660ded50088fa94188842ff83fc29445363dfa5d423e425b1574092833b6fa896'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/Xbc0uyRg/versions/HAqwA6X1/create-fabric-6.0.8.1%2Bbuild.1744-mc1.20.1.jar'
[update.modrinth]
mod-id = 'Xbc0uyRg'
version = 'HAqwA6X1'

View file

@ -0,0 +1,16 @@
filename = 'create_armor_trims-1.20.1-2.0.1.jar'
name = 'Create: Armor Trims'
side = 'both'
x-prismlauncher-loaders = [ 'forge', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'aded234e3c435f88b3282592e04c0923d7509b464abe20ebd5a250daad603e7da9e3c26dd978b734f988e1326d5b0fd1e8302807d3d4e5dd7934deb1b90e841c'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/Q4F90RHI/versions/C9U99P99/create_armor_trims-1.20.1-2.0.1.jar'
[update.modrinth]
mod-id = 'Q4F90RHI'
version = 'C9U99P99'

View file

@ -0,0 +1,16 @@
filename = 'create_power_loader-1.5.3-mc1.20.1-fabric.jar'
name = 'Create: Power Loader (Fabric)'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = 'b2b04775d9afaa2091a82eaa9e81f7f6cfd57cc99adee0e869c7ea0044524c943f771860b74588eacf5a8ee1e0924ebbd04b97f716442caf07d8bcf2b6081989'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/E9MuZ1zB/versions/fHsTW7eS/create_power_loader-1.5.3-mc1.20.1-fabric.jar'
[update.modrinth]
mod-id = 'E9MuZ1zB'
version = 'fHsTW7eS'

View file

@ -0,0 +1,16 @@
filename = 'createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar'
name = 'Create Railways Navigator'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = 'faa3dfb89b780ba169373aa6c2db1f5269db0ee70f103c991e7af0a743ea0736552fdff84c975d7e54c6cd7fbc93b05a5a35a62557716d6d9ae0d4c974fc596e'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/Dq3STxps/versions/JYYwMQBw/createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar'
[update.modrinth]
mod-id = 'Dq3STxps'
version = 'JYYwMQBw'

View file

@ -0,0 +1,16 @@
filename = 'Steam_Rails-1.6.14-beta+fabric-mc1.20.1.jar'
name = "Create: Steam 'n' Rails"
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = '1cd1d40eb3b3d50599aa115ed9c44e65d8ca283869830ef7f220c759e9d4f9393aa0284de99a98013e220af1edcc87b831745c2a83bc119cff570ba654ea5c49'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/ZzjhlDgM/versions/yMgmXIuq/Steam_Rails-1.6.14-beta%2Bfabric-mc1.20.1.jar'
[update.modrinth]
mod-id = 'ZzjhlDgM'
version = 'yMgmXIuq'

View file

@ -0,0 +1,34 @@
filename = 'crossstitch-0.1.6.jar'
name = 'CrossStitch'
side = 'server'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [
'1.19.3',
'1.19.4',
'1.20',
'1.20.1',
'1.20.2',
'1.20.3',
'1.20.4',
'1.20.5',
'1.20.6',
'1.21',
'1.21.1',
'1.21.2',
'1.21.3',
'1.21.4',
'1.21.5',
'1.21.6',
'1.21.7'
]
x-prismlauncher-release-type = 'release'
[download]
hash = '434396c8a939eefe1b502d796dcc7fb6758c0664159da9f423bcf9103ee30e6ce4e4e1ef54924d65644d4c3f3873331786b87aa7d5fa8b206acdbb3551e7ecaf'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/YkOyn1Pn/versions/dJioNlO8/crossstitch-0.1.6.jar'
[update.modrinth]
mod-id = 'YkOyn1Pn'
version = 'dJioNlO8'

View file

@ -0,0 +1,16 @@
filename = 'cynosure-0.1.13-fabric.jar'
name = 'Cynosure'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = '18a67a5a729723974b81a82841111c1c9384f96e31b9a90ecd830a6bbdb3b509fcca1f98621e737e68f6b64aaac480be43955e7e9d96f545c637a9cf4ec28208'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/4JVfdODB/versions/73PdF2tT/cynosure-0.1.13-fabric.jar'
[update.modrinth]
mod-id = '4JVfdODB'
version = '73PdF2tT'

View file

@ -0,0 +1,16 @@
filename = 'decorative_blocks-fabric-1.20.1-4.1.3.jar'
name = 'Decorative Blocks'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'd679847cc78b196a688b0e36cc18352bde9c75f87e8d5421dd0e5311c2aab7418427612f6d54f807725c91c0c5c97fcc3496c5105f56e5e73ef9c136b463dd34'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/t6BIRVZn/versions/FibgWXh0/decorative_blocks-fabric-1.20.1-4.1.3.jar'
[update.modrinth]
mod-id = 't6BIRVZn'
version = 'FibgWXh0'

View file

@ -0,0 +1,16 @@
filename = 'DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar'
name = 'Distant Horizons'
side = 'both'
x-prismlauncher-loaders = [ 'forge', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = '679cb6f9b55d7eea43c17f0204042140590de712b0cecdc14016e8064a9846695e2f438922377f658e26534c49cb61e6da939a6be53c2cb1cd1bc088b69db3ee'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/uCdwusMi/versions/lC6CwqPp/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar'
[update.modrinth]
mod-id = 'uCdwusMi'
version = 'lC6CwqPp'

View file

@ -0,0 +1,16 @@
filename = 'instantgroup-fabric-1.20.1-1.7.0.jar'
name = 'Simple Voice Chat Enhanced Groups'
side = 'server'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'alpha'
[download]
hash = 'c18d04dca79c1b56a3b55e223be913a00dfd21f2c4a0a34779dcbd524b6aa517f9bc60ccd25a31402f38ee2343e5e8ff559c82bfb6be71e3a678a607a4124cf4'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/1LE7mid6/versions/IqLUhXjv/instantgroup-fabric-1.20.1-1.7.0.jar'
[update.modrinth]
mod-id = '1LE7mid6'
version = 'IqLUhXjv'

View file

@ -0,0 +1,16 @@
filename = 'estrogen-5.0.5+1.20.1-fabric.jar'
name = 'Estrogen'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'alpha'
[download]
hash = '1a77ec0baf9c14623e3f9acf2eef13f11998a0bc0d7ab20d0715b50b5c556267b323ee889d75f82275b41e1633d806dec0c0ae9b9001f9f5f269d7e91a767375'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/HhIJW8n1/versions/2J7DuoD3/estrogen-5.0.5%2B1.20.1-fabric.jar'
[update.modrinth]
mod-id = 'HhIJW8n1'
version = '2J7DuoD3'

View file

@ -0,0 +1,16 @@
filename = 'fabric-api-0.92.6+1.20.1.jar'
name = 'Fabric API'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '2bd2ed0cee22305b7ff49597c103a57c8fbe5f64be54a906796d48b589862626c951ff4cbf5cb1ed764a4d6479d69c3077594e693b7a291240eeea2bb3132b0c'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/P7dR8mSH/versions/UapVHwiP/fabric-api-0.92.6%2B1.20.1.jar'
[update.modrinth]
mod-id = 'P7dR8mSH'
version = 'UapVHwiP'

View file

@ -0,0 +1,60 @@
filename = 'fabric-language-kotlin-1.13.7+kotlin.2.2.21.jar'
name = 'Fabric Language Kotlin'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [
'1.14',
'1.14.1',
'1.14.2',
'1.14.3',
'1.14.4',
'1.15',
'1.15.1',
'1.15.2',
'1.16',
'1.16.1',
'1.16.2',
'1.16.3',
'1.16.4',
'1.16.5',
'1.17',
'1.17.1',
'1.18',
'1.18.1',
'1.18.2',
'1.19',
'1.19.1',
'1.19.2',
'1.19.3',
'1.19.4',
'1.20',
'1.20.1',
'1.20.2',
'1.20.3',
'1.20.4',
'1.20.5',
'1.20.6',
'1.21',
'1.21.1',
'1.21.10',
'1.21.11',
'1.21.2',
'1.21.3',
'1.21.4',
'1.21.5',
'1.21.6',
'1.21.7',
'1.21.8',
'1.21.9'
]
x-prismlauncher-release-type = 'release'
[download]
hash = '0453a8a4eb8d791b5f0097a6628fae6f13b6dfba1e2bd1f91218769123808c4396a88bcdfc785f1d6bca348f267b32afc2aa9e0d5ec93a7b35bcfe295268c7bc'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/Ha28R6CL/versions/LcgnDDmT/fabric-language-kotlin-1.13.7%2Bkotlin.2.2.21.jar'
[update.modrinth]
mod-id = 'Ha28R6CL'
version = 'LcgnDDmT'

View file

@ -0,0 +1,16 @@
filename = 'FabricProxy-Lite-2.6.0.jar'
name = 'FabricProxy-Lite'
side = 'server'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '365d29ebaeca55ffdaa4d066141559b00e3177437b0d9fabee3996fcdbd8e2fb8ae45c0c600cb357a042efe750caa2b6efaaffa439f5710cbb04deeae994b7dd'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/8dI2tmqs/versions/XJmDAnj5/FabricProxy-Lite-2.6.0.jar'
[update.modrinth]
mod-id = '8dI2tmqs'
version = 'XJmDAnj5'

View file

@ -0,0 +1,16 @@
filename = 'ferritecore-6.0.1-fabric.jar'
name = 'FerriteCore'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '9b7dc686bfa7937815d88c7bbc6908857cd6646b05e7a96ddbdcada328a385bd4ba056532cd1d7df9d2d7f4265fd48bd49ff683f217f6d4e817177b87f6bc457'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar'
[update.modrinth]
mod-id = 'uXXizFIs'
version = 'unerR5MN'

View file

@ -0,0 +1,16 @@
filename = 'flashfreeze-0.3.4+1.20.1.jar'
name = 'FlashFreeze'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = 'e4aac942cc12ce09d835f825473d7750aba9b7d01ba14d0223ba977ad50affd5aad40a2fcdcc5d943cdab44d5fddcd3f9e3854300debf98825a29618785e3d46'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/OX7oyAQX/versions/oEnu0qVQ/flashfreeze-0.3.4%2B1.20.1.jar'
[update.modrinth]
mod-id = 'OX7oyAQX'
version = 'oEnu0qVQ'

View file

@ -0,0 +1,16 @@
filename = 'geckolib-fabric-1.20.1-4.8.2.jar'
name = 'Geckolib'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'cf0f40b02ce712610984c486ed6c7fa0c46f5926da0f8a4d329622dfaadf96a90bd1c2f9afdfc08082a66fb6e9dbf4d6853a9405f16c856bf0b55c62efcbb0a6'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/8BmcQJ2H/versions/AXhbVyuq/geckolib-fabric-1.20.1-4.8.2.jar'
[update.modrinth]
mod-id = '8BmcQJ2H'
version = 'AXhbVyuq'

View file

@ -0,0 +1,16 @@
filename = 'krypton-0.2.3.jar'
name = 'Krypton'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar'
[update.modrinth]
mod-id = 'fQEb0iXm'
version = 'jiDwS0W1'

View file

@ -0,0 +1,16 @@
filename = 'lithium-fabric-mc1.20.1-0.11.4.jar'
name = 'Lithium'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '31938b7e849609892ffa1710e41f2e163d11876f824452540658c4b53cd13c666dbdad8d200989461932bd9952814c5943e64252530c72bdd5d8641775151500'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/gvQqBUqZ/versions/iEcXOkz4/lithium-fabric-mc1.20.1-0.11.4.jar'
[update.modrinth]
mod-id = 'gvQqBUqZ'
version = 'iEcXOkz4'

View file

@ -0,0 +1,16 @@
filename = 'lithostitched-fabric-1.20.1-1.4.11.jar'
name = 'Lithostitched'
side = 'server'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'd8e840907e3f7326c1e6605b65c46eb4e920e4790ab4074884ad21913f0c097dcacf4b813091239eb58bd65b7c75b96d04bb4df6eec830f89a21e217e3c0fdec'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/XaDC71GB/versions/9bbVphAR/lithostitched-fabric-1.20.1-1.4.11.jar'
[update.modrinth]
mod-id = 'XaDC71GB'
version = '9bbVphAR'

View file

@ -0,0 +1,16 @@
filename = 'modernfix-fabric-5.25.2+mc1.20.1.jar'
name = 'ModernFix'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '878e39d182767ffd08ad6a3539fae780739129db133abe02b9b73dc3df6e1ac9ddbe509620356b0aae5e7bfbed535d0e18741703334317a16fefef820269da2d'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/nmDcB62a/versions/rPmgLeZC/modernfix-fabric-5.25.2%2Bmc1.20.1.jar'
[update.modrinth]
mod-id = 'nmDcB62a'
version = 'rPmgLeZC'

View file

@ -0,0 +1,16 @@
filename = 'naturalist-fabric-4.0.3-1.20.1.jar'
name = 'Naturalist'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '2598c35680c48d8a5a30c05883cf1c0b3cbada36594ba93f35f3e99555634e64d3b4eea5d1c8beb84ef7019d3d61a32350cdc68368ab0a2b731ab381978492b0'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/F8BQNPWX/versions/dMGBsRgz/naturalist-fabric-4.0.3-1.20.1.jar'
[update.modrinth]
mod-id = 'F8BQNPWX'
version = 'dMGBsRgz'

View file

@ -0,0 +1,16 @@
filename = 'NoChatReports-FABRIC-1.20.1-v2.2.2.jar'
name = 'No Chat Reports'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar'
[update.modrinth]
mod-id = 'qQyHxfxd'
version = 'HeZZR2kF'

View file

@ -0,0 +1,16 @@
filename = 'noisium-fabric-2.3.0+mc1.20-1.20.1.jar'
name = 'Noisium'
side = 'server'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'f0abcdac514bd2b4eb6af3529eeb9980a6fef534d31244879acb291a9943151aeb34f372bf98ae01f6191870bf95e1c0bc36d522433353a1090b96e7ac03c417'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/KuNKN7d2/versions/erSJnRcq/noisium-fabric-2.3.0%2Bmc1.20-1.20.1.jar'
[update.modrinth]
mod-id = 'KuNKN7d2'
version = 'erSJnRcq'

View file

@ -0,0 +1,16 @@
filename = 'not-just-biomes-mc1.20-1.1.0.jar'
name = 'Not Just Biomes'
side = 'server'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '6b97829cdac6cb60b99af1d62354a067c2a24cebebf6669fc033c08481f3b94d9f8c1e7bd67869221a0c17fbe9c5ed7e2fad46dcf06ac9ed2babf532904810f1'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/EIT1cuHa/versions/Q3H9Zkll/not-just-biomes-mc1.20-1.1.0.jar'
[update.modrinth]
mod-id = 'EIT1cuHa'
version = 'Q3H9Zkll'

View file

@ -0,0 +1,16 @@
filename = 'Nullscape_1.20.x_v1.2.8.jar'
name = 'Nullscape'
side = 'both'
x-prismlauncher-loaders = [ 'neoforge', 'forge', 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2', '1.20.3', '1.20.4', '1.20.5', '1.20.6' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'fcd11f20ab1b374a219e915156c8439f2d6fcabb060406f4d0a11392f945228e1c6e375f8e9e3048ac01c3a351c88bde4327e1f958bfd5ef4ab81c178f9e35da'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/LPjGiSO4/versions/QsRKydVt/Nullscape_1.20.x_v1.2.8.jar'
[update.modrinth]
mod-id = 'LPjGiSO4'
version = 'QsRKydVt'

View file

@ -0,0 +1,16 @@
filename = 'observable-4.4.2.jar'
name = 'Observable'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'beta'
[download]
hash = 'f7e69c9cc98acbb55b42f9add88fbbca7523eeff1a6c436f10e432df5ae90c49345a23efaca250bfddc55d05b2c7f7c0f578a1e04ebe6bf66088aaa209acfaab'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/VYRu7qmG/versions/MprPnUls/observable-4.4.2.jar'
[update.modrinth]
mod-id = 'VYRu7qmG'
version = 'MprPnUls'

View file

@ -0,0 +1,16 @@
filename = 'quickshulker-1.4.0-1.20.jar'
name = 'QuickShulker'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '6ea5b7e5628ffa5fb80317454672ff5eee8b4aa6264bf3397c1adc72b126e9486ec00fc81418109d5904ab54999df1511b0b7e10aaf3e056a9d3126936a6245a'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/RsZDxTI3/versions/Eq9r6JQQ/quickshulker-1.4.0-1.20.jar'
[update.modrinth]
mod-id = 'RsZDxTI3'
version = 'Eq9r6JQQ'

View file

@ -0,0 +1,16 @@
filename = 'resourcefullib-fabric-1.20.1-2.1.29.jar'
name = 'Resourceful Lib'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'd3fcf5440c9359ee84cdec6ab198a6b2e10e5b1939995d2b12837ffdaa1f82d3caa80b14107cf02380718c65f20672b1faca3a498d2b41d79c79de34b2f7189b'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/G1hIVOrD/versions/UOdaYbhh/resourcefullib-fabric-1.20.1-2.1.29.jar'
[update.modrinth]
mod-id = 'G1hIVOrD'
version = 'UOdaYbhh'

View file

@ -0,0 +1,16 @@
filename = 'servux-fabric-1.20.0-0.1.0.jar'
name = 'Servux'
side = 'server'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '973ab83979d994fa70eb2ebb285bc5feff8a51d1972f3533007dbad2bfb0fded62dc0dac5627a2ff557d07fe230faf1b931974b224cf2bcef31f5215606bb21f'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/zQhsx8KF/versions/I7wfvH49/servux-fabric-1.20.0-0.1.0.jar'
[update.modrinth]
mod-id = 'zQhsx8KF'
version = 'I7wfvH49'

View file

@ -0,0 +1,16 @@
filename = 'shulkercharm-1.2.2.jar'
name = 'Shulker Charm'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '86a259c564743bdd2e1a087016706ee38ecd6bd43f9ba108e94b808c5713ef01f61ae2378a19ed7905ca95ef672e27a9271e9bdce76f5d39157d23d684c343bb'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/J2SCGP0Y/versions/ITE4y7fS/shulkercharm-1.2.2.jar'
[update.modrinth]
mod-id = 'J2SCGP0Y'
version = 'ITE4y7fS'

View file

@ -0,0 +1,16 @@
filename = 'voicechat-fabric-1.20.1-2.6.11.jar'
name = 'Simple Voice Chat'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'c4e89a59232c007f862d77151d590ae25d6c0d6a88cb330bf9aa6644b14ac28f07e2d8b85667741e1a99a3452848a59b8a03e5c378afe74375e34cdefe2941aa'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/9eGKb6K1/versions/z5kIPm1A/voicechat-fabric-1.20.1-2.6.11.jar'
[update.modrinth]
mod-id = '9eGKb6K1'
version = 'z5kIPm1A'

View file

@ -0,0 +1,16 @@
filename = 'surveyor-1.1.2+1.20.jar'
name = 'Surveyor Map Framework'
side = 'both'
x-prismlauncher-loaders = [ 'forge', 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '2f58895e7f03a4f4f74dbb944c2245f361cc78cb9c38f5b45847ffd5a741310285f1ced50d8bb9f2bc5a72f5320d0f0af6d16b56bda079cf59693e7df0d15fa6'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/4KjqhPc9/versions/ykwbsgaV/surveyor-1.1.2%2B1.20.jar'
[update.modrinth]
mod-id = '4KjqhPc9'
version = 'ykwbsgaV'

View file

@ -0,0 +1,16 @@
filename = 'tectonic-3.0.17-fabric-1.20.1.jar'
name = 'Tectonic'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '9a11047ed0e981bb60c230d00ec5d88bf3968119df808e9c55678cab94f8fa5005cdd916799dfd641e0ad60a1b937b4554c71c19d7b3d0f61b94f5135cbf377a'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/lWDHr9jE/versions/mz3wlQKd/tectonic-3.0.17-fabric-1.20.1.jar'
[update.modrinth]
mod-id = 'lWDHr9jE'
version = 'mz3wlQKd'

View file

@ -0,0 +1,16 @@
filename = 'threadtweak-fabric-1.20.2-0.1.1.jar'
name = 'ThreadTweak'
side = 'both'
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'b5a9fc2775bc8c020cb88b898dcdf473bf77f03ef41be1661a117872b16582a7e30b4f4a94d4c97855484a173e5e41951d47fcc17aef2429828b35308453835c'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/vSEH1ERy/versions/gBP1GqtK/threadtweak-fabric-1.20.2-0.1.1.jar'
[update.modrinth]
mod-id = 'vSEH1ERy'
version = 'gBP1GqtK'

View file

@ -0,0 +1,16 @@
filename = 'trinkets-3.7.2.jar'
name = 'Trinkets'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = 'bedf97c87c5e556416410267108ad358b32806448be24ef8ae1a79ac63b78b48b9c851c00c845b8aedfc7805601385420716b9e65326fdab21340e8ba3cc4274'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/5aaWibi9/versions/AHxQGtuC/trinkets-3.7.2.jar'
[update.modrinth]
mod-id = '5aaWibi9'
version = 'AHxQGtuC'

View file

@ -0,0 +1,16 @@
filename = 'vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar'
name = 'Very Many Players (Fabric)'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'alpha'
[download]
hash = '38ba14d870ddbcef233c9baa399005aaccde95d7b77175aa3a795eb9fed1086492b4ac5c6bbc05909dd76dce1b19b5c26613585161c2f3d20f2494beb8b23fe4'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/wnEe9KBa/versions/sV8lIBhJ/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.102-all.jar'
[update.modrinth]
mod-id = 'wnEe9KBa'
version = 'sV8lIBhJ'

View file

@ -0,0 +1,16 @@
filename = 'watut-fabric-1.20.1-1.2.3.jar'
name = 'What Are They Up To (Watut)'
side = 'both'
x-prismlauncher-loaders = [ 'fabric' ]
x-prismlauncher-mc-versions = [ '1.20.1' ]
x-prismlauncher-release-type = 'release'
[download]
hash = '78e36fafa354d8e793d592b377c6162886fa487cadf8ca7dc24c3140909cfe2af943a2c954a4a9dbc7c7828fe606ff5d44e98cf7a4d9e8846810c498e1cc49eb'
hash-format = 'sha512'
mode = 'url'
url = 'https://cdn.modrinth.com/data/AtB5mHky/versions/Ub8MHZaV/watut-fabric-1.20.1-1.2.3.jar'
[update.modrinth]
mod-id = 'AtB5mHky'
version = 'Ub8MHZaV'

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/crossstitch-0.1.6.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/krypton-0.2.3.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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