1.1.1 - Fix AI, minor addons

This commit is contained in:
Mateusz Słodkowicz 2026-05-03 03:42:42 +02:00
parent 6ca0a27ef2
commit 25f71f4c68
Signed by: materus
SSH Key Fingerprint: SHA256:rzVduzTiiszuYfLPYD0SDZV+g8lxhpcRgpbOZA1X0Uo
27 changed files with 1780 additions and 39 deletions

View File

@ -7,7 +7,7 @@
#The name of the modpack #The name of the modpack
modpackName = "Banana" modpackName = "Banana"
#The version of the modpack #The version of the modpack
modpackVersion = "1.1.0" modpackVersion = "1.1.1"
#Use the metadata.json to determine the modpack version #Use the metadata.json to determine the modpack version
#ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING #ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING
useMetadata = false useMetadata = false

36
config/corpse-server.toml Normal file
View File

@ -0,0 +1,36 @@
#The time (in real life days) deaths get stored
#-1 for infinite storage
#0 for not storing deaths at all
# Default: -1
# Range: > -1
death_storage_duration = -1
[corpse]
#The time passed (in ticks) after a corpse turns into a skeleton
# Default: 72000
# Range: > 0
skeleton_time = 72000
#If the corpse should lie on its face
lie_on_face = false
#If the corpse should wear the players equipment
show_equipment = true
#If the corpse should fall into the void
fall_into_void = false
#If the corpse should get removed when in lava
lava_damage = false
[corpse.access]
#If only the owner of the corpse can access the inventory
only_owner = true
#If everybody can access the corpse in the skeleton stage (Only if only_owner_access is set to true)
skeleton = true
[corpse.despawn]
#The time passed (in ticks) after a corpse despawns (only if empty)
# Default: 600
# Range: > 20
time = 600
#The time passed (in ticks) after a corpse despawns even if its not empty (-1 = never)
# Default: -1
# Range: > -1
force_time = -1

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,87 @@
[general]
#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"]
#Set to "GLOBAL" to have newly placed or found waystones be global by default.
#Allowed Values: ACTIVATION, GLOBAL, SHARD_ONLY, ORANGE_SHARESTONE, MAGENTA_SHARESTONE, LIGHT_BLUE_SHARESTONE, YELLOW_SHARESTONE, LIME_SHARESTONE, PINK_SHARESTONE, GRAY_SHARESTONE, LIGHT_GRAY_SHARESTONE, CYAN_SHARESTONE, PURPLE_SHARESTONE, BLUE_SHARESTONE, BROWN_SHARESTONE, GREEN_SHARESTONE, RED_SHARESTONE, BLACK_SHARESTONE
defaultVisibility = "ACTIVATION"
#Add "GLOBAL" to allow every player to create global waystones.
allowedVisibilities = []
#The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click.
warpStoneUseTime = 32
#The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for.
warpPlateUseTime = 15
#The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click.
scrollUseTime = 32
[inventoryButton]
#Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone.
inventoryButton = ""
#The x position of the inventory button in the inventory.
inventoryButtonX = 58
#The y position of the inventory button in the inventory.
inventoryButtonY = 60
#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
[worldGen]
#Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in.
#Allowed Values: DEFAULT, MOSSY, SANDY, BLACKSTONE, DEEPSLATE, END_STONE, BIOME
wildWaystoneStyle = "BIOME"
#Approximate chunk distance between wild waystones being generated. Set to 0 to disable generation.
chunksBetweenWildWaystones = 25
#List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList will be able to spawn waystones, provided the biomes are in the `has_structure/waystone` tag.
wildWaystonesDimensionAllowList = ["minecraft:the_nether", "minecraft:overworld", "minecraft:the_end"]
#List of dimensions that wild waystones are not allowed to spawn in, even if the biome is in the `has_structure/waystone` tag. Only used if wildWaystonesDimensionAllowList is empty.
wildWaystonesDimensionDenyList = []
#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.
#Allowed Values: PRESET_FIRST, RANDOM_ONLY, PRESET_ONLY, MIXED
nameGenerationMode = "PRESET_FIRST"
#The template to use when generating new names. Supported placeholders are {Biome} (english biome name) and {MrPork} (the default name generator).
nameGenerationTemplate = "{MrPork}"
#These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info.
nameGenerationPresets = []
#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.
#Allowed Values: DISABLED, REGULAR, FREQUENT
spawnInVillages = "REGULAR"
[teleports]
#Set to false to simply disable all xp costs. See warpRequirements for more fine-grained control.
enableCosts = true
#Set to false to simply disable all cooldowns. See warpRequirements for more fine-grained control.
enableCooldowns = true
#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(1)", "[target_is_global] multiply_xp_cost(1)", "min_xp_cost(4)", "max_xp_cost(27)", "[source_is_inventory_button] add_cooldown(inventory_button, 600)"]
#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.
#Allowed Values: ENABLED, SAME_DIMENSION, DISABLED
transportPets = "DISABLED"
#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.
#Allowed Values: ENABLED, SAME_DIMENSION, DISABLED
transportLeashed = "ENABLED"
#List of entities that cannot be teleported, either as pet, leashed, or on warp plates.
entityDenyList = ["minecraft:wither"]
#Set to true to enable warp modifier items for applying status effects on teleports.
enableModifiers = true
[client]
#If enabled, the text overlay on waystones will no longer always render at full brightness.
disableTextGlow = false
[compatibility]
#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
#If enabled, Waystones will add markers for waystones and sharestones to Dynmap.
dynmap = true
[blueMap]
#Controls whether Waystones' BlueMap integration should be loaded
enabled = true
#If enabled, waystones will be tracked as markers on BlueMap
includeWaystones = true
#If enabled, sharestones will be tracked as markers on BlueMap.
includeSharestones = true
#If enabled, undiscovered waystones will be tracked as markers on BlueMap.
includeUndiscoveredWaystones = false

