merge conflict 2

This commit is contained in:
2022-08-03 09:33:14 -04:00
parent 09c81a117a
commit a0d866d838
284 changed files with 292 additions and 360 deletions

View File

@@ -0,0 +1,75 @@
package tech.nevets.vplus.blocks;
import com.google.common.collect.Lists;
import net.minecraft.block.*;
import net.minecraft.fluid.FluidState;
import net.minecraft.tag.FluidTags;
import net.minecraft.util.Pair;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Direction;
import net.minecraft.world.World;
import java.util.Queue;
public class LavaSpongeBlock extends Block {
public LavaSpongeBlock() {
super(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F));
}
public void onBlockAdded(BlockState state, World world, BlockPos pos, BlockState oldState, boolean notify) {
if (!oldState.isOf(state.getBlock())) {
this.update(world, pos);
}
}
public void neighborUpdate(BlockState state, World world, BlockPos pos, Block sourceBlock, BlockPos sourcePos, boolean notify) {
this.update(world, pos);
super.neighborUpdate(state, world, pos, sourceBlock, sourcePos, notify);
}
protected void update(World world, BlockPos pos) {
if (this.absorbLava(world, pos)) {
world.setBlockState(pos, VPBlocks.SATURATED_LAVA_SPONGE_BLOCK.getDefaultState(), 2);
world.syncWorldEvent(2001, pos, Block.getRawIdFromState(Blocks.WATER.getDefaultState()));
}
}
private boolean absorbLava(World world, BlockPos pos) {
Queue<Pair<BlockPos, Integer>> queue = Lists.newLinkedList();
queue.add(new Pair(pos, 0));
int i = 0;
while(!queue.isEmpty()) {
Pair<BlockPos, Integer> pair = queue.poll();
BlockPos blockPos = pair.getLeft();
int j = pair.getRight();
Direction[] directions = Direction.values();
for (Direction direction : directions) {
BlockPos blockPos2 = blockPos.offset(direction);
BlockState blockState = world.getBlockState(blockPos2);
FluidState fluidState = world.getFluidState(blockPos2);
if (fluidState.isIn(FluidTags.LAVA)) {
if (blockState.getBlock() instanceof FluidDrainable && !((FluidDrainable) blockState.getBlock()).tryDrainFluid(world, blockPos2, blockState).isEmpty()) {
++i;
if (j < 6) {
queue.add(new Pair(blockPos2, j + 1));
}
} else if (blockState.getBlock() instanceof FluidBlock) {
world.setBlockState(blockPos2, Blocks.AIR.getDefaultState(), 3);
++i;
if (j < 6) {
queue.add(new Pair(blockPos2, j + 1));
}
}
}
}
if (i > 64) {
break;
}
}
return i > 0;
}
}

View File

@@ -0,0 +1,58 @@
package tech.nevets.vplus.blocks;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.block.AbstractBlock;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.Material;
import net.minecraft.particle.ParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Direction;
import net.minecraft.util.math.random.Random;
import net.minecraft.world.World;
public class SaturatedLavaSpongeBlock extends Block {
public SaturatedLavaSpongeBlock() {
super(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F));
}
@Environment(EnvType.CLIENT)
public void randomDisplayTick(BlockState state, World world, BlockPos pos, Random random) {
Direction direction = Direction.random(random);
if (direction != Direction.UP) {
BlockPos blockPos = pos.offset(direction);
BlockState blockState = world.getBlockState(blockPos);
if (!state.isOpaque() || !blockState.isSideSolidFullSquare(world, blockPos, direction.getOpposite())) {
double d = pos.getX();
double e = pos.getY();
double f = pos.getZ();
if (direction == Direction.DOWN) {
e -= 0.05D;
d += random.nextDouble();
f += random.nextDouble();
} else {
e += random.nextDouble() * 0.8D;
if (direction.getAxis() == Direction.Axis.X) {
f += random.nextDouble();
if (direction == Direction.EAST) {
++d;
} else {
d += 0.05D;
}
} else {
d += random.nextDouble();
if (direction == Direction.SOUTH) {
++f;
} else {
f += 0.05D;
}
}
}
world.addParticle(ParticleTypes.DRIPPING_LAVA, d, e, f, 0.0D, 0.0D, 0.0D);
}
}
}
}

View File

