22 lines
368 B
Java
22 lines
368 B
Java
package mods.tinker.tconstruct.entity;
|
|
|
|
import net.minecraft.entity.EntityLiving;
|
|
import net.minecraft.world.World;
|
|
|
|
public class CrystalGuardian extends EntityLiving
|
|
{
|
|
|
|
public CrystalGuardian(World par1World)
|
|
{
|
|
super(par1World);
|
|
this.texture = "/mods/tinker/textures/mob/crystalguardamber.png";
|
|
}
|
|
|
|
@Override
|
|
public int getMaxHealth ()
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
}
|