View File

@ -22,7 +22,7 @@ hash = "199780a11fff42f04e8806677fff6255d51e815493b52fa7224be8b6b344306d"
[[files]] [[files]]
file = "config/bcc-common.toml" file = "config/bcc-common.toml"
hash = "d62a7a38fc93aea330d2de6d9ceed38992a1fb011e73fd3af390ebf359217981" hash = "b3b7aa86b021b265749d86b6763926f8bfb158f6b03447b423e680dfcf9dbf04"
[[files]] [[files]]
file = "config/chalk-common.toml" file = "config/chalk-common.toml"
@ -36,6 +36,10 @@ hash = "6cfbca043550d91eb9dc19536dd79292eb3535446c0afa5aef48a002ee81bd78"
file = "config/connector.json" file = "config/connector.json"
hash = "2d1f049396afdf1ffbb15ee74212a6a4ff8e18463dc5f213ce615fef45a40bc8" hash = "2d1f049396afdf1ffbb15ee74212a6a4ff8e18463dc5f213ce615fef45a40bc8"
[[files]]
file = "config/corpse-server.toml"
hash = "e1c4fc0d90a81956153dc37790c3e938b8e54f6c05aab7d41767c88412568f6f"
[[files]] [[files]]
file = "config/cpm.json" file = "config/cpm.json"
hash = "687c3842bb31ab7d7fa6bfec0b1d05f195f11aedd6a44205e027cc930df29b23" hash = "687c3842bb31ab7d7fa6bfec0b1d05f195f11aedd6a44205e027cc930df29b23"
@ -60,6 +64,10 @@ hash = "41f5a7ac2f60ed98c384cdb33a5586a2106144001ee5d32edb8f0e97f98762bd"
file = "config/defaultoptions/keybindings.txt" file = "config/defaultoptions/keybindings.txt"
hash = "f78b301f223be57085448a7ea605540bf4ebeaae36b15732addd9d3f2af8cdc2" hash = "f78b301f223be57085448a7ea605540bf4ebeaae36b15732addd9d3f2af8cdc2"
[[files]]
file = "config/enhancedai/common.toml"
hash = "0331ff52afe6e9c5bf223352663940618c083793cff6800774cc3093474b594d"
[[files]] [[files]]
file = "config/fml.toml" file = "config/fml.toml"
hash = "e73cd74969c6132220cadb6827453615dfd28076f652a8843b2dd386fa28ef07" hash = "e73cd74969c6132220cadb6827453615dfd28076f652a8843b2dd386fa28ef07"
@ -108,6 +116,10 @@ hash = "905a111f1a019369fce0bb225acc31245bd0b7363512b838c6bab868b1bb0576"
file = "config/supplementaries-client.toml" file = "config/supplementaries-client.toml"
hash = "80e5996a4fd4b93a98b66e0ea4892767932cae2cc1789650b6016e976cedc001" hash = "80e5996a4fd4b93a98b66e0ea4892767932cae2cc1789650b6016e976cedc001"
[[files]]
file = "config/waystones-common.toml"
hash = "88366eeace65f3c2565eb87a7bc6224914e43702f5d627dc2cbd398d61d1b6f3"
[[files]] [[files]]
file = "config/zombieawareness/ClientConfig.toml" file = "config/zombieawareness/ClientConfig.toml"
hash = "4f3a533f0718c1aa58b8efb7274600f9d8a9120a49d0860c2841d997967073da" hash = "4f3a533f0718c1aa58b8efb7274600f9d8a9120a49d0860c2841d997967073da"
@ -167,6 +179,11 @@ file = "mods/aeronautics-dyeable-components.pw.toml"
hash = "b218b7696365829e01cc3b6844913c757836d1ebdb0c49a9abf7a7fcbc0f6678" hash = "b218b7696365829e01cc3b6844913c757836d1ebdb0c49a9abf7a7fcbc0f6678"
metafile = true metafile = true
[[files]]
file = "mods/ai-improvements.pw.toml"
hash = "3d8f918c52e27d4c640f78c67c0a51a2ddbe4e3703c149e8ed9461f43bd5fedd"
metafile = true
[[files]] [[files]]
file = "mods/akashic-tome.pw.toml" file = "mods/akashic-tome.pw.toml"
hash = "18a5b572a9afdb84b24f5c58c4a53022158f8db746dde95531b780d4713f3fc8" hash = "18a5b572a9afdb84b24f5c58c4a53022158f8db746dde95531b780d4713f3fc8"
@ -177,6 +194,11 @@ file = "mods/alexs-mobs(1.21.1).pw.toml"
hash = "fb53bc6c0d543cd7e88a5faba1e3235dca6c556e0cf8c1a534bbdec581c3c2f8" hash = "fb53bc6c0d543cd7e88a5faba1e3235dca6c556e0cf8c1a534bbdec581c3c2f8"
metafile = true metafile = true
[[files]]
file = "mods/allurement!.pw.toml"
hash = "dd01f7b83ae4abaa4d4b33841b5eb72f0d5ca4573bdc05fe1a84291692d6912c"
metafile = true
[[files]] [[files]]
file = "mods/almanac.pw.toml" file = "mods/almanac.pw.toml"
hash = "19d6b20763edf0247e395db37d6e7e5b012ca063f5820c81a6330baff2218c4e" hash = "19d6b20763edf0247e395db37d6e7e5b012ca063f5820c81a6330baff2218c4e"
@ -237,6 +259,11 @@ file = "mods/architectury-api.pw.toml"
hash = "ea336d25c3e21ef168aec20e1ea470c96949ad29632646ee8e8ab0d74b4bbfc9" hash = "ea336d25c3e21ef168aec20e1ea470c96949ad29632646ee8e8ab0d74b4bbfc9"
metafile = true metafile = true
[[files]]
file = "mods/attributefix.pw.toml"
hash = "f0edb6932d0c3f97338cf660763ff43bc5febdf0eb5edeca3a1927c20f14e296"
metafile = true
[[files]] [[files]]
file = "mods/backport-copper-age.pw.toml" file = "mods/backport-copper-age.pw.toml"
hash = "61854b1ff0419be14d2a4fa1b70b382633e529a95b338c59fbd3f5c47ded96be" hash = "61854b1ff0419be14d2a4fa1b70b382633e529a95b338c59fbd3f5c47ded96be"
@ -262,6 +289,11 @@ file = "mods/bellsandwhistles.pw.toml"
hash = "e1f4a53e3e52b534add5dd018597fefd345d9bd6350b9c46ef0ec281fc62af8e" hash = "e1f4a53e3e52b534add5dd018597fefd345d9bd6350b9c46ef0ec281fc62af8e"
metafile = true metafile = true
[[files]]
file = "mods/beltborne-lanterns-accessories-layer.pw.toml"
hash = "d4b7f6cf00243e6963d28933424141debda012dbfc4e41d4954defac67b2156b"
metafile = true
[[files]] [[files]]
file = "mods/beltborne-lanterns.pw.toml" file = "mods/beltborne-lanterns.pw.toml"
hash = "a3d64a9bc113d1bca287ee2c47d832685c8d4b8807032cecd8dfffd35a070709" hash = "a3d64a9bc113d1bca287ee2c47d832685c8d4b8807032cecd8dfffd35a070709"
@ -322,6 +354,11 @@ file = "mods/boatload.pw.toml"
hash = "3e4ef8a1b4a51f845e60751b2431cc599aa52b6a43a79dacaa5fc7aadc15fe1c" hash = "3e4ef8a1b4a51f845e60751b2431cc599aa52b6a43a79dacaa5fc7aadc15fe1c"
metafile = true metafile = true
[[files]]
file = "mods/bookshelf-lib.pw.toml"
hash = "68d6016fa3707c434b3aca5db041c7518c70feb53d0183faa2502cc6efd4c827"
metafile = true
[[files]] [[files]]
file = "mods/building-wands.pw.toml" file = "mods/building-wands.pw.toml"
hash = "e734054390df547584e7f3ca56cfbfb235ac4f13cc7d2c0fda730f83f836d4b5" hash = "e734054390df547584e7f3ca56cfbfb235ac4f13cc7d2c0fda730f83f836d4b5"
@ -667,6 +704,11 @@ file = "mods/createaddoncompatibility.pw.toml"
hash = "046a80051e21c0bab042ad1b7e27d42a7456fd36cfabf0454e9110ec345078fd" hash = "046a80051e21c0bab042ad1b7e27d42a7456fd36cfabf0454e9110ec345078fd"
metafile = true metafile = true
[[files]]
file = "mods/createoplenty.pw.toml"
hash = "f4b24e22e6168f8df906d222d8de0a31bec0263a3f5425344ee0736681655842"
metafile = true
[[files]] [[files]]
file = "mods/creativecore.pw.toml" file = "mods/creativecore.pw.toml"
hash = "d6e8a17cd30032fb2eaeb910f65ffca9cd41a6530b607d58dfa18ac619b6d9f1" hash = "d6e8a17cd30032fb2eaeb910f65ffca9cd41a6530b607d58dfa18ac619b6d9f1"
@ -782,6 +824,11 @@ file = "mods/end-portal-recipe.pw.toml"
hash = "808304e4964804b315fee4d597605bbfbc4d935a22f624b17cf4f0035dbc87d9" hash = "808304e4964804b315fee4d597605bbfbc4d935a22f624b17cf4f0035dbc87d9"
metafile = true metafile = true
[[files]]
file = "mods/enhanced-ai.pw.toml"
hash = "1d16db2acaa7309e53e2cd51d166eb35a850e99e716ebb3280c16416f423fb41"
metafile = true
[[files]] [[files]]
file = "mods/enhanced-celestials.pw.toml" file = "mods/enhanced-celestials.pw.toml"
hash = "36b1bfa4292d1ba3dfe05badf5686f51eaa388ee1ada210690241cc45a9b20aa" hash = "36b1bfa4292d1ba3dfe05badf5686f51eaa388ee1ada210690241cc45a9b20aa"
@ -837,6 +884,11 @@ file = "mods/farmers-cutting-biomes-o-plenty.pw.toml"
hash = "e8a8b5217e3cac90c7e42a9698c9d3da408a5de99d590eab025653fa7d8b8911" hash = "e8a8b5217e3cac90c7e42a9698c9d3da408a5de99d590eab025653fa7d8b8911"
metafile = true metafile = true
[[files]]
file = "mods/farmers-cutting-quark.pw.toml"
hash = "f725640348e9ae5af4edd59d1498fc7c08e58dddc29e1dd41056432a93d2737e"
metafile = true
[[files]] [[files]]
file = "mods/farmers-delight.pw.toml" file = "mods/farmers-delight.pw.toml"
hash = "69495e979400e63b317b80a71bdd9276929d503b12fa0e73bc668c474d5dbc4c" hash = "69495e979400e63b317b80a71bdd9276929d503b12fa0e73bc668c474d5dbc4c"
@ -1006,11 +1058,26 @@ file = "mods/immersivemc.pw.toml"
hash = "bc0904f9db218d548bcdee4a73e2cd74d16c36df70d61779ca95ce7c0aa278b7" hash = "bc0904f9db218d548bcdee4a73e2cd74d16c36df70d61779ca95ce7c0aa278b7"
metafile = true metafile = true
[[files]]
file = "mods/insanelib.pw.toml"
hash = "e35c180a03e29022e7f78366b9c11932fa0a49b34bc5fb32049e68392b93d310"
metafile = true
[[files]] [[files]]
file = "mods/interiors.pw.toml" file = "mods/interiors.pw.toml"
hash = "e7e6b3effe3022cf1fdb900c857111fdcbfd6b385c2d5bd28c914efaed436ecb" hash = "e7e6b3effe3022cf1fdb900c857111fdcbfd6b385c2d5bd28c914efaed436ecb"
metafile = true metafile = true
[[files]]
file = "mods/inventory-mending.pw.toml"
hash = "bfdc96aca13eec14a5f9a2986a25319effaed81e79169ebfb9a063a66a284b8b"
metafile = true
[[files]]
file = "mods/inventory-particles.pw.toml"
hash = "dd0e33b72227eced263649c930c4a11162365591c02b5e7008ae111c0ea16070"
metafile = true
[[files]] [[files]]
file = "mods/iris.pw.toml" file = "mods/iris.pw.toml"
hash = "f67aa60c765593a8c70f78296a460349c6aef5f4a16d173eae02e8803b545ad4" hash = "f67aa60c765593a8c70f78296a460349c6aef5f4a16d173eae02e8803b545ad4"
@ -1036,6 +1103,11 @@ file = "mods/jade.pw.toml"
hash = "b6e0a61fea06f8d6d8e1672cf07b682625c4b74efd548d5093cd9c1fed167eec" hash = "b6e0a61fea06f8d6d8e1672cf07b682625c4b74efd548d5093cd9c1fed167eec"
metafile = true metafile = true
[[files]]
file = "mods/jamlib.pw.toml"
hash = "750f4b552490779af147a9c70a558ab2aa1cbfd8331d5ad69efefa099854dfae"
metafile = true
[[files]] [[files]]
file = "mods/jei.pw.toml" file = "mods/jei.pw.toml"
hash = "5367193d3f87b7bc5a81bcd64a5b96a843e76d4df7a83c8bb7e1911aa82dd52e" hash = "5367193d3f87b7bc5a81bcd64a5b96a843e76d4df7a83c8bb7e1911aa82dd52e"
@ -1276,6 +1348,11 @@ file = "mods/moonlight.pw.toml"
hash = "c05fa3fa9bc5700104d928b616b15e70d441085dd060c6501122747dc3805de1" hash = "c05fa3fa9bc5700104d928b616b15e70d441085dd060c6501122747dc3805de1"
metafile = true metafile = true
[[files]]
file = "mods/mossylib.pw.toml"
hash = "67159f1c82fc70fb15d6f0951b79c6e2adb912ed5bfa397e1ef0eae96f90530c"
metafile = true
[[files]] [[files]]
file = "mods/mpalladium.pw.toml" file = "mods/mpalladium.pw.toml"
hash = "30cd1eefdff16a19d2fddb7d9430f6d5584dd9cd5d40618f657ae8fd9cc74f9a" hash = "30cd1eefdff16a19d2fddb7d9430f6d5584dd9cd5d40618f657ae8fd9cc74f9a"
@ -1291,6 +1368,11 @@ file = "mods/multi-piston.pw.toml"
hash = "bc9449306cb2c32f16347779291d68e5fba67f85d7aca04b4b9cc1c033ec4083" hash = "bc9449306cb2c32f16347779291d68e5fba67f85d7aca04b4b9cc1c033ec4083"
metafile = true metafile = true
[[files]]
file = "mods/name-tag-tweaks.pw.toml"
hash = "5141e7bd9e5882a30eb4c93147a5a9c47da07e35012a4167183678ad9499a383"
metafile = true
[[files]] [[files]]
file = "mods/natures-compass.pw.toml" file = "mods/natures-compass.pw.toml"
hash = "35acdf433fe8f8599f59975e848efdb717663c2c471d3a5dc18743799795a736" hash = "35acdf433fe8f8599f59975e848efdb717663c2c471d3a5dc18743799795a736"
@ -1316,11 +1398,6 @@ file = "mods/no-chat-reports.pw.toml"
hash = "5da18814472be5dc93a21886983646da3a7236413800075ac75229be82d114fa" hash = "5da18814472be5dc93a21886983646da3a7236413800075ac75229be82d114fa"
metafile = true metafile = true
[[files]]
file = "mods/no-telemetry.pw.toml"
hash = "c5e7e0a3de03c138f587fc56dca70013978677e0cde2ad19024dc798178a49bd"
metafile = true
[[files]] [[files]]
file = "mods/not-enough-animations.pw.toml" file = "mods/not-enough-animations.pw.toml"
hash = "44dde164b3d9e130a8d8dd6ff84bfcc936825465b966a06c7358f0ddf3660fd0" hash = "44dde164b3d9e130a8d8dd6ff84bfcc936825465b966a06c7358f0ddf3660fd0"
@ -1341,11 +1418,6 @@ file = "mods/nullscape.pw.toml"
hash = "dcfbfa39abeaba554c2c5323f9b9a3ec58dfc386aca2d237f73948abdbdc7125" hash = "dcfbfa39abeaba554c2c5323f9b9a3ec58dfc386aca2d237f73948abdbdc7125"
metafile = true metafile = true
[[files]]
file = "mods/numflux.pw.toml"
hash = "538ffeecff742ca3bbe254735525f185835ef03f9249152aba7c70488e80b742"
metafile = true
[[files]] [[files]]
file = "mods/nyfs-spiders.pw.toml" file = "mods/nyfs-spiders.pw.toml"
hash = "10e2d5565e299d0fafa79e7c949961bf692d9a15b5de146b2905ea7df0987d29" hash = "10e2d5565e299d0fafa79e7c949961bf692d9a15b5de146b2905ea7df0987d29"
@ -1356,6 +1428,11 @@ file = "mods/octo-lib.pw.toml"
hash = "e8100d935e20369ed13b31ea2423482eadd4c8ed123fd8e77320b12fa883dbb6" hash = "e8100d935e20369ed13b31ea2423482eadd4c8ed123fd8e77320b12fa883dbb6"
metafile = true metafile = true
[[files]]
file = "mods/overflowing-bars.pw.toml"
hash = "cb40fc0e1e0a3338d57b34a5ba2612ae9a9f0e32619695c4da637a98b4e52cf3"
metafile = true
[[files]] [[files]]
file = "mods/owo-lib.pw.toml" file = "mods/owo-lib.pw.toml"
hash = "46831c04077a06df823bcd0f254833a90a9a9ccc78f5069f4b4c27fa301ac0cf" hash = "46831c04077a06df823bcd0f254833a90a9a9ccc78f5069f4b4c27fa301ac0cf"
@ -1465,6 +1542,11 @@ file = "mods/pretty-rain.pw.toml"
hash = "8319748b7c1a39462d159ed94da5c972b99958628c776be8d7c1e4c48fdaa5eb" hash = "8319748b7c1a39462d159ed94da5c972b99958628c776be8d7c1e4c48fdaa5eb"
metafile = true metafile = true
[[files]]
file = "mods/prickle.pw.toml"
hash = "c99c5bac469e8d6ece5aae80f08635e3bbb8367f0c586b6288573c725faefe69"
metafile = true
[[files]] [[files]]
file = "mods/prism-lib.pw.toml" file = "mods/prism-lib.pw.toml"
hash = "d9b38ba42434eb436d036b1c8add839bee003240dc85cc54ec626aac58c59070" hash = "d9b38ba42434eb436d036b1c8add839bee003240dc85cc54ec626aac58c59070"
@ -1550,6 +1632,11 @@ file = "mods/respackopts.pw.toml"
hash = "90b9919bbe87b80bb3274228d6543adb328a51753b0741f6ea4d98441f268983" hash = "90b9919bbe87b80bb3274228d6543adb328a51753b0741f6ea4d98441f268983"
metafile = true metafile = true
[[files]]
file = "mods/responsiveshields.pw.toml"
hash = "6085325b661e439e982a471eddc3a390918db9be3dcd198e6faeb33f6d9aaff0"
metafile = true
[[files]] [[files]]
file = "mods/rhino.pw.toml" file = "mods/rhino.pw.toml"
hash = "6b91f46291891e725189b0bd54d0db0f66925b1e785bdfa737592dfcf41a79a3" hash = "6b91f46291891e725189b0bd54d0db0f66925b1e785bdfa737592dfcf41a79a3"
@ -1575,6 +1662,11 @@ file = "mods/searchables.pw.toml"
hash = "ce9ddada6ffd55a512149cc474c6a453281a997a5fdf1b7b4a2cc73f875e704a" hash = "ce9ddada6ffd55a512149cc474c6a453281a997a5fdf1b7b4a2cc73f875e704a"
metafile = true metafile = true
[[files]]
file = "mods/shut-up-gl-error.pw.toml"
hash = "2a5158acf9b23d9e23fc5097dbf3a12f57458a107b3a2d2794317c298aa203fa"
metafile = true
[[files]] [[files]]
file = "mods/silent-gear.pw.toml" file = "mods/silent-gear.pw.toml"
hash = "8ac4153d2c6f22dd251b8b733c15f71a8bd8dd94bdb9165d7eafe14d9d492dc3" hash = "8ac4153d2c6f22dd251b8b733c15f71a8bd8dd94bdb9165d7eafe14d9d492dc3"
@ -1690,6 +1782,11 @@ file = "mods/spice-of-life-onion.pw.toml"
hash = "6d22056366c7d5e3a8a79a8549a4b7209702d021590d8b3003de525f1bf29a63" hash = "6d22056366c7d5e3a8a79a8549a4b7209702d021590d8b3003de525f1bf29a63"
metafile = true metafile = true
[[files]]
file = "mods/spyglass-improvements.pw.toml"
hash = "08e7625da2ecef8e836652537f2bee175ee332809f235f6d3dece03f97d154bc"
metafile = true
[[files]] [[files]]
file = "mods/srdp.pw.toml" file = "mods/srdp.pw.toml"
hash = "c40cd6e94191418cc6f334ffc37d55f09064ab19623ea119b2e74c9688d82109" hash = "c40cd6e94191418cc6f334ffc37d55f09064ab19623ea119b2e74c9688d82109"

