Search in sources :

Example 1 with CreeperEntity

use of net.minecraft.entity.monster.CreeperEntity in project Enigmatic-Legacy by Aizistral-Studios.

the class EnigmaticEventHandler method onEntityHurt.

@SubscribeEvent
public void onEntityHurt(LivingHurtEvent event) {
    if (event.getEntityLiving() instanceof PlayerEntity & !event.getEntityLiving().world.isRemote) {
        PlayerEntity player = (PlayerEntity) event.getEntityLiving();
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.angelBlessing))
            if (AngelBlessing.resistanceList.containsKey(event.getSource().damageType))
                event.setAmount(event.getAmount() * AngelBlessing.resistanceList.get(event.getSource().damageType));
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.oceanStone)) {
            Entity attacker = event.getSource().getTrueSource();
            if (attacker instanceof DrownedEntity || attacker instanceof GuardianEntity || attacker instanceof ElderGuardianEntity)
                event.setAmount(event.getAmount() * ConfigHandler.OCEAN_STONE_UNDERWATER_CREATURES_RESISTANCE.getValue().asModifierInverted());
        }
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.eyeOfNebula))
            if (EyeOfNebula.resistanceList.containsKey(event.getSource().damageType))
                event.setAmount(event.getAmount() * EyeOfNebula.resistanceList.get(event.getSource().damageType).get());
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.golemHeart))
            if (GolemHeart.resistanceList.containsKey(event.getSource().damageType))
                event.setAmount(event.getAmount() * GolemHeart.resistanceList.get(event.getSource().damageType).get());
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.voidPearl))
            if (VoidPearl.resistanceList.containsKey(event.getSource().damageType))
                event.setAmount(event.getAmount() * VoidPearl.resistanceList.get(event.getSource().damageType).get());
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.magmaHeart)) {
            // System.out.println("Damage type: " + event.getSource().damageType);
            if (event.getSource().getTrueSource() instanceof LivingEntity && MagmaHeart.nemesisList.contains(event.getSource().damageType)) {
                LivingEntity attacker = (LivingEntity) event.getSource().getTrueSource();
                if (!attacker.isImmuneToFire()) {
                    attacker.attackEntityFrom(new EntityDamageSource(DamageSource.ON_FIRE.damageType, player), (float) ConfigHandler.BLAZING_CORE_DAMAGE_FEEDBACK.getValue());
                    attacker.setFire((int) ConfigHandler.BLAZING_CORE_IGNITION_FEEDBACK.getValue());
                }
            }
        }
        if (EtheriumArmor.hasShield(player)) {
            if (event.getSource().getImmediateSource() instanceof LivingEntity) {
                LivingEntity attacker = ((LivingEntity) event.getSource().getTrueSource());
                Vector3 vec = Vector3.fromEntityCenter(player).subtract(Vector3.fromEntityCenter(event.getSource().getTrueSource())).normalize();
                attacker.knockBack(player, 0.75F, vec.x, vec.y);
                player.world.playSound(null, player.getPosition(), EnigmaticLegacy.SHIELD_TRIGGER, SoundCategory.PLAYERS, 1.0F, 0.9F + (float) (Math.random() * 0.1D));
                player.world.playSound(null, player.getPosition(), EnigmaticLegacy.SHIELD_TRIGGER, SoundCategory.PLAYERS, 1.0F, 0.9F + (float) (Math.random() * 0.1D));
            }
            event.setAmount(event.getAmount() * ConfigHandler.ETHERIUM_ARMOR_SHIELD_REDUCTION.getValue().asModifierInverted());
        }
    } else if (event.getEntityLiving() instanceof MonsterEntity) {
        MonsterEntity monster = (MonsterEntity) event.getEntityLiving();
        if (event.getSource().getTrueSource() instanceof PlayerEntity) {
            PlayerEntity player = (PlayerEntity) event.getSource().getTrueSource();
            if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.monsterCharm)) {
                if (monster.isEntityUndead()) {
                    event.setAmount(event.getAmount() * ConfigHandler.MONSTER_CHARM_UNDEAD_DAMAGE.getValue().asModifier(true));
                } else if (monster.isAggressive() || monster instanceof CreeperEntity) {
                    if (monster instanceof EndermanEntity || monster instanceof ZombiePigmanEntity || monster instanceof BlazeEntity || monster instanceof GuardianEntity || monster instanceof ElderGuardianEntity || !monster.isNonBoss()) {
                    } else {
                        event.setAmount(event.getAmount() * ConfigHandler.MONSTER_CHARM_AGGRESSIVE_DAMAGE.getValue().asModifier(true));
                    }
                }
            }
            if (monster instanceof CreeperEntity)
                monster.setLastAttackedEntity(player);
        // TODO Test if required
        }
    }
    if (event.getSource().getTrueSource() instanceof PlayerEntity) {
        PlayerEntity player = (PlayerEntity) event.getSource().getTrueSource();
        if (SuperpositionHandler.hasCurio(player, EnigmaticLegacy.voidPearl)) {
            event.getEntityLiving().addPotionEffect(new EffectInstance(Effects.WITHER, ConfigHandler.VOID_PEARL_WITHERING_EFFECT_TIME.getValue(), ConfigHandler.VOID_PEARL_WITHERING_EFFECT_LEVEL.getValue(), false, true));
        }
    }
}
Also used : LivingEntity(net.minecraft.entity.LivingEntity) BlazeEntity(net.minecraft.entity.monster.BlazeEntity) EndermanEntity(net.minecraft.entity.monster.EndermanEntity) DamagingProjectileEntity(net.minecraft.entity.projectile.DamagingProjectileEntity) EnderDragonEntity(net.minecraft.entity.boss.dragon.EnderDragonEntity) MonsterEntity(net.minecraft.entity.monster.MonsterEntity) ZombieEntity(net.minecraft.entity.monster.ZombieEntity) AbstractArrowEntity(net.minecraft.entity.projectile.AbstractArrowEntity) PlayerEntity(net.minecraft.entity.player.PlayerEntity) PermanentItemEntity(com.integral.enigmaticlegacy.entities.PermanentItemEntity) ZombiePigmanEntity(net.minecraft.entity.monster.ZombiePigmanEntity) ServerPlayerEntity(net.minecraft.entity.player.ServerPlayerEntity) DrownedEntity(net.minecraft.entity.monster.DrownedEntity) GuardianEntity(net.minecraft.entity.monster.GuardianEntity) Entity(net.minecraft.entity.Entity) CreeperEntity(net.minecraft.entity.monster.CreeperEntity) WitherSkeletonEntity(net.minecraft.entity.monster.WitherSkeletonEntity) SkeletonEntity(net.minecraft.entity.monster.SkeletonEntity) ItemEntity(net.minecraft.entity.item.ItemEntity) ElderGuardianEntity(net.minecraft.entity.monster.ElderGuardianEntity) ZombiePigmanEntity(net.minecraft.entity.monster.ZombiePigmanEntity) BlazeEntity(net.minecraft.entity.monster.BlazeEntity) GuardianEntity(net.minecraft.entity.monster.GuardianEntity) ElderGuardianEntity(net.minecraft.entity.monster.ElderGuardianEntity) MonsterEntity(net.minecraft.entity.monster.MonsterEntity) Vector3(com.integral.enigmaticlegacy.helpers.Vector3) PlayerEntity(net.minecraft.entity.player.PlayerEntity) ServerPlayerEntity(net.minecraft.entity.player.ServerPlayerEntity) EntityDamageSource(net.minecraft.util.EntityDamageSource) LivingEntity(net.minecraft.entity.LivingEntity) EndermanEntity(net.minecraft.entity.monster.EndermanEntity) ElderGuardianEntity(net.minecraft.entity.monster.ElderGuardianEntity) CreeperEntity(net.minecraft.entity.monster.CreeperEntity) DrownedEntity(net.minecraft.entity.monster.DrownedEntity) EffectInstance(net.minecraft.potion.EffectInstance) SubscribeEvent(net.minecraftforge.eventbus.api.SubscribeEvent)

