mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
93 lines
2.6 KiB
Java
93 lines
2.6 KiB
Java
package com.minelittlepony.unicopia.ability;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import com.minelittlepony.unicopia.Race;
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
|
import com.minelittlepony.unicopia.ability.magic.spell.effect.SpellType;
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
import com.minelittlepony.unicopia.particle.MagicParticleEffect;
|
|
import com.minelittlepony.unicopia.particle.OrientedBillboardParticleEffect;
|
|
import com.minelittlepony.unicopia.particle.UParticles;
|
|
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
/**
|
|
* Pegasus ability to perform rainbooms
|
|
*/
|
|
public class PegasusRainboomAbility implements Ability<Hit> {
|
|
|
|
@Override
|
|
public int getWarmupTime(Pony player) {
|
|
return 59;
|
|
}
|
|
|
|
@Override
|
|
public int getCooldownTime(Pony player) {
|
|
return 60;
|
|
}
|
|
|
|
@Override
|
|
public boolean canUse(Race race) {
|
|
return race.canInteractWithClouds();
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public Hit tryActivate(Pony player) {
|
|
|
|
if (!player.asEntity().isCreative() && player.getMagicalReserves().getMana().getPercentFill() < 0.2F) {
|
|
return null;
|
|
}
|
|
|
|
if (player.getPhysics().isFlying() && !SpellType.RAINBOOM.isOn(player)) {
|
|
return Hit.INSTANCE;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Hit.Serializer<Hit> getSerializer() {
|
|
return Hit.SERIALIZER;
|
|
}
|
|
|
|
@Override
|
|
public double getCostEstimate(Pony player) {
|
|
return 90F;
|
|
}
|
|
|
|
@Override
|
|
public boolean onQuickAction(Pony player, ActivationType type) {
|
|
|
|
if (type == ActivationType.TAP && player.getPhysics().isFlying() && player.getMagicalReserves().getMana().get() > 40) {
|
|
player.getPhysics().dashForward((float)player.getReferenceWorld().random.nextTriangular(2.5F, 0.3F));
|
|
player.subtractEnergyCost(4);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void apply(Pony player, Hit data) {
|
|
|
|
if (tryActivate(player) == null) {
|
|
return;
|
|
}
|
|
|
|
player.subtractEnergyCost(9);
|
|
player.addParticle(new OrientedBillboardParticleEffect(UParticles.RAINBOOM_RING, player.getPhysics().getMotionAngle()), player.getOriginVector(), Vec3d.ZERO);
|
|
SpellType.RAINBOOM.withTraits().apply(player);
|
|
}
|
|
|
|
@Override
|
|
public void preApply(Pony player, AbilitySlot slot) {
|
|
player.getMagicalReserves().getExertion().add(6);
|
|
}
|
|
|
|
@Override
|
|
public void postApply(Pony player, AbilitySlot slot) {
|
|
player.spawnParticles(MagicParticleEffect.UNICORN, 5);
|
|
}
|
|
}
|