From 7bcc8fe74f81fb73f277552b7e2cc193d1b20c34 Mon Sep 17 00:00:00 2001 From: Sangelo Date: Sun, 19 Nov 2023 19:50:03 +0100 Subject: [PATCH] Start work on modpack --- .gitignore | 1 + .packwizignore | 2 + index.toml | 276 ++++++++++++++++++++++++++++ mods/ad-astra.pw.toml | 13 ++ mods/adventurez.pw.toml | 13 ++ mods/alloy-forgery.pw.toml | 13 ++ mods/architectury-api.pw.toml | 13 ++ mods/bclib.pw.toml | 13 ++ mods/better-combat.pw.toml | 13 ++ mods/betterend.pw.toml | 13 ++ mods/betternether.pw.toml | 13 ++ mods/botarium.pw.toml | 13 ++ mods/cloth-config.pw.toml | 13 ++ mods/clumps.pw.toml | 13 ++ mods/combat-roll.pw.toml | 13 ++ mods/detail-armor-bar.pw.toml | 13 ++ mods/eating-animation.pw.toml | 13 ++ mods/elytra-slot.pw.toml | 13 ++ mods/elytra-trims.pw.toml | 13 ++ mods/emi-enchanting.pw.toml | 13 ++ mods/emi-loot.pw.toml | 13 ++ mods/emi.pw.toml | 13 ++ mods/emiffect.pw.toml | 13 ++ mods/emitrades.pw.toml | 13 ++ mods/enchanting-infuser.pw.toml | 13 ++ mods/expanded-storage.pw.toml | 13 ++ mods/extra-mod-integrations.pw.toml | 13 ++ mods/forge-config-api-port.pw.toml | 13 ++ mods/fwaystones.pw.toml | 13 ++ mods/gravestones.pw.toml | 13 ++ mods/iceberg.pw.toml | 13 ++ mods/inmis.pw.toml | 13 ++ mods/inmisaddon.pw.toml | 13 ++ mods/inventory-management.pw.toml | 13 ++ mods/item-borders.pw.toml | 13 ++ mods/lambdabettergrass.pw.toml | 13 ++ mods/lambdynamiclights.pw.toml | 13 ++ mods/more-bows-restrung.pw.toml | 13 ++ mods/mouse-tweaks.pw.toml | 13 ++ mods/mythicmetals.pw.toml | 13 ++ mods/not-enough-animations.pw.toml | 13 ++ mods/owo-lib.pw.toml | 13 ++ mods/playeranimator.pw.toml | 13 ++ mods/prism-lib.pw.toml | 13 ++ mods/puzzles-lib.pw.toml | 13 ++ mods/qsl.pw.toml | 13 ++ mods/reimagined-trims.pw.toml | 13 ++ mods/resourceful-config.pw.toml | 13 ++ mods/resourceful-lib.pw.toml | 13 ++ mods/shulkerboxtooltip.pw.toml | 13 ++ mods/simple-armor-hud.pw.toml | 13 ++ mods/simple-hats.pw.toml | 13 ++ mods/simple-voice-chat.pw.toml | 13 ++ mods/simply-swords.pw.toml | 13 ++ mods/toms-storage.pw.toml | 13 ++ mods/trinkets.pw.toml | 13 ++ mods/xaeros-minimap.pw.toml | 13 ++ mods/xaeros-world-map.pw.toml | 13 ++ pack.toml | 13 ++ 59 files changed, 1007 insertions(+) create mode 100644 .gitignore create mode 100644 .packwizignore create mode 100644 index.toml create mode 100644 mods/ad-astra.pw.toml create mode 100644 mods/adventurez.pw.toml create mode 100644 mods/alloy-forgery.pw.toml create mode 100644 mods/architectury-api.pw.toml create mode 100644 mods/bclib.pw.toml create mode 100644 mods/better-combat.pw.toml create mode 100644 mods/betterend.pw.toml create mode 100644 mods/betternether.pw.toml create mode 100644 mods/botarium.pw.toml create mode 100644 mods/cloth-config.pw.toml create mode 100644 mods/clumps.pw.toml create mode 100644 mods/combat-roll.pw.toml create mode 100644 mods/detail-armor-bar.pw.toml create mode 100644 mods/eating-animation.pw.toml create mode 100644 mods/elytra-slot.pw.toml create mode 100644 mods/elytra-trims.pw.toml create mode 100644 mods/emi-enchanting.pw.toml create mode 100644 mods/emi-loot.pw.toml create mode 100644 mods/emi.pw.toml create mode 100644 mods/emiffect.pw.toml create mode 100644 mods/emitrades.pw.toml create mode 100644 mods/enchanting-infuser.pw.toml create mode 100644 mods/expanded-storage.pw.toml create mode 100644 mods/extra-mod-integrations.pw.toml create mode 100644 mods/forge-config-api-port.pw.toml create mode 100644 mods/fwaystones.pw.toml create mode 100644 mods/gravestones.pw.toml create mode 100644 mods/iceberg.pw.toml create mode 100644 mods/inmis.pw.toml create mode 100644 mods/inmisaddon.pw.toml create mode 100644 mods/inventory-management.pw.toml create mode 100644 mods/item-borders.pw.toml create mode 100644 mods/lambdabettergrass.pw.toml create mode 100644 mods/lambdynamiclights.pw.toml create mode 100644 mods/more-bows-restrung.pw.toml create mode 100644 mods/mouse-tweaks.pw.toml create mode 100644 mods/mythicmetals.pw.toml create mode 100644 mods/not-enough-animations.pw.toml create mode 100644 mods/owo-lib.pw.toml create mode 100644 mods/playeranimator.pw.toml create mode 100644 mods/prism-lib.pw.toml create mode 100644 mods/puzzles-lib.pw.toml create mode 100644 mods/qsl.pw.toml create mode 100644 mods/reimagined-trims.pw.toml create mode 100644 mods/resourceful-config.pw.toml create mode 100644 mods/resourceful-lib.pw.toml create mode 100644 mods/shulkerboxtooltip.pw.toml create mode 100644 mods/simple-armor-hud.pw.toml create mode 100644 mods/simple-hats.pw.toml create mode 100644 mods/simple-voice-chat.pw.toml create mode 100644 mods/simply-swords.pw.toml create mode 100644 mods/toms-storage.pw.toml create mode 100644 mods/trinkets.pw.toml create mode 100644 mods/xaeros-minimap.pw.toml create mode 100644 mods/xaeros-world-map.pw.toml create mode 100644 pack.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/.packwizignore b/.packwizignore new file mode 100644 index 0000000..7f32293 --- /dev/null +++ b/.packwizignore @@ -0,0 +1,2 @@ +README.md +.assets/ diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..4bc1102 --- /dev/null +++ b/index.toml @@ -0,0 +1,276 @@ +hash-format = "sha256" + +[[files]] +file = "mods/ad-astra.pw.toml" +hash = "ff786550ebc945232c072bd3011919ab9fef52baf819705309d67c961332b604" +metafile = true + +[[files]] +file = "mods/adventurez.pw.toml" +hash = "5114753cb4d08fb69cc23ff9bf58c70c3d2411f01c0b828dc24c25fa0cb8994b" +metafile = true + +[[files]] +file = "mods/alloy-forgery.pw.toml" +hash = "149062fec33cc9b361650d6aacbbb668381007e14ec6b1ef98fb7e4fe9c51685" +metafile = true + +[[files]] +file = "mods/architectury-api.pw.toml" +hash = "a243675bc757485925b293932ee289b9fbcfb3b75bd3ba74eca7603f191cedad" +metafile = true + +[[files]] +file = "mods/bclib.pw.toml" +hash = "82b70b3ca30f3eedea12049a414cf30baae722c79128b17789a93b6906dc3ca5" +metafile = true + +[[files]] +file = "mods/better-combat.pw.toml" +hash = "9e44e050783e06ab8135679dd4339e1bd96955423c35711bf09c485edeba77cd" +metafile = true + +[[files]] +file = "mods/betterend.pw.toml" +hash = "09faca3cde7ffda49fcd3d4fc4f4a3d4f8774463170dfee83d6472f64bc84016" +metafile = true + +[[files]] +file = "mods/betternether.pw.toml" +hash = "bb1ce36de0df1b27894c1270d6d8bdb6f34b77eb26ed6cac19ef4bd80ae41cd8" +metafile = true + +[[files]] +file = "mods/botarium.pw.toml" +hash = "39c1c613510610ba17f1c40af55cbcf33cde14466f2f6ef9ab102fe67bf6cec5" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "b6348f94ec939f563285dc96683e61da8fc17ab2f2897be2751fa24789513691" +metafile = true + +[[files]] +file = "mods/clumps.pw.toml" +hash = "524505b468ca28db75538936dbaea65fc42d13d07e821ed8c054fe7146044535" +metafile = true + +[[files]] +file = "mods/combat-roll.pw.toml" +hash = "e4d6b010df7d40b0b59e099e091a67c78734af617c79865bf0bca7b1760a0bf3" +metafile = true + +[[files]] +file = "mods/detail-armor-bar.pw.toml" +hash = "89d22d515a1b5b1349b21eaa191a00bf529acca7673ba6af27dfda0380abea2b" +metafile = true + +[[files]] +file = "mods/eating-animation.pw.toml" +hash = "073795fff0829c88707bdd7774faa544034d6a6ea375f1366b5220047450cfc3" +metafile = true + +[[files]] +file = "mods/elytra-slot.pw.toml" +hash = "b73dc299ac242f3dc0e5cafe29701e3f1632adbe33a41561c17701da28cbf30c" +metafile = true + +[[files]] +file = "mods/elytra-trims.pw.toml" +hash = "e441ee075765c101b65218a0d8c4d2c6af8cd349f8a38ddbaa2044160bbb2d7c" +metafile = true + +[[files]] +file = "mods/emi-enchanting.pw.toml" +hash = "f88b04c5b537da9f1d032e3c9dff56648d9c19b7658af065f11d618f5c1c3fdd" +metafile = true + +[[files]] +file = "mods/emi-loot.pw.toml" +hash = "8766521465c1cc6b57199a24008be030eabfd417c0ba7eb6c91f26c2f6ffa70a" +metafile = true + +[[files]] +file = "mods/emi.pw.toml" +hash = "9884c9af4ba83cbdf8bc6b102a257068566641a17d2c6dde63dcf41d0dd0603e" +metafile = true + +[[files]] +file = "mods/emiffect.pw.toml" +hash = "6395441f751bc9aca4cd024df876b9f7abbfc53d8911f5264c5c36eabbb21c82" +metafile = true + +[[files]] +file = "mods/emitrades.pw.toml" +hash = "4c59088a2cb975f60347da57d72bb1069b65452c6a7b92af8facec6e1bed9409" +metafile = true + +[[files]] +file = "mods/enchanting-infuser.pw.toml" +hash = "f95972bcfd722e16976b535ffd4555281256158a2c0a084587ca464d8e83db00" +metafile = true + +[[files]] +file = "mods/expanded-storage.pw.toml" +hash = "557361b486bf7c1f7f8e170218c09b38fd21d09236221e244fab11fe74303b80" +metafile = true + +[[files]] +file = "mods/extra-mod-integrations.pw.toml" +hash = "4b5af07a3311d776868ed6f0c22180ab50f224caca07e6fd7b33c6d8bb2ff80d" +metafile = true + +[[files]] +file = "mods/forge-config-api-port.pw.toml" +hash = "129bb8b135edc60038f021b693f5b88a0067b722f326e0d6067112243774289b" +metafile = true + +[[files]] +file = "mods/fwaystones.pw.toml" +hash = "3f09bb38efde1a93e272c206e11bbf9aed4b70dfea20a346f53c4e7da5080a82" +metafile = true + +[[files]] +file = "mods/gravestones.pw.toml" +hash = "ace9dbdca93d66c486a4474081fc91219640e506b62679bce01318c34af51e13" +metafile = true + +[[files]] +file = "mods/iceberg.pw.toml" +hash = "a4d47f10df4769734a850e6a2cd7342802f92f5e269b27464c86cfd0b5a2182f" +metafile = true + +[[files]] +file = "mods/inmis.pw.toml" +hash = "feefe07278b869d769f1f679c89f9e37056558802cf16d0f96f79759ac372ba8" +metafile = true + +[[files]] +file = "mods/inmisaddon.pw.toml" +hash = "16e7fe544a266d9f2ff4a8ae05f1b6c9db183145d429df578bc330c7dee973d3" +metafile = true + +[[files]] +file = "mods/inventory-management.pw.toml" +hash = "e181bb57004fede8c736e9183d8645e7db17d965669590575b3cbbc1050075ef" +metafile = true + +[[files]] +file = "mods/item-borders.pw.toml" +hash = "886ec9532b2ab57d9e0921283b2fbfa4e13460f955172c166ad28b171871dd81" +metafile = true + +[[files]] +file = "mods/lambdabettergrass.pw.toml" +hash = "0e0ad3001c99ec281023ad8fefb7ace9931cb8cbda6d4ed18abf2b47c02320da" +metafile = true + +[[files]] +file = "mods/lambdynamiclights.pw.toml" +hash = "a626674fc1092afe5ccc6cbf4856c09119e42395494f1c3862eed2ab17da0221" +metafile = true + +[[files]] +file = "mods/more-bows-restrung.pw.toml" +hash = "c00e00e5a9ad5337e2581435478cf42231c08fd9ab37e9f8be34fa55cb53325d" +metafile = true + +[[files]] +file = "mods/mouse-tweaks.pw.toml" +hash = "669008dbd2508a67f8c409096cf2357de450f26a69494289e5852045ade7d358" +metafile = true + +[[files]] +file = "mods/mythicmetals.pw.toml" +hash = "c5bc71474074d35ec411cc95734b9ded5c27bf26564a166bec9750e2aa40b3c6" +metafile = true + +[[files]] +file = "mods/not-enough-animations.pw.toml" +hash = "15bbdb7f98ae7148b79b69408488dd03016ac89fe647b5396417a8ba4f968df0" +metafile = true + +[[files]] +file = "mods/owo-lib.pw.toml" +hash = "28b3e0806647eb166e942cf6552993bb6d666949c53f0d51927bdfb063cb6cc4" +metafile = true + +[[files]] +file = "mods/playeranimator.pw.toml" +hash = "a3d67082a95f70155d68aec25d7ffba8a7c7bc48b342529e52005ddfc76f11ae" +metafile = true + +[[files]] +file = "mods/prism-lib.pw.toml" +hash = "e51bce9d59f8db31f2730a742b84917a3729388f2fc44e0aa51fa39f9dfb43d5" +metafile = true + +[[files]] +file = "mods/puzzles-lib.pw.toml" +hash = "8ecb202cbaf851233c9b3ff1541f8c70af8334779d59e8046450d6bcd62edc67" +metafile = true + +[[files]] +file = "mods/qsl.pw.toml" +hash = "db2669fd5202942c0d0514c797c198506470e149542ac9d65e33e04f1a01db23" +metafile = true + +[[files]] +file = "mods/reimagined-trims.pw.toml" +hash = "416ed064c8533803905d539632c321749e6850453454200874e0b4487cd983aa" +metafile = true + +[[files]] +file = "mods/resourceful-config.pw.toml" +hash = "57d01e72025cda62fd692056f651cec99fdf34ca8874119dfd3e9d9d16f78195" +metafile = true + +[[files]] +file = "mods/resourceful-lib.pw.toml" +hash = "637453f471b9b9a07c0d455eacbaa63509bd8066ca14f15e2225328bb18ca201" +metafile = true + +[[files]] +file = "mods/shulkerboxtooltip.pw.toml" +hash = "edba7765364ba526fcc7da563e9858d997dd9915401e08040c32de7f79d1bb91" +metafile = true + +[[files]] +file = "mods/simple-armor-hud.pw.toml" +hash = "37a6f09be622f0165e18c8ae6182e14038f69d74dd8a148d5adcea0545bac9da" +metafile = true + +[[files]] +file = "mods/simple-hats.pw.toml" +hash = "785a9317dde69152877bd175024e7207508b56da6e003094e115f925fe1fbcda" +metafile = true + +[[files]] +file = "mods/simple-voice-chat.pw.toml" +hash = "ca636f50faa18c478ea2a61be17383997bf70fe215a3e7b742b3d92dba87ece4" +metafile = true + +[[files]] +file = "mods/simply-swords.pw.toml" +hash = "481554a4e059cda1be174d3942f0c0f0d7158fc8fc985ee332ccc4e2c74894b7" +metafile = true + +[[files]] +file = "mods/toms-storage.pw.toml" +hash = "16533ac83d5cd1cb2708e080ad7996b22a595a7184a034516d46ad871776cd9b" +metafile = true + +[[files]] +file = "mods/trinkets.pw.toml" +hash = "b2e02d1210f025b905299bfc88f895058640158343322641aca2c4875622c992" +metafile = true + +[[files]] +file = "mods/xaeros-minimap.pw.toml" +hash = "97da858e6f958a87d076852f8e68a94095c1169f38f4089718ad56ea3eb11a2d" +metafile = true + +[[files]] +file = "mods/xaeros-world-map.pw.toml" +hash = "a94b26104a8ff5dafab4b0824eca6f44ed71aa0ed53b150a2659b1d7361a2b31" +metafile = true diff --git a/mods/ad-astra.pw.toml b/mods/ad-astra.pw.toml new file mode 100644 index 0000000..8118647 --- /dev/null +++ b/mods/ad-astra.pw.toml @@ -0,0 +1,13 @@ +name = "Ad Astra" +filename = "ad_astra-fabric-1.20.1-1.15.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3ufwT9JF/versions/DruFc2hK/ad_astra-fabric-1.20.1-1.15.4.jar" +hash-format = "sha1" +hash = "4f3904c169a6ce648675e3ce57962fb8e30a87c6" + +[update] +[update.modrinth] +mod-id = "3ufwT9JF" +version = "DruFc2hK" diff --git a/mods/adventurez.pw.toml b/mods/adventurez.pw.toml new file mode 100644 index 0000000..8a51525 --- /dev/null +++ b/mods/adventurez.pw.toml @@ -0,0 +1,13 @@ +name = "AdventureZ" +filename = "adventurez-1.4.19.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/defK2XM3/versions/zrb4qqdJ/adventurez-1.4.19.jar" +hash-format = "sha1" +hash = "aeac6adc51b901a67131e21f6bf81d4319bdb915" + +[update] +[update.modrinth] +mod-id = "defK2XM3" +version = "zrb4qqdJ" diff --git a/mods/alloy-forgery.pw.toml b/mods/alloy-forgery.pw.toml new file mode 100644 index 0000000..a473592 --- /dev/null +++ b/mods/alloy-forgery.pw.toml @@ -0,0 +1,13 @@ +name = "Alloy Forgery" +filename = "alloy-forgery-2.0.22+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jhl28YkY/versions/CDuKyCCF/alloy-forgery-2.0.22%2B1.20.jar" +hash-format = "sha1" +hash = "7f13357a70a8a04c0c2747e80b7fc9dbaf5801c1" + +[update] +[update.modrinth] +mod-id = "jhl28YkY" +version = "CDuKyCCF" diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml new file mode 100644 index 0000000..7dadcdd --- /dev/null +++ b/mods/architectury-api.pw.toml @@ -0,0 +1,13 @@ +name = "Architectury API" +filename = "architectury-9.1.12-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/Sbew3kXe/architectury-9.1.12-fabric.jar" +hash-format = "sha1" +hash = "add0fffa445ee2959b0898484732704a15156553" + +[update] +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "Sbew3kXe" diff --git a/mods/bclib.pw.toml b/mods/bclib.pw.toml new file mode 100644 index 0000000..c751b68 --- /dev/null +++ b/mods/bclib.pw.toml @@ -0,0 +1,13 @@ +name = "BCLib" +filename = "bclib-3.0.13.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BgNRHReB/versions/bccqbyya/bclib-3.0.13.jar" +hash-format = "sha1" +hash = "4850fbc25fa1f2217916155ed354579af1c15205" + +[update] +[update.modrinth] +mod-id = "BgNRHReB" +version = "bccqbyya" diff --git a/mods/better-combat.pw.toml b/mods/better-combat.pw.toml new file mode 100644 index 0000000..d65eb84 --- /dev/null +++ b/mods/better-combat.pw.toml @@ -0,0 +1,13 @@ +name = "Better Combat" +filename = "bettercombat-fabric-1.8.3+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5sy6g3kz/versions/1mMMpsqV/bettercombat-fabric-1.8.3%2B1.20.1.jar" +hash-format = "sha1" +hash = "ba4fd38eb9b0b9922c4a3be31d4ae3f6c3cc0493" + +[update] +[update.modrinth] +mod-id = "5sy6g3kz" +version = "1mMMpsqV" diff --git a/mods/betterend.pw.toml b/mods/betterend.pw.toml new file mode 100644 index 0000000..ad88596 --- /dev/null +++ b/mods/betterend.pw.toml @@ -0,0 +1,13 @@ +name = "BetterEnd" +filename = "better-end-4.0.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gc8OEnCC/versions/otd2erfL/better-end-4.0.10.jar" +hash-format = "sha1" +hash = "1e7da7e351af26a912934d05b0aa77e5f6c4d139" + +[update] +[update.modrinth] +mod-id = "gc8OEnCC" +version = "otd2erfL" diff --git a/mods/betternether.pw.toml b/mods/betternether.pw.toml new file mode 100644 index 0000000..81c619a --- /dev/null +++ b/mods/betternether.pw.toml @@ -0,0 +1,13 @@ +name = "BetterNether" +filename = "better-nether-9.0.9.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MpzVLzy5/versions/9kJblF2V/better-nether-9.0.9.jar" +hash-format = "sha1" +hash = "ee7275b0d3f627520c9d17dd3c942ec82ca093a7" + +[update] +[update.modrinth] +mod-id = "MpzVLzy5" +version = "9kJblF2V" diff --git a/mods/botarium.pw.toml b/mods/botarium.pw.toml new file mode 100644 index 0000000..c2121d3 --- /dev/null +++ b/mods/botarium.pw.toml @@ -0,0 +1,13 @@ +name = "Botarium" +filename = "botarium-fabric-1.20.1-2.2.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2u6LRnMa/versions/9yTYvTAh/botarium-fabric-1.20.1-2.2.1.jar" +hash-format = "sha1" +hash = "feea0555a82bfb71e3edf9dfea7054423bdb7f3e" + +[update] +[update.modrinth] +mod-id = "2u6LRnMa" +version = "9yTYvTAh" diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml new file mode 100644 index 0000000..06a50a5 --- /dev/null +++ b/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-11.1.106-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/s7VTKfLA/cloth-config-11.1.106-fabric.jar" +hash-format = "sha1" +hash = "a05e176326365f2b8e377a35be52a5671491bcfd" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "s7VTKfLA" diff --git a/mods/clumps.pw.toml b/mods/clumps.pw.toml new file mode 100644 index 0000000..a9c5627 --- /dev/null +++ b/mods/clumps.pw.toml @@ -0,0 +1,13 @@ +name = "Clumps" +filename = "Clumps-fabric-1.20.1-12.0.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/l3neajc5/Clumps-fabric-1.20.1-12.0.0.3.jar" +hash-format = "sha1" +hash = "ef8d6b4b83b99153eca38fd1facbb1470cff7ade" + +[update] +[update.modrinth] +mod-id = "Wnxd13zP" +version = "l3neajc5" diff --git a/mods/combat-roll.pw.toml b/mods/combat-roll.pw.toml new file mode 100644 index 0000000..4ea3f86 --- /dev/null +++ b/mods/combat-roll.pw.toml @@ -0,0 +1,13 @@ +name = "Combat Roll" +filename = "combatroll-fabric-1.3.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wGKYL7st/versions/soyzSn1W/combatroll-fabric-1.3.0%2B1.20.1.jar" +hash-format = "sha1" +hash = "3c322af4d14547a74445cc4306001743b368c9ce" + +[update] +[update.modrinth] +mod-id = "wGKYL7st" +version = "soyzSn1W" diff --git a/mods/detail-armor-bar.pw.toml b/mods/detail-armor-bar.pw.toml new file mode 100644 index 0000000..a786adf --- /dev/null +++ b/mods/detail-armor-bar.pw.toml @@ -0,0 +1,13 @@ +name = "Detail Armor Bar" +filename = "DetailArmorBar-2.6.3+1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/hAt6ty93/versions/bFQ1ISy6/DetailArmorBar-2.6.3%2B1.20.1-fabric.jar" +hash-format = "sha1" +hash = "4ebf5767f28d700583e8ee0e91eab118657101d2" + +[update] +[update.modrinth] +mod-id = "hAt6ty93" +version = "bFQ1ISy6" diff --git a/mods/eating-animation.pw.toml b/mods/eating-animation.pw.toml new file mode 100644 index 0000000..94619cf --- /dev/null +++ b/mods/eating-animation.pw.toml @@ -0,0 +1,13 @@ +name = "Eating Animation" +filename = "eating-animation-1.20+1.9.5-CMDfix.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/rUgZvGzi/versions/RG3MoH9k/eating-animation-1.20%2B1.9.5-CMDfix.jar" +hash-format = "sha1" +hash = "9e6e08e967e9137db0a7a9f964c6057ea72675d9" + +[update] +[update.modrinth] +mod-id = "rUgZvGzi" +version = "RG3MoH9k" diff --git a/mods/elytra-slot.pw.toml b/mods/elytra-slot.pw.toml new file mode 100644 index 0000000..b6ce937 --- /dev/null +++ b/mods/elytra-slot.pw.toml @@ -0,0 +1,13 @@ +name = "Elytra Slot" +filename = "elytraslot-quilt-6.3.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/mSQF1NpT/versions/AmEdJTeq/elytraslot-quilt-6.3.0%2B1.20.1.jar" +hash-format = "sha1" +hash = "3326db059c733d9d65e7bd3ca3af5ab89a8fe933" + +[update] +[update.modrinth] +mod-id = "mSQF1NpT" +version = "AmEdJTeq" diff --git a/mods/elytra-trims.pw.toml b/mods/elytra-trims.pw.toml new file mode 100644 index 0000000..ae6c814 --- /dev/null +++ b/mods/elytra-trims.pw.toml @@ -0,0 +1,13 @@ +name = "Elytra Trims" +filename = "elytratrims-1.4.3+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XpzGz7KD/versions/cNldVpfM/elytratrims-1.4.3%2B1.20.jar" +hash-format = "sha1" +hash = "63681e035c13c7404f5ce73ae49f6098bc25f503" + +[update] +[update.modrinth] +mod-id = "XpzGz7KD" +version = "cNldVpfM" diff --git a/mods/emi-enchanting.pw.toml b/mods/emi-enchanting.pw.toml new file mode 100644 index 0000000..885de29 --- /dev/null +++ b/mods/emi-enchanting.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Enchanting" +filename = "emi_enchanting-0.1.0+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/wbWoo11W/versions/EQYdSyh8/emi_enchanting-0.1.0%2B1.20.1.jar" +hash-format = "sha1" +hash = "a71e9d17d2974ae5d5c9f764279433c76c7f89e6" + +[update] +[update.modrinth] +mod-id = "wbWoo11W" +version = "EQYdSyh8" diff --git a/mods/emi-loot.pw.toml b/mods/emi-loot.pw.toml new file mode 100644 index 0000000..518d793 --- /dev/null +++ b/mods/emi-loot.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Loot" +filename = "emi_loot-0.6.5+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qbbO7Jns/versions/7fjkgVEh/emi_loot-0.6.5%2B1.20.1.jar" +hash-format = "sha1" +hash = "e6398e3aef04cbe96273e9174601953ab48f5191" + +[update] +[update.modrinth] +mod-id = "qbbO7Jns" +version = "7fjkgVEh" diff --git a/mods/emi.pw.toml b/mods/emi.pw.toml new file mode 100644 index 0000000..b415b44 --- /dev/null +++ b/mods/emi.pw.toml @@ -0,0 +1,13 @@ +name = "EMI" +filename = "emi-1.0.24+1.20.1+fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/EY0bsln7/emi-1.0.24%2B1.20.1%2Bfabric.jar" +hash-format = "sha1" +hash = "a396a3e37de75ec7ebd86f2488f1508c84d21c69" + +[update] +[update.modrinth] +mod-id = "fRiHVvU7" +version = "EY0bsln7" diff --git a/mods/emiffect.pw.toml b/mods/emiffect.pw.toml new file mode 100644 index 0000000..ef9310b --- /dev/null +++ b/mods/emiffect.pw.toml @@ -0,0 +1,13 @@ +name = "EMIffect" +filename = "emiffect-fabric-1.1.1+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/705gWllI/versions/snwqJj9A/emiffect-fabric-1.1.1%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "01bdb198a9877a3c3fdb5e3f1d5dc2d63a8e2c9e" + +[update] +[update.modrinth] +mod-id = "705gWllI" +version = "snwqJj9A" diff --git a/mods/emitrades.pw.toml b/mods/emitrades.pw.toml new file mode 100644 index 0000000..e6c551e --- /dev/null +++ b/mods/emitrades.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Trades" +filename = "emitrades-fabric-1.2.0+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/j2HhbEE7/versions/hlcZDRJ1/emitrades-fabric-1.2.0%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "880671a5d55859627eb91f5938ff8d81b9cb24ad" + +[update] +[update.modrinth] +mod-id = "j2HhbEE7" +version = "hlcZDRJ1" diff --git a/mods/enchanting-infuser.pw.toml b/mods/enchanting-infuser.pw.toml new file mode 100644 index 0000000..01c79a8 --- /dev/null +++ b/mods/enchanting-infuser.pw.toml @@ -0,0 +1,13 @@ +name = "Enchanting Infuser" +filename = "EnchantingInfuser-v8.0.2-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ePv85y52/versions/D1uroW8m/EnchantingInfuser-v8.0.2-1.20.1-Fabric.jar" +hash-format = "sha1" +hash = "daa95a9249e35c7e100d6baf066a5062468fb34f" + +[update] +[update.modrinth] +mod-id = "ePv85y52" +version = "D1uroW8m" diff --git a/mods/expanded-storage.pw.toml b/mods/expanded-storage.pw.toml new file mode 100644 index 0000000..7f9bb16 --- /dev/null +++ b/mods/expanded-storage.pw.toml @@ -0,0 +1,13 @@ +name = "Expanded Storage" +filename = "expandedstorage-10.0.0-beta.3+1.20-quilt.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/F56tBubk/versions/5ByZBc2K/expandedstorage-10.0.0-beta.3%2B1.20-quilt.jar" +hash-format = "sha1" +hash = "2536f89491efe6cd7fd290c5a7d3291f903362d3" + +[update] +[update.modrinth] +mod-id = "F56tBubk" +version = "5ByZBc2K" diff --git a/mods/extra-mod-integrations.pw.toml b/mods/extra-mod-integrations.pw.toml new file mode 100644 index 0000000..8f90b03 --- /dev/null +++ b/mods/extra-mod-integrations.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Addon: Extra Mod Integrations" +filename = "extra-mod-integrations-0.4.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bpRHnWUb/versions/juXS5CaW/extra-mod-integrations-0.4.1%2B1.20.1.jar" +hash-format = "sha1" +hash = "b52e8070940c96a156ba04d377b40f3555049ba7" + +[update] +[update.modrinth] +mod-id = "bpRHnWUb" +version = "juXS5CaW" diff --git a/mods/forge-config-api-port.pw.toml b/mods/forge-config-api-port.pw.toml new file mode 100644 index 0000000..c2028f6 --- /dev/null +++ b/mods/forge-config-api-port.pw.toml @@ -0,0 +1,13 @@ +name = "Forge Config API Port" +filename = "ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ohNO6lps/versions/CtENDTlF/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.jar" +hash-format = "sha1" +hash = "2ba4a6149362dbbf81288f393f0022ee9fb07302" + +[update] +[update.modrinth] +mod-id = "ohNO6lps" +version = "CtENDTlF" diff --git a/mods/fwaystones.pw.toml b/mods/fwaystones.pw.toml new file mode 100644 index 0000000..afab8d8 --- /dev/null +++ b/mods/fwaystones.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Waystones" +filename = "wraith-waystones-3.3.1+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sTZr7NVo/versions/6qnJ50rN/wraith-waystones-3.3.1%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "329e7ea1ce1e56759265ad8edb0067e95ea939d5" + +[update] +[update.modrinth] +mod-id = "sTZr7NVo" +version = "6qnJ50rN" diff --git a/mods/gravestones.pw.toml b/mods/gravestones.pw.toml new file mode 100644 index 0000000..53ccbd4 --- /dev/null +++ b/mods/gravestones.pw.toml @@ -0,0 +1,13 @@ +name = "Gravestones" +filename = "gravestones-v1.15.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ssUbhMkL/versions/Uw9uAQaY/gravestones-v1.15.jar" +hash-format = "sha1" +hash = "94c2fd5291c0ccf9f9bce7c0f6093df69b2cc18f" + +[update] +[update.modrinth] +mod-id = "ssUbhMkL" +version = "Uw9uAQaY" diff --git a/mods/iceberg.pw.toml b/mods/iceberg.pw.toml new file mode 100644 index 0000000..84db2e2 --- /dev/null +++ b/mods/iceberg.pw.toml @@ -0,0 +1,13 @@ +name = "Iceberg" +filename = "Iceberg-1.20.1-fabric-1.1.15.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5faXoLqX/versions/SLE7PvYD/Iceberg-1.20.1-fabric-1.1.15.jar" +hash-format = "sha1" +hash = "0d2e4a54ed7971e3c2d13b4b9583fb9e65e6ccc1" + +[update] +[update.modrinth] +mod-id = "5faXoLqX" +version = "SLE7PvYD" diff --git a/mods/inmis.pw.toml b/mods/inmis.pw.toml new file mode 100644 index 0000000..8cd5bba --- /dev/null +++ b/mods/inmis.pw.toml @@ -0,0 +1,13 @@ +name = "Inmis" +filename = "inmis-2.7.2-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/I0UYcPa0/versions/ed738xvb/inmis-2.7.2-1.20.1.jar" +hash-format = "sha1" +hash = "e04612567833f1b5fecc28a2963297316d835179" + +[update] +[update.modrinth] +mod-id = "I0UYcPa0" +version = "ed738xvb" diff --git a/mods/inmisaddon.pw.toml b/mods/inmisaddon.pw.toml new file mode 100644 index 0000000..aeea426 --- /dev/null +++ b/mods/inmisaddon.pw.toml @@ -0,0 +1,13 @@ +name = "InmisAddon" +filename = "inmisaddon-1.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/c4aa1Mqq/versions/e74mtqLw/inmisaddon-1.0.4.jar" +hash-format = "sha1" +hash = "8603878c15de77881483b11483752f93df9cae6b" + +[update] +[update.modrinth] +mod-id = "c4aa1Mqq" +version = "e74mtqLw" diff --git a/mods/inventory-management.pw.toml b/mods/inventory-management.pw.toml new file mode 100644 index 0000000..8214f83 --- /dev/null +++ b/mods/inventory-management.pw.toml @@ -0,0 +1,13 @@ +name = "Inventory Management" +filename = "inventorymanagement-1.3.1+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/F7wXag4i/versions/iYujfjuN/inventorymanagement-1.3.1%2B1.20.jar" +hash-format = "sha1" +hash = "0b1d3b2c084a8e8594229d201360262f9e17d3b6" + +[update] +[update.modrinth] +mod-id = "F7wXag4i" +version = "iYujfjuN" diff --git a/mods/item-borders.pw.toml b/mods/item-borders.pw.toml new file mode 100644 index 0000000..424e8e5 --- /dev/null +++ b/mods/item-borders.pw.toml @@ -0,0 +1,13 @@ +name = "Item Borders" +filename = "ItemBorders-1.20.1-fabric-1.2.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/b1fMg6sH/versions/cvjiUM1F/ItemBorders-1.20.1-fabric-1.2.0.jar" +hash-format = "sha1" +hash = "91509b714762d92d347340c52773d0bb5466b583" + +[update] +[update.modrinth] +mod-id = "b1fMg6sH" +version = "cvjiUM1F" diff --git a/mods/lambdabettergrass.pw.toml b/mods/lambdabettergrass.pw.toml new file mode 100644 index 0000000..6b116b7 --- /dev/null +++ b/mods/lambdabettergrass.pw.toml @@ -0,0 +1,13 @@ +name = "LambdaBetterGrass" +filename = "lambdabettergrass-1.5.2+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/2Uev7LdA/versions/Fhyj2P7Q/lambdabettergrass-1.5.2%2B1.20.1.jar" +hash-format = "sha1" +hash = "4b3658f4dc69212768db703b7931f0d51a5c5568" + +[update] +[update.modrinth] +mod-id = "2Uev7LdA" +version = "Fhyj2P7Q" diff --git a/mods/lambdynamiclights.pw.toml b/mods/lambdynamiclights.pw.toml new file mode 100644 index 0000000..66842a8 --- /dev/null +++ b/mods/lambdynamiclights.pw.toml @@ -0,0 +1,13 @@ +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 = "sha1" +hash = "71b636fa74744e51ba2d248c81a38bdbfad5d43b" + +[update] +[update.modrinth] +mod-id = "yBW8D80W" +version = "mYl4RvKg" diff --git a/mods/more-bows-restrung.pw.toml b/mods/more-bows-restrung.pw.toml new file mode 100644 index 0000000..d2808f4 --- /dev/null +++ b/mods/more-bows-restrung.pw.toml @@ -0,0 +1,13 @@ +name = "More Bows: Restrung!" +filename = "MoreBows-1.0.11+1.20.x.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CkMS2Yh3/versions/AaB1oW9s/MoreBows-1.0.11%2B1.20.x.jar" +hash-format = "sha1" +hash = "5038ea2442f2f8f9781300df7965bd3211aef911" + +[update] +[update.modrinth] +mod-id = "CkMS2Yh3" +version = "AaB1oW9s" diff --git a/mods/mouse-tweaks.pw.toml b/mods/mouse-tweaks.pw.toml new file mode 100644 index 0000000..ce259b4 --- /dev/null +++ b/mods/mouse-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "Mouse Tweaks" +filename = "MouseTweaks-fabric-mc1.20-2.25.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/m0Dd8Cjy/MouseTweaks-fabric-mc1.20-2.25.jar" +hash-format = "sha1" +hash = "21ae6dd81324543e77c10bbb2b928320d71b6750" + +[update] +[update.modrinth] +mod-id = "aC3cM3Vq" +version = "m0Dd8Cjy" diff --git a/mods/mythicmetals.pw.toml b/mods/mythicmetals.pw.toml new file mode 100644 index 0000000..980b94f --- /dev/null +++ b/mods/mythicmetals.pw.toml @@ -0,0 +1,13 @@ +name = "Mythic Metals" +filename = "mythicmetals-0.19.0+1.20-alpha.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bAWzYNRd/versions/iA7KLbpI/mythicmetals-0.19.0%2B1.20-alpha.jar" +hash-format = "sha1" +hash = "6a6117fee4c98535c51e1f0a94232a38058a5b98" + +[update] +[update.modrinth] +mod-id = "bAWzYNRd" +version = "iA7KLbpI" diff --git a/mods/not-enough-animations.pw.toml b/mods/not-enough-animations.pw.toml new file mode 100644 index 0000000..8bf3465 --- /dev/null +++ b/mods/not-enough-animations.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Animations" +filename = "notenoughanimations-fabric-1.6.4-mc1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/MPCX6s5C/versions/6auoqhMp/notenoughanimations-fabric-1.6.4-mc1.20.jar" +hash-format = "sha1" +hash = "8397ccb8afcf16e7f27e5f0d5ca5c2346ee5330d" + +[update] +[update.modrinth] +mod-id = "MPCX6s5C" +version = "6auoqhMp" diff --git a/mods/owo-lib.pw.toml b/mods/owo-lib.pw.toml new file mode 100644 index 0000000..b7347dd --- /dev/null +++ b/mods/owo-lib.pw.toml @@ -0,0 +1,13 @@ +name = "oωo (owo-lib)" +filename = "owo-lib-0.11.2+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/zyOBB7J4/owo-lib-0.11.2%2B1.20.jar" +hash-format = "sha1" +hash = "be88938ca5df78271e64bc9f85c3575754f33e2a" + +[update] +[update.modrinth] +mod-id = "ccKDOlHs" +version = "zyOBB7J4" diff --git a/mods/playeranimator.pw.toml b/mods/playeranimator.pw.toml new file mode 100644 index 0000000..a98b0de --- /dev/null +++ b/mods/playeranimator.pw.toml @@ -0,0 +1,13 @@ +name = "playerAnimator" +filename = "player-animation-lib-fabric-1.0.2-rc1+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gedNE4y2/versions/yDqYTUaf/player-animation-lib-fabric-1.0.2-rc1%2B1.20.jar" +hash-format = "sha1" +hash = "9182c38bcf614d0ed7091b15f7e099a7f2fb3617" + +[update] +[update.modrinth] +mod-id = "gedNE4y2" +version = "yDqYTUaf" diff --git a/mods/prism-lib.pw.toml b/mods/prism-lib.pw.toml new file mode 100644 index 0000000..2429ef9 --- /dev/null +++ b/mods/prism-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Prism" +filename = "Prism-1.20.1-fabric-1.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1OE8wbN0/versions/Fmetb8IP/Prism-1.20.1-fabric-1.0.5.jar" +hash-format = "sha1" +hash = "cd169ef91788fed7e1025e5d2273d61978898e52" + +[update] +[update.modrinth] +mod-id = "1OE8wbN0" +version = "Fmetb8IP" diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml new file mode 100644 index 0000000..13f3135 --- /dev/null +++ b/mods/puzzles-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Puzzles Lib" +filename = "PuzzlesLib-v8.1.8-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/57xICvxd/PuzzlesLib-v8.1.8-1.20.1-Fabric.jar" +hash-format = "sha1" +hash = "ea8186e18036e0f6df3a3bdb480c78accef612b6" + +[update] +[update.modrinth] +mod-id = "QAGBst4M" +version = "57xICvxd" diff --git a/mods/qsl.pw.toml b/mods/qsl.pw.toml new file mode 100644 index 0000000..d3bbfbd --- /dev/null +++ b/mods/qsl.pw.toml @@ -0,0 +1,13 @@ +name = "Quilted Fabric API (QFAPI) / Quilt Standard Libraries (QSL)" +filename = "qfapi-7.4.0_qsl-6.1.2_fapi-0.90.0_mc-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qvIfYCYJ/versions/GjvWb8WQ/qfapi-7.4.0_qsl-6.1.2_fapi-0.90.0_mc-1.20.1.jar" +hash-format = "sha1" +hash = "d52456c799cc2534331f9cc71532e43c5f886554" + +[update] +[update.modrinth] +mod-id = "qvIfYCYJ" +version = "GjvWb8WQ" diff --git a/mods/reimagined-trims.pw.toml b/mods/reimagined-trims.pw.toml new file mode 100644 index 0000000..cfbd406 --- /dev/null +++ b/mods/reimagined-trims.pw.toml @@ -0,0 +1,13 @@ +name = "Reimagined Trims" +filename = "reimagined-trims-1.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Go9Vr0TE/versions/HpOkp0sa/reimagined-trims-1.0.3.jar" +hash-format = "sha1" +hash = "b910beac8a41a7323ab34609190f2b7b12169e08" + +[update] +[update.modrinth] +mod-id = "Go9Vr0TE" +version = "HpOkp0sa" diff --git a/mods/resourceful-config.pw.toml b/mods/resourceful-config.pw.toml new file mode 100644 index 0000000..e22efec --- /dev/null +++ b/mods/resourceful-config.pw.toml @@ -0,0 +1,13 @@ +name = "Resourceful Config" +filename = "resourcefulconfig-fabric-1.20.1-2.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/M1953qlQ/versions/nVDWZ9N7/resourcefulconfig-fabric-1.20.1-2.1.0.jar" +hash-format = "sha1" +hash = "8dfc26fe140d5e1e6953076c6257a9799a10f5af" + +[update] +[update.modrinth] +mod-id = "M1953qlQ" +version = "nVDWZ9N7" diff --git a/mods/resourceful-lib.pw.toml b/mods/resourceful-lib.pw.toml new file mode 100644 index 0000000..6cb25fc --- /dev/null +++ b/mods/resourceful-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Resourceful Lib" +filename = "resourcefullib-fabric-1.20.1-2.1.16.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/G1hIVOrD/versions/Qz28Npy5/resourcefullib-fabric-1.20.1-2.1.16.jar" +hash-format = "sha1" +hash = "0d40adf4f88b52120dcb8985c1300e755a6d34c9" + +[update] +[update.modrinth] +mod-id = "G1hIVOrD" +version = "Qz28Npy5" diff --git a/mods/shulkerboxtooltip.pw.toml b/mods/shulkerboxtooltip.pw.toml new file mode 100644 index 0000000..338277e --- /dev/null +++ b/mods/shulkerboxtooltip.pw.toml @@ -0,0 +1,13 @@ +name = "Shulker Box Tooltip" +filename = "shulkerboxtooltip-fabric-4.0.4+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2M01OLQq/versions/gVxjsEiQ/shulkerboxtooltip-fabric-4.0.4%2B1.20.1.jar" +hash-format = "sha1" +hash = "40b822aeed9de6aec3c872af9be2ba17b3867482" + +[update] +[update.modrinth] +mod-id = "2M01OLQq" +version = "gVxjsEiQ" diff --git a/mods/simple-armor-hud.pw.toml b/mods/simple-armor-hud.pw.toml new file mode 100644 index 0000000..2190823 --- /dev/null +++ b/mods/simple-armor-hud.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Armor Hud" +filename = "simple-armor-hud-1.20.2-1.3.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/tJflAtvJ/versions/qZuBkKeD/simple-armor-hud-1.20.2-1.3.2.jar" +hash-format = "sha1" +hash = "3f8c56c07ba6592d7658ba18d14ca65d3bb8f2e8" + +[update] +[update.modrinth] +mod-id = "tJflAtvJ" +version = "qZuBkKeD" diff --git a/mods/simple-hats.pw.toml b/mods/simple-hats.pw.toml new file mode 100644 index 0000000..882262d --- /dev/null +++ b/mods/simple-hats.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Hats" +filename = "simplehats-fabric-1.20.1-0.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/iSkQCp6b/versions/sAdk4uhI/simplehats-fabric-1.20.1-0.2.0.jar" +hash-format = "sha1" +hash = "de3947ecbdd5eff8e8cfa2fb1f289e17fd457a92" + +[update] +[update.modrinth] +mod-id = "iSkQCp6b" +version = "sAdk4uhI" diff --git a/mods/simple-voice-chat.pw.toml b/mods/simple-voice-chat.pw.toml new file mode 100644 index 0000000..d39a65a --- /dev/null +++ b/mods/simple-voice-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Voice Chat" +filename = "voicechat-quilt-1.20.1-2.4.28.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/SDtXZKUE/voicechat-quilt-1.20.1-2.4.28.jar" +hash-format = "sha1" +hash = "45c773e22a788bac5adb2dae83c52a48f50ba788" + +[update] +[update.modrinth] +mod-id = "9eGKb6K1" +version = "SDtXZKUE" diff --git a/mods/simply-swords.pw.toml b/mods/simply-swords.pw.toml new file mode 100644 index 0000000..52d45a1 --- /dev/null +++ b/mods/simply-swords.pw.toml @@ -0,0 +1,13 @@ +name = "Simply Swords" +filename = "simplyswords-fabric-1.51.5-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bK3Ubu9p/versions/bRyxkjAA/simplyswords-fabric-1.51.5-1.20.1.jar" +hash-format = "sha1" +hash = "a29c8224a2063f02d06879e4066de78e8d1c8ee1" + +[update] +[update.modrinth] +mod-id = "bK3Ubu9p" +version = "bRyxkjAA" diff --git a/mods/toms-storage.pw.toml b/mods/toms-storage.pw.toml new file mode 100644 index 0000000..6c533a0 --- /dev/null +++ b/mods/toms-storage.pw.toml @@ -0,0 +1,13 @@ +name = "Tom's Simple Storage Mod" +filename = "toms_storage_fabric-1.20-1.6.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XZNI4Cpy/versions/l63ucSOn/toms_storage_fabric-1.20-1.6.5.jar" +hash-format = "sha1" +hash = "53763ad5af7d4cfde29b5f0f627adc08fa2b721c" + +[update] +[update.modrinth] +mod-id = "XZNI4Cpy" +version = "l63ucSOn" diff --git a/mods/trinkets.pw.toml b/mods/trinkets.pw.toml new file mode 100644 index 0000000..9b817ff --- /dev/null +++ b/mods/trinkets.pw.toml @@ -0,0 +1,13 @@ +name = "Trinkets" +filename = "trinkets-3.7.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5aaWibi9/versions/e563ycts/trinkets-3.7.1.jar" +hash-format = "sha1" +hash = "eb2a91a80d18513ca0b9ea3f76fc86422166e440" + +[update] +[update.modrinth] +mod-id = "5aaWibi9" +version = "e563ycts" diff --git a/mods/xaeros-minimap.pw.toml b/mods/xaeros-minimap.pw.toml new file mode 100644 index 0000000..4517175 --- /dev/null +++ b/mods/xaeros-minimap.pw.toml @@ -0,0 +1,13 @@ +name = "Xaero's Minimap" +filename = "Xaeros_Minimap_23.8.4_Fabric_1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1bokaNcj/versions/3l0ZI6yD/Xaeros_Minimap_23.8.4_Fabric_1.20.jar" +hash-format = "sha1" +hash = "d6e9a6619c0a84042275698c133d147a7544c56b" + +[update] +[update.modrinth] +mod-id = "1bokaNcj" +version = "3l0ZI6yD" diff --git a/mods/xaeros-world-map.pw.toml b/mods/xaeros-world-map.pw.toml new file mode 100644 index 0000000..d08fb97 --- /dev/null +++ b/mods/xaeros-world-map.pw.toml @@ -0,0 +1,13 @@ +name = "Xaero's World Map" +filename = "XaerosWorldMap_1.36.0_Fabric_1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NcUtCpym/versions/s974wWCK/XaerosWorldMap_1.36.0_Fabric_1.20.jar" +hash-format = "sha1" +hash = "d55d9643c8e09c3cb5e92c5d3b7f1458b59a3499" + +[update] +[update.modrinth] +mod-id = "NcUtCpym" +version = "s974wWCK" diff --git a/pack.toml b/pack.toml new file mode 100644 index 0000000..100b446 --- /dev/null +++ b/pack.toml @@ -0,0 +1,13 @@ +name = "Better Starcraft" +author = "Starbit" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "af5680034dee7b0149d7abc1be0adc840b3d6bbe9a9483ff8258baeeaf260428" + +[versions] +minecraft = "1.20.1" +quilt = "0.22.0-beta.1"