2013-05-29 17:56:05 -07:00

22 lines
357 B
Java

package mods.tinker.tconstruct.entity;
import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.world.World;
public class Crystal extends EntityCreeper
{
public Crystal(World par1World)
{
super(par1World);
this.texture = "/mods/tinker/textures/mob/crystalwater.png";
}
@Override
public int getMaxHealth ()
{
return 100;
}
}