@@ -33,8 +33,8 @@ public class VPBlocks {
SAPPHIRE_BLOCK = register("sapphire_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.BLOCKS).getBlock();
RUBY_BLOCK = register("ruby_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.BLOCKS).getBlock();
JADE_BLOCK = register("jade_block", new Block(AbstractBlock.Settings.of(Material.METAL).requiresTool().strength(3.0F, 3.0F)), VPItemGroups.BLOCKS).getBlock();
LAVA_SPONGE_BLOCK = register("lava_sponge_block", new Block(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F)), VPItemGroups.BLOCKS).getBlock();
SATURATED_LAVA_SPONGE_BLOCK = register("saturated_lava_sponge_block", new Block(AbstractBlock.Settings.of(Material.STONE).requiresTool().strength(1.5F, 1.5F)), VPItemGroups.BLOCKS, new Item.Settings().recipeRemainder(Item.fromBlock(LAVA_SPONGE_BLOCK))).getBlock();
LAVA_SPONGE_BLOCK = register("lava_sponge", new LavaSpongeBlock(), VPItemGroups.BLOCKS).getBlock();
SATURATED_LAVA_SPONGE_BLOCK = register("saturated_lava_sponge", new SaturatedLavaSpongeBlock(), VPItemGroups.BLOCKS, new Item.Settings().recipeRemainder(Item.fromBlock(LAVA_SPONGE_BLOCK))).getBlock();
///////////////////\\\\ITERATOR////\\\\\\\\\\\\\\\\\\\

View File

@@ -10,19 +10,19 @@ import net.minecraft.sound.SoundEvents;
public enum VPMaterials implements ToolMaterial, ArmorMaterial {
COPPER(20, Ingredient.ofItems(Items.COPPER_INGOT), "copper", 13, new int[]{2, 4, 5, 2}, SoundEvents.ITEM_ARMOR_EQUIP_GOLD, 0.0F, 0.0F, 2, 200, 5.0F, 3.0F),
EMERALD(30, Ingredient.ofItems(Items.EMERALD), "emerald", 30, new int[]{2, 6, 8, 2}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 0.5F, 0.0F, 3, 750, 7.0F, 4.0F),
SAPPHIRE(50, Ingredient.ofItems(VPItems.SAPPHIRE), "sapphire", 40, new int[]{6, 8, 10, 6}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, 0.1F, 4, 3000, 8.0F, 6.0F),
RUBY(50, Ingredient.ofItems(VPItems.RUBY), "ruby", 40, new int[]{10, 15, 20, 10}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, .01F, 4, 3000, 8.0F, 6.0F),
JADE(50, Ingredient.ofItems(VPItems.JADE), "jade", 40, new int[]{10, 15, 20, 10}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, 0.1F, 4, 3000, 8.0F, 6.0F);
COPPER("copper", 20, Ingredient.ofItems(Items.COPPER_INGOT), 13, new int[]{2, 4, 5, 2}, SoundEvents.ITEM_ARMOR_EQUIP_GOLD, 0.0F, 0.0F, 2, 200, 5.0F, 3.0F),
EMERALD("emerald", 30, Ingredient.ofItems(Items.EMERALD), 30, new int[]{2, 6, 8, 2}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 0.5F, 0.0F, 3, 750, 7.0F, 4.0F),
SAPPHIRE("sapphire", 50, Ingredient.ofItems(VPItems.SAPPHIRE), 40, new int[]{6, 8, 10, 6}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, 0.1F, 4, 3000, 8.0F, 6.0F),
RUBY("ruby", 50, Ingredient.ofItems(VPItems.RUBY), 40, new int[]{10, 15, 20, 10}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, .01F, 4, 3000, 8.0F, 6.0F),
JADE("jade", 50, Ingredient.ofItems(VPItems.JADE), 40, new int[]{10, 15, 20, 10}, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 1.0F, 0.1F, 4, 3000, 8.0F, 6.0F);
private static final int[] BASE_ARMOR_DURABILITY = new int[]{13, 15, 16, 11};
// Used by both
private String name;
private int enchantability;
private Ingredient repairIngredient;
// Used by armor
private String name;
private int armorDurability;
private int[] protectionAmounts;
private SoundEvent equipSound;
@@ -49,7 +49,8 @@ public enum VPMaterials implements ToolMaterial, ArmorMaterial {
}
// Used for tool materials
VPMaterials(int miningLevel, int toolDurability, float miningSpeed, float attackDamage, int enchantability, Ingredient repairIngredient) {
VPMaterials(String name, int miningLevel, int toolDurability, float miningSpeed, float attackDamage, int enchantability, Ingredient repairIngredient) {
this.name = name;
this.miningLevel = miningLevel;
this.toolDurability = toolDurability;
this.miningSpeed = miningSpeed;
@@ -59,10 +60,10 @@ public enum VPMaterials implements ToolMaterial, ArmorMaterial {
}
//Used for both
VPMaterials(int enchantability, Ingredient repairIngredient, String name, int armorDurability, int[] protectionAmounts, SoundEvent equipSound, float toughness, float knockbackResistance, int miningLevel, int toolDurability, float miningSpeed, float attackDamage) {
VPMaterials(String name, int enchantability, Ingredient repairIngredient, int armorDurability, int[] protectionAmounts, SoundEvent equipSound, float toughness, float knockbackResistance, int miningLevel, int toolDurability, float miningSpeed, float attackDamage) {
this.name = name;
this.enchantability = enchantability;
this.repairIngredient = repairIngredient;
this.name = name;
this.armorDurability = armorDurability;
this.protectionAmounts = protectionAmounts;
this.equipSound = equipSound;

View File

@@ -0,0 +1,10 @@
package tech.nevets.vplus.items.tools;
import net.minecraft.item.SwordItem;
import net.minecraft.item.ToolMaterial;
public class LongSwordBase extends SwordItem {
public LongSwordBase(ToolMaterial toolMaterial, Settings settings) {
super(toolMaterial, 2, -3.F, settings);
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "minecraft:block/torch"
}
}
}

View File

@@ -1,5 +0,0 @@
{
"variants": {
"": { "model": "vplus:block/platinum_block"}
}
}

View File

@@ -1,5 +0,0 @@
{
"variants": {
"": { "model": "vplus:block/platinum_ore"}
}
}

View File

@@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "vplus:block/sapphire_block"}
}
}

View File

@@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "vplus:block/sapphire_ore"}
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -1,8 +0,0 @@
{
"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 }
}
}

View File

@@ -10,18 +10,17 @@
"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.sapphire_ore": "Sapphire Ore",
"block.vplus.sapphire_block": "Sapphire 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.sapphire": "Sapphire",
"item.vplus.ruby": "Ruby",
"item.vplus.copper_sword": "Copper Sword",
"item.vplus.emerald_sword": "Emerald Sword",
"item.vplus.platinum_sword": "Platinum Sword",
"item.vplus.sapphire_sword": "Sapphire Sword",
"item.vplus.ruby_sword": "Ruby Sword",
"item.vplus.copper_helmet": "Copper Helmet",
@@ -32,10 +31,10 @@
"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.sapphire_helmet": "Sapphire Helmet",
"item.vplus.sapphire_chestplate": "Sapphire Chestplate",
"item.vplus.sapphire_leggings": "Sapphire Leggings",
"item.vplus.sapphire_boots": "Sapphire Boots",
"item.vplus.ruby_helmet": "Ruby Helmet",
"item.vplus.ruby_chestplate": "Ruby Chestplate",
"item.vplus.ruby_leggings": "Ruby Leggings",
@@ -49,10 +48,10 @@
"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.sapphire_pickaxe": "Sapphire Pickaxe",
"item.vplus.sapphire_axe": "Sapphire Axe",
"item.vplus.sapphire_shovel": "Sapphire Shovel",
"item.vplus.sapphire_hoe": "Sapphire Hoe",
"item.vplus.ruby_pickaxe": "Ruby Pickaxe",
"item.vplus.ruby_axe": "Ruby Axe",
"item.vplus.ruby_shovel": "Ruby Shovel",
@@ -68,48 +67,8 @@
"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.sapphire_apple": "Sapphire Apple",
"item.vplus.enchanted_sapphire_apple": "Enchanted Sapphire 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"
"item.vplus.enchanted_ruby_apple": "Enchanted Ruby Apple"
}

