This commit is contained in:
Vos
2025-05-25 10:47:36 -05:00
commit 4e7dfb332b
18 changed files with 775 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"required": true,
"package": "com.acethewildfire.acesbs.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

+40
View File
@@ -0,0 +1,40 @@
{
"schemaVersion": 1,
"id": "acesbs",
"version": "${version}",
"name": "Ace's Bravo Sierra",
"description": "Ace's First Mod!",
"authors": [
"Ace The Wildfire"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "MIT",
"icon": "assets/acesbs/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.acethewildfire.acesbs.AcesBravoSierra"
],
"fabric-datagen": [
"com.acethewildfire.acesbs.AcesBravoSierraDataGenerator"
],
"client": [
"com.acethewildfire.acesbs.AcesBravoSierraClient"
]
},
"mixins": [
"acesbs.mixins.json"
],
"depends": {
"fabricloader": ">=0.16.14",
"minecraft": "~1.21",
"java": ">=21",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
}