Jump to content

How can you make a Food Item placable?


MonsieurHannes

Recommended Posts

Hi lads,
im working on a mod right now, and it hasĀ beers which can be consumed and placed, for this the coder used an extension of the BushBlock (Sweetberry bush), however, we decided that placing it with Shift+M2 would be way nicer, unfortunately, he says that using an extension, that part isn't changeable.

How would one write the M2=Consume Shift+M2=Place mechanic without basing it off the BushBlock?

Thanks in advance

Here's the Code:

package net.the_goldbeards.lootdebugs.Block.Drinks;

import net.minecraft.core.BlockPos;
import net.minecraft.world.item.context.BlockPlaceContext;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.LevelAccessor;
import net.minecraft.world.level.block.*;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.StateDefinition;
import net.minecraft.world.level.block.state.properties.DirectionProperty;
import net.minecraft.world.phys.shapes.CollisionContext;
import net.minecraft.world.phys.shapes.Shapes;
import net.minecraft.world.phys.shapes.VoxelShape;
import net.the_goldbeards.lootdebugs.util.ModTags;
import org.jetbrains.annotations.Nullable;
public class LeafLoverSpecialBlock extends BushBlock {

    public LeafLoverSpecialBlock(Properties properties) {
        super(properties);
    }
    private static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING;

    private static final VoxelShape SHAPE_N =Shapes.or(
            Block.box(2, 4.9, 7.5, 4, 5.932, 8.5),
            Block.box(2.25, 1.6799999999999997, 7.5, 3.25, 5.58, 8.5),
            Block.box(3.405899999999999, 5.1, 7.5, 5, 6.1, 8.5),
            Block.box(2.3360000000000003, 1.0999999999999996, 7.5, 5.5, 2.0999999999999996, 8.5),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(9.75, 1, 7.25, 11.25, 7.25, 8.75),
            Block.box(4.75, 1, 7.25, 6.25, 7.25, 8.75),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(10, 6, 6.9, 11.100000000000001, 7, 9.1),
            Block.box(10, 6, 6.9, 11.100000000000001, 7, 9.1),
            Block.box(6.899999999999999, 6, 10, 9.100000000000001, 7, 11.100000000000001),
            Block.box(6.899999999999999, 6, 10, 9.100000000000001, 7, 11.100000000000001),
            Block.box(6.899999999999999, 6, 4.899999999999999, 9.100000000000001, 7, 6),
            Block.box(6.899999999999999, 6, 4.899999999999999, 9.100000000000001, 7, 6),
            Block.box(4.9, 6, 6.9, 6, 7, 9.1),
            Block.box(4.9, 6, 6.9, 6, 7, 9.1),
            Block.box(7, 0, 9.75, 9, 1, 10.85),
            Block.box(7, 0, 9.75, 9, 1, 10.85),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(9.75, 0, 7, 10.850000000000001, 1, 9),
            Block.box(9.75, 0, 7, 10.850000000000001, 1, 9),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(6, 0.1, 6, 10, 1.1, 10),
            Block.box(7, 1, 10.5, 9, 2, 11.5),
            Block.box(9.100000000000001, 3.75, 10.5, 10.299999999999997, 5, 11.5),
            Block.box(8.950000000000003, 2.5, 10.5, 9.95, 3.75, 11.5),
            Block.box(8.700000000000003, 1.5, 10.5, 9.7, 2.5, 11.5),
            Block.box(6.300000000000001, 1.5, 10.5, 7.299999999999997, 2.5, 11.5),
            Block.box(6.050000000000001, 2.5, 10.5, 7.049999999999997, 3.75, 11.5),
            Block.box(5.699999999999999, 3.75, 10.5, 6.899999999999999, 5, 11.5),
            Block.box(6.399999999999999, 4.5, 10.5, 9.600000000000001, 5.5, 11.5),
            Block.box(6.399999999999999, 4.5, 4.5, 9.600000000000001, 5.5, 5.5),
            Block.box(5.699999999999999, 3.75, 4.5, 6.899999999999999, 5, 5.5),
            Block.box(6.050000000000001, 2.5, 4.5, 7.049999999999997, 3.75, 5.5),
            Block.box(7, 1, 4.5, 9, 2, 5.5),
            Block.box(9.100000000000001, 3.75, 4.5, 10.299999999999997, 5, 5.5),
            Block.box(8.950000000000003, 2.5, 4.5, 9.95, 3.75, 5.5),
            Block.box(8.700000000000003, 1.5, 4.5, 9.7, 2.5, 5.5),
            Block.box(6.300000000000001, 1.5, 4.5, 7.299999999999997, 2.5, 5.5),
            Block.box(5, 7, 6, 9, 9, 9),
            Block.box(6, 1, 6, 10, 8, 10),
            Block.box(6, 5.1, 5, 9, 8, 11)
    );

    private static final VoxelShape SHAPE_E =Shapes.or(
            Block.box(7.5, 4.9, 2, 8.5, 5.932, 4),
            Block.box(7.5, 1.6799999999999997, 2.25, 8.5, 5.58, 3.25),
            Block.box(7.5, 5.1, 3.405899999999999, 8.5, 6.1, 5),
            Block.box(7.5, 1.0999999999999996, 2.3360000000000003, 8.5, 2.0999999999999996, 5.5),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(7.25, 1, 9.75, 8.75, 7.25, 11.25),
            Block.box(7.25, 1, 4.75, 8.75, 7.25, 6.25),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(6.9, 6, 10, 9.1, 7, 11.100000000000001),
            Block.box(6.9, 6, 10, 9.1, 7, 11.100000000000001),
            Block.box(4.899999999999999, 6, 6.899999999999999, 6, 7, 9.100000000000001),
            Block.box(4.899999999999999, 6, 6.899999999999999, 6, 7, 9.100000000000001),
            Block.box(10, 6, 6.899999999999999, 11.100000000000001, 7, 9.100000000000001),
            Block.box(10, 6, 6.899999999999999, 11.100000000000001, 7, 9.100000000000001),
            Block.box(6.9, 6, 4.9, 9.1, 7, 6),
            Block.box(6.9, 6, 4.9, 9.1, 7, 6),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(7, 0, 9.75, 9, 1, 10.850000000000001),
            Block.box(7, 0, 9.75, 9, 1, 10.850000000000001),
            Block.box(9.75, 0, 7, 10.85, 1, 9),
            Block.box(9.75, 0, 7, 10.85, 1, 9),
            Block.box(6, 0.1, 6, 10, 1.1, 10),
            Block.box(4.5, 1, 7, 5.5, 2, 9),
            Block.box(4.5, 3.75, 9.100000000000001, 5.5, 5, 10.299999999999997),
            Block.box(4.5, 2.5, 8.950000000000003, 5.5, 3.75, 9.95),
            Block.box(4.5, 1.5, 8.700000000000003, 5.5, 2.5, 9.7),
            Block.box(4.5, 1.5, 6.300000000000001, 5.5, 2.5, 7.299999999999997),
            Block.box(4.5, 2.5, 6.050000000000001, 5.5, 3.75, 7.049999999999997),
            Block.box(4.5, 3.75, 5.699999999999999, 5.5, 5, 6.899999999999999),
            Block.box(4.5, 4.5, 6.399999999999999, 5.5, 5.5, 9.600000000000001),
            Block.box(10.5, 4.5, 6.399999999999999, 11.5, 5.5, 9.600000000000001),
            Block.box(10.5, 3.75, 5.699999999999999, 11.5, 5, 6.899999999999999),
            Block.box(10.5, 2.5, 6.050000000000001, 11.5, 3.75, 7.049999999999997),
            Block.box(10.5, 1, 7, 11.5, 2, 9),
            Block.box(10.5, 3.75, 9.100000000000001, 11.5, 5, 10.299999999999997),
            Block.box(10.5, 2.5, 8.950000000000003, 11.5, 3.75, 9.95),
            Block.box(10.5, 1.5, 8.700000000000003, 11.5, 2.5, 9.7),
            Block.box(10.5, 1.5, 6.300000000000001, 11.5, 2.5, 7.299999999999997),
            Block.box(7, 7, 5, 10, 9, 9),
            Block.box(6, 1, 6, 10, 8, 10),
            Block.box(5, 5.1, 6, 11, 8, 9)
    );