Example 2 with CreeperEntity

use of net.minecraft.entity.monster.CreeperEntity in project Arclight by IzzelAliz.

the class CreeperEntityMixin method explode.

/**
 * @author IzzelAliz
 * @reason
 */
@Overwrite
public void explode() {
    if (!this.world.isRemote) {
        Explosion.Mode explosion_effect = ForgeEventFactory.getMobGriefingEvent(this.world, (CreeperEntity) (Object) this) ? Explosion.Mode.DESTROY : Explosion.Mode.NONE;
        final float f = this.dataManager.get(POWERED) ? 2.0f : 1.0f;
        final ExplosionPrimeEvent event = new ExplosionPrimeEvent(this.getBukkitEntity(), this.explosionRadius * f, false);
        Bukkit.getPluginManager().callEvent(event);
        if (!event.isCancelled()) {
            this.dead = true;
            this.world.createExplosion((CreeperEntity) (Object) this, this.posX, this.posY, this.posZ, event.getRadius(), event.getFire(), explosion_effect);
            this.remove();
            this.spawnLingeringCloud();
        } else {
            this.timeSinceIgnited = 0;
        }
    }
}
Also used : Explosion(net.minecraft.world.Explosion) ExplosionPrimeEvent(org.bukkit.event.entity.ExplosionPrimeEvent) CreeperEntity(net.minecraft.entity.monster.CreeperEntity) Overwrite(org.spongepowered.asm.mixin.Overwrite)