View File

@ -0,0 +1,13 @@
name = "AI Improvements"
filename = "AI-Improvements-1.21-0.5.3.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/DSVgwcji/versions/dGNP90t0/AI-Improvements-1.21-0.5.3.jar"
hash-format = "sha512"
hash = "ded870e90953ea915d24ac4c81799b95b321dda39936cd4cd620302b48882141fa3b9f1af658bdc6c25dc48de003223b91f3669b69efcc92c8666a3983f0fccc"
[update]
[update.modrinth]
mod-id = "DSVgwcji"
version = "dGNP90t0"

13
mods/allurement!.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Allurement"
filename = "allurement-1.21.1-5.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/eIO12l2t/versions/avOuW96I/allurement-1.21.1-5.0.1.jar"
hash-format = "sha512"
hash = "18fb094e60d8667caaff1eeb2c20364346cb97f42b3c8ea17982b1410ba25bb615dab642f3524d1c8b1603a246d5400d97d3bfb6931a85b9ba2873616bb14f65"
[update]
[update.modrinth]
mod-id = "eIO12l2t"
version = "avOuW96I"

13
mods/attributefix.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "AttributeFix"
filename = "attributefix-neoforge-1.21.1-21.1.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/lOOpEntO/versions/TyNITLDY/attributefix-neoforge-1.21.1-21.1.3.jar"
hash-format = "sha512"
hash = "09e1ff6012d5b7bef7bb701d38feaaab41db4f2fc8b9f669b820fc2c91e53098e093e401062ad80a0ce249c68aa7a6209ac9ee341518b8f640bae2393b1595ae"
[update]
[update.modrinth]
mod-id = "lOOpEntO"
version = "TyNITLDY"

