Merge pull request 'move to packwiz' (#2) from move-to-packwiz into mistress
Reviewed-on: https://codeberg.org/astreaprtcl/linuxcraft/pulls/2
This commit is contained in:
commit
cf000f3646
129 changed files with 2381 additions and 0 deletions
66
.forgejo/workflows/buildcontainer.yml
Normal file
66
.forgejo/workflows/buildcontainer.yml
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
name: Create Buildcontainer
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
paths:
|
||||
- .forgejo/workflows/buildcontainer.yml
|
||||
- Dockerfile
|
||||
pull_request:
|
||||
branches:
|
||||
- "main"
|
||||
paths:
|
||||
- .forgejo/workflows/buildcontainer.yml
|
||||
- Dockerfile
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: code.forgejo.org/oci/docker:dind
|
||||
env:
|
||||
DOCKER_HOST: tcp://forgejo-dind:2375
|
||||
|
||||
steps:
|
||||
- name: Setup Docker & Node
|
||||
run: |
|
||||
apk add nodejs npm --update
|
||||
docker info
|
||||
|
||||
- name: Checkout the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build and Push
|
||||
run: |
|
||||
export TAG=codeberg.org/${{ env.GITHUB_REPOSITORY }}/alpine-packwiz
|
||||
docker build -f Dockerfile -t $TAG:${{ env.GITHUB_SHA }} build-docker
|
||||
|
||||
publish:
|
||||
if: github.event_name == 'push'
|
||||
runs-on: docker
|
||||
container:
|
||||
image: code.forgejo.org/oci/docker:dind
|
||||
env:
|
||||
DOCKER_HOST: tcp://forgejo-dind:2375
|
||||
|
||||
steps:
|
||||
- name: Setup Docker & Node
|
||||
run: |
|
||||
apk add nodejs npm --update
|
||||
docker info
|
||||
|
||||
- name: Login to Forgejo
|
||||
run: |
|
||||
docker login codeberg.org -u ${{ env.GITHUB_ACTOR }} -p ${{ secrets.TOKEN }}
|
||||
|
||||
- name: Checkout the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build and Push
|
||||
run: |
|
||||
export TAG=codeberg.org/${{ env.GITHUB_REPOSITORY }}/alpine-packwiz
|
||||
docker build -f Dockerfile -t $TAG:${{ env.GITHUB_SHA }} build-docker
|
||||
docker tag $TAG:${{ env.GITHUB_SHA }} $TAG:latest
|
||||
docker push $TAG
|
||||
92
.forgejo/workflows/publish-release.yml
Normal file
92
.forgejo/workflows/publish-release.yml
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
name: Build Application
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
build-modrinth:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: codeberg.org/astreaprtcl/linuxcraft/alpine-packwiz:latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build Package
|
||||
run: |
|
||||
packwiz mr export
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Linuxcraft-$GITHUB_REF_NAME.mrpack
|
||||
path: *.mrpack
|
||||
|
||||
build-curseforge:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: codeberg.org/astreaprtcl/linuxcraft/alpine-packwiz:latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build Package
|
||||
run: |
|
||||
packwiz cf export
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Linuxcraft-$GITHUB_REF_NAME.zip
|
||||
path: *.zip
|
||||
|
||||
build-serverpack:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: codeberg.org/astreaprtcl/linuxcraft/alpine-packwiz:latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build Package
|
||||
run: |
|
||||
packwiz cf export
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Linuxcraft-$GITHUB_REF_NAME-server.zip
|
||||
path: *.zip
|
||||
|
||||
publish-artifacts:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Download Binaries
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
merge_multiple: true
|
||||
path: artifacts
|
||||
|
||||
- name: Prepare release
|
||||
run: |
|
||||
mkdir release
|
||||
mv artifacts/*/* release
|
||||
|
||||
- name: Upload binaries
|
||||
uses: actions/forgejo-release@v2.6.0
|
||||
with:
|
||||
direction: upload
|
||||
url: ${{ env.GITHUB_SERVER_URL }}
|
||||
repo: ${{ env.GITHUB_REPOSITORY }}
|
||||
token: ${{ secrets.TOKEN }}
|
||||
release-dir: release
|
||||
tag: "${{ github.ref_name }}"
|
||||
sha: "${{ github.sha }}"
|
||||
release-notes-assistant: true
|
||||
override: true
|
||||
2
.packwizignore
Normal file
2
.packwizignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
README.md
|
||||
Dockerfile
|
||||
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
FROM alpine:latest
|
||||
|
||||
ENV PATH=$PATH:/root/go/bin
|
||||
|
||||
RUN apk add --update go
|
||||
|
||||
RUN go install github.com/packwiz/packwiz@latest
|
||||
|
||||
WORKDIR /modpack
|
||||
14
README.md
Normal file
14
README.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Linuxcraft Modpack
|
||||
|
||||
Domain: [mc.linuxposting.xyz](mc.linuxposting.xyz)
|
||||
Version: 1.20.1
|
||||
Modlist: [here](modlist.md)
|
||||
Whitelist: ping catppuccin-macchiato or tux to get whitelisted
|
||||
|
||||
## Useful Tips:
|
||||
|
||||
- set tablist nickname & suffix: `/name nickname <nickname>` & `/name suffix <suffix>`
|
||||
- set chat nickname: `/neko nickname <nickname>`
|
||||
- keybind for configuring Voicechat: `v`
|
||||
- create vc group: `/groups create name:<name>`
|
||||
- turn yourself into a neko: `/tonekoadmin set <username>`
|
||||
8
defaultconfigs/mousewheelie.hjson
Normal file
8
defaultconfigs/mousewheelie.hjson
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
scrolling: {
|
||||
enable: false
|
||||
}
|
||||
refill: {
|
||||
play-sound: false
|
||||
}
|
||||
}
|
||||
617
index.toml
Normal file
617
index.toml
Normal file
|
|
@ -0,0 +1,617 @@
|
|||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = ".forgejo/workflows/buildcontainer.yml"
|
||||
hash = "4c9fb3656fd625321593ea5cfd1a8aa6b288ca95d821925da82333a121f662a5"
|
||||
|
||||
[[files]]
|
||||
file = ".forgejo/workflows/publish-release.yml"
|
||||
hash = "3b5150e7bb48477c72361e8c2802477fe25a1e4492678c88eb9bec0b18235dbd"
|
||||
|
||||
[[files]]
|
||||
file = "defaultconfigs/mousewheelie.hjson"
|
||||
hash = "eb10190320c9cf49b7b95299c01c4c163736de8d401a14252f8170add0de18f0"
|
||||
|
||||
[[files]]
|
||||
file = "mods/3dskinlayers.pw.toml"
|
||||
hash = "71d097839d86bcdc476dd12c9d635b3c521f07f71e133357587975d6862eefac"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/addonslib.pw.toml"
|
||||
hash = "1b6e4f43c8138e60d9f2283c83fa5f5e5c267b35ca764952699472c751647642"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ae2-emi-crafting.pw.toml"
|
||||
hash = "f9de150fd28847bbae0649278f098babfb0ea4961caf93bec38835c4574e5ab3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ae2.pw.toml"
|
||||
hash = "92facdf346314689b4ec500fb71381da34dd5e31e32d79afccb7e41a299ea7ed"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "7d44149b8b22e0b19b082f49809edfc1b5f170e5d1d297cd73ae88c0b432c3ab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/applied-energistics-2-wireless-terminals.pw.toml"
|
||||
hash = "f53692469637eda8ca8e113738fc02e4a08a2093781da80c96c8fdf0671b65b2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-api.pw.toml"
|
||||
hash = "e12dce3e543168379a2856c66064ee2001e6420a9dfc6163f37b78e518947456"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/balm.pw.toml"
|
||||
hash = "7dc148833d9a455f8ddebab5c3d8a03c2797cff1296d8c0bcb526e6226b97cb3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bclib.pw.toml"
|
||||
hash = "ab1e22cc66189067e002a204c70c553cc7cc0e738bd602f405d7cc37561260be"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterend.pw.toml"
|
||||
hash = "dd8057c40ff94e9a21a121583884f71c9a6b1eaa6f913ef46c5d1f9b37fe487f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterf3.pw.toml"
|
||||
hash = "a1e024094c28068c99a6da1c5867cbd4e66a315718039659bfa533a138762d9e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/biomes-o-plenty.pw.toml"
|
||||
hash = "a2de85ebe9629568398185b5b9554bcc0c54e322b214d78368485a6074a66279"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blanket.pw.toml"
|
||||
hash = "204a6e607eabf19083f9a4f99e7bc33ff9df95d8c77deaba58f67a6a19f8c811"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blur-plus.pw.toml"
|
||||
hash = "04ddfc50d957ad8cd71306a19b98b3b64d5235bb1c6a694592087ccb1f0c0dfc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bobby.pw.toml"
|
||||
hash = "62392ad801b58819a5821bdbde21686cf338cf0416ece1721db551f8d2497db3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bookshelf-lib.pw.toml"
|
||||
hash = "0b5feeae74fe992084ec5cb12eab3404ddd5054e85c9006f7ba4d65f209de13f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/botany-pots.pw.toml"
|
||||
hash = "48ef9e4284b44490f568508a5577023399ed6b95dba6a36f413e9b8eeeec2f40"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/botany-trees.pw.toml"
|
||||
hash = "1408ae4514817640988c90d8a96c872027132b93dda7872398949128b82fcdea"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/botarium.pw.toml"
|
||||
hash = "2f57caef93731338be19b1e14065978eb3e14dbfc0c1f9699dfcc2f201e2c23b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/c2me-fabric.pw.toml"
|
||||
hash = "64a244469b7ce7be7e6ceabedd69d17e573a0b92d6e29c661fc6c490afa965d8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cardinal-components-api.pw.toml"
|
||||
hash = "127f0a7311e4ecd77c0b96660e0ff873d78d253fffb68db6101eeb414de38bb1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/carry-on.pw.toml"
|
||||
hash = "5ba003768a235ab0d811218191166f9aefa4c9a2509341fbba1efd80e18d3676"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/carryon-vs-compat.pw.toml"
|
||||
hash = "b3d72da43e10056cef5c15eabeee3fba4fe72bb48c4559ef172f5880dcf69c46"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cc-tweaked.pw.toml"
|
||||
hash = "2734e629ae60121793c07db76ab086f37953217142c5bb4a5e10c7fafc6104ae"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chisel-reborn.pw.toml"
|
||||
hash = "281e2429b2f37421799b6ff4613c8a783df5e008c2864f91aa862418ff86f272"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cloth-config.pw.toml"
|
||||
hash = "41a3dc271859b118417946d2fdb2408523563b2f4f49048073672a342fb1aebf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/configured.pw.toml"
|
||||
hash = "14f9882a9971cd081d92efc84e615086282598bf6df351ff7fb3d8ed95535e37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/controlling.pw.toml"
|
||||
hash = "e81c635602878f92af9a9c11b92481b25c7aaf3f68cd015dabf5f67201886401"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create-fabric.pw.toml"
|
||||
hash = "7d227ef90b1918ceb348ade235a5d17c7894acbf387575e96c08920a5bad1bbb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create-steam-n-rails.pw.toml"
|
||||
hash = "b79bc9976d5958f4b88ca23575e0d0dc677a2b06931108f6f7bc3fd3e46bb22c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/createaddition.pw.toml"
|
||||
hash = "76aba8d8cc62f325d52613c1b66d17dae77dd1df918b1153fc2bd5fb80b42a27"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cryonicconfig.pw.toml"
|
||||
hash = "ac8c9d8a720dac25670730ed542c7e1575a96103127f5a7a277594e438a420f6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ctlibmod.pw.toml"
|
||||
hash = "08c318add426c36c0b9eca36102484c0a9ee553fa7cb52ebbd14d5a9bb7b3660"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cyberanner-ironchest.pw.toml"
|
||||
hash = "2f7b032107ae72bdab0025995de49b8f7434a03f3316045b56e29e39648ffbb8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/durability-tooltip.pw.toml"
|
||||
hash = "ab0a2eb7d496c659af26dd31070a778f84a7f88b17fc75fea4ad3e31075bf319"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamic-fps.pw.toml"
|
||||
hash = "ce0b6c452313b669ce95d6bc7f232f72b89bf61ebb2013cac5b17a09c8132510"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ebe.pw.toml"
|
||||
hash = "c9102ad224c1496927d326707ee2cd2a2cfd6f278f05e23a19aa45395306daf6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi-loot.pw.toml"
|
||||
hash = "b4ab0cc9a2ddcc3753b6775a62092f90e8f41f47c58a8f4cfcb41001c404d490"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi-ores.pw.toml"
|
||||
hash = "f9109bb1aae21525af8da7ed9d062b5a9c3f32a520a4fb5816847e051b64dd34"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi.pw.toml"
|
||||
hash = "fec1ffa03b4d62e47be25512840490844fc383cf82d2ad35345b2f87a21e8228"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emitechreborn.pw.toml"
|
||||
hash = "d30cb6e23b9b5641e251ecde7517c0537f6496ef3bfc8e6ca3c9cd53585d1b43"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emitrades.pw.toml"
|
||||
hash = "71d944c917bf1e4f0f6fac8c39f3b1038becaa039cdf3638982f4cdb58ef99b4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emized-botany-pots.pw.toml"
|
||||
hash = "9abf30d65d74e7aba054061b6f7e9e467f5e83ce05fdb8744df1283a40155cb9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/enchantment-descriptions.pw.toml"
|
||||
hash = "8ca413f9c2a155068d71e0057b23d8a199473fb78b37fe1ea864b5455e997a26"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/enhanced-cats.pw.toml"
|
||||
hash = "a58910e720857984ccd736ee9e2899e784029f5a40c02b278d33c3f6752706d4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.pw.toml"
|
||||
hash = "8a9386b76d226cf0bd2ab2faaa97442bb532702ca5fb7436b66b1383e0e306e3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/estrogen.pw.toml"
|
||||
hash = "18b0d44213fd3c7e22748e4ad775e6ce5cf243f9b38294130a826c845ae913c4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/eureka.pw.toml"
|
||||
hash = "8ea11b348e14a256d830dd40f0e1d6736d069a8cc1e0b2a6747db6256be5247f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/extra-mod-integrations.pw.toml"
|
||||
hash = "376321a4e11e86d932670192b6ddebfd7b898c4e47e74a6b08c7c0123a0aa49c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "2b7949e506ba69c57139127c0ccc6caf5a9ec5ec97788b81288118db3d7c2ad3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "f217a0233c8aef84e914e1f8e90718be2496a923725215190d375ab3140379ab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/farmers-delight-refabricated.pw.toml"
|
||||
hash = "5c98012330282f45370e95f4206ccf214fb059b73a8b4ebe0aeb2ae57647d8d5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fast-ip-ping.pw.toml"
|
||||
hash = "29d41095d30271247f296402d3e50d8ce060acf77808efcbe25de0ec84e76975"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/female-gender.pw.toml"
|
||||
hash = "26c33cf9892d2221149aa0fb26eb1dbb17227f7a3f4542624a40ab69dfea60c4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ferrite-core.pw.toml"
|
||||
hash = "86cbfa8adbbb8be527f95aca49b427f892aa780773df141dfd7f4ffd02740bbd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fusion-connected-textures.pw.toml"
|
||||
hash = "2e9f6742dd59740c24317ee68076a94789d32a1f258a2b770ba72c1c40a4beb2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fzzy-config.pw.toml"
|
||||
hash = "73eaf730f838085585517587a39a8d8d865c58646346a5bfbf703e5f3ac30314"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/geckolib.pw.toml"
|
||||
hash = "486365308053b52809d840574fcf011125a146c2ab51ff8efb0f72c8cc1a759e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/glitchcore.pw.toml"
|
||||
hash = "493ed95320ee3cc9c2def86b9d0971c2ca4bb4215921c2a11208bee77d5dbfb5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/gputape.pw.toml"
|
||||
hash = "3dbbe88bcb85142955f776a9542daec9eb5c5c7c349e56306cc7b8dbe4a84c4c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/gravestones.pw.toml"
|
||||
hash = "e02e297f397621e1c0d17f6853d5176e23343609e978ac3fd35f1a73d00d509c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/harvest.pw.toml"
|
||||
hash = "078860bac1f307372efd36c5e861dd4fac7a387f138f09989f8fff0ad12b7904"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/hephaestus.pw.toml"
|
||||
hash = "da53b078e3d222c72a3dc7f065cca1cad9772473a6be401f4e7098c0e7da6456"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/indium.pw.toml"
|
||||
hash = "cb85864ff2d3936a5ab4f7e7ccf763dbda0153412ba52c95a63b29677a012aaf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "99efc9e805ce2888680d3cacb9be65733c6d4a8cfcb77e1976205f758db24346"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jade.pw.toml"
|
||||
hash = "d5faaf6d7e4be8bdf9b1b200edee175c2704ce13abad9d1951a4d4a45b432d4e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/just-enough-calculation.pw.toml"
|
||||
hash = "01ef3aee6f96a4a6227fc41884481e73443c34e54d465dd3cac46a068061c7da"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/just-zoom.pw.toml"
|
||||
hash = "9495bb2388d7fa5ccf6b33b485f75c7ed15f8a59956406a92ad427e8504980e8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/kibe.pw.toml"
|
||||
hash = "b52bdae22d6a73fc91ffb72da3b992a286f54f6180ed33b8e6864fc04d001eb3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/konkrete.pw.toml"
|
||||
hash = "d6be91dc0a2aca23ee640818d8a8295c85ddb2db6e0413669ecac9600b01eef0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/krypton.pw.toml"
|
||||
hash = "9063bac3fdf585a43d318e3f9773475a28ecb8fe80bc7689cc480851eef97420"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdynamiclights.pw.toml"
|
||||
hash = "e727cc5823b7391db5c30bbaa3769fed77533db693011d0dc8698b0e4303b71d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lighty.pw.toml"
|
||||
hash = "6b986485b44e2007fc69334325f45ad1a4ad1d09d7f7814b1dbc443f171abbd1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.pw.toml"
|
||||
hash = "a08a445002542d96a8481654c3f4b5e2d3c064f77b477aeaa3a1d1c3cd396ca8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/luckperms.pw.toml"
|
||||
hash = "ed322399f2f703b5cc9f6652d85e8eb215a53c7acbeef27964c0d6af7400561a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-biomes-o-plenty.pw.toml"
|
||||
hash = "9876d69a9340de96537eb80fec92f5df5afdd2e5464dd6a557597358f3f79f5e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-doors.pw.toml"
|
||||
hash = "ea9af51413113483ba002f9827a66653b184363c68d6280009677df1fe171afa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-fences-and-walls.pw.toml"
|
||||
hash = "138d998816672a15b1de2405078654d64eeb4ccce7e226a78dec9f76940ad80f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-furniture.pw.toml"
|
||||
hash = "2119cbbefc4cddc7dcd10e3b8e3bcfde462242aa8383f62d4218ffd14d3ce7e7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-lights-and-lamps.pw.toml"
|
||||
hash = "52474049a6eef09eb3cbd35d92c4249808f4d2338bd4da272991f2924da3c47f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-trapdoors.pw.toml"
|
||||
hash = "d8bab44aefed1f0b3cc5b191d0a18a621d552369cea2c7c311337193e9ab30be"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-windows.pw.toml"
|
||||
hash = "0a6b6ce76026e217af6d2c1d2f8cf6992ae45026a94172687d9c50cbf2e00b5a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/memoryleakfix.pw.toml"
|
||||
hash = "ede2f61d6b592f44294fa8790c2f050729c487aa86aba09034f2ef30d45e0e93"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modernfix.pw.toml"
|
||||
hash = "f149a969021fee77abd79fee4906f80abbbd928b3f68bf14de1a2685ee9a2a80"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "d7145fd1bd8b4bb6a3b84652a96a68870fb3ab32230f27520bb9362fd17ec39f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-tweaks.pw.toml"
|
||||
hash = "b6685e98fce8f1f45868b9df3dbaa410ec23bb64896c826be596d98b01326116"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-wheelie.pw.toml"
|
||||
hash = "b71ebab572583fcca1a864236e233a84c637bf00c78f0d1240b742763c0375d8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/netherportalfix.pw.toml"
|
||||
hash = "ba5ff18e27aa4a5ef3cc763c0f17178c57a916b183035678715ff0fa3f6fee6b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "9ce6efc7149cdae2deb751b4ebf2d220700cc1b204e7a1d026275203387f106b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/nullscape.pw.toml"
|
||||
hash = "e5e76b305f6e8fd611fb70695f42014c62e5f46b926d626eaf5ca0c78e394c5c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/plasmo-voice.pw.toml"
|
||||
hash = "3a1deb0832255cf614dd1b4e3b18327d280a9ac34aa3258f46a3aa5a4e02d92b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/polymorph.pw.toml"
|
||||
hash = "8293786ca23e23e7dd04d60d666f34145a00229a5959f7a1962995654cacdf1f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/powah.pw.toml"
|
||||
hash = "dbca62c1c040faadebbbfb2aa81a571d03cd11d4259c5bbcb1d2591561cea17f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/pv-addon-groups.pw.toml"
|
||||
hash = "43c15115aa3a05912a943f022bb850e72931fe8f4e01c005181dc99a673cb527"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/rechiseled-create.pw.toml"
|
||||
hash = "6a0e0360ed2eaed1e6ff40c705e81725fe530cd5b6fb0dbf81e03d1f05a14317"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/rechiseled.pw.toml"
|
||||
hash = "d2dc9dfea0cc21063ccd2d3536d1caf26f4d71afa0c8fa812e416d271324f2e1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/reeses-sodium-options.pw.toml"
|
||||
hash = "4a7d1e46795d2d83b18db85d8dbc63740a1d337e12d2b9e550378de59f2b23ab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/resourceful-lib.pw.toml"
|
||||
hash = "3f9e020fb15e1c2ede36d50b40c72d536f6de3f817bd703d26805a747175c8bc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/searchables.pw.toml"
|
||||
hash = "830270b8e5a34f5621720ae09c4cf716a65d8003a30d585c8b817aba1fde9ac8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/shulkerboxtooltip.pw.toml"
|
||||
hash = "539f2968d3ddc434abc40c12becaea92bea9f9373b27bd7ff75b67938a56a552"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/skinrestorer.pw.toml"
|
||||
hash = "324c1b91fbd574b8ce39992ff50c0ad8eae2688f18e913fc442cea17ba95f69b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/slice-and-dice.pw.toml"
|
||||
hash = "47493d398295964924d386d0fb866dac1a2d5e0cd4692b8436ea2552ce6c99f6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "ecf8e1df2361e5f1d090f83eee16c449ff1021dfb2da46474a72726406d5d535"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/storagedrawers.pw.toml"
|
||||
hash = "e7c6f6e5dc19540c354302cac223d9b5ff096b474fd332e0cd9d5663a4ca96e7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/supermartijn642s-config-lib.pw.toml"
|
||||
hash = "caa507edc23c21df56cda8b40d30d74eaa999b19bf2fe4e2b53cf9a256e1ac76"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/supermartijn642s-core-lib.pw.toml"
|
||||
hash = "6fba63f2152b6e51365f55d4a689f61053a4aa8b785e904715aef3d595a9fcb8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/techreborn.pw.toml"
|
||||
hash = "8bae583dbb72b66bf134bbb943ebd7e169997ee49ee3180c1b63aebaf3b85ba6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/terrablender.pw.toml"
|
||||
hash = "b3ae602303fd717bff2344bfb89aa427e2b4a1ab5fffdcc25183b22102c492df"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/terralith.pw.toml"
|
||||
hash = "3b61fcf1c80cfdd79282be71ddfa9cce02fc13f8d87a760db455e2a97b801f40"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/threatengl.pw.toml"
|
||||
hash = "b46b606fdf58f8c0e4a96659c83e4972c50ed4d547e435d74e0b507328435d6e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/tonekomod.pw.toml"
|
||||
hash = "75836966795e25eb34161c8aedb7016c0af2e44f1139315ead82d1db65f9574f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/travelersbackpack.pw.toml"
|
||||
hash = "736c973b73d145aac2728acf181a18bd39a4b0126cfead47345d22a72c0898ce"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/trinkets.pw.toml"
|
||||
hash = "ffdb79f5bc29f990e5889f5d159a043c7046b8cd8d79f17f54b44d7ccc2b242a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/valkyrien-skies.pw.toml"
|
||||
hash = "bf080aaab8b7d17a6443cdeced04f84a3ba1cd76aa57023e96f0646cb80cca02"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/waygl.pw.toml"
|
||||
hash = "b88a843e4d0d8b606d5ee62109b04d64fd5e246749acd70ff0854040a1ef9c30"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/waystones.pw.toml"
|
||||
hash = "328e3a71ad894b40c8fa9640bb27534e04740ff697949b45792baf4730094e3f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-map-server-utils.pw.toml"
|
||||
hash = "b14eb0d5cbc38e09ee5f32e8259f35330893236cae45a80d8b6a91ffafc053d6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-minimap.pw.toml"
|
||||
hash = "a2f8f9c0410885c429945a8e5142a3b4bbaa63bf147f9b2fdd035113b404344f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-world-map.pw.toml"
|
||||
hash = "9caca4be3884e5a7c22b681fc4b4d123bb7a9648b4d4936f5ce60df8799fa8eb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yacl.pw.toml"
|
||||
hash = "8305bf17272f0c579b0930b751c12089de9fb157dbdb5c080836ce3daad310b5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "servers.dat"
|
||||
hash = "664b8e135e9c7bfaa5b8c8992d39efeb6061b20b06011d5596d6c79e9ebdc642"
|
||||
13
mods/3dskinlayers.pw.toml
Normal file
13
mods/3dskinlayers.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "3D Skin Layers"
|
||||
filename = "skinlayers3d-fabric-1.8.1-mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/zV5r3pPn/versions/d095tpdB/skinlayers3d-fabric-1.8.1-mc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7ee36f75d6efb9a361985be33525529d9d2cc13554cbe8f882a4c7376d5fd6e2b17b0203b0f6aee6b6464e8ec5031366244fbecddbedb278b47c25a91dd63f7d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "zV5r3pPn"
|
||||
version = "d095tpdB"
|
||||
13
mods/addonslib.pw.toml
Normal file
13
mods/addonslib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "AddonsLib"
|
||||
filename = "addonslib-fabric-1.20.1-1.5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/cl5ec0Qm/versions/QEJEiF12/addonslib-fabric-1.20.1-1.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8285af8b1c35265cc98b8962ac67dff831eeb21345699ab4bd2127902a346dbf2c6be89655acab056469d520575d927de6f611ed7ab9b6aeb8580502c4b1aa63"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "cl5ec0Qm"
|
||||
version = "QEJEiF12"
|
||||
13
mods/ae2-emi-crafting.pw.toml
Normal file
13
mods/ae2-emi-crafting.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "AE2 EMI Crafting Integration"
|
||||
filename = "ae2-emi-crafting-1.3.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/eVAp8Nkw/versions/lEmazn2j/ae2-emi-crafting-1.3.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "51fdb5e5fa57275b9b87b315d791e92633453f2d9880d8cd6cccc25f785264d1d4781c8bfd2521a6e84588c50ab036189dba1f18df9e8f801a600c63076f2568"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "eVAp8Nkw"
|
||||
version = "lEmazn2j"
|
||||
13
mods/ae2.pw.toml
Normal file
13
mods/ae2.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Applied Energistics 2"
|
||||
filename = "appliedenergistics2-fabric-15.3.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/XxWD5pD3/versions/eDnBiYjR/appliedenergistics2-fabric-15.3.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "af5e1088af2dcfaaffc865563e9588e4189b5f11dc7d75cfeafe6a9e5b1a55680cc2e7b2eea3bd956c92934ccea0fa79476e8d190c487a4eaf475dc5151fe0d6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "XxWD5pD3"
|
||||
version = "eDnBiYjR"
|
||||
13
mods/appleskin.pw.toml
Normal file
13
mods/appleskin.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.20.1-2.5.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/xcauwnEB/appleskin-fabric-mc1.20.1-2.5.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1544c3705133694a886233bdf75b0d03c9ab489421c1f9f30e51d8dd9f4dcab5826edbef4b7d477b81ac995253c6258844579a54243422b73446f6fb8653b979"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "xcauwnEB"
|
||||
13
mods/applied-energistics-2-wireless-terminals.pw.toml
Normal file
13
mods/applied-energistics-2-wireless-terminals.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Applied Energistics 2 Wireless Terminals"
|
||||
filename = "ae2wtlib-15.2.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/pNabrMMw/versions/QewbGM3G/ae2wtlib-15.2.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "aa1593f4466370daf2c4acbeea93dbb6249e9aaddaacc0383b0b016067ca47202398d89255812fa5758c56e873fbedb23595c1f05be01e9736f978a771332bca"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "pNabrMMw"
|
||||
version = "QewbGM3G"
|
||||
13
mods/architectury-api.pw.toml
Normal file
13
mods/architectury-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Architectury API"
|
||||
filename = "architectury-9.2.14-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "lhGA9TYQ"
|
||||
version = "WbL7MStR"
|
||||
13
mods/balm.pw.toml
Normal file
13
mods/balm.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Balm"
|
||||
filename = "balm-fabric-1.20.1-7.3.31.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/x05ZVyBJ/balm-fabric-1.20.1-7.3.31.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c4cf7008ca7d954ed5fc10b4634e3c45d8a36d5cc0bd846cef580f3e1feb81a4d700b1e5029a154e57443470662a56fcbc842117a2f55947ebc90cd5b081a823"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "MBAkmtvl"
|
||||
version = "x05ZVyBJ"
|
||||
13
mods/bclib.pw.toml
Normal file
13
mods/bclib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "BCLib"
|
||||
filename = "bclib-3.0.14.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/BgNRHReB/versions/TPC86Pyz/bclib-3.0.14.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "bc35cc37a221fbc6f7fca293e72aad0877d8c9d07067ff0b4c8f51dcddbb82ac7cbbb86d1550eef7690bcd1ecf09625f0389f39ae9a252eec5d8511ba7deec4a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "BgNRHReB"
|
||||
version = "TPC86Pyz"
|
||||
13
mods/betterend.pw.toml
Normal file
13
mods/betterend.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "BetterEnd"
|
||||
filename = "better-end-4.0.11.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gc8OEnCC/versions/7QwyTILr/better-end-4.0.11.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5faae5cb3d8759837ec341c605dd9c8b6b32a908e7e1f1248b3b2567c5f9969079df33694cdfb6c743a732bfc9d5824843a93edec07f09e68f8b408e355d15e7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gc8OEnCC"
|
||||
version = "7QwyTILr"
|
||||
13
mods/betterf3.pw.toml
Normal file
13
mods/betterf3.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "BetterF3"
|
||||
filename = "BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/7WkFnw9F/BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1b1f5bae45050bf01a23c57cfe94b7f42c6e0e9d669150effc04d3d09fd43c2dbea6c634117309ab1ee11253fcdb3c6061a9034e963b7f08476a76f1e98c3b8a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8shC1gFX"
|
||||
version = "7WkFnw9F"
|
||||
13
mods/biomes-o-plenty.pw.toml
Normal file
13
mods/biomes-o-plenty.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Biomes O' Plenty"
|
||||
filename = "BiomesOPlenty-fabric-1.20.1-19.0.0.96.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HXF82T3G/versions/eZaag2ca/BiomesOPlenty-fabric-1.20.1-19.0.0.96.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0d8af03235f92465c158a38f4a3497658895d3f6cbb761b7c1eaf549d86622a2b3214d32d92de30b1ed86fa55085fd78c6f03cae289e51f09cd8701fda8b4619"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HXF82T3G"
|
||||
version = "eZaag2ca"
|
||||
13
mods/blanket.pw.toml
Normal file
13
mods/blanket.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Blanket"
|
||||
filename = "blanket-client-tweaks-1.1.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gxpkKtVH/versions/Bugxmes1/blanket-client-tweaks-1.1.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2643e683610d4a81c7c8ca19ed6ce995cb8395fdf900dcd4a850b427634e15e4c7d189676e2d98fe4e678fa725c23210a7f528a986ea7c7eba3f7d534b791a86"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gxpkKtVH"
|
||||
version = "Bugxmes1"
|
||||
13
mods/blur-plus.pw.toml
Normal file
13
mods/blur-plus.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Blur+"
|
||||
filename = "blur-3.1.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/dki8Ab2D/blur-3.1.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c2e8d0bc87eb8bb5d36f4e980ef1a680e6238043f79553fa13248f6c9d46d18fce209ed57c66e1d1ce7aff04a397dd0ec907c3e07ff02c2c94c20998c6a22768"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NK39zBp2"
|
||||
version = "dki8Ab2D"
|
||||
13
mods/bobby.pw.toml
Normal file
13
mods/bobby.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Bobby"
|
||||
filename = "bobby-5.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M08ruV16/versions/2cuVyTav/bobby-5.0.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2c2872b633f67feef2af378793da928d1595bb0cd841ee8ca6cd2bbbef45d8f9c14456b2d8970d4d92ac2cbefdb753c77c37341dfdbf0d00268f9cf607914391"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M08ruV16"
|
||||
version = "2cuVyTav"
|
||||
13
mods/bookshelf-lib.pw.toml
Normal file
13
mods/bookshelf-lib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Bookshelf"
|
||||
filename = "Bookshelf-Fabric-1.20.1-20.2.13.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uy4Cnpcm/versions/CBnLZwRS/Bookshelf-Fabric-1.20.1-20.2.13.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6cc0536833c4f1922711da91c3baf3a79b4bf8c72aa548a34e8f4852fc9b1cb51f21729c58544fbe05909fd3e1da316d1f885033af5844024cea936c3626e3d2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uy4Cnpcm"
|
||||
version = "CBnLZwRS"
|
||||
13
mods/botany-pots.pw.toml
Normal file
13
mods/botany-pots.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Botany Pots"
|
||||
filename = "BotanyPots-Fabric-1.20.1-13.0.41.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/U6BUTZ7K/versions/NKdlDMoA/BotanyPots-Fabric-1.20.1-13.0.41.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b6247ce18e89ed0aa0e0a81a240975e9f869682ae011074f0d177df2bb58b40add0f3d31a2e80fb9a759896671dca0eb810bb7e6be1b7f4a25f017378d2600a2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "U6BUTZ7K"
|
||||
version = "NKdlDMoA"
|
||||
13
mods/botany-trees.pw.toml
Normal file
13
mods/botany-trees.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Botany Trees"
|
||||
filename = "BotanyTrees-Fabric-1.20.1-9.0.18.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mvs7RoIW/versions/QmXviCyO/BotanyTrees-Fabric-1.20.1-9.0.18.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ac9095627a169ef1d3e5f107b9eeaef0a7ff7bb324f9c524158c0bd91f4e32013feec3de06357b4185d82db3eaa77d8cc87f3a39ef33a9907b0383821df7238b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mvs7RoIW"
|
||||
version = "QmXviCyO"
|
||||
13
mods/botarium.pw.toml
Normal file
13
mods/botarium.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Botarium"
|
||||
filename = "botarium-fabric-1.20.1-2.3.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/2u6LRnMa/versions/f3ATcSfq/botarium-fabric-1.20.1-2.3.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "03589a8d05c17dbb4271c212d0eb00c53d9d5c0705f63c7816ff9e099245db71f94e7c544e323beaeac28d30bd3807eeccb1352792cb6d778ff6ecf68f4635c7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "2u6LRnMa"
|
||||
version = "f3ATcSfq"
|
||||
13
mods/c2me-fabric.pw.toml
Normal file
13
mods/c2me-fabric.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/s4WOiNtz/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "359c715fd6a0464192d36b4d9dbb7927776eaae498f0cab939b49740fc724bda83aaf4f069f395dc5975d1e82762ee3b602111d9375eb27ab6f5360c4b17f2ff"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VSNURh3q"
|
||||
version = "s4WOiNtz"
|
||||
13
mods/cardinal-components-api.pw.toml
Normal file
13
mods/cardinal-components-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Cardinal Components API"
|
||||
filename = "cardinal-components-api-5.2.3.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/Ielhod3p/cardinal-components-api-5.2.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f20484d5bc780bee9b388ff6075e7c3bd130c7f8cae75a425bfd1fb68d03ca19288c09b0729992987fd32f3a2433b49c25162e086de82abd8d06ee45e4e3c917"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "K01OU20C"
|
||||
version = "Ielhod3p"
|
||||
13
mods/carry-on.pw.toml
Normal file
13
mods/carry-on.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Carry On"
|
||||
filename = "carryon-fabric-1.20.1-2.1.2.7.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/joEfVgkn/versions/Mkla4B3q/carryon-fabric-1.20.1-2.1.2.7.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ca96f56dba50ea4827ec7a15bc590ccb29aba01896550d3cb398bed18acdf469dd351cdc9312e4743f54955b3162e744c58d76c88eb79b1e5e5b4570f5b33c64"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "joEfVgkn"
|
||||
version = "Mkla4B3q"
|
||||
13
mods/carryon-vs-compat.pw.toml
Normal file
13
mods/carryon-vs-compat.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Carry On + Valkyrien Skies Compat"
|
||||
filename = "CarryOnVSCompat-Fabric-1.20.1-1.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VdZ1CoT5/versions/HTQCChfT/CarryOnVSCompat-Fabric-1.20.1-1.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "42a197cd703509ea03aa35903aa7bf1ea45348f7c1b894b9c3f8df508ced1983702b77f7173affb0b62c817a1cd956d5e0e87e20e1c4fbbd82e4182734a7b372"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VdZ1CoT5"
|
||||
version = "HTQCChfT"
|
||||
13
mods/cc-tweaked.pw.toml
Normal file
13
mods/cc-tweaked.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "CC: Tweaked"
|
||||
filename = "cc-tweaked-1.20.1-fabric-1.116.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/tjqbwENw/cc-tweaked-1.20.1-fabric-1.116.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f8dcc464dcf74cee71c565894adbbbf17f092937e13f00e5ca940d9da368a44a31af82f9934844024938b7fd4a12a2defeb690f827a4181bb4f2c6b8cbf1bbb7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gu7yAYhd"
|
||||
version = "tjqbwENw"
|
||||
13
mods/chisel-reborn.pw.toml
Normal file
13
mods/chisel-reborn.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Chisel Reborn"
|
||||
filename = "chisel-fabric-2.0.0+mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4KWv7wbN/versions/MCaQX97J/chisel-fabric-2.0.0%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "540c9e9e7a94cd3d99e49616b503820dada01e9d505df38c482c1a4b257fdf85676790df1cf1d22c9cd015f48f64a243e1a835cc0b3e89576354b3dbffa12a53"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4KWv7wbN"
|
||||
version = "MCaQX97J"
|
||||
13
mods/cloth-config.pw.toml
Normal file
13
mods/cloth-config.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Cloth Config API"
|
||||
filename = "cloth-config-11.1.136-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9s6osm5g"
|
||||
version = "2xQdCMyG"
|
||||
13
mods/configured.pw.toml
Normal file
13
mods/configured.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Configured"
|
||||
filename = "Configured-mc1.20.4-v1.4.1.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HlpEBg3R/versions/LqP2Ofjk/Configured-mc1.20.4-v1.4.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ae028ca1dfdfc0203b402a963c72bfed53a73e53555ccfe2b95e6d4a1b4f956d2f4b20f86f1ca8d844f6c925a102c69570291c3433d88502f2f09933f7de2b22"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HlpEBg3R"
|
||||
version = "LqP2Ofjk"
|
||||
13
mods/controlling.pw.toml
Normal file
13
mods/controlling.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Controlling"
|
||||
filename = "Controlling-fabric-1.20.1-12.0.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/xv94TkTM/versions/6ipZLQSK/Controlling-fabric-1.20.1-12.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1e3da9b2b50488daa7b9165930a48158330404110912037cf42543c6acf649ad79019a324ee42e5ef88ad51bb64ee40684a147bfb7847412259b7cebff0134ee"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "xv94TkTM"
|
||||
version = "6ipZLQSK"
|
||||
13
mods/create-fabric.pw.toml
Normal file
13
mods/create-fabric.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Create Fabric"
|
||||
filename = "create-fabric-0.5.1-j-build.1631+mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Xbc0uyRg/versions/7Ub71nPb/create-fabric-0.5.1-j-build.1631%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "73ff936492c857ae411c10cae0194d64a56b98a1a7a9478ca13fe2a6e3ee155e327cf4590a3888aaa671561b4cf74de97f2f44224d7981b03a546e36236c3de2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Xbc0uyRg"
|
||||
version = "7Ub71nPb"
|
||||
13
mods/create-steam-n-rails.pw.toml
Normal file
13
mods/create-steam-n-rails.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Create: Steam 'n' Rails"
|
||||
filename = "Steam_Rails-1.6.9+fabric-mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ZzjhlDgM/versions/VFhdqLko/Steam_Rails-1.6.9%2Bfabric-mc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "048a0cad7fd4f9eb7516ee557a8d427f4e65b7e7020a24f60fe171f5b84c53dc0a67b603fc4a7d063f15df05ae5e35fc4ff64ec1b8996ca6fc42833fc2f5d55b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ZzjhlDgM"
|
||||
version = "VFhdqLko"
|
||||
13
mods/createaddition.pw.toml
Normal file
13
mods/createaddition.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Create Crafts & Additions"
|
||||
filename = "createaddition-fabric+1.20.1-1.2.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kU1G12Nn/versions/ybLiaryg/createaddition-fabric%2B1.20.1-1.2.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f4ac98d196cef9cc0bfeac7d4070a60376b83cc5c441820a2d602443e7726aef8101fa5bbd5b60ea10ed926fc2770eff3fa5dda695268d1a96f16f4399b0bf77"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kU1G12Nn"
|
||||
version = "ybLiaryg"
|
||||
13
mods/cryonicconfig.pw.toml
Normal file
13
mods/cryonicconfig.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Cryonic Config"
|
||||
filename = "cryonicconfig-fabric-1.0.0+mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/oEhQIkOs/versions/8YNy3a8m/cryonicconfig-fabric-1.0.0%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e4cddd6d303162defc640151c06088795149ff5f4890a19cc0eea35636a5273bcf8bdc1748b165445612683a295e4a0d42235ce91254047a93ddfc97b8720327"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "oEhQIkOs"
|
||||
version = "8YNy3a8m"
|
||||
13
mods/ctlibmod.pw.toml
Normal file
13
mods/ctlibmod.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "ctLibMod"
|
||||
filename = "ctLibMod-0.1.13.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EFNVfB1s/versions/RVXtgzVV/ctLibMod-0.1.13.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8f056b1da3015628484769195cb186feb486f79a0ed3f8fe4aa29ffd2562f9e113fa630454a0a654e3711e6b4cd33fc6f2058ce65b98bc689ad38126fe9d808c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EFNVfB1s"
|
||||
version = "RVXtgzVV"
|
||||
13
mods/cyberanner-ironchest.pw.toml
Normal file
13
mods/cyberanner-ironchest.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Iron Chests"
|
||||
filename = "IronChests-2.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/7mHyGgvW/versions/SfuEdZgi/IronChests-2.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fa0262ea6077067278123eb942b9f5963681e2a2c390fd65be1776cf43db92542ceee2778cb1a34249f27c795740a9f634885853ce9b8cf06d136a0b2e715c8b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "7mHyGgvW"
|
||||
version = "SfuEdZgi"
|
||||
13
mods/durability-tooltip.pw.toml
Normal file
13
mods/durability-tooltip.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Durability Tooltip"
|
||||
filename = "durabilitytooltip-1.1.5-fabric-mc1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/smUP7V3r/versions/WmJeyttw/durabilitytooltip-1.1.5-fabric-mc1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "207d3f32d031bfc391ab267c64f87b9a90b0370aa5e579c217f6774f6a69aeac141c7b8a013d144ccde4f0ed0ce162071358e55cff632fb3d82ad4de8efcf5a3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "smUP7V3r"
|
||||
version = "WmJeyttw"
|
||||
13
mods/dynamic-fps.pw.toml
Normal file
13
mods/dynamic-fps.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Dynamic FPS"
|
||||
filename = "dynamic-fps-3.9.5+minecraft-1.20.0-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/D9mrJwm0/dynamic-fps-3.9.5%2Bminecraft-1.20.0-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8f6769b6ae3736e2481f0b4caea385ad6656b60b2493a1a746a3f0678e976494f7a0488ac4baa80531a38e8d64b1a61654ee97c238dc9b0e12347bdc6623520e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LQ3K71Q1"
|
||||
version = "D9mrJwm0"
|
||||
13
mods/ebe.pw.toml
Normal file
13
mods/ebe.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "7e8b402fd25efd396bc7f0f25a663808ae9890accc227850c454dfcdc975657f22afceb15878e781485622434a6f6d60aff2a60264aa4425edd52ebe052a0de5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OVuFYfre"
|
||||
version = "i3v1Skck"
|
||||
13
mods/emi-loot.pw.toml
Normal file
13
mods/emi-loot.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMI Loot"
|
||||
filename = "emi_loot-0.7.6+1.20.1+fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qbbO7Jns/versions/qGaKqaNB/emi_loot-0.7.6%2B1.20.1%2Bfabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c17bb9848c50d642a1191c06bbd2604e5302bf5e33f5754da1a91c0e144768ea0448aacaa5587273446d2d300ebd0e3fd4087857fc51dd0078311f05c9a359fc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qbbO7Jns"
|
||||
version = "qGaKqaNB"
|
||||
13
mods/emi-ores.pw.toml
Normal file
13
mods/emi-ores.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMI Ores"
|
||||
filename = "emi_ores-1.2+1.20.1+fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sG4TqDb8/versions/Gg0pscgP/emi_ores-1.2%2B1.20.1%2Bfabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7fd7b22dab04cc0fefb1354cd060131c4abd8750057c8a3036d1adfead0f28c30f086efa39c66782790315f1bb7bcc1609f4a0c8ed63b62de7bea72124419c2a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sG4TqDb8"
|
||||
version = "Gg0pscgP"
|
||||
13
mods/emi.pw.toml
Normal file
13
mods/emi.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMI"
|
||||
filename = "emi-1.1.22+1.20.1+fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/VvPw7Vi5/emi-1.1.22%2B1.20.1%2Bfabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6781a72c54af058b72601edea102d9eaf6ff4f8ee5d0ede72cc86b7a79a961fd7c0cc55486938d679d7303c21f95c242ca01b3e9b3be56a41bb3dd11ab766a03"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fRiHVvU7"
|
||||
version = "VvPw7Vi5"
|
||||
13
mods/emitechreborn.pw.toml
Normal file
13
mods/emitechreborn.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EmiTechReborn"
|
||||
filename = "EmiTechReborn-1.0.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/MF8Uygnx/versions/5PIbQFlX/EmiTechReborn-1.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9fa0f0597947ef5889ef28345700835915b3c40214faf29336e4b533600ef793968a10632ba891a0cdb2e0249b304939002d9b0e482a77502fbcd2473586a4be"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "MF8Uygnx"
|
||||
version = "5PIbQFlX"
|
||||
13
mods/emitrades.pw.toml
Normal file
13
mods/emitrades.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMI Trades"
|
||||
filename = "emitrades-fabric-1.2.1+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/j2HhbEE7/versions/kWMqVWTm/emitrades-fabric-1.2.1%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ab4a29bec2b4b093dcfa4fb6deba5929f4e50f012a9ea1000665a70271de634ee9c0cf8f502855eb1fd6162d4a3d595b17f387804dcf8a9e8afad8b041279aee"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "j2HhbEE7"
|
||||
version = "kWMqVWTm"
|
||||
13
mods/emized-botany-pots.pw.toml
Normal file
13
mods/emized-botany-pots.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMIzed Botany Pots"
|
||||
filename = "emized-botany-pots-1.0.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/IhMKi1nq/versions/8zvSgkjC/emized-botany-pots-1.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "112371c26e23735d58b1ba7bb13e4e4d53d1ea3ab8576258353cf8afaa736466b237e513e442bfa70b839bfb891622d22258dfca8f153232957813d70f7d2aa4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "IhMKi1nq"
|
||||
version = "8zvSgkjC"
|
||||
13
mods/enchantment-descriptions.pw.toml
Normal file
13
mods/enchantment-descriptions.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Enchantment Descriptions"
|
||||
filename = "EnchantmentDescriptions-Fabric-1.20.1-17.1.19.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/UVtY3ZAC/versions/LeAiyr1s/EnchantmentDescriptions-Fabric-1.20.1-17.1.19.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9ba8a939713b7945b937118b756033e1428b3b445c60276e3e6143d95a6a5f839ebc95233290cd34fed953000301d5f24b4f680fb53ebd85587c73e8e27b5682"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "UVtY3ZAC"
|
||||
version = "LeAiyr1s"
|
||||
13
mods/enhanced-cats.pw.toml
Normal file
13
mods/enhanced-cats.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Enhanced Cats"
|
||||
filename = "Enhanced Cats-1.20.1-1.20.3-0.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/e2R0wxyL/versions/ncT5cftQ/Enhanced%20Cats-1.20.1-1.20.3-0.8.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1fba8cddd93a57c40b69830f719998ae553014c249d06d29f3f9798af65671184f46befab1f697380ad6336fc2549c70e2246f6bbd3977e01609a88de8f99eb3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "e2R0wxyL"
|
||||
version = "ncT5cftQ"
|
||||
13
mods/entityculling.pw.toml
Normal file
13
mods/entityculling.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Entity Culling"
|
||||
filename = "entityculling-fabric-1.8.1-mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/7CYEXwpe/entityculling-fabric-1.8.1-mc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7884b3e464a966fad9ea0303a36b3786c53f234ee6c7f97155496edc6a7d98baebce81ddbfb073795933223e3e58fb7eb95cf3237aa0a7ae5d63205bcfc291d6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "7CYEXwpe"
|
||||
13
mods/estrogen.pw.toml
Normal file
13
mods/estrogen.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Create: Estrogen"
|
||||
filename = "Estrogen-4.3.4+1.20.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HhIJW8n1/versions/MCFB20q2/Estrogen-4.3.4%2B1.20.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "63b41969ca3008082a5c2c7b1a5b4a4ad10f6ba46f84357893df33413e97a9d910cbfd226c45b54538ca7b826e7de58525f83911c9a93a897da064302f7ce53c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HhIJW8n1"
|
||||
version = "MCFB20q2"
|
||||
13
mods/eureka.pw.toml
Normal file
13
mods/eureka.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Eureka! Ships! for Valkyrien Skies (Forge/Fabric)"
|
||||
filename = "eureka-1201-1.5.1-beta.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EO8aSHxh/versions/sXx5EPib/eureka-1201-1.5.1-beta.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "614b47e312cf7a8d2aaa6f005e805a3ca35347123552d442d3b4d36ac3304bda2a85ef3823300eae0d6b66e35a10f0345ac44654bea6bd24a0e1be78196f2869"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EO8aSHxh"
|
||||
version = "sXx5EPib"
|
||||
13
mods/extra-mod-integrations.pw.toml
Normal file
13
mods/extra-mod-integrations.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "EMI Addon: Extra Mod Integrations"
|
||||
filename = "extra-mod-integrations-0.4.7+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/bpRHnWUb/versions/V1QbMdYW/extra-mod-integrations-0.4.7%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e3f0e39736e14616dd013a5b29b22f3fc7989e4e15b975df6e4f497750c84b850f7b55578a9b1f07a2870d141804802f05308aad43ea69ebad1613f23ab69304"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "bpRHnWUb"
|
||||
version = "V1QbMdYW"
|
||||
13
mods/fabric-api.pw.toml
Normal file
13
mods/fabric-api.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fabric API"
|
||||
filename = "fabric-api-0.92.6+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/UapVHwiP/fabric-api-0.92.6%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2bd2ed0cee22305b7ff49597c103a57c8fbe5f64be54a906796d48b589862626c951ff4cbf5cb1ed764a4d6479d69c3077594e693b7a291240eeea2bb3132b0c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "UapVHwiP"
|
||||
13
mods/fabric-language-kotlin.pw.toml
Normal file
13
mods/fabric-language-kotlin.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.4+kotlin.2.2.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/mccDBWqV/fabric-language-kotlin-1.13.4%2Bkotlin.2.2.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "26b6b4499bf872ebc2c666227b2ed721ce0e33a8e8b19632971250e5cb6e0b9f35aef15a07ce53cf4755285d9d38c4e05a5f1357bad544d44b9e30b87c0a0055"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "mccDBWqV"
|
||||
13
mods/farmers-delight-refabricated.pw.toml
Normal file
13
mods/farmers-delight-refabricated.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Farmer's Delight Refabricated"
|
||||
filename = "FarmersDelight-1.20.1-2.4.0+refabricated.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/7vxePowz/versions/PB4pwRax/FarmersDelight-1.20.1-2.4.0%2Brefabricated.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "298a416f5718926dfb825725705f3baa2b1b1ae0d8462df3fa0ca0f9d9f681570ef431b9ec37e0cdb52c82c195c6d010671a5e2b235fa182c4bcbf9c2978db79"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "7vxePowz"
|
||||
version = "PB4pwRax"
|
||||
13
mods/fast-ip-ping.pw.toml
Normal file
13
mods/fast-ip-ping.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fast IP Ping"
|
||||
filename = "fast-ip-ping-v1.0.7-mc1.20.4-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9mtu0sUO/versions/vUzelzwj/fast-ip-ping-v1.0.7-mc1.20.4-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3efcd4ed3acf64cbc11bc58fdd97dd6a4ca766d4c42ddede83af5e1cdb47ac587b5ec6b411f721815a69e83965472ec480a52a25191f615d20b6f07d7e17327f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9mtu0sUO"
|
||||
version = "vUzelzwj"
|
||||
13
mods/female-gender.pw.toml
Normal file
13
mods/female-gender.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Female Gender Mod"
|
||||
filename = "Female-Gender-Mod-fabric-1.20-3.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/bcOsQHnC/versions/nYZ0oktX/Female-Gender-Mod-fabric-1.20-3.0.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0093c742f57ad4afc9aae48e3af92a32f14d94745e5573c935d923ddd34de607e9e98ca0a4084ac30c24942514909c595f43e7aee0def6aba286446e36dbd2c8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "bcOsQHnC"
|
||||
version = "nYZ0oktX"
|
||||
13
mods/ferrite-core.pw.toml
Normal file
13
mods/ferrite-core.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "9b7dc686bfa7937815d88c7bbc6908857cd6646b05e7a96ddbdcada328a385bd4ba056532cd1d7df9d2d7f4265fd48bd49ff683f217f6d4e817177b87f6bc457"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uXXizFIs"
|
||||
version = "unerR5MN"
|
||||
13
mods/fusion-connected-textures.pw.toml
Normal file
13
mods/fusion-connected-textures.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fusion (Connected Textures)"
|
||||
filename = "fusion-1.2.7-fabric-mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/p19vrgc2/versions/CwEjk4Dk/fusion-1.2.7-fabric-mc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "89d3bbc4bf059b55f467ced61b3f54042cb83bcb3a016b6a8f7a7f74fd6509e6587b0d55a82f55bccd56b715642f17f3573b8e32ba29716dfda186fd71fd2a63"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "p19vrgc2"
|
||||
version = "CwEjk4Dk"
|
||||
13
mods/fzzy-config.pw.toml
Normal file
13
mods/fzzy-config.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fzzy Config"
|
||||
filename = "fzzy_config-0.7.0+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/hYykXjDp/versions/tbpj74o7/fzzy_config-0.7.0%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d6fbad0e32508fe0f33719610d6c70548e5f4cafc3eb359b93ff58ed3a4346895c8a5fc0b38b739b5ca0cb3512d63a7c453f1a2c325df5928fad3f0992520497"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "hYykXjDp"
|
||||
version = "tbpj74o7"
|
||||
13
mods/geckolib.pw.toml
Normal file
13
mods/geckolib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Geckolib"
|
||||
filename = "geckolib-fabric-1.20.1-4.7.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/ezKSGafs/geckolib-fabric-1.20.1-4.7.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "22e7e59f4c708f927f0e7c17e92491a25bb233ecfc6993b6f01d7f6c1a9fe0e88eb1f0a5f019a1bc1d60095a77b88be903e7e5b0132e214d43c5ba28087f00f7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8BmcQJ2H"
|
||||
version = "ezKSGafs"
|
||||
13
mods/glitchcore.pw.toml
Normal file
13
mods/glitchcore.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "GlitchCore"
|
||||
filename = "GlitchCore-fabric-1.20.1-0.0.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/s3dmwKy5/versions/25HLOiOl/GlitchCore-fabric-1.20.1-0.0.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6aaf011fd04da2f2839da8e037add942588676385906d8ddad2927ca88414a37463f1b2e2ee2209a87cda8d2af9448a29e55e86ba2d94e857e46d28545ea7bbd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "s3dmwKy5"
|
||||
version = "25HLOiOl"
|
||||
13
mods/gputape.pw.toml
Normal file
13
mods/gputape.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "GpuTape"
|
||||
filename = "GpuTape-1.18x-1.21x-1.0.5.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5CTSrY8X/versions/ZoOH4tOq/GpuTape-1.18x-1.21x-1.0.5.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9b38e8702d6a99569c4d6e83e748294bd5579cf7044c21d68db5151f8a57195d272c85747fe8f9a26a411cc663555738fe932314f18d9ba05d3af7db5e1c959b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5CTSrY8X"
|
||||
version = "ZoOH4tOq"
|
||||
13
mods/gravestones.pw.toml
Normal file
13
mods/gravestones.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "d15c6db9d9154464f335f01ae7f8ce8d2473251ed5a6c094a2f6e59ba778de6dfdefd7ee6a08d5908b826e37028de8edc3745a7af19ee00b59971f33bdfee2c5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ssUbhMkL"
|
||||
version = "Uw9uAQaY"
|
||||
13
mods/harvest.pw.toml
Normal file
13
mods/harvest.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Harvest"
|
||||
filename = "harvest-1.3.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1DgT4iww/versions/f4jstPPQ/harvest-1.3.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b2b7ffe33ecf4650a6e7fe580c366c445a09a464cec21d42f1f7c997724de49bee55e67739cbeec7e13650dede0d890ab6e509fc49b04df386deae66c367e6e0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1DgT4iww"
|
||||
version = "f4jstPPQ"
|
||||
13
mods/hephaestus.pw.toml
Normal file
13
mods/hephaestus.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Hephaestus"
|
||||
filename = "Hephaestus-1.20.1-3.6.4.287.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sdSn3wvy/versions/Bt5aG0F3/Hephaestus-1.20.1-3.6.4.287.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "be3370a6a5238de5f44927e780039e9bb46bc83d1d50bea7cdfae79941193a3f7968a379f283cc07fe9ceb97fc405f82cc9488ba903024649876efbfe4d2c399"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sdSn3wvy"
|
||||
version = "Bt5aG0F3"
|
||||
13
mods/indium.pw.toml
Normal file
13
mods/indium.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Indium"
|
||||
filename = "indium-1.0.36+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/nQHYSjxO/indium-1.0.36%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7c5a1851f1fc08ae69318e151d07151fabba6cda2a24616c9251e1a4e5b969453e88b97d60f926271d60e3511bfc6fa05a64a108466efb7f29bec4519547e0c9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Orvt0mRa"
|
||||
version = "nQHYSjxO"
|
||||
13
mods/iris.pw.toml
Normal file
13
mods/iris.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Iris Shaders"
|
||||
filename = "iris-1.7.6+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/s5eFLITc/iris-1.7.6%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f1337b0441c31269bd3bfcb28647d521326a83e73128c1ac8d065615f8a5a4ca1e8c96a468b356584236ece5b164ec8d8a52b1878064f4e391ecf4f32885e301"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "s5eFLITc"
|
||||
13
mods/jade.pw.toml
Normal file
13
mods/jade.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Jade 🔍"
|
||||
filename = "Jade-1.20-Fabric-11.13.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/drol2x1P/Jade-1.20-Fabric-11.13.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "048029727a30462abc8e43ecae2d5178ab653783c6dbcb2bd7c4c9cc1bb7c7a2ad5267ca3f89757f5b716da3f653b8e60ed8f46497917f26f094acc8f7dd7dc9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nvQzSEkH"
|
||||
version = "drol2x1P"
|
||||
13
mods/just-enough-calculation.pw.toml
Normal file
13
mods/just-enough-calculation.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Just Enough Calculation"
|
||||
filename = "jecalculation-fabric-1.20.1-4.0.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "68922ca61e11d0b64d5691ea459fa30187fd034f"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 5066672
|
||||
project-id = 242223
|
||||
13
mods/just-zoom.pw.toml
Normal file
13
mods/just-zoom.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Just Zoom"
|
||||
filename = "justzoom_fabric_2.1.0_MC_1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/iAiqcykM/versions/9RoWFL8K/justzoom_fabric_2.1.0_MC_1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "203642fe937106a03465d9116387def228c1805f38f6e7b233ec5f943b0db02c7125ebfc931f9969c4fd65215aa4d88c86e41c25ae7a8d1d3cf600669012063d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "iAiqcykM"
|
||||
version = "9RoWFL8K"
|
||||
13
mods/kibe.pw.toml
Normal file
13
mods/kibe.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Kibe"
|
||||
filename = "kibe-1.10.1-BETA+1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/OvlwmUdC/versions/fhSgEP7Z/kibe-1.10.1-BETA%2B1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "eb8911008b43119b47eb5e44d8fea57afe5a4be15be22cdae97e44b3e605a889b08a759f1cc4d38ca4b3bd7ccc5694e44b38f6077015914c977631a640836f87"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OvlwmUdC"
|
||||
version = "fhSgEP7Z"
|
||||
13
mods/konkrete.pw.toml
Normal file
13
mods/konkrete.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Konkrete"
|
||||
filename = "konkrete_fabric_1.8.1_MC_1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/J81TRJWm/versions/RlBGFlWp/konkrete_fabric_1.8.1_MC_1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ca65343bd3b063f3e0f68cc1d40da1969cf07ca038670f22a2bac91c2f34162f2c455ceb309680d57da13267ffc99fc7f8d40bb9451e93ff56ab2a688c0e3a45"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "J81TRJWm"
|
||||
version = "RlBGFlWp"
|
||||
13
mods/krypton.pw.toml
Normal file
13
mods/krypton.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fQEb0iXm"
|
||||
version = "jiDwS0W1"
|
||||
13
mods/lambdynamiclights.pw.toml
Normal file
13
mods/lambdynamiclights.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-4.1.3+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/Zxi6kGDV/lambdynamiclights-4.1.3%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "f1fc41c4c99df4fe6eea97070dc8b54a28830fa6a6b33f33833f25741babfe38d12a2bdcae5ccc4b5a115a427d46e22e2487431e23d86080efad3a2f571a1831"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "Zxi6kGDV"
|
||||
13
mods/lighty.pw.toml
Normal file
13
mods/lighty.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Lighty"
|
||||
filename = "lighty-fabric-2.1.3+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yjvKidNM/versions/tiE781mZ/lighty-fabric-2.1.3%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "02d6e564ef251cc639a03e5f6e593d89e33f74fb8d9aa52638dfb359eb69662bfb65b9d6f04bd46280d89fae4ef7be98a62f907dc7b756cb84cf068ee2b4e820"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yjvKidNM"
|
||||
version = "tiE781mZ"
|
||||
13
mods/lithium.pw.toml
Normal file
13
mods/lithium.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Lithium"
|
||||
filename = "lithium-fabric-mc1.20.1-0.11.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/vuuAe7ZA/lithium-fabric-mc1.20.1-0.11.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "dc9bc65146f41cf99c46b46216dd3645be7c45cfeb2bc7cdceaa11bcd57771cdf2c30e84ce057f12b8dbf0d54fb808143cf46d92626370011ba5112bec18e720"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "vuuAe7ZA"
|
||||
13
mods/luckperms.pw.toml
Normal file
13
mods/luckperms.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "LuckPerms"
|
||||
filename = "LuckPerms-Fabric-5.4.102.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Vebnzrzj/versions/7PNj6nCm/LuckPerms-Fabric-5.4.102.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "45058fd2bbd2e7723af01a093ef7233d8a6fa2278a2232dfcc2aa53dae6df7ed78dbfbdb9ee133b19bc36655ccff5a4facdd476319c18e290b284733bf10edff"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Vebnzrzj"
|
||||
version = "7PNj6nCm"
|
||||
13
mods/macaws-biomes-o-plenty.pw.toml
Normal file
13
mods/macaws-biomes-o-plenty.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Biomes O' Plenty"
|
||||
filename = "mcwbiomesoplenty-fabric-1.20.1-1.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Tanquv9C/versions/fDKPsGJ3/mcwbiomesoplenty-fabric-1.20.1-1.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "feca40f023e00e5dcdb18d7f7d5f92f3fc6b4c3afdd02f226a5db7ed570a4557d2dceec4ee2bfce750b15f5b9a01709ab55e80189eb476228f22478b2a18f5da"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Tanquv9C"
|
||||
version = "fDKPsGJ3"
|
||||
13
mods/macaws-doors.pw.toml
Normal file
13
mods/macaws-doors.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Doors"
|
||||
filename = "mcw-doors-1.1.2-mc1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kNxa8z3e/versions/HU3H8NiB/mcw-doors-1.1.2-mc1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "141d418bd0f247c0dd078a6c96f2c5eef395b859a1b6ad6d9ab089597d5dbd35075cdddae628f2fa18b0bcc97e191512332c46330ae7ef75395e91cc2d73dbb7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kNxa8z3e"
|
||||
version = "HU3H8NiB"
|
||||
13
mods/macaws-fences-and-walls.pw.toml
Normal file
13
mods/macaws-fences-and-walls.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Fences and Walls"
|
||||
filename = "mcw-fences-1.2.0-1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GmwLse2I/versions/fkcqoGXg/mcw-fences-1.2.0-1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2090f15294b756a9945bb53978856ad0f83e574fad4fae74d2fd701a1d7289b4ef749c6654311b0ed2dad316e019961b4af467d7fd4058a3c4be2560edbaba2d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GmwLse2I"
|
||||
version = "fkcqoGXg"
|
||||
13
mods/macaws-furniture.pw.toml
Normal file
13
mods/macaws-furniture.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Furniture"
|
||||
filename = "mcw-furniture-3.3.0-mc1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/dtWC90iB/versions/7aTbV3Sq/mcw-furniture-3.3.0-mc1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6e9adf5dc3005a2e7fa5ebb53500bb7735ee665e1e2c77b3dc2d35c0a55ed3ef8385a6785356572bb4576940c13dc7d63f0afbea9361b97363eafa2ba7dc4876"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "dtWC90iB"
|
||||
version = "7aTbV3Sq"
|
||||
13
mods/macaws-lights-and-lamps.pw.toml
Normal file
13
mods/macaws-lights-and-lamps.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Lights and Lamps"
|
||||
filename = "mcw-lights-1.1.2-mc1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/w4an97C2/versions/zdA7bseh/mcw-lights-1.1.2-mc1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6c7fb28af2265602baa56ea040e1729be2e4156a9a874c77ef662dfc3a386662347c129f529cb245c14bfde20aed5155c72efb635d387876f619e2c0c266bfea"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "w4an97C2"
|
||||
version = "zdA7bseh"
|
||||
13
mods/macaws-trapdoors.pw.toml
Normal file
13
mods/macaws-trapdoors.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Trapdoors"
|
||||
filename = "mcw-trapdoors-1.1.4-mc1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/n2fvCDlM/versions/6FBIUQpW/mcw-trapdoors-1.1.4-mc1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "82da8d3cd3c34bfd02a7d71f1bbbf803d7e54d3486a7ec7428218f54ee6b817e9f8e5cab77714666d17dfcab0bca89de4e244aa51c760d3307bf856a3a760642"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "n2fvCDlM"
|
||||
version = "6FBIUQpW"
|
||||
13
mods/macaws-windows.pw.toml
Normal file
13
mods/macaws-windows.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Macaw's Windows"
|
||||
filename = "mcw-windows-2.4.0-1.20.1fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/C7I0BCni/versions/dyF0942x/mcw-windows-2.4.0-1.20.1fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ed01451467ffc7ae87896679d47dc395816f4b4331c392b13aa007124f5225605adffd4ce556480fbab4f02e311d52222294b8916e54b567641f5e570fa1ffd2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "C7I0BCni"
|
||||
version = "dyF0942x"
|
||||
13
mods/memoryleakfix.pw.toml
Normal file
13
mods/memoryleakfix.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "a7bf7429340d076f4b30602bc714280c3f5cb8e814e76e89296c8155e3355b33304a148e9218378a3383127e95b7ba47402506c687f1d58609704fe8cc60ab93"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NRjRiSSD"
|
||||
version = "5xvCCRjJ"
|
||||
13
mods/modernfix.pw.toml
Normal file
13
mods/modernfix.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "ModernFix"
|
||||
filename = "modernfix-fabric-5.24.1+mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/QtunKFLa/modernfix-fabric-5.24.1%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fca2be3f52dec20cd55a9fb7a1ad0d6daaca88615e95620095d5b4fa4ceb4e7e36c9ae59a5f55b5f2f23aad4d8e84307d880487c5cfae5d54c0fd2f84e908b76"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nmDcB62a"
|
||||
version = "QtunKFLa"
|
||||
13
mods/modmenu.pw.toml
Normal file
13
mods/modmenu.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "9a7837e04bb34376611b207a3b20e5fe1c82a4822b42929d5b410809ec4b88ff3cac8821c4568f880775bafa3c079dfc7800f8471356a4046248b12607e855eb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "lEkperf6"
|
||||
13
mods/mouse-tweaks.pw.toml
Normal file
13
mods/mouse-tweaks.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Mouse Tweaks"
|
||||
filename = "MouseTweaks-fabric-mc1.20-2.26.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/mjuG4AYd/MouseTweaks-fabric-mc1.20-2.26.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d0faf200dda358efddad2d2809f646023f4dd06254572369e07f3bf33cb6941f0fcdb02db4675b30b4f3bd542cbf6196e135680ba91a2b74c2b071f34978e2d5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aC3cM3Vq"
|
||||
version = "mjuG4AYd"
|
||||
13
mods/mouse-wheelie.pw.toml
Normal file
13
mods/mouse-wheelie.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Mouse Wheelie"
|
||||
filename = "mousewheelie-1.13.0+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u5Ic2U1u/versions/wPtDzPBH/mousewheelie-1.13.0%2Bmc1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1197bde58a580f3c28b27f639d23c83eccc06481ecd51ee9f83c9f6b34f080f16b4b33d9dd829e183a7c8aac83efd922edc6241fcca5770fb93328715e1d78cd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u5Ic2U1u"
|
||||
version = "wPtDzPBH"
|
||||
13
mods/netherportalfix.pw.toml
Normal file
13
mods/netherportalfix.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "NetherPortalFix"
|
||||
filename = "netherportalfix-fabric-1.20-13.0.2.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nPZr02ET/versions/SL5baWpT/netherportalfix-fabric-1.20-13.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "21b3ed4ad098eaaff2cf13248bb9defc285c1c7e90314d2aada9aa7a4276b6f756d63dd633774fdb2920976f66d7902ad9073526ed278677a62a6fc42b340dd8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nPZr02ET"
|
||||
version = "SL5baWpT"
|
||||
13
mods/no-chat-reports.pw.toml
Normal file
13
mods/no-chat-reports.pw.toml
Normal file
|
|
@ -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 = "sha512"
|
||||
hash = "3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qQyHxfxd"
|
||||
version = "HeZZR2kF"
|
||||
13
mods/nullscape.pw.toml
Normal file
13
mods/nullscape.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Nullscape"
|
||||
filename = "Nullscape_1.20.x_v1.2.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LPjGiSO4/versions/QsRKydVt/Nullscape_1.20.x_v1.2.8.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fcd11f20ab1b374a219e915156c8439f2d6fcabb060406f4d0a11392f945228e1c6e375f8e9e3048ac01c3a351c88bde4327e1f958bfd5ef4ab81c178f9e35da"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LPjGiSO4"
|
||||
version = "QsRKydVt"
|
||||
13
mods/plasmo-voice.pw.toml
Normal file
13
mods/plasmo-voice.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Plasmo Voice"
|
||||
filename = "plasmovoice-fabric-1.20.1-2.1.5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1bZhdhsH/versions/RTD06Dql/plasmovoice-fabric-1.20.1-2.1.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "813c5c3325edcb119f4d3ba6f9134e89ece9b6f6805ae2ade4e60a7e6154074fb91787de14fe06d7d555ee6a23cc8f9effbf074f3bf60e17345138769743bf55"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1bZhdhsH"
|
||||
version = "RTD06Dql"
|
||||
13
mods/polymorph.pw.toml
Normal file
13
mods/polymorph.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Polymorph"
|
||||
filename = "polymorph-fabric-0.49.10+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/tagwiZkJ/versions/oARBy1is/polymorph-fabric-0.49.10%2B1.20.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2a4ab72bf6a925445fe4a8513720e26ffd47bda3e14ec5977809b533101e1a385d5a9c73bab3b2d4c6a41421f13eeeb665dab0440c6dfd16ba1a2464c46dfbbe"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "tagwiZkJ"
|
||||
version = "oARBy1is"
|
||||
13
mods/powah.pw.toml
Normal file
13
mods/powah.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Powah!"
|
||||
filename = "Powah-5.0.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/KZO4S4DO/versions/EWDexyqc/Powah-5.0.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "844d3a5c7502a150046531f9b2bb4327bbb02f8479db00542fc5933f5ae5450ecd45bc8779cac39c430233db6e47d7534cca373c8ea6c9d3349b01922694cbc6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "KZO4S4DO"
|
||||
version = "EWDexyqc"
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue