Solved (NMS) Change damage of mob

Discussion in 'Plugin Development' started by mike0631, Jun 23, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    mike0631

    Hi, I currently have this code:
    Code:java
    1. public class CustomZombie extends net.minecraft.server.v1_5_R3.EntityZombie {
    2.  
    3. public CustomZombie(World world) {
    4. super(world);
    5. this.bw = 2F;
    6. this.maxHealth = 20;
    7. this.health = 20;
    8. }
    9. }


    How would I let that CustomZombie do more damage, what variable would I use?
     
Thread Status:
Not open for further replies.

Share This Page