init: 1.21.11

This commit is contained in:
2025-12-22 21:20:29 -06:00
commit ac2db8df02
31 changed files with 1225 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,5 @@
{
"enchantment.more_spear_enchants.thundering": "Thundering",
"enchantment.more_spear_enchants.withering": "Withering"
}

View File

@@ -0,0 +1,42 @@
{
"schemaVersion": 1,
"id": "more_spear_enchants",
"version": "${version}",
"name": "More Spear Enchantments",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"sillyangel"
],
"contact": {
"homepage": "https://sillyangel.dev/",
"sources": "https://git.sillyangel.dev/angel/more_spear_enchants"
},
"license": "CC0-1.0",
"icon": "assets/more_spear_enchants/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"dev.sillyangel.more_spear_enchantments.MoreSpearEnchantments"
],
"fabric-datagen": [
"dev.sillyangel.more_spear_enchantments.MoreSpearEnchantmentsDataGenerator"
]
},
"mixins": [
"more_spear_enchants.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.3",
"minecraft": "~1.21.11",
"java": ">=21",
"fabric-api": "*"
},
"custom": {
"modmenu": {
"links": {
"modmenu.discord": "https://discord.gg/gAfcZURgvJ"
},
"update_checker": true
}
}
}

View File

@@ -0,0 +1,14 @@
{
"required": true,
"package": "dev.sillyangel.more_spear_enchantments.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}