This commit is contained in:
2026-01-01 23:31:01 -06:00
parent c36cbcea0d
commit 23dfcdc369
49 changed files with 1631 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package dev.sillyangel.more_spear_enchantments.neoforge;
import net.neoforged.fml.common.Mod;
import dev.sillyangel.more_spear_enchantments.MoreSpearEnchantments;
@Mod(MoreSpearEnchantments.MOD_ID)
public final class MoreSpearEnchantmentsNeoForge {
public MoreSpearEnchantmentsNeoForge() {
// Run our common setup.
MoreSpearEnchantments.init();
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@@ -0,0 +1,38 @@
modLoader = "javafml"
loaderVersion = "[10,)"
issueTrackerURL = "https://git.sillyangel.dev/angel/more-spear-enchants-neoforge/issues"
license = "MIT"
[[mods]]
modId = "more_spear_enchantments"
version = "${version}"
displayName = "More Spear Enchantments"
authors = "sillyangel"
description = '''
more enchantments for the newly added spear from the Mounts of Mayhem update.
'''
logoFile = "icon.png"
[[dependencies.more_spear_enchantments]]
modId = "neoforge"
type = "required"
versionRange = "[21.11,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.more_spear_enchantments]]
modId = "minecraft"
type = "required"
versionRange = "[1.21.11,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.more_spear_enchantments]]
modId = "architectury"
type = "required"
versionRange = "[19.0.1,)"
ordering = "AFTER"
side = "BOTH"
[[mixins]]
config = "more_spear_enchantments.mixins.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB