You can Create the model, and it's subsequently needed texture and animations using Blockbench and the AzureLib plugin installed on it.
There are many great Tutorials on this all over YouTube so i won't waste time by explaining this part in depth.
Warning
The AzureLib Plugin needs to be installed on Blockbench as it allow you to export to the proper format
publicclassExampleArmorModelextendsGeoModel{// Models must be stored in assets/<modid>/geo with subfolders supported inside the geo folderprivatestaticfinalResourceLocationmodel=newResourceLocation("yournamespace","geo/yourmodel.geo.json");// Textures must be stored in assets/<modid>/textures with subfolders supported inside the textures folderprivatestaticfinalResourceLocationtexture=newResourceLocation("yournamespace","textures/<modeltype>/yourtexture.png");// Animations must be stored in assets/<modid>/animations with subfolders supported inside the animations folderprivatestaticfinalResourceLocationanimation=newResourceLocation("yournamespace","animations/youranimation.animation.json");@OverridepublicResourceLocationgetModelResource(GeoAnimatableanimatable){returnthis.model;}@OverridepublicResourceLocationgetTextureResource(GeoAnimatableanimatable){returnthis.texture;}@OverridepublicResourceLocationgetAnimationResource(GeoAnimatableanimatable){returnthis.animation;}}
@OverridepublicICallBackgetControllers(){List<AnimationController>controllerList=newArrayList<>();//Creating the Animation controllercontrollerList.add(newAnimationController(this,"controllerName",0,event->PlayState.CONTINUE));//Returning the CallBackreturn(args)->controllerList;}