    private static final VoxelShape SHAPE_S =Shapes.or(
            Block.box(12, 4.9, 7.5, 14, 5.932, 8.5),
            Block.box(12.75, 1.6799999999999997, 7.5, 13.75, 5.58, 8.5),
            Block.box(11, 5.1, 7.5, 12.594100000000001, 6.1, 8.5),
            Block.box(10.5, 1.0999999999999996, 7.5, 13.664, 2.0999999999999996, 8.5),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(7, 1, 5, 9, 6, 6),
            Block.box(7, 1, 10, 9, 6, 11),
            Block.box(5, 1, 7, 6, 6, 9),
            Block.box(4.75, 1, 7.25, 6.25, 7.25, 8.75),
            Block.box(9.75, 1, 7.25, 11.25, 7.25, 8.75),
            Block.box(10, 1, 7, 11, 6, 9),
            Block.box(4.9, 6, 6.9, 6, 7, 9.1),
            Block.box(4.9, 6, 6.9, 6, 7, 9.1),
            Block.box(6.9, 6, 4.9, 9.1, 7, 6),
            Block.box(6.9, 6, 4.9, 9.1, 7, 6),
            Block.box(6.9, 6, 10, 9.1, 7, 11.1),
            Block.box(6.9, 6, 10, 9.1, 7, 11.1),
            Block.box(10, 6, 6.9, 11.1, 7, 9.1),
            Block.box(10, 6, 6.9, 11.1, 7, 9.1),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(7, 0, 5.15, 9, 1, 6.25),
            Block.box(9.75, 0, 7, 10.85, 1, 9),
            Block.box(9.75, 0, 7, 10.85, 1, 9),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(5.15, 0, 7, 6.25, 1, 9),
            Block.box(7, 0, 9.75, 9, 1, 10.85),
            Block.box(7, 0, 9.75, 9, 1, 10.85),
            Block.box(6, 0.1, 6, 10, 1.1, 10),
            Block.box(7.000000000000002, 1, 4.5, 9, 2, 5.5),
            Block.box(5.700000000000001, 3.75, 4.5, 6.899999999999999, 5, 5.5),
            Block.box(6.050000000000001, 2.5, 4.5, 7.049999999999999, 3.75, 5.5),
            Block.box(6.300000000000001, 1.5, 4.5, 7.299999999999999, 2.5, 5.5),
            Block.box(8.700000000000001, 1.5, 4.5, 9.7, 2.5, 5.5),
            Block.box(8.950000000000001, 2.5, 4.5, 9.95, 3.75, 5.5),
            Block.box(9.100000000000001, 3.75, 4.5, 10.3, 5, 5.5),
            Block.box(6.4, 4.5, 4.5, 9.6, 5.5, 5.5),
            Block.box(6.4, 4.5, 10.5, 9.6, 5.5, 11.5),
            Block.box(9.100000000000001, 3.75, 10.5, 10.3, 5, 11.5),
            Block.box(8.950000000000001, 2.5, 10.5, 9.95, 3.75, 11.5),
            Block.box(7.000000000000002, 1, 10.5, 9, 2, 11.5),
            Block.box(5.700000000000001, 3.75, 10.5, 6.899999999999999, 5, 11.5),
            Block.box(6.050000000000001, 2.5, 10.5, 7.049999999999999, 3.75, 11.5),
            Block.box(6.300000000000001, 1.5, 10.5, 7.299999999999999, 2.5, 11.5),
            Block.box(8.700000000000001, 1.5, 10.5, 9.7, 2.5, 11.5),
            Block.box(7, 7, 7, 11, 9, 10),
            Block.box(6, 1, 6, 10, 8, 10),
            Block.box(7, 5.1, 5, 10, 8, 11)
    );

