This is a Gradle project to manage the server mod pack. The mod pack is distributed as a fat .jar file that can be placed into the mods folder.
We aren't looking to have every mod ever, but also do not want people to feel left out. If you develop a mod that you think would be a good fit for the server pack, feel free to submit it.
If you aren't a mod developer, or a developer who thinks that a third party mod is critical for the server, please submit a PR and we can discuss it as a group. We are not trying to build a kitchen sink pack of well known popular mods, but also want to make sure that the server is fun and engaging for everyone.
If your mod does not play well with other mods or is a total conversion, it may be best to not submit it this time around.
Any mods added must have a license that allows for redistribution.
Create a json file for your mod in /mods
- You must provide a
maven
location to a mod either on Modrinth or CurseForge. - A
supportContact
field is required. This can either be an issue tracker or your discord name so in the event of an issue we can contact you.
{
"maven": "maven.modrinth:fabric-api:0.112.2+1.21.4",
"supportContact": "https://github.com/FabricMC/fabric/issues"
}
CurseForge example: curse.maven:fabric-api-306612:5966280
Modrinth example: maven.modrinth:fabric-language-kotlin:1.13.0+kotlin.2.1.0
See the full docs here https://cursemaven.com/ and https://support.modrinth.com/en/articles/8801191-modrinth-maven
A list of mods in the pack is available here. Mods in bold were made and submitted by members of our community!
- Alivent Messenger by A11v1r15
- AppleSkin by squeek502
- Armor Stand Editor by Patbox
- ClickThrough Plus by cassiancc
- Cloth Config API by shedaniel
- Columns by haykam
- Creeper Healing by ArkoSammy12
- Creeper Confetti Plus by cassiancc
- Do A Barrel Roll by enjarai
- Ender Christmas Plus by cassiancc
- Expanded Storage by Quinn_Semele
- Extended Drawers by MattiDragon
- Fabric API by modmuss50
- Fabric Language Kotlin by modmuss50
- FlightAssistant by Octol1ttle
- Grind Enchantments by mschae23
- Holiday Server Mod by modmuss50
- Instant Feedback by DrexHD
- Leaves Us In Peace by supersaiyansubtletly
- MidnightLib by TeamMidnightDust
- More Axolotl Variants API by AkashiiKun
- More Axolotl Variants Mod by AkashiiKun
- Monkey Config by ArkoSammy12
- owo lib by glisco03
- Patbox's Brewery by Patbox
- Phantom Pillows by haykam
- Phantom Lucidity by haykam
- PolyDecorations by Patbox
- Polydex by Patbox
- PolyFactory by Patbox
- Polymer by Patbox
- Pyrite by cassiancc
- Rainbow Christmas by PoeticRainbow
- SleepWarp (Updated) by Patbox
- Snow Under Trees (Fabric) by IMB11
- Text Placeholder API by Patbox
- Unbreakable by sylenthuntress
- Universal Graves by Patbox
- YACL by isxander
To build a fat jar containing all of the mods run ./gradlew :jar
. This will create a jar file in build/libs
that can be placed in the mods folder.
To build a Modrinth modpack file run ./gradlew :mrpack
. This will create a mrpack file in build/modrinth
that can be imported into supported launchers.
To run a test server with the mod pack run ./gradlew :test:runProductionAutoTestServer
.
The code in this repository is licensed under the MIT license. See LICENSE for more information.