Jump to content

Entity Specific Damage


Cannash

Recommended Posts

I am in the process of updating my mod, and I've run into a bump. I have special sword that does more damage to Endermen and Enderdragons. Previously, I had used getDamageVsEntity, but now that that is deprecated, I don't know how to do it. I've been messing around with Attributes, but can't get Entity specific damage to work... Any ideas would be much appreciated...

 

Old Outdated Code:

 

 

@Override
public float getDamageVsEntity(Entity par1Entity, ItemStack itemstack)
{
if (par1Entity instanceof EntityEnderman || par1Entity instanceof EntityDragon)
{
	return 14;
}
else
{
	return 7;
}
}

 

 

DupleCraft Creator

Link to comment
Share on other sites

I have done it this way (I'm not sure if this is an efficient way to do it but it works)

 

@Override
        public boolean hitEntity(ItemStack stack, EntityLivingBase ent, EntityLivingBase player)
        {
                float damage = 0.0f;
                
                if (ent instanceof EntityEnderman || ent instanceof EntityDragon)
                {
                        damage = 25.0f;
                        stack.damageItem(1, player);
                }
                
                DamageSource dmgSource = DamageSource.causePlayerDamage((EntityPlayer) player);
                ent.attackEntityFrom(dmgSource, damage);
                
                return true;
        }

If I was any help please hit that "Thank You" button.

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.