init: 1.21.11
This commit is contained in:
BIN
src/main/resources/assets/more_spear_enchants/icon.png
Normal file
BIN
src/main/resources/assets/more_spear_enchants/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"enchantment.more_spear_enchants.thundering": "Thundering",
|
||||
"enchantment.more_spear_enchants.withering": "Withering"
|
||||
}
|
||||
|
||||
42
src/main/resources/fabric.mod.json
Normal file
42
src/main/resources/fabric.mod.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
14
src/main/resources/more_spear_enchants.mixins.json
Normal file
14
src/main/resources/more_spear_enchants.mixins.json
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user