Posted June 24, 20205 yr Can anyone link me to a tutorial or example mod that shows how to make armor items in 1.15.2? I tried around with making armor items but I can't figure out some parts like the sound event, repair material, and the equipment slot type. I'm confused as to how to use the SoundEvent class, the Ingredient class, and the EquipmentSlotType class. Edited June 24, 20205 yr by Pxlop Added info
June 24, 20205 yr Have you tried something already? Are you trying to make armor like the vanilla armors, or armor with a completely custom model? I am not aware of any tutorials showing how to make armor items, however for vanilla-like armors, using the vanilla code as an example should be quite helpful. And then if it does not work as expected, post a link to code and logs here, with explanation of what's wrong. What about the classes (EquipmentSlotType and ArmorMaterial are actually enums) you mentioned are you confused about?
June 24, 20205 yr My registry (see linked "ARMOR" subtitle) https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/main/registry/EvileDeferredRegistry.java#L125 My own ArmorItem classes (Each one is a static nested class within EvileArmorBases) https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/item/equipment/armor/EvileArmorBases.java My ArmorMaterials https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/main/support/EnumEvileArmorMaterial.java How to ask a good coding question: https://stackoverflow.com/help/how-to-ask Give logs, code, desired effects, and actual effects. Be thorough or we can't help you. Don't post code without putting it in a code block (the <> button on the post - select "C-type Language"): syntax highlighting makes everything easier, and it keeps the post tidy. My own mod, Magiks Most Evile: GitHub (https://github.com/GenElectrovise/MagiksMostEvile) Wiki (https://magiksmostevile.fandom.com/wiki/Magiks_Most_Evile_Wiki) Edit your own signature at https://www.minecraftforge.net/forum/settings/signature/
June 24, 20205 yr Author 2 minutes ago, GenElectrovise said: My registry (see linked "ARMOR" subtitle) https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/main/registry/EvileDeferredRegistry.java#L125 My own ArmorItem classes (Each one is a static nested class within EvileArmorBases) https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/item/equipment/armor/EvileArmorBases.java My ArmorMaterials https://github.com/GenElectrovise/MagiksMostEvile/blob/1.15.2/src/main/java/genelectrovise/magiksmostevile/common/main/support/EnumEvileArmorMaterial.java Thanks! Helped a lot.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.