View File

@@ -1,6 +0,0 @@
{
"parent": "minecraft:block/template_torch_wall",
"textures": {
"torch": "minecraft:block/torch"
}
}

View File

@@ -1,6 +0,0 @@
{
"parent": "minecraft:block/template_torch",
"textures": {
"torch": "minecraft:block/torch"
}
}

View File

@@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "vplus:block/platinum_block"
"all": "vplus:block/sapphire_block"
}
}

View File

@@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "vplus:block/platinum_ore"
"all": "vplus:block/sapphire_ore"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/acacia_planks",
"top": "minecraft:block/acacia_planks",
"side": "minecraft:block/acacia_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/andesite",
"top": "minecraft:block/andesite",
"side": "minecraft:block/andesite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/birch_planks",
"top": "minecraft:block/birch_planks",
"side": "minecraft:block/birch_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/blackstone_top",
"top": "minecraft:block/blackstone_top",
"side": "minecraft:block/blackstone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/bricks",
"top": "minecraft:block/bricks",
"side": "minecraft:block/bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/cobblestone",
"top": "minecraft:block/cobblestone",
"side": "minecraft:block/cobblestone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/crimson_planks",
"top": "minecraft:block/crimson_planks",
"side": "minecraft:block/crimson_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/red_sandstone_top",
"top": "minecraft:block/red_sandstone_top",
"side": "minecraft:block/cut_red_sandstone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/sandstone_top",
"top": "minecraft:block/sandstone_top",
"side": "minecraft:block/cut_sandstone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/dark_oak_planks",
"top": "minecraft:block/dark_oak_planks",
"side": "minecraft:block/dark_oak_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/dark_prismarine",
"top": "minecraft:block/dark_prismarine",
"side": "minecraft:block/dark_prismarine"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/diorite",
"top": "minecraft:block/diorite",
"side": "minecraft:block/diorite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/end_stone_bricks",
"top": "minecraft:block/end_stone_bricks",
"side": "minecraft:block/end_stone_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/granite",
"top": "minecraft:block/granite",
"side": "minecraft:block/granite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/jungle_planks",
"top": "minecraft:block/jungle_planks",
"side": "minecraft:block/jungle_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/mossy_cobblestone",
"top": "minecraft:block/mossy_cobblestone",
"side": "minecraft:block/mossy_cobblestone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/mossy_stone_bricks",
"top": "minecraft:block/mossy_stone_bricks",
"side": "minecraft:block/mossy_stone_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/nether_bricks",
"top": "minecraft:block/nether_bricks",
"side": "minecraft:block/nether_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/oak_planks",
"top": "minecraft:block/oak_planks",
"side": "minecraft:block/oak_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/oak_planks",
"top": "minecraft:block/oak_planks",
"side": "minecraft:block/oak_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/polished_andesite",
"top": "minecraft:block/polished_andesite",
"side": "minecraft:block/polished_andesite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/polished_blackstone_bricks",
"top": "minecraft:block/polished_blackstone_bricks",
"side": "minecraft:block/polished_blackstone_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/polished_blackstone",
"top": "minecraft:block/polished_blackstone",
"side": "minecraft:block/polished_blackstone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/polished_diorite",
"top": "minecraft:block/polished_diorite",
"side": "minecraft:block/polished_diorite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/polished_granite",
"top": "minecraft:block/polished_granite",
"side": "minecraft:block/polished_granite"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/prismarine_bricks",
"top": "minecraft:block/prismarine_bricks",
"side": "minecraft:block/prismarine_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/prismarine",
"top": "minecraft:block/prismarine",
"side": "minecraft:block/prismarine"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/purpur_block",
"top": "minecraft:block/purpur_block",
"side": "minecraft:block/purpur_block"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/quartz_block_top",
"top": "minecraft:block/quartz_block_top",
"side": "minecraft:block/quartz_block_side"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/red_nether_bricks",
"top": "minecraft:block/red_nether_bricks",
"side": "minecraft:block/red_nether_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/red_sandstone_bottom",
"top": "minecraft:block/red_sandstone_top",
"side": "minecraft:block/red_sandstone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/sandstone_bottom",
"top": "minecraft:block/sandstone_top",
"side": "minecraft:block/sandstone"
}
}