    private static final VoxelShape SHAPE_W =
            Shapes.or(
                    Block.box(7.5, 4.9, 12, 8.5, 5.932, 14),
                    Block.box(7.5, 1.6799999999999997, 12.75, 8.5, 5.58, 13.75),
                    Block.box(7.5, 5.1, 11, 8.5, 6.1, 12.594100000000001),
                    Block.box(7.5, 1.0999999999999996, 10.5, 8.5, 2.0999999999999996, 13.664),
                    Block.box(7, 1, 10, 9, 6, 11),
                    Block.box(7, 1, 5, 9, 6, 6),
                    Block.box(10, 1, 7, 11, 6, 9),
                    Block.box(5, 1, 7, 6, 6, 9),
                    Block.box(10, 1, 7, 11, 6, 9),
                    Block.box(5, 1, 7, 6, 6, 9),
                    Block.box(7, 1, 5, 9, 6, 6),
                    Block.box(7.25, 1, 4.75, 8.75, 7.25, 6.25),
                    Block.box(7.25, 1, 9.75, 8.75, 7.25, 11.25),
                    Block.box(7, 1, 10, 9, 6, 11),
                    Block.box(6.9, 6, 4.899999999999999, 9.1, 7, 6),
                    Block.box(6.9, 6, 4.899999999999999, 9.1, 7, 6),
                    Block.box(10, 6, 6.899999999999999, 11.100000000000001, 7, 9.100000000000001),
                    Block.box(10, 6, 6.899999999999999, 11.100000000000001, 7, 9.100000000000001),
                    Block.box(4.899999999999999, 6, 6.899999999999999, 6, 7, 9.100000000000001),
                    Block.box(4.899999999999999, 6, 6.899999999999999, 6, 7, 9.100000000000001),
                    Block.box(6.9, 6, 10, 9.1, 7, 11.1),
                    Block.box(6.9, 6, 10, 9.1, 7, 11.1),
                    Block.box(9.75, 0, 7, 10.85, 1, 9),
                    Block.box(9.75, 0, 7, 10.85, 1, 9),
                    Block.box(7, 0, 9.75, 9, 1, 10.85),
                    Block.box(7, 0, 9.75, 9, 1, 10.85),
                    Block.box(7, 0, 5.149999999999999, 9, 1, 6.25),
                    Block.box(7, 0, 5.149999999999999, 9, 1, 6.25),
                    Block.box(5.15, 0, 7, 6.25, 1, 9),
                    Block.box(5.15, 0, 7, 6.25, 1, 9),
                    Block.box(6, 0.1, 6, 10, 1.1, 10),
                    Block.box(10.5, 1, 7, 11.5, 2, 9),
                    Block.box(10.5, 3.75, 5.700000000000003, 11.5, 5, 6.899999999999999),
                    Block.box(10.5, 2.5, 6.050000000000001, 11.5, 3.75, 7.049999999999997),
                    Block.box(10.5, 1.5, 6.300000000000001, 11.5, 2.5, 7.299999999999997),
                    Block.box(10.5, 1.5, 8.700000000000003, 11.5, 2.5, 9.7),
                    Block.box(10.5, 2.5, 8.950000000000003, 11.5, 3.75, 9.95),
                    Block.box(10.5, 3.75, 9.100000000000001, 11.5, 5, 10.3),
                    Block.box(10.5, 4.5, 6.399999999999999, 11.5, 5.5, 9.600000000000001),
                    Block.box(4.5, 4.5, 6.399999999999999, 5.5, 5.5, 9.600000000000001),
                    Block.box(4.5, 3.75, 9.100000000000001, 5.5, 5, 10.3),
                    Block.box(4.5, 2.5, 8.950000000000003, 5.5, 3.75, 9.95),
                    Block.box(4.5, 1, 7, 5.5, 2, 9),
                    Block.box(4.5, 3.75, 5.700000000000003, 5.5, 5, 6.899999999999999),
                    Block.box(4.5, 2.5, 6.050000000000001, 5.5, 3.75, 7.049999999999997),
                    Block.box(4.5, 1.5, 6.300000000000001, 5.5, 2.5, 7.299999999999997),
                    Block.box(4.5, 1.5, 8.700000000000003, 5.5, 2.5, 9.7),
                    Block.box(6, 7, 7, 9, 9, 11),
                    Block.box(6, 1, 6, 10, 8, 10),
                    Block.box(5, 5.1, 7, 11, 8, 10)
            );
    @Override
    public VoxelShape getShape(BlockState state, BlockGetter p_60556_, BlockPos p_60557_, CollisionContext p_60558_) {
        switch (state.getValue(FACING))
        {
            case NORTH:
                return SHAPE_N;

            case EAST:
                return SHAPE_E;

            case WEST:
                return SHAPE_W;

            case SOUTH:
                return SHAPE_S;

            default:
                return SHAPE_N;
        }
    }


    @Nullable
    @Override
    public BlockState getStateForPlacement(BlockPlaceContext context) {
        return this.defaultBlockState().setValue(FACING,context.getHorizontalDirection().getOpposite());
    }

    @Override
    public BlockState rotate(BlockState state, LevelAccessor world, BlockPos pos, Rotation rot) {
        return state.setValue(FACING, rot.rotate(state.getValue(FACING)));
    }

    @Override
    public BlockState mirror(BlockState state, Mirror mirrorIn) {
        return state.rotate(mirrorIn.getRotation(state.getValue(FACING)));
    }

    @Override
    protected boolean mayPlaceOn(BlockState pState, BlockGetter pLevel, BlockPos pPos) {
        return !pState.is(ModTags.Blocks.BEER_CAN_PLACE_ON);
    }

    @Override
    protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> builder) {
        builder.add(FACING);
    }
}
Edited by MonsieurHannes
Link to comment
Share on other sites

Your coder needs to extend the relevantĀ itemĀ class to get the behavior you want. I assume that vanilla has a special item class for the sweet berries already and it's just a matter of either using this item for your block, or extending it.

But yes, showing the current code will help us address the problem.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.Ā  If you think this is the case, JUST REPORT ME.Ā  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

Ā 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

Ā 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Hi, the Coder here,

we have an block, that should only be placed, when the Player is crouching. I've extended the Class with BushBlock, because i need theĀ mayPlaceOn method.

An example Class:
Ā 

package net.the_goldbeards.lootdebugs.Block.Drinks;

import net.minecraft.core.BlockPos;
import net.minecraft.world.item.context.BlockPlaceContext;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.LevelAccessor;
import net.minecraft.world.level.block.*;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.StateDefinition;
import net.minecraft.world.level.block.state.properties.DirectionProperty;
import net.minecraft.world.phys.shapes.CollisionContext;
import net.minecraft.world.phys.shapes.Shapes;
import net.minecraft.world.phys.shapes.VoxelShape;
import net.the_goldbeards.lootdebugs.util.ModTags;
import org.jetbrains.annotations.Nullable;

public class GlyphidSlammerBlock extends BushBlock {

    public GlyphidSlammerBlock(Properties properties) {
        super(properties);
    }
    private static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING;

