Topic category: User side tutorials
Hi there, again... If you think your mod needs shields and you want to add them in but don't know how, then this is for you :D I'll be showing you how to add in shields via code in your mod in any version of MCreator :) (or so I believe)
First of all, you'll need to make an item. Lock the items code and then procede to edit it. You'll need to add in an import named import javax.annotation.Nullable; in the very top next to the other imports since the reformat code and imports function doesn't work with it. After that, you'll want to add in the shields property to the item in a section that looks like this :
public ItemCustom() {
setMaxDamage(234);
maxStackSize = 1;
setUnlocalizedName("yourshield");
setRegistryName("yourshield");
setCreativeTab(MCreatorYourtab.tab);
}
The property looks like this :
this.addPropertyOverride(new ResourceLocation("blocking"), new IItemPropertyGetter() {
@SideOnly(Side.CLIENT)
public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) {
return entityIn != null && entityIn.isHandActive() && entityIn.getActiveItemStack() == stack ? 1.0F : 0.0F;
}
});
Your final bit of code should look like this :
public ItemCustom() {
setMaxDamage(234);
maxStackSize = 1;
setUnlocalizedName("yourshield");
setRegistryName("yourshield");
setCreativeTab(MCreatorYourtab.tab);
this.addPropertyOverride(new ResourceLocation("blocking"), new IItemPropertyGetter() {
@SideOnly(Side.CLIENT)
public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) {
return entityIn != null && entityIn.isHandActive() && entityIn.getActiveItemStack() == stack ? 1.0F : 0.0F;
}
});
}
But your shield won't work with that simple and small bit of code only. You will also need to add in an argument under it that allows it to actually block stuff. It looks like this :
public EnumAction getItemUseAction(ItemStack stack) {
return EnumAction.BLOCK;
}
Then, you'll need to change the item duration to 72000, otherwise your shield won't be able to hold long enough to push back the arrow. Like so :
@Override
public int getMaxItemUseDuration(ItemStack par1ItemStack) {
return 72000;
}
After that, you will also have to add in another bit of code that returns the success of your action. It looks like this :
public ActionResult<ItemStack> onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand handIn) {
ItemStack itemstack = playerIn.getHeldItem(handIn);
playerIn.setActiveHand(handIn);
return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, itemstack);
}
Finaly, you only have to add two little bits of code close to the beginning to make it so that the shield actually looses durability. I'd like to thank CodingSuperNoob_JDV for providing me with it.
First, you have to add in these 7 little imports right at the beginning, around line 5 :
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.event.entity.living.LivingAttackEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
Then, you will have to add this FMLPreInitialization register around line 40.
@Override
public void preInit(FMLPreInitializationEvent event) {
MinecraftForge.EVENT_BUS.register(this);
}
Finaly, the last bit of code you'll have to add in looks like this. Put it right before the ItemCustom bit that should be around line 55 now. This is the code that makes it so that your shield takes damage.
@SubscribeEvent
public void onEntityAttacked(LivingAttackEvent event){
Entity entity = event != null ? event.getEntity() : null;
float damage = event.getAmount();
int damageInt = (int) damage;
if (entity != null && entity instanceof EntityPlayer) {
EntityPlayer player = (EntityPlayer)entity;
ItemStack activeItem = player.getActiveItemStack();
if (player.isActiveItemStackBlocking() == true && ((activeItem).getItem() == new ItemStack(MCreatorYourShield.block, (int) (1)).getItem())) {
activeItem.damageItem(damageInt, player);
}
}
}
Do you see that "int damageint = (int) damage;" bit? The damageint part basically is the amount of damage your shield will take. In this case, it's basically equal to the amount of damage you've protected yourself from. If you say "int damageint = 1;", then your shield will only lose one durability everytime it gets hit and if you say "int damage int = (int) ((damage)*4);" then your shield will take 4 times the damage it protected you from. For a zombie, that would be 5 damage * 4, so 20 durability lost.
That's all! Remember to use the reformat code and imports function and use the right names instead of my yourshield and yourtab names.
Your final code should look somewhat like this :
package net.mcreator.yourmod;
import net.minecraftforge.fml.relauncher.SideOnly;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.event.entity.living.LivingAttackEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraft.world.World;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.EnumHand;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.ActionResult;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Item;
import net.minecraft.item.IItemPropertyGetter;
import net.minecraft.item.EnumAction;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.Entity;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.block.state.IBlockState;
import javax.annotation.Nullable;
public class MCreatoryourshield extends yourmod.ModElement {
@GameRegistry.ObjectHolder("yourmod:yourshield")
public static final Item block = null;
public MCreatoryourshield(yourmod instance) {
super(instance);
instance.items.add(() -> new ItemCustom());
}
@Override
public void preInit(FMLPreInitializationEvent event) {
MinecraftForge.EVENT_BUS.register(this);
}
@SideOnly(Side.CLIENT)
@Override
public void registerModels(ModelRegistryEvent event) {
ModelLoader.setCustomModelResourceLocation(block, 0, new ModelResourceLocation("yourmod:yourshield", "inventory"));
}
@SubscribeEvent
public void onEntityAttacked(LivingAttackEvent event){
Entity entity = event != null ? event.getEntity() : null;
float damage = event.getAmount();
int damageInt = (int) damage;
if (entity != null && entity instanceof EntityPlayer) {
EntityPlayer player = (EntityPlayer)entity;
ItemStack activeItem = player.getActiveItemStack();
if (player.isActiveItemStackBlocking() == true && ((activeItem).getItem() == new ItemStack(MCreatorYourShield.block, (int) (1)).getItem())) {
activeItem.damageItem(damageInt, player);
}
}
}
public static class ItemCustom extends Item {
public ItemCustom() {
setMaxDamage(234);
maxStackSize = 1;
setUnlocalizedName("yourshield");
setRegistryName("yourshield");
setCreativeTab(MCreatorYourtab.tab);
this.addPropertyOverride(new ResourceLocation("blocking"), new IItemPropertyGetter() {
@SideOnly(Side.CLIENT)
public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) {
return entityIn != null && entityIn.isHandActive() && entityIn.getActiveItemStack() == stack ? 1.0F : 0.0F;
}
});
}
public EnumAction getItemUseAction(ItemStack stack) {
return EnumAction.BLOCK;
}
@Override
public int getItemEnchantability() {
return 2;
}
@Override
public int getMaxItemUseDuration(ItemStack par1ItemStack) {
return 72000;
}
public ActionResult<ItemStack> onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand handIn) {
ItemStack itemstack = playerIn.getHeldItem(handIn);
playerIn.setActiveHand(handIn);
return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, itemstack);
}
@Override
public float getDestroySpeed(ItemStack par1ItemStack, IBlockState par2Block) {
return 1F;
}
}
}
Here's a workspace file for those of you it would help. I would like to thank NatePlays95 for providing us with this workspace.
https://mcreator.net/forum/58742/template-worspace-112-shield-bow-and-more
I'm getting a lot of errors from one line of code,
public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn)
What did I do wrong?
Does this apply to other versions or just 1.12.2 I am trying to add shields into 1.15 but it just wont work.
It only works in 1.12.2
i like the idea of crispy_chips. like u can do like captain america, u make a shield with blockbench and u can throw it, attack and block.
PLEASE someone tell me how can i make my shield animation to work!
it doesnt work, tried several times.