Example 3 with CreeperEntity

use of net.minecraft.entity.monster.CreeperEntity in project WarDance by Jackiecrazy.

the class GeneralUtils method dropSkull.

/**
 * drops a skull of the given type. For players it will retrieve their skin
 */
public static ItemStack dropSkull(LivingEntity elb) {
    ItemStack ret = null;
    if (elb instanceof AbstractSkeletonEntity) {
        if (elb instanceof WitherSkeletonEntity)
            ret = new ItemStack(Items.WITHER_SKELETON_SKULL);
        else
            ret = new ItemStack(Items.SKELETON_SKULL);
    } else if (elb instanceof ZombieEntity)
        ret = new ItemStack(Items.ZOMBIE_HEAD);
    else if (elb instanceof CreeperEntity)
        ret = new ItemStack(Items.CREEPER_HEAD);
    else if (elb instanceof EnderDragonEntity)
        ret = new ItemStack(Items.DRAGON_HEAD);
    else if (elb instanceof PlayerEntity) {
        PlayerEntity p = (PlayerEntity) elb;
        ret = new ItemStack(Items.PLAYER_HEAD);
        ret.setTag(new CompoundNBT());
        ret.getTag().putString("SkullOwner", p.getName().getString());
    }
    return ret;
}
Also used : ZombieEntity(net.minecraft.entity.monster.ZombieEntity) CompoundNBT(net.minecraft.nbt.CompoundNBT) EnderDragonEntity(net.minecraft.entity.boss.dragon.EnderDragonEntity) CreeperEntity(net.minecraft.entity.monster.CreeperEntity) ItemStack(net.minecraft.item.ItemStack) AbstractSkeletonEntity(net.minecraft.entity.monster.AbstractSkeletonEntity) WitherSkeletonEntity(net.minecraft.entity.monster.WitherSkeletonEntity) PlayerEntity(net.minecraft.entity.player.PlayerEntity)

Aggregations

CreeperEntity (net.minecraft.entity.monster.CreeperEntity)3 EnderDragonEntity (net.minecraft.entity.boss.dragon.EnderDragonEntity)2 WitherSkeletonEntity (net.minecraft.entity.monster.WitherSkeletonEntity)2 ZombieEntity (net.minecraft.entity.monster.ZombieEntity)2 PlayerEntity (net.minecraft.entity.player.PlayerEntity)2 PermanentItemEntity (com.integral.enigmaticlegacy.entities.PermanentItemEntity)1 Vector3 (com.integral.enigmaticlegacy.helpers.Vector3)1 Entity (net.minecraft.entity.Entity)1 LivingEntity (net.minecraft.entity.LivingEntity)1 ItemEntity (net.minecraft.entity.item.ItemEntity)1 AbstractSkeletonEntity (net.minecraft.entity.monster.AbstractSkeletonEntity)1 BlazeEntity (net.minecraft.entity.monster.BlazeEntity)1 DrownedEntity (net.minecraft.entity.monster.DrownedEntity)1 ElderGuardianEntity (net.minecraft.entity.monster.ElderGuardianEntity)1 EndermanEntity (net.minecraft.entity.monster.EndermanEntity)1 GuardianEntity (net.minecraft.entity.monster.GuardianEntity)1 MonsterEntity (net.minecraft.entity.monster.MonsterEntity)1 SkeletonEntity (net.minecraft.entity.monster.SkeletonEntity)1 ZombiePigmanEntity (net.minecraft.entity.monster.ZombiePigmanEntity)1 ServerPlayerEntity (net.minecraft.entity.player.ServerPlayerEntity)1