Implement Vertical Slabs
Still have some bugs such as waterlogging not working and not all 1.17 blocks have been added
This commit is contained in:
parent
c1e1065c3b
commit
2ca55f3b48
@ -6,6 +6,7 @@ import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Material;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
|
||||
//TODO Change platinum to saphire
|
||||
public class PlatinumBlock extends Block {
|
||||
public PlatinumBlock() {
|
||||
super(FabricBlockSettings.of(Material.STONE).breakByHand(false).breakByTool(FabricToolTags.PICKAXES).sounds(BlockSoundGroup.METAL).strength(30, 1000f));
|
||||
|
@ -22,6 +22,7 @@ public class VPBlocks {
|
||||
initializeBlocks();
|
||||
initializeBlockItems();
|
||||
initializeTorches();
|
||||
VPVerticalSlabs.vpVerticalSlabs();
|
||||
}
|
||||
|
||||
public static void initializeBlocks() {
|
||||
|
180
src/main/java/tech/nevets/vplus/blocks/VPVerticalSlabs.java
Normal file
180
src/main/java/tech/nevets/vplus/blocks/VPVerticalSlabs.java
Normal file
@ -0,0 +1,180 @@
|
||||
package tech.nevets.vplus.blocks;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Material;
|
||||
import net.minecraft.item.BlockItem;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import tech.nevets.vplus.items.VPItemGroups;
|
||||
|
||||
public class VPVerticalSlabs {
|
||||
|
||||
//TODO add new 1.17 blocks
|
||||
|
||||
public static final Block VERTICAL_OAK_SLAB;
|
||||
public static final Block VERTICAL_SPRUCE_SLAB;
|
||||
public static final Block VERTICAL_BIRCH_SLAB;
|
||||
public static final Block VERTICAL_JUNGLE_SLAB;
|
||||
public static final Block VERTICAL_ACACIA_SLAB;
|
||||
public static final Block VERTICAL_DARK_OAK_SLAB;
|
||||
public static final Block VERTICAL_CRIMSON_SLAB;
|
||||
public static final Block VERTICAL_WARPED_SLAB;
|
||||
public static final Block VERTICAL_STONE_SLAB;
|
||||
public static final Block VERTICAL_SMOOTH_STONE_SLAB;
|
||||
public static final Block VERTICAL_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_CUT_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_COBBLESTONE_SLAB;
|
||||
public static final Block VERTICAL_BRICK_SLAB;
|
||||
public static final Block VERTICAL_STONE_BRICK_SLAB;
|
||||
public static final Block VERTICAL_NETHER_BRICK_SLAB;
|
||||
public static final Block VERTICAL_QUARTZ_SLAB;
|
||||
public static final Block VERTICAL_RED_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_CUT_RED_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_PURPUR_SLAB;
|
||||
public static final Block VERTICAL_PRISMARINE_SLAB;
|
||||
public static final Block VERTICAL_PRISMARINE_BRICK_SLAB;
|
||||
public static final Block VERTICAL_DARK_PRISMARINE_SLAB;
|
||||
public static final Block VERTICAL_POLISHED_GRANITE_SLAB;
|
||||
public static final Block VERTICAL_SMOOTH_RED_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_MOSSY_STONE_BRICK_SLAB;
|
||||
public static final Block VERTICAL_POLISHED_DIORITE_SLAB;
|
||||
public static final Block VERTICAL_MOSSY_COBBLESTONE_SLAB;
|
||||
public static final Block VERTICAL_END_STONE_BRICK_SLAB;
|
||||
public static final Block VERTICAL_SMOOTH_SANDSTONE_SLAB;
|
||||
public static final Block VERTICAL_SMOOTH_QUARTZ_SLAB;
|
||||
public static final Block VERTICAL_GRANITE_SLAB;
|
||||
public static final Block VERTICAL_ANDESITE_SLAB;
|
||||
public static final Block VERTICAL_RED_NETHER_BRICK_SLAB;
|
||||
public static final Block VERTICAL_POLISHED_ANDESITE_SLAB;
|
||||
public static final Block VERTICAL_DIORITE_SLAB;
|
||||
public static final Block VERTICAL_BLACKSTONE_SLAB;
|
||||
public static final Block VERTICAL_POLISHED_BLACKSTONE_SLAB;
|
||||
public static final Block VERTICAL_POLISHED_BLACKSTONE_BRICK_SLAB;
|
||||
|
||||
public static void vpVerticalSlabs() {
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_oak_slab"), VERTICAL_OAK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_oak_slab"), new BlockItem(VERTICAL_OAK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_spruce_slab"), VERTICAL_SPRUCE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_spruce_slab"), new BlockItem(VERTICAL_SPRUCE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_birch_slab"), VERTICAL_BIRCH_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_birch_slab"), new BlockItem(VERTICAL_BIRCH_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_jungle_slab"), VERTICAL_JUNGLE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_jungle_slab"), new BlockItem(VERTICAL_JUNGLE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_acacia_slab"), VERTICAL_ACACIA_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_acacia_slab"), new BlockItem(VERTICAL_ACACIA_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_dark_oak_slab"), VERTICAL_DARK_OAK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_dark_oak_slab"), new BlockItem(VERTICAL_DARK_OAK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_crimson_slab"), VERTICAL_CRIMSON_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_crimson_slab"), new BlockItem(VERTICAL_CRIMSON_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_warped_slab"), VERTICAL_WARPED_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_warped_slab"), new BlockItem(VERTICAL_WARPED_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_stone_slab"), VERTICAL_STONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_stone_slab"), new BlockItem(VERTICAL_STONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_smooth_stone_slab"), VERTICAL_SMOOTH_STONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_smooth_stone_slab"), new BlockItem(VERTICAL_SMOOTH_STONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_sandstone_slab"), VERTICAL_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_sandstone_slab"), new BlockItem(VERTICAL_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_cut_sandstone_slab"), VERTICAL_CUT_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_cut_sandstone_slab"), new BlockItem(VERTICAL_CUT_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_cobblestone_slab"), VERTICAL_COBBLESTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_cobblestone_slab"), new BlockItem(VERTICAL_COBBLESTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_brick_slab"), VERTICAL_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_brick_slab"), new BlockItem(VERTICAL_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_stone_brick_slab"), VERTICAL_STONE_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_stone_brick_slab"), new BlockItem(VERTICAL_STONE_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_nether_brick_slab"), VERTICAL_NETHER_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_nether_brick_slab"), new BlockItem(VERTICAL_NETHER_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_quartz_slab"), VERTICAL_QUARTZ_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_quartz_slab"), new BlockItem(VERTICAL_QUARTZ_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_red_sandstone_slab"), VERTICAL_RED_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_red_sandstone_slab"), new BlockItem(VERTICAL_RED_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_cut_red_sandstone_slab"), VERTICAL_CUT_RED_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_cut_red_sandstone_slab"), new BlockItem(VERTICAL_CUT_RED_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_purpur_slab"), VERTICAL_PURPUR_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_purpur_slab"), new BlockItem(VERTICAL_PURPUR_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_prismarine_slab"), VERTICAL_PRISMARINE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_prismarine_slab"), new BlockItem(VERTICAL_PRISMARINE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_prismarine_brick_slab"), VERTICAL_PRISMARINE_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_prismarine_brick_slab"), new BlockItem(VERTICAL_PRISMARINE_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_dark_prismarine_slab"), VERTICAL_DARK_PRISMARINE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_dark_prismarine_slab"), new BlockItem(VERTICAL_DARK_PRISMARINE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_polished_granite_slab"), VERTICAL_POLISHED_GRANITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_polished_granite_slab"), new BlockItem(VERTICAL_POLISHED_GRANITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_smooth_red_sandstone_slab"), VERTICAL_SMOOTH_RED_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_smooth_red_sandstone_slab"), new BlockItem(VERTICAL_SMOOTH_RED_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_mossy_stone_brick_slab"), VERTICAL_MOSSY_STONE_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_mossy_stone_brick_slab"), new BlockItem(VERTICAL_MOSSY_STONE_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_polished_diorite_slab"), VERTICAL_POLISHED_DIORITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_polished_diorite_slab"), new BlockItem(VERTICAL_POLISHED_DIORITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_mossy_cobblestone_slab"), VERTICAL_MOSSY_COBBLESTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_mossy_cobblestone_slab"), new BlockItem(VERTICAL_MOSSY_COBBLESTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_end_stone_brick_slab"), VERTICAL_END_STONE_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_end_stone_brick_slab"), new BlockItem(VERTICAL_END_STONE_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_smooth_sandstone_slab"), VERTICAL_SMOOTH_SANDSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_smooth_sandstone_slab"), new BlockItem(VERTICAL_SMOOTH_SANDSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_smooth_quartz_slab"), VERTICAL_SMOOTH_QUARTZ_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_smooth_quartz_slab"), new BlockItem(VERTICAL_SMOOTH_QUARTZ_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_granite_slab"), VERTICAL_GRANITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_granite_slab"), new BlockItem(VERTICAL_GRANITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_andesite_slab"), VERTICAL_ANDESITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_andesite_slab"), new BlockItem(VERTICAL_ANDESITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_red_nether_brick_slab"), VERTICAL_RED_NETHER_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_red_nether_brick_slab"), new BlockItem(VERTICAL_RED_NETHER_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_polished_andesite_slab"), VERTICAL_POLISHED_ANDESITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_polished_andesite_slab"), new BlockItem(VERTICAL_POLISHED_ANDESITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_diorite_slab"), VERTICAL_DIORITE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_diorite_slab"), new BlockItem(VERTICAL_DIORITE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_blackstone_slab"), VERTICAL_BLACKSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_blackstone_slab"), new BlockItem(VERTICAL_BLACKSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_polished_blackstone_slab"), VERTICAL_POLISHED_BLACKSTONE_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_polished_blackstone_slab"), new BlockItem(VERTICAL_POLISHED_BLACKSTONE_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus","vertical_polished_blackstone_brick_slab"), VERTICAL_POLISHED_BLACKSTONE_BRICK_SLAB);
|
||||
Registry.register(Registry.ITEM, new Identifier("vplus","vertical_polished_blackstone_brick_slab"), new BlockItem(VERTICAL_POLISHED_BLACKSTONE_BRICK_SLAB, new Item.Settings().group(VPItemGroups.VERTICAL_SLABS)));
|
||||
}
|
||||
|
||||
static {
|
||||
VERTICAL_OAK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_SPRUCE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_BIRCH_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_JUNGLE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_ACACIA_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_DARK_OAK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_CRIMSON_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_WARPED_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).hardness(2.0F).breakByTool(FabricToolTags.AXES));
|
||||
VERTICAL_STONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_SMOOTH_STONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_CUT_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_COBBLESTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_STONE_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_NETHER_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_QUARTZ_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_RED_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_CUT_RED_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_PURPUR_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_PRISMARINE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_PRISMARINE_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_DARK_PRISMARINE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_POLISHED_GRANITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_SMOOTH_RED_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_MOSSY_STONE_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_POLISHED_DIORITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_MOSSY_COBBLESTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_END_STONE_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_SMOOTH_SANDSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_SMOOTH_QUARTZ_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_GRANITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_ANDESITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_RED_NETHER_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_POLISHED_ANDESITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_DIORITE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_BLACKSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_POLISHED_BLACKSTONE_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
VERTICAL_POLISHED_BLACKSTONE_BRICK_SLAB = new VerticalSlabs(FabricBlockSettings.of(Material.STONE).sounds(BlockSoundGroup.STONE).hardness(2.0F).breakByHand(false).breakByTool(FabricToolTags.PICKAXES));
|
||||
}
|
||||
}
|
86
src/main/java/tech/nevets/vplus/blocks/VerticalSlabs.java
Normal file
86
src/main/java/tech/nevets/vplus/blocks/VerticalSlabs.java
Normal file
@ -0,0 +1,86 @@
|
||||
package tech.nevets.vplus.blocks;
|
||||
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.fluid.FluidState;
|
||||
import net.minecraft.fluid.Fluids;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.BooleanProperty;
|
||||
import net.minecraft.state.property.Properties;
|
||||
import net.minecraft.tag.FluidTags;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.util.shape.VoxelShapes;
|
||||
import net.minecraft.world.BlockView;
|
||||
|
||||
|
||||
public class VerticalSlabs extends HorizontalFacingBlock {
|
||||
private static final VoxelShape NORTH_SHAPE;
|
||||
private static final VoxelShape EAST_SHAPE;
|
||||
private static final VoxelShape SOUTH_SHAPE;
|
||||
private static final VoxelShape WEST_SHAPE;
|
||||
public static final BooleanProperty WATERLOGGED = Properties.WATERLOGGED;
|
||||
|
||||
public VerticalSlabs(Settings settings){
|
||||
super(settings);
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(WATERLOGGED, true).with(FACING, Direction.NORTH));
|
||||
}
|
||||
|
||||
//TODO Fix Waterlogging
|
||||
@Override
|
||||
public FluidState getFluidState(BlockState blockState_1) {
|
||||
return (Boolean)blockState_1.get(WATERLOGGED) ? Fluids.WATER.getStill(false) : super.getFluidState(blockState_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockRenderType getRenderType(BlockState blockState_1) {
|
||||
return BlockRenderType.MODEL;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
FluidState fluidState = itemPlacementContext.getWorld().getFluidState(itemPlacementContext.getBlockPos());
|
||||
boolean waterLog = fluidState.isIn(FluidTags.WATER) && fluidState.getLevel() == 8;
|
||||
return super.getPlacementState(itemPlacementContext).with(WATERLOGGED, waterLog)
|
||||
.with(FACING, itemPlacementContext.getPlayerFacing().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
builder.add(WATERLOGGED, FACING);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext context) {
|
||||
switch(state.get(FACING)) {
|
||||
case NORTH: return NORTH_SHAPE;
|
||||
case EAST: return EAST_SHAPE;
|
||||
case SOUTH: return SOUTH_SHAPE;
|
||||
case WEST: return WEST_SHAPE;
|
||||
default: return super.getOutlineShape(state, view, pos, context);
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0.0D, 0.0D, 0.0D, 8.0D, 16.0D, 16.0D);
|
||||
|
||||
EAST_SHAPE = shape;
|
||||
NORTH_SHAPE = rotate(Direction.EAST, Direction.NORTH, shape);
|
||||
SOUTH_SHAPE = rotate(Direction.EAST, Direction.SOUTH, shape);
|
||||
WEST_SHAPE = rotate(Direction.EAST, Direction.WEST, shape);
|
||||
}
|
||||
|
||||
private static VoxelShape rotate(Direction from, Direction to, VoxelShape shape) {
|
||||
VoxelShape[] buffer = new VoxelShape[]{ shape, VoxelShapes.empty() };
|
||||
|
||||
int times = (to.getHorizontal() - from.getHorizontal() + 4) % 4;
|
||||
for (int i = 0; i < times; i++) {
|
||||
buffer[0].forEachBox((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = VoxelShapes.union(buffer[1], VoxelShapes.cuboid(1-maxZ, minY, minX, 1-minZ, maxY, maxX)));
|
||||
buffer[0] = buffer[1];
|
||||
buffer[1] = VoxelShapes.empty();
|
||||
}
|
||||
|
||||
return buffer[0];
|
||||
}
|
||||
}
|
@ -27,5 +27,9 @@ public class VPItemGroups {
|
||||
//Food Tab
|
||||
public static final ItemGroup FOOD = FabricItemGroupBuilder.build(
|
||||
new Identifier("vplus", "food"),
|
||||
() -> new ItemStack((Items.ENCHANTED_GOLDEN_APPLE)));
|
||||
() -> new ItemStack(Items.ENCHANTED_GOLDEN_APPLE));
|
||||
//Vertical Slabs Tab
|
||||
public static final ItemGroup VERTICAL_SLABS = FabricItemGroupBuilder.build(
|
||||
new Identifier("vplus", "vert_slabs"),
|
||||
() -> new ItemStack(Items.BRICK_SLAB));
|
||||
}
|
||||
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/acacia_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/acacia_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/acacia_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/acacia_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/andesite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/andesite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/andesite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/andesite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/birch_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/birch_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/birch_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/birch_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/blackstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/blackstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/blackstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/blackstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/cobblestone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/cobblestone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/cobblestone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/cobblestone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/crimson_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/crimson_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/crimson_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/crimson_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/cut_red_sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/cut_red_sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/cut_red_sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/cut_red_sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/cut_sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/cut_sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/cut_sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/cut_sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/dark_oak_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/dark_oak_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/dark_oak_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/dark_oak_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/dark_prismarine_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/dark_prismarine_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/dark_prismarine_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/dark_prismarine_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/diorite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/diorite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/diorite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/diorite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/end_stone_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/end_stone_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/end_stone_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/end_stone_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/granite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/granite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/granite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/granite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/jungle_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/jungle_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/jungle_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/jungle_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/mossy_cobblestone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/mossy_cobblestone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/mossy_cobblestone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/mossy_cobblestone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/mossy_stone_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/mossy_stone_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/mossy_stone_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/mossy_stone_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/nether_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/nether_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/nether_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/nether_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/oak_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/oak_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/oak_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/oak_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/polished_andesite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/polished_andesite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/polished_andesite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/polished_andesite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/polished_blackstone_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/polished_blackstone_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/polished_blackstone_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/polished_blackstone_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/polished_blackstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/polished_blackstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/polished_blackstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/polished_blackstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/polished_diorite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/polished_diorite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/polished_diorite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/polished_diorite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/polished_granite_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/polished_granite_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/polished_granite_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/polished_granite_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/prismarine_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/prismarine_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/prismarine_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/prismarine_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/prismarine_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/prismarine_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/prismarine_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/prismarine_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/purpur_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/purpur_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/purpur_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/purpur_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/quartz_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/quartz_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/quartz_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/quartz_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/red_nether_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/red_nether_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/red_nether_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/red_nether_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/red_sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/red_sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/red_sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/red_sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/smooth_quartz_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/smooth_quartz_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/smooth_quartz_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/smooth_quartz_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/smooth_red_sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/smooth_red_sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/smooth_red_sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/smooth_red_sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/smooth_sandstone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/smooth_sandstone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/smooth_sandstone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/smooth_sandstone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/smooth_stone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/smooth_stone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/smooth_stone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/smooth_stone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/spruce_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/spruce_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/spruce_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/spruce_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/stone_brick_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/stone_brick_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/stone_brick_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/stone_brick_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/stone_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/stone_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/stone_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/stone_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "block/warped_slab", "x": 90, "uvlock": true },
|
||||
"facing=east": { "model": "block/warped_slab", "x": 90, "y": 90, "uvlock": true },
|
||||
"facing=south": { "model": "block/warped_slab", "x": 90, "y": 180, "uvlock": true },
|
||||
"facing=west": { "model": "block/warped_slab", "x": 90, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
@ -6,6 +6,7 @@
|
||||
"itemGroup.vplus.combat": "Combat",
|
||||
"itemGroup.vplus.tools": "Tools",
|
||||
"itemGroup.vplus.food": "Food",
|
||||
"itemGroup.vplus.vert_slabs": "Vertical Slabs",
|
||||
|
||||
"block.vplus.lava_sponge": "Lava Sponge",
|
||||
"block.vplus.saturated_lava_sponge": "Saturated Lava Sponge",
|
||||
@ -59,5 +60,45 @@
|
||||
"item.vplus.platinum_apple": "Platinum Apple",
|
||||
"item.vplus.enchanted_platinum_apple": "Enchanted Platinum Apple",
|
||||
"item.vplus.ruby_apple": "Ruby Apple",
|
||||
"item.vplus.enchanted_ruby_apple": "Enchanted Ruby Apple"
|
||||
"item.vplus.enchanted_ruby_apple": "Enchanted Ruby Apple",
|
||||
|
||||
"block.vplus.vertical_oak_slab":"Vertical Oak Slab",
|
||||
"block.vplus.vertical_spruce_slab":"Vertical Spruce Slab",
|
||||
"block.vplus.vertical_birch_slab":"Vertical Birch Slab",
|
||||
"block.vplus.vertical_jungle_slab":"Vertical Jungle Slab",
|
||||
"block.vplus.vertical_acacia_slab":"Vertical Acacia Slab",
|
||||
"block.vplus.vertical_dark_oak_slab":"Vertical Dark Oak Slab",
|
||||
"block.vplus.vertical_crimson_slab":"Vertical Crimson Slab",
|
||||
"block.vplus.vertical_warped_slab":"Vertical Warped Slab",
|
||||
"block.vplus.vertical_stone_slab":"Vertical Stone Slab",
|
||||
"block.vplus.vertical_smooth_stone_slab":"Vertical Smooth Stone Slab",
|
||||
"block.vplus.vertical_sandstone_slab":"Vertical Sandstone Slab",
|
||||
"block.vplus.vertical_cut_sandstone_slab":"Vertical Cut Sandstone Slab",
|
||||
"block.vplus.vertical_cobblestone_slab":"Vertical Cobblestone Slab",
|
||||
"block.vplus.vertical_brick_slab":"Vertical Brick Slab",
|
||||
"block.vplus.vertical_stone_brick_slab":"Vertical Stone Brick Slab",
|
||||
"block.vplus.vertical_nether_brick_slab":"Vertical Nether Brick Slab",
|
||||
"block.vplus.vertical_quartz_slab":"Vertical Quartz Slab",
|
||||
"block.vplus.vertical_red_sandstone_slab":"Vertical Red Sandstone Slab",
|
||||
"block.vplus.vertical_cut_red_sandstone_slab":"Vertical Cut Red Sandstone Slab",
|
||||
"block.vplus.vertical_purpur_slab":"Vertical Purpur Slab",
|
||||
"block.vplus.vertical_prismarine_slab":"Vertical Prismarine Slab",
|
||||
"block.vplus.vertical_prismarine_brick_slab":"Vertical Prismarine Brick Slab",
|
||||
"block.vplus.vertical_dark_prismarine_slab":"Vertical Dark Prismarine Slab",
|
||||
"block.vplus.vertical_polished_granite_slab":"Vertical Polished Granite Slab",
|
||||
"block.vplus.vertical_smooth_red_sandstone_slab":"Vertical Smooth Red Sandstone Slab",
|
||||
"block.vplus.vertical_mossy_stone_brick_slab":"Vertical Mossy Stone Brick Slab",
|
||||
"block.vplus.vertical_polished_diorite_slab":"Vertical Polished Diorite Slab",
|
||||
"block.vplus.vertical_mossy_cobblestone_slab":"Vertical Mossy Cobblestone Slab",
|
||||
"block.vplus.vertical_end_stone_brick_slab":"Vertical End Stone Brick Slab",
|
||||
"block.vplus.vertical_smooth_sandstone_slab":"Vertical Smooth Sandstone Slab",
|
||||
"block.vplus.vertical_smooth_quartz_slab":"Vertical Smooth Quartz Slab",
|
||||
"block.vplus.vertical_granite_slab":"Vertical Granite Slab",
|
||||
"block.vplus.vertical_andesite_slab":"Vertical Andesite Slab",
|
||||
"block.vplus.vertical_red_nether_brick_slab":"Vertical Red Nether Brick Slab",
|
||||
"block.vplus.vertical_polished_andesite_slab":"Vertical Polished Andesite Slab",
|
||||
"block.vplus.vertical_diorite_slab":"Vertical Diorite Slab",
|
||||
"block.vplus.vertical_blackstone_slab":"Vertical Blackstone Slab",
|
||||
"block.vplus.vertical_polished_blackstone_slab":"Vertical Polished Blackstone Slab",
|
||||
"block.vplus.vertical_polished_blackstone_brick_slab":"Vertical Polished Blackstone Brick Slab"
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/acacia_planks",
|
||||
"top": "minecraft:block/acacia_planks",
|
||||
"side": "minecraft:block/acacia_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/andesite",
|
||||
"top": "minecraft:block/andesite",
|
||||
"side": "minecraft:block/andesite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/birch_planks",
|
||||
"top": "minecraft:block/birch_planks",
|
||||
"side": "minecraft:block/birch_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/blackstone_top",
|
||||
"top": "minecraft:block/blackstone_top",
|
||||
"side": "minecraft:block/blackstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/bricks",
|
||||
"top": "minecraft:block/bricks",
|
||||
"side": "minecraft:block/bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/cobblestone",
|
||||
"top": "minecraft:block/cobblestone",
|
||||
"side": "minecraft:block/cobblestone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/crimson_planks",
|
||||
"top": "minecraft:block/crimson_planks",
|
||||
"side": "minecraft:block/crimson_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/red_sandstone_top",
|
||||
"top": "minecraft:block/red_sandstone_top",
|
||||
"side": "minecraft:block/cut_red_sandstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/sandstone_top",
|
||||
"top": "minecraft:block/sandstone_top",
|
||||
"side": "minecraft:block/cut_sandstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/dark_oak_planks",
|
||||
"top": "minecraft:block/dark_oak_planks",
|
||||
"side": "minecraft:block/dark_oak_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/dark_prismarine",
|
||||
"top": "minecraft:block/dark_prismarine",
|
||||
"side": "minecraft:block/dark_prismarine"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/diorite",
|
||||
"top": "minecraft:block/diorite",
|
||||
"side": "minecraft:block/diorite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/end_stone_bricks",
|
||||
"top": "minecraft:block/end_stone_bricks",
|
||||
"side": "minecraft:block/end_stone_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/granite",
|
||||
"top": "minecraft:block/granite",
|
||||
"side": "minecraft:block/granite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/jungle_planks",
|
||||
"top": "minecraft:block/jungle_planks",
|
||||
"side": "minecraft:block/jungle_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/mossy_cobblestone",
|
||||
"top": "minecraft:block/mossy_cobblestone",
|
||||
"side": "minecraft:block/mossy_cobblestone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/mossy_stone_bricks",
|
||||
"top": "minecraft:block/mossy_stone_bricks",
|
||||
"side": "minecraft:block/mossy_stone_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/nether_bricks",
|
||||
"top": "minecraft:block/nether_bricks",
|
||||
"side": "minecraft:block/nether_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/oak_planks",
|
||||
"top": "minecraft:block/oak_planks",
|
||||
"side": "minecraft:block/oak_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/oak_planks",
|
||||
"top": "minecraft:block/oak_planks",
|
||||
"side": "minecraft:block/oak_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/polished_andesite",
|
||||
"top": "minecraft:block/polished_andesite",
|
||||
"side": "minecraft:block/polished_andesite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/polished_blackstone_bricks",
|
||||
"top": "minecraft:block/polished_blackstone_bricks",
|
||||
"side": "minecraft:block/polished_blackstone_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/polished_blackstone",
|
||||
"top": "minecraft:block/polished_blackstone",
|
||||
"side": "minecraft:block/polished_blackstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/polished_diorite",
|
||||
"top": "minecraft:block/polished_diorite",
|
||||
"side": "minecraft:block/polished_diorite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/polished_granite",
|
||||
"top": "minecraft:block/polished_granite",
|
||||
"side": "minecraft:block/polished_granite"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/prismarine_bricks",
|
||||
"top": "minecraft:block/prismarine_bricks",
|
||||
"side": "minecraft:block/prismarine_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/prismarine",
|
||||
"top": "minecraft:block/prismarine",
|
||||
"side": "minecraft:block/prismarine"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/purpur_block",
|
||||
"top": "minecraft:block/purpur_block",
|
||||
"side": "minecraft:block/purpur_block"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/quartz_block_top",
|
||||
"top": "minecraft:block/quartz_block_top",
|
||||
"side": "minecraft:block/quartz_block_side"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/red_nether_bricks",
|
||||
"top": "minecraft:block/red_nether_bricks",
|
||||
"side": "minecraft:block/red_nether_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/red_sandstone_bottom",
|
||||
"top": "minecraft:block/red_sandstone_top",
|
||||
"side": "minecraft:block/red_sandstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/sandstone_bottom",
|
||||
"top": "minecraft:block/sandstone_top",
|
||||
"side": "minecraft:block/sandstone"
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
{ "parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "#side"
|
||||
},
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 315, -90 ],
|
||||
"translation": [ 0, 0, 0],
|
||||
"scale":[ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
},
|
||||
"elements": [
|
||||
{ "from": [ 0, 0, 0 ],
|
||||
"to": [ 16, 8, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "rotation": 90, "cullface": "down" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "rotation": 90},
|
||||
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 270, "cullface": "north" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 270, "cullface": "south" },
|
||||
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" },
|
||||
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/quartz_block_bottom",
|
||||
"top": "minecraft:block/quartz_block_bottom",
|
||||
"side": "minecraft:block/quartz_block_bottom"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/red_sandstone_top",
|
||||
"top": "minecraft:block/red_sandstone_top",
|
||||
"side": "minecraft:block/red_sandstone_top"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/sandstone_top",
|
||||
"top": "minecraft:block/sandstone_top",
|
||||
"side": "minecraft:block/sandstone_top"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/smooth_stone",
|
||||
"top": "minecraft:block/smooth_stone",
|
||||
"side": "minecraft:block/smooth_stone_slab_side"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/spruce_planks",
|
||||
"top": "minecraft:block/spruce_planks",
|
||||
"side": "minecraft:block/spruce_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/stone_bricks",
|
||||
"top": "minecraft:block/stone_bricks",
|
||||
"side": "minecraft:block/stone_bricks"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/stone",
|
||||
"top": "minecraft:block/stone",
|
||||
"side": "minecraft:block/stone"
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_slab",
|
||||
"textures": {
|
||||
"bottom": "minecraft:block/warped_planks",
|
||||
"top": "minecraft:block/warped_planks",
|
||||
"side": "minecraft:block/warped_planks"
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_acacia_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_andesite_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_birch_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_blackstone_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_brick_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_cobblestone_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_crimson_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_cut_red_sandstone_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_cut_sandstone_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_dark_oak_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_dark_prismarine_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_diorite_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_end_stone_brick_slab"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "vplus:block/vertical_granite_slab"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user