View File

@ -0,0 +1,13 @@
name = "Beltborne Lanterns: Accessories Layer"
filename = "bl_accessories_layer-1.2.2-neoforge+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/geZ7ilkE/versions/217aqMLc/bl_accessories_layer-1.2.2-neoforge%2B1.21.1.jar"
hash-format = "sha512"
hash = "cfee104af6e496689805aa31eb2540df2c2da653cc269217d279a862d441bb60d000f950974a55078f815cc5bced054ed448fa04acf2dc0af964532b579d09ad"
[update]
[update.modrinth]
mod-id = "geZ7ilkE"
version = "217aqMLc"

View File

@ -0,0 +1,13 @@
name = "Bookshelf"
filename = "bookshelf-neoforge-1.21.1-21.1.81.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/uy4Cnpcm/versions/1sdJl7J1/bookshelf-neoforge-1.21.1-21.1.81.jar"
hash-format = "sha512"
hash = "78d4577a8e8fbb241216968475dd73f5b9e5efeb7da802b18a4e6c290e49af6cb4a5676e9855d0d8ff3613f967812e4bd363bbb9196c17c954d19454f84b2214"
[update]
[update.modrinth]
mod-id = "uy4Cnpcm"
version = "1sdJl7J1"

View File

@ -0,0 +1,13 @@
name = "Create: Create O' Plenty (Create + Biomes O' Plenty Mod compat)"
filename = "CreateOPlenty-NeoForge-Create+6.0.7-3.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/HgWaxodv/versions/k7AAVyW3/CreateOPlenty-NeoForge-Create%2B6.0.7-3.0.jar"
hash-format = "sha512"
hash = "758ef597ea2f1767d6f7a17bc6ea43c3a441b15fb8ff48d2bdcf71a7168f28e903d19c47547ac7fda3a02cd7c324ea7baab8ead18593b17a3799ae15642d77ec"
[update]
[update.modrinth]
mod-id = "HgWaxodv"
version = "k7AAVyW3"

