Java Code Examples for cn.nukkit.entity.Entity#setOnFire()

The following examples show how to use cn.nukkit.entity.Entity#setOnFire() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EntityProjectile.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
public void onCollideWithEntity(Entity entity) {
    this.server.getPluginManager().callEvent(new ProjectileHitEvent(this, MovingObjectPosition.fromEntity(entity)));
    float damage = this.getResultDamage();

    EntityDamageEvent ev;
    if (this.shootingEntity == null) {
        ev = new EntityDamageByEntityEvent(this, entity, DamageCause.PROJECTILE, damage);
    } else {
        ev = new EntityDamageByChildEntityEvent(this.shootingEntity, this, entity, DamageCause.PROJECTILE, damage);
    }
    if (entity.attack(ev)) {
        this.hadCollision = true;

        if (this.fireTicks > 0) {
            EntityCombustByEntityEvent event = new EntityCombustByEntityEvent(this, entity, 5);
            this.server.getPluginManager().callEvent(ev);
            if (!event.isCancelled()) {
                entity.setOnFire(event.getDuration());
            }
        }
    }
    if (closeOnCollide) {
        this.close();
    }
}
 
Example 2
Source File: BlockLava.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    entity.highestPosition -= (entity.highestPosition - entity.y) * 0.5;

    // Always setting the duration to 15 seconds? TODO
    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 15);
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled()
            // Making sure the entity is actually alive and not invulnerable.
            && entity.isAlive()
            && entity.noDamageTicks == 0) {
        entity.setOnFire(ev.getDuration());
    }

    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.LAVA, 4));
    }

    super.onEntityCollide(entity);
}
 
Example 3
Source File: EntityProjectile.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
public void onCollideWithEntity(Entity entity) {
    this.server.getPluginManager().callEvent(new ProjectileHitEvent(this));
    float damage = this.getResultDamage();

    EntityDamageEvent ev;
    if (this.shootingEntity == null) {
        ev = new EntityDamageByEntityEvent(this, entity, DamageCause.PROJECTILE, damage);
    } else {
        ev = new EntityDamageByChildEntityEvent(this.shootingEntity, this, entity, DamageCause.PROJECTILE, damage);
    }
    entity.attack(ev);
    this.hadCollision = true;

    if (this.fireTicks > 0) {
        EntityCombustByEntityEvent event = new EntityCombustByEntityEvent(this, entity, 5);
        this.server.getPluginManager().callEvent(ev);
        if (!event.isCancelled()) {
            entity.setOnFire(event.getDuration());
        }
    }
    this.close();
}
 
Example 4
Source File: BlockLava.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    entity.highestPosition -= (entity.highestPosition - entity.y) * 0.5;
    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.LAVA, 4));
    }

    // Always setting the duration to 15 seconds? TODO
    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 15);
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled()
            // Making sure the entity is acutally alive and not invulnerable.
            && entity.isAlive()
            && entity.noDamageTicks == 0) {
        entity.setOnFire(ev.getDuration());
    }

    super.onEntityCollide(entity);
}
 
Example 5
Source File: BlockLava.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    entity.highestPosition -= (entity.highestPosition - entity.y) * 0.5;
    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.LAVA, 4));
    }

    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 15);
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled()) {
        entity.setOnFire(ev.getDuration());
    }

    super.onEntityCollide(entity);
}
 
Example 6
Source File: BlockFire.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.FIRE, 1));
    }

    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 8);
    if (entity instanceof EntityArrow) {
        ev.setCancelled();
    }
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled() && entity instanceof Player && !((Player) entity).isCreative()) {
        entity.setOnFire(ev.getDuration());
    }
}
 
Example 7
Source File: EnchantmentFireAspect.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void doPostAttack(Entity attacker, Entity entity) {
    int duration = Math.max(entity.fireTicks / 20, getLevel() * 4);

    EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration);

    if (!ev.isCancelled())
        entity.setOnFire(ev.getDuration());
}
 
Example 8
Source File: BlockFire.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.FIRE, 1));
    }

    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 8);
    if (entity instanceof EntityArrow) {
        ev.setCancelled();
    }
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled() && entity.isAlive() && entity.noDamageTicks == 0) {
        entity.setOnFire(ev.getDuration());
    }
}
 
Example 9
Source File: BlockFire.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onEntityCollide(Entity entity) {
    if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) {
        entity.attack(new EntityDamageByBlockEvent(this, entity, DamageCause.FIRE, 1));
    }

    EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 8);
    if (entity instanceof EntityArrow) {
        ev.setCancelled();
    }
    Server.getInstance().getPluginManager().callEvent(ev);
    if (!ev.isCancelled() && entity instanceof Player && !((Player) entity).isCreative()) {
        entity.setOnFire(ev.getDuration());
    }
}
 
Example 10
Source File: EnchantmentFireAspect.java    From Jupiter with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void doPostAttack(Entity attacker, Entity entity) {
    entity.setOnFire(Math.max(entity.fireTicks * 20, getLevel() * 4));
}
 
Example 11
Source File: EnchantmentFireAspect.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void doPostAttack(Entity attacker, Entity entity) {
    entity.setOnFire(Math.max(entity.fireTicks * 20, getLevel() * 4));
}