66 lines
2.7 KiB
Java
66 lines
2.7 KiB
Java
package org.betterx.betterend.blocks;
|
|
|
|
import org.betterx.bclib.interfaces.tools.AddMineablePickaxe;
|
|
import org.betterx.bclib.util.BlocksHelper;
|
|
import org.betterx.betterend.blocks.basis.LitPillarBlock;
|
|
import org.betterx.betterend.registry.EndBlocks;
|
|
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.core.Direction;
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.util.RandomSource;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.level.block.Blocks;
|
|
import net.minecraft.world.level.block.SoundType;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
import net.minecraft.world.level.material.Fluids;
|
|
import net.minecraft.world.level.material.Material;
|
|
import net.minecraft.world.level.material.PushReaction;
|
|
import net.minecraft.world.level.storage.loot.LootContext;
|
|
|
|
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public class BuddingSmaragdantCrystalBlock extends LitPillarBlock implements AddMineablePickaxe {
|
|
public BuddingSmaragdantCrystalBlock() {
|
|
super(FabricBlockSettings.of(Material.GLASS)
|
|
.luminance(15)
|
|
.hardness(1F)
|
|
.resistance(1F)
|
|
.noOcclusion()
|
|
.sound(SoundType.AMETHYST)
|
|
.randomTicks());
|
|
}
|
|
|
|
@Override
|
|
public PushReaction getPistonPushReaction(BlockState blockState) {
|
|
return PushReaction.DESTROY;
|
|
}
|
|
|
|
@Override
|
|
public List<ItemStack> getDrops(BlockState state, LootContext.Builder builder) {
|
|
return Collections.emptyList();
|
|
}
|
|
|
|
@SuppressWarnings("deprecation")
|
|
@Override
|
|
public void randomTick(BlockState blockState, ServerLevel world, BlockPos pos, RandomSource random) {
|
|
Direction dir = BlocksHelper.randomDirection(random);
|
|
BlockPos side = pos.relative(dir);
|
|
BlockState sideState = world.getBlockState(side);
|
|
if (random.nextInt(20) == 0) {
|
|
if (canShardGrowAtState(sideState)) {
|
|
BlockState shard = EndBlocks.SMARAGDANT_CRYSTAL_SHARD.defaultBlockState()
|
|
.setValue(SmaragdantCrystalShardBlock.WATERLOGGED, sideState.getFluidState().getType() == Fluids.WATER)
|
|
.setValue(SmaragdantCrystalShardBlock.FACING, dir);
|
|
world.setBlockAndUpdate(side, shard);
|
|
}
|
|
}
|
|
}
|
|
|
|
public static boolean canShardGrowAtState(BlockState blockState) {
|
|
return blockState.isAir() || blockState.is(Blocks.WATER) && blockState.getFluidState().getAmount() == 8;
|
|
}
|
|
}
|