    private static final VoxelShape SHAPE_N = Shapes.or(
            Block.box(2.226120000000001, 4.9, 6.999999999999998, 4.97612, 6, 8.999999999999998),
            Block.box(2.726120000000001, 5.75, 7.499999999999998, 3.726120000000001, 6.75, 8.499999999999998),
            Block.box(2.476120000000001, 5.551115123125783e-17, 7.499999999999998, 3.476120000000001, 1, 8.499999999999998),
            Block.box(2.476120000000001, 3.1500000000000004, 7.499999999999998, 3.976120000000001, 4.9, 8.499999999999998),
            Block.box(1.9761200000000012, 0.7500000000000004, 7.399999999999999, 3.976120000000001, 2.7500000000000004, 8.599999999999998),
            Block.box(1.8761200000000016, 1.5000000000000004, 7.299999999999999, 4.076120000000001, 2.8000000000000007, 8.699999999999998),
            Block.box(2.1261200000000016, 2.3, 7.399999999999999, 4.076120000000001, 3.3, 8.599999999999998),
            Block.box(4.97612, 0, 6.999999999999998, 5.97612, 7, 8.999999999999998),
            Block.box(9.97612, 0, 6.999999999999998, 10.97612, 7, 8.999999999999998),
            Block.box(6.87612, 5, 9.899999999999999, 9.076119999999998, 6.6, 11.499999999999998),
            Block.box(6.87612, 5, 9.899999999999999, 9.076119999999998, 6.6, 11.499999999999998),
            Block.box(4.47612, 5, 6.899999999999999, 6.0761199999999995, 6.6, 9.099999999999998),
            Block.box(6.87612, 5, 9.899999999999999, 9.076119999999998, 6.6, 11.499999999999998),
            Block.box(6.87612, 5, 4.499999999999998, 9.076119999999998, 6.6, 6.099999999999998),
            Block.box(6.87612, 5, 4.499999999999998, 9.076119999999998, 6.6, 6.099999999999998),
            Block.box(9.876120000000002, 5, 6.899999999999999, 11.47612, 6.6, 9.099999999999998),
            Block.box(4.47612, 5, 6.899999999999999, 6.0761199999999995, 6.6, 9.099999999999998),
            Block.box(4.72612, 6.1, 6.799999999999999, 6.0761199999999995, 7.1, 9.199999999999998),
            Block.box(6.776120000000001, 6.1, 9.899999999999999, 9.17612, 7.1, 11.249999999999998),
            Block.box(9.876120000000002, 6.1, 6.799999999999999, 11.22612, 7.1, 9.199999999999998),
            Block.box(6.776120000000001, 6.1, 9.899999999999999, 9.17612, 7.1, 11.249999999999998),
            Block.box(4.72612, 6.1, 6.799999999999999, 6.0761199999999995, 7.1, 9.199999999999998),
            Block.box(4.72612, 6.1, 6.799999999999999, 6.0761199999999995, 7.1, 9.199999999999998),
            Block.box(6.776120000000001, 6.1, 4.749999999999998, 9.17612, 7.1, 6.099999999999998),
            Block.box(6.776120000000001, 6.1, 4.749999999999998, 9.17612, 7.1, 6.099999999999998),
            Block.box(4.72612, -3.608224830031759e-16, 6.799999999999999, 6.0761199999999995, 0.9999999999999997, 9.199999999999998),
            Block.box(4.72612, -3.608224830031759e-16, 6.799999999999999, 6.0761199999999995, 0.9999999999999997, 9.199999999999998),
            Block.box(6.776120000000001, -3.608224830031759e-16, 4.749999999999998, 9.17612, 0.9999999999999997, 6.099999999999998),
            Block.box(6.776120000000001, -3.608224830031759e-16, 4.749999999999998, 9.17612, 0.9999999999999997, 6.099999999999998),
            Block.box(4.72612, -3.608224830031759e-16, 6.799999999999999, 6.0761199999999995, 0.9999999999999997, 9.199999999999998),
            Block.box(6.776120000000001, -3.608224830031759e-16, 9.899999999999999, 9.17612, 0.9999999999999997, 11.249999999999998),
            Block.box(6.776120000000001, -3.608224830031759e-16, 9.899999999999999, 9.17612, 0.9999999999999997, 11.249999999999998),
            Block.box(9.876120000000002, -3.608224830031759e-16, 6.799999999999999, 11.22612, 0.9999999999999997, 9.199999999999998),
            Block.box(6.87612, 0.25, 4.499999999999998, 9.076119999999998, 1.8499999999999996, 5.999999999999998),
            Block.box(6.87612, 0.25, 4.499999999999998, 9.076119999999998, 1.8499999999999996, 5.999999999999998),
            Block.box(9.97612, 0.25, 6.899999999999999, 11.47612, 1.8499999999999996, 9.099999999999998),
            Block.box(4.47612, 0.25, 6.899999999999999, 5.97612, 1.8499999999999996, 9.099999999999998),
            Block.box(6.87612, 0.25, 9.999999999999998, 9.076119999999998, 1.8499999999999996, 11.499999999999998),
            Block.box(6.87612, 0.25, 9.999999999999998, 9.076119999999998, 1.8499999999999996, 11.499999999999998),
            Block.box(7.47612, 3.9999999999999996, 10.399999999999999, 8.47612, 5, 11.399999999999999),
            Block.box(7.47612, 3.9999999999999996, 10.399999999999999, 8.47612, 5, 11.399999999999999),
            Block.box(10.376120000000002, 3.9999999999999996, 7.499999999999998, 11.376120000000002, 5, 8.499999999999998),
            Block.box(10.376120000000002, 3.9999999999999996, 7.499999999999998, 11.376120000000002, 5, 8.499999999999998),
            Block.box(4.5761199999999995, 3.9999999999999996, 7.499999999999998, 5.5761199999999995, 5, 8.499999999999998),
            Block.box(4.5761199999999995, 3.9999999999999996, 7.499999999999998, 5.5761199999999995, 5, 8.499999999999998),
            Block.box(7.47612, 3.9999999999999996, 4.599999999999998, 8.47612, 5, 5.599999999999998),
            Block.box(7.47612, 3.9999999999999996, 4.599999999999998, 8.47612, 5, 5.599999999999998),
            Block.box(7.47612, 1.8499999999999996, 10.399999999999999, 8.47612, 2.8499999999999996, 11.399999999999999),
            Block.box(7.47612, 1.8499999999999996, 10.399999999999999, 8.47612, 2.8499999999999996, 11.399999999999999),
            Block.box(10.376120000000002, 1.8499999999999996, 7.499999999999998, 11.376120000000002, 2.8499999999999996, 8.499999999999998),
            Block.box(10.376120000000002, 1.8499999999999996, 7.499999999999998, 11.376120000000002, 2.8499999999999996, 8.499999999999998),
            Block.box(7.47612, 1.8499999999999996, 10.399999999999999, 8.47612, 2.8499999999999996, 11.399999999999999),
            Block.box(4.5761199999999995, 1.8499999999999996, 7.499999999999998, 5.5761199999999995, 2.8499999999999996, 8.499999999999998),
            Block.box(7.47612, 1.8499999999999996, 4.599999999999998, 8.47612, 2.8499999999999996, 5.599999999999998),
            Block.box(6.87612, 0.25, 9.999999999999998, 9.076119999999998, 1.8499999999999996, 11.499999999999998),
            Block.box(4.47612, 0.25, 6.899999999999999, 5.97612, 1.8499999999999996, 9.099999999999998),
            Block.box(6.97612, 0, 9.999999999999998, 8.97612, 7, 10.999999999999998),
            Block.box(6.97612, 0, 4.999999999999998, 8.97612, 7, 5.999999999999998),
            Block.box(6.97612, 0, 9.999999999999998, 8.97612, 7, 10.999999999999998),
            Block.box(6.97612, 0, 4.999999999999998, 8.97612, 7, 5.999999999999998),
            Block.box(9.97612, 0, 6.999999999999998, 10.97612, 7, 8.999999999999998),
            Block.box(4.97612, 0, 6.999999999999998, 5.97612, 7, 8.999999999999998),
            Block.box(5.97612, 0.1, 5.999999999999998, 9.97612, 1.1, 9.999999999999998),
            Block.box(4.97612, 7, 5.999999999999998, 8.97612, 9, 8.999999999999998),
            Block.box(5.97612, 1, 5.999999999999998, 9.97612, 8, 9.999999999999998),
            Block.box(5.97612, 5.1, 4.999999999999998, 8.97612, 8, 10.999999999999998)
    );

    private static final VoxelShape SHAPE_E = Shapes.or(
            Block.box(7.03806, 4.9, 2.2880599999999998, 9.03806, 6, 5.038059999999998),
            Block.box(7.53806, 5.75, 2.7880599999999998, 8.53806, 6.75, 3.7880599999999998),
            Block.box(7.53806, 5.551115123125783e-17, 2.5380599999999998, 8.53806, 1, 3.5380599999999998),
            Block.box(7.53806, 3.1500000000000004, 2.5380599999999998, 8.53806, 4.9, 4.03806),
            Block.box(7.43806, 0.7500000000000004, 2.0380599999999998, 8.63806, 2.7500000000000004, 4.03806),
            Block.box(7.3380600000000005, 1.5000000000000004, 1.9380600000000001, 8.738059999999999, 2.8000000000000007, 4.1380599999999985),
            Block.box(7.43806, 2.3, 2.18806, 8.63806, 3.3, 4.1380599999999985),
            Block.box(7.03806, 0, 5.038059999999998, 9.03806, 7, 6.038059999999998),
            Block.box(7.03806, 0, 10.038059999999998, 9.03806, 7, 11.038059999999998),
            Block.box(4.53806, 5, 6.938059999999998, 6.138059999999999, 6.6, 9.138059999999996),
            Block.box(4.53806, 5, 6.938059999999998, 6.138059999999999, 6.6, 9.138059999999996),
            Block.box(6.93806, 5, 4.538059999999998, 9.13806, 6.6, 6.138059999999998),
            Block.box(4.53806, 5, 6.938059999999998, 6.138059999999999, 6.6, 9.138059999999996),
            Block.box(9.93806, 5, 6.938059999999998, 11.53806, 6.6, 9.138059999999996),
            Block.box(9.93806, 5, 6.938059999999998, 11.53806, 6.6, 9.138059999999996),
            Block.box(6.93806, 5, 9.93806, 9.13806, 6.6, 11.538059999999998),
            Block.box(6.93806, 5, 4.538059999999998, 9.13806, 6.6, 6.138059999999998),
            Block.box(6.8380600000000005, 6.1, 4.788059999999998, 9.238059999999999, 7.1, 6.138059999999998),
            Block.box(4.78806, 6.1, 6.838059999999999, 6.138059999999999, 7.1, 9.238059999999997),
            Block.box(6.8380600000000005, 6.1, 9.93806, 9.238059999999999, 7.1, 11.288059999999998),
            Block.box(4.78806, 6.1, 6.838059999999999, 6.138059999999999, 7.1, 9.238059999999997),
            Block.box(6.8380600000000005, 6.1, 4.788059999999998, 9.238059999999999, 7.1, 6.138059999999998),
            Block.box(6.8380600000000005, 6.1, 4.788059999999998, 9.238059999999999, 7.1, 6.138059999999998),
            Block.box(9.93806, 6.1, 6.838059999999999, 11.28806, 7.1, 9.238059999999997),
            Block.box(9.93806, 6.1, 6.838059999999999, 11.28806, 7.1, 9.238059999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 4.788059999999998, 9.238059999999999, 0.9999999999999997, 6.138059999999998),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 4.788059999999998, 9.238059999999999, 0.9999999999999997, 6.138059999999998),
            Block.box(9.93806, -3.608224830031759e-16, 6.838059999999999, 11.28806, 0.9999999999999997, 9.238059999999997),
            Block.box(9.93806, -3.608224830031759e-16, 6.838059999999999, 11.28806, 0.9999999999999997, 9.238059999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 4.788059999999998, 9.238059999999999, 0.9999999999999997, 6.138059999999998),
            Block.box(4.78806, -3.608224830031759e-16, 6.838059999999999, 6.138059999999999, 0.9999999999999997, 9.238059999999997),
            Block.box(4.78806, -3.608224830031759e-16, 6.838059999999999, 6.138059999999999, 0.9999999999999997, 9.238059999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 9.93806, 9.238059999999999, 0.9999999999999997, 11.288059999999998),
            Block.box(10.03806, 0.25, 6.938059999999998, 11.53806, 1.8499999999999996, 9.138059999999996),
            Block.box(10.03806, 0.25, 6.938059999999998, 11.53806, 1.8499999999999996, 9.138059999999996),
            Block.box(6.93806, 0.25, 10.038059999999998, 9.13806, 1.8499999999999996, 11.538059999999998),
            Block.box(6.93806, 0.25, 4.538059999999998, 9.13806, 1.8499999999999996, 6.038059999999998),
            Block.box(4.53806, 0.25, 6.938059999999998, 6.03806, 1.8499999999999996, 9.138059999999996),
            Block.box(4.53806, 0.25, 6.938059999999998, 6.03806, 1.8499999999999996, 9.138059999999996),
            Block.box(4.638059999999999, 3.9999999999999996, 7.538059999999998, 5.638059999999999, 5, 8.538059999999998),
            Block.box(4.638059999999999, 3.9999999999999996, 7.538059999999998, 5.638059999999999, 5, 8.538059999999998),
            Block.box(7.53806, 3.9999999999999996, 10.43806, 8.53806, 5, 11.43806),
            Block.box(7.53806, 3.9999999999999996, 10.43806, 8.53806, 5, 11.43806),
            Block.box(7.53806, 3.9999999999999996, 4.638059999999998, 8.53806, 5, 5.638059999999998),
            Block.box(7.53806, 3.9999999999999996, 4.638059999999998, 8.53806, 5, 5.638059999999998),
            Block.box(10.43806, 3.9999999999999996, 7.538059999999998, 11.43806, 5, 8.538059999999998),
            Block.box(10.43806, 3.9999999999999996, 7.538059999999998, 11.43806, 5, 8.538059999999998),
            Block.box(4.638059999999999, 1.8499999999999996, 7.538059999999998, 5.638059999999999, 2.8499999999999996, 8.538059999999998),
            Block.box(4.638059999999999, 1.8499999999999996, 7.538059999999998, 5.638059999999999, 2.8499999999999996, 8.538059999999998),
            Block.box(7.53806, 1.8499999999999996, 10.43806, 8.53806, 2.8499999999999996, 11.43806),
            Block.box(7.53806, 1.8499999999999996, 10.43806, 8.53806, 2.8499999999999996, 11.43806),
            Block.box(4.638059999999999, 1.8499999999999996, 7.538059999999998, 5.638059999999999, 2.8499999999999996, 8.538059999999998),
            Block.box(7.53806, 1.8499999999999996, 4.638059999999998, 8.53806, 2.8499999999999996, 5.638059999999998),
            Block.box(10.43806, 1.8499999999999996, 7.538059999999998, 11.43806, 2.8499999999999996, 8.538059999999998),
            Block.box(4.53806, 0.25, 6.938059999999998, 6.03806, 1.8499999999999996, 9.138059999999996),
            Block.box(6.93806, 0.25, 4.538059999999998, 9.13806, 1.8499999999999996, 6.038059999999998),
            Block.box(5.03806, 0, 7.038059999999998, 6.03806, 7, 9.038059999999998),
            Block.box(10.03806, 0, 7.038059999999998, 11.03806, 7, 9.038059999999998),
            Block.box(5.03806, 0, 7.038059999999998, 6.03806, 7, 9.038059999999998),
            Block.box(10.03806, 0, 7.038059999999998, 11.03806, 7, 9.038059999999998),
            Block.box(7.03806, 0, 10.038059999999998, 9.03806, 7, 11.038059999999998),
            Block.box(7.03806, 0, 5.038059999999998, 9.03806, 7, 6.038059999999998),
            Block.box(6.03806, 0.1, 6.038059999999998, 10.03806, 1.1, 10.038059999999998),
            Block.box(7.03806, 7, 5.038059999999998, 10.03806, 9, 9.038059999999998),
            Block.box(6.03806, 1, 6.038059999999998, 10.03806, 8, 10.038059999999998),
            Block.box(5.03806, 5.1, 6.038059999999998, 11.03806, 8, 9.038059999999998)
    );

    private static final VoxelShape SHAPE_S = Shapes.or(
            Block.box(11, 4.9, 7, 13.75, 6, 9),
            Block.box(12.25, 5.75, 7.5, 13.25, 6.75, 8.5),
            Block.box(12.5, 5.551115123125783e-17, 7.5, 13.5, 1, 8.5),
            Block.box(12, 3.1500000000000004, 7.5, 13.5, 4.9, 8.5),
            Block.box(12, 0.7500000000000004, 7.4, 14, 2.7500000000000004, 8.6),
            Block.box(11.9, 1.5000000000000004, 7.300000000000001, 14.1, 2.8000000000000007, 8.7),
            Block.box(11.9, 2.3, 7.4, 13.85, 3.3, 8.6),
            Block.box(10, 0, 7, 11, 7, 9),
            Block.box(5, 0, 7, 6, 7, 9),
            Block.box(6.9, 5, 4.5, 9.1, 6.6, 6.1),
            Block.box(6.9, 5, 4.5, 9.1, 6.6, 6.1),
            Block.box(9.9, 5, 6.9, 11.5, 6.6, 9.1),
            Block.box(6.9, 5, 4.5, 9.1, 6.6, 6.1),
            Block.box(6.9, 5, 9.9, 9.1, 6.6, 11.5),
            Block.box(6.9, 5, 9.9, 9.1, 6.6, 11.5),
            Block.box(4.5, 5, 6.9, 6.1, 6.6, 9.1),
            Block.box(9.9, 5, 6.9, 11.5, 6.6, 9.1),
            Block.box(9.9, 6.1, 6.800000000000001, 11.25, 7.1, 9.2),
            Block.box(6.800000000000001, 6.1, 4.75, 9.2, 7.1, 6.1),
            Block.box(4.75, 6.1, 6.800000000000001, 6.1, 7.1, 9.2),
            Block.box(6.800000000000001, 6.1, 4.75, 9.2, 7.1, 6.1),
            Block.box(9.9, 6.1, 6.800000000000001, 11.25, 7.1, 9.2),
            Block.box(9.9, 6.1, 6.800000000000001, 11.25, 7.1, 9.2),
            Block.box(6.800000000000001, 6.1, 9.9, 9.2, 7.1, 11.25),
            Block.box(6.800000000000001, 6.1, 9.9, 9.2, 7.1, 11.25),
            Block.box(9.9, -3.608224830031759e-16, 6.800000000000001, 11.25, 0.9999999999999997, 9.2),
            Block.box(9.9, -3.608224830031759e-16, 6.800000000000001, 11.25, 0.9999999999999997, 9.2),
            Block.box(6.800000000000001, -3.608224830031759e-16, 9.9, 9.2, 0.9999999999999997, 11.25),
            Block.box(6.800000000000001, -3.608224830031759e-16, 9.9, 9.2, 0.9999999999999997, 11.25),
            Block.box(9.9, -3.608224830031759e-16, 6.800000000000001, 11.25, 0.9999999999999997, 9.2),
            Block.box(6.800000000000001, -3.608224830031759e-16, 4.75, 9.2, 0.9999999999999997, 6.1),
            Block.box(6.800000000000001, -3.608224830031759e-16, 4.75, 9.2, 0.9999999999999997, 6.1),
            Block.box(4.75, -3.608224830031759e-16, 6.800000000000001, 6.1, 0.9999999999999997, 9.2),
            Block.box(6.9, 0.25, 10, 9.1, 1.8499999999999996, 11.5),
            Block.box(6.9, 0.25, 10, 9.1, 1.8499999999999996, 11.5),
            Block.box(4.5, 0.25, 6.9, 6, 1.8499999999999996, 9.1),
            Block.box(10, 0.25, 6.9, 11.5, 1.8499999999999996, 9.1),
            Block.box(6.9, 0.25, 4.5, 9.1, 1.8499999999999996, 6),
            Block.box(6.9, 0.25, 4.5, 9.1, 1.8499999999999996, 6),
            Block.box(7.5, 3.9999999999999996, 4.6, 8.5, 5, 5.6),
            Block.box(7.5, 3.9999999999999996, 4.6, 8.5, 5, 5.6),
            Block.box(4.6, 3.9999999999999996, 7.5, 5.6, 5, 8.5),
            Block.box(4.6, 3.9999999999999996, 7.5, 5.6, 5, 8.5),
            Block.box(10.4, 3.9999999999999996, 7.5, 11.4, 5, 8.5),
            Block.box(10.4, 3.9999999999999996, 7.5, 11.4, 5, 8.5),
            Block.box(7.5, 3.9999999999999996, 10.4, 8.5, 5, 11.4),
            Block.box(7.5, 3.9999999999999996, 10.4, 8.5, 5, 11.4),
            Block.box(7.5, 1.8499999999999996, 4.6, 8.5, 2.8499999999999996, 5.6),
            Block.box(7.5, 1.8499999999999996, 4.6, 8.5, 2.8499999999999996, 5.6),
            Block.box(4.6, 1.8499999999999996, 7.5, 5.6, 2.8499999999999996, 8.5),
            Block.box(4.6, 1.8499999999999996, 7.5, 5.6, 2.8499999999999996, 8.5),
            Block.box(7.5, 1.8499999999999996, 4.6, 8.5, 2.8499999999999996, 5.6),
            Block.box(10.4, 1.8499999999999996, 7.5, 11.4, 2.8499999999999996, 8.5),
            Block.box(7.5, 1.8499999999999996, 10.4, 8.5, 2.8499999999999996, 11.4),
            Block.box(6.9, 0.25, 4.5, 9.1, 1.8499999999999996, 6),
            Block.box(10, 0.25, 6.9, 11.5, 1.8499999999999996, 9.1),
            Block.box(7, 0, 5, 9, 7, 6),
            Block.box(7, 0, 10, 9, 7, 11),
            Block.box(7, 0, 5, 9, 7, 6),
            Block.box(7, 0, 10, 9, 7, 11),
            Block.box(5, 0, 7, 6, 7, 9),
            Block.box(10, 0, 7, 11, 7, 9),
            Block.box(6, 0.1, 6, 10, 1.1, 10),
            Block.box(7, 7, 7, 11, 9, 10),
            Block.box(6, 1, 6, 10, 8, 10),
            Block.box(7, 5.1, 5, 10, 8, 11)
    );


    private static final VoxelShape SHAPE_W = Shapes.or(
            Block.box(7.03806, 4.9, 11.061939999999998, 9.03806, 6, 13.811939999999996),
            Block.box(7.53806, 5.75, 12.311939999999996, 8.53806, 6.75, 13.311939999999996),
            Block.box(7.53806, 5.551115123125783e-17, 12.561939999999996, 8.53806, 1, 13.561939999999996),
            Block.box(7.53806, 3.1500000000000004, 12.061939999999996, 8.53806, 4.9, 13.561939999999996),
            Block.box(7.43806, 0.7500000000000004, 12.061939999999996, 8.63806, 2.7500000000000004, 14.061939999999996),
            Block.box(7.3380600000000005, 1.5000000000000004, 11.961939999999997, 8.738059999999999, 2.8000000000000007, 14.161939999999996),
            Block.box(7.43806, 2.3, 11.961939999999997, 8.63806, 3.3, 13.911939999999996),
            Block.box(7.03806, 0, 10.061939999999998, 9.03806, 7, 11.061939999999998),
            Block.box(7.03806, 0, 5.061939999999998, 9.03806, 7, 6.061939999999998),
            Block.box(9.93806, 5, 6.96194, 11.53806, 6.6, 9.161939999999998),
            Block.box(9.93806, 5, 6.96194, 11.53806, 6.6, 9.161939999999998),
            Block.box(6.93806, 5, 9.961939999999998, 9.13806, 6.6, 11.561939999999998),
            Block.box(9.93806, 5, 6.96194, 11.53806, 6.6, 9.161939999999998),
            Block.box(4.53806, 5, 6.96194, 6.138059999999999, 6.6, 9.161939999999998),
            Block.box(4.53806, 5, 6.96194, 6.138059999999999, 6.6, 9.161939999999998),
            Block.box(6.93806, 5, 4.561939999999998, 9.13806, 6.6, 6.161939999999996),
            Block.box(6.93806, 5, 9.961939999999998, 9.13806, 6.6, 11.561939999999998),
            Block.box(6.8380600000000005, 6.1, 9.961939999999998, 9.238059999999999, 7.1, 11.311939999999998),
            Block.box(9.93806, 6.1, 6.861939999999999, 11.28806, 7.1, 9.261939999999997),
            Block.box(6.8380600000000005, 6.1, 4.811939999999998, 9.238059999999999, 7.1, 6.161939999999996),
            Block.box(9.93806, 6.1, 6.861939999999999, 11.28806, 7.1, 9.261939999999997),
            Block.box(6.8380600000000005, 6.1, 9.961939999999998, 9.238059999999999, 7.1, 11.311939999999998),
            Block.box(6.8380600000000005, 6.1, 9.961939999999998, 9.238059999999999, 7.1, 11.311939999999998),
            Block.box(4.78806, 6.1, 6.861939999999999, 6.138059999999999, 7.1, 9.261939999999997),
            Block.box(4.78806, 6.1, 6.861939999999999, 6.138059999999999, 7.1, 9.261939999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 9.961939999999998, 9.238059999999999, 0.9999999999999997, 11.311939999999998),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 9.961939999999998, 9.238059999999999, 0.9999999999999997, 11.311939999999998),
            Block.box(4.78806, -3.608224830031759e-16, 6.861939999999999, 6.138059999999999, 0.9999999999999997, 9.261939999999997),
            Block.box(4.78806, -3.608224830031759e-16, 6.861939999999999, 6.138059999999999, 0.9999999999999997, 9.261939999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 9.961939999999998, 9.238059999999999, 0.9999999999999997, 11.311939999999998),
            Block.box(9.93806, -3.608224830031759e-16, 6.861939999999999, 11.28806, 0.9999999999999997, 9.261939999999997),
            Block.box(9.93806, -3.608224830031759e-16, 6.861939999999999, 11.28806, 0.9999999999999997, 9.261939999999997),
            Block.box(6.8380600000000005, -3.608224830031759e-16, 4.811939999999998, 9.238059999999999, 0.9999999999999997, 6.161939999999996),
            Block.box(4.53806, 0.25, 6.96194, 6.03806, 1.8499999999999996, 9.161939999999998),
            Block.box(4.53806, 0.25, 6.96194, 6.03806, 1.8499999999999996, 9.161939999999998),
            Block.box(6.93806, 0.25, 4.561939999999998, 9.13806, 1.8499999999999996, 6.061939999999998),
            Block.box(6.93806, 0.25, 10.061939999999998, 9.13806, 1.8499999999999996, 11.561939999999998),
            Block.box(10.03806, 0.25, 6.96194, 11.53806, 1.8499999999999996, 9.161939999999998),
            Block.box(10.03806, 0.25, 6.96194, 11.53806, 1.8499999999999996, 9.161939999999998),
            Block.box(10.43806, 3.9999999999999996, 7.561939999999998, 11.43806, 5, 8.561939999999998),
            Block.box(10.43806, 3.9999999999999996, 7.561939999999998, 11.43806, 5, 8.561939999999998),
            Block.box(7.53806, 3.9999999999999996, 4.661939999999996, 8.53806, 5, 5.661939999999996),
            Block.box(7.53806, 3.9999999999999996, 4.661939999999996, 8.53806, 5, 5.661939999999996),
            Block.box(7.53806, 3.9999999999999996, 10.461939999999998, 8.53806, 5, 11.461939999999998),
            Block.box(7.53806, 3.9999999999999996, 10.461939999999998, 8.53806, 5, 11.461939999999998),
            Block.box(4.638059999999999, 3.9999999999999996, 7.561939999999998, 5.638059999999999, 5, 8.561939999999998),
            Block.box(4.638059999999999, 3.9999999999999996, 7.561939999999998, 5.638059999999999, 5, 8.561939999999998),
            Block.box(10.43806, 1.8499999999999996, 7.561939999999998, 11.43806, 2.8499999999999996, 8.561939999999998),
            Block.box(10.43806, 1.8499999999999996, 7.561939999999998, 11.43806, 2.8499999999999996, 8.561939999999998),
            Block.box(7.53806, 1.8499999999999996, 4.661939999999996, 8.53806, 2.8499999999999996, 5.661939999999996),
            Block.box(7.53806, 1.8499999999999996, 4.661939999999996, 8.53806, 2.8499999999999996, 5.661939999999996),
            Block.box(10.43806, 1.8499999999999996, 7.561939999999998, 11.43806, 2.8499999999999996, 8.561939999999998),
            Block.box(7.53806, 1.8499999999999996, 10.461939999999998, 8.53806, 2.8499999999999996, 11.461939999999998),
            Block.box(4.638059999999999, 1.8499999999999996, 7.561939999999998, 5.638059999999999, 2.8499999999999996, 8.561939999999998),
            Block.box(10.03806, 0.25, 6.96194, 11.53806, 1.8499999999999996, 9.161939999999998),
            Block.box(6.93806, 0.25, 10.061939999999998, 9.13806, 1.8499999999999996, 11.561939999999998),
            Block.box(10.03806, 0, 7.061939999999998, 11.03806, 7, 9.061939999999998),
            Block.box(5.03806, 0, 7.061939999999998, 6.03806, 7, 9.061939999999998),
            Block.box(10.03806, 0, 7.061939999999998, 11.03806, 7, 9.061939999999998),
            Block.box(5.03806, 0, 7.061939999999998, 6.03806, 7, 9.061939999999998),
            Block.box(7.03806, 0, 5.061939999999998, 9.03806, 7, 6.061939999999998),
            Block.box(7.03806, 0, 10.061939999999998, 9.03806, 7, 11.061939999999998),
            Block.box(6.03806, 0.1, 6.061939999999998, 10.03806, 1.1, 10.061939999999998),
            Block.box(6.03806, 7, 7.061939999999998, 9.03806, 9, 11.061939999999998),
            Block.box(6.03806, 1, 6.061939999999998, 10.03806, 8, 10.061939999999998),
            Block.box(5.03806, 5.1, 7.061939999999998, 11.03806, 8, 10.061939999999998)
    );

    @Override
    public VoxelShape getShape(BlockState state, BlockGetter p_60556_, BlockPos p_60557_, CollisionContext p_60558_) {
        switch (state.getValue(FACING))
        {
            case NORTH:
                return SHAPE_N;

            case EAST:
                return SHAPE_E;

            case WEST:
                return SHAPE_W;

            case SOUTH:
                return SHAPE_S;

            default:
                return SHAPE_N;
        }
    }


    @Nullable
    @Override
    public BlockState getStateForPlacement(BlockPlaceContext context) {
        return this.defaultBlockState().setValue(FACING,context.getHorizontalDirection().getOpposite());
    }

    @Override
    public BlockState rotate(BlockState state, LevelAccessor world, BlockPos pos, Rotation rot) {
        return state.setValue(FACING, rot.rotate(state.getValue(FACING)));
    }

    @Override
    public BlockState mirror(BlockState state, Mirror mirrorIn) {
        return state.rotate(mirrorIn.getRotation(state.getValue(FACING)));
    }

    @Override
    protected boolean mayPlaceOn(BlockState pState, BlockGetter pLevel, BlockPos pPos) {
        return !pState.is(ModTags.Blocks.BEER_CAN_PLACE_ON);
    }

    @Override
    protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> builder) {
        builder.add(FACING);
    }
}