13
mods/enhanced-ai.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Enhanced AI"
filename = "enhancedai-4.1.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/TDdoftI1/versions/538LxAV3/enhancedai-4.1.0.0.jar"
hash-format = "sha512"
hash = "ed003e0be771cd63dad2b54edb8ce966ed191e4607ae32bbf60cd9e6a7ea099f3cd781703a1796a717aba371b60d42be89be6ed308810bd4803cf285b3520501"
[update]
[update.modrinth]
mod-id = "TDdoftI1"
version = "538LxAV3"

View File

@ -0,0 +1,13 @@
name = "Farmer's Cutting: Quark"
filename = "farmers-cutting-quark-1.21.1-1.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/rH2QzhPh/versions/I8fsttD3/farmers-cutting-quark-1.21.1-1.0.jar"
hash-format = "sha512"
hash = "f52274e7168ea3ed5188f5383c5c4410f2981cb3906c2a9b16a46e336da3769ec687cbd5c600fe2ab89c1f9be8f2f6be55f58475546df4ffad9713ee6dbd6622"
[update]
[update.modrinth]
mod-id = "rH2QzhPh"
version = "I8fsttD3"

13
mods/insanelib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "InsaneLib"
filename = "insanelib-2.4.14.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/USZyvOJq/versions/Ao6r1EXw/insanelib-2.4.14.1.jar"
hash-format = "sha512"
hash = "63c3e784c92c820e018981dd26253a6c0e96f8609c401953aaed1961e286b9057f94a424b4f0e27c6c6fccd6765ca5b837f5b551bfa7b6e0e6f533b86427da81"
[update]
[update.modrinth]
mod-id = "USZyvOJq"
version = "Ao6r1EXw"

