mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
86 lines
3.4 KiB
Java
86 lines
3.4 KiB
Java
package com.minelittlepony.unicopia.ability;
|
|
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
|
import com.minelittlepony.unicopia.ability.magic.SpellPredicate;
|
|
import com.minelittlepony.unicopia.ability.magic.spell.AbstractDisguiseSpell;
|
|
import com.minelittlepony.unicopia.ability.magic.spell.effect.SpellType;
|
|
import com.minelittlepony.unicopia.entity.behaviour.EntityAppearance;
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
import com.minelittlepony.unicopia.particle.UParticles;
|
|
import com.minelittlepony.unicopia.util.RayTraceHelper;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.FallingBlockEntity;
|
|
import net.minecraft.entity.LightningEntity;
|
|
import net.minecraft.entity.decoration.AbstractDecorationEntity;
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.predicate.entity.EntityPredicates;
|
|
import net.minecraft.sound.SoundCategory;
|
|
import net.minecraft.sound.SoundEvents;
|
|
|
|
/**
|
|
* Changeling ability to disguise themselves as other players.
|
|
*/
|
|
public class ChangelingDisguiseAbility extends ChangelingFeedAbility {
|
|
|
|
@Nullable
|
|
@Override
|
|
public Hit tryActivate(Pony player) {
|
|
if (player.getMaster().isCreative() || player.getMagicalReserves().getMana().getPercentFill() >= 0.9F) {
|
|
return Hit.INSTANCE;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void apply(Pony iplayer, Hit data) {
|
|
PlayerEntity player = iplayer.getMaster();
|
|
|
|
if (!player.isCreative() && iplayer.getMagicalReserves().getMana().getPercentFill() < 0.9F) {
|
|
return;
|
|
}
|
|
|
|
RayTraceHelper.Trace trace = RayTraceHelper.doTrace(player, 10, 1, EntityPredicates.EXCEPT_SPECTATOR.and(e -> !(e instanceof LightningEntity)));
|
|
|
|
Entity looked = trace.getEntity().filter(e -> !(e instanceof AbstractDecorationEntity)).map(e -> {
|
|
return e instanceof PlayerEntity ? Pony.of((PlayerEntity)e)
|
|
.getSpellSlot()
|
|
.get(SpellPredicate.IS_DISGUISE, true)
|
|
.map(AbstractDisguiseSpell::getDisguise)
|
|
.map(EntityAppearance::getAppearance)
|
|
.orElse(e) : e;
|
|
}).orElseGet(() -> trace.getBlockPos().map(pos -> {
|
|
if (!iplayer.getWorld().isAir(pos)) {
|
|
return new FallingBlockEntity(player.getEntityWorld(), 0, 0, 0, iplayer.getWorld().getBlockState(pos));
|
|
}
|
|
return null;
|
|
}).orElse(null));
|
|
|
|
player.getEntityWorld().playSound(null, player.getBlockPos(), SoundEvents.ENTITY_PARROT_IMITATE_RAVAGER, SoundCategory.PLAYERS, 1.4F, 0.4F);
|
|
|
|
iplayer.getSpellSlot().get(SpellType.CHANGELING_DISGUISE, true)
|
|
.orElseGet(() -> SpellType.CHANGELING_DISGUISE.withTraits().apply(iplayer))
|
|
.setDisguise(looked);
|
|
|
|
if (!player.isCreative()) {
|
|
iplayer.getMagicalReserves().getMana().multiply(0.1F);
|
|
}
|
|
|
|
player.calculateDimensions();
|
|
iplayer.setDirty();
|
|
}
|
|
|
|
@Override
|
|
public void preApply(Pony player, AbilitySlot slot) {
|
|
player.getMagicalReserves().getEnergy().add(20);
|
|
player.spawnParticles(UParticles.CHANGELING_MAGIC, 5);
|
|
}
|
|
|
|
@Override
|
|
public void postApply(Pony player, AbilitySlot slot) {
|
|
player.getMagicalReserves().getEnergy().set(0);
|
|
player.spawnParticles(UParticles.CHANGELING_MAGIC, 5);
|
|
}
|
|
}
|