From d81879cec243365370a162cf0c8cd67c6971e724 Mon Sep 17 00:00:00 2001 From: Xeovalyte Date: Sun, 20 Aug 2023 12:09:52 +0200 Subject: [PATCH] Added modpack --- modpack-server/.gitattributes | 2 + modpack-server/.gitignore | 5 + modpack-server/index.toml | 191 ++++++++++++++++++ modpack-server/mods/alternate-current.pw.toml | 13 ++ modpack-server/mods/anti-xray.pw.toml | 13 ++ modpack-server/mods/banhammer.pw.toml | 13 ++ modpack-server/mods/c2me-fabric.pw.toml | 13 ++ modpack-server/mods/carpet.pw.toml | 13 ++ modpack-server/mods/chunky.pw.toml | 13 ++ modpack-server/mods/debugify.pw.toml | 13 ++ modpack-server/mods/fabric-api.pw.toml | 13 ++ .../mods/fabric-language-kotlin.pw.toml | 13 ++ modpack-server/mods/fastback.pw.toml | 13 ++ modpack-server/mods/fastload.pw.toml | 13 ++ modpack-server/mods/ferrite-core.pw.toml | 13 ++ .../mods/forge-config-api-port.pw.toml | 13 ++ modpack-server/mods/holograms.pw.toml | 13 ++ modpack-server/mods/invview.pw.toml | 13 ++ modpack-server/mods/krypton.pw.toml | 13 ++ modpack-server/mods/lazydfu.pw.toml | 13 ++ modpack-server/mods/ledger-databases.pw.toml | 13 ++ modpack-server/mods/ledger.pw.toml | 13 ++ modpack-server/mods/lithium.pw.toml | 13 ++ modpack-server/mods/luckperms.pw.toml | 13 ++ modpack-server/mods/maintenancemode.pw.toml | 13 ++ modpack-server/mods/memoryleakfix.pw.toml | 13 ++ modpack-server/mods/minimotd.pw.toml | 13 ++ modpack-server/mods/no-chat-reports.pw.toml | 13 ++ .../mods/ordered-player-list.pw.toml | 13 ++ modpack-server/mods/pl3xmap.pw.toml | 13 ++ modpack-server/mods/plasmo-voice.pw.toml | 13 ++ modpack-server/mods/servercore.pw.toml | 13 ++ modpack-server/mods/spark.pw.toml | 13 ++ modpack-server/mods/starlight.pw.toml | 13 ++ modpack-server/mods/styled-chat.pw.toml | 13 ++ modpack-server/mods/styledplayerlist.pw.toml | 13 ++ modpack-server/mods/vanish.pw.toml | 13 ++ modpack-server/mods/vmp-fabric.pw.toml | 13 ++ modpack-server/mods/worldedit.pw.toml | 13 ++ modpack-server/mods/yacl.pw.toml | 13 ++ modpack-server/mods/yawp.pw.toml | 13 ++ modpack-server/pack.toml | 13 ++ 42 files changed, 705 insertions(+) create mode 100644 modpack-server/.gitattributes create mode 100644 modpack-server/.gitignore create mode 100644 modpack-server/index.toml create mode 100644 modpack-server/mods/alternate-current.pw.toml create mode 100644 modpack-server/mods/anti-xray.pw.toml create mode 100644 modpack-server/mods/banhammer.pw.toml create mode 100644 modpack-server/mods/c2me-fabric.pw.toml create mode 100644 modpack-server/mods/carpet.pw.toml create mode 100644 modpack-server/mods/chunky.pw.toml create mode 100644 modpack-server/mods/debugify.pw.toml create mode 100644 modpack-server/mods/fabric-api.pw.toml create mode 100644 modpack-server/mods/fabric-language-kotlin.pw.toml create mode 100644 modpack-server/mods/fastback.pw.toml create mode 100644 modpack-server/mods/fastload.pw.toml create mode 100644 modpack-server/mods/ferrite-core.pw.toml create mode 100644 modpack-server/mods/forge-config-api-port.pw.toml create mode 100644 modpack-server/mods/holograms.pw.toml create mode 100644 modpack-server/mods/invview.pw.toml create mode 100644 modpack-server/mods/krypton.pw.toml create mode 100644 modpack-server/mods/lazydfu.pw.toml create mode 100644 modpack-server/mods/ledger-databases.pw.toml create mode 100644 modpack-server/mods/ledger.pw.toml create mode 100644 modpack-server/mods/lithium.pw.toml create mode 100644 modpack-server/mods/luckperms.pw.toml create mode 100644 modpack-server/mods/maintenancemode.pw.toml create mode 100644 modpack-server/mods/memoryleakfix.pw.toml create mode 100644 modpack-server/mods/minimotd.pw.toml create mode 100644 modpack-server/mods/no-chat-reports.pw.toml create mode 100644 modpack-server/mods/ordered-player-list.pw.toml create mode 100644 modpack-server/mods/pl3xmap.pw.toml create mode 100644 modpack-server/mods/plasmo-voice.pw.toml create mode 100644 modpack-server/mods/servercore.pw.toml create mode 100644 modpack-server/mods/spark.pw.toml create mode 100644 modpack-server/mods/starlight.pw.toml create mode 100644 modpack-server/mods/styled-chat.pw.toml create mode 100644 modpack-server/mods/styledplayerlist.pw.toml create mode 100644 modpack-server/mods/vanish.pw.toml create mode 100644 modpack-server/mods/vmp-fabric.pw.toml create mode 100644 modpack-server/mods/worldedit.pw.toml create mode 100644 modpack-server/mods/yacl.pw.toml create mode 100644 modpack-server/mods/yawp.pw.toml create mode 100644 modpack-server/pack.toml diff --git a/modpack-server/.gitattributes b/modpack-server/.gitattributes new file mode 100644 index 0000000..ad7fcb5 --- /dev/null +++ b/modpack-server/.gitattributes @@ -0,0 +1,2 @@ +# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows +* -text diff --git a/modpack-server/.gitignore b/modpack-server/.gitignore new file mode 100644 index 0000000..920ec13 --- /dev/null +++ b/modpack-server/.gitignore @@ -0,0 +1,5 @@ +# Exclude exported CurseForge zip files +*.zip + +# Exclude exported Modrinth modpacks +*.mrpack diff --git a/modpack-server/index.toml b/modpack-server/index.toml new file mode 100644 index 0000000..23b5480 --- /dev/null +++ b/modpack-server/index.toml @@ -0,0 +1,191 @@ +hash-format = "sha256" + +[[files]] +file = "mods/alternate-current.pw.toml" +hash = "bedc5fd207a9959c72565f0131b65a8eec71dcdef3e83f6c4556f81e7292326a" +metafile = true + +[[files]] +file = "mods/anti-xray.pw.toml" +hash = "2b66c02d4d4761a2a1ed805a391a9294ba29103182b86092423ca5c908421e8e" +metafile = true + +[[files]] +file = "mods/banhammer.pw.toml" +hash = "27b096c8d024c3c935c4c8f099da3516f0a111e61f2e36a995a79b3f9c08dd53" +metafile = true + +[[files]] +file = "mods/c2me-fabric.pw.toml" +hash = "d4e882278d0a8d863a069df56f6e473e81e79c48f8cc6e700a56f297847178ca" +metafile = true + +[[files]] +file = "mods/carpet.pw.toml" +hash = "095a93b4f0b4e2b8fadf8359bc145cbdd83be3c5bf23432e9a5f4e54d60de5b4" +metafile = true + +[[files]] +file = "mods/chunky.pw.toml" +hash = "c176a0f84b0c3c03423e68b988cd43f51a6b1cf13a844574b19e003324533da0" +metafile = true + +[[files]] +file = "mods/debugify.pw.toml" +hash = "4ba45966a267b774f5d83442c3c43d740f55e11a910e117e50c046b4f77b5c66" +metafile = true + +[[files]] +file = "mods/fabric-api.pw.toml" +hash = "3a93a5b987d89b3ce4208d1e31b3a5636fc6363ff33896f5a7ad8961df94a236" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "ff4a66502e802341a84fbb8eceed65156b14436769b1f7e27a68b22fb59c1dae" +metafile = true + +[[files]] +file = "mods/fastback.pw.toml" +hash = "2ef2728b208a164588fa1f76bd01b630d36321354700809f185c0dd1679e6387" +metafile = true + +[[files]] +file = "mods/fastload.pw.toml" +hash = "0e72ac12907f4fb5a499a459cc2c64f9225a0c77ee59e76c9360ff0d3479aea2" +metafile = true + +[[files]] +file = "mods/ferrite-core.pw.toml" +hash = "03e174cf691b52da20bd973b955fae6f3720d3d2120f9d6cc1de5fdf3180013c" +metafile = true + +[[files]] +file = "mods/forge-config-api-port.pw.toml" +hash = "129bb8b135edc60038f021b693f5b88a0067b722f326e0d6067112243774289b" +metafile = true + +[[files]] +file = "mods/holograms.pw.toml" +hash = "16338925ca6723d1dc4a8927583ad3231c6539334f2a0a6b480501dc31db7c6f" +metafile = true + +[[files]] +file = "mods/invview.pw.toml" +hash = "fb895dcf5858adba539fa4afbaf183308e10e23c9e5cb7f619e5ffa1281781cd" +metafile = true + +[[files]] +file = "mods/krypton.pw.toml" +hash = "71ef7cc16632c0039fe194183b5885968c6d740aaa67a58000653ae0cb40b882" +metafile = true + +[[files]] +file = "mods/lazydfu.pw.toml" +hash = "b4ca05b39b85c27cd97ccb65d5fb832f5e9fd7ee5710542a3e69dfa30a97ea7d" +metafile = true + +[[files]] +file = "mods/ledger-databases.pw.toml" +hash = "d8c5d10864c6ee4a5ffdcf775ef6325fb88e6441db9c5c7874be1a6f1d714250" +metafile = true + +[[files]] +file = "mods/ledger.pw.toml" +hash = "84defc8f8116d5c0e4210934ed1f555641a1db71b767fa4beddee21c47118868" +metafile = true + +[[files]] +file = "mods/lithium.pw.toml" +hash = "c239c951796882b9c93e649a0dba4f2d95804441faaed707b686381b7a5c67da" +metafile = true + +[[files]] +file = "mods/luckperms.pw.toml" +hash = "879f42a9c6ede67873e773764319cc52105db1c5bfdd540878c9a28eaa0c5561" +metafile = true + +[[files]] +file = "mods/maintenancemode.pw.toml" +hash = "ed2ff97cf59a6c5b9f4e509edbc8c48944bb3c98795f6738c8dfec353cbe350d" +metafile = true + +[[files]] +file = "mods/memoryleakfix.pw.toml" +hash = "97ffbc7d0e4087777c5e3732780f01958f99d44c4f09fd534bbb8f239d4980a1" +metafile = true + +[[files]] +file = "mods/minimotd.pw.toml" +hash = "e0586a6d5278a38714dc4381ea0974fb100227ae19c8e6bb3e39bc844588e5f1" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "7ca62a9da5c2ec9f0a8bed5394021c959e90077db16b313be44f4c8736f7fbf5" +metafile = true + +[[files]] +file = "mods/ordered-player-list.pw.toml" +hash = "f3f33f0f3fe59418c0781e6cd52da9977350d151c0b09096e3ece0e4dbe9e4c2" +metafile = true + +[[files]] +file = "mods/pl3xmap.pw.toml" +hash = "a4d9cddb2c92079898af6e888e0be9b57e2604f197dbe6538f92bd1080602b30" +metafile = true + +[[files]] +file = "mods/plasmo-voice.pw.toml" +hash = "1ef638a5a1bc05863d2a3798114f5f338f70775cb03a39b75b236e06cd156fbd" +metafile = true + +[[files]] +file = "mods/servercore.pw.toml" +hash = "b5a0689c8ca4d98adb7dfe35df4bc6a1dceac5c4b792e5fbb0ad5290991e2684" +metafile = true + +[[files]] +file = "mods/spark.pw.toml" +hash = "7ca0983d3b7852c06f84c66b9f12da8115ff9b8ba63293cd20452377a0de726e" +metafile = true + +[[files]] +file = "mods/starlight.pw.toml" +hash = "218f67d6bcaae849582618cd3e5eb1d4cac0fd6045115f64340620300e160c11" +metafile = true + +[[files]] +file = "mods/styled-chat.pw.toml" +hash = "4f101cf87d3e2228c8c62e3b91ecdb1825809841041e709f9d1480d4e25fad3a" +metafile = true + +[[files]] +file = "mods/styledplayerlist.pw.toml" +hash = "8a6442ca759237fb4346e02653feba023529db29127c6b20740801199395241d" +metafile = true + +[[files]] +file = "mods/vanish.pw.toml" +hash = "fd25d5fa4114515b81e849948be698daa3b9a9bb220165871d9e281e7fc32e4a" +metafile = true + +[[files]] +file = "mods/vmp-fabric.pw.toml" +hash = "93e2bb699bae8854559b94395f8d3468682f61b52db24a8a076b946a87635e3c" +metafile = true + +[[files]] +file = "mods/worldedit.pw.toml" +hash = "bd1dc13316e2aa9b56c89e7e974057f8da8d6bbfe707ba4210109fc612b782e3" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "2008716fdfef554660ce44659a3a42acd673a5391af2d4bd94f40654f1f60a1d" +metafile = true + +[[files]] +file = "mods/yawp.pw.toml" +hash = "0bbd52fd06cfdb492f5461a89c0653db777404f5bb64d423be29b3eae9421837" +metafile = true diff --git a/modpack-server/mods/alternate-current.pw.toml b/modpack-server/mods/alternate-current.pw.toml new file mode 100644 index 0000000..a6d9ad8 --- /dev/null +++ b/modpack-server/mods/alternate-current.pw.toml @@ -0,0 +1,13 @@ +name = "Alternate Current" +filename = "alternate-current-mc1.20-1.7.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/r0v8vy1s/versions/zrRsTCOk/alternate-current-mc1.20-1.7.0.jar" +hash-format = "sha1" +hash = "4136198cbd1ee00e906f33fc533e10a9324fc2b9" + +[update] +[update.modrinth] +mod-id = "r0v8vy1s" +version = "zrRsTCOk" diff --git a/modpack-server/mods/anti-xray.pw.toml b/modpack-server/mods/anti-xray.pw.toml new file mode 100644 index 0000000..90972ae --- /dev/null +++ b/modpack-server/mods/anti-xray.pw.toml @@ -0,0 +1,13 @@ +name = "AntiXray" +filename = "anti-xray-1.3.1-Fabric-1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/sml2FMaA/versions/uZuiksRa/anti-xray-1.3.1-Fabric-1.20.1.jar" +hash-format = "sha1" +hash = "87935c3aad7518a4f2631922cf033af8e4562746" + +[update] +[update.modrinth] +mod-id = "sml2FMaA" +version = "uZuiksRa" diff --git a/modpack-server/mods/banhammer.pw.toml b/modpack-server/mods/banhammer.pw.toml new file mode 100644 index 0000000..ed51458 --- /dev/null +++ b/modpack-server/mods/banhammer.pw.toml @@ -0,0 +1,13 @@ +name = "BanHammer" +filename = "banhammer-0.7.0+1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Wpqg0ciI/versions/90JY9flG/banhammer-0.7.0%2B1.20.jar" +hash-format = "sha1" +hash = "44822b7e2286134ac530e57cb93fef2d86df0c1b" + +[update] +[update.modrinth] +mod-id = "Wpqg0ciI" +version = "90JY9flG" diff --git a/modpack-server/mods/c2me-fabric.pw.toml b/modpack-server/mods/c2me-fabric.pw.toml new file mode 100644 index 0000000..36fbcae --- /dev/null +++ b/modpack-server/mods/c2me-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Concurrent Chunk Management Engine (Fabric)" +filename = "c2me-fabric-mc1.20.1-0.2.0+alpha.10.98.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VSNURh3q/versions/zLF8pgaa/c2me-fabric-mc1.20.1-0.2.0%2Balpha.10.98.jar" +hash-format = "sha1" +hash = "512cbdb6ad2310a3cf17d3605ff23a4a202f234f" + +[update] +[update.modrinth] +mod-id = "VSNURh3q" +version = "zLF8pgaa" diff --git a/modpack-server/mods/carpet.pw.toml b/modpack-server/mods/carpet.pw.toml new file mode 100644 index 0000000..34eb999 --- /dev/null +++ b/modpack-server/mods/carpet.pw.toml @@ -0,0 +1,13 @@ +name = "Carpet" +filename = "fabric-carpet-1.20-1.4.112+v230608.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/TQTTVgYE/versions/K0Wj117C/fabric-carpet-1.20-1.4.112%2Bv230608.jar" +hash-format = "sha1" +hash = "29faa4d1c22509b67a6d66b2a8c9d3b5aa483b65" + +[update] +[update.modrinth] +mod-id = "TQTTVgYE" +version = "K0Wj117C" diff --git a/modpack-server/mods/chunky.pw.toml b/modpack-server/mods/chunky.pw.toml new file mode 100644 index 0000000..c3dfd45 --- /dev/null +++ b/modpack-server/mods/chunky.pw.toml @@ -0,0 +1,13 @@ +name = "Chunky" +filename = "Chunky-1.3.92.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fALzjamp/versions/t8SbUchF/Chunky-1.3.92.jar" +hash-format = "sha1" +hash = "91f8daeeaab0f3114016fb1d45822179701862bf" + +[update] +[update.modrinth] +mod-id = "fALzjamp" +version = "t8SbUchF" diff --git a/modpack-server/mods/debugify.pw.toml b/modpack-server/mods/debugify.pw.toml new file mode 100644 index 0000000..e6f9022 --- /dev/null +++ b/modpack-server/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/modpack-server/mods/fabric-api.pw.toml b/modpack-server/mods/fabric-api.pw.toml new file mode 100644 index 0000000..c108b51 --- /dev/null +++ b/modpack-server/mods/fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric API" +filename = "fabric-api-0.87.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/lcnQpW9C/fabric-api-0.87.0%2B1.20.1.jar" +hash-format = "sha1" +hash = "95fec63d338a8fbe5133a9a5054eca364c9017ba" + +[update] +[update.modrinth] +mod-id = "P7dR8mSH" +version = "lcnQpW9C" diff --git a/modpack-server/mods/fabric-language-kotlin.pw.toml b/modpack-server/mods/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..a1e5ddd --- /dev/null +++ b/modpack-server/mods/fabric-language-kotlin.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Language Kotlin" +filename = "fabric-language-kotlin-1.10.8+kotlin.1.9.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/s10JMAtS/fabric-language-kotlin-1.10.8%2Bkotlin.1.9.0.jar" +hash-format = "sha1" +hash = "06a973a9e97b6dc673dfc1c519f2118dcb068690" + +[update] +[update.modrinth] +mod-id = "Ha28R6CL" +version = "s10JMAtS" diff --git a/modpack-server/mods/fastback.pw.toml b/modpack-server/mods/fastback.pw.toml new file mode 100644 index 0000000..0122336 --- /dev/null +++ b/modpack-server/mods/fastback.pw.toml @@ -0,0 +1,13 @@ +name = "Fast Backups" +filename = "fastback-0.12.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZHKrK8Rp/versions/dqeXNnDy/fastback-0.12.2%2B1.20.1.jar" +hash-format = "sha1" +hash = "e666878e4d7f180f048c41010814d557b6fbb217" + +[update] +[update.modrinth] +mod-id = "ZHKrK8Rp" +version = "dqeXNnDy" diff --git a/modpack-server/mods/fastload.pw.toml b/modpack-server/mods/fastload.pw.toml new file mode 100644 index 0000000..b4883c6 --- /dev/null +++ b/modpack-server/mods/fastload.pw.toml @@ -0,0 +1,13 @@ +name = "Fastload" +filename = "Fastload+1.18.2-1.20-3.4.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kCpssoSb/versions/ys9T20o4/Fastload%2B1.18.2-1.20-3.4.0.jar" +hash-format = "sha1" +hash = "b57e4d594031638b0dc076a3b6e501f417700577" + +[update] +[update.modrinth] +mod-id = "kCpssoSb" +version = "ys9T20o4" diff --git a/modpack-server/mods/ferrite-core.pw.toml b/modpack-server/mods/ferrite-core.pw.toml new file mode 100644 index 0000000..c352b44 --- /dev/null +++ b/modpack-server/mods/ferrite-core.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore" +filename = "ferritecore-6.0.0-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uXXizFIs/versions/FCnCG6PS/ferritecore-6.0.0-fabric.jar" +hash-format = "sha1" +hash = "5a57ea73c3c7c0cc300d69611a9cad93baf8e9ab" + +[update] +[update.modrinth] +mod-id = "uXXizFIs" +version = "FCnCG6PS" diff --git a/modpack-server/mods/forge-config-api-port.pw.toml b/modpack-server/mods/forge-config-api-port.pw.toml new file mode 100644 index 0000000..c2028f6 --- /dev/null +++ b/modpack-server/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/modpack-server/mods/holograms.pw.toml b/modpack-server/mods/holograms.pw.toml new file mode 100644 index 0000000..39d1416 --- /dev/null +++ b/modpack-server/mods/holograms.pw.toml @@ -0,0 +1,13 @@ +name = "Holograms" +filename = "holograms-1.5.2+1.20-legacy-edition.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/dl7wmhr3/versions/kmGRyicl/holograms-1.5.2%2B1.20-legacy-edition.jar" +hash-format = "sha1" +hash = "c2917608ceec158288f72466ab831bd9bba2f21b" + +[update] +[update.modrinth] +mod-id = "dl7wmhr3" +version = "kmGRyicl" diff --git a/modpack-server/mods/invview.pw.toml b/modpack-server/mods/invview.pw.toml new file mode 100644 index 0000000..b9050e9 --- /dev/null +++ b/modpack-server/mods/invview.pw.toml @@ -0,0 +1,13 @@ +name = "Inv View" +filename = "InvView-1.4.11-1.20+.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jrDKjZP7/versions/ZfaNA30D/InvView-1.4.11-1.20%2B.jar" +hash-format = "sha1" +hash = "912b76a49a0d1fba51008257194f0eee9de37cb7" + +[update] +[update.modrinth] +mod-id = "jrDKjZP7" +version = "ZfaNA30D" diff --git a/modpack-server/mods/krypton.pw.toml b/modpack-server/mods/krypton.pw.toml new file mode 100644 index 0000000..74c1b51 --- /dev/null +++ b/modpack-server/mods/krypton.pw.toml @@ -0,0 +1,13 @@ +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 = "sha1" +hash = "4d499819effd8afe811e5d93952fcc46765a00df" + +[update] +[update.modrinth] +mod-id = "fQEb0iXm" +version = "jiDwS0W1" diff --git a/modpack-server/mods/lazydfu.pw.toml b/modpack-server/mods/lazydfu.pw.toml new file mode 100644 index 0000000..df20ea1 --- /dev/null +++ b/modpack-server/mods/lazydfu.pw.toml @@ -0,0 +1,13 @@ +name = "LazyDFU" +filename = "lazydfu-0.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/hvFnDODi/versions/0.1.3/lazydfu-0.1.3.jar" +hash-format = "sha1" +hash = "0dfa8b03ed408fb7fdada29e01cfebba02af1049" + +[update] +[update.modrinth] +mod-id = "hvFnDODi" +version = "4SHylIO9" diff --git a/modpack-server/mods/ledger-databases.pw.toml b/modpack-server/mods/ledger-databases.pw.toml new file mode 100644 index 0000000..93bda42 --- /dev/null +++ b/modpack-server/mods/ledger-databases.pw.toml @@ -0,0 +1,13 @@ +name = "Ledger Databases" +filename = "ledger-databases-1.1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d806fed8fea5f3f5a3dc892d605bd6720c86f43e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3834676 +project-id = 529404 diff --git a/modpack-server/mods/ledger.pw.toml b/modpack-server/mods/ledger.pw.toml new file mode 100644 index 0000000..f4e441d --- /dev/null +++ b/modpack-server/mods/ledger.pw.toml @@ -0,0 +1,13 @@ +name = "Ledger" +filename = "ledger-1.2.8.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/LVN9ygNV/versions/pOxgWfwI/ledger-1.2.8.jar" +hash-format = "sha1" +hash = "6f07421ba3fbe99086f1471c7cc8d8c7fed5dd45" + +[update] +[update.modrinth] +mod-id = "LVN9ygNV" +version = "pOxgWfwI" diff --git a/modpack-server/mods/lithium.pw.toml b/modpack-server/mods/lithium.pw.toml new file mode 100644 index 0000000..c5a1bc5 --- /dev/null +++ b/modpack-server/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/modpack-server/mods/luckperms.pw.toml b/modpack-server/mods/luckperms.pw.toml new file mode 100644 index 0000000..510fac0 --- /dev/null +++ b/modpack-server/mods/luckperms.pw.toml @@ -0,0 +1,13 @@ +name = "LuckPerms" +filename = "LuckPerms-Fabric-5.4.88.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Vebnzrzj/versions/7VG8Evoq/LuckPerms-Fabric-5.4.88.jar" +hash-format = "sha1" +hash = "8c9364ad400b9562d1a547ab5cd7f57920adede6" + +[update] +[update.modrinth] +mod-id = "Vebnzrzj" +version = "7VG8Evoq" diff --git a/modpack-server/mods/maintenancemode.pw.toml b/modpack-server/mods/maintenancemode.pw.toml new file mode 100644 index 0000000..ab335dd --- /dev/null +++ b/modpack-server/mods/maintenancemode.pw.toml @@ -0,0 +1,13 @@ +name = "Maintenance Mode" +filename = "mmode-fabric-1.20-1.1.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/QOkEkSap/versions/TT7eUrpf/mmode-fabric-1.20-1.1.1.jar" +hash-format = "sha1" +hash = "da772889aaff617e9d85fd1ff4637663219f38c3" + +[update] +[update.modrinth] +mod-id = "QOkEkSap" +version = "TT7eUrpf" diff --git a/modpack-server/mods/memoryleakfix.pw.toml b/modpack-server/mods/memoryleakfix.pw.toml new file mode 100644 index 0000000..21b9ea8 --- /dev/null +++ b/modpack-server/mods/memoryleakfix.pw.toml @@ -0,0 +1,13 @@ +name = "Memory Leak Fix" +filename = "memoryleakfix-fabric-1.17+-1.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/kLyFtyv2/memoryleakfix-fabric-1.17%2B-1.1.1.jar" +hash-format = "sha1" +hash = "2bc5237993e08fd491d410bb646838cda4999bed" + +[update] +[update.modrinth] +mod-id = "NRjRiSSD" +version = "kLyFtyv2" diff --git a/modpack-server/mods/minimotd.pw.toml b/modpack-server/mods/minimotd.pw.toml new file mode 100644 index 0000000..f619058 --- /dev/null +++ b/modpack-server/mods/minimotd.pw.toml @@ -0,0 +1,13 @@ +name = "MiniMOTD" +filename = "minimotd-fabric-mc1.20.1-2.0.13.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/16vhQOQN/versions/SxaMhttu/minimotd-fabric-mc1.20.1-2.0.13.jar" +hash-format = "sha1" +hash = "3e1236dc310ede644c7f448c8308fad49b99a9b7" + +[update] +[update.modrinth] +mod-id = "16vhQOQN" +version = "SxaMhttu" diff --git a/modpack-server/mods/no-chat-reports.pw.toml b/modpack-server/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..c63912b --- /dev/null +++ b/modpack-server/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/modpack-server/mods/ordered-player-list.pw.toml b/modpack-server/mods/ordered-player-list.pw.toml new file mode 100644 index 0000000..1b40462 --- /dev/null +++ b/modpack-server/mods/ordered-player-list.pw.toml @@ -0,0 +1,13 @@ +name = "Ordered Player List" +filename = "orderedplayerlist-0.1.2+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/IX99VLW9/versions/n6AMXeIT/orderedplayerlist-0.1.2%2B1.20.1.jar" +hash-format = "sha1" +hash = "371aae1c652b8a7ee64486544547919d6efd49ec" + +[update] +[update.modrinth] +mod-id = "IX99VLW9" +version = "n6AMXeIT" diff --git a/modpack-server/mods/pl3xmap.pw.toml b/modpack-server/mods/pl3xmap.pw.toml new file mode 100644 index 0000000..cbf4a89 --- /dev/null +++ b/modpack-server/mods/pl3xmap.pw.toml @@ -0,0 +1,13 @@ +name = "Pl3xMap" +filename = "Pl3xMap-1.20.1-469.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/YMXhf1UJ/versions/Aziw81Ii/Pl3xMap-1.20.1-469.jar" +hash-format = "sha1" +hash = "e1243130008327413a1ff4b927d13f6306d11495" + +[update] +[update.modrinth] +mod-id = "YMXhf1UJ" +version = "Aziw81Ii" diff --git a/modpack-server/mods/plasmo-voice.pw.toml b/modpack-server/mods/plasmo-voice.pw.toml new file mode 100644 index 0000000..96c4893 --- /dev/null +++ b/modpack-server/mods/plasmo-voice.pw.toml @@ -0,0 +1,13 @@ +name = "Plasmo Voice" +filename = "plasmovoice-fabric-1.20.1-2.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1bZhdhsH/versions/X7F0pv3U/plasmovoice-fabric-1.20.1-2.0.6.jar" +hash-format = "sha1" +hash = "fd26a6ee094497187274b1a524abccaf78e205ee" + +[update] +[update.modrinth] +mod-id = "1bZhdhsH" +version = "X7F0pv3U" diff --git a/modpack-server/mods/servercore.pw.toml b/modpack-server/mods/servercore.pw.toml new file mode 100644 index 0000000..14d05d1 --- /dev/null +++ b/modpack-server/mods/servercore.pw.toml @@ -0,0 +1,13 @@ +name = "ServerCore" +filename = "servercore-fabric-1.3.7+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/exA4UxFq/servercore-fabric-1.3.7%2B1.20.1.jar" +hash-format = "sha1" +hash = "fab66f83ded565ba67f6d0f7fecd6861f21409a6" + +[update] +[update.modrinth] +mod-id = "4WWQxlQP" +version = "exA4UxFq" diff --git a/modpack-server/mods/spark.pw.toml b/modpack-server/mods/spark.pw.toml new file mode 100644 index 0000000..0664261 --- /dev/null +++ b/modpack-server/mods/spark.pw.toml @@ -0,0 +1,13 @@ +name = "spark" +filename = "spark-1.10.42-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l6YH9Als/versions/BeIg1bik/spark-1.10.42-fabric.jar" +hash-format = "sha1" +hash = "0f0e066808446999f4d63c9db5abf9e3d778a446" + +[update] +[update.modrinth] +mod-id = "l6YH9Als" +version = "BeIg1bik" diff --git a/modpack-server/mods/starlight.pw.toml b/modpack-server/mods/starlight.pw.toml new file mode 100644 index 0000000..db082ee --- /dev/null +++ b/modpack-server/mods/starlight.pw.toml @@ -0,0 +1,13 @@ +name = "Starlight (Fabric)" +filename = "starlight-1.1.2+fabric.dbc156f.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/H8CaAYZC/versions/XGIsoVGT/starlight-1.1.2%2Bfabric.dbc156f.jar" +hash-format = "sha1" +hash = "a03102cab439cbab5a1d7d72cd7c2b4976ddd421" + +[update] +[update.modrinth] +mod-id = "H8CaAYZC" +version = "XGIsoVGT" diff --git a/modpack-server/mods/styled-chat.pw.toml b/modpack-server/mods/styled-chat.pw.toml new file mode 100644 index 0000000..f246e2f --- /dev/null +++ b/modpack-server/mods/styled-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Styled Chat" +filename = "styled-chat-2.2.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/doqSKB0e/versions/axLlTgG5/styled-chat-2.2.2%2B1.20.1.jar" +hash-format = "sha1" +hash = "f92d0932b40cdf93ca281eb1eca136846ffca4e5" + +[update] +[update.modrinth] +mod-id = "doqSKB0e" +version = "axLlTgG5" diff --git a/modpack-server/mods/styledplayerlist.pw.toml b/modpack-server/mods/styledplayerlist.pw.toml new file mode 100644 index 0000000..82f7991 --- /dev/null +++ b/modpack-server/mods/styledplayerlist.pw.toml @@ -0,0 +1,13 @@ +name = "Styled Player List" +filename = "styledplayerlist-3.1.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/DQIfKUHf/versions/4FqvobxB/styledplayerlist-3.1.1%2B1.20.1.jar" +hash-format = "sha1" +hash = "8c6db42ea55444208010920547fa8cc2cb2f29d2" + +[update] +[update.modrinth] +mod-id = "DQIfKUHf" +version = "4FqvobxB" diff --git a/modpack-server/mods/vanish.pw.toml b/modpack-server/mods/vanish.pw.toml new file mode 100644 index 0000000..7fcdf15 --- /dev/null +++ b/modpack-server/mods/vanish.pw.toml @@ -0,0 +1,13 @@ +name = "Vanish" +filename = "vanish-1.4.2+1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/UL4bJFDY/versions/GfnwrbQ6/vanish-1.4.2%2B1.20.jar" +hash-format = "sha1" +hash = "51b6b9a6f5af49000605e17f6ebc8f296dd620ba" + +[update] +[update.modrinth] +mod-id = "UL4bJFDY" +version = "GfnwrbQ6" diff --git a/modpack-server/mods/vmp-fabric.pw.toml b/modpack-server/mods/vmp-fabric.pw.toml new file mode 100644 index 0000000..6035ff8 --- /dev/null +++ b/modpack-server/mods/vmp-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Very Many Players (Fabric)" +filename = "vmp-fabric-mc1.20.1-0.2.0+beta.7.100-all.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wnEe9KBa/versions/CFUsBP6G/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.100-all.jar" +hash-format = "sha1" +hash = "b73a16555c1b47ddaad44e562a0710a5f87f2898" + +[update] +[update.modrinth] +mod-id = "wnEe9KBa" +version = "CFUsBP6G" diff --git a/modpack-server/mods/worldedit.pw.toml b/modpack-server/mods/worldedit.pw.toml new file mode 100644 index 0000000..2511eac --- /dev/null +++ b/modpack-server/mods/worldedit.pw.toml @@ -0,0 +1,13 @@ +name = "WorldEdit" +filename = "worldedit-mod-7.2.15.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9c52765ca56f917ef8cbafc20e9a4f45c346508f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4586218 +project-id = 225608 diff --git a/modpack-server/mods/yacl.pw.toml b/modpack-server/mods/yacl.pw.toml new file mode 100644 index 0000000..252018f --- /dev/null +++ b/modpack-server/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib" +filename = "yet-another-config-lib-fabric-3.1.0+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/CgwTUAR2/yet-another-config-lib-fabric-3.1.0%2B1.20.jar" +hash-format = "sha1" +hash = "0c6d76e383439662c2f0871e170e6e465d2f84ef" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "CgwTUAR2" diff --git a/modpack-server/mods/yawp.pw.toml b/modpack-server/mods/yawp.pw.toml new file mode 100644 index 0000000..76938a7 --- /dev/null +++ b/modpack-server/mods/yawp.pw.toml @@ -0,0 +1,13 @@ +name = "Yet Another World Protector" +filename = "yawp-1.20.1-0.0.2.9-beta3-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/py6EMmAJ/versions/H0YkX3Iu/yawp-1.20.1-0.0.2.9-beta3-fabric.jar" +hash-format = "sha1" +hash = "b0f4cbf21d315d8cc534386acb2dc24bd828eacf" + +[update] +[update.modrinth] +mod-id = "py6EMmAJ" +version = "H0YkX3Iu" diff --git a/modpack-server/pack.toml b/modpack-server/pack.toml new file mode 100644 index 0000000..553d6e9 --- /dev/null +++ b/modpack-server/pack.toml @@ -0,0 +1,13 @@ +name = "Polarcraft Modpack" +author = "Xeovalyte" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "2b80aa3d3f9314592d03f6e4b428c4abd7290e624b3af308a5098eba89050385" + +[versions] +fabric = "0.14.22" +minecraft = "1.20.1"