From d1fcffcba50f033631248d5a2a2943588ed6f92b Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Fri, 16 Aug 2024 17:35:37 -0300 Subject: [PATCH] initial status --- .gitignore | 3 + index.toml | 256 ++++++++++++++++++ mods/advancementinfo.pw.toml | 13 + mods/animatica.pw.toml | 13 + mods/better-mount-hud.pw.toml | 13 + mods/borderless-mining.pw.toml | 13 + mods/capes.pw.toml | 13 + mods/cit-resewn.pw.toml | 13 + mods/cloth-config.pw.toml | 13 + mods/continuity.pw.toml | 13 + mods/debugify.pw.toml | 13 + mods/dynamic-fps.pw.toml | 13 + mods/e4mc.pw.toml | 13 + mods/ebe.pw.toml | 13 + mods/entity-model-features.pw.toml | 13 + mods/entityculling.pw.toml | 13 + mods/entitytexturefeatures.pw.toml | 13 + mods/fabric-api.pw.toml | 13 + mods/fabric-language-kotlin.pw.toml | 13 + mods/fabricskyboxes-interop.pw.toml | 13 + mods/fabricskyboxes.pw.toml | 13 + mods/fabrishot.pw.toml | 13 + mods/fadeless.pw.toml | 13 + mods/fastquit.pw.toml | 13 + mods/ferrite-core.pw.toml | 13 + mods/immediatelyfast.pw.toml | 13 + mods/indium.pw.toml | 13 + mods/iris.pw.toml | 13 + mods/lambdynamiclights.pw.toml | 13 + mods/language-reload.pw.toml | 13 + mods/lithium.pw.toml | 13 + mods/main-menu-credits.pw.toml | 13 + mods/memoryleakfix.pw.toml | 13 + mods/mixintrace.pw.toml | 13 + mods/modelfix.pw.toml | 13 + mods/modernfix.pw.toml | 13 + mods/modmenu.pw.toml | 13 + mods/morechathistory.pw.toml | 13 + mods/moreculling.pw.toml | 13 + mods/no-chat-reports.pw.toml | 13 + mods/optigui.pw.toml | 13 + mods/puzzle.pw.toml | 13 + mods/reeses-sodium-options.pw.toml | 13 + mods/rrls.pw.toml | 13 + mods/sodium-extra.pw.toml | 13 + mods/sodium.pw.toml | 13 + mods/yacl.pw.toml | 13 + mods/yosbr.pw.toml | 13 + mods/zoomify.pw.toml | 13 + pack.toml | 13 + resourcepacks/chat-reporting-helper.pw.toml | 13 + resourcepacks/fast-better-grass.pw.toml | 13 + resourcepacks/translations-for-sodium.pw.toml | 13 + shaderpacks/complementary-unbound.pw.toml | 13 + 54 files changed, 935 insertions(+) create mode 100644 .gitignore create mode 100644 index.toml create mode 100644 mods/advancementinfo.pw.toml create mode 100644 mods/animatica.pw.toml create mode 100644 mods/better-mount-hud.pw.toml create mode 100644 mods/borderless-mining.pw.toml create mode 100644 mods/capes.pw.toml create mode 100644 mods/cit-resewn.pw.toml create mode 100644 mods/cloth-config.pw.toml create mode 100644 mods/continuity.pw.toml create mode 100644 mods/debugify.pw.toml create mode 100644 mods/dynamic-fps.pw.toml create mode 100644 mods/e4mc.pw.toml create mode 100644 mods/ebe.pw.toml create mode 100644 mods/entity-model-features.pw.toml create mode 100644 mods/entityculling.pw.toml create mode 100644 mods/entitytexturefeatures.pw.toml create mode 100644 mods/fabric-api.pw.toml create mode 100644 mods/fabric-language-kotlin.pw.toml create mode 100644 mods/fabricskyboxes-interop.pw.toml create mode 100644 mods/fabricskyboxes.pw.toml create mode 100644 mods/fabrishot.pw.toml create mode 100644 mods/fadeless.pw.toml create mode 100644 mods/fastquit.pw.toml create mode 100644 mods/ferrite-core.pw.toml create mode 100644 mods/immediatelyfast.pw.toml create mode 100644 mods/indium.pw.toml create mode 100644 mods/iris.pw.toml create mode 100644 mods/lambdynamiclights.pw.toml create mode 100644 mods/language-reload.pw.toml create mode 100644 mods/lithium.pw.toml create mode 100644 mods/main-menu-credits.pw.toml create mode 100644 mods/memoryleakfix.pw.toml create mode 100644 mods/mixintrace.pw.toml create mode 100644 mods/modelfix.pw.toml create mode 100644 mods/modernfix.pw.toml create mode 100644 mods/modmenu.pw.toml create mode 100644 mods/morechathistory.pw.toml create mode 100644 mods/moreculling.pw.toml create mode 100644 mods/no-chat-reports.pw.toml create mode 100644 mods/optigui.pw.toml create mode 100644 mods/puzzle.pw.toml create mode 100644 mods/reeses-sodium-options.pw.toml create mode 100644 mods/rrls.pw.toml create mode 100644 mods/sodium-extra.pw.toml create mode 100644 mods/sodium.pw.toml create mode 100644 mods/yacl.pw.toml create mode 100644 mods/yosbr.pw.toml create mode 100644 mods/zoomify.pw.toml create mode 100644 pack.toml create mode 100644 resourcepacks/chat-reporting-helper.pw.toml create mode 100644 resourcepacks/fast-better-grass.pw.toml create mode 100644 resourcepacks/translations-for-sodium.pw.toml create mode 100644 shaderpacks/complementary-unbound.pw.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40b46e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore exports +Silly Pack-1.0.0.mrpack +Silly Pack-1.0.0.zip diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..c8b0cd2 --- /dev/null +++ b/index.toml @@ -0,0 +1,256 @@ +hash-format = "sha256" + +[[files]] +file = "mods/advancementinfo.pw.toml" +hash = "3475ed31cc03e95979ed05849015a59a38e286c86093c58d41013f3d945f72fe" +metafile = true + +[[files]] +file = "mods/animatica.pw.toml" +hash = "c0fb764563c122328f9ba69e7d27c2b3b2e21fc607782affd6710b943f03fe75" +metafile = true + +[[files]] +file = "mods/better-mount-hud.pw.toml" +hash = "961a423cc427d4c785354239e8e7b251b5575756b1cf85dd1bc85011b47f0fbf" +metafile = true + +[[files]] +file = "mods/borderless-mining.pw.toml" +hash = "c49d42cddfb05cf5e4882d5753bd98a525c9a994fda5f49651003e8266b7aa9d" +metafile = true + +[[files]] +file = "mods/capes.pw.toml" +hash = "4c712d7ad6d2ddb130b845c3b2c660be7cb7795db21be00b130443730719305e" +metafile = true + +[[files]] +file = "mods/cit-resewn.pw.toml" +hash = "2cf2d6c7683cbaa8d4d91374d5a92e6166176aefe5e0d7a0a2714c9321f8add0" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "a89dfcc985612a275975d4823a24fc3dceb244bacb2e8f81bd459283bf1b9fe9" +metafile = true + +[[files]] +file = "mods/continuity.pw.toml" +hash = "acbde04e67f2f0970a6b81e3c818a5f8ed3eceab4f3a04330d80c70c24d03afe" +metafile = true + +[[files]] +file = "mods/debugify.pw.toml" +hash = "4ba45966a267b774f5d83442c3c43d740f55e11a910e117e50c046b4f77b5c66" +metafile = true + +[[files]] +file = "mods/dynamic-fps.pw.toml" +hash = "c95275cea31ddab49f8c43892450e6756c70479000b55d26de27dc8fe26ef53b" +metafile = true + +[[files]] +file = "mods/e4mc.pw.toml" +hash = "cd4053b09d3d53c0f0729dabaf756d8f813ff52816c9a0d26d9184c83fb67bed" +metafile = true + +[[files]] +file = "mods/ebe.pw.toml" +hash = "b8270928d44781b9e59982d376bb3cc0d24089ceebef3c79d3e1e881ba7ece60" +metafile = true + +[[files]] +file = "mods/entity-model-features.pw.toml" +hash = "c34d7228915013f3946f0943079644a44f653b9a378d129d733db249a790bed0" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "9f499eff7ddb9eeab719f19808cbcf41f2b77d06ebf946f157cf7b5f52f64e70" +metafile = true + +[[files]] +file = "mods/entitytexturefeatures.pw.toml" +hash = "b596d10a9b700d570d729f2f04b892d1a7715c5af434a998dc0c15a7596b05d7" +metafile = true + +[[files]] +file = "mods/fabric-api.pw.toml" +hash = "86698b1faa9bf449eab492509239372302311092104be467108d7e05127e91f1" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "a909422ca28880c8aa967a66ca3b89fba223a9cfc662d98592c234d22361cf33" +metafile = true + +[[files]] +file = "mods/fabricskyboxes-interop.pw.toml" +hash = "ed4487cc1613cc53daa5188730653a4720728971553315dcea7205b28f914f1c" +metafile = true + +[[files]] +file = "mods/fabricskyboxes.pw.toml" +hash = "ae83dfcccd580352eee3cf509ace37f67f1bf0d2862d2d9c9d64d8909892d2d4" +metafile = true + +[[files]] +file = "mods/fabrishot.pw.toml" +hash = "899685dcf62ea766b1bc17580eac543b72901fcc6e7854de9da9180b5974d460" +metafile = true + +[[files]] +file = "mods/fadeless.pw.toml" +hash = "bd5311680997fada18e6492a91770fdc0762c718b3109820d67c1b019c2f1bf8" +metafile = true + +[[files]] +file = "mods/fastquit.pw.toml" +hash = "26b473edf76a38c7f6f883381b6a42a33eea992501f26c46bae8b6149c86e234" +metafile = true + +[[files]] +file = "mods/ferrite-core.pw.toml" +hash = "39a6a39433b1b104bfafafcd60a8171f866daa2ebefffd64df822d0e69288e3a" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "6be56e4af966f5f08148087a7b5ccd5676bcfc203552b8d0a1439e4be5614da5" +metafile = true + +[[files]] +file = "mods/indium.pw.toml" +hash = "31278d67704a56eb32d93c240e4bfd9822e1ab6047ee14d752953dd0c24dca95" +metafile = true + +[[files]] +file = "mods/iris.pw.toml" +hash = "aac37788ac1acd537a8b5b32fc2489cddf8034f196f7f38c0755837764b4f01d" +metafile = true + +[[files]] +file = "mods/lambdynamiclights.pw.toml" +hash = "a626674fc1092afe5ccc6cbf4856c09119e42395494f1c3862eed2ab17da0221" +metafile = true + +[[files]] +file = "mods/language-reload.pw.toml" +hash = "863c7625ed377ba905368ec8cb50a29d2ad23c833b50d7808f933aecbe1bcad4" +metafile = true + +[[files]] +file = "mods/lithium.pw.toml" +hash = "c239c951796882b9c93e649a0dba4f2d95804441faaed707b686381b7a5c67da" +metafile = true + +[[files]] +file = "mods/main-menu-credits.pw.toml" +hash = "2a79f7fb98b7073c926c6f87a93473f5714cf82a2ace7f344e4e2de4a33e0233" +metafile = true + +[[files]] +file = "mods/memoryleakfix.pw.toml" +hash = "3c0945a312aca06a2185b00cb03ae482949b008d72614497148aa2df301af019" +metafile = true + +[[files]] +file = "mods/mixintrace.pw.toml" +hash = "b89656eaf7e4404d8d2c5b1e1155aae85a839939f83cab6d1b5e791412ad5f86" +metafile = true + +[[files]] +file = "mods/modelfix.pw.toml" +hash = "e78faacb02c5ad86a31ff1178d48c5b231433bb1128584c987ef60224057fb75" +metafile = true + +[[files]] +file = "mods/modernfix.pw.toml" +hash = "45fc3490e6f0111e19aea024fc028e509d5f0d7a0d1cf9789a86f2c48766d30a" +metafile = true + +[[files]] +file = "mods/modmenu.pw.toml" +hash = "4cd171d3f5f3e1d2948cb1b0062e742a5e85110c9e9a668f9aed5b0cebcb9c97" +metafile = true + +[[files]] +file = "mods/morechathistory.pw.toml" +hash = "1447b2cbf7c1d96fd410f85fdd029c1de4a4f8709d09146e602b6054065e49c0" +metafile = true + +[[files]] +file = "mods/moreculling.pw.toml" +hash = "979e6d73369f2e45666e49c387f7f4f9b266df1085d4a7a949039aac461b3c13" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "7ca62a9da5c2ec9f0a8bed5394021c959e90077db16b313be44f4c8736f7fbf5" +metafile = true + +[[files]] +file = "mods/optigui.pw.toml" +hash = "2440a2e6d0ade6bc4ca8d3677b59312734dd22106fc6fc5cbac5c24b0ba2ff05" +metafile = true + +[[files]] +file = "mods/puzzle.pw.toml" +hash = "a6e087aa1beacb72cbfd77e442c78329b8a3c8af71cd3833078ff4cc7186d64f" +metafile = true + +[[files]] +file = "mods/reeses-sodium-options.pw.toml" +hash = "0f9916dcded3aac68d56113e9617bbe3db5ec9036bd9bba784bc40a961b0c9f0" +metafile = true + +[[files]] +file = "mods/rrls.pw.toml" +hash = "062e145a4c182959dc44f1fe531514191692ed6088ee5b307143a81ec39d9c70" +metafile = true + +[[files]] +file = "mods/sodium-extra.pw.toml" +hash = "5379b1da9fa50def37ede26e66dd963de3ce6f8576cd60a6b117998e09a5597c" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "245530bdbb5c4127a1286f3722778d71e478194a8dcee89388c8fd247b4a57da" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "5fa3a100f874ad3d03b674e867105fc7cc7dcf98b5c1c50d7841a25a0dda4607" +metafile = true + +[[files]] +file = "mods/yosbr.pw.toml" +hash = "6f6334f336a876088431df70e2bba6ac52ca2ddeb73a4880ce88d6954b09af00" +metafile = true + +[[files]] +file = "mods/zoomify.pw.toml" +hash = "6e3c46cc7523df95fefba675b177ff0abfda3b72c893add5ce64390ad137ab8f" +metafile = true + +[[files]] +file = "resourcepacks/chat-reporting-helper.pw.toml" +hash = "f1f74f07924a5b0eb57e7c662c2e3f8c56d50eaee0dc2cb4cb40985af8eb9cf4" +metafile = true + +[[files]] +file = "resourcepacks/fast-better-grass.pw.toml" +hash = "f05dedd6fc9f8e3ace51215fb47269a4919870a15c6c166c96c79b87bb9180c4" +metafile = true + +[[files]] +file = "resourcepacks/translations-for-sodium.pw.toml" +hash = "03964b6397d312d899898cfd06019a1e62725df060b19745f4a0993bd9f18197" +metafile = true + +[[files]] +file = "shaderpacks/complementary-unbound.pw.toml" +hash = "9ed342e0d8a2200d2a5c01826dba51b70433ad2c0e998fda893b5fa2911c2516" +metafile = true diff --git a/mods/advancementinfo.pw.toml b/mods/advancementinfo.pw.toml new file mode 100644 index 0000000..3a59891 --- /dev/null +++ b/mods/advancementinfo.pw.toml @@ -0,0 +1,13 @@ +name = "AdvancementInfo" +filename = "advancementinfo-1.20-fabric0.83.0-1.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/G1epq3jN/versions/gfcbMV82/advancementinfo-1.20-fabric0.83.0-1.4.jar" +hash-format = "sha1" +hash = "dfa603a2db09d6e303dd2991f016550ae156e3d1" + +[update] +[update.modrinth] +mod-id = "G1epq3jN" +version = "gfcbMV82" diff --git a/mods/animatica.pw.toml b/mods/animatica.pw.toml new file mode 100644 index 0000000..63a7459 --- /dev/null +++ b/mods/animatica.pw.toml @@ -0,0 +1,13 @@ +name = "Animatica" +filename = "animatica-0.6.1+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/PRN43VSY/versions/M2xzBL7h/animatica-0.6.1%2B1.20.4.jar" +hash-format = "sha1" +hash = "f6abc5ab768db299e688fa2c07dc0840fb57e487" + +[update] +[update.modrinth] +mod-id = "PRN43VSY" +version = "M2xzBL7h" diff --git a/mods/better-mount-hud.pw.toml b/mods/better-mount-hud.pw.toml new file mode 100644 index 0000000..369ae21 --- /dev/null +++ b/mods/better-mount-hud.pw.toml @@ -0,0 +1,13 @@ +name = "Better Mount HUD" +filename = "bettermounthud-1.2.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/kqJFAPU9/versions/h1QpxElt/bettermounthud-1.2.2.jar" +hash-format = "sha1" +hash = "6942fb39ca2e87208b0b0630a5efc4511c82dcf4" + +[update] +[update.modrinth] +mod-id = "kqJFAPU9" +version = "h1QpxElt" diff --git a/mods/borderless-mining.pw.toml b/mods/borderless-mining.pw.toml new file mode 100644 index 0000000..723328b --- /dev/null +++ b/mods/borderless-mining.pw.toml @@ -0,0 +1,13 @@ +name = "Borderless Mining" +filename = "borderless-mining-1.1.8+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/kYq5qkSL/versions/lhrW53q7/borderless-mining-1.1.8%2B1.20.1.jar" +hash-format = "sha1" +hash = "dbdb8a0600679f3c76480ae5d0995e2334773ce3" + +[update] +[update.modrinth] +mod-id = "kYq5qkSL" +version = "lhrW53q7" diff --git a/mods/capes.pw.toml b/mods/capes.pw.toml new file mode 100644 index 0000000..f0e2180 --- /dev/null +++ b/mods/capes.pw.toml @@ -0,0 +1,13 @@ +name = "Capes" +filename = "capes-1.5.2+1.20-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/89Wsn8GD/versions/z2zOEvPP/capes-1.5.2%2B1.20-fabric.jar" +hash-format = "sha1" +hash = "5444e301346383f6133189e66069e970d4a126fc" + +[update] +[update.modrinth] +mod-id = "89Wsn8GD" +version = "z2zOEvPP" diff --git a/mods/cit-resewn.pw.toml b/mods/cit-resewn.pw.toml new file mode 100644 index 0000000..04d546c --- /dev/null +++ b/mods/cit-resewn.pw.toml @@ -0,0 +1,13 @@ +name = "CIT Resewn" +filename = "citresewn-1.1.5+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/otVJckYQ/versions/8uQeAHwk/citresewn-1.1.5%2B1.20.1.jar" +hash-format = "sha1" +hash = "80d5b5b7bd73a1af7e3ea2c3a770efd7043d399e" + +[update] +[update.modrinth] +mod-id = "otVJckYQ" +version = "8uQeAHwk" diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml new file mode 100644 index 0000000..6d9c873 --- /dev/null +++ b/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-11.1.118-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/J3FLptsi/cloth-config-11.1.118-fabric.jar" +hash-format = "sha1" +hash = "f669f899d707b9e9acf1c239b0ae6b2c8be95361" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "J3FLptsi" diff --git a/mods/continuity.pw.toml b/mods/continuity.pw.toml new file mode 100644 index 0000000..ff92c38 --- /dev/null +++ b/mods/continuity.pw.toml @@ -0,0 +1,13 @@ +name = "Continuity" +filename = "continuity-3.0.0-beta.5+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/1IjD5062/versions/84Zs6tNo/continuity-3.0.0-beta.5%2B1.20.1.jar" +hash-format = "sha1" +hash = "15ad75d51f567c69308b91223454bacfd2eda7a5" + +[update] +[update.modrinth] +mod-id = "1IjD5062" +version = "84Zs6tNo" diff --git a/mods/debugify.pw.toml b/mods/debugify.pw.toml new file mode 100644 index 0000000..e6f9022 --- /dev/null +++ b/mods/debugify.pw.toml @@ -0,0 +1,13 @@ +name = "Debugify" +filename = "Debugify-1.20.1+2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/6XDJoCks/Debugify-1.20.1%2B2.0.jar" +hash-format = "sha1" +hash = "ca859180ad2b57856fbcc8db4995c1871a7d556c" + +[update] +[update.modrinth] +mod-id = "QwxR6Gcd" +version = "6XDJoCks" diff --git a/mods/dynamic-fps.pw.toml b/mods/dynamic-fps.pw.toml new file mode 100644 index 0000000..9e3a4b1 --- /dev/null +++ b/mods/dynamic-fps.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic FPS" +filename = "dynamic-fps-3.6.3+minecraft-1.20.0-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/GtitXgiZ/dynamic-fps-3.6.3%2Bminecraft-1.20.0-fabric.jar" +hash-format = "sha1" +hash = "ab03253b89bd8275c9b187126438a7400930f128" + +[update] +[update.modrinth] +mod-id = "LQ3K71Q1" +version = "GtitXgiZ" diff --git a/mods/e4mc.pw.toml b/mods/e4mc.pw.toml new file mode 100644 index 0000000..c397af4 --- /dev/null +++ b/mods/e4mc.pw.toml @@ -0,0 +1,13 @@ +name = "e4mc" +filename = "e4mc_minecraft-5.1.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/qANg5Jrr/versions/JwZn7YZ0/e4mc_minecraft-5.1.0.jar" +hash-format = "sha1" +hash = "83cf80d0a8a96a626db916cf624bb1ee50fa5486" + +[update] +[update.modrinth] +mod-id = "qANg5Jrr" +version = "JwZn7YZ0" diff --git a/mods/ebe.pw.toml b/mods/ebe.pw.toml new file mode 100644 index 0000000..5b5330d --- /dev/null +++ b/mods/ebe.pw.toml @@ -0,0 +1,13 @@ +name = "Enhanced Block Entities" +filename = "enhancedblockentities-0.9+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/OVuFYfre/versions/i3v1Skck/enhancedblockentities-0.9%2B1.20.jar" +hash-format = "sha1" +hash = "61cfe50f69f8ef9e3640c0269ef158870f5b0410" + +[update] +[update.modrinth] +mod-id = "OVuFYfre" +version = "i3v1Skck" diff --git a/mods/entity-model-features.pw.toml b/mods/entity-model-features.pw.toml new file mode 100644 index 0000000..ee456d7 --- /dev/null +++ b/mods/entity-model-features.pw.toml @@ -0,0 +1,13 @@ +name = "[EMF] Entity Model Features" +filename = "entity_model_features_fabric_1.20.1-2.1.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/f3RkrLlq/entity_model_features_fabric_1.20.1-2.1.3.jar" +hash-format = "sha1" +hash = "e5c7c4a0b5cb645945dfa1ef332984d04ba77363" + +[update] +[update.modrinth] +mod-id = "4I1XuqiY" +version = "f3RkrLlq" diff --git a/mods/entityculling.pw.toml b/mods/entityculling.pw.toml new file mode 100644 index 0000000..486c72e --- /dev/null +++ b/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling" +filename = "entityculling-fabric-1.6.6-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/F3RXDl1W/entityculling-fabric-1.6.6-mc1.20.1.jar" +hash-format = "sha1" +hash = "d6894508d74e5f01fb525b5b89d20ac4e54257b6" + +[update] +[update.modrinth] +mod-id = "NNAgCjsB" +version = "F3RXDl1W" diff --git a/mods/entitytexturefeatures.pw.toml b/mods/entitytexturefeatures.pw.toml new file mode 100644 index 0000000..d159e29 --- /dev/null +++ b/mods/entitytexturefeatures.pw.toml @@ -0,0 +1,13 @@ +name = "[ETF] Entity Texture Features" +filename = "entity_texture_features_fabric_1.20.1-6.1.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/fqFnWIXs/entity_texture_features_fabric_1.20.1-6.1.3.jar" +hash-format = "sha1" +hash = "ab8907e55f6474fbba2de022a87ffb29fa14a64c" + +[update] +[update.modrinth] +mod-id = "BVzZfTc1" +version = "fqFnWIXs" diff --git a/mods/fabric-api.pw.toml b/mods/fabric-api.pw.toml new file mode 100644 index 0000000..5831ed8 --- /dev/null +++ b/mods/fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric API" +filename = "fabric-api-0.92.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/P7uGFii0/fabric-api-0.92.2%2B1.20.1.jar" +hash-format = "sha1" +hash = "625ee015ee426d9b677382a7bb661383d89c0807" + +[update] +[update.modrinth] +mod-id = "P7dR8mSH" +version = "P7uGFii0" diff --git a/mods/fabric-language-kotlin.pw.toml b/mods/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..cc62e68 --- /dev/null +++ b/mods/fabric-language-kotlin.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Language Kotlin" +filename = "fabric-language-kotlin-1.12.0+kotlin.2.0.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/kdDGGNEt/fabric-language-kotlin-1.12.0%2Bkotlin.2.0.10.jar" +hash-format = "sha1" +hash = "8b5c6d1caff90301ac9856959457dcfc793774c3" + +[update] +[update.modrinth] +mod-id = "Ha28R6CL" +version = "kdDGGNEt" diff --git a/mods/fabricskyboxes-interop.pw.toml b/mods/fabricskyboxes-interop.pw.toml new file mode 100644 index 0000000..01343cd --- /dev/null +++ b/mods/fabricskyboxes-interop.pw.toml @@ -0,0 +1,13 @@ +name = "FabricSkyBoxes Interop" +filename = "fsb-interop-1.3.6+mc1.20.1-build.50.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/HpdHOPOp/versions/JRvZ5VhS/fsb-interop-1.3.6%2Bmc1.20.1-build.50.jar" +hash-format = "sha1" +hash = "4ead20a0528788f36d4a7e38d1ebfec35218387e" + +[update] +[update.modrinth] +mod-id = "HpdHOPOp" +version = "JRvZ5VhS" diff --git a/mods/fabricskyboxes.pw.toml b/mods/fabricskyboxes.pw.toml new file mode 100644 index 0000000..5ee5fb4 --- /dev/null +++ b/mods/fabricskyboxes.pw.toml @@ -0,0 +1,13 @@ +name = "FabricSkyboxes" +filename = "fabricskyboxes-0.7.3+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YBz7DOs8/versions/cezLH6eB/fabricskyboxes-0.7.3%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "31a13b9ca0a500b4caad993ec42e1199142d86d1" + +[update] +[update.modrinth] +mod-id = "YBz7DOs8" +version = "cezLH6eB" diff --git a/mods/fabrishot.pw.toml b/mods/fabrishot.pw.toml new file mode 100644 index 0000000..1e36392 --- /dev/null +++ b/mods/fabrishot.pw.toml @@ -0,0 +1,13 @@ +name = "Fabrishot" +filename = "fabrishot-1.10.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/3qsfQtE9/versions/Rduo9X24/fabrishot-1.10.1.jar" +hash-format = "sha1" +hash = "715edb014f9c41fed4fb1c4ba32d493916f7d89a" + +[update] +[update.modrinth] +mod-id = "3qsfQtE9" +version = "Rduo9X24" diff --git a/mods/fadeless.pw.toml b/mods/fadeless.pw.toml new file mode 100644 index 0000000..ee33d8a --- /dev/null +++ b/mods/fadeless.pw.toml @@ -0,0 +1,13 @@ +name = "Fadeless" +filename = "fadeless-1.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/ncKjyGm3/versions/j53ChsnW/fadeless-1.0.1.jar" +hash-format = "sha1" +hash = "8a48f9abfa26e4abc06490c6e818f5cf6af1c280" + +[update] +[update.modrinth] +mod-id = "ncKjyGm3" +version = "j53ChsnW" diff --git a/mods/fastquit.pw.toml b/mods/fastquit.pw.toml new file mode 100644 index 0000000..431687c --- /dev/null +++ b/mods/fastquit.pw.toml @@ -0,0 +1,13 @@ +name = "FastQuit" +filename = "fastquit-3.0.0+1.20+.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/x1hIzbuY/versions/tNgyOUMr/fastquit-3.0.0%2B1.20%2B.jar" +hash-format = "sha1" +hash = "68f080925502a49027e231c63d3b94128ed6499b" + +[update] +[update.modrinth] +mod-id = "x1hIzbuY" +version = "tNgyOUMr" diff --git a/mods/ferrite-core.pw.toml b/mods/ferrite-core.pw.toml new file mode 100644 index 0000000..2b83cf6 --- /dev/null +++ b/mods/ferrite-core.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore" +filename = "ferritecore-6.0.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar" +hash-format = "sha1" +hash = "8fa3b84fc5860dbc30fdf8cced02af68dffcf3fa" + +[update] +[update.modrinth] +mod-id = "uXXizFIs" +version = "unerR5MN" diff --git a/mods/immediatelyfast.pw.toml b/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..de3a2ed --- /dev/null +++ b/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Fabric-1.2.20+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/ntbcEUWv/ImmediatelyFast-Fabric-1.2.20%2B1.20.4.jar" +hash-format = "sha1" +hash = "205371d4e0d9846d41bbe529c0dc330568c1df10" + +[update] +[update.modrinth] +mod-id = "5ZwdcRci" +version = "ntbcEUWv" diff --git a/mods/indium.pw.toml b/mods/indium.pw.toml new file mode 100644 index 0000000..a2efb94 --- /dev/null +++ b/mods/indium.pw.toml @@ -0,0 +1,13 @@ +name = "Indium" +filename = "indium-1.0.34+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/gofbpynL/indium-1.0.34%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "a2de9ba15f155b09626995ad58b0e23803b05fe6" + +[update] +[update.modrinth] +mod-id = "Orvt0mRa" +version = "gofbpynL" diff --git a/mods/iris.pw.toml b/mods/iris.pw.toml new file mode 100644 index 0000000..63e8130 --- /dev/null +++ b/mods/iris.pw.toml @@ -0,0 +1,13 @@ +name = "Iris Shaders" +filename = "iris-1.7.2+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/1CMVXDHo/iris-1.7.2%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "4841b993d37c0944ca6f7a02809364e561a6acc3" + +[update] +[update.modrinth] +mod-id = "YL57xq9U" +version = "1CMVXDHo" 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/language-reload.pw.toml b/mods/language-reload.pw.toml new file mode 100644 index 0000000..0431817 --- /dev/null +++ b/mods/language-reload.pw.toml @@ -0,0 +1,13 @@ +name = "Language Reload" +filename = "language-reload-1.6.1+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/kO9nUBoX/language-reload-1.6.1%2B1.20.1.jar" +hash-format = "sha1" +hash = "02fdfa8eab9fb261c0681d86d1d91b3a2fe16cb6" + +[update] +[update.modrinth] +mod-id = "uLbm7CG6" +version = "kO9nUBoX" diff --git a/mods/lithium.pw.toml b/mods/lithium.pw.toml new file mode 100644 index 0000000..c5a1bc5 --- /dev/null +++ b/mods/lithium.pw.toml @@ -0,0 +1,13 @@ +name = "Lithium" +filename = "lithium-fabric-mc1.20.1-0.11.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/ZSNsJrPI/lithium-fabric-mc1.20.1-0.11.2.jar" +hash-format = "sha1" +hash = "8f4642147e60827f728badac7a819d1a9f3b25d5" + +[update] +[update.modrinth] +mod-id = "gvQqBUqZ" +version = "ZSNsJrPI" diff --git a/mods/main-menu-credits.pw.toml b/mods/main-menu-credits.pw.toml new file mode 100644 index 0000000..4774d8a --- /dev/null +++ b/mods/main-menu-credits.pw.toml @@ -0,0 +1,13 @@ +name = "Main Menu Credits" +filename = "main-menu-credits-1.1.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/qJDfP7WN/versions/hWX5REu6/main-menu-credits-1.1.2.jar" +hash-format = "sha1" +hash = "771eb704928c6d3e9fdf0e7971ba7d97305e09dd" + +[update] +[update.modrinth] +mod-id = "qJDfP7WN" +version = "hWX5REu6" diff --git a/mods/memoryleakfix.pw.toml b/mods/memoryleakfix.pw.toml new file mode 100644 index 0000000..4177d50 --- /dev/null +++ b/mods/memoryleakfix.pw.toml @@ -0,0 +1,13 @@ +name = "Memory Leak Fix" +filename = "memoryleakfix-fabric-1.17+-1.1.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/5xvCCRjJ/memoryleakfix-fabric-1.17%2B-1.1.5.jar" +hash-format = "sha1" +hash = "784bbbe9c64ac9d3d4ad19786c02291e607fcf4e" + +[update] +[update.modrinth] +mod-id = "NRjRiSSD" +version = "5xvCCRjJ" diff --git a/mods/mixintrace.pw.toml b/mods/mixintrace.pw.toml new file mode 100644 index 0000000..86402da --- /dev/null +++ b/mods/mixintrace.pw.toml @@ -0,0 +1,13 @@ +name = "MixinTrace" +filename = "mixintrace-1.1.1+1.17.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sGmHWmeL/versions/1.1.1%2B1.17/mixintrace-1.1.1%2B1.17.jar" +hash-format = "sha1" +hash = "7fbb0130db0e427ee7180d304dfa65c46f0e3b69" + +[update] +[update.modrinth] +mod-id = "sGmHWmeL" +version = "LGYOH4RN" diff --git a/mods/modelfix.pw.toml b/mods/modelfix.pw.toml new file mode 100644 index 0000000..dc6db29 --- /dev/null +++ b/mods/modelfix.pw.toml @@ -0,0 +1,13 @@ +name = "Model Gap Fix" +filename = "modelfix-1.15-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/QdG47OkI/versions/GkLb4bRl/modelfix-1.15-fabric.jar" +hash-format = "sha1" +hash = "75554b02e63a2440321a32dc5e55988897181bdf" + +[update] +[update.modrinth] +mod-id = "QdG47OkI" +version = "GkLb4bRl" diff --git a/mods/modernfix.pw.toml b/mods/modernfix.pw.toml new file mode 100644 index 0000000..71bf7d3 --- /dev/null +++ b/mods/modernfix.pw.toml @@ -0,0 +1,13 @@ +name = "ModernFix" +filename = "modernfix-fabric-5.19.1+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nmDcB62a/versions/nJmQaEws/modernfix-fabric-5.19.1%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "23c2ef13fc2ad112ae796ad0982f2e6c0e6a8f6a" + +[update] +[update.modrinth] +mod-id = "nmDcB62a" +version = "nJmQaEws" diff --git a/mods/modmenu.pw.toml b/mods/modmenu.pw.toml new file mode 100644 index 0000000..9609af6 --- /dev/null +++ b/mods/modmenu.pw.toml @@ -0,0 +1,13 @@ +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 = "sha1" +hash = "099c68feeb74887cbbbd8ce9a27c6123804a2c5a" + +[update] +[update.modrinth] +mod-id = "mOgUt4GM" +version = "lEkperf6" diff --git a/mods/morechathistory.pw.toml b/mods/morechathistory.pw.toml new file mode 100644 index 0000000..11c40fc --- /dev/null +++ b/mods/morechathistory.pw.toml @@ -0,0 +1,13 @@ +name = "More Chat History" +filename = "morechathistory-1.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8qkXwOnk/versions/PLfxrDkh/morechathistory-1.3.0.jar" +hash-format = "sha1" +hash = "346cce5cb5d89e676d8ed0dca05522369063b3c3" + +[update] +[update.modrinth] +mod-id = "8qkXwOnk" +version = "PLfxrDkh" diff --git a/mods/moreculling.pw.toml b/mods/moreculling.pw.toml new file mode 100644 index 0000000..fd8d101 --- /dev/null +++ b/mods/moreculling.pw.toml @@ -0,0 +1,13 @@ +name = "More Culling" +filename = "moreculling-1.20.4-0.24.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/51shyZVL/versions/3m5znPWm/moreculling-1.20.4-0.24.0.jar" +hash-format = "sha1" +hash = "a40f2aa346140a4fee2079d845c62ee87454bdb6" + +[update] +[update.modrinth] +mod-id = "51shyZVL" +version = "3m5znPWm" diff --git a/mods/no-chat-reports.pw.toml b/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..c63912b --- /dev/null +++ b/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +filename = "NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +hash-format = "sha1" +hash = "b99f23fb76aad5a944400717e6d71aa011c4d7f7" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "HeZZR2kF" diff --git a/mods/optigui.pw.toml b/mods/optigui.pw.toml new file mode 100644 index 0000000..508f6c5 --- /dev/null +++ b/mods/optigui.pw.toml @@ -0,0 +1,13 @@ +name = "OptiGUI" +filename = "optigui-2.1.7.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JuksLGBQ/versions/xpfegZsE/optigui-2.1.7.jar" +hash-format = "sha1" +hash = "47040b4c65b6381ca61bc3af61fee4df279b5eec" + +[update] +[update.modrinth] +mod-id = "JuksLGBQ" +version = "xpfegZsE" diff --git a/mods/puzzle.pw.toml b/mods/puzzle.pw.toml new file mode 100644 index 0000000..65c9113 --- /dev/null +++ b/mods/puzzle.pw.toml @@ -0,0 +1,13 @@ +name = "Puzzle" +filename = "puzzle-1.5.2+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/3IuO68q1/versions/F5UKlslF/puzzle-1.5.2%2B1.20.jar" +hash-format = "sha1" +hash = "5c3937cb1b9f7e2112cdf00ec0b1afce7c526ac1" + +[update] +[update.modrinth] +mod-id = "3IuO68q1" +version = "F5UKlslF" diff --git a/mods/reeses-sodium-options.pw.toml b/mods/reeses-sodium-options.pw.toml new file mode 100644 index 0000000..4d5d58a --- /dev/null +++ b/mods/reeses-sodium-options.pw.toml @@ -0,0 +1,13 @@ +name = "Reese's Sodium Options" +filename = "reeses_sodium_options-1.7.2+mc1.20.1-build.101.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/Rc9pkPug/reeses_sodium_options-1.7.2%2Bmc1.20.1-build.101.jar" +hash-format = "sha1" +hash = "206f1b01b99ac3df99ddd84ed96b466a8700412d" + +[update] +[update.modrinth] +mod-id = "Bh37bMuy" +version = "Rc9pkPug" diff --git a/mods/rrls.pw.toml b/mods/rrls.pw.toml new file mode 100644 index 0000000..3634e6e --- /dev/null +++ b/mods/rrls.pw.toml @@ -0,0 +1,13 @@ +name = "Remove Reloading Screen" +filename = "rrls-4.0.6.1+mc1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/ZP7xHXtw/versions/VHNE9K3D/rrls-4.0.6.1%2Bmc1.20.1-fabric.jar" +hash-format = "sha1" +hash = "fdd6e230c712ee9c4b637d73bccd21bc8ed3a7c3" + +[update] +[update.modrinth] +mod-id = "ZP7xHXtw" +version = "VHNE9K3D" diff --git a/mods/sodium-extra.pw.toml b/mods/sodium-extra.pw.toml new file mode 100644 index 0000000..5c4e174 --- /dev/null +++ b/mods/sodium-extra.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Extra" +filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar" +hash-format = "sha1" +hash = "890864a6ab5d77d57d8d757bcc31f5379b5a11b1" + +[update] +[update.modrinth] +mod-id = "PtjYWJkn" +version = "I7ggF6B5" diff --git a/mods/sodium.pw.toml b/mods/sodium.pw.toml new file mode 100644 index 0000000..778bf4b --- /dev/null +++ b/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-0.5.11+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "c4293c1483f3b39c1c6c4c69143e8bb2c6e53daf" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "ygf8cVZg" diff --git a/mods/yacl.pw.toml b/mods/yacl.pw.toml new file mode 100644 index 0000000..9da6af3 --- /dev/null +++ b/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib" +filename = "YetAnotherConfigLib-3.5.0+1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/gQuF6HNa/YetAnotherConfigLib-3.5.0%2B1.20.1-fabric.jar" +hash-format = "sha1" +hash = "48005e145f5423ff9446ac6fe3d1cb122f977a00" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "gQuF6HNa" diff --git a/mods/yosbr.pw.toml b/mods/yosbr.pw.toml new file mode 100644 index 0000000..679fe0d --- /dev/null +++ b/mods/yosbr.pw.toml @@ -0,0 +1,13 @@ +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 = "sha1" +hash = "f0340e9c0bc95d67f3f3e9c1cd79b61054af11f9" + +[update] +[update.modrinth] +mod-id = "WwbubTsV" +version = "KMOzdYko" diff --git a/mods/zoomify.pw.toml b/mods/zoomify.pw.toml new file mode 100644 index 0000000..3fd2a48 --- /dev/null +++ b/mods/zoomify.pw.toml @@ -0,0 +1,13 @@ +name = "Zoomify" +filename = "Zoomify-2.14.0+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/8VBKUY5S/Zoomify-2.14.0%2B1.20.1.jar" +hash-format = "sha1" +hash = "dfe59801284268aed6ac63cfb8476c6c84965675" + +[update] +[update.modrinth] +mod-id = "w7ThoJFB" +version = "8VBKUY5S" diff --git a/pack.toml b/pack.toml new file mode 100644 index 0000000..870a226 --- /dev/null +++ b/pack.toml @@ -0,0 +1,13 @@ +name = "Silly Pack" +author = "wizardlink" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "029596d4a363add886956f3884b0d7b5f3576e2475325771c4e69f275a86931c" + +[versions] +fabric = "0.15.11" +minecraft = "1.20.1" diff --git a/resourcepacks/chat-reporting-helper.pw.toml b/resourcepacks/chat-reporting-helper.pw.toml new file mode 100644 index 0000000..c7f257e --- /dev/null +++ b/resourcepacks/chat-reporting-helper.pw.toml @@ -0,0 +1,13 @@ +name = "Chat Reporting Helper" +filename = "Chat Reporting Helper.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/tN4E9NfV/versions/7zxgLdb2/Chat%20Reporting%20Helper.zip" +hash-format = "sha1" +hash = "4b3c263defd89be217bddec65543d0be15cd10f9" + +[update] +[update.modrinth] +mod-id = "tN4E9NfV" +version = "7zxgLdb2" diff --git a/resourcepacks/fast-better-grass.pw.toml b/resourcepacks/fast-better-grass.pw.toml new file mode 100644 index 0000000..493293e --- /dev/null +++ b/resourcepacks/fast-better-grass.pw.toml @@ -0,0 +1,13 @@ +name = "Fast Better Grass" +filename = "Fast Better Grass.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/dspVZXKP/versions/1lpmCieT/Fast%20Better%20Grass.zip" +hash-format = "sha1" +hash = "cf15d3a580db704fae9033003b6573ed68d3a834" + +[update] +[update.modrinth] +mod-id = "dspVZXKP" +version = "1lpmCieT" diff --git a/resourcepacks/translations-for-sodium.pw.toml b/resourcepacks/translations-for-sodium.pw.toml new file mode 100644 index 0000000..024241e --- /dev/null +++ b/resourcepacks/translations-for-sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Translations for Sodium" +filename = "SodiumTranslations.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yfDziwn1/versions/9Ze6jNPA/SodiumTranslations.zip" +hash-format = "sha1" +hash = "5186643ce0e34a4f00aee2349eb9efe0d07ea575" + +[update] +[update.modrinth] +mod-id = "yfDziwn1" +version = "9Ze6jNPA" diff --git a/shaderpacks/complementary-unbound.pw.toml b/shaderpacks/complementary-unbound.pw.toml new file mode 100644 index 0000000..746b3d2 --- /dev/null +++ b/shaderpacks/complementary-unbound.pw.toml @@ -0,0 +1,13 @@ +name = "Complementary Shaders - Unbound" +filename = "ComplementaryUnbound_r5.2.2.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/RMaZ3tSJ/ComplementaryUnbound_r5.2.2.zip" +hash-format = "sha1" +hash = "f0c0cbd2059b7a464b9e0f061ddfa6f0980849e1" + +[update] +[update.modrinth] +mod-id = "R6NEzAwj" +version = "RMaZ3tSJ"