mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
124 lines
3.7 KiB
Java
124 lines
3.7 KiB
Java
package com.minelittlepony.unicopia.ability;
|
|
|
|
import java.util.Optional;
|
|
|
|
import com.minelittlepony.unicopia.Race;
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
|
import com.minelittlepony.unicopia.ability.data.Pos;
|
|
import com.minelittlepony.unicopia.block.UBlocks;
|
|
import com.minelittlepony.unicopia.entity.mob.TentacleEntity;
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
import com.minelittlepony.unicopia.particle.MagicParticleEffect;
|
|
import com.minelittlepony.unicopia.util.TraceHelper;
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.block.Blocks;
|
|
import net.minecraft.block.FarmlandBlock;
|
|
import net.minecraft.item.BoneMealItem;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.item.Items;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.util.math.Direction;
|
|
import net.minecraft.world.World;
|
|
|
|
/**
|
|
* Earth Pony ability to grow crops
|
|
*/
|
|
public class EarthPonyGrowAbility implements Ability<Pos> {
|
|
|
|
@Override
|
|
public int getWarmupTime(Pony player) {
|
|
return 10;
|
|
}
|
|
|
|
@Override
|
|
public int getCooldownTime(Pony player) {
|
|
return 50;
|
|
}
|
|
|
|
@Override
|
|
public boolean canUse(Race race) {
|
|
return race.canUseEarth();
|
|
}
|
|
|
|
@Override
|
|
public Optional<Pos> prepare(Pony player) {
|
|
return TraceHelper.findBlock(player.asEntity(), 3, 1).map(Pos::new);
|
|
}
|
|
|
|
@Override
|
|
public Hit.Serializer<Pos> getSerializer() {
|
|
return Pos.SERIALIZER;
|
|
}
|
|
|
|
@Override
|
|
public double getCostEstimate(Pony player) {
|
|
return 10;
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Pony player, Pos data) {
|
|
int count = 0;
|
|
|
|
for (BlockPos pos : BlockPos.iterate(
|
|
data.pos().add(-2, -2, -2),
|
|
data.pos().add( 2, 2, 2))) {
|
|
count += applySingle(player.asWorld(), player.asWorld().getBlockState(pos), pos);
|
|
}
|
|
|
|
if (count > 0) {
|
|
player.subtractEnergyCost(count / 5D);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
protected int applySingle(World w, BlockState state, BlockPos pos) {
|
|
|
|
ItemStack stack = new ItemStack(Items.BONE_MEAL);
|
|
|
|
if (state.getBlock() instanceof Growable growable) {
|
|
return growable.grow(w, state, pos) ? 1 : 0;
|
|
}
|
|
|
|
if (BoneMealItem.useOnFertilizable(stack, w, pos)) {
|
|
if (w.random.nextInt(350) == 0) {
|
|
if (w.getBlockState(pos.down()).isOf(Blocks.FARMLAND)) {
|
|
w.setBlockState(pos.down(), Blocks.DIRT.getDefaultState());
|
|
}
|
|
w.setBlockState(pos, UBlocks.PLUNDER_VINE_BUD.getDefaultState());
|
|
} else if (w.random.nextInt(5000) == 0 || w.getBlockState(pos).isOf(UBlocks.CURING_JOKE)) {
|
|
if (w.getBlockState(pos.down()).isOf(Blocks.FARMLAND)) {
|
|
FarmlandBlock.setToDirt(null, state, w, pos.down());
|
|
}
|
|
w.breakBlock(pos, false);
|
|
TentacleEntity tentacle = new TentacleEntity(w, pos);
|
|
tentacle.updatePositionAndAngles(pos.getX() + 0.5, pos.getY(), pos.getZ() + 0.5, 0, 0);
|
|
w.spawnEntity(tentacle);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
if (BoneMealItem.useOnGround(stack, w, pos, Direction.UP)) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void warmUp(Pony player, AbilitySlot slot) {
|
|
player.getMagicalReserves().getExertion().addPercent(30);
|
|
|
|
if (player.asWorld().isClient()) {
|
|
player.spawnParticles(MagicParticleEffect.UNICORN, 1);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void coolDown(Pony player, AbilitySlot slot) {
|
|
|
|
}
|
|
|
|
public interface Growable {
|
|
boolean grow(World world, BlockState state, BlockPos pos);
|
|
}
|
|
}
|