![Enderswords (Fabric/Forge)](https://media.forgecdn.net/avatars/thumbnails/884/187/256/256/638318132691958883_animated.gif)
[Suggestion] Imbued Gear Compat
fzzyhmstrs opened this issue ยท 3 comments
If you are looking to add material compat to Enderswords, Imbued Gear adds two pretty unique ingots: Puresteel and Voidsteel. Both materials have a ToolMaterial
(radiant
and nihil
, respectively), so you could probably hook directly into that, or use it as a reference at least.
Puresteel and Voidsteel item registration
Example of how to directly hook into my configurable ToolMaterials: IgConfig.INSTANCE.getMaterials().getTools().getNihil()
If you want to really above and beyond, we could talk about how to make them Modifiable
too, so they have the same on-hit passives as the Radiant Broadsword and Nihil Blade, and I'd be happy to help with recipe ideas too.
I've actually made the modifiers part a lot easier on both of us. Can be done with datapacks now. You can just slap this file into data/<modid>/item_modifiers/
, rename the items to your actual item identifiers and boom.
For the most part, I take the base sword's speed and attack, lower the attack by 1, raise the speed by 0.2, and slim the blade down a little bit on the texture. They have a right click ability to throw pearls, but other than that, they're pretty basic.
If you're wanting to hook into your effects into that ability, I can always publish the source here on github with my base, and you can tweak the code to your heart's content. I'll pull and compile. :)