Start rewrite
11
src/main/java/tech/nevets/vplus/VanillaPlus.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package tech.nevets.vplus;
|
||||
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
|
||||
public class VanillaPlus implements ModInitializer {
|
||||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
|
||||
}
|
||||
}
|
||||
64
src/main/java/tech/nevets/vplus/blocks/VPBlocks.java
Normal file
@@ -0,0 +1,64 @@
|
||||
package tech.nevets.vplus.blocks;
|
||||
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.item.BlockItem;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class VPBlocks extends Blocks {
|
||||
public static final List<Block> BLOCKS = new ArrayList<>();
|
||||
|
||||
public static final Block SAPPHIRE_ORE;
|
||||
public static final Block RUBY_ORE;
|
||||
public static final Block JADE_ORE;
|
||||
public static final Block SAPPHIRE_BLOCK;
|
||||
public static final Block RUBY_BLOCK;
|
||||
public static final Block JADE_BLOCK;
|
||||
public static final Block LAVA_SPONGE_BLOCK;
|
||||
public static final Block SATURATED_LAVASPONGE_BLOCK;
|
||||
|
||||
|
||||
|
||||
public VPBlocks() {
|
||||
}
|
||||
|
||||
static {
|
||||
SAPPHIRE_ORE = register("sapphire_ore", new OreBlock(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
RUBY_ORE = register("ruby_ore", new OreBlock(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
JADE_ORE = register("jade_ore", new OreBlock(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
SAPPHIRE_BLOCK = register("sapphire_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
RUBY_BLOCK = register("ruby_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
JADE_BLOCK = register("jade_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.ALL).getBlock();
|
||||
LAVA_SPONGE_BLOCK = register("lava_sponge_block", new Block(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F)), VPItemGroups.ALL).getBlock();
|
||||
SATURATED_LAVASPONGE_BLOCK = register("saturated_lava_sponge_block", new Block(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F)), VPItemGroups.ALL, new Item.Settings().recipeRemainder(Item.fromBlock(LAVA_SPONGE_BLOCK))).getBlock();
|
||||
|
||||
///////////////////\\\\ITERATOR////\\\\\\\\\\\\\\\\\\\
|
||||
|
||||
for (Block block : BLOCKS) {
|
||||
for (BlockState blockState : block.getStateManager().getStates()) {
|
||||
Block.STATE_IDS.add(blockState);
|
||||
}
|
||||
block.getLootTableId();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Use blockItem.getBlock(); to get instance of the block if needed
|
||||
*/
|
||||
private static BlockItem register(String id, Block block, ItemGroup group) {
|
||||
BLOCKS.add(block);
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus", id), block);
|
||||
return Registry.register(Registry.ITEM, new Identifier("vplus", id), new BlockItem(block, new Item.Settings().group(group)));
|
||||
}
|
||||
|
||||
private static BlockItem register(String id, Block block, ItemGroup group, Item.Settings itemSettings) {
|
||||
BLOCKS.add(block);
|
||||
Registry.register(Registry.BLOCK, new Identifier("vplus", id), block);
|
||||
return Registry.register(Registry.ITEM, new Identifier("vplus", id), new BlockItem(block, itemSettings.group(group)));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package tech.nevets.vplus.client;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.api.Environment;
|
||||
|
||||
@Environment(net.fabricmc.api.EnvType.CLIENT)
|
||||
public class VanillaPlusClient implements ClientModInitializer {
|
||||
|
||||
@Override
|
||||
public void onInitializeClient() {
|
||||
|
||||
}
|
||||
}
|
||||
15
src/main/java/tech/nevets/vplus/items/VPItemGroups.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package tech.nevets.vplus.items;
|
||||
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
||||
public class VPItemGroups extends ItemGroup {
|
||||
public VPItemGroups(int index, String id) {
|
||||
super(index, id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack createIcon() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "minecraft:block/wall_torch"
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "minecraft:block/wall_torch",
|
||||
"y": 270
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "minecraft:block/wall_torch",
|
||||
"y": 90
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "minecraft:block/wall_torch",
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "minecraft:block/torch"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/lava_sponge"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/platinum_block"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/platinum_ore"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/ruby_block"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/ruby_ore"}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "vplus:block/saturated_lava_sponge"}
|
||||
}
|
||||
}
|
||||
@@ -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 }
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/vplus/icon.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
115
src/main/resources/assets/vplus/lang/en_us.json
Normal file
@@ -0,0 +1,115 @@
|
||||
{
|
||||
"key.vplus.zoom": "Zoom Key",
|
||||
"category.vplus.zoom": "Zoom",
|
||||
|
||||
"itemGroup.vplus.all": "All",
|
||||
"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",
|
||||
"block.vplus.platinum_ore": "Platinum Ore",
|
||||
"block.vplus.platinum_block": "Platinum Block",
|
||||
"block.vplus.ruby_ore": "Ruby Ore",
|
||||
"block.vplus.ruby_block": "Ruby Block",
|
||||
|
||||
"item.vplus.platinum_ingot": "Platinum Ingot",
|
||||
"item.vplus.platinum_nugget": "Platinum Nugget",
|
||||
"item.vplus.ruby": "Ruby",
|
||||
|
||||
"item.vplus.copper_sword": "Copper Sword",
|
||||
"item.vplus.emerald_sword": "Emerald Sword",
|
||||
"item.vplus.platinum_sword": "Platinum Sword",
|
||||
"item.vplus.ruby_sword": "Ruby Sword",
|
||||
|
||||
"item.vplus.copper_helmet": "Copper Helmet",
|
||||
"item.vplus.copper_chestplate": "Copper Chestplate",
|
||||
"item.vplus.copper_leggings": "Copper Leggings",
|
||||
"item.vplus.copper_boots": "Copper Boots",
|
||||
"item.vplus.emerald_helmet": "Emerald Helmet",
|
||||
"item.vplus.emerald_chestplate": "Emerald Chestplate",
|
||||
"item.vplus.emerald_leggings": "Emerald Leggings",
|
||||
"item.vplus.emerald_boots": "Emerald Boots",
|
||||
"item.vplus.platinum_helmet": "Platinum Helmet",
|
||||
"item.vplus.platinum_chestplate": "Platinum Chestplate",
|
||||
"item.vplus.platinum_leggings": "Platinum Leggings",
|
||||
"item.vplus.platinum_boots": "Platinum Boots",
|
||||
"item.vplus.ruby_helmet": "Ruby Helmet",
|
||||
"item.vplus.ruby_chestplate": "Ruby Chestplate",
|
||||
"item.vplus.ruby_leggings": "Ruby Leggings",
|
||||
"item.vplus.ruby_boots": "Ruby Boots",
|
||||
|
||||
"item.vplus.copper_pickaxe": "Copper Pickaxe",
|
||||
"item.vplus.copper_axe": "Copper Axe",
|
||||
"item.vplus.copper_shovel": "Copper Shovel",
|
||||
"item.vplus.copper_hoe": "Copper Hoe",
|
||||
"item.vplus.emerald_pickaxe": "Emerald Pickaxe",
|
||||
"item.vplus.emerald_axe": "Emerald Axe",
|
||||
"item.vplus.emerald_shovel": "Emerald Shovel",
|
||||
"item.vplus.emerald_hoe": "Emerald Hoe",
|
||||
"item.vplus.platinum_pickaxe": "Platinum Pickaxe",
|
||||
"item.vplus.platinum_axe": "Platinum Axe",
|
||||
"item.vplus.platinum_shovel": "Platinum Shovel",
|
||||
"item.vplus.platinum_hoe": "Platinum Hoe",
|
||||
"item.vplus.ruby_pickaxe": "Ruby Pickaxe",
|
||||
"item.vplus.ruby_axe": "Ruby Axe",
|
||||
"item.vplus.ruby_shovel": "Ruby Shovel",
|
||||
"item.vplus.ruby_hoe": "Ruby Hoe",
|
||||
|
||||
"item.vplus.iron_apple": "Iron Apple",
|
||||
"item.vplus.enchanted_iron_apple": "Enchanted Iron Apple",
|
||||
"item.vplus.copper_apple": "Copper Apple",
|
||||
"item.vplus.enchanted_copper_apple": "Enchanted Copper Apple",
|
||||
"item.vplus.diamond_apple": "Diamond Apple",
|
||||
"item.vplus.enchanted_diamond_apple": "Enchanted Diamond Apple",
|
||||
"item.vplus.emerald_apple": "Emerald Apple",
|
||||
"item.vplus.enchanted_emerald_apple": "Enchanted Emerald Apple",
|
||||
"item.vplus.netherite_apple": "Netherite Apple",
|
||||
"item.vplus.enchanted_netherite_apple": "Enchanted Netherite Apple",
|
||||
"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",
|
||||
|
||||
"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,6 @@
|
||||
{
|
||||
"parent": "minecraft:block/template_torch_wall",
|
||||
"textures": {
|
||||
"torch": "minecraft:block/torch"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:block/template_torch",
|
||||
"textures": {
|
||||
"torch": "minecraft:block/torch"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/lava_sponge"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/platinum_block"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/platinum_ore"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/ruby_block"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/ruby_ore"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "vplus:block/saturated_lava_sponge"
|
||||
}
|
||||
}
|
||||
@@ -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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||