Thanks

Edited by TheTrueSCP
Link to comment
Share on other sites

By the way, your block's voxel shape isĀ wayĀ more complex than it needs to be. And some of the values have gotten very...mm...floating point precision error'd (like,Ā 7.299999999999997 instead of 7.3)

Grabbed one and ran it through some code I had from the Advent of Code to get an idea of what it looks like (each character represents a 0.5 pixel area).

It's a mug.

      #############
      #############
 ##################
###################
###################
###   #############
###   #############
###   #############
###   #############
###   #############
###################
###################
###################
      #############
      #############
      ###########
      ###########
      #########
      #########

You could just make that a single cuboid instead of making Minecraft compute the physics shape at such precision. I could see maybe wanting to make it two or three because of the handle, but 50 slices?

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.Ā  If you think this is the case, JUST REPORT ME.Ā  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

Ā 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

Ā 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • šŸ¤‘DAFTAR & LOGINšŸ¤‘ šŸ¤‘DAFTAR & LOGINšŸ¤‘ šŸ¤‘DAFTAR & LOGINšŸ¤‘ Ā  Daftar Slot Ratuasia77 adalah bocoran slot rekomendasi gacor dari Ratuasia77 yang bisa anda temukan di SLOT Ratuasia77. Situs SLOT Ratuasia77 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Ratuasia77 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Ratuasia77 merupakan SLOT Ratuasia77 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Ratuasia77. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Ratuasia77 hari ini yang telah disediakan SLOT Ratuasia77. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Ratuasia77 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Ratuasia77 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Ratuasia77 di link SLOT Ratuasia77.
    • 20 SLOT DEMO GRATIS PRAGMATIC PLAY x500 RUPIAH ANTI LAG & 20 DEMO SLOT MAHJONG WAYS PG SOFT GRATIS ANTI RUNGKAD KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • BOCORAN POLA SLOT GACOR MAHJONG WAYS MAXWIN x500 PETIR MERAH HARI INI HINGGA MALAM INI KLIK DISINI DAFTAR SLOT VVIPĀ << KLIK DISINI DAFTAR SLOT VVIP << KLIK DISINI DAFTAR SLOT VVIP << KLIK DISINI DAFTAR SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • Museumbola merupakan wadah judi online terkhusus untuk sbobet atau judi bola. Dengan daftar dan deposit menggunakan BANK BCA, Anda berkesempatan mendapatkan prediksi jitu pertandingan secara update setiap hari yang bisa anda jadikan acuan untuk bermain judi bola. Hanya dengan 10 ribu rupiah dan anda bermain Mix Parlay menggunakan prediksi yang telah di sediakan oleh kami, anda akan memenangkan jutaan rupiah. Yuk segera klik DAFTAR sekarang juga.
    • I was just trying to play my modded world when i randomly got this crash for no reason. I sorted through like every mod and eventually I realized it was LLibrary but I can't seem to find a solution to fix the crashing. I can't lose the world that I have that uses this mod please help me. Here's the report:Ā https://pastebin.com/0D00B79i If anyone has a solution please let me know. Ā 
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.