2020-09-25 20:24:48 +02:00
|
|
|
package com.minelittlepony.unicopia.ability;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
import java.util.function.Predicate;
|
|
|
|
|
|
|
|
import com.minelittlepony.unicopia.AwaitTickQueue;
|
|
|
|
import com.minelittlepony.unicopia.EquinePredicates;
|
|
|
|
import com.minelittlepony.unicopia.Race;
|
|
|
|
import com.minelittlepony.unicopia.USounds;
|
|
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
2021-11-05 14:18:32 +01:00
|
|
|
import com.minelittlepony.unicopia.ability.magic.spell.effect.SpellType;
|
2021-08-19 14:43:15 +02:00
|
|
|
import com.minelittlepony.unicopia.advancement.UCriteria;
|
2020-09-25 20:24:48 +02:00
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
|
|
import com.minelittlepony.unicopia.util.MagicalDamageSource;
|
|
|
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.LivingEntity;
|
|
|
|
import net.minecraft.sound.SoundCategory;
|
|
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A magic casting ability for unicorns.
|
|
|
|
* (only shields for now)
|
|
|
|
*/
|
|
|
|
public class BatEeeeAbility implements Ability<Hit> {
|
|
|
|
|
2021-03-03 10:33:23 +01:00
|
|
|
private static final Predicate<Entity> HAS_SHIELD = EquinePredicates.carryingSpell(SpellType.SHIELD);
|
2020-09-25 20:24:48 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getWarmupTime(Pony player) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCooldownTime(Pony player) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-10-09 19:05:12 +02:00
|
|
|
@Override
|
|
|
|
public double getCostEstimate(Pony player) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-25 20:24:48 +02:00
|
|
|
@Override
|
|
|
|
public boolean canUse(Race race) {
|
|
|
|
return race == Race.BAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Hit tryActivate(Pony player) {
|
|
|
|
return Hit.INSTANCE;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Hit.Serializer<Hit> getSerializer() {
|
|
|
|
return Hit.SERIALIZER;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void apply(Pony player, Hit data) {
|
|
|
|
Random rng = player.getWorld().random;
|
|
|
|
int count = 1 + rng.nextInt(10);
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
2021-02-16 22:12:09 +01:00
|
|
|
player.getWorld().playSound(null, player.getOrigin(), USounds.ENTITY_PLAYER_BATPONY_SCREECH, SoundCategory.PLAYERS,
|
2020-09-25 20:24:48 +02:00
|
|
|
0.9F + (rng.nextFloat() - 0.5F) / 2F,
|
|
|
|
1.6F + (rng.nextFloat() - 0.5F)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
AwaitTickQueue.scheduleTask(player.getWorld(), w -> {
|
|
|
|
for (int i = 0; i < count; i++) {
|
2021-02-16 22:12:09 +01:00
|
|
|
player.getWorld().playSound(null, player.getOrigin(), USounds.ENTITY_PLAYER_BATPONY_SCREECH, SoundCategory.PLAYERS,
|
2020-09-25 20:24:48 +02:00
|
|
|
0.9F + (rng.nextFloat() - 0.5F) / 2F,
|
|
|
|
1.6F + (rng.nextFloat() - 0.5F)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}, rng.nextInt(10));
|
|
|
|
|
|
|
|
Vec3d origin = player.getOriginVector();
|
|
|
|
|
|
|
|
if (rng.nextInt(20000) == 0) {
|
2021-03-06 13:27:52 +01:00
|
|
|
player.getMaster().damage(MagicalDamageSource.create("eeee", player), 0.1F);
|
2021-08-19 14:43:15 +02:00
|
|
|
UCriteria.SCREECH_SELF.trigger(player.getMaster());
|
2020-09-25 20:24:48 +02:00
|
|
|
}
|
|
|
|
|
2021-08-19 14:43:15 +02:00
|
|
|
int total = player.findAllEntitiesInRange(5).mapToInt(e -> {
|
2020-09-25 20:24:48 +02:00
|
|
|
if (e instanceof LivingEntity && !HAS_SHIELD.test(e)) {
|
|
|
|
boolean isEarthPony = EquinePredicates.PLAYER_EARTH.test(e);
|
2021-03-06 13:27:52 +01:00
|
|
|
e.damage(MagicalDamageSource.create("eeee", player), isEarthPony ? 0.1F : 0.3F);
|
2020-09-25 20:24:48 +02:00
|
|
|
|
|
|
|
Vec3d knockVec = origin.subtract(e.getPos());
|
|
|
|
((LivingEntity) e).takeKnockback(isEarthPony ? 0.3F : 0.5F, knockVec.getX(), knockVec.getZ());
|
|
|
|
if (!isEarthPony) {
|
|
|
|
e.addVelocity(0, 0.1, 0);
|
|
|
|
}
|
|
|
|
}
|
2021-08-19 14:43:15 +02:00
|
|
|
return 1;
|
|
|
|
}).sum();
|
|
|
|
|
|
|
|
if (total >= 20) {
|
|
|
|
UCriteria.SCREECH_TWENTY_MOBS.trigger(player.getMaster());
|
|
|
|
}
|
2020-09-25 20:24:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void preApply(Pony player, AbilitySlot slot) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void postApply(Pony player, AbilitySlot slot) {
|
|
|
|
}
|
|
|
|
}
|