mirror of
https://gitlab.com/Merith-TK/vanillia-modpack.git
synced 2024-11-22 14:19:31 +00:00
move to packwiz rather than my janky updater
This commit is contained in:
parent
f274333622
commit
0f4e29714f
116 changed files with 1046 additions and 175 deletions
43
.gitignore
vendored
43
.gitignore
vendored
|
@ -1,45 +1,18 @@
|
|||
# block files that are not needed
|
||||
.minecraft/.bobby
|
||||
.minecraft/.fabric
|
||||
.minecraft/.mixin.out
|
||||
.minecraft/.replay
|
||||
.minecraft/config
|
||||
## Prevent Vanillia Minecraft folders from being tracked
|
||||
.minecraft/coremods
|
||||
.minecraft/crash-reports
|
||||
.minecraft/dashloader-cache
|
||||
.minecraft/essential
|
||||
.minecraft/figura
|
||||
.minecraft/logs
|
||||
.minecraft/ModTranslations
|
||||
.minecraft/not-enough-crashes
|
||||
.minecraft/patched_shaders
|
||||
.minecraft/replay_recordings
|
||||
.minecraft/resourcepacks
|
||||
.minecraft/saves
|
||||
.minecraft/screenshots
|
||||
.minecraft/server-resource-packs
|
||||
.minecraft/shaderpacks
|
||||
.minecraft/texturepacks
|
||||
.minecraft/XaeroW*
|
||||
.minecraft/realms_persistence.json
|
||||
.minecraft/usercache.json
|
||||
.minecraft/whitelist.json
|
||||
.minecraft/options.txt
|
||||
.minecraft/options.amecsapi.txt
|
||||
.minecraft/servers.dat
|
||||
.minecraft/servers.dat_old
|
||||
|
||||
## Ignore Modpack Updater Script loose files
|
||||
.technic
|
||||
*.zip
|
||||
|
||||
!.minecraft/config/yosbr/*
|
||||
!.minecraft/config/dashloader.json
|
||||
fabrilous-updater-*.jar
|
||||
*.disabled
|
||||
|
||||
update-pack.data/.*
|
||||
update-pack.data/*/
|
||||
update-pack.data/update.sh
|
||||
update-pack.data/busybox.exe
|
||||
|
||||
instance.cfg
|
||||
.packignore
|
||||
natives
|
||||
## Add your modded folders/files to ignore here
|
||||
.minecraft/mods/
|
||||
.minecraft/packwiz-installer.jar
|
||||
.minecraft/packwiz.json
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.minecraft/packwiz-installer-bootstrap.jar
Normal file
BIN
.minecraft/packwiz-installer-bootstrap.jar
Normal file
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
61
Makefile
61
Makefile
|
@ -1,36 +1,41 @@
|
|||
default:
|
||||
@echo "No Default make command configured"
|
||||
@echo "Please use either"
|
||||
@echo " - make curseforge"
|
||||
@echo " - make multimc"
|
||||
@echo " - makes a multimc compatible pack"
|
||||
@echo " - make technic"
|
||||
@echo " - makes a technic compatible pack"
|
||||
@echo " - make all"
|
||||
@echo " - makes both of the previous packs"
|
||||
@echo ""
|
||||
|
||||
multimc: clean
|
||||
7z d ../vanillia-multimc-1.18.zip ./* -r
|
||||
7z d ../vanillia-multimc-1.18.zip ./.* -r
|
||||
7z a ../vanillia-multimc-1.18.zip ./* -r
|
||||
7z a ../vanillia-multimc-1.18.zip ./.git -r
|
||||
7z a ../vanillia-multimc-1.18.zip ./.minecraft -r
|
||||
|
||||
technic: clean
|
||||
cp vanillia.icon.png icon.png
|
||||
7z d ../vanillia-technic-1.18.zip ./* -r
|
||||
7z a ../vanillia-technic-1.18.zip ./.minecraft/* -r
|
||||
7z a ../vanillia-technic-1.18.zip ./icon.png
|
||||
rm icon.png
|
||||
|
||||
clean:
|
||||
-rm -rf .multimc
|
||||
-rm -rf .minecraft/icon.png
|
||||
-rm -rf builds
|
||||
-rm -rf update-pack.data/temp
|
||||
-rm -rf update-pack.data/bin
|
||||
-rm -rf update-pack.data/busybox.exe
|
||||
-rm -rf ../vanillia-*.1.18.zip
|
||||
-git gc --aggressive --prune
|
||||
@echo "Curseforge will make a curseforge compatible zip"
|
||||
@echo "Multimc will make a multimc zip file which contains"
|
||||
@echo " the packwiz updater"
|
||||
@echo ""
|
||||
@echo "Technic will make a technic pack zip"
|
||||
@echo ""
|
||||
@echo "All will make all packs it can"
|
||||
@echo ""
|
||||
|
||||
all: multimc technic
|
||||
curseforge:
|
||||
@echo "Making Curseforge pack"
|
||||
@-mkdir ../vanillia-curseforge
|
||||
packwiz curseforge export --mods-folder packwiz-data/mods/ --pack-file packwiz-data/pack.toml
|
||||
mv *.zip ../vanillia-curseforge/
|
||||
|
||||
multimc:
|
||||
@echo "Making MultiMC pack"
|
||||
7z d ../vanillia-mulitmc.zip ./* -r
|
||||
7z d ../vanillia-mulitmc.zip ./.* -r
|
||||
7z a ../vanillia-mulitmc.zip ./* -r
|
||||
7z a ../vanillia-mulitmc.zip ./.minecraft -r
|
||||
|
||||
technic:
|
||||
@echo "Making Technic pack"
|
||||
-rm -rf .technic
|
||||
-cp -r .minecraft .technic
|
||||
mv .technic/vanillia.icon.png .technic/icon.png
|
||||
cd .technic && java -jar packwiz-installer-bootstrap.jar https://gitlab.com/Merith-TK/vanillia-modpack/-/raw/main/packwiz-data/pack.toml && cd ..
|
||||
-rm -rf .technic/packwiz*
|
||||
7z d ../vanillia-technic.zip ./* -r
|
||||
7z a ../vanillia-technic.zip ./.technic/* -r
|
||||
|
||||
all: curseforge multimc technic
|
62
README.md
62
README.md
|
@ -3,29 +3,24 @@ Does not add any actual content to the game and is compliant with most server's
|
|||
[Technic Pack](https://www.technicpack.net/modpack/vanillia-118.1904742)
|
||||
|
||||
## Mods Included
|
||||
|
||||
* [AntiGhost](https://www.modrinth.com/mod/antighost)
|
||||
* Adds a keybind to re-request block information around you. helpful when there is a "Ghost Block" in your way,
|
||||
* [Architechury](https://www.curseforge.com/minecraft/mc-mods/architectury-fabric)
|
||||
* API used for mods to make building for forge/fabric easier
|
||||
* [BadSTDOut](https://modrinth.com/mod/badstdout)
|
||||
* Makes the logs state which mod is using a `system.out` call,
|
||||
* [Bobby](https://modrinth.com/mod/bobby)
|
||||
* Cache's chunks locally so that you can have a Render Distance further than what a server would allow
|
||||
* [Cloth Config](https://www.curseforge.com/minecraft/mc-mods/cloth-config)
|
||||
* Config API used by many mods
|
||||
* [Clumps](https://www.curseforge.com/minecraft/mc-mods/clumps)
|
||||
* Clumps xp orbs together
|
||||
* [Entity Culling](https://github.com/tr7zw/EntityCulling)
|
||||
* Unrenders entities that you cannot see
|
||||
* [Essentials](https://essential.gg)
|
||||
* The essential multiplayer mod for Minecraft Java.
|
||||
* Invite friends to your singleplayer worlds.
|
||||
* Customize your Character with cosmetics
|
||||
* Connect with friends
|
||||
* Friends system
|
||||
* Private Messaging system
|
||||
* Featured Server Browser
|
||||
* [Fabric API](https://modrinth.com/mod/fabric-api)
|
||||
* Needed Library for most of the mods here
|
||||
* [Fabrishot](https://modrinth.com/mod/fabrishot)
|
||||
* Obsurdly Large Screenshots, Because why the hell not
|
||||
* [Ferrite Core](https://modrinth.com/mod/ferrite-core)
|
||||
* RAM Usage Reducer
|
||||
* [Figura](https://modrinth.com/mod/figura)
|
||||
* custom 3D player models with potential for HD Skins.
|
||||
* [Inspecio](https://modrinth.com/mod/inspecio)
|
||||
|
@ -35,9 +30,6 @@ Does not add any actual content to the game and is compliant with most server's
|
|||
* Performs better than optifine
|
||||
* Doesnt crash
|
||||
* Compatible with most popular optifine shaders
|
||||
* BETA DOWNLOAD
|
||||
* [Iris Discord](https://discord.gg/jQJnav2jPu)
|
||||
* [Public Beta Release](https://discord.com/channels/774352792659820594/883067831485366304/931403400183160872) from the discord
|
||||
* [Lambda Better Grass](https://modrinth.com/mod/lambdabettergrass)
|
||||
* makes grass and snow look nicer
|
||||
* [Lamb Dynamic Lights](https://www.modrinth.com/mod/lambdynamiclights)
|
||||
|
@ -49,8 +41,15 @@ Does not add any actual content to the game and is compliant with most server's
|
|||
* Custom (***free***) Capes for Minecraft
|
||||
* [ModMenu](https://modrinth.com/mod/modmenu)
|
||||
* Its the Mod Menu, kinda needed
|
||||
* [OpenAuth](https://github.com/RaphiMC/OpenAuthMod)
|
||||
* Allows using proxies to connect to servers,
|
||||
* [Paxi](https://www.curseforge.com/minecraft/mc-mods/paxi-fabric)
|
||||
* Automatic Resource and Datapacks
|
||||
* Included datapacks
|
||||
* [Incendium](https://www.planetminecraft.com/data-pack/incendium-nether-expansion/)
|
||||
* Nether Generation Overhaul by "Starmute"
|
||||
* [Nullscape](https://www.planetminecraft.com/data-pack/nullscape/)
|
||||
* End Generation Overhaul by "Starmute"
|
||||
* [Terralith](https://www.planetminecraft.com/data-pack/terralith-overworld-evolved-100-biomes-caves-and-more/)
|
||||
* Overworld Generation Overhaul by "Starmute"
|
||||
* [Plasmo Voice](https://modrinth.com/mod/plasmo-voice)
|
||||
* Proximity voicechat for servers that support it
|
||||
* ***SERVER ADMINS: THERE IS A PLUGIN FOR SERVER SUPPORT!***
|
||||
|
@ -64,30 +63,27 @@ Does not add any actual content to the game and is compliant with most server's
|
|||
* Lighting Engine OVERHAUL
|
||||
* [ViaFabric](https://www.curseforge.com/minecraft/mc-mods/viafabric)
|
||||
* Allows joining older minecraft servers
|
||||
* [Wildfires Gender Mod](https://modrinth.com/mod/wildfire-female-gender-mod)
|
||||
* Adds configurable breasts for players... thats it
|
||||
* [Your Options Shall Be Respected](https://www.curseforge.com/minecraft/mc-mods/yosbr)
|
||||
* Lets me push custom premade configs to the modpack without overriding your own
|
||||
|
||||
## Missing from 1.18.1
|
||||
* [Armor Visibility](https://modrinth.com/mod/armor-visibility)
|
||||
* Toggle Hiding armor clientside
|
||||
* [BadSTDOut](https://modrinth.com/mod/badstdout)
|
||||
* Makes the logs state which mod is using a `system.out` call,
|
||||
* [Charmonium](https://modrinth.com/mod/charmonium)
|
||||
* Ambient Sound Overhaul,
|
||||
* [Fabrishot](https://modrinth.com/mod/fabrishot)
|
||||
* Obsurdly Large Screenshots, Because why the hell not
|
||||
* [Ferrite Core](https://modrinth.com/mod/ferrite-core)
|
||||
* RAM Usage Reducer
|
||||
* [Entity Culling](https://github.com/tr7zw/EntityCulling)
|
||||
* Unrenders entities that you cannot see
|
||||
* [Essentials](https://essential.gg)
|
||||
* The essential multiplayer mod for Minecraft Java.
|
||||
* Invite friends to your singleplayer worlds.
|
||||
* Customize your Character with cosmetics
|
||||
* Connect with friends
|
||||
* Friends system
|
||||
* Private Messaging system
|
||||
* Featured Server Browser
|
||||
* [Hydrogen](https://modrinth.com/mod/hydrogen)
|
||||
* Lithium, but overkill.
|
||||
* [Paxi](https://www.curseforge.com/minecraft/mc-mods/paxi-fabric)
|
||||
* Automatic Resource and Datapacks
|
||||
* Included datapacks
|
||||
* [Incendium](https://www.planetminecraft.com/data-pack/incendium-nether-expansion/)
|
||||
* Nether Generation Overhaul by "Starmute"
|
||||
* [Nullscape](https://www.planetminecraft.com/data-pack/nullscape/)
|
||||
* End Generation Overhaul by "Starmute"
|
||||
* [Terralith](https://www.planetminecraft.com/data-pack/terralith-overworld-evolved-100-biomes-caves-and-more/)
|
||||
* Overworld Generation Overhaul by "Starmute"
|
||||
* [OpenAuth](https://github.com/RaphiMC/OpenAuthMod)
|
||||
* Allows using proxies to connect to servers,
|
||||
* [Wildfires Gender Mod](https://modrinth.com/mod/female-gender)
|
||||
* Adds configurable breasts for players... thats it
|
||||
|
|
31
instance.cfg
31
instance.cfg
|
@ -1,30 +1,5 @@
|
|||
ForgeVersion=
|
||||
InstanceType=OneSix
|
||||
IntendedVersion=
|
||||
JavaArchitecture=64
|
||||
JavaPath=javaw
|
||||
JavaTimestamp=1631685986000
|
||||
JavaVersion=17
|
||||
JoinServerOnLaunch=false
|
||||
LWJGLVersion=
|
||||
LiteloaderVersion=
|
||||
LogPrePostOutput=true
|
||||
MCLaunchMethod=LauncherPart
|
||||
iconKey=vanillia.icon
|
||||
name=Minecraft Vanillia 1.18.1
|
||||
OverrideCommands=true
|
||||
OverrideConsole=false
|
||||
OverrideGameTime=false
|
||||
OverrideJavaArgs=false
|
||||
OverrideJavaLocation=true
|
||||
OverrideMCLaunchMethod=false
|
||||
OverrideMemory=false
|
||||
OverrideNativeWorkarounds=false
|
||||
OverrideWindow=false
|
||||
PostExitCommand=
|
||||
PreLaunchCommand=$INST_DIR/update-pack.exe
|
||||
WrapperCommand=
|
||||
iconKey=vanillia
|
||||
lastLaunchTime=
|
||||
lastTimePlayed=
|
||||
name=Vanillia Pack 1.18
|
||||
notes=
|
||||
totalTimePlayed=
|
||||
PreLaunchCommand=$INST_JAVA -jar packwiz-installer-bootstrap.jar https://gitlab.com/Merith-TK/modpack-template/-/raw/packwiz/packwiz-data/pack.toml
|
|
@ -43,9 +43,9 @@
|
|||
"uid": "net.fabricmc.intermediary"
|
||||
}
|
||||
],
|
||||
"cachedVersion": "0.12.12",
|
||||
"cachedVersion": "0.13.3",
|
||||
"uid": "net.fabricmc.fabric-loader",
|
||||
"version": "0.12.12"
|
||||
"version": "0.13.3"
|
||||
}
|
||||
],
|
||||
"formatVersion": 1
|
||||
|
|
266
packwiz-data/index.toml
Normal file
266
packwiz-data/index.toml
Normal file
|
@ -0,0 +1,266 @@
|
|||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "mods/antighost.toml"
|
||||
hash = "db664fc5a21af6c6eb97732de504de941e269f9ae7d62a62cf3bd709d0aa4280"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-fabric.toml"
|
||||
hash = "c74fa07245cbea474ca235ab3cbbdb283c80b6e06347d0142e0a76b43fe8bb35"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/badstdout.toml"
|
||||
hash = "893c68376d94e2385584cc798e205eecf8de15d79e352bdebc5bc487a2200c19"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterf3.toml"
|
||||
hash = "34b2f552e2bdfe32b673e883be2fb6af57d7302cb77c3131dc6358993183934c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blockmeterfabric.toml"
|
||||
hash = "4fff64e863e2cf1d244bc3dafda64dd3ba4624c1cccac67cd779dd710dee7df1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blockmixer-fabric.toml"
|
||||
hash = "5b58a29c692d41851e2f419bfa301507eb8cc63fc6d838a6004c8f3617ebdfec"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blur-fabric.toml"
|
||||
hash = "f781e21b5f5ac35b6b9be2a8219dcce459ad7564581c2f9a1c83059b48c82efc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bobby.toml"
|
||||
hash = "680e66f076845b960c9cdd08e845dec21e67638465ea0f7b7427a1141cea8383"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/c2me-fabric.toml"
|
||||
hash = "73d8f9c1ec2ca5941fb5b5aa5846152cf904f8032e36011b39a2d93c629f3706"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chunky.toml"
|
||||
hash = "28bb1d5f48456c9c78599e37c8c52e2a87fd30ef90bb7fcb1db24a6abd40d697"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cit-resewn.toml"
|
||||
hash = "f290814b5e5387eb1963c4992401c6a694a219d45f548dbd92cfb2a1920bcca9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/clear-despawn-fabric.toml"
|
||||
hash = "7239b7e23566fdf7f141d39df376d7e0529439b407f7950af4064131805c6fcf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cloth-config.toml"
|
||||
hash = "010bc8378b59257708190728f5aee476d7415f47fc26567952f294eda6b0cd25"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/clumps.toml"
|
||||
hash = "aadd4bccd2e9986f318f78f827fa5d31863c7093f6a6a8c24335213b55d818a5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/continuity.toml"
|
||||
hash = "4a45496d6a0cd4cd445e300791af4473587864d20024d8c1bd032e763c36b698"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dark-loading-screen.toml"
|
||||
hash = "4754813e43ba908c01de0a8deccdd427367cbaa0502e8ebeb633049c6361c3f3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.toml"
|
||||
hash = "ef022f83989bc40467264755f5864f6a2ab42a02edda3b9a400c0f4ad55d0896"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.toml"
|
||||
hash = "56371e0a7b084daf096af668da39a182ad5f9261aa339138f5a53bbece9be8d0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabrishot.toml"
|
||||
hash = "14c5788025b1a75cb738143110ec69fa0f9775e9e38e8002399a7efa095f512f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ferrite-core.toml"
|
||||
hash = "32f86897ed44b041a79f0f90246ac35b400a427f7c206140007b6a9939a225b5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/figura.toml"
|
||||
hash = "1b11506b789755ca419919dc061a6ffa266dfbefed1436f4bef3480f8d0f9fe7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/first-person-model.toml"
|
||||
hash = "3edd92dbe8e018947886d9ea2a0ab5c72c771352b0d58ad385382104b49ac6b7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/grid.toml"
|
||||
hash = "6c1cf2404968b31dd3edcf5756d3b465c52f1349965bac40b2c2d8da383e2334"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/hudtweaks.toml"
|
||||
hash = "fdc6219563d44f3e8eb7c353d64ccd094fe6ee9e258b2aa51332b4dd5d5e733e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/illuminations.toml"
|
||||
hash = "ec88c0c0f7897bbb3058b24c0ee12d06c43a64d0cefa347743d9b0264cbce5d6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/indium.toml"
|
||||
hash = "239e9aa06f7999cde9a8ebdfcaab704ed448f05ac923edaae38ee112fbfdaef1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inspecio.toml"
|
||||
hash = "d37a38d5df73c111a8947e8263f14a8949e5d506ab2f8dd24b8f9db94bd46ae5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inventory-hud-forge.toml"
|
||||
hash = "9c36ffd3a5c2636db0b7f5cd5098a6b9ee37c871ff8f1f390a7dff4ad856561b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.toml"
|
||||
hash = "f5f2860059ab91478fa3be83da7afd4be60f7fc3462ea2714240a8363c12ec5d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdabettergrass.toml"
|
||||
hash = "d0cf8f6847a6c3f18010788f1068b98abb0ebca06536d2f482dc51d834a31308"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdynamiclights.toml"
|
||||
hash = "158c40f09b2ed4fe14f5f2925751796fe11f6baee7e1ac7f35931ad831631a3d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/light-overlay.toml"
|
||||
hash = "990781b46d6aaf316fa806319cdf46e67b77ef025d3b7e3ce356b9496cf67e8f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.toml"
|
||||
hash = "4e0d26b8af24dbc7220b2708ab13ad9cf6646442e3ebccc6ceebdef152345656"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/minecraftcapes-mod.toml"
|
||||
hash = "355c1dc0735c4cf578f63b12a1571d7c0ef104eb2d5caf2dc974080335303e37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.toml"
|
||||
hash = "08cf57c2cae5fff7f0b8d043c45df07893ea01734a6486f9ca94caae741ea351"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-wheelie.toml"
|
||||
hash = "6ecde5f53dc3c8f71d7afa9a2556791abef490a89e47a58cb619da51e26de772"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/nimble-fabric.toml"
|
||||
hash = "c4a0a5be60484cc509f0727c6268efcda10a12176d123448591328267de09490"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/not-enough-animations.toml"
|
||||
hash = "9869599fe3a4e6fae4c89cd21b31b48e54dc91e61be9d8c93a2a38618da0a19d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/notenoughcrashes.toml"
|
||||
hash = "ddce3c46e2866f3ed6521b969783c0d3471c12c168102f4f449d90ba68cd5b50"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ok-zoomer.toml"
|
||||
hash = "2596e24c9628deed17d06612380d11a9e0d861476c6b3ceff1604017205b7063"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/paxi-fabric.toml"
|
||||
hash = "c155118788cbf3f77ee810727026a6d924259199446684b9e91aad66c42a11a9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/perspective-mod-redux.toml"
|
||||
hash = "c65714d41e881c9149122eb89435ea85fde6ebd01ad2e63a1cf9ffad7f1f3e83"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/plasmo-voice.toml"
|
||||
hash = "57a9ada9e8ce3c8e7ad5329bf9fb23e9e9b67b8218ded7637f6858a6a6b98764"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/roughly-enough-items.toml"
|
||||
hash = "5e426b900ceb587441d2f5135aaaf433761b376d476e8c75ab497fc77328b3ee"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.toml"
|
||||
hash = "f0ab553dfbd753da7774768a0589771b9bf1f4157d3735315fd6aca5c0c16322"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.toml"
|
||||
hash = "f291cfa3dc4468318494015a4d695f66a22356355aa0122b2fbb7c1407ffdde0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/starlight.toml"
|
||||
hash = "86eb288d2bb2a2a49e64b1e7db4ca6a5f486b30a3566feaeeba1aa0a618ae255"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/stendhal.toml"
|
||||
hash = "63af6542c73c8110f7c75590472bee0d4b0c19591e06dcc3c8b8ea888dde9a81"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/viafabric.toml"
|
||||
hash = "ec80192a9e3e5b61b0a30fcf867ddca8600b31f53176f365488fd28d45071436"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-minimap-fair-play-edition.toml"
|
||||
hash = "0bbfbd28914bdf4f1c89424957f9e14d6cd862f9daad53dae4562d9795208ee2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-world-map.toml"
|
||||
hash = "3387843633739f2242e29e3186f3387be92bcf63674574955caa96e94bd308fe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yosbr.toml"
|
||||
hash = "527e21c9bc55b0d1db9016a2fec4ff2dee2a93c53edb8c1363d2d2ee7730afd0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yungs-api-fabric.toml"
|
||||
hash = "ce05f69b0c02eeda34b3a31c780343c95fca2bcb77a03c3cb01dea5176022f12"
|
||||
metafile = true
|
13
packwiz-data/mods/antighost.toml
Normal file
13
packwiz-data/mods/antighost.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "AntiGhost"
|
||||
filename = "antighost-1.18-fabric0.43.1-1.1.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Jw3Wx1KR/versions/1.18-fabric0.43.1-1.1.4/antighost-1.18-fabric0.43.1-1.1.4.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "619e250c133106bacc3e3b560839bd4b324dfda8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Jw3Wx1KR"
|
||||
version = "d5nXweHE"
|
13
packwiz-data/mods/architectury-fabric.toml
Normal file
13
packwiz-data/mods/architectury-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Architectury API (Fabric)"
|
||||
filename = "architectury-3.7.22.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3652/981/architectury-3.7.22.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "e1b55f81c989ec72d1c74a54b4bc3e47c6c93b34"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3652981
|
||||
project-id = 419697
|
13
packwiz-data/mods/badstdout.toml
Normal file
13
packwiz-data/mods/badstdout.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "BadStdOut"
|
||||
filename = "badstdout-1.1.1-1.18.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9Y8sMRVG/versions/1.1.1-1.18/badstdout-1.1.1-1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "d2867a49691ea3c395596ab7f16744b059b9c13a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9Y8sMRVG"
|
||||
version = "V81dH2uu"
|
13
packwiz-data/mods/betterf3.toml
Normal file
13
packwiz-data/mods/betterf3.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "BetterF3"
|
||||
filename = "BetterF3-1.2.2-Forge-1.18.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/1.2.2/BetterF3-1.2.2-Forge-1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "f2c46e89b6f9c5a5751e98d4868b1c36d53f9d8f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8shC1gFX"
|
||||
version = "yHMun8ED"
|
13
packwiz-data/mods/blockmeterfabric.toml
Normal file
13
packwiz-data/mods/blockmeterfabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "BlockMeterFabric"
|
||||
filename = "blockmeter-1.6-fabric_1_18.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3543/656/blockmeter-1.6-fabric_1_18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "261544deeedc70ed503b53d04ae6f86bb6c51834"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3543656
|
||||
project-id = 369343
|
13
packwiz-data/mods/blockmixer-fabric.toml
Normal file
13
packwiz-data/mods/blockmixer-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "BlockMixer"
|
||||
filename = "blockmixer-1.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3606/80/blockmixer-1.0.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "806c38312538333f774500a721cf2c9dc74fbe48"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3606080
|
||||
project-id = 566143
|
13
packwiz-data/mods/blur-fabric.toml
Normal file
13
packwiz-data/mods/blur-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Blur (Fabric)"
|
||||
filename = "blur-2.4.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/2.4.1/blur-2.4.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4e9eb6718bf1aae922f7abd6fc93be1db49e5a4c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NK39zBp2"
|
||||
version = "xetUzR7z"
|
13
packwiz-data/mods/bobby.toml
Normal file
13
packwiz-data/mods/bobby.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Bobby"
|
||||
filename = "bobby-3.1.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M08ruV16/versions/3.1.0/bobby-3.1.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "380e4a7aa7c746db8bd908991823c9f38b5569a4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M08ruV16"
|
||||
version = "raLIOIgw"
|
13
packwiz-data/mods/c2me-fabric.toml
Normal file
13
packwiz-data/mods/c2me-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.18.1-0.2.0+alpha.6.55-all.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3654/495/c2me-fabric-mc1.18.1-0.2.0+alpha.6.55-all.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "dcc477b1b2f92d5ccad62435657aa985ad8bd8ce"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3654495
|
||||
project-id = 533097
|
13
packwiz-data/mods/chunky.toml
Normal file
13
packwiz-data/mods/chunky.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Chunky Pregenerator"
|
||||
filename = "Chunky-1.2.164.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fALzjamp/versions/1.2.164/Chunky-1.2.164.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "c936401a30394972b102d62a2553927aa79bd501"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fALzjamp"
|
||||
version = "JJMpSOeW"
|
13
packwiz-data/mods/cit-resewn.toml
Normal file
13
packwiz-data/mods/cit-resewn.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "CIT Resewn"
|
||||
filename = "CITResewn-0.9.1+1.18.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/otVJckYQ/versions/0.9.1+1.18.1/CITResewn-0.9.1+1.18.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "a320fbe1f0f6c1364c6afb224f993ba4252e6206"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "otVJckYQ"
|
||||
version = "PnxfNudU"
|
13
packwiz-data/mods/clear-despawn-fabric.toml
Normal file
13
packwiz-data/mods/clear-despawn-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Clear Despawn [Fabric]"
|
||||
filename = "ClearDespawn-fabric-1.18.1-1.1.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3615/727/ClearDespawn-fabric-1.18.1-1.1.6.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "6fa1a462f0fafbc8ea167a86d35eef5120747523"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3615727
|
||||
project-id = 308793
|
13
packwiz-data/mods/cloth-config.toml
Normal file
13
packwiz-data/mods/cloth-config.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Cloth Config API (Fabric)"
|
||||
filename = "cloth-config-6.2.57-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3641/132/cloth-config-6.2.57-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "c52ef239d9d3d3473312d3f57bd8e730155ee5a5"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3641132
|
||||
project-id = 319057
|
13
packwiz-data/mods/clumps.toml
Normal file
13
packwiz-data/mods/clumps.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Clumps"
|
||||
filename = "Clumps-fabric-1.18.1-8.0.0+5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3616/323/Clumps-fabric-1.18.1-8.0.0+5.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "d0b0974f63a1f9618657e8ef16dba7909ef2a13e"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3616323
|
||||
project-id = 256717
|
13
packwiz-data/mods/continuity.toml
Normal file
13
packwiz-data/mods/continuity.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Continuity"
|
||||
filename = "continuity-1.1.0+1.18.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1IjD5062/versions/1.1.0+1.18/continuity-1.1.0%2B1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "2bb59162457f3fbe90794c1a8cf3ca9e199e268e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1IjD5062"
|
||||
version = "sD3iTKbB"
|
13
packwiz-data/mods/dark-loading-screen.toml
Normal file
13
packwiz-data/mods/dark-loading-screen.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Dark Loading Screen"
|
||||
filename = "dark-loading-screen-1.6.11.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3470/993/dark-loading-screen-1.6.11.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4f93411b34bc03e6b6af00f70a6f45190aad9ba7"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3470993
|
||||
project-id = 365727
|
13
packwiz-data/mods/entityculling.toml
Normal file
13
packwiz-data/mods/entityculling.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Entity Culling Fabric/Forge"
|
||||
filename = "entityculling-fabric-mc1.18-1.5.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3642/143/entityculling-fabric-mc1.18-1.5.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "d1b944079c193a8d5adf9144cab3bd762bb12f5e"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3642143
|
||||
project-id = 448233
|
13
packwiz-data/mods/fabric-api.toml
Normal file
13
packwiz-data/mods/fabric-api.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Fabric API"
|
||||
filename = "fabric-api-0.46.4+1.18.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3634/318/fabric-api-0.46.4+1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "23859ea5555187d5f95441815929ab5b3b53f8fe"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3634318
|
||||
project-id = 306612
|
13
packwiz-data/mods/fabrishot.toml
Normal file
13
packwiz-data/mods/fabrishot.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Fabrishot"
|
||||
filename = "fabrishot-1.6.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/3qsfQtE9/versions/1.6.2/fabrishot-1.6.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "b3385f37c464a619637ab4dbb49382553b8bf8d3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "3qsfQtE9"
|
||||
version = "VxYrd9ad"
|
13
packwiz-data/mods/ferrite-core.toml
Normal file
13
packwiz-data/mods/ferrite-core.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "FerriteCore"
|
||||
filename = "ferritecore-4.1.2-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uXXizFIs/versions/4.1.2/ferritecore-4.1.2-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "11d973fe8601658fade9f9981f568efb4b8a5dce"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uXXizFIs"
|
||||
version = "FMdIAsIi"
|
13
packwiz-data/mods/figura.toml
Normal file
13
packwiz-data/mods/figura.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Figura"
|
||||
filename = "figura-0.0.7-1.18.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/B3csO4KD/versions/0.0.7-1.18/figura-0.0.7-1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "0295a6cb0413e64f2dd6006f78e1558d763105d7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "B3csO4KD"
|
||||
version = "kFt12mgx"
|
13
packwiz-data/mods/first-person-model.toml
Normal file
13
packwiz-data/mods/first-person-model.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "First-person Model (Forge/Fabric)"
|
||||
filename = "firstperson-fabric-2.1.0-mc1.18-pre1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3523/461/firstperson-fabric-2.1.0-mc1.18-pre1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "447b3fda6f725b6f6a983a1d827a9b1f1b6278ba"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3523461
|
||||
project-id = 333287
|
13
packwiz-data/mods/grid.toml
Normal file
13
packwiz-data/mods/grid.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Grid"
|
||||
filename = "grid-1.18-fabric0.43.1-1.6.6.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ebxDDOKt/versions/1.18-fabric0.43.1-1.6.6/grid-1.18-fabric0.43.1-1.6.6.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "362625e67c1cd6618b4cf60dc7fc1baaa33ee2fb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ebxDDOKt"
|
||||
version = "CALmxE1g"
|
13
packwiz-data/mods/hudtweaks.toml
Normal file
13
packwiz-data/mods/hudtweaks.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "HUDTweaks"
|
||||
filename = "HUDTweaks-1.2.3-beta.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ks4IAiYz/versions/1.2.3/HUDTweaks-1.2.3-beta.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "eac16dfee937a61ff91110e76ee9d1730fb2cadd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ks4IAiYz"
|
||||
version = "dTQq7cui"
|
13
packwiz-data/mods/illuminations.toml
Normal file
13
packwiz-data/mods/illuminations.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Illuminations 🔥"
|
||||
filename = "illuminations-1.10.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3542/673/illuminations-1.10.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "013e14f861c7c996b5a0bf8dbdcbbe45da7f2de1"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3542673
|
||||
project-id = 292908
|
13
packwiz-data/mods/indium.toml
Normal file
13
packwiz-data/mods/indium.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Indium"
|
||||
filename = "indium-1.0.2-alpha2+mc1.18.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/1.0.2-alpha2+mc1.18.1/indium-1.0.2-alpha2+mc1.18.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "111912f57b1edd769b19c24419390db0652fd0c6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Orvt0mRa"
|
||||
version = "CVUGSVU0"
|
13
packwiz-data/mods/inspecio.toml
Normal file
13
packwiz-data/mods/inspecio.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Inspecio"
|
||||
filename = "inspecio-1.2.1+1.18.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/a93H3mKU/versions/1.2.1+1.18/inspecio-1.2.1+1.18.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "164d916ffa4576ae6e3b2a45b2d089e3dea0d5a8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "a93H3mKU"
|
||||
version = "KOy3RLbg"
|
13
packwiz-data/mods/inventory-hud-forge.toml
Normal file
13
packwiz-data/mods/inventory-hud-forge.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Inventory HUD+"
|
||||
filename = "InventoryHUD-fabric-%5B1.18%5D-3.4.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3545/928/InventoryHUD-fabric-%5B1.18%5D%20-3.4.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "86b117c3c6978013468adbeb3f74e98328febda1"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3545928
|
||||
project-id = 357540
|
13
packwiz-data/mods/iris.toml
Normal file
13
packwiz-data/mods/iris.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Iris Shaders"
|
||||
filename = "iris-mc1.18.1-1.2.0-pre.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/1.18.x/v1.2.0/iris-mc1.18.1-1.2.0-pre.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "94c66f904514e1a7e0ad106542a693e09b603044"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "I6p5WO3q"
|
13
packwiz-data/mods/lambdabettergrass.toml
Normal file
13
packwiz-data/mods/lambdabettergrass.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "LambdaBetterGrass"
|
||||
filename = "lambdabettergrass-1.2.2+1.17.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/2Uev7LdA/versions/1.2.2+1.17/lambdabettergrass-1.2.2+1.17.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "f24117c93e077beb27ea7588b5fea702db2c4581"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "2Uev7LdA"
|
||||
version = "A7w87AWG"
|
13
packwiz-data/mods/lambdynamiclights.toml
Normal file
13
packwiz-data/mods/lambdynamiclights.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-2.1.0+1.17.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/2.1.0+1.17/lambdynamiclights-2.1.0+1.17.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5f1f59c0ff6d54fc7ec1d42eb347a2f6987d234c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "zhBXhMhZ"
|
13
packwiz-data/mods/light-overlay.toml
Normal file
13
packwiz-data/mods/light-overlay.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Light Overlay (Rift/Forge/Fabric)"
|
||||
filename = "light-overlay-6.0.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3552/777/light-overlay-6.0.4.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "192a54af3094a9c7202519e2f01ff9bdc4f6ea1f"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3552777
|
||||
project-id = 325492
|
13
packwiz-data/mods/lithium.toml
Normal file
13
packwiz-data/mods/lithium.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Lithium"
|
||||
filename = "lithium-fabric-mc1.18.1-0.7.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/mc1.18.1-0.7.8/lithium-fabric-mc1.18.1-0.7.8.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8b7cd216fee54b9acc261005cae5acbc856b1933"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "Ehsd7YUl"
|
13
packwiz-data/mods/minecraftcapes-mod.toml
Normal file
13
packwiz-data/mods/minecraftcapes-mod.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "MinecraftCapes Mod"
|
||||
filename = "MinecraftCapes Fabric 1.18.1-12.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3574/423/MinecraftCapes%20Fabric%201.18.1-12.0.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "9a499f10b7751ad6fc58158c0335fe4d287e9c43"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3574423
|
||||
project-id = 359836
|
13
packwiz-data/mods/modmenu.toml
Normal file
13
packwiz-data/mods/modmenu.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Mod Menu"
|
||||
filename = "modmenu-3.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/3.0.1/modmenu-3.0.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5b7328a666250330b3dd6a7a5190783d618a0307"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "eueI9czw"
|
13
packwiz-data/mods/mouse-wheelie.toml
Normal file
13
packwiz-data/mods/mouse-wheelie.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Mouse Wheelie (Fabric)"
|
||||
filename = "mousewheelie-1.8.3+mc1.18-pre5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3657/755/mousewheelie-1.8.3+mc1.18-pre5.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "b64f90a7392aa45ffd5272bcae98a3f6ba3a8d63"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3657755
|
||||
project-id = 317514
|
13
packwiz-data/mods/nimble-fabric.toml
Normal file
13
packwiz-data/mods/nimble-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Nimble (Fabric)"
|
||||
filename = "Nimble-1.18.1-fabric-2.2.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3631/286/Nimble-1.18.1-fabric-2.2.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "f0dfc9c97a8988e7fb02718c38aad2b04d708be5"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3631286
|
||||
project-id = 545613
|
13
packwiz-data/mods/not-enough-animations.toml
Normal file
13
packwiz-data/mods/not-enough-animations.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Not Enough Animations"
|
||||
filename = "notenoughanimations-fabric-1.4.0-mc1.18-pre1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3523/463/notenoughanimations-fabric-1.4.0-mc1.18-pre1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "2603a34d3df8ca6578abc95250f03e2512a0972d"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3523463
|
||||
project-id = 433760
|
13
packwiz-data/mods/notenoughcrashes.toml
Normal file
13
packwiz-data/mods/notenoughcrashes.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Not Enough Crashes"
|
||||
filename = "notenoughcrashes-4.1.4+1.18.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yM94ont6/versions/4.1.4+1.18.1-fabric/notenoughcrashes-4.1.4+1.18.1-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "a6b83e46b3a8b1884f539683042686680729ce2a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yM94ont6"
|
||||
version = "xU1wwE7x"
|
13
packwiz-data/mods/ok-zoomer.toml
Normal file
13
packwiz-data/mods/ok-zoomer.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Ok Zoomer"
|
||||
filename = "okzoomer-5.0.0-beta.3+1.17.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aXf2OSFU/versions/5.0.0-beta.3+1.17.1/okzoomer-5.0.0-beta.3+1.17.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "aa493f41d89b2a1e1a299ae4ee8073ad39f67dca"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aXf2OSFU"
|
||||
version = "esyBJPbU"
|
13
packwiz-data/mods/paxi-fabric.toml
Normal file
13
packwiz-data/mods/paxi-fabric.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Paxi (Fabric)"
|
||||
filename = "Paxi-Fabric-1.18-1.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://edge.forgecdn.net/files/3631/270/Paxi-Fabric-1.18-1.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "57561e342c429a222f7c93b6d8df87bc31482f39"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3631270
|
||||
project-id = 418881
|
13
packwiz-data/mods/perspective-mod-redux.toml
Normal file
13
packwiz-data/mods/perspective-mod-redux.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name = "Perspective Mod Redux"
|
||||
filename = "PerspectiveModRedux-1.17-0.0.5_01.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GwyFsKOX/versions/1/PerspectiveModRedux-1.17-0.0.5_01.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "e2a40025de5d2c33c543ddb6661a1a47e37bc77d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GwyFsKOX"
|
||||
version = "mBU1uAxH"
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue