33 lines
599 B
Java
33 lines
599 B
Java
package mods.tinker.tconstruct.entity;
|
|
|
|
import net.minecraft.entity.monster.EntityCreeper;
|
|
import net.minecraft.util.ChunkCoordinates;
|
|
import net.minecraft.world.World;
|
|
|
|
public class Skyla extends EntityCreeper
|
|
{
|
|
|
|
public Skyla(World par1World)
|
|
{
|
|
super(par1World);
|
|
//username = "Skyla";
|
|
texture = "/mods/tinker/textures/mob/skyla.png";
|
|
}
|
|
|
|
/*@Override
|
|
public void sendChatToPlayer (String var1) {}
|
|
|
|
@Override
|
|
public boolean canCommandSenderUseCommand (int var1, String var2)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public ChunkCoordinates getPlayerCoordinates ()
|
|
{
|
|
return null;
|
|
}*/
|
|
|
|
}
|