Twisted umbrella moss prototype

This commit is contained in:
paulevsGitch 2020-12-24 16:20:31 +03:00
parent 54e24d0ce7
commit fa0c2b1869
22 changed files with 1440 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package ru.betterend.blocks;
import java.util.Random;
import net.minecraft.block.BlockState;
import net.minecraft.entity.ItemEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.math.BlockPos;
import ru.betterend.blocks.basis.BlockDoublePlant;
import ru.betterend.registry.EndBlocks;
public class BlockTwistedUmbrellaMossTall extends BlockDoublePlant {
public BlockTwistedUmbrellaMossTall() {
super(12);
}
@Override
public void grow(ServerWorld world, Random random, BlockPos pos, BlockState state) {
ItemEntity item = new ItemEntity(world, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, new ItemStack(EndBlocks.TWISTED_UMBRELLA_MOSS));
world.spawnEntity(item);
}
@Override
protected boolean isTerrain(BlockState state) {
return state.getBlock() == EndBlocks.END_MOSS || state.getBlock() == EndBlocks.END_MYCELIUM;
}
}