*/
public class Creeper extends Living implements Hostile {
@Override
public void onAttached() {
super.onAttached();
setEntityProtocol(new CreatureProtocol(CreatureType.CREEPER));
getOwner().add(DeathDrops.class).addDrop(new ItemStack(VanillaMaterials.GUNPOWDER, getRandom().nextInt(2))).addXpDrop((short) 5);
PhysicsComponent physics = getOwner().getPhysics();
physics.activate(2f, new BoxShape(1f, 2f, 1f), false, true);
physics.setFriction(10f);
physics.setRestitution(0f);