View File

@ -0,0 +1,13 @@
name = "Inventory Mending"
filename = "inventorymending-1.21.1-1.2.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/y6Ryy40D/versions/VeOSd0k4/inventorymending-1.21.1-1.2.jar"
hash-format = "sha512"
hash = "23a9fc9a48d0be75203a8f98f68439971bf5e984890956e7bbd9fc401e15ed77ae543b71f047ba8a182a6b0f29745eec5c27d5dd5cd6f6f682d92f67d57440ef"
[update]
[update.modrinth]
mod-id = "y6Ryy40D"
version = "VeOSd0k4"

View File

@ -0,0 +1,13 @@
name = "Inventory Particles"
filename = "InventoryParticles-2.1.0+1.21.1+neoforge.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/XYnKrsxH/versions/WghkDEe1/InventoryParticles-2.1.0%2B1.21.1%2Bneoforge.jar"
hash-format = "sha512"
hash = "b992d5184b5e99b4dfb71ccf1527b0c38e170a1eb98a9110e85645e5bb2582f33042dde6d883f4a630b8a25084f61bca9a8e516b3744a009073387d3a67a4c28"
[update]
[update.modrinth]
mod-id = "XYnKrsxH"
version = "WghkDEe1"

13
mods/jamlib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "JamLib"
filename = "jamlib-neoforge-1.3.6+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/IYY9Siz8/versions/n6UM6TcS/jamlib-neoforge-1.3.6%2B1.21.1.jar"
hash-format = "sha512"
hash = "c544322a31b5f3fe045cf80eb39e6bd59f91f209a0e510731daa0a6403a273f582769bb26277ef767b4c1ca6438316959d31a6a08e5aa4b1b5a9184a370e5135"
[update]
[update.modrinth]
mod-id = "IYY9Siz8"
version = "n6UM6TcS"

