added fabric mod

This commit is contained in:
2023-04-27 21:26:54 +02:00
parent 796b156e8d
commit cafa230433
17 changed files with 815 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "polarcraft-mod",
"version": "${version}",
"name": "Polarcraft Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/polarcraft-mod/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.xeovalyte.polarcraft.PolarcraftMod"
]
},
"mixins": [
"polarcraft-mod.mixins.json",
{
"config": "polarcraft-mod.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.14.19",
"minecraft": "~1.19.4",
"java": ">=17",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
}