Search in sources :

Example 1 with GuardianEntity

use of net.minecraft.entity.monster.GuardianEntity 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 GuardianEntity

use of net.minecraft.entity.monster.GuardianEntity in project BudschieMorphMod by Budschie.

the class GuardianEntitySynchronizer method onPlayerTickEvent.

@SubscribeEvent
public static void onPlayerTickEvent(PlayerTickEvent event) {
    if (event.side == LogicalSide.CLIENT && event.phase == Phase.START) {
        IGuardianBeamCapability beamCap = event.player.getCapability(GuardianBeamCapabilityAttacher.GUARDIAN_BEAM_CAP).resolve().orElse(null);
        if (beamCap != null) {
            Entity currentCachedEntity = RenderHandler.getCachedEntity(event.player);
            if (currentCachedEntity instanceof GuardianEntity) {
                GuardianEntity casted = (GuardianEntity) currentCachedEntity;
                casted.clientSideAttackTime = beamCap.getAttackProgression();
                if (beamCap.getAttackedEntity().isPresent()) {
                    casted.setTargetedEntity(beamCap.getAttackedEntity().get());
                } else {
                    casted.setTargetedEntity(0);
                }
                casted.clientSideTouchedGround = casted.getMotion().y < 0.0D && casted.world.isTopSolid(casted.getPosition().down(), casted);
                casted.clientSideSpikesAnimationO = casted.clientSideSpikesAnimation;
                casted.clientSideSpikesAnimation += (1.0F - casted.clientSideSpikesAnimation) * 0.06F;
                casted.clientSideTailAnimationO = casted.clientSideTailAnimation;
                float tailAnimationSpeed = casted.isInWater() ? 0.4f : 0.2f;
                if (event.player.getMotion().lengthSquared() > 0.01f)
                    tailAnimationSpeed *= 3.5;
                casted.clientSideTailAnimation += tailAnimationSpeed;
            }
        }
    }
}
Also used : Entity(net.minecraft.entity.Entity) GuardianEntity(net.minecraft.entity.monster.GuardianEntity) IGuardianBeamCapability(de.budschie.bmorph.capabilities.guardian.IGuardianBeamCapability) GuardianEntity(net.minecraft.entity.monster.GuardianEntity) SubscribeEvent(net.minecraftforge.eventbus.api.SubscribeEvent)

Example 3 with GuardianEntity

use of net.minecraft.entity.monster.GuardianEntity in project BudschieMorphMod by Budschie.

the class GuardianClientAdapterInstance method playGuardianSound.

@Override
public void playGuardianSound(PlayerEntity player) {
    GuardianEntity guardian = (GuardianEntity) RenderHandler.getCachedEntity(player);
    Minecraft.getInstance().getSoundHandler().play(new GuardianSound(guardian));
}
Also used : GuardianEntity(net.minecraft.entity.monster.GuardianEntity) GuardianSound(net.minecraft.client.audio.GuardianSound)

Aggregations

GuardianEntity (net.minecraft.entity.monster.GuardianEntity)3 Entity (net.minecraft.entity.Entity)2 SubscribeEvent (net.minecraftforge.eventbus.api.SubscribeEvent)2 PermanentItemEntity (com.integral.enigmaticlegacy.entities.PermanentItemEntity)1 Vector3 (com.integral.enigmaticlegacy.helpers.Vector3)1 IGuardianBeamCapability (de.budschie.bmorph.capabilities.guardian.IGuardianBeamCapability)1 GuardianSound (net.minecraft.client.audio.GuardianSound)1 LivingEntity (net.minecraft.entity.LivingEntity)1 EnderDragonEntity (net.minecraft.entity.boss.dragon.EnderDragonEntity)1 ItemEntity (net.minecraft.entity.item.ItemEntity)1 BlazeEntity (net.minecraft.entity.monster.BlazeEntity)1 CreeperEntity (net.minecraft.entity.monster.CreeperEntity)1 DrownedEntity (net.minecraft.entity.monster.DrownedEntity)1 ElderGuardianEntity (net.minecraft.entity.monster.ElderGuardianEntity)1 EndermanEntity (net.minecraft.entity.monster.EndermanEntity)1 MonsterEntity (net.minecraft.entity.monster.MonsterEntity)1 SkeletonEntity (net.minecraft.entity.monster.SkeletonEntity)1 WitherSkeletonEntity (net.minecraft.entity.monster.WitherSkeletonEntity)1 ZombieEntity (net.minecraft.entity.monster.ZombieEntity)1 ZombiePigmanEntity (net.minecraft.entity.monster.ZombiePigmanEntity)1