13
mods/mossylib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "MossyLib"
filename = "MossyLib-1.1.0+1.21.1+neoforge.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/ffLDUGbm/versions/eXqQAiDq/MossyLib-1.1.0%2B1.21.1%2Bneoforge.jar"
hash-format = "sha512"
hash = "a9d4aa45dc9db57538169228abb689906338dd495d8904d5167b65295b6d1d0fb95d23967af0ee54843a4bbbe84969ac4633fb5cabc90b648378c52579526166"
[update]
[update.modrinth]
mod-id = "ffLDUGbm"
version = "eXqQAiDq"

View File

@ -0,0 +1,13 @@
name = "Name Tag Tweaks"
filename = "nametagtweaks-1.21.1-4.0.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/LrLZEnPl/versions/5Qka8LfN/nametagtweaks-1.21.1-4.0.jar"
hash-format = "sha512"
hash = "de74cd8c264f9f5a4b18fa45486459891ca2976907e00627b1dd72b5ded61c97c5b7715f0b880c2c622cc9ca28d75be8af29aeee812001eaa93a395918deda49"
[update]
[update.modrinth]
mod-id = "LrLZEnPl"
version = "5Qka8LfN"

View File

@ -1,13 +0,0 @@
name = "No Telemetry"
filename = "no-telemetry-1.10.0.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/hg77g4Pw/versions/cBEkQM9c/no-telemetry-1.10.0.jar"
hash-format = "sha512"
hash = "a123e59ee7cb9de88669de06d56f5313cc60ee5ec80b0cc407ca0cff3b54b81255fba65e615fa7a33142b8030868e0c2a4cf9bdeadda7b3c593d707eff45576d"
[update]
[update.modrinth]
mod-id = "hg77g4Pw"
version = "cBEkQM9c"

