mod generation

This commit is contained in:
Jottyfan
2025-12-22 19:19:04 +01:00
parent 86bc26dafc
commit f85b5faeec
18 changed files with 614 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "quickly",
"version": "${version}",
"name": "quickly",
"description": "The successor of the quickie mod. With this, one can play minecraft quicker.",
"authors": [
"Jotty"
],
"contact": {
"homepage": "https://git.jottyfan.de/minecraft/quickly",
"sources": "https://git.jottyfan.de/minecraft/quickly"
},
"license": "AGPL-3",
"icon": "assets/quickly/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.jottyfan.minecraft.Quickly"
]
},
"mixins": [
"quickly.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.3",
"minecraft": "~26.1-",
"java": ">=25",
"fabric-api": "*"
}
}

View File

@@ -0,0 +1,14 @@
{
"required": true,
"package": "de.jottyfan.minecraft.mixin",
"compatibilityLevel": "JAVA_25",
"mixins": [
"QuicklyMixin"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}