View File

@@ -1,25 +0,0 @@
{ "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" }
}
}
]
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/quartz_block_bottom",
"top": "minecraft:block/quartz_block_bottom",
"side": "minecraft:block/quartz_block_bottom"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/red_sandstone_top",
"top": "minecraft:block/red_sandstone_top",
"side": "minecraft:block/red_sandstone_top"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/sandstone_top",
"top": "minecraft:block/sandstone_top",
"side": "minecraft:block/sandstone_top"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/smooth_stone",
"top": "minecraft:block/smooth_stone",
"side": "minecraft:block/smooth_stone_slab_side"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/spruce_planks",
"top": "minecraft:block/spruce_planks",
"side": "minecraft:block/spruce_planks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/stone_bricks",
"top": "minecraft:block/stone_bricks",
"side": "minecraft:block/stone_bricks"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/stone",
"top": "minecraft:block/stone",
"side": "minecraft:block/stone"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "vplus:block/vertical_slab",
"textures": {
"bottom": "minecraft:block/warped_planks",
"top": "minecraft:block/warped_planks",
"side": "minecraft:block/warped_planks"
}
}

View File

@@ -1,6 +0,0 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/enchanted_platinum_apple"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/enchanted_sapphire_apple"
}
}

Some files were not shown because too many files have changed in this diff Show More