View File

@ -1,13 +0,0 @@
name = "NumFlux"
filename = "NumFlux-1.0.2-1.21-1.21.1.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/1Bm2WDXm/versions/jfpYPsMk/NumFlux-1.0.2-1.21-1.21.1.jar"
hash-format = "sha512"
hash = "78bd9ef117e3725481bc7735d5a15e77fc28ee833ded5b3d406886af1a1a96d84e4c5bda5bb2d2201f43b5f84bb9bf45b7b671cd2e90d62390a13c68a7a6ea6e"
[update]
[update.modrinth]
mod-id = "1Bm2WDXm"
version = "jfpYPsMk"

View File

@ -0,0 +1,13 @@
name = "Overflowing Bars"
filename = "OverflowingBars-v21.1.1-1.21.1-NeoForge.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/XD7XOrAF/versions/PYRrjTaY/OverflowingBars-v21.1.1-1.21.1-NeoForge.jar"
hash-format = "sha512"
hash = "2962a12664e24711096d9be98bfda2ae0b86c5050d0860a36b3567870d794767d308328060c6fbe4f4854b569d97ce465b8b250775f3ae7a5d0a563f342a4136"
[update]
[update.modrinth]
mod-id = "XD7XOrAF"
version = "PYRrjTaY"

13
mods/prickle.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Prickle"
filename = "prickle-neoforge-1.21.1-21.1.11.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/aaRl8GiW/versions/EE1FHDyD/prickle-neoforge-1.21.1-21.1.11.jar"
hash-format = "sha512"
hash = "154d42795ccf1f3e07714775cdb82fd5db17574319286ced13d86b0456b64e4cf5bb89ffbcbfcefce67b73ed0b83e4e2944e493d79d9a385ff9de23006ee7bf5"
[update]
[update.modrinth]
mod-id = "aaRl8GiW"
version = "EE1FHDyD"

View File

@ -0,0 +1,13 @@
name = "Responsive Shields"
filename = "responsiveshields-2.4-neoforge-mc1.21.x.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/MBmh0f9A/versions/mNqXF51P/responsiveshields-2.4-neoforge-mc1.21.x.jar"
hash-format = "sha512"
hash = "a0a16cb52ba862919c9a797cd6bf4d45fea029efe7d4354c99a8a334b101a26bbefdacfd935cf0e6939d4c9cf3fcdb0c166b8f468709d5e94c1666fb799348bc"
[update]
[update.modrinth]
mod-id = "MBmh0f9A"
version = "mNqXF51P"

View File

@ -0,0 +1,13 @@
name = "Shut Up GL Error"
filename = "shut_up_gl_error-neoforge-2.0.0+1.21.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/houIxdGF/versions/ZBew9Akz/shut_up_gl_error-neoforge-2.0.0%2B1.21.1.jar"
hash-format = "sha512"
hash = "327811f96d219655a141e72e51226425d671a5890079264dcd1b933f326f30b8dde17ce593ab10fca523221e76273c6939835a4cc7a397bfe5d7f3fe8cf6f32d"
[update]
[update.modrinth]
mod-id = "houIxdGF"
version = "ZBew9Akz"

View File

@ -0,0 +1,13 @@
name = "Spyglass Improvements"
filename = "spyglass_improvements-1.5.7+mc1.21+neoforge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Z6ykjRlM/versions/F2s6rUr5/spyglass_improvements-1.5.7%2Bmc1.21%2Bneoforge.jar"
hash-format = "sha512"
hash = "6b4933795f3fda0d8c042c35c8f95ce47db88f2ec06b15a6c803298e660a1cb18223ed5fcb96d15aeabde540abf050f3a19ca23ebad4d060afc8860174af937f"
[update]
[update.modrinth]
mod-id = "Z6ykjRlM"
version = "F2s6rUr5"

View File

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "eba4b39685e7a8cc46fa4e0936d68b2e0d556243f99097e244b94e6411eab77d" hash = "293da7a492dd9d691c9c55786c2f68f7dfecdaa171691ca588e76fa89156a3ac"
[versions] [versions]
minecraft = "1.21.1" minecraft = "1.21.1"