Compare commits
13 commits
Author | SHA1 | Date | |
---|---|---|---|
0d8be7cf13 | |||
93010e74da | |||
d1862cab10 | |||
21f543af4a | |||
0bca870b6e | |||
c89462305d | |||
2b61d37121 | |||
6d980564f4 | |||
2982941f86 | |||
8c09399b93 | |||
498268b3a4 | |||
7fafa65d0c | |||
ee71678a5b |
93 changed files with 714 additions and 876 deletions
260
.minecraft/config/travelersbackpack.json5
Normal file
260
.minecraft/config/travelersbackpack.json5
Normal file
|
@ -0,0 +1,260 @@
|
|||
{
|
||||
"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,
|
||||
// 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": true,
|
||||
// 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,
|
||||
// If true, backpack can only be worn by placing it in Trinkets or Accessories 'Back' slot, WARNING - Remember to TAKE OFF BACKPACK BEFORE enabling or disabling this integration!! - if not you'll lose your backpack
|
||||
"trinketsIntegration": true
|
||||
},
|
||||
"backpackUpgrades": {
|
||||
"enableTanksUpgrade": true,
|
||||
"enableCraftingUpgrade": true,
|
||||
"enableJukeboxUpgrade": true,
|
||||
"pickupUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9
|
||||
},
|
||||
"magnetUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9,
|
||||
"pullRange": 5
|
||||
},
|
||||
"feedingUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9
|
||||
},
|
||||
"voidUpgradeSettings": {
|
||||
"enableUpgrade": true,
|
||||
"filterSlotCount": 9
|
||||
}
|
||||
},
|
||||
"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"
|
||||
],
|
||||
/* 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:dragon; minecraft:regeneration; 260; 300; 0",
|
||||
"travelersbackpack:dragon; minecraft:strength; 250; 290; 0",
|
||||
"travelersbackpack:quartz; minecraft:haste; 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": true,
|
||||
// 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
|
||||
}
|
||||
}
|
|
@ -61,7 +61,7 @@
|
|||
"mrMovingCamOffsetRotX": "0.0",
|
||||
"mrMovingCamOffsetRotY": "0.0",
|
||||
"QUICKCOMMAND_9": "take this!",
|
||||
"waterEffect": "true",
|
||||
"waterEffect": "false",
|
||||
"QUICKCOMMAND_1": "/gamemode creative",
|
||||
"menuBackground": "false",
|
||||
"QUICKCOMMAND_2": "/help",
|
||||
|
@ -94,7 +94,7 @@
|
|||
"crosshairScalesWithDistance": "false",
|
||||
"autoCalibration": "-1.0",
|
||||
"renderInGameCrosshairMode": "ALWAYS",
|
||||
"worldRotation": "-90.0",
|
||||
"worldRotation": "0.0",
|
||||
"displayMirrorCenterSmooth": "0.0",
|
||||
"alwaysSimulateKeyboard": "false",
|
||||
"keyholeX": "15.0",
|
||||
|
@ -106,11 +106,11 @@
|
|||
"RADIAL_0": "key.travelersbackpack.inventory",
|
||||
"disableGarbageCollectorMessage": "false",
|
||||
"RADIAL_1": "",
|
||||
"RADIAL_6": "vivecraft.key.rotateLeft",
|
||||
"RADIAL_6": "",
|
||||
"RADIAL_7": "vivecraft.key.quickTorch",
|
||||
"doorHitting": "true",
|
||||
"RADIAL_4": "",
|
||||
"RADIAL_5": "",
|
||||
"RADIAL_5": "vivecraft.key.togglePlayerList",
|
||||
"rememberVr": "true",
|
||||
"hudOcclusion": "true",
|
||||
"RADIAL_8": "",
|
||||
|
@ -136,16 +136,16 @@
|
|||
"sneakThreshold": "0.4",
|
||||
"ingameBindingsInGui": "false",
|
||||
"RADIALALT_4": "",
|
||||
"RADIALALT_3": "vivecraft.key.ingameMenuButton",
|
||||
"RADIALALT_3": "",
|
||||
"RADIALALT_2": "",
|
||||
"RADIALALT_1": "",
|
||||
"RADIALALT_0": "key.travelersbackpack.cycle_tool",
|
||||
"RADIALALT_0": "",
|
||||
"mirrorCrop": "0.15",
|
||||
"mixedRealityKeyColor": "0,0,0",
|
||||
"oscTrackerPort": "9000",
|
||||
"showPlayerHands": "true",
|
||||
"realisticJumpEnabled": "AUTO",
|
||||
"vrRadialButtons": "6",
|
||||
"vrRadialButtons": "8",
|
||||
"shaderFullSizeShadowLimbs": "true",
|
||||
"originOffset": "0.0,0.0,0.0",
|
||||
"vrToggleButtonEnabled": "true",
|
||||
|
@ -224,7 +224,7 @@
|
|||
"shaderGUIRender": "AFTER_SHADER",
|
||||
"displayMirrorLeftEye": "false",
|
||||
"selfButtSparklesInFirstPerson": "false",
|
||||
"vrEnabled": "true",
|
||||
"vrEnabled": "false",
|
||||
"hitIndicator": "true",
|
||||
"walkUpBlocks": "false",
|
||||
"seatedFreeMove": "false",
|
||||
|
|
|
@ -12,6 +12,10 @@ hash = "0c0284a0d51413f4688c0e98fcc9095ec3de4479dce9c7ef9a5dd43361e8c9b1"
|
|||
file = "config/simplemenu/icon/icon_32x32.png"
|
||||
hash = "6cfd7ed95f1d805d383de2a0743dd0dedb22f15939302e969b304d7e967760e7"
|
||||
|
||||
[[files]]
|
||||
file = "config/travelersbackpack.json5"
|
||||
hash = "b56cd6b71b06008c9a3694542df24bcc6e7098822a804838f63036b46bccfd84"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/betterf3.json"
|
||||
hash = "8254cc98fc6b737bac12f0e368d8918169fb1c2cf6116961cff1bc7d465ee316"
|
||||
|
@ -38,7 +42,7 @@ hash = "00b2b137a2062ed20ab5b8953279ea415ba4fd9e7eac075e787ed58373860887"
|
|||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/vivecraft-client-config.json"
|
||||
hash = "af80c6b2e3861c39eaf91c5821ecebdade171f7f731c233fb7658f071c3187d9"
|
||||
hash = "65ca79a55ddc49ea223704dc373af26ffe27d3661ebf6a1bc7d59600f8e351b9"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/mods/luckperms/yaml-storage/groups/admin.yml"
|
||||
|
@ -65,353 +69,243 @@ file = "icon.png"
|
|||
hash = "50f74a7debb4a852e1384434500515f2478b8dcf0d71b75eba148ca34d89715c"
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-api.pw.toml"
|
||||
hash = "e12dce3e543168379a2856c66064ee2001e6420a9dfc6163f37b78e518947456"
|
||||
file = "mods/accessories.pw.toml"
|
||||
hash = "4a2fa8e0f69aff17b49922ecace2882d4e593e5a554abfccbdbc9ffd879a0cbd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bettercommandblockui.pw.toml"
|
||||
hash = "6da189b0c8713f4c7b81af3fd8207aa4c473ccabeee1770de7da1538efca0b15"
|
||||
file = "mods/adorn.pw.toml"
|
||||
hash = "ef9bf76e6e39576898d05b7858b6f3dd3e1847e7cc23fffdfd72f18de1d7fc51"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/advancedperipherals.pw.toml"
|
||||
hash = "7ba6741d176fc158b20cf60442225fd589f7ec02a20444f9ddebae8e7c65b029"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-api.pw.toml"
|
||||
hash = "ea336d25c3e21ef168aec20e1ea470c96949ad29632646ee8e8ab0d74b4bbfc9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterf3.pw.toml"
|
||||
hash = "a1e024094c28068c99a6da1c5867cbd4e66a315718039659bfa533a138762d9e"
|
||||
hash = "c9aca350959a8936b054c7164fb55d789ab1e0d38cff2af48b78f70af2bc0c6d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bluemap.pw.toml"
|
||||
hash = "f96656076717dcadf38073af32ce253b2cfd0f5ff1785c03450e146f06213ee3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cardinal-components-api.pw.toml"
|
||||
hash = "127f0a7311e4ecd77c0b96660e0ff873d78d253fffb68db6101eeb414de38bb1"
|
||||
hash = "e2ed64320795cd8230e65637d288bcd96939da1af562b9b5cdaaf811e6beb14a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cc-tweaked.pw.toml"
|
||||
hash = "c1079c786922de32eb7603ae24653090beccae44286f96790bf7729fd5f33764"
|
||||
hash = "ce8d74915fb947fb51f57ffb89b4be3ea9fc794c806f76ff06db11cc9897c5b6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cloth-config.pw.toml"
|
||||
hash = "41a3dc271859b118417946d2fdb2408523563b2f4f49048073672a342fb1aebf"
|
||||
hash = "75181b55e0407d1fca1e2f346c6501f919f5109545990ddfb66db9cd1b771f8a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/collective.pw.toml"
|
||||
hash = "299cadd914e01b3b3f1aac013d3b4a22e89e1fbe1934c9a0f7b65034bb8257b1"
|
||||
hash = "42f218e9224754a2d344f584433b43b67b7c0400aca3feba07cd344a1ca228ae"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/command-books.pw.toml"
|
||||
hash = "717140c0c750d0628268b8dba5ac55bca8e600626a49f9c5b88a883719c4361d"
|
||||
file = "mods/copper-reforged.pw.toml"
|
||||
hash = "200526f14756834db07e82714573a4cc93cee3925e54d7093393a4be979f10c5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/controlify.pw.toml"
|
||||
hash = "6c0a8f7c8e833b356f83de4e60952642c669d788ff49be95458b5a50979796f1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/embeddedcomputer.pw.toml"
|
||||
hash = "953a1beeb4f51f10ea7ce7fa66614bda88599d45384ec5981d06519d1c1e4a75"
|
||||
file = "mods/custom-player-models.pw.toml"
|
||||
hash = "ce4b995e0fd36ae1725e1121561a447358d818e1db3172d78999da042d31ba1d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi.pw.toml"
|
||||
hash = "af8a0e02b6d8e380087e02fd7441bb7c546d6ab20d5f7642e04925e74cbd7659"
|
||||
hash = "310c853e2f2914fc72d5ce427cc8357510402fab10c05d4c0184d50d5052314c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.pw.toml"
|
||||
hash = "c3bf7d6d25260b023f8cd2906527bf2ddfe36eb7929894ac0ae6d61abe2328cd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "c7763ceed9929d3364030c01a4602628ebf46a028d55e7dd06f5aeb6280d36a3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "bb9a29a48b27e7abc0799d4393240ae2cdcf7d64341c9a63347769173f8bda2e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabricord.pw.toml"
|
||||
hash = "f8e20daadcf904e8c8522fecfe25dcb3368d4c03b692db8062dc79841eb1e5b5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fwaystones.pw.toml"
|
||||
hash = "8a1832e5352f6ea6307b9af759034ac9a9b654823120cc8181f7f36171d7c24f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/held-item-info.pw.toml"
|
||||
hash = "b085a13f441287ee000f3d17b49755741ed738a2a296fe349c79c01ed9d81350"
|
||||
hash = "ee7f8452c2c1a9f5a4d67fb44e69c9ec0d18725ac383af40afbbc1d1157407c2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immediatelyfast.pw.toml"
|
||||
hash = "b24899fa80266f775c2a5ad945f01fced39a3d747ac633cdd20f52cb9c921aac"
|
||||
hash = "682e83efe5ebc5db45f4f74afa47b0f5f82a3ffc38b5c548332c7bad291bbaa0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immersive-cursedness-updated.pw.toml"
|
||||
hash = "aeab78632332830c82e615d277dacf55ef690c8eb899e02c14f07af54b302487"
|
||||
file = "mods/immersive-lanterns.pw.toml"
|
||||
hash = "0c9eb7002bd08576fb9b666cfaa103098eaf1480fd553ba3471b9568ac145e37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immersivemc.pw.toml"
|
||||
hash = "88686f13a04783dffb842499f1632ba2f25a2a6919c9115b2b7f338fb67f8265"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inline.pw.toml"
|
||||
hash = "06ff4315690ac68d88776ed29740ad1515746a382f4ac47ecde0566cb16333b8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inventory-tabs.pw.toml"
|
||||
hash = "cf11a2f3584998ee7f7708e84d5b4d7ca06f3a74566628e213b632a521ae27fe"
|
||||
hash = "406a9a840c9b542dcf2b278fd689816b1e81bfb933ae42c19c2077cae8cbef4c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "956298b1bbab6d8bfb5074b169d8d24d04d688182edf8af885bbefc6cc1d9c27"
|
||||
hash = "ca8e90d44722f5fe35427d7ad1f7f34ce78155031a6dc76dfd11dd4064873693"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jade.pw.toml"
|
||||
hash = "9189950e68af278daaef951d8ef23b06f567f27d8c9f50df898ac0117d35c93c"
|
||||
hash = "298501d10980ed74135b92bb0ce3aea2008094c682176cdcf9e6274c03690407"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jei.pw.toml"
|
||||
hash = "4b2d106ce00d09612a66ced11538304eedc540267a285976da54da8f2f624eb2"
|
||||
hash = "77b86ca843207273549875640b1c16254c2486e67127c37344c186b503da96ed"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/kitspaxels.pw.toml"
|
||||
hash = "d488587147730c91ee746c15d623bb9ff14a2659ff838ffd2fdb7d68fc065a27"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/krypton.pw.toml"
|
||||
hash = "9063bac3fdf585a43d318e3f9773475a28ecb8fe80bc7689cc480851eef97420"
|
||||
file = "mods/kotlin-for-forge.pw.toml"
|
||||
hash = "0033c5a00c46d5d7b6cf77b19fa76ce5c78a613f3128dcadb3588fa5841ae489"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/kubejs.pw.toml"
|
||||
hash = "ead6f125d759a3bc5892416204319369836742556943d5fed6220dbdb8f32913"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambda.pw.toml"
|
||||
hash = "7285c595ee4127c2999ac86b67168aadd4ff7fe894ba847d1fbc4d27e0d703a0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdynamiclights.pw.toml"
|
||||
hash = "62dcbd50ca504de26da23305b6e1578298b6cfd14fb98118fcd471cf128d4337"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lavender.pw.toml"
|
||||
hash = "ac014dfa07ca7716893c200aa128062220012441992683c35e6e7ec966d01069"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/luckperms.pw.toml"
|
||||
hash = "ed322399f2f703b5cc9f6652d85e8eb215a53c7acbeef27964c0d6af7400561a"
|
||||
hash = "eba62fcfbe8678c035ef239481af4f01b21b33d198f8bf7467726e02bf37f845"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mc-vr-api.pw.toml"
|
||||
hash = "b0d1514622d4ff882428ed3a9c0e94c68353c2b0a8275f5de56427d5bf5e3cca"
|
||||
hash = "f0e281e1e2dadfc65e6d8d3189d143120f86ec75a0cb27077e55216847df729b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mod-loading-screen.pw.toml"
|
||||
hash = "bee03a9e23c530a510995de10798d634fe63a52edc9e6e1e46a3b8cc75608750"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "d7145fd1bd8b4bb6a3b84652a96a68870fb3ab32230f27520bb9362fd17ec39f"
|
||||
file = "mods/morejs.pw.toml"
|
||||
hash = "01b7385901301a4e71c6aacfd944bdab25480b2e9a63f68b1154e10ae2078e25"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "9ce6efc7149cdae2deb751b4ebf2d220700cc1b204e7a1d026275203387f106b"
|
||||
hash = "5da18814472be5dc93a21886983646da3a7236413800075ac75229be82d114fa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-kebab.pw.toml"
|
||||
hash = "38862cdc5bed116ab7faf8e26bfabf3e098f4578374d91de0a710635ad795107"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/one-slot.pw.toml"
|
||||
hash = "b2a33b058f1a21b0ed07f2ff76c52d2ea8ed1d8be3cd059d5f6c0931a0bf3516"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/one-world-folder.pw.toml"
|
||||
hash = "5364e86ec495b0aaeb918c1681e43c756569b6402dde602e3d670cd9b56bab46"
|
||||
file = "mods/oneslotatatime.pw.toml"
|
||||
hash = "c777b439098696bb1d1f8134b7b92f3ac7d96d1e29205fdd127146382650b8b0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/owo-lib.pw.toml"
|
||||
hash = "df4c4fe3aff1792aa7d19d097d5d1bc0c6e958e6e4ee32dbf148ecac62e1274d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/paradise-lost.pw.toml"
|
||||
hash = "e950c7b54e6888450cf526fb99cbbda3e7091855d9fdc5c905965d55aefbf64c"
|
||||
hash = "d6f63a47571142655b5030749ede2ab92c3fa830bdd3fcf3f6381e7f75f9f9ab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/patchouli.pw.toml"
|
||||
hash = "3c2fe6485d980a094a5094263d9d54dd59bd4cfd37439109be561894342a82f8"
|
||||
hash = "87fb28047d648087f2fe4891ddf9d3c394b9c5c29eaf4f3970fb7c32520e6fcf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/paucal.pw.toml"
|
||||
hash = "49ef3ff0a74c6338f2160c4ee683ae34f745a38c0c87f2d7527e4f88406113fe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/placeholder-api.pw.toml"
|
||||
hash = "3c5a5fe2267f93188d7e41f7a06ea09a64b40224b90f601e42cf666c16f12268"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/plethora-peripherals.pw.toml"
|
||||
hash = "db59870600051c25e50b724489fc5a5e106fe9ef454b24195a7b918421127819"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/polydex.pw.toml"
|
||||
hash = "5746366d8f3d8cfafd480a94b3bbc11ef14c67e237f5d62cab941e2f8a857f0b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/questbind.pw.toml"
|
||||
hash = "8479bef7201ea06500248741a43b6a360317f8ad93932304e213ab5675103839"
|
||||
hash = "51b0b44901aa98943a87ba02446b497b7acbc7177b8f320ed64ec5ddc3b1ccd8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/raised.pw.toml"
|
||||
hash = "0a9528a9eefb844f3ba9f7663f4b2efdceb8e6f2730039d91613c6368f3190f3"
|
||||
hash = "e1a8901cb576171c4795431ef8cd8488d4d14f2329a94b09f48a05a0d249297d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/reeses-sodium-options.pw.toml"
|
||||
hash = "09306b955060349986ccf6a6d2a67f1e019fa172a7dc690dd6007f81c966309a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/resourcify.pw.toml"
|
||||
hash = "fb53720ae88ceae5766d15a3e85da6d9ab4648f09c769cc2c68fa30dd8a120ea"
|
||||
hash = "c5856f1225bd85cc7ee1020a916e6ca23cb12e94e23bd230e3401ec287ba6ee0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/rhino.pw.toml"
|
||||
hash = "82c3a531c2180cd45f59e433315e31dc886c464a05ea38ea0b82ce1bc033c520"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/scoreboard-overhaul.pw.toml"
|
||||
hash = "7acca672f677d71f15d7600d1228504846176eceb4a2e78edd9acc53bbae719a"
|
||||
hash = "4c4185186dccb224e20da04103e40c32cfe11b8c6884b83e8d6ac60857daf969"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/scribble.pw.toml"
|
||||
hash = "fee68cd6364039d9eca94c1451ae165b41df6579122682d8a97d70ed08c6b0f3"
|
||||
hash = "91f1f920400ff87bcfebaf9730e7542f14406ebb4339e008ab285b1498366621"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-menu.pw.toml"
|
||||
hash = "5c7d82478607ca14645e77b2806a5a6263f93a922d7327f1b80c22186243ed85"
|
||||
hash = "713745235a8e71c9d9ed781148e57055e653fd453215a8a0af9006993d412a81"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "d7062507251f577355a3c3e4fd3bc33ea9ac0e74ad0da2c8f0eb6c9b9c182b99"
|
||||
hash = "dad89fb25fc4a750617432cbc34b34642f34b8a859e4cf54dce073a22fc57709"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-dynamic-lights.pw.toml"
|
||||
hash = "c1e526d3d17cb3563e596d45c7567ed1fe60c31bdc3457f7a747ef8150bd3c1b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.pw.toml"
|
||||
hash = "6b7e9ed619297a29eb6db95f860734144876aa68922de63a05409b65ad8bd163"
|
||||
hash = "a1fb713df668ed21dda0602e99cb23b991c8faff841e130d7aae46258c3d6a45"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-options-api.pw.toml"
|
||||
hash = "d193173f0f5dfb4a921d44e29e8d5cee656dd3a40872939069715bb482b66fc9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "350cd01b8b55cea244c2b0ea7bb3c9a6ba873cea4701528c62101c63af6b027a"
|
||||
hash = "ab62ac9b05aa8006916a718e2fc0a0caf658f2bbb83ec2b2dbc8f446be9f4673"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/spark.pw.toml"
|
||||
hash = "f010bbe486733738e92241d10f403e28a8feeb40b45ec3af3b2270523f955216"
|
||||
hash = "515ccee1b6111ad213d832d5a7e266d126002a5fe65b072e4e0594afa3b3b55e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/starter-kit.pw.toml"
|
||||
hash = "2b1479366d24ef01ab3eaff64d33f80d8df02891d6bbcff18dcc369c8564543b"
|
||||
hash = "97380b4a75e63fadd64a671c11e72c1b2ade23ed54625a55f91266d4f3389dcb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/travelersbackpack.pw.toml"
|
||||
hash = "d75813225a16b18a49c14e9a34d9d54d0e1bc54cbafca3c628415f74ca702f61"
|
||||
hash = "833de5ef3fb7b57b7af7b19b35a5889e425bdbcabc19d044320a291b274e57b3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/trinkets.pw.toml"
|
||||
hash = "ffdb79f5bc29f990e5889f5d159a043c7046b8cd8d79f17f54b44d7ccc2b242a"
|
||||
file = "mods/txnilib.pw.toml"
|
||||
hash = "5d06ef12684aea93cb5470df728a39ee5db142cd336d91b58bce5d25203e2578"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/vanilla-permissions.pw.toml"
|
||||
hash = "c503ae1b7776f27fb923cf558c70ab90c432b7990838c02a4563d145af6edc11"
|
||||
file = "mods/vanishmod.pw.toml"
|
||||
hash = "074da6919936ca89bbdfcf2295e9181eca8018dd3e607f6876539f4ce219eb66"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/vanish.pw.toml"
|
||||
hash = "f75ab965e4eb71aefb05a30a80433b94d582e6a68eb5e4d54a06dd43b0181244"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/victus.pw.toml"
|
||||
hash = "7b21145f12fd0c686b4a65b20b1759bfeeba81f28c5233a0da8c8e34936e13e6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/view-distance-fix.pw.toml"
|
||||
hash = "31c2a0e56c320f751bf53a44d3f1bcdb4e3ab268b8d26543bc7ec2c638e52487"
|
||||
file = "mods/vivecraft-compat.pw.toml"
|
||||
hash = "8f1d68107f471068763f7eab8aa102883489e92bc99e66c3319bd779eb7a805b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/vivecraft.pw.toml"
|
||||
hash = "b9b5cd6ab48e4428e00a7cec1cf59b429e1db775c2cbdac16d9d2e06ab145631"
|
||||
hash = "fa0ebc381cb564ae6a12a547d1678c389cd0816f887a317d9e628621ecf13f88"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/vrjesterapi.pw.toml"
|
||||
hash = "c91fbba233fc7178662b4a5b58e89764dc17e5e2edf912be6abd5d64633fae3d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xanders-sodium-options.pw.toml"
|
||||
hash = "0cc28ae40cd511d464f215d66898d3d72f8c66b378ffb9f72ea9b4412d61a971"
|
||||
file = "mods/wooden-hopper.pw.toml"
|
||||
hash = "614d06320852f13033033c95f4a91e967ed91e731ca6a26dd09532ea7eda0259"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yacl.pw.toml"
|
||||
hash = "88121fbabab3563f8dbb84a32347c753d23eec466c1df3225570cdb42e251029"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yosbr.pw.toml"
|
||||
hash = "1bb9b2e75c6934b1f18648e9b37e20abcf6a4a2547c7cdb0abe88407267e0c10"
|
||||
hash = "0281b8b48ff7e5dbc1181a3d38f564534e5ec3712b819ac3bb11ea1695de7d2c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
|
|
13
.minecraft/mods/accessories.pw.toml
Normal file
13
.minecraft/mods/accessories.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Accessories"
|
||||
filename = "accessories-neoforge-1.1.0-beta.28+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/jtmvUHXj/versions/BrvdPIz0/accessories-neoforge-1.1.0-beta.28%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "866aa6e38500102708558680bfd7dcdac70fd643d2a552f490f50f86a12b430dddb13820c196025fa5ed65201e77680ff72e2d929f07d9a106b5b2fee3106ad7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "jtmvUHXj"
|
||||
version = "BrvdPIz0"
|
13
.minecraft/mods/adorn.pw.toml
Normal file
13
.minecraft/mods/adorn.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Adorn"
|
||||
filename = "Adorn-6.0.0+1.21.1-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/E6FUtRJh/versions/mmsaJjzI/Adorn-6.0.0%2B1.21.1-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c1baa7498a7dee7a6c1cac7735c6d318025c25e0bb4f9cab688215d0891d580a940a1fdf869aa012b4ddcc72a7038298a9a3d03f97cbaed2aa6f1eb362607148"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "E6FUtRJh"
|
||||
version = "mmsaJjzI"
|
13
.minecraft/mods/advancedperipherals.pw.toml
Normal file
13
.minecraft/mods/advancedperipherals.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Advanced Peripherals"
|
||||
filename = "AdvancedPeripherals-1.21.1-0.7.49a.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/SOw6jD6x/versions/UVWcaeN6/AdvancedPeripherals-1.21.1-0.7.49a.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9ec4d05f5dbce0ae69581ac5a99a02ca03407f73ea107c91742f587d66b85284c37cb29ead9772d54f9378aefad860d611018c5df87a7b3c0388c8afe6755776"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "SOw6jD6x"
|
||||
version = "UVWcaeN6"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Architectury API"
|
||||
filename = "architectury-9.2.14-fabric.jar"
|
||||
filename = "architectury-13.0.8-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/ZxYGwlk0/architectury-13.0.8-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de"
|
||||
hash = "65e3664953385d880320dd6bb818bcb96d361c07c53e2a7f65e64c6a47720ee26b233224ae9cad465ef0b2bbaefdaf30fb0175a983cecd91de058817d6fcf57e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "lhGA9TYQ"
|
||||
version = "WbL7MStR"
|
||||
version = "ZxYGwlk0"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Better Command Block UI"
|
||||
filename = "bettercommandblockui-0.5.2-1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8iQcgjQ2/versions/i9cfZYZy/bettercommandblockui-0.5.2-1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "61a89ccd7be2228b3b4ff365f915dd8daa6558f1a63bf86ef906627ce55ff78ee3ef8f9e29def91c1ed16b4b851da7324980cb49f40b56cb4602d8ee62823954"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8iQcgjQ2"
|
||||
version = "i9cfZYZy"
|
|
@ -1,13 +1,13 @@
|
|||
name = "BetterF3"
|
||||
filename = "BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
filename = "BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/7WkFnw9F/BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/maXNB1dn/BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1b1f5bae45050bf01a23c57cfe94b7f42c6e0e9d669150effc04d3d09fd43c2dbea6c634117309ab1ee11253fcdb3c6061a9034e963b7f08476a76f1e98c3b8a"
|
||||
hash = "59c36a882669399dce2110db42df05e8fe935a2e1194c4bac49abffc3129b2e19373dfe3c4a3d2f8b22f21b1d66ad8cbd653944ce0a71ae05d3d65528d1b7514"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8shC1gFX"
|
||||
version = "7WkFnw9F"
|
||||
version = "maXNB1dn"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "BlueMap"
|
||||
filename = "BlueMap-5.3-fabric-1.20.jar"
|
||||
filename = "bluemap-5.5-neoforge.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/lHRktt6S/BlueMap-5.3-fabric-1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/Hp4CqBgz/bluemap-5.5-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d3a3173cd3f6d19f5a868562d25a902a3f8936246d8a21613fe57b14497c81b989f094fa899eb6f879ffd8d0768ed354e6d8e6e6c750b4254edef8e9a2b727bc"
|
||||
hash = "3c03ccedd15519449c35e5b6cb6ccd37de5605216739a69d2d073969c8bc0c1cb9924c162bf6458036e1aec68be0b9eafb874c92f60fac3837864b9ae509dc5f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "swbUV1cr"
|
||||
version = "lHRktt6S"
|
||||
version = "Hp4CqBgz"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Cardinal Components API"
|
||||
filename = "cardinal-components-api-5.2.3.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/Ielhod3p/cardinal-components-api-5.2.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f20484d5bc780bee9b388ff6075e7c3bd130c7f8cae75a425bfd1fb68d03ca19288c09b0729992987fd32f3a2433b49c25162e086de82abd8d06ee45e4e3c917"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "K01OU20C"
|
||||
version = "Ielhod3p"
|
|
@ -1,13 +1,13 @@
|
|||
name = "CC: Tweaked"
|
||||
filename = "cc-tweaked-1.20.1-fabric-1.114.4.jar"
|
||||
filename = "cc-tweaked-1.21.1-forge-1.115.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/ZUz8hsy1/cc-tweaked-1.20.1-fabric-1.114.4.jar"
|
||||
url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/wXE3hsMq/cc-tweaked-1.21.1-forge-1.115.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "496d7073ea2e9a556da51a1620c32c9cec9e9f22925bfbe2780e2bca16b96fe7e8869b1a38ccd38ad38a5771d386ec5253899469c1bfbc86ebcbaf106f6bc922"
|
||||
hash = "71597fc604b1b17b205422edda3cffb12eee8c49a945d6dcfad3b78d662816c5900431ac6999035a4035c3e5b86f12dc092ef38d7123e390cea93bf7fca633d3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gu7yAYhd"
|
||||
version = "ZUz8hsy1"
|
||||
version = "wXE3hsMq"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Cloth Config API"
|
||||
filename = "cloth-config-11.1.136-fabric.jar"
|
||||
filename = "cloth-config-15.0.140-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/izKINKFg/cloth-config-15.0.140-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c"
|
||||
hash = "aaf9b010955b8cd294e5a92f069985b18729fd5e2cf22d351f1dff9680f15488688803ec41e77e941cbde130ceb535014ca4c868047d80ab69c2d508e216654d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9s6osm5g"
|
||||
version = "2xQdCMyG"
|
||||
version = "izKINKFg"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Collective"
|
||||
filename = "collective-1.20.1-7.91.jar"
|
||||
filename = "collective-1.21.1-7.91.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/kRVILcx8/collective-1.20.1-7.91.jar"
|
||||
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/QIVuPeva/collective-1.21.1-7.91.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8af00c11786772e071989cc37c52bf94e20b499cbe0917434c0bd7d348fc003a8f21757a2b50b4b107d0190a17a69bedc2ee7b50888a2de8e614763e7e9d5b31"
|
||||
hash = "0cb9f58877de46f3a7a6f357b5f640dae4a7e8602b8190b194a2f3006b09e213270409e7935535681689662319504b8b4d2ca8df837992be6d584f4a209c5cf2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "e0M1UDsY"
|
||||
version = "kRVILcx8"
|
||||
version = "QIVuPeva"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Command Books"
|
||||
filename = "command-books-1.1.0+1.19.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mF5P2oA1/versions/8BAhPBFt/command-books-1.1.0%2B1.19.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "206b345c2710865d71c2e45226e28166b71278a868a08a0dc1cd2213058ad931f50b22358c056d598f728fbf342df4230dd776dffca675b69b5e216ae664220d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mF5P2oA1"
|
||||
version = "8BAhPBFt"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Controlify"
|
||||
filename = "controlify-2.0.2+1.20.1-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/DOUdJVEm/versions/xGiVq9Sz/controlify-2.0.2%2B1.20.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8a072b50bc978e46a7165a81a14e5961bb76a2774131c3c41f9c30b6e2248a0effc97dfa278685bcac879eb58be0e5223901e37a63d60a2a81825531b9090d1d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "DOUdJVEm"
|
||||
version = "xGiVq9Sz"
|
13
.minecraft/mods/copper-reforged.pw.toml
Normal file
13
.minecraft/mods/copper-reforged.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Copper Reforged"
|
||||
filename = "copper_reforged-neoforge-1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/stKRB6TS/versions/urXqaBLN/copper_reforged-neoforge-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3e669b6613696a2421bb15e189fe4932910973dfd378f1e3790cb255865b543f4300fcca774fddfbce132184a6afa43de5a482eb4a58f082391fbb93dd238bf9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "stKRB6TS"
|
||||
version = "urXqaBLN"
|
13
.minecraft/mods/custom-player-models.pw.toml
Normal file
13
.minecraft/mods/custom-player-models.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Customizable Player Models"
|
||||
filename = "CustomPlayerModels-1.21-0.6.21a.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/h1E7sQNL/versions/pp7fOXc6/CustomPlayerModels-1.21-0.6.21a.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4d2564dcbf1db661b7e6c8ab40df080c5bc56dcc60b84a52bce5f65cf9606df724abae282694cc35c0f41ad4c09343c9b94df407704fc54cf1f61946b6c3bb72"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "h1E7sQNL"
|
||||
version = "pp7fOXc6"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Embedded Computer"
|
||||
filename = "embeddedcomputer-0.3.0-beta.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/X41LBcSD/versions/YcOuhmN9/embeddedcomputer-0.3.0-beta.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "25b8f5a2589eb6a447a9b210bdb4f6a9f63afa1f79858b177487abcc784d303030d84352029a83d10604004470c16fce28d3d848e8bd8f61c93a1c4856be7e80"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "X41LBcSD"
|
||||
version = "YcOuhmN9"
|
|
@ -1,13 +1,13 @@
|
|||
name = "EMI"
|
||||
filename = "emi-1.1.19+1.20.1+fabric.jar"
|
||||
filename = "emi-1.1.19+1.21.1+neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/Lo871w3V/emi-1.1.19%2B1.20.1%2Bfabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/BzqWNbLp/emi-1.1.19%2B1.21.1%2Bneoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9c9d5577ba737336d70f52cb049b7967e7bd479b13c4c056e438a88b0a06f9ca9a6a0bd8705d056fd2ce2033687a0d4e8228f140b16a821ff550ec5cd49b2cee"
|
||||
hash = "a8f80a228401099a7be80eeb9b7b31fa595a1b4a9d10c8b85ab5d9c31efe23ce06a8ee52af299f7f82f3d929b23cab95de0f784eb0d1203ca93d2e343946205e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fRiHVvU7"
|
||||
version = "Lo871w3V"
|
||||
version = "BzqWNbLp"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Entity Culling"
|
||||
filename = "entityculling-fabric-1.7.2-mc1.20.1.jar"
|
||||
filename = "entityculling-neoforge-1.7.2-mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/naHGCw23/entityculling-fabric-1.7.2-mc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/8BvicUz9/entityculling-neoforge-1.7.2-mc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "27aa520f2e5ee881ce95f4925f7a0acea530555b1c5e312a05e961cbd3f874ffe88db26b2b072c6698c0ea469b4944f6451e388f69fbf6c5efb4866a18aa6ef3"
|
||||
hash = "14d0348cf9ac0c0434a19494caf6052e38b295b6677457c7297cd44fc61f10ef4d5ae66388aacc9362167e9f44f8f89ffbbb86fee9dfcc92b2cf1c7cf08f56ae"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "naHGCw23"
|
||||
version = "8BvicUz9"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Fabric API"
|
||||
filename = "fabric-api-0.92.3+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/SKPWumQf/fabric-api-0.92.3%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "073c045791ddf14c28a1ec163e7ef40dcb014a73d72856f881aab04df018e1c62774978c95cda3a07bb324198bd586040e466eabc46bd2f09a16115c7d97e459"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "SKPWumQf"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.1+kotlin.2.1.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/476dzMG5/fabric-language-kotlin-1.13.1%2Bkotlin.2.1.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8e3609ef53a731c5509b304397e7fd4e37f2bbb4353b0d6234e74438846f0464743022f3339ba4f5acf21b023c80420ce59c194c1dfb11aeb79caffa6f842fb6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "476dzMG5"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Fabricord"
|
||||
filename = "Fabricord-3.1.jar.dis"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/xU8Bn98V/versions/D2Q77UfL/Fabricord-3.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c9b97c3646b4cc93201ab0c78bb8f0f4b317d3ba2944290b3946890914e81c975592cf21712687c1967258fcbd1203a7ef057f17b841c8c405d2e661ec9aecaa"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "xU8Bn98V"
|
||||
version = "D2Q77UfL"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Wraith Waystones"
|
||||
filename = "wraith-waystones-3.3.2+mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sTZr7NVo/versions/DZAntbmD/wraith-waystones-3.3.2%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1d7d07e4910670899108a6c4cb570f27dcf0a9502ca477d19be3e0f486e4c0720ef51d4854fed8f7b55823cde63741065aaf6836d849af1ce25e75e54329d999"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sTZr7NVo"
|
||||
version = "DZAntbmD"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Held Item Info"
|
||||
filename = "held-item-info-1.5.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/tEcWzCZz/versions/Rir70mD8/held-item-info-1.5.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d4730d0efbbbd0ba2f080f5580da00fc7d54a3fbdc7f35fdba6ee695449a9f5409543941a90cf389224fc5e854e23cc328adc8579649edc2607e2f125461ce6f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "tEcWzCZz"
|
||||
version = "Rir70mD8"
|
|
@ -1,13 +1,13 @@
|
|||
name = "ImmediatelyFast"
|
||||
filename = "ImmediatelyFast-Fabric-1.3.4+1.20.4.jar"
|
||||
filename = "ImmediatelyFast-NeoForge-1.3.4+1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/Oub8JunR/ImmediatelyFast-Fabric-1.3.4%2B1.20.4.jar"
|
||||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/E77ardrh/ImmediatelyFast-NeoForge-1.3.4%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ecd5b9a962c06edb8a69dae93a7d98bc2aa101d8ed3dbfded786e2186d9d5c9b1ec55a36a998543c3da6580939cfa2761361f7b86e9657bb8a10a8cfa9f325d0"
|
||||
hash = "03aa5c9b757d819fc2378b50f50804f486dc7d91c6f81609467c1e889250cc5e4bc889d0027b23d816e1f483668209925a40567b6ced11f5094a6f9436df5b30"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5ZwdcRci"
|
||||
version = "Oub8JunR"
|
||||
version = "E77ardrh"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Immersive Cursedness Updated"
|
||||
filename = "immersive-cursedness-1.5.0.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aCkoEaRG/versions/ruf3b0YU/immersive-cursedness-1.5.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5e2e8aff299d5f50a8961b2dd2e9dc64a289876c9bec4a3045c266408a070372c08d38b07d82bd6a7264b4070933c3f57f8a09ca49fa280d17fae41cf36b82b0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aCkoEaRG"
|
||||
version = "ruf3b0YU"
|
13
.minecraft/mods/immersive-lanterns.pw.toml
Normal file
13
.minecraft/mods/immersive-lanterns.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Toni's Immersive Lanterns"
|
||||
filename = "immersivelanterns-neoforge-1.0.6-1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/vskzdsyT/versions/CaxJ3tAY/immersivelanterns-neoforge-1.0.6-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "035fc011a4bb72128e60dbe4678bfc93e29bb06dd0a3563d7e44d4b886780eaaf36a7843b7051b0e97c44d9cbfe15040ca1f61638f3681e63992078e154ffdcc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "vskzdsyT"
|
||||
version = "CaxJ3tAY"
|
|
@ -1,13 +1,13 @@
|
|||
name = "ImmersiveMC"
|
||||
filename = "immersivemc-1.5.0-beta3-1.20.1-fabric.jar"
|
||||
filename = "immersivemc-1.5.0-beta3-1.21.1-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/XJ9is6vj/versions/cwkvzaFL/immersivemc-1.5.0-beta3-1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/XJ9is6vj/versions/H5KDGGSa/immersivemc-1.5.0-beta3-1.21.1-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b276a792502dd467e600d8f282d1e2d56c4eb635b44086b7146cd8c60297c1abd448bb165799733630c35775681ee0f521668d3f6ce56671d29a80cfa138e080"
|
||||
hash = "7b98b0ba72e87b8df4e5617cff40c5c90ec62979ca3b1f67cf81e0c122a2ea6fe02484a6f81d6a53731463b9b31bd8cf69989fbef5449313c076f8ebb866a16b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "XJ9is6vj"
|
||||
version = "cwkvzaFL"
|
||||
version = "H5KDGGSa"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Inline"
|
||||
filename = "inline-fabric-1.20.1-1.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fin1PX4m/versions/Bskomaui/inline-fabric-1.20.1-1.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "15c8497a4370958283c3eac30103eda644538060b5eca71274c1a3c47011727b0f218c7ca977c456bb140d5328f91800cc1f6fcce82c404ac7a4d0017e8ca84d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fin1PX4m"
|
||||
version = "Bskomaui"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Inventory Tabs"
|
||||
filename = "inventory-tabs-1.4.0+1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VD1aynYU/versions/2FwwwgGV/inventory-tabs-1.4.0%2B1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "88a799c7e54f76f18f221266f4bd7a364555c8663c54fc2f4bb4b4a30a0721f2e777c5fdd418bc3f748ea8f2ad4fdfe41a3e079cc18ae18eb283ad7d69533829"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VD1aynYU"
|
||||
version = "2FwwwgGV"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Iris Shaders"
|
||||
filename = "iris-1.7.5+mc1.20.1.jar"
|
||||
filename = "iris-neoforge-1.8.6+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/Bi9nvICq/iris-1.7.5%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/pgeobnib/iris-neoforge-1.8.6%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6bc2ab52aae576062d1f4673ee7b92a7fdc64717a8aa13e76cea574623badfef692037bfc6ef6e979e716d52cf15cf24c90694baf69a584f44e1b121550292a3"
|
||||
hash = "95be68300c1914507aea8fa1948b3beac771b8d1ccbe33fb9151f1938906a5bffb560a070f3550c32817469dbbff9f9f57887843a29a09f585f2bd4bedb13a1f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "Bi9nvICq"
|
||||
version = "pgeobnib"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Jade 🔍"
|
||||
filename = "Jade-1.20-Fabric-11.12.3.jar"
|
||||
filename = "Jade-1.21.1-NeoForge-15.9.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/oJx1UoWN/Jade-1.20-Fabric-11.12.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/ErF9rUGQ/Jade-1.21.1-NeoForge-15.9.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0ca8f2e57633114d2f2b444b9c37422e3eabf5296f155fb0e73a7342a7aa68bc75356de1bb716826ab2cd03cc6ebfbfc08b7a744495dfd3c308b4f17b82bcfea"
|
||||
hash = "8337acc1cfb2168d7ed1bf2b34bc5c14c87d550334c3448902d8f1a629e4af65ba3a9d19551f29de1a836772077d9ae066749c8a662db5238e7a5c1590628e63"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nvQzSEkH"
|
||||
version = "oJx1UoWN"
|
||||
version = "ErF9rUGQ"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Just Enough Items"
|
||||
filename = "jei-1.20.1-fabric-15.20.0.106.jar"
|
||||
filename = "jei-1.21.1-neoforge-19.21.0.247.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/KcsHvRrB/jei-1.20.1-fabric-15.20.0.106.jar"
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/TxS03dKM/jei-1.21.1-neoforge-19.21.0.247.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c84f58f186c16c47799b46a603b30b352b4cf45b210de59c347c6c974f2886de04593a77c08794b52c409d279b42d6d0e0667e88eeb97550f3963f64dfc2abf7"
|
||||
hash = "8957b3378a37c9edad802f5e9b833b5e38c7ea7f52475511946e972ea34982a9d05b37d42ca47be093872bdb47a71cae43ad6df63986d935dcf2991c609fd5d2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u6dRKJwZ"
|
||||
version = "KcsHvRrB"
|
||||
version = "TxS03dKM"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Kit's Paxels"
|
||||
filename = "kits-paxels-1.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LDOVpB7g/versions/hE16lVdJ/kits-paxels-1.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "08d338773b5214fff72c15126e436610224f1a8055601ecb070470b52ddc610c41f4b9e74949811297aa98ad2521635baca936c1e46d6e171f886c0ac02b623d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LDOVpB7g"
|
||||
version = "hE16lVdJ"
|
13
.minecraft/mods/kotlin-for-forge.pw.toml
Normal file
13
.minecraft/mods/kotlin-for-forge.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Kotlin for Forge"
|
||||
filename = "kotlinforforge-5.7.0-all.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ordsPcFz/versions/uZAwdzAR/kotlinforforge-5.7.0-all.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "69a93049bd22632c96702a550378f742b83b085a18049af5d1c9f9e79b5cc8e9792de512d6bc3cd9b33bde8ea378008db749970dd05da7769a7a90aebd4aab35"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ordsPcFz"
|
||||
version = "uZAwdzAR"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Krypton"
|
||||
filename = "krypton-0.2.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fQEb0iXm"
|
||||
version = "jiDwS0W1"
|
|
@ -1,13 +1,13 @@
|
|||
name = "KubeJS"
|
||||
filename = "kubejs-fabric-2001.6.5-build.16.jar"
|
||||
filename = "kubejs-neoforge-2101.7.1-build.181.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/umyGl7zF/versions/kPLHkyoJ/kubejs-fabric-2001.6.5-build.16.jar"
|
||||
url = "https://cdn.modrinth.com/data/umyGl7zF/versions/3w2ufpfQ/kubejs-neoforge-2101.7.1-build.181.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e19386f56bf84fda71480c3c56636783a4e0161b3c4e9d35c01d221561147812a09c135a80fcdeeee65a69783f3ba2c4c5ff7e84003ac82a8720df65d9ba40b7"
|
||||
hash = "25531dc40cee02012384c6cf645829db27816c5d107baa9aa118885fbd418237ff43974451a52f1671be6cd075dbf33cbeb20df5eaf33cd31421ef5f66413726"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "umyGl7zF"
|
||||
version = "kPLHkyoJ"
|
||||
version = "3w2ufpfQ"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Lambda"
|
||||
filename = "lambda-1.0.0+1.20.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ov5CWjKZ/versions/Ifa8lLC2/lambda-1.0.0%2B1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "18f966207f29f4499560e1795fbc4685f1126475b52496222ce1b78bdcc2aea3bb3db326725585e7b14f1fe1a07e70c328cfdcfb9a4a723a2fa92990322d7639"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ov5CWjKZ"
|
||||
version = "Ifa8lLC2"
|
|
@ -1,13 +0,0 @@
|
|||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-2.3.2+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4870953196e22d02844b76fdcae29823922401a5b238d134374308a256a7ffcfb9f087369fc0ec23b5cb218b995d2efa6f60ac0b99fbf9b298ee7ffbb4f6937a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "mYl4RvKg"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Lavender"
|
||||
filename = "lavender-0.1.9+1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/D5h9NKNI/versions/nJIAf9uL/lavender-0.1.9%2B1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4387b7d2934c8d420fb5cba7570f9a9475322c864e47022f57398dbc184dd19a4f3d1471ae9728299b46eb5ad6001957e03baec88072c20fa4051ebf5774d748"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "D5h9NKNI"
|
||||
version = "nJIAf9uL"
|
|
@ -1,13 +0,0 @@
|
|||
name = "LuckPerms"
|
||||
filename = "LuckPerms-Fabric-5.4.102.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Vebnzrzj/versions/7PNj6nCm/LuckPerms-Fabric-5.4.102.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "45058fd2bbd2e7723af01a093ef7233d8a6fa2278a2232dfcc2aa53dae6df7ed78dbfbdb9ee133b19bc36655ccff5a4facdd476319c18e290b284733bf10edff"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Vebnzrzj"
|
||||
version = "7PNj6nCm"
|
|
@ -1,13 +1,13 @@
|
|||
name = "MC VR API"
|
||||
filename = "vrapi-3.0.12-1.20.1-fabric.jar"
|
||||
filename = "vrapi-3.0.12-1.21.1-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/B3INNxum/versions/KunF43Od/vrapi-3.0.12-1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/B3INNxum/versions/9ziXlpbX/vrapi-3.0.12-1.21.1-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5d614f4b68b72220e95ee7a2c927b492884ce14a36b4fa9c2bdd54a800a25f61b00d3c31129fdfae9cde2d969f6bed832237ce12b36a797961f70405bccb8468"
|
||||
hash = "9f51001dc46b5a48c580d23db6456a369fbcb2d8d3f8c892025905664c0baf580514b7a8b60b01fb2b611f4622716bba32fbff6d30d98d9ac99b6c97d6c1a59b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "B3INNxum"
|
||||
version = "KunF43Od"
|
||||
version = "9ziXlpbX"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Mod Loading Screen"
|
||||
filename = "mod-loading-screen-1.0.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/xAGJ6rQS/versions/BWSHJY2J/mod-loading-screen-1.0.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "08761444a10ab63c956c8f57925867662de59e16a251cfc9b57e7d6cca8a9ef5ac3fdc1bea781392cd6c625d8fe983c1292a44817abb825fb391611bc231da60"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "xAGJ6rQS"
|
||||
version = "BWSHJY2J"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Mod Menu"
|
||||
filename = "modmenu-7.2.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9a7837e04bb34376611b207a3b20e5fe1c82a4822b42929d5b410809ec4b88ff3cac8821c4568f880775bafa3c079dfc7800f8471356a4046248b12607e855eb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "lEkperf6"
|
13
.minecraft/mods/morejs.pw.toml
Normal file
13
.minecraft/mods/morejs.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "MoreJS: KubeJS Addon"
|
||||
filename = "morejs-neoforge-1.21-0.14.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mo64mR1W/versions/l1JUvhzx/morejs-neoforge-1.21-0.14.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "cfbd36e231633f84aee9475b006e6dfb1115abf8bfc4e28743e7660e2a015a7562ca383546593d6ca3d1f8de77dd7b4e24f5dec5dfa508251ed5253590eb90bc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mo64mR1W"
|
||||
version = "l1JUvhzx"
|
|
@ -1,13 +1,13 @@
|
|||
name = "No Chat Reports"
|
||||
filename = "NoChatReports-FABRIC-1.20.1-v2.2.2.jar"
|
||||
filename = "NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/ZV8eL55E/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79"
|
||||
hash = "292a3623b5addb17e9f15681a4f2534562e9882ef809e504f49da4778fafc12e21a71995b5d05554d435201f401ace1e86af50e6e26f6ce9d203a5896a1ece21"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qQyHxfxd"
|
||||
version = "HeZZR2kF"
|
||||
version = "ZV8eL55E"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "No Kebab"
|
||||
filename = "no-kebab-1.2.1+1.20.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/y82xHklI/versions/V5roepgj/no-kebab-1.2.1%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2726f9db5b147071bb6aa2b15baac3b195ea7c15789efe8043daa5ff145d6f2528a0b00a0ddc90a6eeb0f5094843ed9f7d5f2b36020f381cda55956c5150db5f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "y82xHklI"
|
||||
version = "V5roepgj"
|
|
@ -1,13 +0,0 @@
|
|||
name = "One Slot"
|
||||
filename = "one_slot-1.20.1-1.1.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M10XRh3H/versions/rvIJXFqJ/one_slot-1.20.1-1.1.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ed6a4e8cae8d5265f0d648bcf2ac2b728d27709d06c10304b23db3f6a2b49972ffcc2102908c45168ebda7e814a28a463391e261131418004c86d2fa7c172cbd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M10XRh3H"
|
||||
version = "rvIJXFqJ"
|
|
@ -1,13 +0,0 @@
|
|||
name = "One World Folder"
|
||||
filename = "oneworldfolder-1.0.2-1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/JL35Xbzz/versions/FWDTR0Ff/oneworldfolder-1.0.2-1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5d09bf4d15be990efc5df40d7643759eec85c6c0ca685dc5453e570a27168f45ce1e856b3579ee2806528ad1b47a343628298872b92206fe309a9a92cc888301"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "JL35Xbzz"
|
||||
version = "FWDTR0Ff"
|
13
.minecraft/mods/oneslotatatime.pw.toml
Normal file
13
.minecraft/mods/oneslotatatime.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "One Slot at a Time"
|
||||
filename = "mclm_osaat-neoforge-1.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/L76YsJKa/versions/zH2ldYNO/mclm_osaat-neoforge-1.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "cb8971521d08581573fb3a8d200d8a58cee1b4cdee8ee932ee80905bc7720a08de4cb511fa3808ff72694e636dd8f4c3b78fc143d5812cb1cdae7ab1cd370d0e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "L76YsJKa"
|
||||
version = "zH2ldYNO"
|
|
@ -1,13 +1,13 @@
|
|||
name = "oωo (owo-lib)"
|
||||
filename = "owo-lib-0.11.2+1.20.jar"
|
||||
filename = "owo-lib-neoforge-0.12.15-beta.12+1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/zyOBB7J4/owo-lib-0.11.2%2B1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/qm96mQBh/owo-lib-neoforge-0.12.15-beta.12%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "807e4a3daf493e92c5ff0d5657efbba2a4e0cd2a9b753f2d6f153422629415f189345842a6dd258c87d4c02ebf38950a517bcd8a7ed929af6ed6485ae46cf77e"
|
||||
hash = "23decbf1a13c5233f5c6eee6e0f259672cbf4c34d28d7368e6ee67f91bfbf63345577c7f7acfd97684f706d4a6c672eaafb2ada85de9650da6aed840584958bc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ccKDOlHs"
|
||||
version = "zyOBB7J4"
|
||||
version = "qm96mQBh"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Paradise Lost"
|
||||
filename = "paradise-lost-2.2.4-beta+1.20.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/IKpsG0nF/versions/IJLX3k9B/paradise-lost-2.2.4-beta%2B1.20.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6713336913946be481a3a4d2f48aae54021c9259b0a0df3eb8c90d7fc55e72f7ebe6b4f49165c266c0d81d02343e2a216881d5194cf8d695d139e6d0b854a03d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "IKpsG0nF"
|
||||
version = "IJLX3k9B"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Patchouli"
|
||||
filename = "Patchouli-1.20.1-84.1-FABRIC.jar"
|
||||
filename = "Patchouli-1.21-87-NEOFORGE.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nU0bVIaL/versions/Muu5nGmj/Patchouli-1.20.1-84.1-FABRIC.jar"
|
||||
url = "https://cdn.modrinth.com/data/nU0bVIaL/versions/MY12jUBD/Patchouli-1.21-87-NEOFORGE.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "a08ae7db9381bf44ff5a22e5fa0cc44ff744fe220df6c88863eded09274786609e8705dc6a31f70c072127c81255a413d37aa479dd2aaf07bc7ed0c822e0a070"
|
||||
hash = "719845b6fa2502e8bef05f762a83eb827d7694f71b6853f5a2496accb9ac3140e502ed4817f4d3f1ec700c43b63ebde98a22f2fd9a17699ac008ad91888e383a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nU0bVIaL"
|
||||
version = "Muu5nGmj"
|
||||
version = "MY12jUBD"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "PAUCAL"
|
||||
filename = "paucal-0.6.0+1.20.1-fabric.jar"
|
||||
filename = "paucal-0.7.0+neoforge-1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/TZo2wHFe/versions/dabyDTwJ/paucal-0.6.0%2B1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/TZo2wHFe/versions/zgpdzVKd/paucal-0.7.0%2Bneoforge-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5ab76a177c66113a1a1a6aaf738077c711d4b73807814d530f753961967398d5908ef1857b3290e633a3917bf7a93f9dc8cf2fb9767b26b8efbe8e295922d571"
|
||||
hash = "49364da2d43ddbab5533300a2da0163ff6328f2680111efb2128822a497abd94c9c770b8844b21aabc57b77b8b275ae50cc2f922462cf44322b58cf4916ae467"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "TZo2wHFe"
|
||||
version = "dabyDTwJ"
|
||||
version = "zgpdzVKd"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Text Placeholder API"
|
||||
filename = "placeholder-api-2.1.4+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/eXts2L7r/versions/DaV2ycYi/placeholder-api-2.1.4%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "80a4721abf9654a8bbfb9e23fbb7493bfa379d3116adb9d0d98f05482b25150d91994346dd230b691935f64f57ce0840deecce6bb279fbfaa3ebab30ad426db8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "eXts2L7r"
|
||||
version = "DaV2ycYi"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Plethora Peripherals"
|
||||
filename = "Plethora-Fabric-1.11.7.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LDfFdCXe/versions/OjFtc3oY/Plethora-Fabric-1.11.7.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ae5ee6567be5afd1335c3a803e831b7b202eac8df34c965a5a7d62733c18d285e280a01eb60930282e644212b97418147ee23f668979fc4d6b22256527f3cb31"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LDfFdCXe"
|
||||
version = "OjFtc3oY"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Polydex"
|
||||
filename = "polydex-1.0.0-beta.2.2+1.20.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/m5NB7FJE/versions/hx2bY7Tl/polydex-1.0.0-beta.2.2%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "04ee051a5bb3cb5b7af2067b4b181248344e9a0298f7d2186fbaf0e7d1df017e144baeda4335c3fa01f64181a29045777ea6db08378e82ab71c065e970418df7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "m5NB7FJE"
|
||||
version = "hx2bY7Tl"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Questbind"
|
||||
filename = "Questbind-0.2.3.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sY1KXxm2/versions/5G3HSj3k/Questbind-0.2.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "abcfe659d474ec19548309d81da051c1f3f1fd86b47f08e70334be7ed92e25457594bd327611e6fe5f2badfcc4568202849e296145cd33df23243e20650f548f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sY1KXxm2"
|
||||
version = "5G3HSj3k"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Raised"
|
||||
filename = "raised-fabric-1.20.1-4.0.1.jar"
|
||||
filename = "raised-neoforge-1.21.1-4.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/rJuvV8zU/raised-fabric-1.20.1-4.0.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/Cr0vV65c/raised-neoforge-1.21.1-4.0.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "401da1764b05e510291041b031bfd55c4f5158ba98c871bd7f0fb3487bd8d1bf3c42489a0e9e96a5073f7bf697c604f73a2665c86625544b22ba13e8ee32ac45"
|
||||
hash = "3cec14739dacad1c810091715fd2e0915f0ea7209bde52763e30203ff494ef3688d1790337a0f1f117ad40d8fcd43b7e6fac9f3b9f1f4b179f7dff66d9b12aa3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nCQRBEiR"
|
||||
version = "rJuvV8zU"
|
||||
version = "Cr0vV65c"
|
||||
|
|
13
.minecraft/mods/reeses-sodium-options.pw.toml
Normal file
13
.minecraft/mods/reeses-sodium-options.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Reese's Sodium Options"
|
||||
filename = "reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/xAiCe6w8/reeses-sodium-options-neoforge-1.8.3%2Bmc1.21.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d66b5d30e1bb8316cb75d52ba8485c6c1cfb0d03624288f39c1826b92de9da9c3d79351be9d7303ca3226176255921f35063139da118c755cf9a709186129744"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Bh37bMuy"
|
||||
version = "xAiCe6w8"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Resourcify"
|
||||
filename = "Resourcify (1.20.1-fabric)-1.7.0.jar"
|
||||
filename = "Resourcify (1.21.1-neoforge)-1.7.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/RLzHAoZe/versions/qtwRLIcB/Resourcify%20%281.20.1-fabric%29-1.7.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/RLzHAoZe/versions/3He5dVwH/Resourcify%20%281.21.1-neoforge%29-1.7.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fb846ef92e77da4f50b31bd4158403e104897fa75d1a778ad09486a5a19dcb45e0682ee1f7cb15e03a5e406440880e62b928ca22bce0ff3461e65bc7200da514"
|
||||
hash = "d825bd4f1ebc3ad1ebeba5731beec0a128c20164862bbf5e8a9b5ab091c639c456f6be28cf7c07e69d6c896bc23e95c7376bd0c14280f851843d192dab3028a3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "RLzHAoZe"
|
||||
version = "qtwRLIcB"
|
||||
version = "3He5dVwH"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Rhino"
|
||||
filename = "rhino-fabric-2001.2.3-build.10.jar"
|
||||
filename = "rhino-2101.2.7-build.74.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sk9knFPE/versions/MLIu0Tct/rhino-fabric-2001.2.3-build.10.jar"
|
||||
url = "https://cdn.modrinth.com/data/sk9knFPE/versions/6ClRsUNJ/rhino-2101.2.7-build.74.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5f43ca1a3d8b1e287fe177a324e8a3768235b1a07c4f0a05a87d3fe2285e0ec9a87a093b714e17a30100fe48f84f4edc32adcaa51d1f9aede1c3d89621a3cb8d"
|
||||
hash = "891c755e1a55fceae6b3c321ba0e84d403ebb4a4de6058890b5ac1a5c937057230df2bcc2c1096f6c3d52337763f5f7485ceca1869c8a34e6d01e10602b9ffa8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sk9knFPE"
|
||||
version = "MLIu0Tct"
|
||||
version = "6ClRsUNJ"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Scoreboard Overhaul"
|
||||
filename = "scoreboardoverhaul-1.2.2-mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/2YIQkF2v/versions/s9IZ5pT5/scoreboardoverhaul-1.2.2-mc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3181629bf0886ae7c0c4afa33e1fde1b13d3a6ab55923c1134327a8122722e25b9e0b5b3dbf737a70ee36b9fc7141e28e8f13b5e83cc57f23fd2664f0ec9efe6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "2YIQkF2v"
|
||||
version = "s9IZ5pT5"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Scribble"
|
||||
filename = "Scribble-1.5.0+mc1.20.1-fabric.jar"
|
||||
filename = "Scribble-1.5.0+mc1.21-neoforge.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yXAvIk0x/versions/AQ3XAMJx/Scribble-1.5.0%2Bmc1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/yXAvIk0x/versions/k0OMN8t5/Scribble-1.5.0%2Bmc1.21-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "89cd50f6eee122ec9e79274b85993a4d7bb3a9168dea713633a9521fa8545818244d3031f4723ef03eb0e5234e6fc7df704374503203691f7dbb16030093481a"
|
||||
hash = "e5c58a2fc6c5e7a14e3335b47d3f27230b28c27e8e67c9a0a367f24d15896b21a53ea3a60e4cfe9ef238b8db4ca0533f237a89a07cb3fdcb4aabbffacf4c6446"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yXAvIk0x"
|
||||
version = "AQ3XAMJx"
|
||||
version = "k0OMN8t5"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Simple Menu"
|
||||
filename = "simplemenu-1.20.1-1.5.jar"
|
||||
filename = "simplemenu-1.21.1-1.5.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/6pdhya1q/versions/vy7kMoRN/simplemenu-1.20.1-1.5.jar"
|
||||
url = "https://cdn.modrinth.com/data/6pdhya1q/versions/xxyk2CGf/simplemenu-1.21.1-1.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "86ea79938de8580bcd90354d84acb231fdbcadd2753fd0d5b6d085b1d9aed85d7d2b58f612114f6423e20cbcb60c629d1faa34cb48d9296c6b60162bc231ce43"
|
||||
hash = "43b15582ea9c3ed353a315d41eee35b340252a74f099be8f1dc56367cb68a96bb1115301cfe473bd1b92a81a620924324f11cc6076001254094f52ffd92983cb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "6pdhya1q"
|
||||
version = "vy7kMoRN"
|
||||
version = "xxyk2CGf"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-fabric-1.20.1-2.5.27.jar"
|
||||
filename = "voicechat-neoforge-1.21.1-2.5.27.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/IZhZbWUU/voicechat-fabric-1.20.1-2.5.27.jar"
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/B3DPd7mC/voicechat-neoforge-1.21.1-2.5.27.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "445f6ef90e5e51ddf3c4ac105897338db5dce9cf69ea808fce5fd8e02d8e40a9ff6d0c51cb4d62e0d09797530d12ca86f34b356210d77edeb6dbc9d9cd8bfd10"
|
||||
hash = "36b6c0a7854e32b53b6a51fc763ebb79969eef04558c38089616241e858191124d307894c412294a55d61947a49ea22255d7a5a13c3d64280c2537a38cff9609"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "IZhZbWUU"
|
||||
version = "B3DPd7mC"
|
||||
|
|
13
.minecraft/mods/sodium-dynamic-lights.pw.toml
Normal file
13
.minecraft/mods/sodium-dynamic-lights.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Sodium Dynamic Lights"
|
||||
filename = "sodiumdynamiclights-neoforge-1.0.10-1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PxQSWIcD/versions/XI0WLXdn/sodiumdynamiclights-neoforge-1.0.10-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ec19a81cf2dfde255990a457d8f6d7375df53cb94190dce71c4bfe5d5263f4862027ce4aa0af20cb11d56c7c031d5e149b3bdf95bec6343e5bd4552450b14c0a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PxQSWIcD"
|
||||
version = "XI0WLXdn"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Sodium Extra"
|
||||
filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar"
|
||||
filename = "sodium-extra-neoforge-0.6.0+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar"
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/pFmw1eci/sodium-extra-neoforge-0.6.0%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ab561186421776d0db506dcbf1a724f80b345be5769ff00aa4327161c79af6e3f353eb65345ce06da30546ffa6b43e1c4a4c41dd246b7e473b131fd727997a85"
|
||||
hash = "6f7383ef3f4b572c76d3371a7441bc3d625db9d404cf61b249fab018bc3ffd1fa82e735ec21916df3f4072f0927dad3673efbc40bf8d11846c3d6fecc9329bb7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PtjYWJkn"
|
||||
version = "I7ggF6B5"
|
||||
version = "pFmw1eci"
|
||||
|
|
13
.minecraft/mods/sodium-options-api.pw.toml
Normal file
13
.minecraft/mods/sodium-options-api.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Sodium Options API"
|
||||
filename = "sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Es5v4eyq/versions/lrsX3TMS/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f2f022183f300961d7d0503461daa59e3e606c32f189f1cb3307edaf765986c541929205b7bf6f40c4c88319696e9d863c1bf711bd441dc9b7081c198ddb445b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Es5v4eyq"
|
||||
version = "lrsX3TMS"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Sodium"
|
||||
filename = "sodium-fabric-0.5.11+mc1.20.1.jar"
|
||||
filename = "sodium-neoforge-0.6.7+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/XurfNSst/sodium-neoforge-0.6.7%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "628129702e830fe88d79f0b87ef0591b708fb39045ce3d985703d6a3a78c30c9beb518df8e70151e55ca6c82d9274fea904c016f60085d889a4f7ac431cccd9e"
|
||||
hash = "098b75d14d7cf32cc50a95bacf2c93427f665b186fadfb8c04ca37ad2a310d69b399e6189cc6af83f16535029319b15e91f86f19d53bc6781912e6176e9c6070"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "AANobbMI"
|
||||
version = "ygf8cVZg"
|
||||
version = "XurfNSst"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "spark"
|
||||
filename = "spark-1.10.53-fabric.jar"
|
||||
filename = "spark-1.10.109-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/l6YH9Als/versions/XGW2fviP/spark-1.10.53-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/l6YH9Als/versions/jg1XqG66/spark-1.10.109-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ce6e8f7071bb37369ad3e90d844926b424e82d0fe0ffd0db7058abddc9cfcdd594e145c9395677ad70ec532f3da0b23b6862d1f1c20f7600263c215abb4fcea7"
|
||||
hash = "9c98cf71d19c179879230f27097763c25d4d8bb980fb1a4e27a78d0f3dce7ec3abc2689114365f9553a6d480986e68d6272b3e81ef62fbf9683cca24521e50ce"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "l6YH9Als"
|
||||
version = "XGW2fviP"
|
||||
version = "jg1XqG66"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Starter Kit"
|
||||
filename = "starterkit-1.20.1-7.3.jar"
|
||||
filename = "starterkit-1.21.1-7.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/6L3ydNi8/versions/B4VOArC1/starterkit-1.20.1-7.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/6L3ydNi8/versions/nEynAwnQ/starterkit-1.21.1-7.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4b49b1df6946f0bcb9a9717f7fbe36ae5478cf011fdcfe1c0af6c96c26c38ca55f49b5e9cefd28d4779794e163bee25ca8884d0c3c12b4e859956d572dfef8fa"
|
||||
hash = "f305772fa14b8b09be7104c1088a4f41d762cdba2b23fbbea9ec8dc6c823cad8c1bf3193a6c5eb334b0387cb2a4a0e4016fde79b90dac6b01d90668f77ae564e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "6L3ydNi8"
|
||||
version = "B4VOArC1"
|
||||
version = "nEynAwnQ"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name = "Traveler's Backpack"
|
||||
filename = "travelersbackpack-fabric-1.20.1-9.1.26.jar"
|
||||
filename = "travelersbackpack-neoforge-1.21.1-10.1.16.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/rlloIFEV/versions/JglksaBM/travelersbackpack-fabric-1.20.1-9.1.26.jar"
|
||||
url = "https://cdn.modrinth.com/data/rlloIFEV/versions/QjQPEZAC/travelersbackpack-neoforge-1.21.1-10.1.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7a0e42a6a1eb72f15acb07ceb3c6c2911258038ef1395a5de216df977042a89891e32757afa92434707671c6c57b365d2150727b7c74012f23e4cfc1c312ef8d"
|
||||
hash = "057d053580c6f603130de410339885a2ee5ce90cff378b16419882e4e4c8aaed8fe97ffbf37da6521e80be9528608a1d24732992cc2c2285236d628d5a7e57d0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "rlloIFEV"
|
||||
version = "JglksaBM"
|
||||
version = "QjQPEZAC"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Trinkets"
|
||||
filename = "trinkets-3.7.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5aaWibi9/versions/AHxQGtuC/trinkets-3.7.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "bedf97c87c5e556416410267108ad358b32806448be24ef8ae1a79ac63b78b48b9c851c00c845b8aedfc7805601385420716b9e65326fdab21340e8ba3cc4274"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5aaWibi9"
|
||||
version = "AHxQGtuC"
|
14
.minecraft/mods/txnilib.pw.toml
Normal file
14
.minecraft/mods/txnilib.pw.toml
Normal file
|
@ -0,0 +1,14 @@
|
|||
name = "TxniLib"
|
||||
filename = "txnilib-neoforge-1.0.21-1.21.1.jar"
|
||||
side = "both"
|
||||
pin = true
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/vBbPDuOs/versions/DsVc1ltn/txnilib-neoforge-1.0.21-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4e3bd89e7b5ddfc7620e75845c4a2bb7bbc62f5810fdbb450aade5f405a2ce9db618cd3edece933ab27516c7c96a7f747d86bc72f8211da025b66d0bb65d4bfd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "vBbPDuOs"
|
||||
version = "DsVc1ltn"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Vanilla Permissions"
|
||||
filename = "vanilla-permissions-0.2.2+1.20.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fdZkP5Bb/versions/POy2ZtwI/vanilla-permissions-0.2.2%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "453df20dbe542d30f237c96b6102b83deb6463e8db687efa07784f11e12b2c8f5f5e697c8f6a24efbba02ed664cc483a5247bcb6694e6448dd43bb1fa6f55802"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fdZkP5Bb"
|
||||
version = "POy2ZtwI"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Vanish"
|
||||
filename = "vanish-1.5.5+1.20.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/UL4bJFDY/versions/2D19CPkZ/vanish-1.5.5%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "594adb0dd14ca251d8f190edeb71e761bee190603fa89864b1aeb172f0de8c73b31866c5c257398ac68f587aa42255e8429a64385c6f056ad5ed922c33258806"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "UL4bJFDY"
|
||||
version = "2D19CPkZ"
|
13
.minecraft/mods/vanishmod.pw.toml
Normal file
13
.minecraft/mods/vanishmod.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Vanishmod"
|
||||
filename = "Vanishmod-1.21.1-1.1.18.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/MihN2cw5/versions/KJkKADGN/Vanishmod-1.21.1-1.1.18.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6217c387b3fbe5f9b88377b4dee38497733f34297d1d323df5da7eed11600f6ed4188eb29fad53962bcaafd9783d4582abc175deef114bfa59d01a36fab6ce66"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "MihN2cw5"
|
||||
version = "KJkKADGN"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Victus - Custom Hearts"
|
||||
filename = "victus-0.1.15-1+1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Sy5mAKPK/versions/b79Ud8Xi/victus-0.1.15-1%2B1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "dfe5c71198dffebde830baef033ddf7ff633904b7278eb0b99f5fee4d879a383d4ca8279e8045911657023b1b81450819bc884fdbafcd9a472c7eb4fe1be2a39"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Sy5mAKPK"
|
||||
version = "b79Ud8Xi"
|
|
@ -1,13 +0,0 @@
|
|||
name = "View Distance Fix"
|
||||
filename = "viewdistancefix-fabric-1.20.1-1.0.2.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nxrXbh5K/versions/EkpvfTep/viewdistancefix-fabric-1.20.1-1.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fcc69465656bf507ae94973a727d546394a96f3d7a5921d1c23ba8ff31ef57df6e762798373c8876897be7ee75c15b8dc5a31fe0d1cdc6dddaaafdc6ccfdc315"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nxrXbh5K"
|
||||
version = "EkpvfTep"
|
13
.minecraft/mods/vivecraft-compat.pw.toml
Normal file
13
.minecraft/mods/vivecraft-compat.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "ViveCraft Compat"
|
||||
filename = "vivecraftcompat-1.21-1.4.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/xnSuzkaS/versions/HE97h0AX/vivecraftcompat-1.21-1.4.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "a4916f1ff51e276634b22b33cd5ab61437cae44e8be79e8038549bd5e3700e57c5dd76953b2d74853b4b607378cf2536d756c0d357d4f7d6fa1acefeaa881fc5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "xnSuzkaS"
|
||||
version = "HE97h0AX"
|
|
@ -1,13 +1,13 @@
|
|||
name = "Vivecraft"
|
||||
filename = "vivecraft-1.20.1-1.2.4-fabric.jar"
|
||||
filename = "vivecraft-1.21.1-1.2.4-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/wGoQDPN5/versions/ZdBj0IHl/vivecraft-1.20.1-1.2.4-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/wGoQDPN5/versions/9ncYVHwh/vivecraft-1.21.1-1.2.4-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "bda51529a0a0c76aed6a1f3e83d85f15b6bd9dc04223b9cfabe8778e675362447cb0b029d8416a61c2dbe354a0bffa4bdc90a747d46d8d54391a3e2cae895e5a"
|
||||
hash = "be9bb454d7198290f1d8999e023144e4de4ace4dcbacdd2ceb71fbccbcb4af549ee25347b37aa63c498361334ce1b2a5441359d6cca700c0c36890918971abd5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "wGoQDPN5"
|
||||
version = "ZdBj0IHl"
|
||||
version = "9ncYVHwh"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "VR Jester API"
|
||||
filename = "VRJesterAPI-1.20.1-1.1.1-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yuSvplac/versions/pfys8pTF/VRJesterAPI-1.20.1-1.1.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4a5556be22c920b74ed5f9dabf9482325a802a4a89406f976995f67473d56bcb17df628309feb4cafc84ad2d445c1f763e43c6006b4636ff67f036439b1920c3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yuSvplac"
|
||||
version = "pfys8pTF"
|
13
.minecraft/mods/wooden-hopper.pw.toml
Normal file
13
.minecraft/mods/wooden-hopper.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Wooden Hopper"
|
||||
filename = "woodenhopper-neoforge-1.21.1-3.2.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VOUy9bAs/versions/bJfe05J7/woodenhopper-neoforge-1.21.1-3.2.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f62885fa0e8e68818b1d63fda8832d9b9d2811d3c4ba6528566bff542d924557f532b0d14f696a35f6a1803e667e4052b20329916f547dac4c406c86fbafdc4c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VOUy9bAs"
|
||||
version = "bJfe05J7"
|
|
@ -1,13 +0,0 @@
|
|||
name = "Xander's Sodium Options"
|
||||
filename = "xanders-sodium-options-2.2.1+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sTkQBVyo/versions/TDGVxeY5/xanders-sodium-options-2.2.1%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8225de0fcb124a67190c41e4ee667fb06e467e0ba4355bc9f1ea74b04d11f44e3e67f696a657345609af854cefe84c471c899fbe9e4edcfeae2c4f9dec2793f5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sTkQBVyo"
|
||||
version = "TDGVxeY5"
|
|
@ -1,13 +1,13 @@
|
|||
name = "YetAnotherConfigLib (YACL)"
|
||||
filename = "YetAnotherConfigLib-3.6.2+1.20.1-fabric.jar"
|
||||
filename = "YetAnotherConfigLib-3.6.2+1.21-neoforge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/yDSgD8Iz/YetAnotherConfigLib-3.6.2%2B1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/MCJlLTYc/YetAnotherConfigLib-3.6.2%2B1.21-neoforge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f155e42f9af56e552b422fe8906331366de0c957f2bf3910820bc6531980ce9004fe61e61f2b7860fe56ceb63da4cac84a807f8017e309cc3fe01c2f1ef8d031"
|
||||
hash = "581085c98f807aa04ff6afb9a69ea6b5e543c3a013c89f66086a2086822620aa02245fb3c7ebd1d8c049d457f58c57218aecae607db3c77c5bdafd37fa022050"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1eAoo2KR"
|
||||
version = "yDSgD8Iz"
|
||||
version = "MCJlLTYc"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name = "Your Options Shall Be Respected (YOSBR)"
|
||||
filename = "yosbr-0.1.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/WwbubTsV/versions/KMOzdYko/yosbr-0.1.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "254f2225f6446523aa8c8274e83b31e27f3b2afc8fe4f490fb1b169dd518e10c7993acda5db0ab597474ddf9d69506b5e794242fada1e2f89ed7bf9d412a8f78"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "WwbubTsV"
|
||||
version = "KMOzdYko"
|
|
@ -6,11 +6,11 @@ pack-format = "packwiz:1.1.0"
|
|||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "06ce6218751ea1eb517ab73c57b4df2e1c25558d3ef03648b91937e2d72d2eae"
|
||||
hash = "b729a223c584ecee9ddea5d25da901da769430c98a78dc0335a0b6043a11c7ac"
|
||||
|
||||
[versions]
|
||||
fabric = "0.16.10"
|
||||
minecraft = "1.20.1"
|
||||
minecraft = "1.21.1"
|
||||
neoforge = "21.1.119"
|
||||
|
||||
[options]
|
||||
acceptable-game-versions = ["1.20", "1.20.1"]
|
||||
acceptable-game-versions = ["1.21", "1.21.1"]
|
||||
|
|
|
@ -3,4 +3,5 @@ InstanceType=OneSix
|
|||
iconKey={ICONNAME}_icon
|
||||
name=Modpack Template
|
||||
OverrideCommands=true
|
||||
JvmArgs=-XX:+UseZGC
|
||||
PreLaunchCommand="$INST_JAVA" -jar packwiz-installer-bootstrap.jar {PACKURL}
|
|
@ -1,21 +1,8 @@
|
|||
{
|
||||
"components": [
|
||||
{
|
||||
"uid": "net.minecraft",
|
||||
"version": "1.20.1"
|
||||
},
|
||||
{
|
||||
"cachedName": "LWJGL 3",
|
||||
"cachedVersion": "3.3.1",
|
||||
"cachedVolatile": true,
|
||||
"dependencyOnly": true,
|
||||
"uid": "org.lwjgl3",
|
||||
"version": "3.3.1"
|
||||
},
|
||||
{
|
||||
"uid": "net.fabricmc.fabric-loader",
|
||||
"version": "0.16.10"
|
||||
}
|
||||
{ "uid": "net.minecraft", "version": "1.21.1" },
|
||||
{ "uid": "org.lwjgl3", "version": "3.3.3" },
|
||||
{ "uid": "net.neoforged", "version": "21.1.119" }
|
||||
],
|
||||
"formatVersion": 1
|
||||
}
|
||||
|
|
51
modlist.md
51
modlist.md
|
@ -2,77 +2,58 @@
|
|||
|
||||
## Client Mods
|
||||
|
||||
- [Better Command Block UI](https://modrinth.com/mod/8iQcgjQ2)
|
||||
- [BetterF3](https://modrinth.com/mod/8shC1gFX)
|
||||
- [Controlify](https://modrinth.com/mod/DOUdJVEm)
|
||||
- [Customizable Player Models](https://modrinth.com/mod/h1E7sQNL)
|
||||
- [Entity Culling](https://modrinth.com/mod/NNAgCjsB)
|
||||
- [Held Item Info](https://modrinth.com/mod/tEcWzCZz)
|
||||
- [ImmediatelyFast](https://modrinth.com/mod/5ZwdcRci)
|
||||
- [Inventory Tabs](https://modrinth.com/mod/VD1aynYU)
|
||||
- [Iris Shaders](https://modrinth.com/mod/YL57xq9U)
|
||||
- [LambDynamicLights](https://modrinth.com/mod/yBW8D80W)
|
||||
- [Mod Loading Screen](https://modrinth.com/mod/xAGJ6rQS)
|
||||
- [Mod Menu](https://modrinth.com/mod/mOgUt4GM)
|
||||
- [One World Folder](https://modrinth.com/mod/JL35Xbzz)
|
||||
- [Questbind](https://modrinth.com/mod/sY1KXxm2)
|
||||
- [Raised](https://modrinth.com/mod/nCQRBEiR)
|
||||
- [Reese's Sodium Options](https://modrinth.com/mod/Bh37bMuy)
|
||||
- [Resourcify](https://modrinth.com/mod/RLzHAoZe)
|
||||
- [Scoreboard Overhaul](https://modrinth.com/mod/2YIQkF2v)
|
||||
- [Scribble](https://modrinth.com/mod/yXAvIk0x)
|
||||
- [Simple Menu](https://modrinth.com/mod/6pdhya1q)
|
||||
- [Sodium Dynamic Lights](https://modrinth.com/mod/PxQSWIcD)
|
||||
- [Sodium Extra](https://modrinth.com/mod/PtjYWJkn)
|
||||
- [Sodium Options API](https://modrinth.com/mod/Es5v4eyq)
|
||||
- [Sodium](https://modrinth.com/mod/AANobbMI)
|
||||
- [VR Jester API](https://modrinth.com/mod/yuSvplac)
|
||||
- [Xander's Sodium Options](https://modrinth.com/mod/sTkQBVyo)
|
||||
- [ViveCraft Compat](https://modrinth.com/mod/xnSuzkaS)
|
||||
|
||||
## Shared Mods
|
||||
|
||||
- [Accessories](https://modrinth.com/mod/jtmvUHXj)
|
||||
- [Adorn](https://modrinth.com/mod/E6FUtRJh)
|
||||
- [Advanced Peripherals](https://modrinth.com/mod/SOw6jD6x)
|
||||
- [Architectury API](https://modrinth.com/mod/lhGA9TYQ)
|
||||
- [CC: Tweaked](https://modrinth.com/mod/gu7yAYhd)
|
||||
- [Cloth Config API](https://modrinth.com/mod/9s6osm5g)
|
||||
- [Collective](https://modrinth.com/mod/e0M1UDsY)
|
||||
- [Command Books](https://modrinth.com/mod/mF5P2oA1)
|
||||
- [Embedded Computer](https://modrinth.com/mod/X41LBcSD)
|
||||
- [Copper Reforged](https://modrinth.com/mod/stKRB6TS)
|
||||
- [EMI](https://modrinth.com/mod/fRiHVvU7)
|
||||
- [Fabric API](https://modrinth.com/mod/P7dR8mSH)
|
||||
- [Fabric Language Kotlin](https://modrinth.com/mod/Ha28R6CL)
|
||||
- [Wraith Waystones](https://modrinth.com/mod/sTZr7NVo)
|
||||
- [Toni's Immersive Lanterns](https://modrinth.com/mod/vskzdsyT)
|
||||
- [ImmersiveMC](https://modrinth.com/mod/XJ9is6vj)
|
||||
- [Inline](https://modrinth.com/mod/fin1PX4m)
|
||||
- [Jade 🔍](https://modrinth.com/mod/nvQzSEkH)
|
||||
- [Just Enough Items](https://modrinth.com/mod/u6dRKJwZ)
|
||||
- [Krypton](https://modrinth.com/mod/fQEb0iXm)
|
||||
- [Kotlin for Forge](https://modrinth.com/mod/ordsPcFz)
|
||||
- [KubeJS](https://modrinth.com/mod/umyGl7zF)
|
||||
- [MC VR API](https://modrinth.com/mod/B3INNxum)
|
||||
- [MoreJS: KubeJS Addon](https://modrinth.com/mod/mo64mR1W)
|
||||
- [No Chat Reports](https://modrinth.com/mod/qQyHxfxd)
|
||||
- [One Slot](https://modrinth.com/mod/M10XRh3H)
|
||||
- [One Slot at a Time](https://modrinth.com/mod/L76YsJKa)
|
||||
- [oωo (owo-lib)](https://modrinth.com/mod/ccKDOlHs)
|
||||
- [Paradise Lost](https://modrinth.com/mod/IKpsG0nF)
|
||||
- [Patchouli](https://modrinth.com/mod/nU0bVIaL)
|
||||
- [PAUCAL](https://modrinth.com/mod/TZo2wHFe)
|
||||
- [Text Placeholder API](https://modrinth.com/mod/eXts2L7r)
|
||||
- [Plethora Peripherals](https://modrinth.com/mod/LDfFdCXe)
|
||||
- [Rhino](https://modrinth.com/mod/sk9knFPE)
|
||||
- [Simple Voice Chat](https://modrinth.com/mod/9eGKb6K1)
|
||||
- [spark](https://modrinth.com/mod/l6YH9Als)
|
||||
- [Starter Kit](https://modrinth.com/mod/6L3ydNi8)
|
||||
- [Traveler's Backpack](https://modrinth.com/mod/rlloIFEV)
|
||||
- [Trinkets](https://modrinth.com/mod/5aaWibi9)
|
||||
- [TxniLib](https://modrinth.com/mod/vBbPDuOs)
|
||||
- [Vivecraft](https://modrinth.com/mod/wGoQDPN5)
|
||||
- [Wooden Hopper](https://modrinth.com/mod/VOUy9bAs)
|
||||
- [YetAnotherConfigLib (YACL)](https://modrinth.com/mod/1eAoo2KR)
|
||||
- [Your Options Shall Be Respected (YOSBR)](https://modrinth.com/mod/WwbubTsV)
|
||||
|
||||
## Server Mods
|
||||
|
||||
- [BlueMap](https://modrinth.com/mod/swbUV1cr)
|
||||
- [Cardinal Components API](https://modrinth.com/mod/K01OU20C)
|
||||
- [Fabricord](https://modrinth.com/mod/xU8Bn98V)
|
||||
- [Immersive Cursedness Updated](https://modrinth.com/mod/aCkoEaRG)
|
||||
- [Lambda](https://modrinth.com/mod/ov5CWjKZ)
|
||||
- [LuckPerms](https://modrinth.com/mod/Vebnzrzj)
|
||||
- [No Kebab](https://modrinth.com/mod/y82xHklI)
|
||||
- [Polydex](https://modrinth.com/mod/m5NB7FJE)
|
||||
- [Vanilla Permissions](https://modrinth.com/mod/fdZkP5Bb)
|
||||
- [Vanish](https://modrinth.com/mod/UL4bJFDY)
|
||||
- [View Distance Fix](https://modrinth.com/mod/nxrXbh5K)
|
||||
- [Vanishmod](https://modrinth.com/mod/MihN2cw5)
|
||||
|
||||
|
|
Loading…
Reference in a new issue