From 572bf04482d1736c67db7b2e2f8b3a6f65bcf739 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 19 Jul 2018 12:55:02 +1000 Subject: [PATCH] Cleanup the bukkit implementation, and update to the 1.13 release items/blocks. --- worldedit-bukkit/build.gradle | 4 - .../sk89q/worldedit/bukkit/BukkitAdapter.java | 151 +- .../worldedit/bukkit/BukkitBlockRegistry.java | 3 +- .../sk89q/worldedit/bukkit/BukkitPlayer.java | 10 +- .../bukkit/BukkitPlayerBlockBag.java | 6 +- .../bukkit/BukkitServerInterface.java | 2 +- .../sk89q/worldedit/bukkit/BukkitUtil.java | 185 - .../sk89q/worldedit/bukkit/BukkitWorld.java | 12 +- .../EditSessionBlockChangeDelegate.java | 4 +- .../bukkit/adapter/impl/Spigot_v1_13_R1.class | Bin 19806 -> 19807 bytes .../worldedit/bukkit/BukkitWorldTest.java | 2 +- .../sk89q/worldedit/blocks/BlockMaterial.java | 42 - .../com/sk89q/worldedit/blocks/Blocks.java | 2 +- .../extension/factory/DefaultBlockParser.java | 2 +- .../worldedit/world/block/BlockTypes.java | 37 +- .../sk89q/worldedit/world/item/ItemTypes.java | 98 +- .../registry/PassthroughBlockMaterial.java | 54 - .../world/registry/SimpleBlockMaterial.java | 60 - .../worldedit/world/registry/blocks.json | 24011 +++++++++------- .../sk89q/worldedit/world/registry/items.json | 8856 ++---- 20 files changed, 17201 insertions(+), 16340 deletions(-) delete mode 100644 worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitUtil.java diff --git a/worldedit-bukkit/build.gradle b/worldedit-bukkit/build.gradle index ff4da1ee2..7232b2648 100644 --- a/worldedit-bukkit/build.gradle +++ b/worldedit-bukkit/build.gradle @@ -11,7 +11,6 @@ dependencies { compile project(':worldedit-core') compile 'com.sk89q:dummypermscompat:1.8' compile 'org.bukkit:bukkit:1.13-pre7-R0.1-SNAPSHOT' // zzz -// compile 'org.bukkit:bukkit:1.9.4-R0.1-SNAPSHOT' // zzz testCompile 'org.mockito:mockito-core:1.9.0-rc1' } @@ -36,10 +35,7 @@ jar { shadowJar { dependencies { include(dependency(':worldedit-core')) - include(dependency('com.google.code.gson:gson')) } - - relocate('com.google.gson', 'com.sk89q.worldedit.internal.gson') } build.dependsOn(shadowJar) diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitAdapter.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitAdapter.java index 306f19b7b..edfbb9c7e 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitAdapter.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitAdapter.java @@ -19,22 +19,59 @@ package com.sk89q.worldedit.bukkit; +import com.google.common.base.Function; import com.sk89q.worldedit.Vector; +import com.sk89q.worldedit.WorldEdit; +import com.sk89q.worldedit.blocks.BaseItemStack; import com.sk89q.worldedit.entity.Entity; +import com.sk89q.worldedit.extension.input.InputParseException; +import com.sk89q.worldedit.extension.input.ParserContext; import com.sk89q.worldedit.util.Location; import com.sk89q.worldedit.world.World; +import com.sk89q.worldedit.world.block.BlockState; +import com.sk89q.worldedit.world.block.BlockStateHolder; +import com.sk89q.worldedit.world.block.BlockType; +import com.sk89q.worldedit.world.block.BlockTypes; +import com.sk89q.worldedit.world.item.ItemType; +import com.sk89q.worldedit.world.item.ItemTypes; import org.bukkit.Bukkit; +import org.bukkit.Material; +import org.bukkit.block.data.BlockData; +import org.bukkit.inventory.ItemStack; import static com.google.common.base.Preconditions.checkNotNull; +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; + +import javax.annotation.Nullable; + /** * Adapts between Bukkit and WorldEdit equivalent objects. */ -final class BukkitAdapter { +public class BukkitAdapter { private BukkitAdapter() { } + private static final ParserContext TO_BLOCK_CONTEXT = new ParserContext(); + + static { + TO_BLOCK_CONTEXT.setRestricted(false); + } + + /** + * Checks equality between a WorldEdit BlockType and a Bukkit Material + * + * @param blockType The WorldEdit BlockType + * @param type The Bukkit Material + * @return If they are equal + */ + public static boolean equals(BlockType blockType, Material type) { + return Objects.equals(blockType.getId(), type.getKey().toString()); + } + /** * Convert any WorldEdit world into an equivalent wrapped Bukkit world. * @@ -95,7 +132,7 @@ final class BukkitAdapter { */ public static Location adapt(org.bukkit.Location location) { checkNotNull(location); - Vector position = BukkitUtil.toVector(location); + Vector position = asVector(location); return new com.sk89q.worldedit.util.Location( adapt(location.getWorld()), position, @@ -151,6 +188,17 @@ final class BukkitAdapter { location.getPitch()); } + /** + * Create a WorldEdit Vector from a Bukkit location. + * + * @param location The Bukkit location + * @return a WorldEdit vector + */ + public static Vector asVector(org.bukkit.Location location) { + checkNotNull(location); + return new Vector(location.getX(), location.getY(), location.getZ()); + } + /** * Create a WorldEdit entity from a Bukkit entity. * @@ -162,4 +210,103 @@ final class BukkitAdapter { return new BukkitEntity(entity); } + /** + * Create a Bukkit Material form a WorldEdit ItemType + * + * @param itemType The WorldEdit ItemType + * @return The Bukkit Material + */ + public static Material adapt(ItemType itemType) { + checkNotNull(itemType); + if (!itemType.getId().startsWith("minecraft:")) { + throw new IllegalArgumentException("Bukkit only supports Minecraft items"); + } + return Material.getMaterial(itemType.getId().replace("minecraft:", "").toUpperCase()); + } + + /** + * Create a Bukkit Material form a WorldEdit BlockType + * + * @param blockType The WorldEdit BlockType + * @return The Bukkit Material + */ + public static Material adapt(BlockType blockType) { + checkNotNull(blockType); + if (!blockType.getId().startsWith("minecraft:")) { + throw new IllegalArgumentException("Bukkit only supports Minecraft blocks"); + } + return Material.getMaterial(blockType.getId().replace("minecraft:", "").toUpperCase()); + } + + private static Map blockStateCache = new HashMap<>(); + + /** + * Create a WorldEdit BlockState from a Bukkit BlockData + * + * @param blockData The Bukkit BlockData + * @return The WorldEdit BlockState + */ + public static BlockState adapt(BlockData blockData) { + checkNotNull(blockData); + return blockStateCache.computeIfAbsent(blockData.getAsString(), new Function() { + @Nullable + @Override + public BlockState apply(@Nullable String input) { + try { + return WorldEdit.getInstance().getBlockFactory().parseFromInput(input, TO_BLOCK_CONTEXT).toImmutableState(); + } catch (InputParseException e) { + e.printStackTrace(); + return null; + } + } + }); + } + + /** + * Create a Bukkit BlockData from a WorldEdit BlockStateHolder + * + * @param block The WorldEdit BlockStateHolder + * @return The Bukkit BlockData + */ + public static BlockData adapt(BlockStateHolder block) { + checkNotNull(block); + return Bukkit.createBlockData(block.getAsString()); + } + + /** + * Create a WorldEdit BlockState from a Bukkit ItemStack + * + * @param itemStack The Bukkit ItemStack + * @return The WorldEdit BlockState + */ + public static BlockState asBlockState(ItemStack itemStack) { + checkNotNull(itemStack); + if (itemStack.getType().isBlock()) { + return adapt(itemStack.getType().createBlockData()); + } else { + return BlockTypes.AIR.getDefaultState(); + } + } + + /** + * Create a WorldEdit BaseItemStack from a Bukkit ItemStack + * + * @param itemStack The Bukkit ItemStack + * @return The WorldEdit BaseItemStack + */ + public static BaseItemStack adapt(ItemStack itemStack) { + checkNotNull(itemStack); + return new BaseItemStack(ItemTypes.get(itemStack.getType().getKey().toString()), itemStack.getAmount()); + } + + /** + * Create a Bukkit ItemStack from a WorldEdit BaseItemStack + * + * @param item The WorldEdit BaseItemStack + * @return The Bukkit ItemStack + */ + public static ItemStack adapt(BaseItemStack item) { + checkNotNull(item); + return new ItemStack(adapt(item.getType()), item.getAmount()); + } } diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitBlockRegistry.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitBlockRegistry.java index 8c3ef7c9d..32f73967c 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitBlockRegistry.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitBlockRegistry.java @@ -22,7 +22,6 @@ package com.sk89q.worldedit.bukkit; import com.sk89q.worldedit.blocks.BlockMaterial; import com.sk89q.worldedit.registry.state.Property; import com.sk89q.worldedit.world.block.BlockType; -import com.sk89q.worldedit.world.block.BlockTypes; import com.sk89q.worldedit.world.registry.BundledBlockRegistry; import com.sk89q.worldedit.world.registry.PassthroughBlockMaterial; import org.bukkit.Material; @@ -39,7 +38,7 @@ public class BukkitBlockRegistry extends BundledBlockRegistry { @Nullable @Override public BlockMaterial getMaterial(BlockType blockType) { - return materialMap.computeIfAbsent(BukkitUtil.toMaterial(blockType), + return materialMap.computeIfAbsent(BukkitAdapter.adapt(blockType), material -> new BukkitBlockMaterial(BukkitBlockRegistry.super.getMaterial(blockType), material)); } diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayer.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayer.java index 983e61770..eac2dc0af 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayer.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayer.java @@ -61,7 +61,7 @@ public class BukkitPlayer extends AbstractPlayerActor { ItemStack itemStack = handSide == HandSide.MAIN_HAND ? player.getInventory().getItemInMainHand() : player.getInventory().getItemInOffHand(); - return BukkitUtil.toBaseItemStack(itemStack); + return BukkitAdapter.adapt(itemStack); } @Override @@ -69,7 +69,7 @@ public class BukkitPlayer extends AbstractPlayerActor { ItemStack itemStack = handSide == HandSide.MAIN_HAND ? player.getInventory().getItemInMainHand() : player.getInventory().getItemInOffHand(); - return new BaseBlock(BukkitUtil.toBlock(itemStack)); + return new BaseBlock(BukkitAdapter.asBlockState(itemStack)); } @Override @@ -79,7 +79,7 @@ public class BukkitPlayer extends AbstractPlayerActor { @Override public void giveItem(BaseItemStack itemStack) { - player.getInventory().addItem(BukkitUtil.toItemStack(itemStack)); + player.getInventory().addItem(BukkitAdapter.adapt(itemStack)); } @Override @@ -135,7 +135,7 @@ public class BukkitPlayer extends AbstractPlayerActor { @Override public World getWorld() { - return BukkitUtil.getWorld(player.getWorld()); + return BukkitAdapter.adapt(player.getWorld()); } @Override @@ -176,7 +176,7 @@ public class BukkitPlayer extends AbstractPlayerActor { @Override public com.sk89q.worldedit.util.Location getLocation() { Location nativeLocation = player.getLocation(); - Vector position = BukkitUtil.toVector(nativeLocation); + Vector position = BukkitAdapter.asVector(nativeLocation); return new com.sk89q.worldedit.util.Location( getWorld(), position, diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayerBlockBag.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayerBlockBag.java index 6c13a12c8..cc0ce26df 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayerBlockBag.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitPlayerBlockBag.java @@ -79,7 +79,7 @@ public class BukkitPlayerBlockBag extends BlockBag { continue; } - if (!BukkitUtil.equals(blockState.getBlockType(), bukkitItem.getType())) { + if (!BukkitAdapter.equals(blockState.getBlockType(), bukkitItem.getType())) { // Type id doesn't fit continue; } @@ -132,7 +132,7 @@ public class BukkitPlayerBlockBag extends BlockBag { continue; } - if (!BukkitUtil.equals(blockState.getBlockType(), bukkitItem.getType())) { + if (!BukkitAdapter.equals(blockState.getBlockType(), bukkitItem.getType())) { // Type id doesn't fit continue; } @@ -158,7 +158,7 @@ public class BukkitPlayerBlockBag extends BlockBag { } if (freeSlot > -1) { - items[freeSlot] = new ItemStack(BukkitUtil.toItemStack(new BaseItemStack(blockState.getBlockType().getItemType(), amount))); + items[freeSlot] = BukkitAdapter.adapt(new BaseItemStack(blockState.getBlockType().getItemType(), amount)); return; } diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitServerInterface.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitServerInterface.java index e66fdaa40..3e8f4bcf9 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitServerInterface.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitServerInterface.java @@ -87,7 +87,7 @@ public class BukkitServerInterface implements MultiUserPlatform { List ret = new ArrayList<>(worlds.size()); for (World world : worlds) { - ret.add(BukkitUtil.getWorld(world)); + ret.add(BukkitAdapter.adapt(world)); } return ret; diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitUtil.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitUtil.java deleted file mode 100644 index bb981c79c..000000000 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitUtil.java +++ /dev/null @@ -1,185 +0,0 @@ -/* - * WorldEdit, a Minecraft world manipulation toolkit - * Copyright (C) sk89q - * Copyright (C) WorldEdit team and contributors - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see . - */ - -package com.sk89q.worldedit.bukkit; - -import com.sk89q.worldedit.BlockVector; -import com.sk89q.worldedit.Vector; -import com.sk89q.worldedit.WorldEdit; -import com.sk89q.worldedit.WorldEditException; -import com.sk89q.worldedit.blocks.BaseItemStack; -import com.sk89q.worldedit.extension.input.InputParseException; -import com.sk89q.worldedit.extension.input.ParserContext; -import com.sk89q.worldedit.extent.Extent; -import com.sk89q.worldedit.util.Location; -import com.sk89q.worldedit.world.block.BlockState; -import com.sk89q.worldedit.world.block.BlockStateHolder; -import com.sk89q.worldedit.world.block.BlockType; -import com.sk89q.worldedit.world.block.BlockTypes; -import com.sk89q.worldedit.world.item.ItemType; -import com.sk89q.worldedit.world.item.ItemTypes; -import org.bukkit.Bukkit; -import org.bukkit.Material; -import org.bukkit.Server; -import org.bukkit.World; -import org.bukkit.block.Block; -import org.bukkit.block.BlockFace; -import org.bukkit.block.data.BlockData; -import org.bukkit.entity.Player; -import org.bukkit.inventory.ItemStack; - -import java.util.List; -import java.util.Objects; - -public final class BukkitUtil { - - private BukkitUtil() { - } - - private static final ParserContext TO_BLOCK_CONTEXT = new ParserContext(); - - static { - TO_BLOCK_CONTEXT.setRestricted(false); - } - - public static com.sk89q.worldedit.world.World getWorld(World w) { - return new BukkitWorld(w); - } - - public static BlockVector toVector(Block block) { - return new BlockVector(block.getX(), block.getY(), block.getZ()); - } - - public static BlockVector toVector(BlockFace face) { - return new BlockVector(face.getModX(), face.getModY(), face.getModZ()); - } - - public static Vector toVector(org.bukkit.Location loc) { - return new Vector(loc.getX(), loc.getY(), loc.getZ()); - } - - public static Location toLocation(org.bukkit.Location loc) { - return new Location( - getWorld(loc.getWorld()), - new Vector(loc.getX(), loc.getY(), loc.getZ()), - loc.getYaw(), loc.getPitch() - ); - } - - public static Vector toVector(org.bukkit.util.Vector vector) { - return new Vector(vector.getX(), vector.getY(), vector.getZ()); - } - - public static org.bukkit.Location toLocation(World world, Vector pt) { - return new org.bukkit.Location(world, pt.getX(), pt.getY(), pt.getZ()); - } - - public static org.bukkit.Location center(org.bukkit.Location loc) { - return new org.bukkit.Location( - loc.getWorld(), - loc.getBlockX() + 0.5, - loc.getBlockY() + 0.5, - loc.getBlockZ() + 0.5, - loc.getPitch(), - loc.getYaw() - ); - } - - public static Player matchSinglePlayer(Server server, String name) { - List players = server.matchPlayer(name); - if (players.isEmpty()) { - return null; - } - return players.get(0); - } - - /** - * Bukkit's Location class has serious problems with floating point - * precision. - */ - @SuppressWarnings("RedundantIfStatement") - public static boolean equals(org.bukkit.Location a, org.bukkit.Location b) { - if (Math.abs(a.getX() - b.getX()) > EQUALS_PRECISION) return false; - if (Math.abs(a.getY() - b.getY()) > EQUALS_PRECISION) return false; - if (Math.abs(a.getZ() - b.getZ()) > EQUALS_PRECISION) return false; - return true; - } - - public static boolean equals(BlockType blockType, Material type) { - return Objects.equals(blockType.getId(), type.getKey().toString()); - } - - public static final double EQUALS_PRECISION = 0.0001; - - public static org.bukkit.Location toLocation(Location location) { - Vector pt = location.toVector(); - return new org.bukkit.Location( - toWorld(location.getExtent()), - pt.getX(), pt.getY(), pt.getZ(), - location.getYaw(), location.getPitch() - ); - } - - public static World toWorld(final Extent world) { - return ((BukkitWorld) world).getWorld(); - } - - public static Material toMaterial(ItemType itemType) { - if (!itemType.getId().startsWith("minecraft:")) { - throw new IllegalArgumentException("Bukkit only supports Minecraft items"); - } - return Material.getMaterial(itemType.getId().replace("minecraft:", "").toUpperCase()); - } - - public static Material toMaterial(BlockType blockType) { - if (!blockType.getId().startsWith("minecraft:")) { - throw new IllegalArgumentException("Bukkit only supports Minecraft blocks"); - } - return Material.getMaterial(blockType.getId().replace("minecraft:", "").toUpperCase()); - } - - public static BlockState toBlock(BlockData blockData) { - try { - return WorldEdit.getInstance().getBlockFactory().parseFromInput(blockData.getAsString(), TO_BLOCK_CONTEXT).toImmutableState(); - } catch (InputParseException e) { - e.printStackTrace(); - } - return null; - } - - public static BlockData toBlock(BlockStateHolder block) { - return Bukkit.createBlockData(block.getAsString()); - } - - public static BlockState toBlock(ItemStack itemStack) throws WorldEditException { - if (itemStack.getType().isBlock()) { - return toBlock(itemStack.getType().createBlockData()); - } else { - return BlockTypes.AIR.getDefaultState(); - } - } - - public static BaseItemStack toBaseItemStack(ItemStack itemStack) { - return new BaseItemStack(ItemTypes.get(itemStack.getType().getKey().toString()), itemStack.getAmount()); - } - - public static ItemStack toItemStack(BaseItemStack item) { - return new ItemStack(toMaterial(item.getType()), item.getAmount()); - } -} diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitWorld.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitWorld.java index 60219b6c9..12f2ca8b0 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitWorld.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitWorld.java @@ -89,7 +89,7 @@ public class BukkitWorld extends AbstractWorld { List ents = world.getEntities(); List entities = new ArrayList<>(); for (Entity ent : ents) { - if (region.contains(BukkitUtil.toVector(ent.getLocation()))) { + if (region.contains(BukkitAdapter.asVector(ent.getLocation()))) { entities.add(BukkitAdapter.adapt(ent)); } } @@ -284,14 +284,14 @@ public class BukkitWorld extends AbstractWorld { public boolean generateTree(TreeGenerator.TreeType type, EditSession editSession, Vector pt) { World world = getWorld(); TreeType bukkitType = toBukkitTreeType(type); - return type != null && world.generateTree(BukkitUtil.toLocation(world, pt), bukkitType, + return type != null && world.generateTree(BukkitAdapter.adapt(world, pt), bukkitType, new EditSessionBlockChangeDelegate(editSession)); } @Override public void dropItem(Vector pt, BaseItemStack item) { World world = getWorld(); - world.dropItemNaturally(BukkitUtil.toLocation(world, pt), BukkitUtil.toItemStack(item)); + world.dropItemNaturally(BukkitAdapter.adapt(world, pt), BukkitAdapter.adapt(item)); } @Override @@ -343,7 +343,7 @@ public class BukkitWorld extends AbstractWorld { return false; } - world.playEffect(BukkitUtil.toLocation(world, position), effect, data); + world.playEffect(BukkitAdapter.adapt(world, position), effect, data); return true; } @@ -356,7 +356,7 @@ public class BukkitWorld extends AbstractWorld { @Override public com.sk89q.worldedit.world.block.BlockState getBlock(Vector position) { Block bukkitBlock = getWorld().getBlockAt(position.getBlockX(), position.getBlockY(), position.getBlockZ()); - return BukkitUtil.toBlock(bukkitBlock.getBlockData()); + return BukkitAdapter.adapt(bukkitBlock.getBlockData()); } @Override @@ -366,7 +366,7 @@ public class BukkitWorld extends AbstractWorld { return adapter.setBlock(BukkitAdapter.adapt(getWorld(), position), block, notifyAndLight); } else { Block bukkitBlock = getWorld().getBlockAt(position.getBlockX(), position.getBlockY(), position.getBlockZ()); - bukkitBlock.setBlockData(BukkitUtil.toBlock(block), notifyAndLight); + bukkitBlock.setBlockData(BukkitAdapter.adapt(block), notifyAndLight); return true; } } diff --git a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/EditSessionBlockChangeDelegate.java b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/EditSessionBlockChangeDelegate.java index c492d8158..24e14d964 100644 --- a/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/EditSessionBlockChangeDelegate.java +++ b/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/EditSessionBlockChangeDelegate.java @@ -40,7 +40,7 @@ public class EditSessionBlockChangeDelegate implements BlockChangeDelegate { @Override public boolean setBlockData(int x, int y, int z, BlockData blockData) { try { - editSession.setBlock(new Vector(x, y, z), BukkitUtil.toBlock(blockData)); + editSession.setBlock(new Vector(x, y, z), BukkitAdapter.adapt(blockData)); } catch (MaxChangedBlocksException e) { return false; } @@ -49,7 +49,7 @@ public class EditSessionBlockChangeDelegate implements BlockChangeDelegate { @Override public BlockData getBlockData(int x, int y, int z) { - return BukkitUtil.toBlock(editSession.getBlock(new Vector(x, y, z))); + return BukkitAdapter.adapt(editSession.getBlock(new Vector(x, y, z))); } @Override diff --git a/worldedit-bukkit/src/main/resources/com/sk89q/worldedit/bukkit/adapter/impl/Spigot_v1_13_R1.class b/worldedit-bukkit/src/main/resources/com/sk89q/worldedit/bukkit/adapter/impl/Spigot_v1_13_R1.class index 8520a5c418da59238164651667d59edfe289a3e6..3be81c1a3d8f72167fb23b2ee57a9aaf0588fcec 100644 GIT binary patch delta 40 tcmcaNi}C&}#tmFrj2e>@wL~V%Yw_|srX&`Wq!uwUuqJ|7o2|4|lmQSp3|asH delta 41 xcmcaVi}Btp#tmFrjH;6_C`gMqm1bvWmV}mM<}fm_m*hL; { text[2] = blockAndExtraData.length > 3 ? blockAndExtraData[3] : ""; text[3] = blockAndExtraData.length > 4 ? blockAndExtraData[4] : ""; return new SignBlock(state, text); - } else if (blockType == BlockTypes.MOB_SPAWNER) { + } else if (blockType == BlockTypes.SPAWNER) { // Allow setting mob spawn type if (blockAndExtraData.length > 1) { String mobName = blockAndExtraData[1]; diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java index 877b113ff..f2352d189 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java @@ -26,7 +26,6 @@ import javax.annotation.Nullable; */ public final class BlockTypes { - public static final BlockType ACACIA_BARK = register("minecraft:acacia_bark"); public static final BlockType ACACIA_BUTTON = register("minecraft:acacia_button"); public static final BlockType ACACIA_DOOR = register("minecraft:acacia_door"); public static final BlockType ACACIA_FENCE = register("minecraft:acacia_fence"); @@ -39,6 +38,7 @@ public final class BlockTypes { public static final BlockType ACACIA_SLAB = register("minecraft:acacia_slab"); public static final BlockType ACACIA_STAIRS = register("minecraft:acacia_stairs"); public static final BlockType ACACIA_TRAPDOOR = register("minecraft:acacia_trapdoor"); + public static final BlockType ACACIA_WOOD = register("minecraft:acacia_wood"); public static final BlockType ACTIVATOR_RAIL = register("minecraft:activator_rail"); public static final BlockType AIR = register("minecraft:air"); public static final BlockType ALLIUM = register("minecraft:allium"); @@ -51,7 +51,6 @@ public final class BlockTypes { public static final BlockType BEACON = register("minecraft:beacon"); public static final BlockType BEDROCK = register("minecraft:bedrock"); public static final BlockType BEETROOTS = register("minecraft:beetroots"); - public static final BlockType BIRCH_BARK = register("minecraft:birch_bark"); public static final BlockType BIRCH_BUTTON = register("minecraft:birch_button"); public static final BlockType BIRCH_DOOR = register("minecraft:birch_door"); public static final BlockType BIRCH_FENCE = register("minecraft:birch_fence"); @@ -64,6 +63,7 @@ public final class BlockTypes { public static final BlockType BIRCH_SLAB = register("minecraft:birch_slab"); public static final BlockType BIRCH_STAIRS = register("minecraft:birch_stairs"); public static final BlockType BIRCH_TRAPDOOR = register("minecraft:birch_trapdoor"); + public static final BlockType BIRCH_WOOD = register("minecraft:birch_wood"); public static final BlockType BLACK_BANNER = register("minecraft:black_banner"); public static final BlockType BLACK_BED = register("minecraft:black_bed"); public static final BlockType BLACK_CARPET = register("minecraft:black_carpet"); @@ -95,6 +95,7 @@ public final class BlockTypes { public static final BlockType BRAIN_CORAL = register("minecraft:brain_coral"); public static final BlockType BRAIN_CORAL_BLOCK = register("minecraft:brain_coral_block"); public static final BlockType BRAIN_CORAL_FAN = register("minecraft:brain_coral_fan"); + public static final BlockType BRAIN_CORAL_WALL_FAN = register("minecraft:brain_coral_wall_fan"); public static final BlockType BREWING_STAND = register("minecraft:brewing_stand"); public static final BlockType BRICK_SLAB = register("minecraft:brick_slab"); public static final BlockType BRICK_STAIRS = register("minecraft:brick_stairs"); @@ -117,6 +118,7 @@ public final class BlockTypes { public static final BlockType BUBBLE_CORAL = register("minecraft:bubble_coral"); public static final BlockType BUBBLE_CORAL_BLOCK = register("minecraft:bubble_coral_block"); public static final BlockType BUBBLE_CORAL_FAN = register("minecraft:bubble_coral_fan"); + public static final BlockType BUBBLE_CORAL_WALL_FAN = register("minecraft:bubble_coral_wall_fan"); public static final BlockType CACTUS = register("minecraft:cactus"); public static final BlockType CAKE = register("minecraft:cake"); public static final BlockType CARROTS = register("minecraft:carrots"); @@ -165,7 +167,6 @@ public final class BlockTypes { public static final BlockType CYAN_WOOL = register("minecraft:cyan_wool"); public static final BlockType DAMAGED_ANVIL = register("minecraft:damaged_anvil"); public static final BlockType DANDELION = register("minecraft:dandelion"); - public static final BlockType DARK_OAK_BARK = register("minecraft:dark_oak_bark"); public static final BlockType DARK_OAK_BUTTON = register("minecraft:dark_oak_button"); public static final BlockType DARK_OAK_DOOR = register("minecraft:dark_oak_door"); public static final BlockType DARK_OAK_FENCE = register("minecraft:dark_oak_fence"); @@ -178,16 +179,27 @@ public final class BlockTypes { public static final BlockType DARK_OAK_SLAB = register("minecraft:dark_oak_slab"); public static final BlockType DARK_OAK_STAIRS = register("minecraft:dark_oak_stairs"); public static final BlockType DARK_OAK_TRAPDOOR = register("minecraft:dark_oak_trapdoor"); + public static final BlockType DARK_OAK_WOOD = register("minecraft:dark_oak_wood"); public static final BlockType DARK_PRISMARINE = register("minecraft:dark_prismarine"); public static final BlockType DARK_PRISMARINE_SLAB = register("minecraft:dark_prismarine_slab"); public static final BlockType DARK_PRISMARINE_STAIRS = register("minecraft:dark_prismarine_stairs"); public static final BlockType DAYLIGHT_DETECTOR = register("minecraft:daylight_detector"); public static final BlockType DEAD_BRAIN_CORAL_BLOCK = register("minecraft:dead_brain_coral_block"); + public static final BlockType DEAD_BRAIN_CORAL_FAN = register("minecraft:dead_brain_coral_fan"); + public static final BlockType DEAD_BRAIN_CORAL_WALL_FAN = register("minecraft:dead_brain_coral_wall_fan"); public static final BlockType DEAD_BUBBLE_CORAL_BLOCK = register("minecraft:dead_bubble_coral_block"); + public static final BlockType DEAD_BUBBLE_CORAL_FAN = register("minecraft:dead_bubble_coral_fan"); + public static final BlockType DEAD_BUBBLE_CORAL_WALL_FAN = register("minecraft:dead_bubble_coral_wall_fan"); public static final BlockType DEAD_BUSH = register("minecraft:dead_bush"); public static final BlockType DEAD_FIRE_CORAL_BLOCK = register("minecraft:dead_fire_coral_block"); + public static final BlockType DEAD_FIRE_CORAL_FAN = register("minecraft:dead_fire_coral_fan"); + public static final BlockType DEAD_FIRE_CORAL_WALL_FAN = register("minecraft:dead_fire_coral_wall_fan"); public static final BlockType DEAD_HORN_CORAL_BLOCK = register("minecraft:dead_horn_coral_block"); + public static final BlockType DEAD_HORN_CORAL_FAN = register("minecraft:dead_horn_coral_fan"); + public static final BlockType DEAD_HORN_CORAL_WALL_FAN = register("minecraft:dead_horn_coral_wall_fan"); public static final BlockType DEAD_TUBE_CORAL_BLOCK = register("minecraft:dead_tube_coral_block"); + public static final BlockType DEAD_TUBE_CORAL_FAN = register("minecraft:dead_tube_coral_fan"); + public static final BlockType DEAD_TUBE_CORAL_WALL_FAN = register("minecraft:dead_tube_coral_wall_fan"); public static final BlockType DETECTOR_RAIL = register("minecraft:detector_rail"); public static final BlockType DIAMOND_BLOCK = register("minecraft:diamond_block"); public static final BlockType DIAMOND_ORE = register("minecraft:diamond_ore"); @@ -215,6 +227,7 @@ public final class BlockTypes { public static final BlockType FIRE_CORAL = register("minecraft:fire_coral"); public static final BlockType FIRE_CORAL_BLOCK = register("minecraft:fire_coral_block"); public static final BlockType FIRE_CORAL_FAN = register("minecraft:fire_coral_fan"); + public static final BlockType FIRE_CORAL_WALL_FAN = register("minecraft:fire_coral_wall_fan"); public static final BlockType FLOWER_POT = register("minecraft:flower_pot"); public static final BlockType FROSTED_ICE = register("minecraft:frosted_ice"); public static final BlockType FURNACE = register("minecraft:furnace"); @@ -258,6 +271,7 @@ public final class BlockTypes { public static final BlockType HORN_CORAL = register("minecraft:horn_coral"); public static final BlockType HORN_CORAL_BLOCK = register("minecraft:horn_coral_block"); public static final BlockType HORN_CORAL_FAN = register("minecraft:horn_coral_fan"); + public static final BlockType HORN_CORAL_WALL_FAN = register("minecraft:horn_coral_wall_fan"); public static final BlockType ICE = register("minecraft:ice"); public static final BlockType INFESTED_CHISELED_STONE_BRICKS = register("minecraft:infested_chiseled_stone_bricks"); public static final BlockType INFESTED_COBBLESTONE = register("minecraft:infested_cobblestone"); @@ -272,7 +286,6 @@ public final class BlockTypes { public static final BlockType IRON_TRAPDOOR = register("minecraft:iron_trapdoor"); public static final BlockType JACK_O_LANTERN = register("minecraft:jack_o_lantern"); public static final BlockType JUKEBOX = register("minecraft:jukebox"); - public static final BlockType JUNGLE_BARK = register("minecraft:jungle_bark"); public static final BlockType JUNGLE_BUTTON = register("minecraft:jungle_button"); public static final BlockType JUNGLE_DOOR = register("minecraft:jungle_door"); public static final BlockType JUNGLE_FENCE = register("minecraft:jungle_fence"); @@ -285,6 +298,7 @@ public final class BlockTypes { public static final BlockType JUNGLE_SLAB = register("minecraft:jungle_slab"); public static final BlockType JUNGLE_STAIRS = register("minecraft:jungle_stairs"); public static final BlockType JUNGLE_TRAPDOOR = register("minecraft:jungle_trapdoor"); + public static final BlockType JUNGLE_WOOD = register("minecraft:jungle_wood"); public static final BlockType KELP = register("minecraft:kelp"); public static final BlockType KELP_PLANT = register("minecraft:kelp_plant"); public static final BlockType LADDER = register("minecraft:ladder"); @@ -347,7 +361,6 @@ public final class BlockTypes { public static final BlockType MAGMA_BLOCK = register("minecraft:magma_block"); public static final BlockType MELON = register("minecraft:melon"); public static final BlockType MELON_STEM = register("minecraft:melon_stem"); - public static final BlockType MOB_SPAWNER = register("minecraft:mob_spawner"); public static final BlockType MOSSY_COBBLESTONE = register("minecraft:mossy_cobblestone"); public static final BlockType MOSSY_COBBLESTONE_WALL = register("minecraft:mossy_cobblestone_wall"); public static final BlockType MOSSY_STONE_BRICKS = register("minecraft:mossy_stone_bricks"); @@ -358,12 +371,12 @@ public final class BlockTypes { public static final BlockType NETHER_BRICK_SLAB = register("minecraft:nether_brick_slab"); public static final BlockType NETHER_BRICK_STAIRS = register("minecraft:nether_brick_stairs"); public static final BlockType NETHER_BRICKS = register("minecraft:nether_bricks"); + public static final BlockType NETHER_PORTAL = register("minecraft:nether_portal"); public static final BlockType NETHER_QUARTZ_ORE = register("minecraft:nether_quartz_ore"); public static final BlockType NETHER_WART = register("minecraft:nether_wart"); public static final BlockType NETHER_WART_BLOCK = register("minecraft:nether_wart_block"); public static final BlockType NETHERRACK = register("minecraft:netherrack"); public static final BlockType NOTE_BLOCK = register("minecraft:note_block"); - public static final BlockType OAK_BARK = register("minecraft:oak_bark"); public static final BlockType OAK_BUTTON = register("minecraft:oak_button"); public static final BlockType OAK_DOOR = register("minecraft:oak_door"); public static final BlockType OAK_FENCE = register("minecraft:oak_fence"); @@ -376,6 +389,7 @@ public final class BlockTypes { public static final BlockType OAK_SLAB = register("minecraft:oak_slab"); public static final BlockType OAK_STAIRS = register("minecraft:oak_stairs"); public static final BlockType OAK_TRAPDOOR = register("minecraft:oak_trapdoor"); + public static final BlockType OAK_WOOD = register("minecraft:oak_wood"); public static final BlockType OBSERVER = register("minecraft:observer"); public static final BlockType OBSIDIAN = register("minecraft:obsidian"); public static final BlockType ORANGE_BANNER = register("minecraft:orange_banner"); @@ -417,7 +431,6 @@ public final class BlockTypes { public static final BlockType POLISHED_DIORITE = register("minecraft:polished_diorite"); public static final BlockType POLISHED_GRANITE = register("minecraft:polished_granite"); public static final BlockType POPPY = register("minecraft:poppy"); - public static final BlockType PORTAL = register("minecraft:portal"); public static final BlockType POTATOES = register("minecraft:potatoes"); public static final BlockType POTTED_ACACIA_SAPLING = register("minecraft:potted_acacia_sapling"); public static final BlockType POTTED_ALLIUM = register("minecraft:potted_allium"); @@ -518,8 +531,8 @@ public final class BlockTypes { public static final BlockType SNOW = register("minecraft:snow"); public static final BlockType SNOW_BLOCK = register("minecraft:snow_block"); public static final BlockType SOUL_SAND = register("minecraft:soul_sand"); + public static final BlockType SPAWNER = register("minecraft:spawner"); public static final BlockType SPONGE = register("minecraft:sponge"); - public static final BlockType SPRUCE_BARK = register("minecraft:spruce_bark"); public static final BlockType SPRUCE_BUTTON = register("minecraft:spruce_button"); public static final BlockType SPRUCE_DOOR = register("minecraft:spruce_door"); public static final BlockType SPRUCE_FENCE = register("minecraft:spruce_fence"); @@ -532,6 +545,7 @@ public final class BlockTypes { public static final BlockType SPRUCE_SLAB = register("minecraft:spruce_slab"); public static final BlockType SPRUCE_STAIRS = register("minecraft:spruce_stairs"); public static final BlockType SPRUCE_TRAPDOOR = register("minecraft:spruce_trapdoor"); + public static final BlockType SPRUCE_WOOD = register("minecraft:spruce_wood"); public static final BlockType STICKY_PISTON = register("minecraft:sticky_piston"); public static final BlockType STONE = register("minecraft:stone"); public static final BlockType STONE_BRICK_SLAB = register("minecraft:stone_brick_slab"); @@ -541,11 +555,17 @@ public final class BlockTypes { public static final BlockType STONE_PRESSURE_PLATE = register("minecraft:stone_pressure_plate"); public static final BlockType STONE_SLAB = register("minecraft:stone_slab"); public static final BlockType STRIPPED_ACACIA_LOG = register("minecraft:stripped_acacia_log"); + public static final BlockType STRIPPED_ACACIA_WOOD = register("minecraft:stripped_acacia_wood"); public static final BlockType STRIPPED_BIRCH_LOG = register("minecraft:stripped_birch_log"); + public static final BlockType STRIPPED_BIRCH_WOOD = register("minecraft:stripped_birch_wood"); public static final BlockType STRIPPED_DARK_OAK_LOG = register("minecraft:stripped_dark_oak_log"); + public static final BlockType STRIPPED_DARK_OAK_WOOD = register("minecraft:stripped_dark_oak_wood"); public static final BlockType STRIPPED_JUNGLE_LOG = register("minecraft:stripped_jungle_log"); + public static final BlockType STRIPPED_JUNGLE_WOOD = register("minecraft:stripped_jungle_wood"); public static final BlockType STRIPPED_OAK_LOG = register("minecraft:stripped_oak_log"); + public static final BlockType STRIPPED_OAK_WOOD = register("minecraft:stripped_oak_wood"); public static final BlockType STRIPPED_SPRUCE_LOG = register("minecraft:stripped_spruce_log"); + public static final BlockType STRIPPED_SPRUCE_WOOD = register("minecraft:stripped_spruce_wood"); public static final BlockType STRUCTURE_BLOCK = register("minecraft:structure_block"); public static final BlockType STRUCTURE_VOID = register("minecraft:structure_void"); public static final BlockType SUGAR_CANE = register("minecraft:sugar_cane"); @@ -561,6 +581,7 @@ public final class BlockTypes { public static final BlockType TUBE_CORAL = register("minecraft:tube_coral"); public static final BlockType TUBE_CORAL_BLOCK = register("minecraft:tube_coral_block"); public static final BlockType TUBE_CORAL_FAN = register("minecraft:tube_coral_fan"); + public static final BlockType TUBE_CORAL_WALL_FAN = register("minecraft:tube_coral_wall_fan"); public static final BlockType TURTLE_EGG = register("minecraft:turtle_egg"); public static final BlockType VINE = register("minecraft:vine"); public static final BlockType VOID_AIR = register("minecraft:void_air"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java index cd66a0174..918fde039 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java @@ -23,9 +23,9 @@ import javax.annotation.Nullable; public final class ItemTypes { - public static final ItemType ACACIA_BARK = register("minecraft:acacia_bark"); public static final ItemType ACACIA_BOAT = register("minecraft:acacia_boat"); public static final ItemType ACACIA_BUTTON = register("minecraft:acacia_button"); + public static final ItemType ACACIA_DOOR = register("minecraft:acacia_door"); public static final ItemType ACACIA_FENCE = register("minecraft:acacia_fence"); public static final ItemType ACACIA_FENCE_GATE = register("minecraft:acacia_fence_gate"); public static final ItemType ACACIA_LEAVES = register("minecraft:acacia_leaves"); @@ -36,6 +36,7 @@ public final class ItemTypes { public static final ItemType ACACIA_SLAB = register("minecraft:acacia_slab"); public static final ItemType ACACIA_STAIRS = register("minecraft:acacia_stairs"); public static final ItemType ACACIA_TRAPDOOR = register("minecraft:acacia_trapdoor"); + public static final ItemType ACACIA_WOOD = register("minecraft:acacia_wood"); public static final ItemType ACTIVATOR_RAIL = register("minecraft:activator_rail"); public static final ItemType AIR = register("minecraft:air"); public static final ItemType ALLIUM = register("minecraft:allium"); @@ -48,14 +49,15 @@ public final class ItemTypes { public static final ItemType BAKED_POTATO = register("minecraft:baked_potato"); public static final ItemType BARRIER = register("minecraft:barrier"); public static final ItemType BAT_SPAWN_EGG = register("minecraft:bat_spawn_egg"); + public static final ItemType BEACON = register("minecraft:beacon"); public static final ItemType BEDROCK = register("minecraft:bedrock"); public static final ItemType BEEF = register("minecraft:beef"); public static final ItemType BEETROOT = register("minecraft:beetroot"); public static final ItemType BEETROOT_SEEDS = register("minecraft:beetroot_seeds"); public static final ItemType BEETROOT_SOUP = register("minecraft:beetroot_soup"); - public static final ItemType BIRCH_BARK = register("minecraft:birch_bark"); public static final ItemType BIRCH_BOAT = register("minecraft:birch_boat"); public static final ItemType BIRCH_BUTTON = register("minecraft:birch_button"); + public static final ItemType BIRCH_DOOR = register("minecraft:birch_door"); public static final ItemType BIRCH_FENCE = register("minecraft:birch_fence"); public static final ItemType BIRCH_FENCE_GATE = register("minecraft:birch_fence_gate"); public static final ItemType BIRCH_LEAVES = register("minecraft:birch_leaves"); @@ -66,11 +68,14 @@ public final class ItemTypes { public static final ItemType BIRCH_SLAB = register("minecraft:birch_slab"); public static final ItemType BIRCH_STAIRS = register("minecraft:birch_stairs"); public static final ItemType BIRCH_TRAPDOOR = register("minecraft:birch_trapdoor"); + public static final ItemType BIRCH_WOOD = register("minecraft:birch_wood"); public static final ItemType BLACK_BANNER = register("minecraft:black_banner"); + public static final ItemType BLACK_BED = register("minecraft:black_bed"); public static final ItemType BLACK_CARPET = register("minecraft:black_carpet"); public static final ItemType BLACK_CONCRETE = register("minecraft:black_concrete"); public static final ItemType BLACK_CONCRETE_POWDER = register("minecraft:black_concrete_powder"); public static final ItemType BLACK_GLAZED_TERRACOTTA = register("minecraft:black_glazed_terracotta"); + public static final ItemType BLACK_SHULKER_BOX = register("minecraft:black_shulker_box"); public static final ItemType BLACK_STAINED_GLASS = register("minecraft:black_stained_glass"); public static final ItemType BLACK_STAINED_GLASS_PANE = register("minecraft:black_stained_glass_pane"); public static final ItemType BLACK_TERRACOTTA = register("minecraft:black_terracotta"); @@ -79,12 +84,14 @@ public final class ItemTypes { public static final ItemType BLAZE_ROD = register("minecraft:blaze_rod"); public static final ItemType BLAZE_SPAWN_EGG = register("minecraft:blaze_spawn_egg"); public static final ItemType BLUE_BANNER = register("minecraft:blue_banner"); + public static final ItemType BLUE_BED = register("minecraft:blue_bed"); public static final ItemType BLUE_CARPET = register("minecraft:blue_carpet"); public static final ItemType BLUE_CONCRETE = register("minecraft:blue_concrete"); public static final ItemType BLUE_CONCRETE_POWDER = register("minecraft:blue_concrete_powder"); public static final ItemType BLUE_GLAZED_TERRACOTTA = register("minecraft:blue_glazed_terracotta"); public static final ItemType BLUE_ICE = register("minecraft:blue_ice"); public static final ItemType BLUE_ORCHID = register("minecraft:blue_orchid"); + public static final ItemType BLUE_SHULKER_BOX = register("minecraft:blue_shulker_box"); public static final ItemType BLUE_STAINED_GLASS = register("minecraft:blue_stained_glass"); public static final ItemType BLUE_STAINED_GLASS_PANE = register("minecraft:blue_stained_glass_pane"); public static final ItemType BLUE_TERRACOTTA = register("minecraft:blue_terracotta"); @@ -106,12 +113,14 @@ public final class ItemTypes { public static final ItemType BRICK_STAIRS = register("minecraft:brick_stairs"); public static final ItemType BRICKS = register("minecraft:bricks"); public static final ItemType BROWN_BANNER = register("minecraft:brown_banner"); + public static final ItemType BROWN_BED = register("minecraft:brown_bed"); public static final ItemType BROWN_CARPET = register("minecraft:brown_carpet"); public static final ItemType BROWN_CONCRETE = register("minecraft:brown_concrete"); public static final ItemType BROWN_CONCRETE_POWDER = register("minecraft:brown_concrete_powder"); public static final ItemType BROWN_GLAZED_TERRACOTTA = register("minecraft:brown_glazed_terracotta"); public static final ItemType BROWN_MUSHROOM = register("minecraft:brown_mushroom"); public static final ItemType BROWN_MUSHROOM_BLOCK = register("minecraft:brown_mushroom_block"); + public static final ItemType BROWN_SHULKER_BOX = register("minecraft:brown_shulker_box"); public static final ItemType BROWN_STAINED_GLASS = register("minecraft:brown_stained_glass"); public static final ItemType BROWN_STAINED_GLASS_PANE = register("minecraft:brown_stained_glass_pane"); public static final ItemType BROWN_TERRACOTTA = register("minecraft:brown_terracotta"); @@ -122,11 +131,13 @@ public final class ItemTypes { public static final ItemType BUCKET = register("minecraft:bucket"); public static final ItemType CACTUS = register("minecraft:cactus"); public static final ItemType CACTUS_GREEN = register("minecraft:cactus_green"); + public static final ItemType CAKE = register("minecraft:cake"); public static final ItemType CARROT = register("minecraft:carrot"); public static final ItemType CARROT_ON_A_STICK = register("minecraft:carrot_on_a_stick"); public static final ItemType CARVED_PUMPKIN = register("minecraft:carved_pumpkin"); public static final ItemType CAULDRON = register("minecraft:cauldron"); public static final ItemType CAVE_SPIDER_SPAWN_EGG = register("minecraft:cave_spider_spawn_egg"); + public static final ItemType CHAIN_COMMAND_BLOCK = register("minecraft:chain_command_block"); public static final ItemType CHAINMAIL_BOOTS = register("minecraft:chainmail_boots"); public static final ItemType CHAINMAIL_CHESTPLATE = register("minecraft:chainmail_chestplate"); public static final ItemType CHAINMAIL_HELMET = register("minecraft:chainmail_helmet"); @@ -143,13 +154,10 @@ public final class ItemTypes { public static final ItemType CHISELED_STONE_BRICKS = register("minecraft:chiseled_stone_bricks"); public static final ItemType CHORUS_FLOWER = register("minecraft:chorus_flower"); public static final ItemType CHORUS_FRUIT = register("minecraft:chorus_fruit"); - public static final ItemType CHORUS_FRUIT_POPPED = register("minecraft:chorus_fruit_popped"); public static final ItemType CHORUS_PLANT = register("minecraft:chorus_plant"); public static final ItemType CLAY = register("minecraft:clay"); public static final ItemType CLAY_BALL = register("minecraft:clay_ball"); public static final ItemType CLOCK = register("minecraft:clock"); - public static final ItemType CLOWNFISH = register("minecraft:clownfish"); - public static final ItemType CLOWNFISH_BUCKET = register("minecraft:clownfish_bucket"); public static final ItemType COAL = register("minecraft:coal"); public static final ItemType COAL_BLOCK = register("minecraft:coal_block"); public static final ItemType COAL_ORE = register("minecraft:coal_ore"); @@ -163,9 +171,11 @@ public final class ItemTypes { public static final ItemType COD = register("minecraft:cod"); public static final ItemType COD_BUCKET = register("minecraft:cod_bucket"); public static final ItemType COD_SPAWN_EGG = register("minecraft:cod_spawn_egg"); + public static final ItemType COMMAND_BLOCK = register("minecraft:command_block"); public static final ItemType COMMAND_BLOCK_MINECART = register("minecraft:command_block_minecart"); public static final ItemType COMPARATOR = register("minecraft:comparator"); public static final ItemType COMPASS = register("minecraft:compass"); + public static final ItemType CONDUIT = register("minecraft:conduit"); public static final ItemType COOKED_BEEF = register("minecraft:cooked_beef"); public static final ItemType COOKED_CHICKEN = register("minecraft:cooked_chicken"); public static final ItemType COOKED_COD = register("minecraft:cooked_cod"); @@ -177,15 +187,18 @@ public final class ItemTypes { public static final ItemType COW_SPAWN_EGG = register("minecraft:cow_spawn_egg"); public static final ItemType CRACKED_STONE_BRICKS = register("minecraft:cracked_stone_bricks"); public static final ItemType CRAFTING_TABLE = register("minecraft:crafting_table"); + public static final ItemType CREEPER_HEAD = register("minecraft:creeper_head"); public static final ItemType CREEPER_SPAWN_EGG = register("minecraft:creeper_spawn_egg"); public static final ItemType CUT_RED_SANDSTONE = register("minecraft:cut_red_sandstone"); public static final ItemType CUT_SANDSTONE = register("minecraft:cut_sandstone"); public static final ItemType CYAN_BANNER = register("minecraft:cyan_banner"); + public static final ItemType CYAN_BED = register("minecraft:cyan_bed"); public static final ItemType CYAN_CARPET = register("minecraft:cyan_carpet"); public static final ItemType CYAN_CONCRETE = register("minecraft:cyan_concrete"); public static final ItemType CYAN_CONCRETE_POWDER = register("minecraft:cyan_concrete_powder"); public static final ItemType CYAN_DYE = register("minecraft:cyan_dye"); public static final ItemType CYAN_GLAZED_TERRACOTTA = register("minecraft:cyan_glazed_terracotta"); + public static final ItemType CYAN_SHULKER_BOX = register("minecraft:cyan_shulker_box"); public static final ItemType CYAN_STAINED_GLASS = register("minecraft:cyan_stained_glass"); public static final ItemType CYAN_STAINED_GLASS_PANE = register("minecraft:cyan_stained_glass_pane"); public static final ItemType CYAN_TERRACOTTA = register("minecraft:cyan_terracotta"); @@ -193,9 +206,9 @@ public final class ItemTypes { public static final ItemType DAMAGED_ANVIL = register("minecraft:damaged_anvil"); public static final ItemType DANDELION = register("minecraft:dandelion"); public static final ItemType DANDELION_YELLOW = register("minecraft:dandelion_yellow"); - public static final ItemType DARK_OAK_BARK = register("minecraft:dark_oak_bark"); public static final ItemType DARK_OAK_BOAT = register("minecraft:dark_oak_boat"); public static final ItemType DARK_OAK_BUTTON = register("minecraft:dark_oak_button"); + public static final ItemType DARK_OAK_DOOR = register("minecraft:dark_oak_door"); public static final ItemType DARK_OAK_FENCE = register("minecraft:dark_oak_fence"); public static final ItemType DARK_OAK_FENCE_GATE = register("minecraft:dark_oak_fence_gate"); public static final ItemType DARK_OAK_LEAVES = register("minecraft:dark_oak_leaves"); @@ -206,16 +219,22 @@ public final class ItemTypes { public static final ItemType DARK_OAK_SLAB = register("minecraft:dark_oak_slab"); public static final ItemType DARK_OAK_STAIRS = register("minecraft:dark_oak_stairs"); public static final ItemType DARK_OAK_TRAPDOOR = register("minecraft:dark_oak_trapdoor"); + public static final ItemType DARK_OAK_WOOD = register("minecraft:dark_oak_wood"); public static final ItemType DARK_PRISMARINE = register("minecraft:dark_prismarine"); public static final ItemType DARK_PRISMARINE_SLAB = register("minecraft:dark_prismarine_slab"); public static final ItemType DARK_PRISMARINE_STAIRS = register("minecraft:dark_prismarine_stairs"); public static final ItemType DAYLIGHT_DETECTOR = register("minecraft:daylight_detector"); public static final ItemType DEAD_BRAIN_CORAL_BLOCK = register("minecraft:dead_brain_coral_block"); + public static final ItemType DEAD_BRAIN_CORAL_FAN = register("minecraft:dead_brain_coral_fan"); public static final ItemType DEAD_BUBBLE_CORAL_BLOCK = register("minecraft:dead_bubble_coral_block"); + public static final ItemType DEAD_BUBBLE_CORAL_FAN = register("minecraft:dead_bubble_coral_fan"); public static final ItemType DEAD_BUSH = register("minecraft:dead_bush"); public static final ItemType DEAD_FIRE_CORAL_BLOCK = register("minecraft:dead_fire_coral_block"); + public static final ItemType DEAD_FIRE_CORAL_FAN = register("minecraft:dead_fire_coral_fan"); public static final ItemType DEAD_HORN_CORAL_BLOCK = register("minecraft:dead_horn_coral_block"); + public static final ItemType DEAD_HORN_CORAL_FAN = register("minecraft:dead_horn_coral_fan"); public static final ItemType DEAD_TUBE_CORAL_BLOCK = register("minecraft:dead_tube_coral_block"); + public static final ItemType DEAD_TUBE_CORAL_FAN = register("minecraft:dead_tube_coral_fan"); public static final ItemType DEBUG_STICK = register("minecraft:debug_stick"); public static final ItemType DETECTOR_RAIL = register("minecraft:detector_rail"); public static final ItemType DIAMOND = register("minecraft:diamond"); @@ -237,6 +256,8 @@ public final class ItemTypes { public static final ItemType DOLPHIN_SPAWN_EGG = register("minecraft:dolphin_spawn_egg"); public static final ItemType DONKEY_SPAWN_EGG = register("minecraft:donkey_spawn_egg"); public static final ItemType DRAGON_BREATH = register("minecraft:dragon_breath"); + public static final ItemType DRAGON_EGG = register("minecraft:dragon_egg"); + public static final ItemType DRAGON_HEAD = register("minecraft:dragon_head"); public static final ItemType DRIED_KELP = register("minecraft:dried_kelp"); public static final ItemType DRIED_KELP_BLOCK = register("minecraft:dried_kelp_block"); public static final ItemType DROPPER = register("minecraft:dropper"); @@ -260,7 +281,7 @@ public final class ItemTypes { public static final ItemType ENDER_PEARL = register("minecraft:ender_pearl"); public static final ItemType ENDERMAN_SPAWN_EGG = register("minecraft:enderman_spawn_egg"); public static final ItemType ENDERMITE_SPAWN_EGG = register("minecraft:endermite_spawn_egg"); - public static final ItemType EVOCATION_ILLAGER_SPAWN_EGG = register("minecraft:evocation_illager_spawn_egg"); + public static final ItemType EVOKER_SPAWN_EGG = register("minecraft:evoker_spawn_egg"); public static final ItemType EXPERIENCE_BOTTLE = register("minecraft:experience_bottle"); public static final ItemType FARMLAND = register("minecraft:farmland"); public static final ItemType FEATHER = register("minecraft:feather"); @@ -309,20 +330,24 @@ public final class ItemTypes { public static final ItemType GRASS_PATH = register("minecraft:grass_path"); public static final ItemType GRAVEL = register("minecraft:gravel"); public static final ItemType GRAY_BANNER = register("minecraft:gray_banner"); + public static final ItemType GRAY_BED = register("minecraft:gray_bed"); public static final ItemType GRAY_CARPET = register("minecraft:gray_carpet"); public static final ItemType GRAY_CONCRETE = register("minecraft:gray_concrete"); public static final ItemType GRAY_CONCRETE_POWDER = register("minecraft:gray_concrete_powder"); public static final ItemType GRAY_DYE = register("minecraft:gray_dye"); public static final ItemType GRAY_GLAZED_TERRACOTTA = register("minecraft:gray_glazed_terracotta"); + public static final ItemType GRAY_SHULKER_BOX = register("minecraft:gray_shulker_box"); public static final ItemType GRAY_STAINED_GLASS = register("minecraft:gray_stained_glass"); public static final ItemType GRAY_STAINED_GLASS_PANE = register("minecraft:gray_stained_glass_pane"); public static final ItemType GRAY_TERRACOTTA = register("minecraft:gray_terracotta"); public static final ItemType GRAY_WOOL = register("minecraft:gray_wool"); public static final ItemType GREEN_BANNER = register("minecraft:green_banner"); + public static final ItemType GREEN_BED = register("minecraft:green_bed"); public static final ItemType GREEN_CARPET = register("minecraft:green_carpet"); public static final ItemType GREEN_CONCRETE = register("minecraft:green_concrete"); public static final ItemType GREEN_CONCRETE_POWDER = register("minecraft:green_concrete_powder"); public static final ItemType GREEN_GLAZED_TERRACOTTA = register("minecraft:green_glazed_terracotta"); + public static final ItemType GREEN_SHULKER_BOX = register("minecraft:green_shulker_box"); public static final ItemType GREEN_STAINED_GLASS = register("minecraft:green_stained_glass"); public static final ItemType GREEN_STAINED_GLASS_PANE = register("minecraft:green_stained_glass_pane"); public static final ItemType GREEN_TERRACOTTA = register("minecraft:green_terracotta"); @@ -352,6 +377,7 @@ public final class ItemTypes { public static final ItemType IRON_BLOCK = register("minecraft:iron_block"); public static final ItemType IRON_BOOTS = register("minecraft:iron_boots"); public static final ItemType IRON_CHESTPLATE = register("minecraft:iron_chestplate"); + public static final ItemType IRON_DOOR = register("minecraft:iron_door"); public static final ItemType IRON_HELMET = register("minecraft:iron_helmet"); public static final ItemType IRON_HOE = register("minecraft:iron_hoe"); public static final ItemType IRON_HORSE_ARMOR = register("minecraft:iron_horse_armor"); @@ -366,9 +392,9 @@ public final class ItemTypes { public static final ItemType ITEM_FRAME = register("minecraft:item_frame"); public static final ItemType JACK_O_LANTERN = register("minecraft:jack_o_lantern"); public static final ItemType JUKEBOX = register("minecraft:jukebox"); - public static final ItemType JUNGLE_BARK = register("minecraft:jungle_bark"); public static final ItemType JUNGLE_BOAT = register("minecraft:jungle_boat"); public static final ItemType JUNGLE_BUTTON = register("minecraft:jungle_button"); + public static final ItemType JUNGLE_DOOR = register("minecraft:jungle_door"); public static final ItemType JUNGLE_FENCE = register("minecraft:jungle_fence"); public static final ItemType JUNGLE_FENCE_GATE = register("minecraft:jungle_fence_gate"); public static final ItemType JUNGLE_LEAVES = register("minecraft:jungle_leaves"); @@ -379,12 +405,14 @@ public final class ItemTypes { public static final ItemType JUNGLE_SLAB = register("minecraft:jungle_slab"); public static final ItemType JUNGLE_STAIRS = register("minecraft:jungle_stairs"); public static final ItemType JUNGLE_TRAPDOOR = register("minecraft:jungle_trapdoor"); + public static final ItemType JUNGLE_WOOD = register("minecraft:jungle_wood"); public static final ItemType KELP = register("minecraft:kelp"); public static final ItemType KNOWLEDGE_BOOK = register("minecraft:knowledge_book"); public static final ItemType LADDER = register("minecraft:ladder"); public static final ItemType LAPIS_BLOCK = register("minecraft:lapis_block"); public static final ItemType LAPIS_LAZULI = register("minecraft:lapis_lazuli"); public static final ItemType LAPIS_ORE = register("minecraft:lapis_ore"); + public static final ItemType LARGE_FERN = register("minecraft:large_fern"); public static final ItemType LAVA_BUCKET = register("minecraft:lava_bucket"); public static final ItemType LEAD = register("minecraft:lead"); public static final ItemType LEATHER = register("minecraft:leather"); @@ -394,32 +422,40 @@ public final class ItemTypes { public static final ItemType LEATHER_LEGGINGS = register("minecraft:leather_leggings"); public static final ItemType LEVER = register("minecraft:lever"); public static final ItemType LIGHT_BLUE_BANNER = register("minecraft:light_blue_banner"); + public static final ItemType LIGHT_BLUE_BED = register("minecraft:light_blue_bed"); public static final ItemType LIGHT_BLUE_CARPET = register("minecraft:light_blue_carpet"); public static final ItemType LIGHT_BLUE_CONCRETE = register("minecraft:light_blue_concrete"); public static final ItemType LIGHT_BLUE_CONCRETE_POWDER = register("minecraft:light_blue_concrete_powder"); public static final ItemType LIGHT_BLUE_DYE = register("minecraft:light_blue_dye"); public static final ItemType LIGHT_BLUE_GLAZED_TERRACOTTA = register("minecraft:light_blue_glazed_terracotta"); + public static final ItemType LIGHT_BLUE_SHULKER_BOX = register("minecraft:light_blue_shulker_box"); public static final ItemType LIGHT_BLUE_STAINED_GLASS = register("minecraft:light_blue_stained_glass"); public static final ItemType LIGHT_BLUE_STAINED_GLASS_PANE = register("minecraft:light_blue_stained_glass_pane"); public static final ItemType LIGHT_BLUE_TERRACOTTA = register("minecraft:light_blue_terracotta"); public static final ItemType LIGHT_BLUE_WOOL = register("minecraft:light_blue_wool"); public static final ItemType LIGHT_GRAY_BANNER = register("minecraft:light_gray_banner"); + public static final ItemType LIGHT_GRAY_BED = register("minecraft:light_gray_bed"); public static final ItemType LIGHT_GRAY_CARPET = register("minecraft:light_gray_carpet"); public static final ItemType LIGHT_GRAY_CONCRETE = register("minecraft:light_gray_concrete"); public static final ItemType LIGHT_GRAY_CONCRETE_POWDER = register("minecraft:light_gray_concrete_powder"); public static final ItemType LIGHT_GRAY_DYE = register("minecraft:light_gray_dye"); public static final ItemType LIGHT_GRAY_GLAZED_TERRACOTTA = register("minecraft:light_gray_glazed_terracotta"); + public static final ItemType LIGHT_GRAY_SHULKER_BOX = register("minecraft:light_gray_shulker_box"); public static final ItemType LIGHT_GRAY_STAINED_GLASS = register("minecraft:light_gray_stained_glass"); public static final ItemType LIGHT_GRAY_STAINED_GLASS_PANE = register("minecraft:light_gray_stained_glass_pane"); public static final ItemType LIGHT_GRAY_TERRACOTTA = register("minecraft:light_gray_terracotta"); public static final ItemType LIGHT_GRAY_WOOL = register("minecraft:light_gray_wool"); public static final ItemType LIGHT_WEIGHTED_PRESSURE_PLATE = register("minecraft:light_weighted_pressure_plate"); + public static final ItemType LILAC = register("minecraft:lilac"); + public static final ItemType LILY_PAD = register("minecraft:lily_pad"); public static final ItemType LIME_BANNER = register("minecraft:lime_banner"); + public static final ItemType LIME_BED = register("minecraft:lime_bed"); public static final ItemType LIME_CARPET = register("minecraft:lime_carpet"); public static final ItemType LIME_CONCRETE = register("minecraft:lime_concrete"); public static final ItemType LIME_CONCRETE_POWDER = register("minecraft:lime_concrete_powder"); public static final ItemType LIME_DYE = register("minecraft:lime_dye"); public static final ItemType LIME_GLAZED_TERRACOTTA = register("minecraft:lime_glazed_terracotta"); + public static final ItemType LIME_SHULKER_BOX = register("minecraft:lime_shulker_box"); public static final ItemType LIME_STAINED_GLASS = register("minecraft:lime_stained_glass"); public static final ItemType LIME_STAINED_GLASS_PANE = register("minecraft:lime_stained_glass_pane"); public static final ItemType LIME_TERRACOTTA = register("minecraft:lime_terracotta"); @@ -427,11 +463,13 @@ public final class ItemTypes { public static final ItemType LINGERING_POTION = register("minecraft:lingering_potion"); public static final ItemType LLAMA_SPAWN_EGG = register("minecraft:llama_spawn_egg"); public static final ItemType MAGENTA_BANNER = register("minecraft:magenta_banner"); + public static final ItemType MAGENTA_BED = register("minecraft:magenta_bed"); public static final ItemType MAGENTA_CARPET = register("minecraft:magenta_carpet"); public static final ItemType MAGENTA_CONCRETE = register("minecraft:magenta_concrete"); public static final ItemType MAGENTA_CONCRETE_POWDER = register("minecraft:magenta_concrete_powder"); public static final ItemType MAGENTA_DYE = register("minecraft:magenta_dye"); public static final ItemType MAGENTA_GLAZED_TERRACOTTA = register("minecraft:magenta_glazed_terracotta"); + public static final ItemType MAGENTA_SHULKER_BOX = register("minecraft:magenta_shulker_box"); public static final ItemType MAGENTA_STAINED_GLASS = register("minecraft:magenta_stained_glass"); public static final ItemType MAGENTA_STAINED_GLASS_PANE = register("minecraft:magenta_stained_glass_pane"); public static final ItemType MAGENTA_TERRACOTTA = register("minecraft:magenta_terracotta"); @@ -445,7 +483,6 @@ public final class ItemTypes { public static final ItemType MELON_SLICE = register("minecraft:melon_slice"); public static final ItemType MILK_BUCKET = register("minecraft:milk_bucket"); public static final ItemType MINECART = register("minecraft:minecart"); - public static final ItemType MOB_SPAWNER = register("minecraft:mob_spawner"); public static final ItemType MOOSHROOM_SPAWN_EGG = register("minecraft:mooshroom_spawn_egg"); public static final ItemType MOSSY_COBBLESTONE = register("minecraft:mossy_cobblestone"); public static final ItemType MOSSY_COBBLESTONE_WALL = register("minecraft:mossy_cobblestone_wall"); @@ -480,9 +517,9 @@ public final class ItemTypes { public static final ItemType NETHER_WART_BLOCK = register("minecraft:nether_wart_block"); public static final ItemType NETHERRACK = register("minecraft:netherrack"); public static final ItemType NOTE_BLOCK = register("minecraft:note_block"); - public static final ItemType OAK_BARK = register("minecraft:oak_bark"); public static final ItemType OAK_BOAT = register("minecraft:oak_boat"); public static final ItemType OAK_BUTTON = register("minecraft:oak_button"); + public static final ItemType OAK_DOOR = register("minecraft:oak_door"); public static final ItemType OAK_FENCE = register("minecraft:oak_fence"); public static final ItemType OAK_FENCE_GATE = register("minecraft:oak_fence_gate"); public static final ItemType OAK_LEAVES = register("minecraft:oak_leaves"); @@ -493,15 +530,18 @@ public final class ItemTypes { public static final ItemType OAK_SLAB = register("minecraft:oak_slab"); public static final ItemType OAK_STAIRS = register("minecraft:oak_stairs"); public static final ItemType OAK_TRAPDOOR = register("minecraft:oak_trapdoor"); + public static final ItemType OAK_WOOD = register("minecraft:oak_wood"); public static final ItemType OBSERVER = register("minecraft:observer"); public static final ItemType OBSIDIAN = register("minecraft:obsidian"); public static final ItemType OCELOT_SPAWN_EGG = register("minecraft:ocelot_spawn_egg"); public static final ItemType ORANGE_BANNER = register("minecraft:orange_banner"); + public static final ItemType ORANGE_BED = register("minecraft:orange_bed"); public static final ItemType ORANGE_CARPET = register("minecraft:orange_carpet"); public static final ItemType ORANGE_CONCRETE = register("minecraft:orange_concrete"); public static final ItemType ORANGE_CONCRETE_POWDER = register("minecraft:orange_concrete_powder"); public static final ItemType ORANGE_DYE = register("minecraft:orange_dye"); public static final ItemType ORANGE_GLAZED_TERRACOTTA = register("minecraft:orange_glazed_terracotta"); + public static final ItemType ORANGE_SHULKER_BOX = register("minecraft:orange_shulker_box"); public static final ItemType ORANGE_STAINED_GLASS = register("minecraft:orange_stained_glass"); public static final ItemType ORANGE_STAINED_GLASS_PANE = register("minecraft:orange_stained_glass_pane"); public static final ItemType ORANGE_TERRACOTTA = register("minecraft:orange_terracotta"); @@ -512,28 +552,33 @@ public final class ItemTypes { public static final ItemType PAINTING = register("minecraft:painting"); public static final ItemType PAPER = register("minecraft:paper"); public static final ItemType PARROT_SPAWN_EGG = register("minecraft:parrot_spawn_egg"); + public static final ItemType PEONY = register("minecraft:peony"); public static final ItemType PETRIFIED_OAK_SLAB = register("minecraft:petrified_oak_slab"); public static final ItemType PHANTOM_MEMBRANE = register("minecraft:phantom_membrane"); public static final ItemType PHANTOM_SPAWN_EGG = register("minecraft:phantom_spawn_egg"); public static final ItemType PIG_SPAWN_EGG = register("minecraft:pig_spawn_egg"); public static final ItemType PINK_BANNER = register("minecraft:pink_banner"); + public static final ItemType PINK_BED = register("minecraft:pink_bed"); public static final ItemType PINK_CARPET = register("minecraft:pink_carpet"); public static final ItemType PINK_CONCRETE = register("minecraft:pink_concrete"); public static final ItemType PINK_CONCRETE_POWDER = register("minecraft:pink_concrete_powder"); public static final ItemType PINK_DYE = register("minecraft:pink_dye"); public static final ItemType PINK_GLAZED_TERRACOTTA = register("minecraft:pink_glazed_terracotta"); + public static final ItemType PINK_SHULKER_BOX = register("minecraft:pink_shulker_box"); public static final ItemType PINK_STAINED_GLASS = register("minecraft:pink_stained_glass"); public static final ItemType PINK_STAINED_GLASS_PANE = register("minecraft:pink_stained_glass_pane"); public static final ItemType PINK_TERRACOTTA = register("minecraft:pink_terracotta"); public static final ItemType PINK_TULIP = register("minecraft:pink_tulip"); public static final ItemType PINK_WOOL = register("minecraft:pink_wool"); public static final ItemType PISTON = register("minecraft:piston"); + public static final ItemType PLAYER_HEAD = register("minecraft:player_head"); public static final ItemType PODZOL = register("minecraft:podzol"); public static final ItemType POISONOUS_POTATO = register("minecraft:poisonous_potato"); public static final ItemType POLAR_BEAR_SPAWN_EGG = register("minecraft:polar_bear_spawn_egg"); public static final ItemType POLISHED_ANDESITE = register("minecraft:polished_andesite"); public static final ItemType POLISHED_DIORITE = register("minecraft:polished_diorite"); public static final ItemType POLISHED_GRANITE = register("minecraft:polished_granite"); + public static final ItemType POPPED_CHORUS_FRUIT = register("minecraft:popped_chorus_fruit"); public static final ItemType POPPY = register("minecraft:poppy"); public static final ItemType PORKCHOP = register("minecraft:porkchop"); public static final ItemType POTATO = register("minecraft:potato"); @@ -554,11 +599,13 @@ public final class ItemTypes { public static final ItemType PUMPKIN_PIE = register("minecraft:pumpkin_pie"); public static final ItemType PUMPKIN_SEEDS = register("minecraft:pumpkin_seeds"); public static final ItemType PURPLE_BANNER = register("minecraft:purple_banner"); + public static final ItemType PURPLE_BED = register("minecraft:purple_bed"); public static final ItemType PURPLE_CARPET = register("minecraft:purple_carpet"); public static final ItemType PURPLE_CONCRETE = register("minecraft:purple_concrete"); public static final ItemType PURPLE_CONCRETE_POWDER = register("minecraft:purple_concrete_powder"); public static final ItemType PURPLE_DYE = register("minecraft:purple_dye"); public static final ItemType PURPLE_GLAZED_TERRACOTTA = register("minecraft:purple_glazed_terracotta"); + public static final ItemType PURPLE_SHULKER_BOX = register("minecraft:purple_shulker_box"); public static final ItemType PURPLE_STAINED_GLASS = register("minecraft:purple_stained_glass"); public static final ItemType PURPLE_STAINED_GLASS_PANE = register("minecraft:purple_stained_glass_pane"); public static final ItemType PURPLE_TERRACOTTA = register("minecraft:purple_terracotta"); @@ -579,6 +626,7 @@ public final class ItemTypes { public static final ItemType RABBIT_STEW = register("minecraft:rabbit_stew"); public static final ItemType RAIL = register("minecraft:rail"); public static final ItemType RED_BANNER = register("minecraft:red_banner"); + public static final ItemType RED_BED = register("minecraft:red_bed"); public static final ItemType RED_CARPET = register("minecraft:red_carpet"); public static final ItemType RED_CONCRETE = register("minecraft:red_concrete"); public static final ItemType RED_CONCRETE_POWDER = register("minecraft:red_concrete_powder"); @@ -590,6 +638,7 @@ public final class ItemTypes { public static final ItemType RED_SANDSTONE = register("minecraft:red_sandstone"); public static final ItemType RED_SANDSTONE_SLAB = register("minecraft:red_sandstone_slab"); public static final ItemType RED_SANDSTONE_STAIRS = register("minecraft:red_sandstone_stairs"); + public static final ItemType RED_SHULKER_BOX = register("minecraft:red_shulker_box"); public static final ItemType RED_STAINED_GLASS = register("minecraft:red_stained_glass"); public static final ItemType RED_STAINED_GLASS_PANE = register("minecraft:red_stained_glass_pane"); public static final ItemType RED_TERRACOTTA = register("minecraft:red_terracotta"); @@ -599,7 +648,10 @@ public final class ItemTypes { public static final ItemType REDSTONE_BLOCK = register("minecraft:redstone_block"); public static final ItemType REDSTONE_LAMP = register("minecraft:redstone_lamp"); public static final ItemType REDSTONE_ORE = register("minecraft:redstone_ore"); + public static final ItemType REDSTONE_TORCH = register("minecraft:redstone_torch"); public static final ItemType REPEATER = register("minecraft:repeater"); + public static final ItemType REPEATING_COMMAND_BLOCK = register("minecraft:repeating_command_block"); + public static final ItemType ROSE_BUSH = register("minecraft:rose_bush"); public static final ItemType ROSE_RED = register("minecraft:rose_red"); public static final ItemType ROTTEN_FLESH = register("minecraft:rotten_flesh"); public static final ItemType SADDLE = register("minecraft:saddle"); @@ -617,11 +669,13 @@ public final class ItemTypes { public static final ItemType SHEARS = register("minecraft:shears"); public static final ItemType SHEEP_SPAWN_EGG = register("minecraft:sheep_spawn_egg"); public static final ItemType SHIELD = register("minecraft:shield"); + public static final ItemType SHULKER_BOX = register("minecraft:shulker_box"); public static final ItemType SHULKER_SHELL = register("minecraft:shulker_shell"); public static final ItemType SHULKER_SPAWN_EGG = register("minecraft:shulker_spawn_egg"); public static final ItemType SIGN = register("minecraft:sign"); public static final ItemType SILVERFISH_SPAWN_EGG = register("minecraft:silverfish_spawn_egg"); public static final ItemType SKELETON_HORSE_SPAWN_EGG = register("minecraft:skeleton_horse_spawn_egg"); + public static final ItemType SKELETON_SKULL = register("minecraft:skeleton_skull"); public static final ItemType SKELETON_SPAWN_EGG = register("minecraft:skeleton_spawn_egg"); public static final ItemType SLIME_BALL = register("minecraft:slime_ball"); public static final ItemType SLIME_BLOCK = register("minecraft:slime_block"); @@ -634,14 +688,15 @@ public final class ItemTypes { public static final ItemType SNOW_BLOCK = register("minecraft:snow_block"); public static final ItemType SNOWBALL = register("minecraft:snowball"); public static final ItemType SOUL_SAND = register("minecraft:soul_sand"); + public static final ItemType SPAWNER = register("minecraft:spawner"); public static final ItemType SPECTRAL_ARROW = register("minecraft:spectral_arrow"); public static final ItemType SPIDER_EYE = register("minecraft:spider_eye"); public static final ItemType SPIDER_SPAWN_EGG = register("minecraft:spider_spawn_egg"); public static final ItemType SPLASH_POTION = register("minecraft:splash_potion"); public static final ItemType SPONGE = register("minecraft:sponge"); - public static final ItemType SPRUCE_BARK = register("minecraft:spruce_bark"); public static final ItemType SPRUCE_BOAT = register("minecraft:spruce_boat"); public static final ItemType SPRUCE_BUTTON = register("minecraft:spruce_button"); + public static final ItemType SPRUCE_DOOR = register("minecraft:spruce_door"); public static final ItemType SPRUCE_FENCE = register("minecraft:spruce_fence"); public static final ItemType SPRUCE_FENCE_GATE = register("minecraft:spruce_fence_gate"); public static final ItemType SPRUCE_LEAVES = register("minecraft:spruce_leaves"); @@ -652,6 +707,7 @@ public final class ItemTypes { public static final ItemType SPRUCE_SLAB = register("minecraft:spruce_slab"); public static final ItemType SPRUCE_STAIRS = register("minecraft:spruce_stairs"); public static final ItemType SPRUCE_TRAPDOOR = register("minecraft:spruce_trapdoor"); + public static final ItemType SPRUCE_WOOD = register("minecraft:spruce_wood"); public static final ItemType SQUID_SPAWN_EGG = register("minecraft:squid_spawn_egg"); public static final ItemType STICK = register("minecraft:stick"); public static final ItemType STICKY_PISTON = register("minecraft:sticky_piston"); @@ -670,22 +726,34 @@ public final class ItemTypes { public static final ItemType STRAY_SPAWN_EGG = register("minecraft:stray_spawn_egg"); public static final ItemType STRING = register("minecraft:string"); public static final ItemType STRIPPED_ACACIA_LOG = register("minecraft:stripped_acacia_log"); + public static final ItemType STRIPPED_ACACIA_WOOD = register("minecraft:stripped_acacia_wood"); public static final ItemType STRIPPED_BIRCH_LOG = register("minecraft:stripped_birch_log"); + public static final ItemType STRIPPED_BIRCH_WOOD = register("minecraft:stripped_birch_wood"); public static final ItemType STRIPPED_DARK_OAK_LOG = register("minecraft:stripped_dark_oak_log"); + public static final ItemType STRIPPED_DARK_OAK_WOOD = register("minecraft:stripped_dark_oak_wood"); public static final ItemType STRIPPED_JUNGLE_LOG = register("minecraft:stripped_jungle_log"); + public static final ItemType STRIPPED_JUNGLE_WOOD = register("minecraft:stripped_jungle_wood"); public static final ItemType STRIPPED_OAK_LOG = register("minecraft:stripped_oak_log"); + public static final ItemType STRIPPED_OAK_WOOD = register("minecraft:stripped_oak_wood"); public static final ItemType STRIPPED_SPRUCE_LOG = register("minecraft:stripped_spruce_log"); + public static final ItemType STRIPPED_SPRUCE_WOOD = register("minecraft:stripped_spruce_wood"); + public static final ItemType STRUCTURE_BLOCK = register("minecraft:structure_block"); public static final ItemType STRUCTURE_VOID = register("minecraft:structure_void"); public static final ItemType SUGAR = register("minecraft:sugar"); public static final ItemType SUGAR_CANE = register("minecraft:sugar_cane"); + public static final ItemType SUNFLOWER = register("minecraft:sunflower"); + public static final ItemType TALL_GRASS = register("minecraft:tall_grass"); public static final ItemType TERRACOTTA = register("minecraft:terracotta"); public static final ItemType TIPPED_ARROW = register("minecraft:tipped_arrow"); public static final ItemType TNT = register("minecraft:tnt"); public static final ItemType TNT_MINECART = register("minecraft:tnt_minecart"); + public static final ItemType TORCH = register("minecraft:torch"); public static final ItemType TOTEM_OF_UNDYING = register("minecraft:totem_of_undying"); public static final ItemType TRAPPED_CHEST = register("minecraft:trapped_chest"); public static final ItemType TRIDENT = register("minecraft:trident"); public static final ItemType TRIPWIRE_HOOK = register("minecraft:tripwire_hook"); + public static final ItemType TROPICAL_FISH = register("minecraft:tropical_fish"); + public static final ItemType TROPICAL_FISH_BUCKET = register("minecraft:tropical_fish_bucket"); public static final ItemType TROPICAL_FISH_SPAWN_EGG = register("minecraft:tropical_fish_spawn_egg"); public static final ItemType TUBE_CORAL = register("minecraft:tube_coral"); public static final ItemType TUBE_CORAL_BLOCK = register("minecraft:tube_coral_block"); @@ -695,23 +763,26 @@ public final class ItemTypes { public static final ItemType TURTLE_SPAWN_EGG = register("minecraft:turtle_spawn_egg"); public static final ItemType VEX_SPAWN_EGG = register("minecraft:vex_spawn_egg"); public static final ItemType VILLAGER_SPAWN_EGG = register("minecraft:villager_spawn_egg"); - public static final ItemType VINDICATION_ILLAGER_SPAWN_EGG = register("minecraft:vindication_illager_spawn_egg"); + public static final ItemType VINDICATOR_SPAWN_EGG = register("minecraft:vindicator_spawn_egg"); public static final ItemType VINE = register("minecraft:vine"); public static final ItemType WATER_BUCKET = register("minecraft:water_bucket"); public static final ItemType WET_SPONGE = register("minecraft:wet_sponge"); public static final ItemType WHEAT = register("minecraft:wheat"); public static final ItemType WHEAT_SEEDS = register("minecraft:wheat_seeds"); public static final ItemType WHITE_BANNER = register("minecraft:white_banner"); + public static final ItemType WHITE_BED = register("minecraft:white_bed"); public static final ItemType WHITE_CARPET = register("minecraft:white_carpet"); public static final ItemType WHITE_CONCRETE = register("minecraft:white_concrete"); public static final ItemType WHITE_CONCRETE_POWDER = register("minecraft:white_concrete_powder"); public static final ItemType WHITE_GLAZED_TERRACOTTA = register("minecraft:white_glazed_terracotta"); + public static final ItemType WHITE_SHULKER_BOX = register("minecraft:white_shulker_box"); public static final ItemType WHITE_STAINED_GLASS = register("minecraft:white_stained_glass"); public static final ItemType WHITE_STAINED_GLASS_PANE = register("minecraft:white_stained_glass_pane"); public static final ItemType WHITE_TERRACOTTA = register("minecraft:white_terracotta"); public static final ItemType WHITE_TULIP = register("minecraft:white_tulip"); public static final ItemType WHITE_WOOL = register("minecraft:white_wool"); public static final ItemType WITCH_SPAWN_EGG = register("minecraft:witch_spawn_egg"); + public static final ItemType WITHER_SKELETON_SKULL = register("minecraft:wither_skeleton_skull"); public static final ItemType WITHER_SKELETON_SPAWN_EGG = register("minecraft:wither_skeleton_spawn_egg"); public static final ItemType WOLF_SPAWN_EGG = register("minecraft:wolf_spawn_egg"); public static final ItemType WOODEN_AXE = register("minecraft:wooden_axe"); @@ -722,14 +793,17 @@ public final class ItemTypes { public static final ItemType WRITABLE_BOOK = register("minecraft:writable_book"); public static final ItemType WRITTEN_BOOK = register("minecraft:written_book"); public static final ItemType YELLOW_BANNER = register("minecraft:yellow_banner"); + public static final ItemType YELLOW_BED = register("minecraft:yellow_bed"); public static final ItemType YELLOW_CARPET = register("minecraft:yellow_carpet"); public static final ItemType YELLOW_CONCRETE = register("minecraft:yellow_concrete"); public static final ItemType YELLOW_CONCRETE_POWDER = register("minecraft:yellow_concrete_powder"); public static final ItemType YELLOW_GLAZED_TERRACOTTA = register("minecraft:yellow_glazed_terracotta"); + public static final ItemType YELLOW_SHULKER_BOX = register("minecraft:yellow_shulker_box"); public static final ItemType YELLOW_STAINED_GLASS = register("minecraft:yellow_stained_glass"); public static final ItemType YELLOW_STAINED_GLASS_PANE = register("minecraft:yellow_stained_glass_pane"); public static final ItemType YELLOW_TERRACOTTA = register("minecraft:yellow_terracotta"); public static final ItemType YELLOW_WOOL = register("minecraft:yellow_wool"); + public static final ItemType ZOMBIE_HEAD = register("minecraft:zombie_head"); public static final ItemType ZOMBIE_HORSE_SPAWN_EGG = register("minecraft:zombie_horse_spawn_egg"); public static final ItemType ZOMBIE_PIGMAN_SPAWN_EGG = register("minecraft:zombie_pigman_spawn_egg"); public static final ItemType ZOMBIE_SPAWN_EGG = register("minecraft:zombie_spawn_egg"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/PassthroughBlockMaterial.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/PassthroughBlockMaterial.java index d606efabc..1eaa65c1d 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/PassthroughBlockMaterial.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/PassthroughBlockMaterial.java @@ -31,15 +31,6 @@ public class PassthroughBlockMaterial implements BlockMaterial { this.blockMaterial = material; } - @Override - public boolean isRenderedAsNormalBlock() { - if (blockMaterial == null) { - return true; - } else { - return blockMaterial.isRenderedAsNormalBlock(); - } - } - @Override public boolean isFullCube() { if (blockMaterial == null) { @@ -112,33 +103,6 @@ public class PassthroughBlockMaterial implements BlockMaterial { } } - @Override - public boolean isGrassBlocking() { - if (blockMaterial == null) { - return true; - } else { - return blockMaterial.isGrassBlocking(); - } - } - - @Override - public float getAmbientOcclusionLightValue() { - if (blockMaterial == null) { - return 0; - } else { - return blockMaterial.getAmbientOcclusionLightValue(); - } - } - - @Override - public int getLightOpacity() { - if (blockMaterial == null) { - return 0; - } else { - return blockMaterial.getLightOpacity(); - } - } - @Override public int getLightValue() { if (blockMaterial == null) { @@ -166,15 +130,6 @@ public class PassthroughBlockMaterial implements BlockMaterial { } } - @Override - public boolean isAdventureModeExempt() { - if (blockMaterial == null) { - return false; - } else { - return blockMaterial.isAdventureModeExempt(); - } - } - @Override public boolean isTicksRandomly() { if (blockMaterial == null) { @@ -184,15 +139,6 @@ public class PassthroughBlockMaterial implements BlockMaterial { } } - @Override - public boolean isUsingNeighborLight() { - if (blockMaterial == null) { - return false; - } else { - return blockMaterial.isUsingNeighborLight(); - } - } - @Override public boolean isMovementBlocker() { if (blockMaterial == null) { diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/SimpleBlockMaterial.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/SimpleBlockMaterial.java index 9ad54acf6..6e0b57e31 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/SimpleBlockMaterial.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/SimpleBlockMaterial.java @@ -23,7 +23,6 @@ import com.sk89q.worldedit.blocks.BlockMaterial; class SimpleBlockMaterial implements BlockMaterial { - private boolean renderedAsNormalBlock; private boolean fullCube; private boolean opaque; private boolean powerSource; @@ -32,15 +31,10 @@ class SimpleBlockMaterial implements BlockMaterial { private float hardness; private float resistance; private float slipperiness; - private boolean grassBlocking; - private float ambientOcclusionLightValue; - private int lightOpacity; private int lightValue; private boolean fragileWhenPushed; private boolean unpushable; - private boolean adventureModeExempt; private boolean ticksRandomly; - private boolean usingNeighborLight; private boolean movementBlocker; private boolean burnable; private boolean toolRequired; @@ -48,15 +42,6 @@ class SimpleBlockMaterial implements BlockMaterial { private boolean isTranslucent; private boolean hasContainer; - @Override - public boolean isRenderedAsNormalBlock() { - return renderedAsNormalBlock; - } - - public void setRenderedAsNormalBlock(boolean renderedAsNormalBlock) { - this.renderedAsNormalBlock = renderedAsNormalBlock; - } - @Override public boolean isFullCube() { return fullCube; @@ -129,33 +114,6 @@ class SimpleBlockMaterial implements BlockMaterial { this.slipperiness = slipperiness; } - @Override - public boolean isGrassBlocking() { - return grassBlocking; - } - - public void setGrassBlocking(boolean grassBlocking) { - this.grassBlocking = grassBlocking; - } - - @Override - public float getAmbientOcclusionLightValue() { - return ambientOcclusionLightValue; - } - - public void setAmbientOcclusionLightValue(float ambientOcclusionLightValue) { - this.ambientOcclusionLightValue = ambientOcclusionLightValue; - } - - @Override - public int getLightOpacity() { - return lightOpacity; - } - - public void setLightOpacity(int lightOpacity) { - this.lightOpacity = lightOpacity; - } - @Override public int getLightValue() { return lightValue; @@ -183,15 +141,6 @@ class SimpleBlockMaterial implements BlockMaterial { this.unpushable = unpushable; } - @Override - public boolean isAdventureModeExempt() { - return adventureModeExempt; - } - - public void setAdventureModeExempt(boolean adventureModeExempt) { - this.adventureModeExempt = adventureModeExempt; - } - @Override public boolean isTicksRandomly() { return ticksRandomly; @@ -201,15 +150,6 @@ class SimpleBlockMaterial implements BlockMaterial { this.ticksRandomly = ticksRandomly; } - @Override - public boolean isUsingNeighborLight() { - return usingNeighborLight; - } - - public void setUsingNeighborLight(boolean usingNeighborLight) { - this.usingNeighborLight = usingNeighborLight; - } - @Override public boolean isMovementBlocker() { return movementBlocker; diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json index 081ebf427..3e163855a 100644 --- a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json +++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json @@ -1,21 +1,365 @@ [ { - "legacyId": 0, + "id": "minecraft:acacia_button", + "localizedName": "Acacia Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_door", + "localizedName": "Acacia Door", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_fence", + "localizedName": "Acacia Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_fence_gate", + "localizedName": "Acacia Fence Gate", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_leaves", + "localizedName": "Acacia Leaves", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_log", + "localizedName": "Acacia Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_planks", + "localizedName": "Acacia Planks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_pressure_plate", + "localizedName": "Acacia Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_sapling", + "localizedName": "Acacia Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_slab", + "localizedName": "Acacia Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_stairs", + "localizedName": "Acacia Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_trapdoor", + "localizedName": "Acacia Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:acacia_wood", + "localizedName": "Acacia Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:activator_rail", + "localizedName": "Activator Rail", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.7, + "resistance": 0.7, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { "id": "minecraft:air", - "unlocalizedName": "tile.air", "localizedName": "Air", - "states": {}, "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": false, "hardness": 0.0, "resistance": 0.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -25,244 +369,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 1, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone", - "localizedName": "Stone", - "states": { - "variant": { - "values": [ - "stone", - "granite", - "smooth_granite", - "diorite", - "smooth_diorite", - "andesite", - "smooth_andesite" - ] - } - }, + "id": "minecraft:allium", + "localizedName": "Allium", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.5, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 2, - "id": "minecraft:grass", - "unlocalizedName": "tile.grass", - "localizedName": "Grass Block", - "states": { - "snowy": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.6, - "resistance": 3.0, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 3, - "id": "minecraft:dirt", - "unlocalizedName": "tile.dirt", - "localizedName": "Dirt", - "states": { - "snowy": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "dirt", - "coarse_dirt", - "podzol" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 4, - "id": "minecraft:cobblestone", - "unlocalizedName": "tile.stonebrick", - "localizedName": "Cobblestone", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 5, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood", - "localizedName": "Wooden Planks", - "states": { - "variant": { - "values": [ - "oak", - "spruce", - "birch", - "jungle", - "acacia", - "dark_oak" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 6, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling", - "localizedName": "Oak Sapling", - "states": { - "stage": { - "values": [ - "0", - "1" - ] - }, - "type": { - "values": [ - "oak", - "spruce", - "birch", - "jungle", - "acacia", - "dark_oak" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.0, "resistance": 0.0, - "ticksRandomly": true, + "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -272,28 +394,197 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:andesite", + "localizedName": "Andesite", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:anvil", + "localizedName": "Anvil", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 1200.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:attached_melon_stem", + "localizedName": "Attached Melon Stem", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:attached_pumpkin_stem", + "localizedName": "Attached Pumpkin Stem", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:azure_bluet", + "localizedName": "Azure Bluet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:barrier", + "localizedName": "Barrier", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 3600000.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:beacon", + "localizedName": "Beacon", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 7, "id": "minecraft:bedrock", - "unlocalizedName": "tile.bedrock", "localizedName": "Bedrock", - "states": {}, "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, "hardness": -1.0, - "resistance": 1.8E7, + "resistance": 3600000.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -303,816 +594,22 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 8, - "id": "minecraft:flowing_water", - "unlocalizedName": "tile.water", - "localizedName": "Water", - "states": { - "level": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, + "id": "minecraft:beetroots", + "localizedName": "Beetroots", "material": { "powerSource": false, - "lightOpacity": 3, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 100.0, - "resistance": 500.0, + "hardness": 0.0, + "resistance": 0.0, "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": true, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 9, - "id": "minecraft:water", - "unlocalizedName": "tile.water", - "localizedName": "Water", - "states": { - "level": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 3, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 100.0, - "resistance": 500.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": true, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 10, - "id": "minecraft:flowing_lava", - "unlocalizedName": "tile.lava", - "localizedName": "Lava", - "states": { - "level": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": 100.0, - "resistance": 500.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": true, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 11, - "id": "minecraft:lava", - "unlocalizedName": "tile.lava", - "localizedName": "Lava", - "states": { - "level": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": 100.0, - "resistance": 500.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": true, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 12, - "id": "minecraft:sand", - "unlocalizedName": "tile.sand", - "localizedName": "Sand", - "states": { - "variant": { - "values": [ - "sand", - "red_sand" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "unlocalizedName": "tile.gravel", - "localizedName": "Gravel", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.6, - "resistance": 3.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 14, - "id": "minecraft:gold_ore", - "unlocalizedName": "tile.oreGold", - "localizedName": "Gold Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 15, - "id": "minecraft:iron_ore", - "unlocalizedName": "tile.oreIron", - "localizedName": "Iron Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 16, - "id": "minecraft:coal_ore", - "unlocalizedName": "tile.oreCoal", - "localizedName": "Coal Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 17, - "id": "minecraft:log", - "unlocalizedName": "tile.log", - "localizedName": "Wood", - "states": { - "axis": { - "values": [ - "x", - "y", - "z", - "none" - ] - }, - "variant": { - "values": [ - "oak", - "spruce", - "birch", - "jungle" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 18, - "id": "minecraft:leaves", - "unlocalizedName": "tile.leaves", - "localizedName": "Leaves", - "states": { - "check_decay": { - "values": [ - "true", - "false" - ] - }, - "decayable": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "oak", - "spruce", - "birch", - "jungle" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 1, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 19, - "id": "minecraft:sponge", - "unlocalizedName": "tile.sponge", - "localizedName": "Sponge", - "states": { - "wet": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.6, - "resistance": 3.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 20, - "id": "minecraft:glass", - "unlocalizedName": "tile.glass", - "localizedName": "Glass", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 21, - "id": "minecraft:lapis_ore", - "unlocalizedName": "tile.oreLapis", - "localizedName": "Lapis Lazuli Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 22, - "id": "minecraft:lapis_block", - "unlocalizedName": "tile.blockLapis", - "localizedName": "Lapis Lazuli Block", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 23, - "id": "minecraft:dispenser", - "unlocalizedName": "tile.dispenser", - "localizedName": "Dispenser", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "triggered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.5, - "resistance": 17.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 24, - "id": "minecraft:sandstone", - "unlocalizedName": "tile.sandStone", - "localizedName": "Sandstone", - "states": { - "type": { - "values": [ - "sandstone", - "chiseled_sandstone", - "smooth_sandstone" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 25, - "id": "minecraft:noteblock", - "unlocalizedName": "tile.musicBlock", - "localizedName": "Note Block", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 26, - "id": "minecraft:bed", - "unlocalizedName": "tile.bed", - "localizedName": "tile.bed.name", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "occupied": { - "values": [ - "true", - "false" - ] - }, - "part": { - "values": [ - "head", - "foot" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 27, - "id": "minecraft:golden_rail", - "unlocalizedName": "tile.goldenRail", - "localizedName": "Powered Rail", - "states": { - "powered": { - "values": [ - "true", - "false" - ] - }, - "shape": { - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.7, - "resistance": 3.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -1122,433 +619,22 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 28, - "id": "minecraft:detector_rail", - "unlocalizedName": "tile.detectorRail", - "localizedName": "Detector Rail", - "states": { - "powered": { - "values": [ - "true", - "false" - ] - }, - "shape": { - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - } - }, + "id": "minecraft:birch_button", + "localizedName": "Birch Button", "material": { "powerSource": true, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.7, - "resistance": 3.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 29, - "id": "minecraft:sticky_piston", - "unlocalizedName": "tile.pistonStickyBase", - "localizedName": "Sticky Piston", - "states": { - "extended": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.5, - "resistance": 2.5, + "resistance": 0.5, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 30, - "id": "minecraft:web", - "unlocalizedName": "tile.web", - "localizedName": "Cobweb", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 1, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 4.0, - "resistance": 20.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 31, - "id": "minecraft:tallgrass", - "unlocalizedName": "tile.tallgrass", - "localizedName": "Grass", - "states": { - "type": { - "values": [ - "dead_bush", - "tall_grass", - "fern" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": true, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 32, - "id": "minecraft:deadbush", - "unlocalizedName": "tile.deadbush", - "localizedName": "Dead Bush", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": true, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 33, - "id": "minecraft:piston", - "unlocalizedName": "tile.pistonBase", - "localizedName": "Piston", - "states": { - "extended": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 34, - "id": "minecraft:piston_head", - "unlocalizedName": "tile.pistonBase", - "localizedName": "Piston", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "short": { - "values": [ - "true", - "false" - ] - }, - "type": { - "values": [ - "normal", - "sticky" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth", - "localizedName": "Wool", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 36, - "id": "minecraft:piston_extension", - "unlocalizedName": "tile.null", - "localizedName": "tile.null.name", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "type": { - "values": [ - "normal", - "sticky" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 37, - "id": "minecraft:yellow_flower", - "unlocalizedName": "tile.flower1", - "localizedName": "Flower", - "states": { - "type": { - "values": [ - "dandelion" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -1558,366 +644,22 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 38, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2", - "localizedName": "Flower", - "states": { - "type": { - "values": [ - "poppy", - "blue_orchid", - "allium", - "houstonia", - "red_tulip", - "orange_tulip", - "white_tulip", - "pink_tulip", - "oxeye_daisy" - ] - } - }, + "id": "minecraft:birch_door", + "localizedName": "Birch Door", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 1, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 41, - "id": "minecraft:gold_block", - "unlocalizedName": "tile.blockGold", - "localizedName": "Block of Gold", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, "hardness": 3.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 42, - "id": "minecraft:iron_block", - "unlocalizedName": "tile.blockIron", - "localizedName": "Block of Iron", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 5.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 43, - "id": "minecraft:double_stone_slab", - "unlocalizedName": "tile.stoneSlab", - "localizedName": "Stone Slab", - "states": { - "seamless": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "stone", - "sandstone", - "wood_old", - "cobblestone", - "brick", - "stone_brick", - "nether_brick", - "quartz" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 44, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab", - "localizedName": "Stone Slab", - "states": { - "half": { - "values": [ - "top", - "bottom" - ] - }, - "variant": { - "values": [ - "stone", - "sandstone", - "wood_old", - "cobblestone", - "brick", - "stone_brick", - "nether_brick", - "quartz" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, + "resistance": 3.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 45, - "id": "minecraft:brick_block", - "unlocalizedName": "tile.brick", - "localizedName": "Bricks", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 46, - "id": "minecraft:tnt", - "unlocalizedName": "tile.tnt", - "localizedName": "TNT", - "states": { - "explode": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 47, - "id": "minecraft:bookshelf", - "unlocalizedName": "tile.bookshelf", - "localizedName": "Bookshelf", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.5, - "resistance": 7.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -1927,268 +669,122 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone", - "unlocalizedName": "tile.stoneMoss", - "localizedName": "Moss Stone", - "states": {}, + "id": "minecraft:birch_fence", + "localizedName": "Birch Fence", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, "hardness": 2.0, - "resistance": 30.0, + "resistance": 3.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 49, - "id": "minecraft:obsidian", - "unlocalizedName": "tile.obsidian", - "localizedName": "Obsidian", - "states": {}, + "id": "minecraft:birch_fence_gate", + "localizedName": "Birch Fence Gate", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 50.0, - "resistance": 6000.0, + "hardness": 2.0, + "resistance": 3.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 50, - "id": "minecraft:torch", - "unlocalizedName": "tile.torch", - "localizedName": "Torch", - "states": { - "facing": { - "values": [ - "up", - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:birch_leaves", + "localizedName": "Birch Leaves", "material": { "powerSource": false, - "lightOpacity": 0, - "lightValue": 14, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, "ticksRandomly": true, - "fullCube": false, + "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, + "solid": true, + "movementBlocker": true, + "burnable": true, "opaque": false, "replacedDuringPlacement": false, "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 51, - "id": "minecraft:fire", - "unlocalizedName": "tile.fire", - "localizedName": "Fire", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "up": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:birch_log", + "localizedName": "Birch Log", "material": { "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": true, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 52, - "id": "minecraft:mob_spawner", - "unlocalizedName": "tile.mobSpawner", - "localizedName": "Monster Spawner", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 5.0, - "resistance": 25.0, + "hardness": 2.0, + "resistance": 2.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 53, - "id": "minecraft:oak_stairs", - "unlocalizedName": "tile.stairsWood", - "localizedName": "Oak Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, + "id": "minecraft:birch_planks", + "localizedName": "Birch Planks", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": true, "hardness": 2.0, - "resistance": 15.0, + "resistance": 3.0, "ticksRandomly": false, - "fullCube": false, + "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -2198,210 +794,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 54, - "id": "minecraft:chest", - "unlocalizedName": "tile.chest", - "localizedName": "Chest", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.5, - "resistance": 12.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 55, - "id": "minecraft:redstone_wire", - "unlocalizedName": "tile.redstoneDust", - "localizedName": "Redstone Dust", - "states": { - "east": { - "values": [ - "up", - "side", - "none" - ] - }, - "north": { - "values": [ - "up", - "side", - "none" - ] - }, - "power": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "south": { - "values": [ - "up", - "side", - "none" - ] - }, - "west": { - "values": [ - "up", - "side", - "none" - ] - } - }, + "id": "minecraft:birch_pressure_plate", + "localizedName": "Birch Pressure Plate", "material": { "powerSource": true, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, + "hardness": 0.5, + "resistance": 0.5, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 56, - "id": "minecraft:diamond_ore", - "unlocalizedName": "tile.oreDiamond", - "localizedName": "Diamond Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 57, - "id": "minecraft:diamond_block", - "unlocalizedName": "tile.blockDiamond", - "localizedName": "Block of Diamond", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 5.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 58, - "id": "minecraft:crafting_table", - "unlocalizedName": "tile.workbench", - "localizedName": "Crafting Table", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.5, - "resistance": 12.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -2411,41 +819,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 59, - "id": "minecraft:wheat", - "unlocalizedName": "tile.crops", - "localizedName": "Crops", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - }, + "id": "minecraft:birch_sapling", + "localizedName": "Birch Sapling", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.0, "resistance": 0.0, "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -2455,173 +844,122 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 60, - "id": "minecraft:farmland", - "unlocalizedName": "tile.farmland", - "localizedName": "Farmland", - "states": { - "moisture": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - }, + "id": "minecraft:birch_slab", + "localizedName": "Birch Slab", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.6, + "hardness": 2.0, "resistance": 3.0, - "ticksRandomly": true, + "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 61, - "id": "minecraft:furnace", - "unlocalizedName": "tile.furnace", - "localizedName": "Furnace", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:birch_stairs", + "localizedName": "Birch Stairs", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.5, - "resistance": 17.5, + "hardness": 2.0, + "resistance": 3.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 62, - "id": "minecraft:lit_furnace", - "unlocalizedName": "tile.furnace", - "localizedName": "Furnace", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:birch_trapdoor", + "localizedName": "Birch Trapdoor", "material": { "powerSource": false, - "lightOpacity": 255, - "lightValue": 13, - "usingNeighborLight": false, - "hardness": 3.5, - "resistance": 17.5, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 63, - "id": "minecraft:standing_sign", - "unlocalizedName": "tile.sign", - "localizedName": "Sign", - "states": { - "rotation": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, + "id": "minecraft:birch_wood", + "localizedName": "Birch Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_banner", + "localizedName": "Black Banner", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 1.0, - "resistance": 5.0, + "resistance": 1.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -2631,61 +969,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 64, - "id": "minecraft:wooden_door", - "unlocalizedName": "tile.doorOak", - "localizedName": "Oak Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:black_bed", + "localizedName": "Black Bed", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, + "hardness": 0.2, + "resistance": 0.2, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -2695,138 +994,122 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 65, - "id": "minecraft:ladder", - "unlocalizedName": "tile.ladder", - "localizedName": "Ladder", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:black_carpet", + "localizedName": "Black Carpet", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.4, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_concrete", + "localizedName": "Black Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_concrete_powder", + "localizedName": "Black Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_glazed_terracotta", + "localizedName": "Black Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_shulker_box", + "localizedName": "Black Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, "resistance": 2.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 66, - "id": "minecraft:rail", - "unlocalizedName": "tile.rail", - "localizedName": "Rail", - "states": { - "shape": { - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.7, - "resistance": 3.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 67, - "id": "minecraft:stone_stairs", - "unlocalizedName": "tile.stairsStone", - "localizedName": "Cobblestone Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -2836,37 +1119,97 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true } }, { - "legacyId": 68, - "id": "minecraft:wall_sign", - "unlocalizedName": "tile.sign", - "localizedName": "Sign", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:black_stained_glass", + "localizedName": "Black Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_stained_glass_pane", + "localizedName": "Black Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_terracotta", + "localizedName": "Black Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:black_wall_banner", + "localizedName": "Air", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 1.0, - "resistance": 5.0, + "resistance": 1.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -2876,187 +1219,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 69, - "id": "minecraft:lever", - "unlocalizedName": "tile.lever", - "localizedName": "Lever", - "states": { - "facing": { - "values": [ - "down_x", - "east", - "west", - "south", - "north", - "up_z", - "up_x", - "down_z" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 70, - "id": "minecraft:stone_pressure_plate", - "unlocalizedName": "tile.pressurePlateStone", - "localizedName": "Stone Pressure Plate", - "states": { - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 71, - "id": "minecraft:iron_door", - "unlocalizedName": "tile.doorIron", - "localizedName": "Iron Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:black_wool", + "localizedName": "Black Wool", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 5.0, - "resistance": 25.0, + "hardness": 0.8, + "resistance": 0.8, "ticksRandomly": false, - "fullCube": false, + "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 72, - "id": "minecraft:wooden_pressure_plate", - "unlocalizedName": "tile.pressurePlateWood", - "localizedName": "Wooden Pressure Plate", - "states": { - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -3066,264 +1244,3847 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 73, - "id": "minecraft:redstone_ore", - "unlocalizedName": "tile.oreRedstone", - "localizedName": "Redstone Ore", - "states": {}, + "id": "minecraft:blue_banner", + "localizedName": "Blue Banner", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, + "hardness": 1.0, + "resistance": 1.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 74, - "id": "minecraft:lit_redstone_ore", - "unlocalizedName": "tile.oreRedstone", - "localizedName": "Redstone Ore", - "states": {}, + "id": "minecraft:blue_bed", + "localizedName": "Blue Bed", "material": { "powerSource": false, - "lightOpacity": 255, - "lightValue": 9, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": true, - "fullCube": true, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, - "burnable": false, + "burnable": true, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, + "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 75, - "id": "minecraft:unlit_redstone_torch", - "unlocalizedName": "tile.notGate", - "localizedName": "Redstone Torch", - "states": { - "facing": { - "values": [ - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 76, - "id": "minecraft:redstone_torch", - "unlocalizedName": "tile.notGate", - "localizedName": "Redstone Torch", - "states": { - "facing": { - "values": [ - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 7, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 77, - "id": "minecraft:stone_button", - "unlocalizedName": "tile.button", - "localizedName": "Button", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 78, - "id": "minecraft:snow_layer", - "unlocalizedName": "tile.snow", - "localizedName": "Snow", - "states": { - "layers": { - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - } - }, + "id": "minecraft:blue_carpet", + "localizedName": "Blue Carpet", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_concrete", + "localizedName": "Blue Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_concrete_powder", + "localizedName": "Blue Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_glazed_terracotta", + "localizedName": "Blue Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_ice", + "localizedName": "Blue Ice", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.8, + "resistance": 2.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.989, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a0a0ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_orchid", + "localizedName": "Blue Orchid", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_shulker_box", + "localizedName": "Blue Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:blue_stained_glass", + "localizedName": "Blue Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_stained_glass_pane", + "localizedName": "Blue Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_terracotta", + "localizedName": "Blue Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:blue_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:blue_wool", + "localizedName": "Blue Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bone_block", + "localizedName": "Bone Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bookshelf", + "localizedName": "Bookshelf", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 1.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brain_coral", + "localizedName": "Brain Coral", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brain_coral_block", + "localizedName": "Brain Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brain_coral_fan", + "localizedName": "Brain Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brain_coral_wall_fan", + "localizedName": "Brain Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brewing_stand", + "localizedName": "Brewing Stand", + "material": { + "powerSource": false, + "lightValue": 1, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:brick_slab", + "localizedName": "Brick Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brick_stairs", + "localizedName": "Brick Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bricks", + "localizedName": "Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_banner", + "localizedName": "Brown Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:brown_bed", + "localizedName": "Brown Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_carpet", + "localizedName": "Brown Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_concrete", + "localizedName": "Brown Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_concrete_powder", + "localizedName": "Brown Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_glazed_terracotta", + "localizedName": "Brown Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_mushroom", + "localizedName": "Brown Mushroom", + "material": { + "powerSource": false, + "lightValue": 1, + "hardness": 0.0, + "resistance": 0.0, "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_mushroom_block", + "localizedName": "Brown Mushroom Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_shulker_box", + "localizedName": "Brown Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:brown_stained_glass", + "localizedName": "Brown Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_stained_glass_pane", + "localizedName": "Brown Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_terracotta", + "localizedName": "Brown Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:brown_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:brown_wool", + "localizedName": "Brown Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bubble_column", + "localizedName": "Bubble Column", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": true, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bubble_coral", + "localizedName": "Bubble Coral", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bubble_coral_block", + "localizedName": "Bubble Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bubble_coral_fan", + "localizedName": "Bubble Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:bubble_coral_wall_fan", + "localizedName": "Bubble Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cactus", + "localizedName": "Cactus", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.4, + "resistance": 0.4, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cake", + "localizedName": "Cake", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:carrots", + "localizedName": "Carrots", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:carved_pumpkin", + "localizedName": "Carved Pumpkin", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cauldron", + "localizedName": "Cauldron", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cave_air", + "localizedName": "Cave Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, "liquid": false, "solid": false, "movementBlocker": false, "burnable": false, "opaque": false, "replacedDuringPlacement": true, - "toolRequired": true, - "fragileWhenPushed": true, + "toolRequired": false, + "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 79, - "id": "minecraft:ice", - "unlocalizedName": "tile.ice", - "localizedName": "Ice", - "states": {}, + "id": "minecraft:chain_command_block", + "localizedName": "Chain Command Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:chest", + "localizedName": "Chest", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.5, + "resistance": 2.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:chipped_anvil", + "localizedName": "Chipped Anvil", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 1200.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chiseled_quartz_block", + "localizedName": "Chiseled Quartz Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chiseled_red_sandstone", + "localizedName": "Chiseled Red Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chiseled_sandstone", + "localizedName": "Chiseled Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chiseled_stone_bricks", + "localizedName": "Chiseled Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chorus_flower", + "localizedName": "Chorus Flower", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.4, + "resistance": 0.4, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:chorus_plant", + "localizedName": "Chorus Plant", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.4, + "resistance": 0.4, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:clay", + "localizedName": "Clay", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.6, + "resistance": 0.6, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:coal_block", + "localizedName": "Block of Coal", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:coal_ore", + "localizedName": "Coal Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:coarse_dirt", + "localizedName": "Coarse Dirt", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#976d4d", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cobblestone", + "localizedName": "Cobblestone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cobblestone_slab", + "localizedName": "Cobblestone Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cobblestone_stairs", + "localizedName": "Cobblestone Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cobblestone_wall", + "localizedName": "Cobblestone Wall", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cobweb", + "localizedName": "Cobweb", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 4.0, + "resistance": 4.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cocoa", + "localizedName": "Cocoa", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 3.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:command_block", + "localizedName": "Command Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:comparator", + "localizedName": "Redstone Comparator", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:conduit", + "localizedName": "Conduit", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:cracked_stone_bricks", + "localizedName": "Cracked Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:crafting_table", + "localizedName": "Crafting Table", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.5, + "resistance": 2.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:creeper_head", + "localizedName": "Creeper Head", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:creeper_wall_head", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:cut_red_sandstone", + "localizedName": "Cut Red Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cut_sandstone", + "localizedName": "Cut Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_banner", + "localizedName": "Cyan Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:cyan_bed", + "localizedName": "Cyan Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_carpet", + "localizedName": "Cyan Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_concrete", + "localizedName": "Cyan Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_concrete_powder", + "localizedName": "Cyan Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_glazed_terracotta", + "localizedName": "Cyan Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_shulker_box", + "localizedName": "Cyan Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:cyan_stained_glass", + "localizedName": "Cyan Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "localizedName": "Cyan Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_terracotta", + "localizedName": "Cyan Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:cyan_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:cyan_wool", + "localizedName": "Cyan Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:damaged_anvil", + "localizedName": "Damaged Anvil", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 1200.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dandelion", + "localizedName": "Dandelion", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_button", + "localizedName": "Dark Oak Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_door", + "localizedName": "Dark Oak Door", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_fence", + "localizedName": "Dark Oak Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_fence_gate", + "localizedName": "Dark Oak Fence Gate", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_leaves", + "localizedName": "Dark Oak Leaves", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_log", + "localizedName": "Dark Oak Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_planks", + "localizedName": "Dark Oak Planks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_pressure_plate", + "localizedName": "Dark Oak Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_sapling", + "localizedName": "Dark Oak Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_slab", + "localizedName": "Dark Oak Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_stairs", + "localizedName": "Dark Oak Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_trapdoor", + "localizedName": "Dark Oak Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_oak_wood", + "localizedName": "Dark Oak Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_prismarine", + "localizedName": "Dark Prismarine", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_prismarine_slab", + "localizedName": "Dark Prismarine Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dark_prismarine_stairs", + "localizedName": "Dark Prismarine Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:daylight_detector", + "localizedName": "Daylight Detector", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:dead_brain_coral_block", + "localizedName": "Dead Brain Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_brain_coral_fan", + "localizedName": "Dead Brain Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_brain_coral_wall_fan", + "localizedName": "Dead Brain Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_bubble_coral_block", + "localizedName": "Dead Bubble Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_bubble_coral_fan", + "localizedName": "Dead Bubble Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_bubble_coral_wall_fan", + "localizedName": "Dead Bubble Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_bush", + "localizedName": "Dead Bush", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_fire_coral_block", + "localizedName": "Dead Fire Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_fire_coral_fan", + "localizedName": "Dead Fire Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_fire_coral_wall_fan", + "localizedName": "Dead Fire Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_horn_coral_block", + "localizedName": "Dead Horn Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_horn_coral_fan", + "localizedName": "Dead Horn Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_horn_coral_wall_fan", + "localizedName": "Dead Horn Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_tube_coral_block", + "localizedName": "Dead Tube Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_tube_coral_fan", + "localizedName": "Dead Tube Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dead_tube_coral_wall_fan", + "localizedName": "Dead Tube Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:detector_rail", + "localizedName": "Detector Rail", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.7, + "resistance": 0.7, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:diamond_block", + "localizedName": "Block of Diamond", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:diamond_ore", + "localizedName": "Diamond Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:diorite", + "localizedName": "Diorite", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dirt", + "localizedName": "Dirt", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#976d4d", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dispenser", + "localizedName": "Dispenser", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.5, + "resistance": 3.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:dragon_egg", + "localizedName": "Dragon Egg", + "material": { + "powerSource": false, + "lightValue": 1, + "hardness": 3.0, + "resistance": 9.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dragon_head", + "localizedName": "Dragon Head", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:dragon_wall_head", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:dried_kelp_block", + "localizedName": "Dried Kelp Block", "material": { "powerSource": false, - "lightOpacity": 3, "lightValue": 0, - "usingNeighborLight": false, "hardness": 0.5, "resistance": 2.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#7fb238", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:dropper", + "localizedName": "Dropper", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.5, + "resistance": 3.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:emerald_block", + "localizedName": "Block of Emerald", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:emerald_ore", + "localizedName": "Emerald Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:enchanting_table", + "localizedName": "Enchanting Table", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 1200.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:end_gateway", + "localizedName": "End Gateway", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:end_portal", + "localizedName": "End Portal", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:end_portal_frame", + "localizedName": "End Portal Frame", + "material": { + "powerSource": false, + "lightValue": 1, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:end_rod", + "localizedName": "End Rod", + "material": { + "powerSource": false, + "lightValue": 14, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:end_stone", + "localizedName": "End Stone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 9.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:end_stone_bricks", + "localizedName": "End Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:ender_chest", + "localizedName": "Ender Chest", + "material": { + "powerSource": false, + "lightValue": 7, + "hardness": 22.5, + "resistance": 600.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:farmland", + "localizedName": "Farmland", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.6, + "resistance": 0.6, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#976d4d", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fern", + "localizedName": "Fern", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fire", + "localizedName": "Fire", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fire_coral", + "localizedName": "Fire Coral", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fire_coral_block", + "localizedName": "Fire Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fire_coral_fan", + "localizedName": "Fire Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:fire_coral_wall_fan", + "localizedName": "Fire Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:flower_pot", + "localizedName": "Flower Pot", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:frosted_ice", + "localizedName": "Frosted Ice", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, "ticksRandomly": true, "fullCube": true, "slipperiness": 0.98, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -3333,28 +5094,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#a0a0ff", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 80, - "id": "minecraft:snow", - "unlocalizedName": "tile.snow", - "localizedName": "Snow", - "states": {}, + "id": "minecraft:furnace", + "localizedName": "Furnace", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": true, + "hardness": 3.5, + "resistance": 3.5, + "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -3364,49 +5119,22 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 81, - "id": "minecraft:cactus", - "unlocalizedName": "tile.cactus", - "localizedName": "Cactus", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, + "id": "minecraft:glass", + "localizedName": "Glass", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.4, - "resistance": 2.0, - "ticksRandomly": true, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -3414,247 +5142,99 @@ "opaque": false, "replacedDuringPlacement": false, "toolRequired": false, - "fragileWhenPushed": true, + "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 82, - "id": "minecraft:clay", - "unlocalizedName": "tile.clay", - "localizedName": "Clay", - "states": {}, + "id": "minecraft:glass_pane", + "localizedName": "Glass Pane", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.6, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:glowstone", + "localizedName": "Glowstone", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gold_block", + "localizedName": "Block of Gold", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gold_ore", + "localizedName": "Gold Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, "resistance": 3.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 83, - "id": "minecraft:reeds", - "unlocalizedName": "tile.reeds", - "localizedName": "Sugar cane", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 84, - "id": "minecraft:jukebox", - "unlocalizedName": "tile.jukebox", - "localizedName": "Jukebox", - "states": { - "has_record": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 85, - "id": "minecraft:fence", - "unlocalizedName": "tile.fence", - "localizedName": "Oak Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 86, - "id": "minecraft:pumpkin", - "unlocalizedName": "tile.pumpkin", - "localizedName": "Pumpkin", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.0, - "resistance": 5.0, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 87, - "id": "minecraft:netherrack", - "unlocalizedName": "tile.hellrock", - "localizedName": "Netherrack", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.4, - "resistance": 2.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -3664,474 +5244,22 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 88, - "id": "minecraft:soul_sand", - "unlocalizedName": "tile.hellsand", - "localizedName": "Soul Sand", - "states": {}, + "id": "minecraft:granite", + "localizedName": "Granite", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 89, - "id": "minecraft:glowstone", - "unlocalizedName": "tile.lightgem", - "localizedName": "Glowstone", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 15, - "usingNeighborLight": false, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 90, - "id": "minecraft:portal", - "unlocalizedName": "tile.portal", - "localizedName": "Portal", - "states": { - "axis": { - "values": [ - "x", - "z" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 11, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 91, - "id": "minecraft:lit_pumpkin", - "unlocalizedName": "tile.litpumpkin", - "localizedName": "Jack o\u0027Lantern", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 15, - "usingNeighborLight": false, - "hardness": 1.0, - "resistance": 5.0, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 92, - "id": "minecraft:cake", - "unlocalizedName": "tile.cake", - "localizedName": "Cake", - "states": { - "bites": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 93, - "id": "minecraft:unpowered_repeater", - "unlocalizedName": "tile.diode", - "localizedName": "Redstone Repeater", - "states": { - "delay": { - "values": [ - "1", - "2", - "3", - "4" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "locked": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 94, - "id": "minecraft:powered_repeater", - "unlocalizedName": "tile.diode", - "localizedName": "Redstone Repeater", - "states": { - "delay": { - "values": [ - "1", - "2", - "3", - "4" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "locked": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 95, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass", - "localizedName": "Stained Glass", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 96, - "id": "minecraft:trapdoor", - "unlocalizedName": "tile.trapdoor", - "localizedName": "Wooden Trapdoor", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 97, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg", - "localizedName": "Stone Monster Egg", - "states": { - "variant": { - "values": [ - "stone", - "cobblestone", - "stone_brick", - "mossy_brick", - "cracked_brick", - "chiseled_brick" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.75, - "resistance": 3.75, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "unlocalizedName": "tile.stonebricksmooth", - "localizedName": "Stone Bricks", - "states": { - "variant": { - "values": [ - "stonebrick", - "mossy_stonebrick", - "cracked_stonebrick", - "chiseled_stonebrick" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, "hardness": 1.5, - "resistance": 30.0, + "resistance": 6.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -4141,406 +5269,22 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 99, - "id": "minecraft:brown_mushroom_block", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "states": { - "variant": { - "values": [ - "north_west", - "north", - "north_east", - "west", - "center", - "east", - "south_west", - "south", - "south_east", - "stem", - "all_inside", - "all_outside", - "all_stem" - ] - } - }, + "id": "minecraft:grass", + "localizedName": "Grass", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 100, - "id": "minecraft:red_mushroom_block", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "states": { - "variant": { - "values": [ - "north_west", - "north", - "north_east", - "west", - "center", - "east", - "south_west", - "south", - "south_east", - "stem", - "all_inside", - "all_outside", - "all_stem" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 101, - "id": "minecraft:iron_bars", - "unlocalizedName": "tile.fenceIron", - "localizedName": "Iron Bars", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 5.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 102, - "id": "minecraft:glass_pane", - "unlocalizedName": "tile.thinGlass", - "localizedName": "Glass Pane", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 103, - "id": "minecraft:melon_block", - "unlocalizedName": "tile.melon", - "localizedName": "Melon", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.0, - "resistance": 5.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 104, - "id": "minecraft:pumpkin_stem", - "unlocalizedName": "tile.pumpkinStem", - "localizedName": "Pumpkin Stem", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "facing": { - "values": [ - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.0, "resistance": 0.0, - "ticksRandomly": true, + "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 105, - "id": "minecraft:melon_stem", - "unlocalizedName": "tile.pumpkinStem", - "localizedName": "Pumpkin Stem", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "facing": { - "values": [ - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 106, - "id": "minecraft:vine", - "unlocalizedName": "tile.vine", - "localizedName": "Vines", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "up": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -4550,203 +5294,22 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 107, - "id": "minecraft:fence_gate", - "unlocalizedName": "tile.fenceGate", - "localizedName": "Oak Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:grass_block", + "localizedName": "Grass Block", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 108, - "id": "minecraft:brick_stairs", - "unlocalizedName": "tile.stairsBrick", - "localizedName": "Brick Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 109, - "id": "minecraft:stone_brick_stairs", - "unlocalizedName": "tile.stairsStoneBrickSmooth", - "localizedName": "Stone Brick Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 1.5, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 110, - "id": "minecraft:mycelium", - "unlocalizedName": "tile.mycel", - "localizedName": "Mycelium", - "states": { - "snowy": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, "hardness": 0.6, - "resistance": 3.0, + "resistance": 0.6, "ticksRandomly": true, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -4756,501 +5319,47 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#7fb238", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 111, - "id": "minecraft:waterlily", - "unlocalizedName": "tile.waterlily", - "localizedName": "Lily Pad", - "states": {}, + "id": "minecraft:grass_path", + "localizedName": "Grass Path", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, + "hardness": 0.65, + "resistance": 0.65, + "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, - "solid": false, - "movementBlocker": false, + "solid": true, + "movementBlocker": true, "burnable": false, - "opaque": false, + "opaque": true, "replacedDuringPlacement": false, "toolRequired": false, - "fragileWhenPushed": true, + "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#976d4d", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 112, - "id": "minecraft:nether_brick", - "unlocalizedName": "tile.netherBrick", - "localizedName": "Nether Brick", - "states": {}, + "id": "minecraft:gravel", + "localizedName": "Gravel", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 30.0, + "hardness": 0.6, + "resistance": 0.6, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 113, - "id": "minecraft:nether_brick_fence", - "unlocalizedName": "tile.netherFence", - "localizedName": "Nether Brick Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 114, - "id": "minecraft:nether_brick_stairs", - "unlocalizedName": "tile.stairsNetherBrick", - "localizedName": "Nether Brick Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 115, - "id": "minecraft:nether_wart", - "unlocalizedName": "tile.netherStalk", - "localizedName": "Nether Wart", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 116, - "id": "minecraft:enchanting_table", - "unlocalizedName": "tile.enchantmentTable", - "localizedName": "Enchantment Table", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 5.0, - "resistance": 6000.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 117, - "id": "minecraft:brewing_stand", - "unlocalizedName": "tile.brewingStand", - "localizedName": "Brewing Stand", - "states": { - "has_bottle_0": { - "values": [ - "true", - "false" - ] - }, - "has_bottle_1": { - "values": [ - "true", - "false" - ] - }, - "has_bottle_2": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 1, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 118, - "id": "minecraft:cauldron", - "unlocalizedName": "tile.cauldron", - "localizedName": "Cauldron", - "states": { - "level": { - "values": [ - "0", - "1", - "2", - "3" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 119, - "id": "minecraft:end_portal", - "unlocalizedName": "tile.null", - "localizedName": "tile.null.name", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 120, - "id": "minecraft:end_portal_frame", - "unlocalizedName": "tile.endPortalFrame", - "localizedName": "End Portal", - "states": { - "eye": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 1, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 121, - "id": "minecraft:end_stone", - "unlocalizedName": "tile.whiteStone", - "localizedName": "End Stone", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 45.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 122, - "id": "minecraft:dragon_egg", - "unlocalizedName": "tile.dragonEgg", - "localizedName": "Dragon Egg", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 1, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 45.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 123, - "id": "minecraft:redstone_lamp", - "unlocalizedName": "tile.redstoneLight", - "localizedName": "Redstone Lamp", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -5260,1022 +5369,1147 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 124, - "id": "minecraft:lit_redstone_lamp", - "unlocalizedName": "tile.redstoneLight", - "localizedName": "Redstone Lamp", - "states": {}, + "id": "minecraft:gray_banner", + "localizedName": "Gray Banner", "material": { "powerSource": false, - "lightOpacity": 255, - "lightValue": 15, - "usingNeighborLight": false, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 125, - "id": "minecraft:double_wooden_slab", - "unlocalizedName": "tile.woodSlab", - "localizedName": "Wood Slab", - "states": { - "variant": { - "values": [ - "oak", - "spruce", - "birch", - "jungle", - "acacia", - "dark_oak" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 126, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab", - "localizedName": "Wood Slab", - "states": { - "half": { - "values": [ - "top", - "bottom" - ] - }, - "variant": { - "values": [ - "oak", - "spruce", - "birch", - "jungle", - "acacia", - "dark_oak" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 127, - "id": "minecraft:cocoa", - "unlocalizedName": "tile.cocoa", - "localizedName": "Cocoa", - "states": { - "age": { - "values": [ - "0", - "1", - "2" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.2, - "resistance": 15.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 128, - "id": "minecraft:sandstone_stairs", - "unlocalizedName": "tile.stairsSandStone", - "localizedName": "Sandstone Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 129, - "id": "minecraft:emerald_ore", - "unlocalizedName": "tile.oreEmerald", - "localizedName": "Emerald Ore", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 130, - "id": "minecraft:ender_chest", - "unlocalizedName": "tile.enderChest", - "localizedName": "Ender Chest", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 7, - "usingNeighborLight": true, - "hardness": 22.5, - "resistance": 3000.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "unlocalizedName": "tile.tripWireSource", - "localizedName": "Tripwire Hook", - "states": { - "attached": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 132, - "id": "minecraft:tripwire", - "unlocalizedName": "tile.tripWire", - "localizedName": "Tripwire", - "states": { - "attached": { - "values": [ - "true", - "false" - ] - }, - "disarmed": { - "values": [ - "true", - "false" - ] - }, - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 133, - "id": "minecraft:emerald_block", - "unlocalizedName": "tile.blockEmerald", - "localizedName": "Block of Emerald", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 5.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 134, - "id": "minecraft:spruce_stairs", - "unlocalizedName": "tile.stairsWoodSpruce", - "localizedName": "Spruce Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 135, - "id": "minecraft:birch_stairs", - "unlocalizedName": "tile.stairsWoodBirch", - "localizedName": "Birch Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 136, - "id": "minecraft:jungle_stairs", - "unlocalizedName": "tile.stairsWoodJungle", - "localizedName": "Jungle Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 137, - "id": "minecraft:command_block", - "unlocalizedName": "tile.commandBlock", - "localizedName": "Command Block", - "states": { - "conditional": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 138, - "id": "minecraft:beacon", - "unlocalizedName": "tile.beacon", - "localizedName": "Beacon", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "unlocalizedName": "tile.cobbleWall", - "localizedName": "Cobblestone Wall", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "up": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "cobblestone", - "mossy_cobblestone" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 140, - "id": "minecraft:flower_pot", - "unlocalizedName": "tile.flowerPot", - "localizedName": "Flower Pot", - "states": { - "contents": { - "values": [ - "empty", - "rose", - "blue_orchid", - "allium", - "houstonia", - "red_tulip", - "orange_tulip", - "white_tulip", - "pink_tulip", - "oxeye_daisy", - "dandelion", - "oak_sapling", - "spruce_sapling", - "birch_sapling", - "jungle_sapling", - "acacia_sapling", - "dark_oak_sapling", - "mushroom_red", - "mushroom_brown", - "dead_bush", - "fern", - "cactus" - ] - }, - "legacy_data": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 141, - "id": "minecraft:carrots", - "unlocalizedName": "tile.carrots", - "localizedName": "Carrots", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 142, - "id": "minecraft:potatoes", - "unlocalizedName": "tile.potatoes", - "localizedName": "Potatoes", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 143, - "id": "minecraft:wooden_button", - "unlocalizedName": "tile.button", - "localizedName": "Button", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 144, - "id": "minecraft:skull", - "unlocalizedName": "tile.skull", - "localizedName": "tile.skull.skeleton.name", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "nodrop": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:gray_bed", + "localizedName": "Gray Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_carpet", + "localizedName": "Gray Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_concrete", + "localizedName": "Gray Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_concrete_powder", + "localizedName": "Gray Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_glazed_terracotta", + "localizedName": "Gray Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_shulker_box", + "localizedName": "Gray Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:gray_stained_glass", + "localizedName": "Gray Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_stained_glass_pane", + "localizedName": "Gray Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_terracotta", + "localizedName": "Gray Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:gray_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:gray_wool", + "localizedName": "Gray Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_banner", + "localizedName": "Green Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:green_bed", + "localizedName": "Green Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_carpet", + "localizedName": "Green Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_concrete", + "localizedName": "Green Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_concrete_powder", + "localizedName": "Green Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_glazed_terracotta", + "localizedName": "Green Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_shulker_box", + "localizedName": "Green Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:green_stained_glass", + "localizedName": "Green Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_stained_glass_pane", + "localizedName": "Green Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_terracotta", + "localizedName": "Green Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:green_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:green_wool", + "localizedName": "Green Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:hay_block", + "localizedName": "Hay Bale", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#7fb238", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "localizedName": "Heavy Weighted Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:hopper", + "localizedName": "Hopper", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 4.8, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:horn_coral", + "localizedName": "Horn Coral", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:horn_coral_block", + "localizedName": "Horn Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:horn_coral_fan", + "localizedName": "Horn Coral Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:horn_coral_wall_fan", + "localizedName": "Horn Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:ice", + "localizedName": "Ice", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.98, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a0a0ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_chiseled_stone_bricks", + "localizedName": "Infested Chiseled Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_cobblestone", + "localizedName": "Infested Cobblestone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_cracked_stone_bricks", + "localizedName": "Infested Cracked Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_mossy_stone_bricks", + "localizedName": "Infested Mossy Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_stone", + "localizedName": "Infested Stone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:infested_stone_bricks", + "localizedName": "Infested Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.75, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:iron_bars", + "localizedName": "Iron Bars", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:iron_block", + "localizedName": "Block of Iron", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:iron_door", + "localizedName": "Iron Door", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, "resistance": 5.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:iron_ore", + "localizedName": "Iron Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:iron_trapdoor", + "localizedName": "Iron Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 5.0, + "resistance": 5.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jack_o_lantern", + "localizedName": "Jack o\u0027Lantern", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jukebox", + "localizedName": "Jukebox", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:jungle_button", + "localizedName": "Jungle Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, "liquid": false, "solid": false, "movementBlocker": false, @@ -6285,44 +6519,397 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 145, - "id": "minecraft:anvil", - "unlocalizedName": "tile.anvil", - "localizedName": "Anvil", - "states": { - "damage": { - "values": [ - "0", - "1", - "2" - ] - }, - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:jungle_door", + "localizedName": "Jungle Door", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 5.0, - "resistance": 6000.0, + "hardness": 3.0, + "resistance": 3.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_fence", + "localizedName": "Jungle Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_fence_gate", + "localizedName": "Jungle Fence Gate", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_leaves", + "localizedName": "Jungle Leaves", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_log", + "localizedName": "Jungle Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_planks", + "localizedName": "Jungle Planks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_pressure_plate", + "localizedName": "Jungle Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_sapling", + "localizedName": "Jungle Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_slab", + "localizedName": "Jungle Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_stairs", + "localizedName": "Jungle Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_trapdoor", + "localizedName": "Jungle Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:jungle_wood", + "localizedName": "Jungle Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:kelp", + "localizedName": "Kelp", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:kelp_plant", + "localizedName": "Kelp Plant", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:ladder", + "localizedName": "Ladder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.4, + "resistance": 0.4, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lapis_block", + "localizedName": "Lapis Lazuli Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, "liquid": false, "solid": true, "movementBlocker": true, @@ -6331,329 +6918,1623 @@ "replacedDuringPlacement": false, "toolRequired": true, "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lapis_ore", + "localizedName": "Lapis Lazuli Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:large_fern", + "localizedName": "Large Fern", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lava", + "localizedName": "Lava", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 100.0, + "resistance": 100.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": true, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#ff0000", + "isTranslucent": true, + "hasContainer": false + } + }, + { + "id": "minecraft:lever", + "localizedName": "Lever", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_banner", + "localizedName": "Light Blue Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:light_blue_bed", + "localizedName": "Light Blue Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_carpet", + "localizedName": "Light Blue Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_concrete", + "localizedName": "Light Blue Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_concrete_powder", + "localizedName": "Light Blue Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_glazed_terracotta", + "localizedName": "Light Blue Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_shulker_box", + "localizedName": "Light Blue Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:light_blue_stained_glass", + "localizedName": "Light Blue Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "localizedName": "Light Blue Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_terracotta", + "localizedName": "Light Blue Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_blue_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:light_blue_wool", + "localizedName": "Light Blue Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_banner", + "localizedName": "Light Gray Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:light_gray_bed", + "localizedName": "Light Gray Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_carpet", + "localizedName": "Light Gray Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_concrete", + "localizedName": "Light Gray Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_concrete_powder", + "localizedName": "Light Gray Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_glazed_terracotta", + "localizedName": "Light Gray Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_shulker_box", + "localizedName": "Light Gray Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:light_gray_stained_glass", + "localizedName": "Light Gray Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "localizedName": "Light Gray Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_terracotta", + "localizedName": "Light Gray Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_gray_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:light_gray_wool", + "localizedName": "Light Gray Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "localizedName": "Light Weighted Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lilac", + "localizedName": "Lilac", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lily_pad", + "localizedName": "Lily Pad", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_banner", + "localizedName": "Lime Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:lime_bed", + "localizedName": "Lime Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_carpet", + "localizedName": "Lime Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_concrete", + "localizedName": "Lime Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_concrete_powder", + "localizedName": "Lime Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_glazed_terracotta", + "localizedName": "Lime Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_shulker_box", + "localizedName": "Lime Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:lime_stained_glass", + "localizedName": "Lime Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_stained_glass_pane", + "localizedName": "Lime Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_terracotta", + "localizedName": "Lime Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:lime_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:lime_wool", + "localizedName": "Lime Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_banner", + "localizedName": "Magenta Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:magenta_bed", + "localizedName": "Magenta Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_carpet", + "localizedName": "Magenta Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_concrete", + "localizedName": "Magenta Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_concrete_powder", + "localizedName": "Magenta Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_glazed_terracotta", + "localizedName": "Magenta Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_shulker_box", + "localizedName": "Magenta Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:magenta_stained_glass", + "localizedName": "Magenta Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "localizedName": "Magenta Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_terracotta", + "localizedName": "Magenta Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magenta_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:magenta_wool", + "localizedName": "Magenta Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:magma_block", + "localizedName": "Magma Block", + "material": { + "powerSource": false, + "lightValue": 3, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:melon", + "localizedName": "Melon", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:melon_stem", + "localizedName": "Melon Stem", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:mossy_cobblestone", + "localizedName": "Mossy Cobblestone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:mossy_cobblestone_wall", + "localizedName": "Mossy Cobblestone Wall", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:mossy_stone_bricks", + "localizedName": "Mossy Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:moving_piston", + "localizedName": "Moving Piston", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true } }, { - "legacyId": 146, - "id": "minecraft:trapped_chest", - "unlocalizedName": "tile.chestTrap", - "localizedName": "Trapped Chest", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:mushroom_stem", + "localizedName": "Mushroom Stem", "material": { - "powerSource": true, - "lightOpacity": 0, + "powerSource": false, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.5, - "resistance": 12.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 147, - "id": "minecraft:light_weighted_pressure_plate", - "unlocalizedName": "tile.weightedPlate_light", - "localizedName": "Weighted Pressure Plate (Light)", - "states": { - "power": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 148, - "id": "minecraft:heavy_weighted_pressure_plate", - "unlocalizedName": "tile.weightedPlate_heavy", - "localizedName": "Weighted Pressure Plate (Heavy)", - "states": { - "power": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 149, - "id": "minecraft:unpowered_comparator", - "unlocalizedName": "tile.comparator", - "localizedName": "Redstone Comparator", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "mode": { - "values": [ - "compare", - "subtract" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 150, - "id": "minecraft:powered_comparator", - "unlocalizedName": "tile.comparator", - "localizedName": "Redstone Comparator", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "mode": { - "values": [ - "compare", - "subtract" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 9, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 151, - "id": "minecraft:daylight_detector", - "unlocalizedName": "tile.daylightDetector", - "localizedName": "Daylight Sensor", - "states": { - "power": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.2, - "resistance": 1.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 152, - "id": "minecraft:redstone_block", - "unlocalizedName": "tile.blockRedstone", - "localizedName": "Block of Redstone", - "states": {}, - "material": { - "powerSource": true, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 5.0, - "resistance": 30.0, + "resistance": 0.2, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:mycelium", + "localizedName": "Mycelium", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.6, + "resistance": 0.6, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#7fb238", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:nether_brick_fence", + "localizedName": "Nether Brick Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, "liquid": false, "solid": true, "movementBlocker": true, @@ -6663,28 +8544,122 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 153, - "id": "minecraft:quartz_ore", - "unlocalizedName": "tile.netherquartz", + "id": "minecraft:nether_brick_slab", + "localizedName": "Nether Brick Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:nether_brick_stairs", + "localizedName": "Nether Brick Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:nether_bricks", + "localizedName": "Nether Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:nether_portal", + "localizedName": "Nether Portal", + "material": { + "powerSource": false, + "lightValue": 11, + "hardness": -1.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:nether_quartz_ore", "localizedName": "Nether Quartz Ore", - "states": {}, "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, "hardness": 3.0, - "resistance": 15.0, + "resistance": 3.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -6694,188 +8669,22 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 154, - "id": "minecraft:hopper", - "unlocalizedName": "tile.hopper", - "localizedName": "Hopper", - "states": { - "enabled": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:nether_wart", + "localizedName": "Nether Wart", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 24.0, - "ticksRandomly": false, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "unlocalizedName": "tile.quartzBlock", - "localizedName": "Block of Quartz", - "states": { - "variant": { - "values": [ - "default", - "chiseled", - "lines_y", - "lines_x", - "lines_z" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 156, - "id": "minecraft:quartz_stairs", - "unlocalizedName": "tile.stairsQuartz", - "localizedName": "Quartz Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 157, - "id": "minecraft:activator_rail", - "unlocalizedName": "tile.activatorRail", - "localizedName": "Activator Rail", - "states": { - "powered": { - "values": [ - "true", - "false" - ] - }, - "shape": { - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.7, - "resistance": 3.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -6885,223 +8694,197 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 158, - "id": "minecraft:dropper", - "unlocalizedName": "tile.dropper", - "localizedName": "Dropper", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "triggered": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:nether_wart_block", + "localizedName": "Nether Wart Block", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.5, - "resistance": 17.5, + "hardness": 1.0, + "resistance": 1.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, "burnable": false, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained", - "localizedName": "Stained Terracotta", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.25, - "resistance": 21.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass", - "localizedName": "Stained Glass Pane", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - }, - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.3, - "resistance": 1.5, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#7fb238", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 161, - "id": "minecraft:leaves2", - "unlocalizedName": "tile.leaves", - "localizedName": "Leaves", - "states": { - "check_decay": { - "values": [ - "true", - "false" - ] - }, - "decayable": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "acacia", - "dark_oak" - ] - } - }, + "id": "minecraft:netherrack", + "localizedName": "Netherrack", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.4, + "resistance": 0.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:note_block", + "localizedName": "Note Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_button", + "localizedName": "Oak Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_door", + "localizedName": "Oak Door", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_fence", + "localizedName": "Oak Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_fence_gate", + "localizedName": "Oak Fence Gate", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_leaves", + "localizedName": "Oak Leaves", "material": { "powerSource": false, - "lightOpacity": 1, "lightValue": 0, - "usingNeighborLight": false, "hardness": 0.2, - "resistance": 1.0, + "resistance": 0.2, "ticksRandomly": true, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -7111,43 +8894,22 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 162, - "id": "minecraft:log2", - "unlocalizedName": "tile.log", - "localizedName": "Wood", - "states": { - "axis": { - "values": [ - "x", - "y", - "z", - "none" - ] - }, - "variant": { - "values": [ - "acacia", - "dark_oak" - ] - } - }, + "id": "minecraft:oak_log", + "localizedName": "Oak Log", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, "hardness": 2.0, - "resistance": 10.0, + "resistance": 2.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -7157,52 +8919,47 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 163, - "id": "minecraft:acacia_stairs", - "unlocalizedName": "tile.stairsWoodAcacia", - "localizedName": "Acacia Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, + "id": "minecraft:oak_planks", + "localizedName": "Oak Planks", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": true, "hardness": 2.0, - "resistance": 15.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_pressure_plate", + "localizedName": "Oak Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -7212,52 +8969,47 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 164, - "id": "minecraft:dark_oak_stairs", - "unlocalizedName": "tile.stairsWoodDarkOak", - "localizedName": "Dark Oak Wood Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, + "id": "minecraft:oak_sapling", + "localizedName": "Oak Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_slab", + "localizedName": "Oak Slab", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": true, "hardness": 2.0, - "resistance": 15.0, + "resistance": 3.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -7267,28 +9019,3422 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 165, - "id": "minecraft:slime", - "unlocalizedName": "tile.slime", + "id": "minecraft:oak_stairs", + "localizedName": "Oak Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_trapdoor", + "localizedName": "Oak Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oak_wood", + "localizedName": "Oak Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:observer", + "localizedName": "Observer", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:obsidian", + "localizedName": "Obsidian", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 50.0, + "resistance": 1200.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_banner", + "localizedName": "Orange Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:orange_bed", + "localizedName": "Orange Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_carpet", + "localizedName": "Orange Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_concrete", + "localizedName": "Orange Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_concrete_powder", + "localizedName": "Orange Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_glazed_terracotta", + "localizedName": "Orange Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_shulker_box", + "localizedName": "Orange Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:orange_stained_glass", + "localizedName": "Orange Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_stained_glass_pane", + "localizedName": "Orange Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_terracotta", + "localizedName": "Orange Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_tulip", + "localizedName": "Orange Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:orange_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:orange_wool", + "localizedName": "Orange Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:oxeye_daisy", + "localizedName": "Oxeye Daisy", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:packed_ice", + "localizedName": "Packed Ice", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.98, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a0a0ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:peony", + "localizedName": "Peony", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:petrified_oak_slab", + "localizedName": "Petrified Oak Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_banner", + "localizedName": "Pink Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:pink_bed", + "localizedName": "Pink Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_carpet", + "localizedName": "Pink Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_concrete", + "localizedName": "Pink Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_concrete_powder", + "localizedName": "Pink Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_glazed_terracotta", + "localizedName": "Pink Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_shulker_box", + "localizedName": "Pink Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:pink_stained_glass", + "localizedName": "Pink Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_stained_glass_pane", + "localizedName": "Pink Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_terracotta", + "localizedName": "Pink Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_tulip", + "localizedName": "Pink Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pink_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:pink_wool", + "localizedName": "Pink Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:piston", + "localizedName": "Piston", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:piston_head", + "localizedName": "Piston Head", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:player_head", + "localizedName": "Player Head", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:player_wall_head", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:podzol", + "localizedName": "Podzol", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#976d4d", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:polished_andesite", + "localizedName": "Polished Andesite", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:polished_diorite", + "localizedName": "Polished Diorite", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:polished_granite", + "localizedName": "Polished Granite", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:poppy", + "localizedName": "Poppy", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potatoes", + "localizedName": "Potatoes", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_acacia_sapling", + "localizedName": "Potted Acacia Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_allium", + "localizedName": "Potted Allium", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_azure_bluet", + "localizedName": "Potted Azure Bluet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_birch_sapling", + "localizedName": "Potted Birch Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_blue_orchid", + "localizedName": "Potted Blue Orchid", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_brown_mushroom", + "localizedName": "Potted Brown Mushroom", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_cactus", + "localizedName": "Potted Cactus", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_dandelion", + "localizedName": "Potted Dandelion", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_dark_oak_sapling", + "localizedName": "Potted Dark Oak Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_dead_bush", + "localizedName": "Potted Dead Bush", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_fern", + "localizedName": "Potted Fern", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_jungle_sapling", + "localizedName": "Potted Jungle Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_oak_sapling", + "localizedName": "Potted Oak Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_orange_tulip", + "localizedName": "Potted Orange Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_oxeye_daisy", + "localizedName": "Potted Oxeye Daisy", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_pink_tulip", + "localizedName": "Potted Pink Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_poppy", + "localizedName": "Potted Poppy", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_red_mushroom", + "localizedName": "Potted Red Mushroom", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_red_tulip", + "localizedName": "Potted Red Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_spruce_sapling", + "localizedName": "Potted Spruce Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:potted_white_tulip", + "localizedName": "Potted White Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:powered_rail", + "localizedName": "Powered Rail", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.7, + "resistance": 0.7, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine", + "localizedName": "Prismarine", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine_brick_slab", + "localizedName": "Prismarine Brick Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine_brick_stairs", + "localizedName": "Prismarine Brick Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine_bricks", + "localizedName": "Prismarine Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine_slab", + "localizedName": "Prismarine Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:prismarine_stairs", + "localizedName": "Prismarine Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pumpkin", + "localizedName": "Pumpkin", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:pumpkin_stem", + "localizedName": "Pumpkin Stem", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_banner", + "localizedName": "Purple Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:purple_bed", + "localizedName": "Purple Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_carpet", + "localizedName": "Purple Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_concrete", + "localizedName": "Purple Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_concrete_powder", + "localizedName": "Purple Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_glazed_terracotta", + "localizedName": "Purple Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_shulker_box", + "localizedName": "Purple Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:purple_stained_glass", + "localizedName": "Purple Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_stained_glass_pane", + "localizedName": "Purple Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_terracotta", + "localizedName": "Purple Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purple_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:purple_wool", + "localizedName": "Purple Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purpur_block", + "localizedName": "Purpur Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purpur_pillar", + "localizedName": "Purpur Pillar", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purpur_slab", + "localizedName": "Purpur Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:purpur_stairs", + "localizedName": "Purpur Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:quartz_block", + "localizedName": "Block of Quartz", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:quartz_pillar", + "localizedName": "Quartz Pillar", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:quartz_slab", + "localizedName": "Quartz Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:quartz_stairs", + "localizedName": "Quartz Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:rail", + "localizedName": "Rail", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.7, + "resistance": 0.7, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_banner", + "localizedName": "Red Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:red_bed", + "localizedName": "Red Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_carpet", + "localizedName": "Red Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_concrete", + "localizedName": "Red Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_concrete_powder", + "localizedName": "Red Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_glazed_terracotta", + "localizedName": "Red Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_mushroom", + "localizedName": "Red Mushroom", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_mushroom_block", + "localizedName": "Red Mushroom Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_nether_bricks", + "localizedName": "Red Nether Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_sand", + "localizedName": "Red Sand", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_sandstone", + "localizedName": "Red Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_sandstone_slab", + "localizedName": "Red Sandstone Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_sandstone_stairs", + "localizedName": "Red Sandstone Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_shulker_box", + "localizedName": "Red Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:red_stained_glass", + "localizedName": "Red Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_stained_glass_pane", + "localizedName": "Red Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_terracotta", + "localizedName": "Red Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_tulip", + "localizedName": "Red Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:red_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:red_wool", + "localizedName": "Red Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_block", + "localizedName": "Block of Redstone", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 5.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_lamp", + "localizedName": "Redstone Lamp", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_ore", + "localizedName": "Redstone Ore", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_torch", + "localizedName": "Redstone Torch", + "material": { + "powerSource": true, + "lightValue": 7, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_wall_torch", + "localizedName": "Air", + "material": { + "powerSource": true, + "lightValue": 7, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:redstone_wire", + "localizedName": "Redstone Dust", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:repeater", + "localizedName": "Redstone Repeater", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:repeating_command_block", + "localizedName": "Repeating Command Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:rose_bush", + "localizedName": "Rose Bush", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sand", + "localizedName": "Sand", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sandstone", + "localizedName": "Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sandstone_slab", + "localizedName": "Sandstone Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sandstone_stairs", + "localizedName": "Sandstone Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sea_lantern", + "localizedName": "Sea Lantern", + "material": { + "powerSource": false, + "lightValue": 15, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sea_pickle", + "localizedName": "Sea Pickle", + "material": { + "powerSource": false, + "lightValue": 6, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:seagrass", + "localizedName": "Seagrass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:shulker_box", + "localizedName": "Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:sign", + "localizedName": "Sign", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:skeleton_skull", + "localizedName": "Skeleton Skull", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:skeleton_wall_skull", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:slime_block", "localizedName": "Slime Block", - "states": {}, "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 0.0, "resistance": 0.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.8, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -7298,28 +12444,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#a4a8b8", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 166, - "id": "minecraft:barrier", - "unlocalizedName": "tile.barrier", - "localizedName": "Barrier", - "states": {}, + "id": "minecraft:smooth_quartz", + "localizedName": "Smooth Quartz", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 1.8000004E7, + "hardness": 2.0, + "resistance": 6.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -7328,89 +12468,573 @@ "replacedDuringPlacement": false, "toolRequired": true, "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 167, - "id": "minecraft:iron_trapdoor", - "unlocalizedName": "tile.ironTrapdoor", - "localizedName": "Iron Trapdoor", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:smooth_red_sandstone", + "localizedName": "Smooth Red Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:smooth_sandstone", + "localizedName": "Smooth Sandstone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:smooth_stone", + "localizedName": "Smooth Stone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:snow", + "localizedName": "Snow", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": true, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#ffffff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:snow_block", + "localizedName": "Snow Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#ffffff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:soul_sand", + "localizedName": "Soul Sand", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spawner", + "localizedName": "Spawner", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 5.0, - "resistance": 25.0, + "resistance": 5.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:sponge", + "localizedName": "Sponge", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.6, + "resistance": 0.6, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#e5e533", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_button", + "localizedName": "Spruce Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, - "solid": true, - "movementBlocker": true, + "solid": false, + "movementBlocker": false, "burnable": false, - "opaque": true, + "opaque": false, "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, + "toolRequired": false, + "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 168, - "id": "minecraft:prismarine", - "unlocalizedName": "tile.prismarine", - "localizedName": "Prismarine", - "states": { - "variant": { - "values": [ - "prismarine", - "prismarine_bricks", - "dark_prismarine" - ] - } - }, + "id": "minecraft:spruce_door", + "localizedName": "Spruce Door", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.5, - "resistance": 30.0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_fence", + "localizedName": "Spruce Fence", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_fence_gate", + "localizedName": "Spruce Fence Gate", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_leaves", + "localizedName": "Spruce Leaves", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": true, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_log", + "localizedName": "Spruce Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_planks", + "localizedName": "Spruce Planks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_pressure_plate", + "localizedName": "Spruce Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_sapling", + "localizedName": "Spruce Sapling", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_slab", + "localizedName": "Spruce Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_stairs", + "localizedName": "Spruce Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_trapdoor", + "localizedName": "Spruce Trapdoor", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 3.0, + "resistance": 3.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:spruce_wood", + "localizedName": "Spruce Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sticky_piston", + "localizedName": "Sticky Piston", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": true, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone", + "localizedName": "Stone", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -7420,212 +13044,872 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 169, - "id": "minecraft:sea_lantern", - "unlocalizedName": "tile.seaLantern", - "localizedName": "Sea Lantern", - "states": {}, + "id": "minecraft:stone_brick_slab", + "localizedName": "Stone Brick Slab", "material": { "powerSource": false, - "lightOpacity": 255, - "lightValue": 15, - "usingNeighborLight": false, - "hardness": 0.3, - "resistance": 1.5, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, "ticksRandomly": false, - "fullCube": true, + "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone_brick_stairs", + "localizedName": "Stone Brick Stairs", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone_bricks", + "localizedName": "Stone Bricks", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone_button", + "localizedName": "Stone Button", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone_pressure_plate", + "localizedName": "Stone Pressure Plate", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stone_slab", + "localizedName": "Stone Slab", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 6.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_acacia_log", + "localizedName": "Stripped Acacia Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_acacia_wood", + "localizedName": "Stripped Acacia Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_birch_log", + "localizedName": "Stripped Birch Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_birch_wood", + "localizedName": "Stripped Birch Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_dark_oak_log", + "localizedName": "Stripped Dark Oak Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_dark_oak_wood", + "localizedName": "Stripped Dark Oak Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_jungle_log", + "localizedName": "Stripped Jungle Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_jungle_wood", + "localizedName": "Stripped Jungle Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_oak_log", + "localizedName": "Stripped Oak Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_oak_wood", + "localizedName": "Stripped Oak Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_spruce_log", + "localizedName": "Stripped Spruce Log", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:stripped_spruce_wood", + "localizedName": "Stripped Spruce Wood", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:structure_block", + "localizedName": "Structure Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": -1.0, + "resistance": 3600000.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#a7a7a7", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:structure_void", + "localizedName": "Structure Void", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sugar_cane", + "localizedName": "Sugar Cane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:sunflower", + "localizedName": "Sunflower", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tall_grass", + "localizedName": "Tall Grass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tall_seagrass", + "localizedName": "Tall Seagrass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:terracotta", + "localizedName": "Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tnt", + "localizedName": "TNT", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, "opaque": false, "replacedDuringPlacement": false, "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#ff0000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 170, - "id": "minecraft:hay_block", - "unlocalizedName": "tile.hayBlock", - "localizedName": "Hay Bale", - "states": { - "axis": { - "values": [ - "x", - "y", - "z" - ] - } - }, + "id": "minecraft:torch", + "localizedName": "Torch", "material": { "powerSource": false, - "lightOpacity": 255, + "lightValue": 14, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:trapped_chest", + "localizedName": "Trapped Chest", + "material": { + "powerSource": true, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, + "hardness": 2.5, "resistance": 2.5, "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:tripwire", + "localizedName": "Tripwire", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tripwire_hook", + "localizedName": "Tripwire Hook", + "material": { + "powerSource": true, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tube_coral", + "localizedName": "Tube Coral", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tube_coral_block", + "localizedName": "Tube Coral Block", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.5, + "resistance": 6.0, + "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, "burnable": false, "opaque": true, "replacedDuringPlacement": false, - "toolRequired": false, + "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 171, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet", - "localizedName": "Carpet", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, + "id": "minecraft:tube_coral_fan", + "localizedName": "Tube Coral Fan", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.1, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:tube_coral_wall_fan", + "localizedName": "Tube Coral Wall Fan", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#4040ff", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:turtle_egg", + "localizedName": "Turtle Egg", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, "resistance": 0.5, "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": true, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "unlocalizedName": "tile.clayHardened", - "localizedName": "Terracotta", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.25, - "resistance": 21.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 173, - "id": "minecraft:coal_block", - "unlocalizedName": "tile.blockCoal", - "localizedName": "Block of Coal", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 5.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 174, - "id": "minecraft:packed_ice", - "unlocalizedName": "tile.icePacked", - "localizedName": "Packed Ice", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.98, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -7633,55 +13917,24 @@ "opaque": true, "replacedDuringPlacement": false, "toolRequired": false, - "fragileWhenPushed": false, + "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 175, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant", - "localizedName": "Plant", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "variant": { - "values": [ - "sunflower", - "syringa", - "double_grass", - "double_fern", - "double_rose", - "paeonia" - ] - } - }, + "id": "minecraft:vine", + "localizedName": "Vines", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, + "hardness": 0.2, + "resistance": 0.2, "ticksRandomly": true, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -7691,141 +13944,47 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 176, - "id": "minecraft:standing_banner", - "unlocalizedName": "tile.banner", - "localizedName": "White Banner", - "states": { - "rotation": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, + "id": "minecraft:void_air", + "localizedName": "Void Air", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 1.0, - "resistance": 5.0, + "hardness": 0.0, + "resistance": 0.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": true, "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 177, - "id": "minecraft:wall_banner", - "unlocalizedName": "tile.banner", - "localizedName": "White Banner", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, + "id": "minecraft:wall_sign", + "localizedName": "Air", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, "hardness": 1.0, - "resistance": 5.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 178, - "id": "minecraft:daylight_detector_inverted", - "unlocalizedName": "tile.daylightDetector", - "localizedName": "Daylight Sensor", - "states": { - "power": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - }, - "material": { - "powerSource": true, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.2, "resistance": 1.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": true, "movementBlocker": true, @@ -7835,1109 +13994,22 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true } }, { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "unlocalizedName": "tile.redSandStone", - "localizedName": "Red Sandstone", - "states": { - "type": { - "values": [ - "red_sandstone", - "chiseled_red_sandstone", - "smooth_red_sandstone" - ] - } - }, + "id": "minecraft:wall_torch", + "localizedName": "Air", "material": { "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 180, - "id": "minecraft:red_sandstone_stairs", - "unlocalizedName": "tile.stairsRedSandStone", - "localizedName": "Red Sandstone Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 181, - "id": "minecraft:double_stone_slab2", - "unlocalizedName": "tile.stoneSlab2", - "localizedName": "Red Sandstone Slab", - "states": { - "seamless": { - "values": [ - "true", - "false" - ] - }, - "variant": { - "values": [ - "red_sandstone" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 182, - "id": "minecraft:stone_slab2", - "unlocalizedName": "tile.stoneSlab2", - "localizedName": "Red Sandstone Slab", - "states": { - "half": { - "values": [ - "top", - "bottom" - ] - }, - "variant": { - "values": [ - "red_sandstone" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 183, - "id": "minecraft:spruce_fence_gate", - "unlocalizedName": "tile.spruceFenceGate", - "localizedName": "Spruce Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 184, - "id": "minecraft:birch_fence_gate", - "unlocalizedName": "tile.birchFenceGate", - "localizedName": "Birch Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 185, - "id": "minecraft:jungle_fence_gate", - "unlocalizedName": "tile.jungleFenceGate", - "localizedName": "Jungle Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 186, - "id": "minecraft:dark_oak_fence_gate", - "unlocalizedName": "tile.darkOakFenceGate", - "localizedName": "Dark Oak Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 187, - "id": "minecraft:acacia_fence_gate", - "unlocalizedName": "tile.acaciaFenceGate", - "localizedName": "Acacia Fence Gate", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "in_wall": { - "values": [ - "true", - "false" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 188, - "id": "minecraft:spruce_fence", - "unlocalizedName": "tile.spruceFence", - "localizedName": "Spruce Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 189, - "id": "minecraft:birch_fence", - "unlocalizedName": "tile.birchFence", - "localizedName": "Birch Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 190, - "id": "minecraft:jungle_fence", - "unlocalizedName": "tile.jungleFence", - "localizedName": "Jungle Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 191, - "id": "minecraft:dark_oak_fence", - "unlocalizedName": "tile.darkOakFence", - "localizedName": "Dark Oak Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 192, - "id": "minecraft:acacia_fence", - "unlocalizedName": "tile.acaciaFence", - "localizedName": "Acacia Fence", - "states": { - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 193, - "id": "minecraft:spruce_door", - "unlocalizedName": "tile.doorSpruce", - "localizedName": "Spruce Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 194, - "id": "minecraft:birch_door", - "unlocalizedName": "tile.doorBirch", - "localizedName": "Birch Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 195, - "id": "minecraft:jungle_door", - "unlocalizedName": "tile.doorJungle", - "localizedName": "Jungle Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 196, - "id": "minecraft:acacia_door", - "unlocalizedName": "tile.doorAcacia", - "localizedName": "Acacia Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 197, - "id": "minecraft:dark_oak_door", - "unlocalizedName": "tile.doorDarkOak", - "localizedName": "Dark Oak Door", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "upper", - "lower" - ] - }, - "hinge": { - "values": [ - "left", - "right" - ] - }, - "open": { - "values": [ - "true", - "false" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 3.0, - "resistance": 15.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 198, - "id": "minecraft:end_rod", - "unlocalizedName": "tile.endRod", - "localizedName": "End Rod", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, "lightValue": 14, - "usingNeighborLight": true, "hardness": 0.0, "resistance": 0.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, "liquid": false, "solid": false, "movementBlocker": false, @@ -8947,2208 +14019,47 @@ "toolRequired": false, "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 199, - "id": "minecraft:chorus_plant", - "unlocalizedName": "tile.chorusPlant", - "localizedName": "Chorus Plant", - "states": { - "down": { - "values": [ - "true", - "false" - ] - }, - "east": { - "values": [ - "true", - "false" - ] - }, - "north": { - "values": [ - "true", - "false" - ] - }, - "south": { - "values": [ - "true", - "false" - ] - }, - "up": { - "values": [ - "true", - "false" - ] - }, - "west": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:water", + "localizedName": "Water", "material": { "powerSource": false, - "lightOpacity": 0, "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.4, - "resistance": 2.0, + "hardness": 100.0, + "resistance": 100.0, "ticksRandomly": false, "fullCube": false, "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 200, - "id": "minecraft:chorus_flower", - "unlocalizedName": "tile.chorusFlower", - "localizedName": "Chorus Flower", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.4, - "resistance": 2.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 201, - "id": "minecraft:purpur_block", - "unlocalizedName": "tile.purpurBlock", - "localizedName": "Purpur Block", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.5, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 202, - "id": "minecraft:purpur_pillar", - "unlocalizedName": "tile.purpurPillar", - "localizedName": "Purpur Pillar", - "states": { - "axis": { - "values": [ - "x", - "y", - "z" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.5, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 203, - "id": "minecraft:purpur_stairs", - "unlocalizedName": "tile.stairsPurpur", - "localizedName": "Purpur Stairs", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - }, - "half": { - "values": [ - "top", - "bottom" - ] - }, - "shape": { - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 1.5, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 204, - "id": "minecraft:purpur_double_slab", - "unlocalizedName": "tile.purpurSlab", - "localizedName": "Purpur Slab", - "states": { - "variant": { - "values": [ - "default" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 205, - "id": "minecraft:purpur_slab", - "unlocalizedName": "tile.purpurSlab", - "localizedName": "Purpur Slab", - "states": { - "half": { - "values": [ - "top", - "bottom" - ] - }, - "variant": { - "values": [ - "default" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 206, - "id": "minecraft:end_bricks", - "unlocalizedName": "tile.endBricks", - "localizedName": "End Stone Bricks", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.8, - "resistance": 4.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 207, - "id": "minecraft:beetroots", - "unlocalizedName": "tile.beetroots", - "localizedName": "Beetroots", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": true, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": true, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 208, - "id": "minecraft:grass_path", - "unlocalizedName": "tile.grassPath", - "localizedName": "Grass Path", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.65, - "resistance": 3.25, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 209, - "id": "minecraft:end_gateway", - "unlocalizedName": "tile.null", - "localizedName": "tile.null.name", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 15, - "usingNeighborLight": true, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": false, - "movementBlocker": false, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": true, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 210, - "id": "minecraft:repeating_command_block", - "unlocalizedName": "tile.repeatingCommandBlock", - "localizedName": "Repeating Command Block", - "states": { - "conditional": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 211, - "id": "minecraft:chain_command_block", - "unlocalizedName": "tile.chainCommandBlock", - "localizedName": "Chain Command Block", - "states": { - "conditional": { - "values": [ - "true", - "false" - ] - }, - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": -1.0, - "resistance": 1.8E7, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 212, - "id": "minecraft:frosted_ice", - "unlocalizedName": "tile.frostedIce", - "localizedName": "Frosted Ice", - "states": { - "age": { - "values": [ - "0", - "1", - "2", - "3" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 3, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.98, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": false, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": true, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 213, - "id": "minecraft:magma", - "unlocalizedName": "tile.magma", - "localizedName": "Magma Block", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 3, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": true, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 214, - "id": "minecraft:nether_wart_block", - "unlocalizedName": "tile.netherWartBlock", - "localizedName": "Nether Wart Block", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.0, - "resistance": 5.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 215, - "id": "minecraft:red_nether_brick", - "unlocalizedName": "tile.redNetherBrick", - "localizedName": "Red Nether Brick", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 30.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 216, - "id": "minecraft:bone_block", - "unlocalizedName": "tile.boneBlock", - "localizedName": "Bone Block", - "states": { - "axis": { - "values": [ - "x", - "y", - "z" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 217, - "id": "minecraft:structure_void", - "unlocalizedName": "tile.structureVoid", - "localizedName": "Structure Void", - "states": {}, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 0.0, - "resistance": 0.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, + "liquid": true, "solid": false, "movementBlocker": false, "burnable": false, "opaque": false, "replacedDuringPlacement": true, "toolRequired": false, - "fragileWhenPushed": false, + "fragileWhenPushed": true, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false + "mapColor": "#4040ff", + "isTranslucent": true, + "hasContainer": false } }, { - "legacyId": 218, - "id": "minecraft:observer", - "unlocalizedName": "tile.observer", - "localizedName": "Observer", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - }, - "powered": { - "values": [ - "true", - "false" - ] - } - }, + "id": "minecraft:wet_sponge", + "localizedName": "Wet Sponge", "material": { - "powerSource": true, - "lightOpacity": 255, + "powerSource": false, "lightValue": 0, - "usingNeighborLight": false, - "hardness": 3.0, - "resistance": 15.0, + "hardness": 0.6, + "resistance": 0.6, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 219, - "id": "minecraft:white_shulker_box", - "unlocalizedName": "tile.shulkerBoxWhite", - "localizedName": "White Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 220, - "id": "minecraft:orange_shulker_box", - "unlocalizedName": "tile.shulkerBoxOrange", - "localizedName": "Orange Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 221, - "id": "minecraft:magenta_shulker_box", - "unlocalizedName": "tile.shulkerBoxMagenta", - "localizedName": "Magenta Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 222, - "id": "minecraft:light_blue_shulker_box", - "unlocalizedName": "tile.shulkerBoxLightBlue", - "localizedName": "Light Blue Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 223, - "id": "minecraft:yellow_shulker_box", - "unlocalizedName": "tile.shulkerBoxYellow", - "localizedName": "Yellow Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 224, - "id": "minecraft:lime_shulker_box", - "unlocalizedName": "tile.shulkerBoxLime", - "localizedName": "Lime Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 225, - "id": "minecraft:pink_shulker_box", - "unlocalizedName": "tile.shulkerBoxPink", - "localizedName": "Pink Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 226, - "id": "minecraft:gray_shulker_box", - "unlocalizedName": "tile.shulkerBoxGray", - "localizedName": "Gray Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 227, - "id": "minecraft:silver_shulker_box", - "unlocalizedName": "tile.shulkerBoxSilver", - "localizedName": "Light Gray Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 228, - "id": "minecraft:cyan_shulker_box", - "unlocalizedName": "tile.shulkerBoxCyan", - "localizedName": "Cyan Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 229, - "id": "minecraft:purple_shulker_box", - "unlocalizedName": "tile.shulkerBoxPurple", - "localizedName": "Purple Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 230, - "id": "minecraft:blue_shulker_box", - "unlocalizedName": "tile.shulkerBoxBlue", - "localizedName": "Blue Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 231, - "id": "minecraft:brown_shulker_box", - "unlocalizedName": "tile.shulkerBoxBrown", - "localizedName": "Brown Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 232, - "id": "minecraft:green_shulker_box", - "unlocalizedName": "tile.shulkerBoxGreen", - "localizedName": "Green Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 233, - "id": "minecraft:red_shulker_box", - "unlocalizedName": "tile.shulkerBoxRed", - "localizedName": "Red Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 234, - "id": "minecraft:black_shulker_box", - "unlocalizedName": "tile.shulkerBoxBlack", - "localizedName": "Black Shulker Box", - "states": { - "facing": { - "values": [ - "down", - "up", - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 0, - "lightValue": 0, - "usingNeighborLight": true, - "hardness": 2.0, - "resistance": 10.0, - "ticksRandomly": false, - "fullCube": false, - "slipperiness": 0.6, - "renderedAsNormalBlock": false, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 1.0, - "grassBlocking": false - } - }, - { - "legacyId": 235, - "id": "minecraft:white_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaWhite", - "localizedName": "White Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 236, - "id": "minecraft:orange_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaOrange", - "localizedName": "Orange Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 237, - "id": "minecraft:magenta_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaMagenta", - "localizedName": "Magenta Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 238, - "id": "minecraft:light_blue_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaLightBlue", - "localizedName": "Light Blue Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 239, - "id": "minecraft:yellow_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaYellow", - "localizedName": "Yellow Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 240, - "id": "minecraft:lime_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaLime", - "localizedName": "Lime Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 241, - "id": "minecraft:pink_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaPink", - "localizedName": "Pink Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 242, - "id": "minecraft:gray_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaGray", - "localizedName": "Gray Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 243, - "id": "minecraft:silver_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaSilver", - "localizedName": "Light Gray Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 244, - "id": "minecraft:cyan_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaCyan", - "localizedName": "Cyan Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 245, - "id": "minecraft:purple_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaPurple", - "localizedName": "Purple Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 246, - "id": "minecraft:blue_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBlue", - "localizedName": "Blue Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 247, - "id": "minecraft:brown_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBrown", - "localizedName": "Brown Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 248, - "id": "minecraft:green_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaGreen", - "localizedName": "Green Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 249, - "id": "minecraft:red_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaRed", - "localizedName": "Red Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 250, - "id": "minecraft:black_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBlack", - "localizedName": "Black Glazed Terracotta", - "states": { - "facing": { - "values": [ - "north", - "south", - "west", - "east" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.4, - "resistance": 7.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 251, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete", - "localizedName": "tile.concrete.name", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 1.8, - "resistance": 9.0, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, - "liquid": false, - "solid": true, - "movementBlocker": true, - "burnable": false, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": true, - "fragileWhenPushed": false, - "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false - } - }, - { - "legacyId": 252, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder", - "localizedName": "tile.concretePowder.name", - "states": { - "color": { - "values": [ - "white", - "orange", - "magenta", - "light_blue", - "yellow", - "lime", - "pink", - "gray", - "silver", - "cyan", - "purple", - "blue", - "brown", - "green", - "red", - "black" - ] - } - }, - "material": { - "powerSource": false, - "lightOpacity": 255, - "lightValue": 0, - "usingNeighborLight": false, - "hardness": 0.5, - "resistance": 2.5, - "ticksRandomly": false, - "fullCube": true, - "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -11158,37 +14069,122 @@ "toolRequired": false, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#e5e533", + "isTranslucent": false, + "hasContainer": false } }, { - "legacyId": 255, - "id": "minecraft:structure_block", - "unlocalizedName": "tile.structureBlock", - "localizedName": "Structure Block", - "states": { - "mode": { - "values": [ - "save", - "load", - "corner", - "data" - ] - } - }, + "id": "minecraft:wheat", + "localizedName": "Wheat Crops", "material": { "powerSource": false, - "lightOpacity": 255, "lightValue": 0, - "usingNeighborLight": false, - "hardness": -1.0, - "resistance": 1.8E7, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": true, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_banner", + "localizedName": "White Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:white_bed", + "localizedName": "White Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_carpet", + "localizedName": "White Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_concrete", + "localizedName": "White Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, "ticksRandomly": false, "fullCube": true, "slipperiness": 0.6, - "renderedAsNormalBlock": true, "liquid": false, "solid": true, "movementBlocker": true, @@ -11198,9 +14194,634 @@ "toolRequired": true, "fragileWhenPushed": false, "unpushable": false, - "adventureModeExempt": false, - "ambientOcclusionLightValue": 0.2, - "grassBlocking": false + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_concrete_powder", + "localizedName": "White Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_glazed_terracotta", + "localizedName": "White Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_shulker_box", + "localizedName": "White Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:white_stained_glass", + "localizedName": "White Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_stained_glass_pane", + "localizedName": "White Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_terracotta", + "localizedName": "White Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_tulip", + "localizedName": "White Tulip", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.0, + "resistance": 0.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#007c00", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:white_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:white_wool", + "localizedName": "White Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:wither_skeleton_skull", + "localizedName": "Wither Skeleton Skull", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:wither_skeleton_wall_skull", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:yellow_banner", + "localizedName": "Yellow Banner", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:yellow_bed", + "localizedName": "Yellow Bed", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.2, + "resistance": 0.2, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_carpet", + "localizedName": "Yellow Carpet", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.1, + "resistance": 0.1, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": true, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_concrete", + "localizedName": "Yellow Concrete", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.8, + "resistance": 1.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_concrete_powder", + "localizedName": "Yellow Concrete Powder", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.5, + "resistance": 0.5, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#f7e9a3", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_glazed_terracotta", + "localizedName": "Yellow Glazed Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.4, + "resistance": 1.4, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_shulker_box", + "localizedName": "Yellow Shulker Box", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 2.0, + "resistance": 2.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": true, + "hasContainer": true + } + }, + { + "id": "minecraft:yellow_stained_glass", + "localizedName": "Yellow Stained Glass", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "localizedName": "Yellow Stained Glass Pane", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.3, + "resistance": 0.3, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_terracotta", + "localizedName": "Yellow Terracotta", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.25, + "resistance": 4.2, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": false, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": true, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#707070", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:yellow_wall_banner", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#8f7748", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:yellow_wool", + "localizedName": "Yellow Wool", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 0.8, + "resistance": 0.8, + "ticksRandomly": false, + "fullCube": true, + "slipperiness": 0.6, + "liquid": false, + "solid": true, + "movementBlocker": true, + "burnable": true, + "opaque": true, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": false, + "unpushable": false, + "mapColor": "#c7c7c7", + "isTranslucent": false, + "hasContainer": false + } + }, + { + "id": "minecraft:zombie_head", + "localizedName": "Zombie Head", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true + } + }, + { + "id": "minecraft:zombie_wall_head", + "localizedName": "Air", + "material": { + "powerSource": false, + "lightValue": 0, + "hardness": 1.0, + "resistance": 1.0, + "ticksRandomly": false, + "fullCube": false, + "slipperiness": 0.6, + "liquid": false, + "solid": false, + "movementBlocker": false, + "burnable": false, + "opaque": false, + "replacedDuringPlacement": false, + "toolRequired": false, + "fragileWhenPushed": true, + "unpushable": false, + "mapColor": "#000000", + "isTranslucent": false, + "hasContainer": true } } ] \ No newline at end of file diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.json index f1b94a1cc..c9eeb23b8 100644 --- a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.json +++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.json @@ -1,5798 +1,3142 @@ [ { - "legacyId": 0, - "legacyData": 0, - "id": "minecraft:air", - "unlocalizedName": "tile.air", - "localizedName": "Air", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 0, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.stone", - "localizedName": "Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 1, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.granite", - "localizedName": "Granite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 2, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.graniteSmooth", - "localizedName": "Polished Granite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 3, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.diorite", - "localizedName": "Diorite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 4, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.dioriteSmooth", - "localizedName": "Polished Diorite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 5, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.andesite", - "localizedName": "Andesite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 1, - "legacyData": 6, - "id": "minecraft:stone", - "unlocalizedName": "tile.stone.andesiteSmooth", - "localizedName": "Polished Andesite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 2, - "legacyData": 0, - "id": "minecraft:grass", - "unlocalizedName": "tile.grass", - "localizedName": "Grass Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 3, - "legacyData": 0, - "id": "minecraft:dirt", - "unlocalizedName": "tile.dirt.default", - "localizedName": "Dirt", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 3, - "legacyData": 1, - "id": "minecraft:dirt", - "unlocalizedName": "tile.dirt.coarse", - "localizedName": "Coarse Dirt", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 3, - "legacyData": 2, - "id": "minecraft:dirt", - "unlocalizedName": "tile.dirt.podzol", - "localizedName": "Podzol", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 4, - "legacyData": 0, - "id": "minecraft:cobblestone", - "unlocalizedName": "tile.stonebrick", - "localizedName": "Cobblestone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 0, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.oak", - "localizedName": "Oak Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 1, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.spruce", - "localizedName": "Spruce Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 2, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.birch", - "localizedName": "Birch Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 3, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.jungle", - "localizedName": "Jungle Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 4, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.acacia", - "localizedName": "Acacia Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 5, - "legacyData": 5, - "id": "minecraft:planks", - "unlocalizedName": "tile.wood.big_oak", - "localizedName": "Dark Oak Wood Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 0, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.oak", - "localizedName": "Oak Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 1, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.spruce", - "localizedName": "Spruce Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 2, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.birch", - "localizedName": "Birch Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 3, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.jungle", - "localizedName": "Jungle Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 4, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.acacia", - "localizedName": "Acacia Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 6, - "legacyData": 5, - "id": "minecraft:sapling", - "unlocalizedName": "tile.sapling.big_oak", - "localizedName": "Dark Oak Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 7, - "legacyData": 0, - "id": "minecraft:bedrock", - "unlocalizedName": "tile.bedrock", - "localizedName": "Bedrock", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 12, - "legacyData": 0, - "id": "minecraft:sand", - "unlocalizedName": "tile.sand.default", - "localizedName": "Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 12, - "legacyData": 1, - "id": "minecraft:sand", - "unlocalizedName": "tile.sand.red", - "localizedName": "Red Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 13, - "legacyData": 0, - "id": "minecraft:gravel", - "unlocalizedName": "tile.gravel", - "localizedName": "Gravel", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 14, - "legacyData": 0, - "id": "minecraft:gold_ore", - "unlocalizedName": "tile.oreGold", - "localizedName": "Gold Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 15, - "legacyData": 0, - "id": "minecraft:iron_ore", - "unlocalizedName": "tile.oreIron", - "localizedName": "Iron Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 16, - "legacyData": 0, - "id": "minecraft:coal_ore", - "unlocalizedName": "tile.oreCoal", - "localizedName": "Coal Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 17, - "legacyData": 0, - "id": "minecraft:log", - "unlocalizedName": "tile.log.oak", - "localizedName": "Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 17, - "legacyData": 1, - "id": "minecraft:log", - "unlocalizedName": "tile.log.spruce", - "localizedName": "Spruce Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 17, - "legacyData": 2, - "id": "minecraft:log", - "unlocalizedName": "tile.log.birch", - "localizedName": "Birch Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 17, - "legacyData": 3, - "id": "minecraft:log", - "unlocalizedName": "tile.log.jungle", - "localizedName": "Jungle Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 18, - "legacyData": 0, - "id": "minecraft:leaves", - "unlocalizedName": "tile.leaves.oak", - "localizedName": "Oak Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 18, - "legacyData": 1, - "id": "minecraft:leaves", - "unlocalizedName": "tile.leaves.spruce", - "localizedName": "Spruce Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 18, - "legacyData": 2, - "id": "minecraft:leaves", - "unlocalizedName": "tile.leaves.birch", - "localizedName": "Birch Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 18, - "legacyData": 3, - "id": "minecraft:leaves", - "unlocalizedName": "tile.leaves.jungle", - "localizedName": "Jungle Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 19, - "legacyData": 0, - "id": "minecraft:sponge", - "unlocalizedName": "tile.sponge.dry", - "localizedName": "Sponge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 19, - "legacyData": 1, - "id": "minecraft:sponge", - "unlocalizedName": "tile.sponge.wet", - "localizedName": "Wet Sponge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 20, - "legacyData": 0, - "id": "minecraft:glass", - "unlocalizedName": "tile.glass", - "localizedName": "Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 21, - "legacyData": 0, - "id": "minecraft:lapis_ore", - "unlocalizedName": "tile.oreLapis", - "localizedName": "Lapis Lazuli Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 22, - "legacyData": 0, - "id": "minecraft:lapis_block", - "unlocalizedName": "tile.blockLapis", - "localizedName": "Lapis Lazuli Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 23, - "legacyData": 0, - "id": "minecraft:dispenser", - "unlocalizedName": "tile.dispenser", - "localizedName": "Dispenser", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 24, - "legacyData": 0, - "id": "minecraft:sandstone", - "unlocalizedName": "tile.sandStone.default", - "localizedName": "Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 24, - "legacyData": 1, - "id": "minecraft:sandstone", - "unlocalizedName": "tile.sandStone.chiseled", - "localizedName": "Chiseled Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 24, - "legacyData": 2, - "id": "minecraft:sandstone", - "unlocalizedName": "tile.sandStone.smooth", - "localizedName": "Smooth Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 25, - "legacyData": 0, - "id": "minecraft:noteblock", - "unlocalizedName": "tile.musicBlock", - "localizedName": "Note Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 27, - "legacyData": 0, - "id": "minecraft:golden_rail", - "unlocalizedName": "tile.goldenRail", - "localizedName": "Powered Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 28, - "legacyData": 0, - "id": "minecraft:detector_rail", - "unlocalizedName": "tile.detectorRail", - "localizedName": "Detector Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 29, - "legacyData": 0, - "id": "minecraft:sticky_piston", - "unlocalizedName": "tile.pistonStickyBase", - "localizedName": "Sticky Piston", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 30, - "legacyData": 0, - "id": "minecraft:web", - "unlocalizedName": "tile.web", - "localizedName": "Cobweb", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 31, - "legacyData": 1, - "id": "minecraft:tallgrass", - "unlocalizedName": "tile.tallgrass.grass", - "localizedName": "Grass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 31, - "legacyData": 2, - "id": "minecraft:tallgrass", - "unlocalizedName": "tile.tallgrass.fern", - "localizedName": "Fern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 32, - "legacyData": 0, - "id": "minecraft:deadbush", - "unlocalizedName": "tile.deadbush", - "localizedName": "Dead Bush", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 33, - "legacyData": 0, - "id": "minecraft:piston", - "unlocalizedName": "tile.pistonBase", - "localizedName": "Piston", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 0, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.white", - "localizedName": "White Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 1, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.orange", - "localizedName": "Orange Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 2, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.magenta", - "localizedName": "Magenta Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 3, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.lightBlue", - "localizedName": "Light Blue Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 4, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.yellow", - "localizedName": "Yellow Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 5, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.lime", - "localizedName": "Lime Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 6, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.pink", - "localizedName": "Pink Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 7, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.gray", - "localizedName": "Gray Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 8, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.silver", - "localizedName": "Light Gray Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 9, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.cyan", - "localizedName": "Cyan Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 10, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.purple", - "localizedName": "Purple Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 11, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.blue", - "localizedName": "Blue Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 12, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.brown", - "localizedName": "Brown Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 13, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.green", - "localizedName": "Green Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 14, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.red", - "localizedName": "Red Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 35, - "legacyData": 15, - "id": "minecraft:wool", - "unlocalizedName": "tile.cloth.black", - "localizedName": "Black Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 37, - "legacyData": 0, - "id": "minecraft:yellow_flower", - "unlocalizedName": "tile.flower1.dandelion", - "localizedName": "Dandelion", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 0, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.poppy", - "localizedName": "Poppy", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 1, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.blueOrchid", - "localizedName": "Blue Orchid", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 2, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.allium", - "localizedName": "Allium", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 3, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.houstonia", - "localizedName": "Azure Bluet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 4, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.tulipRed", - "localizedName": "Red Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 5, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.tulipOrange", - "localizedName": "Orange Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 6, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.tulipWhite", - "localizedName": "White Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 7, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.tulipPink", - "localizedName": "Pink Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 38, - "legacyData": 8, - "id": "minecraft:red_flower", - "unlocalizedName": "tile.flower2.oxeyeDaisy", - "localizedName": "Oxeye Daisy", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 39, - "legacyData": 0, - "id": "minecraft:brown_mushroom", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 40, - "legacyData": 0, - "id": "minecraft:red_mushroom", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 41, - "legacyData": 0, - "id": "minecraft:gold_block", - "unlocalizedName": "tile.blockGold", - "localizedName": "Block of Gold", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 42, - "legacyData": 0, - "id": "minecraft:iron_block", - "unlocalizedName": "tile.blockIron", - "localizedName": "Block of Iron", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 0, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.stone", - "localizedName": "Stone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 1, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.sand", - "localizedName": "Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 3, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.cobble", - "localizedName": "Cobblestone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 4, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.brick", - "localizedName": "Bricks Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 5, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.smoothStoneBrick", - "localizedName": "Stone Bricks Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 6, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.netherBrick", - "localizedName": "Nether Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 44, - "legacyData": 7, - "id": "minecraft:stone_slab", - "unlocalizedName": "tile.stoneSlab.quartz", - "localizedName": "Quartz Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 45, - "legacyData": 0, - "id": "minecraft:brick_block", - "unlocalizedName": "tile.brick", - "localizedName": "Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 46, - "legacyData": 0, - "id": "minecraft:tnt", - "unlocalizedName": "tile.tnt", - "localizedName": "TNT", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 47, - "legacyData": 0, - "id": "minecraft:bookshelf", - "unlocalizedName": "tile.bookshelf", - "localizedName": "Bookshelf", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 48, - "legacyData": 0, - "id": "minecraft:mossy_cobblestone", - "unlocalizedName": "tile.stoneMoss", - "localizedName": "Moss Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 49, - "legacyData": 0, - "id": "minecraft:obsidian", - "unlocalizedName": "tile.obsidian", - "localizedName": "Obsidian", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 50, - "legacyData": 0, - "id": "minecraft:torch", - "unlocalizedName": "tile.torch", - "localizedName": "Torch", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 52, - "legacyData": 0, - "id": "minecraft:mob_spawner", - "unlocalizedName": "tile.mobSpawner", - "localizedName": "Monster Spawner", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 53, - "legacyData": 0, - "id": "minecraft:oak_stairs", - "unlocalizedName": "tile.stairsWood", - "localizedName": "Oak Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 54, - "legacyData": 0, - "id": "minecraft:chest", - "unlocalizedName": "tile.chest", - "localizedName": "Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 56, - "legacyData": 0, - "id": "minecraft:diamond_ore", - "unlocalizedName": "tile.oreDiamond", - "localizedName": "Diamond Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 57, - "legacyData": 0, - "id": "minecraft:diamond_block", - "unlocalizedName": "tile.blockDiamond", - "localizedName": "Block of Diamond", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 58, - "legacyData": 0, - "id": "minecraft:crafting_table", - "unlocalizedName": "tile.workbench", - "localizedName": "Crafting Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 60, - "legacyData": 0, - "id": "minecraft:farmland", - "unlocalizedName": "tile.farmland", - "localizedName": "Farmland", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 61, - "legacyData": 0, - "id": "minecraft:furnace", - "unlocalizedName": "tile.furnace", - "localizedName": "Furnace", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 65, - "legacyData": 0, - "id": "minecraft:ladder", - "unlocalizedName": "tile.ladder", - "localizedName": "Ladder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 66, - "legacyData": 0, - "id": "minecraft:rail", - "unlocalizedName": "tile.rail", - "localizedName": "Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 67, - "legacyData": 0, - "id": "minecraft:stone_stairs", - "unlocalizedName": "tile.stairsStone", - "localizedName": "Cobblestone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 69, - "legacyData": 0, - "id": "minecraft:lever", - "unlocalizedName": "tile.lever", - "localizedName": "Lever", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 70, - "legacyData": 0, - "id": "minecraft:stone_pressure_plate", - "unlocalizedName": "tile.pressurePlateStone", - "localizedName": "Stone Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 72, - "legacyData": 0, - "id": "minecraft:wooden_pressure_plate", - "unlocalizedName": "tile.pressurePlateWood", - "localizedName": "Wooden Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 73, - "legacyData": 0, - "id": "minecraft:redstone_ore", - "unlocalizedName": "tile.oreRedstone", - "localizedName": "Redstone Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 76, - "legacyData": 0, - "id": "minecraft:redstone_torch", - "unlocalizedName": "tile.notGate", - "localizedName": "Redstone Torch", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 77, - "legacyData": 0, - "id": "minecraft:stone_button", - "unlocalizedName": "tile.button", - "localizedName": "Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 78, - "legacyData": 0, - "id": "minecraft:snow_layer", - "unlocalizedName": "tile.snow", - "localizedName": "Snow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 79, - "legacyData": 0, - "id": "minecraft:ice", - "unlocalizedName": "tile.ice", - "localizedName": "Ice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 80, - "legacyData": 0, - "id": "minecraft:snow", - "unlocalizedName": "tile.snow", - "localizedName": "Snow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 81, - "legacyData": 0, - "id": "minecraft:cactus", - "unlocalizedName": "tile.cactus", - "localizedName": "Cactus", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 82, - "legacyData": 0, - "id": "minecraft:clay", - "unlocalizedName": "tile.clay", - "localizedName": "Clay", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 84, - "legacyData": 0, - "id": "minecraft:jukebox", - "unlocalizedName": "tile.jukebox", - "localizedName": "Jukebox", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 85, - "legacyData": 0, - "id": "minecraft:fence", - "unlocalizedName": "tile.fence", - "localizedName": "Oak Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 86, - "legacyData": 0, - "id": "minecraft:pumpkin", - "unlocalizedName": "tile.pumpkin", - "localizedName": "Pumpkin", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 87, - "legacyData": 0, - "id": "minecraft:netherrack", - "unlocalizedName": "tile.hellrock", - "localizedName": "Netherrack", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 88, - "legacyData": 0, - "id": "minecraft:soul_sand", - "unlocalizedName": "tile.hellsand", - "localizedName": "Soul Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 89, - "legacyData": 0, - "id": "minecraft:glowstone", - "unlocalizedName": "tile.lightgem", - "localizedName": "Glowstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 91, - "legacyData": 0, - "id": "minecraft:lit_pumpkin", - "unlocalizedName": "tile.litpumpkin", - "localizedName": "Jack o\u0027Lantern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 0, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.white", - "localizedName": "White Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 1, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.orange", - "localizedName": "Orange Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 2, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.magenta", - "localizedName": "Magenta Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 3, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.lightBlue", - "localizedName": "Light Blue Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 4, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.yellow", - "localizedName": "Yellow Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 5, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.lime", - "localizedName": "Lime Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 6, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.pink", - "localizedName": "Pink Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 7, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.gray", - "localizedName": "Gray Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 8, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.silver", - "localizedName": "Light Gray Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 9, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.cyan", - "localizedName": "Cyan Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 10, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.purple", - "localizedName": "Purple Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 11, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.blue", - "localizedName": "Blue Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 12, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.brown", - "localizedName": "Brown Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 13, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.green", - "localizedName": "Green Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 14, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.red", - "localizedName": "Red Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 95, - "legacyData": 15, - "id": "minecraft:stained_glass", - "unlocalizedName": "tile.stainedGlass.black", - "localizedName": "Black Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 96, - "legacyData": 0, - "id": "minecraft:trapdoor", - "unlocalizedName": "tile.trapdoor", - "localizedName": "Wooden Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 0, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.stone", - "localizedName": "Stone Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 1, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.cobble", - "localizedName": "Cobblestone Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 2, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.brick", - "localizedName": "Stone Brick Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 3, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.mossybrick", - "localizedName": "Mossy Stone Brick Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 4, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.crackedbrick", - "localizedName": "Cracked Stone Brick Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 97, - "legacyData": 5, - "id": "minecraft:monster_egg", - "unlocalizedName": "tile.monsterStoneEgg.chiseledbrick", - "localizedName": "Chiseled Stone Brick Monster Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 98, - "legacyData": 0, - "id": "minecraft:stonebrick", - "unlocalizedName": "tile.stonebricksmooth.default", - "localizedName": "Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 98, - "legacyData": 1, - "id": "minecraft:stonebrick", - "unlocalizedName": "tile.stonebricksmooth.mossy", - "localizedName": "Mossy Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 98, - "legacyData": 2, - "id": "minecraft:stonebrick", - "unlocalizedName": "tile.stonebricksmooth.cracked", - "localizedName": "Cracked Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 98, - "legacyData": 3, - "id": "minecraft:stonebrick", - "unlocalizedName": "tile.stonebricksmooth.chiseled", - "localizedName": "Chiseled Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 99, - "legacyData": 0, - "id": "minecraft:brown_mushroom_block", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 100, - "legacyData": 0, - "id": "minecraft:red_mushroom_block", - "unlocalizedName": "tile.mushroom", - "localizedName": "Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 101, - "legacyData": 0, - "id": "minecraft:iron_bars", - "unlocalizedName": "tile.fenceIron", - "localizedName": "Iron Bars", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 102, - "legacyData": 0, - "id": "minecraft:glass_pane", - "unlocalizedName": "tile.thinGlass", - "localizedName": "Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 103, - "legacyData": 0, - "id": "minecraft:melon_block", - "unlocalizedName": "tile.melon", - "localizedName": "Melon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 106, - "legacyData": 0, - "id": "minecraft:vine", - "unlocalizedName": "tile.vine", - "localizedName": "Vines", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 107, - "legacyData": 0, - "id": "minecraft:fence_gate", - "unlocalizedName": "tile.fenceGate", - "localizedName": "Oak Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 108, - "legacyData": 0, - "id": "minecraft:brick_stairs", - "unlocalizedName": "tile.stairsBrick", - "localizedName": "Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 109, - "legacyData": 0, - "id": "minecraft:stone_brick_stairs", - "unlocalizedName": "tile.stairsStoneBrickSmooth", - "localizedName": "Stone Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 110, - "legacyData": 0, - "id": "minecraft:mycelium", - "unlocalizedName": "tile.mycel", - "localizedName": "Mycelium", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 111, - "legacyData": 0, - "id": "minecraft:waterlily", - "unlocalizedName": "tile.waterlily", - "localizedName": "Lily Pad", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 112, - "legacyData": 0, - "id": "minecraft:nether_brick", - "unlocalizedName": "tile.netherBrick", - "localizedName": "Nether Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 113, - "legacyData": 0, - "id": "minecraft:nether_brick_fence", - "unlocalizedName": "tile.netherFence", - "localizedName": "Nether Brick Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 114, - "legacyData": 0, - "id": "minecraft:nether_brick_stairs", - "unlocalizedName": "tile.stairsNetherBrick", - "localizedName": "Nether Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 116, - "legacyData": 0, - "id": "minecraft:enchanting_table", - "unlocalizedName": "tile.enchantmentTable", - "localizedName": "Enchantment Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 120, - "legacyData": 0, - "id": "minecraft:end_portal_frame", - "unlocalizedName": "tile.endPortalFrame", - "localizedName": "End Portal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 121, - "legacyData": 0, - "id": "minecraft:end_stone", - "unlocalizedName": "tile.whiteStone", - "localizedName": "End Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 122, - "legacyData": 0, - "id": "minecraft:dragon_egg", - "unlocalizedName": "tile.dragonEgg", - "localizedName": "Dragon Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 123, - "legacyData": 0, - "id": "minecraft:redstone_lamp", - "unlocalizedName": "tile.redstoneLight", - "localizedName": "Redstone Lamp", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 0, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.oak", - "localizedName": "Oak Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 1, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.spruce", - "localizedName": "Spruce Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 2, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.birch", - "localizedName": "Birch Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 3, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.jungle", - "localizedName": "Jungle Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 4, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.acacia", - "localizedName": "Acacia Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 126, - "legacyData": 5, - "id": "minecraft:wooden_slab", - "unlocalizedName": "tile.woodSlab.big_oak", - "localizedName": "Dark Oak Wood Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 128, - "legacyData": 0, - "id": "minecraft:sandstone_stairs", - "unlocalizedName": "tile.stairsSandStone", - "localizedName": "Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 129, - "legacyData": 0, - "id": "minecraft:emerald_ore", - "unlocalizedName": "tile.oreEmerald", - "localizedName": "Emerald Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 130, - "legacyData": 0, - "id": "minecraft:ender_chest", - "unlocalizedName": "tile.enderChest", - "localizedName": "Ender Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 131, - "legacyData": 0, - "id": "minecraft:tripwire_hook", - "unlocalizedName": "tile.tripWireSource", - "localizedName": "Tripwire Hook", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 133, - "legacyData": 0, - "id": "minecraft:emerald_block", - "unlocalizedName": "tile.blockEmerald", - "localizedName": "Block of Emerald", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 134, - "legacyData": 0, - "id": "minecraft:spruce_stairs", - "unlocalizedName": "tile.stairsWoodSpruce", - "localizedName": "Spruce Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 135, - "legacyData": 0, - "id": "minecraft:birch_stairs", - "unlocalizedName": "tile.stairsWoodBirch", - "localizedName": "Birch Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 136, - "legacyData": 0, - "id": "minecraft:jungle_stairs", - "unlocalizedName": "tile.stairsWoodJungle", - "localizedName": "Jungle Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 137, - "legacyData": 0, - "id": "minecraft:command_block", - "unlocalizedName": "tile.commandBlock", - "localizedName": "Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 138, - "legacyData": 0, - "id": "minecraft:beacon", - "unlocalizedName": "tile.beacon", - "localizedName": "Beacon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 139, - "legacyData": 0, - "id": "minecraft:cobblestone_wall", - "unlocalizedName": "tile.cobbleWall.normal", - "localizedName": "Cobblestone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 139, - "legacyData": 1, - "id": "minecraft:cobblestone_wall", - "unlocalizedName": "tile.cobbleWall.mossy", - "localizedName": "Mossy Cobblestone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 143, - "legacyData": 0, - "id": "minecraft:wooden_button", - "unlocalizedName": "tile.button", - "localizedName": "Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 145, - "legacyData": 0, - "id": "minecraft:anvil", - "unlocalizedName": "tile.anvil.intact", - "localizedName": "Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 145, - "legacyData": 1, - "id": "minecraft:anvil", - "unlocalizedName": "tile.anvil.slightlyDamaged", - "localizedName": "Slightly Damaged Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 145, - "legacyData": 2, - "id": "minecraft:anvil", - "unlocalizedName": "tile.anvil.veryDamaged", - "localizedName": "Very Damaged Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 146, - "legacyData": 0, - "id": "minecraft:trapped_chest", - "unlocalizedName": "tile.chestTrap", - "localizedName": "Trapped Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 147, - "legacyData": 0, - "id": "minecraft:light_weighted_pressure_plate", - "unlocalizedName": "tile.weightedPlate_light", - "localizedName": "Weighted Pressure Plate (Light)", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 148, - "legacyData": 0, - "id": "minecraft:heavy_weighted_pressure_plate", - "unlocalizedName": "tile.weightedPlate_heavy", - "localizedName": "Weighted Pressure Plate (Heavy)", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 151, - "legacyData": 0, - "id": "minecraft:daylight_detector", - "unlocalizedName": "tile.daylightDetector", - "localizedName": "Daylight Sensor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 152, - "legacyData": 0, - "id": "minecraft:redstone_block", - "unlocalizedName": "tile.blockRedstone", - "localizedName": "Block of Redstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 153, - "legacyData": 0, - "id": "minecraft:quartz_ore", - "unlocalizedName": "tile.netherquartz", - "localizedName": "Nether Quartz Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 154, - "legacyData": 0, - "id": "minecraft:hopper", - "unlocalizedName": "tile.hopper", - "localizedName": "Hopper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 155, - "legacyData": 0, - "id": "minecraft:quartz_block", - "unlocalizedName": "tile.quartzBlock.default", - "localizedName": "Block of Quartz", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 155, - "legacyData": 1, - "id": "minecraft:quartz_block", - "unlocalizedName": "tile.quartzBlock.chiseled", - "localizedName": "Chiseled Quartz Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 155, - "legacyData": 2, - "id": "minecraft:quartz_block", - "unlocalizedName": "tile.quartzBlock.lines", - "localizedName": "Pillar Quartz Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 156, - "legacyData": 0, - "id": "minecraft:quartz_stairs", - "unlocalizedName": "tile.stairsQuartz", - "localizedName": "Quartz Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 157, - "legacyData": 0, - "id": "minecraft:activator_rail", - "unlocalizedName": "tile.activatorRail", - "localizedName": "Activator Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 158, - "legacyData": 0, - "id": "minecraft:dropper", - "unlocalizedName": "tile.dropper", - "localizedName": "Dropper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 0, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.white", - "localizedName": "White Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 1, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.orange", - "localizedName": "Orange Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 2, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.magenta", - "localizedName": "Magenta Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 3, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.lightBlue", - "localizedName": "Light Blue Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 4, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.yellow", - "localizedName": "Yellow Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 5, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.lime", - "localizedName": "Lime Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 6, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.pink", - "localizedName": "Pink Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 7, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.gray", - "localizedName": "Gray Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 8, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.silver", - "localizedName": "Light Gray Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 9, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.cyan", - "localizedName": "Cyan Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 10, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.purple", - "localizedName": "Purple Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 11, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.blue", - "localizedName": "Blue Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 12, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.brown", - "localizedName": "Brown Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 13, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.green", - "localizedName": "Green Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 14, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.red", - "localizedName": "Red Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 159, - "legacyData": 15, - "id": "minecraft:stained_hardened_clay", - "unlocalizedName": "tile.clayHardenedStained.black", - "localizedName": "Black Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 0, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.white", - "localizedName": "White Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 1, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.orange", - "localizedName": "Orange Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 2, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.magenta", - "localizedName": "Magenta Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 3, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.lightBlue", - "localizedName": "Light Blue Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 4, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.yellow", - "localizedName": "Yellow Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 5, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.lime", - "localizedName": "Lime Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 6, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.pink", - "localizedName": "Pink Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 7, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.gray", - "localizedName": "Gray Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 8, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.silver", - "localizedName": "Light Gray Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 9, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.cyan", - "localizedName": "Cyan Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 10, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.purple", - "localizedName": "Purple Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 11, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.blue", - "localizedName": "Blue Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 12, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.brown", - "localizedName": "Brown Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 13, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.green", - "localizedName": "Green Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 14, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.red", - "localizedName": "Red Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 160, - "legacyData": 15, - "id": "minecraft:stained_glass_pane", - "unlocalizedName": "tile.thinStainedGlass.black", - "localizedName": "Black Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 161, - "legacyData": 0, - "id": "minecraft:leaves2", - "unlocalizedName": "tile.leaves.acacia", - "localizedName": "Acacia Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 161, - "legacyData": 1, - "id": "minecraft:leaves2", - "unlocalizedName": "tile.leaves.big_oak", - "localizedName": "Dark Oak Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 162, - "legacyData": 0, - "id": "minecraft:log2", - "unlocalizedName": "tile.log.acacia", - "localizedName": "Acacia Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 162, - "legacyData": 1, - "id": "minecraft:log2", - "unlocalizedName": "tile.log.big_oak", - "localizedName": "Dark Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 163, - "legacyData": 0, - "id": "minecraft:acacia_stairs", - "unlocalizedName": "tile.stairsWoodAcacia", - "localizedName": "Acacia Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 164, - "legacyData": 0, - "id": "minecraft:dark_oak_stairs", - "unlocalizedName": "tile.stairsWoodDarkOak", - "localizedName": "Dark Oak Wood Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 165, - "legacyData": 0, - "id": "minecraft:slime", - "unlocalizedName": "tile.slime", - "localizedName": "Slime Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 166, - "legacyData": 0, - "id": "minecraft:barrier", - "unlocalizedName": "tile.barrier", - "localizedName": "Barrier", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 167, - "legacyData": 0, - "id": "minecraft:iron_trapdoor", - "unlocalizedName": "tile.ironTrapdoor", - "localizedName": "Iron Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 168, - "legacyData": 0, - "id": "minecraft:prismarine", - "unlocalizedName": "tile.prismarine.rough", - "localizedName": "Prismarine", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 168, - "legacyData": 1, - "id": "minecraft:prismarine", - "unlocalizedName": "tile.prismarine.bricks", - "localizedName": "Prismarine Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 168, - "legacyData": 2, - "id": "minecraft:prismarine", - "unlocalizedName": "tile.prismarine.dark", - "localizedName": "Dark Prismarine", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 169, - "legacyData": 0, - "id": "minecraft:sea_lantern", - "unlocalizedName": "tile.seaLantern", - "localizedName": "Sea Lantern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 170, - "legacyData": 0, - "id": "minecraft:hay_block", - "unlocalizedName": "tile.hayBlock", - "localizedName": "Hay Bale", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 0, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.white", - "localizedName": "White Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 1, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.orange", - "localizedName": "Orange Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 2, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.magenta", - "localizedName": "Magenta Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 3, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.lightBlue", - "localizedName": "Light Blue Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 4, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.yellow", - "localizedName": "Yellow Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 5, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.lime", - "localizedName": "Lime Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 6, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.pink", - "localizedName": "Pink Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 7, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.gray", - "localizedName": "Gray Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 8, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.silver", - "localizedName": "Light Gray Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 9, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.cyan", - "localizedName": "Cyan Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 10, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.purple", - "localizedName": "Purple Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 11, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.blue", - "localizedName": "Blue Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 12, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.brown", - "localizedName": "Brown Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 13, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.green", - "localizedName": "Green Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 14, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.red", - "localizedName": "Red Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 171, - "legacyData": 15, - "id": "minecraft:carpet", - "unlocalizedName": "tile.woolCarpet.black", - "localizedName": "Black Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 172, - "legacyData": 0, - "id": "minecraft:hardened_clay", - "unlocalizedName": "tile.clayHardened", - "localizedName": "Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 173, - "legacyData": 0, - "id": "minecraft:coal_block", - "unlocalizedName": "tile.blockCoal", - "localizedName": "Block of Coal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 174, - "legacyData": 0, - "id": "minecraft:packed_ice", - "unlocalizedName": "tile.icePacked", - "localizedName": "Packed Ice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 0, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.sunflower", - "localizedName": "Sunflower", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 1, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.syringa", - "localizedName": "Lilac", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 2, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.grass", - "localizedName": "Double Tallgrass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 3, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.fern", - "localizedName": "Large Fern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 4, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.rose", - "localizedName": "Rose Bush", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 175, - "legacyData": 5, - "id": "minecraft:double_plant", - "unlocalizedName": "tile.doublePlant.paeonia", - "localizedName": "Peony", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 179, - "legacyData": 0, - "id": "minecraft:red_sandstone", - "unlocalizedName": "tile.redSandStone.default", - "localizedName": "Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 179, - "legacyData": 1, - "id": "minecraft:red_sandstone", - "unlocalizedName": "tile.redSandStone.chiseled", - "localizedName": "Chiseled Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 179, - "legacyData": 2, - "id": "minecraft:red_sandstone", - "unlocalizedName": "tile.redSandStone.smooth", - "localizedName": "Smooth Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 180, - "legacyData": 0, - "id": "minecraft:red_sandstone_stairs", - "unlocalizedName": "tile.stairsRedSandStone", - "localizedName": "Red Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 182, - "legacyData": 0, - "id": "minecraft:stone_slab2", - "unlocalizedName": "tile.stoneSlab2.red_sandstone", - "localizedName": "Red Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 183, - "legacyData": 0, - "id": "minecraft:spruce_fence_gate", - "unlocalizedName": "tile.spruceFenceGate", - "localizedName": "Spruce Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 184, - "legacyData": 0, - "id": "minecraft:birch_fence_gate", - "unlocalizedName": "tile.birchFenceGate", - "localizedName": "Birch Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 185, - "legacyData": 0, - "id": "minecraft:jungle_fence_gate", - "unlocalizedName": "tile.jungleFenceGate", - "localizedName": "Jungle Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 186, - "legacyData": 0, - "id": "minecraft:dark_oak_fence_gate", - "unlocalizedName": "tile.darkOakFenceGate", - "localizedName": "Dark Oak Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 187, - "legacyData": 0, - "id": "minecraft:acacia_fence_gate", - "unlocalizedName": "tile.acaciaFenceGate", - "localizedName": "Acacia Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 188, - "legacyData": 0, - "id": "minecraft:spruce_fence", - "unlocalizedName": "tile.spruceFence", - "localizedName": "Spruce Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 189, - "legacyData": 0, - "id": "minecraft:birch_fence", - "unlocalizedName": "tile.birchFence", - "localizedName": "Birch Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 190, - "legacyData": 0, - "id": "minecraft:jungle_fence", - "unlocalizedName": "tile.jungleFence", - "localizedName": "Jungle Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 191, - "legacyData": 0, - "id": "minecraft:dark_oak_fence", - "unlocalizedName": "tile.darkOakFence", - "localizedName": "Dark Oak Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 192, - "legacyData": 0, - "id": "minecraft:acacia_fence", - "unlocalizedName": "tile.acaciaFence", - "localizedName": "Acacia Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 198, - "legacyData": 0, - "id": "minecraft:end_rod", - "unlocalizedName": "tile.endRod", - "localizedName": "End Rod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 199, - "legacyData": 0, - "id": "minecraft:chorus_plant", - "unlocalizedName": "tile.chorusPlant", - "localizedName": "Chorus Plant", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 200, - "legacyData": 0, - "id": "minecraft:chorus_flower", - "unlocalizedName": "tile.chorusFlower", - "localizedName": "Chorus Flower", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 201, - "legacyData": 0, - "id": "minecraft:purpur_block", - "unlocalizedName": "tile.purpurBlock", - "localizedName": "Purpur Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 202, - "legacyData": 0, - "id": "minecraft:purpur_pillar", - "unlocalizedName": "tile.purpurPillar", - "localizedName": "Purpur Pillar", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 203, - "legacyData": 0, - "id": "minecraft:purpur_stairs", - "unlocalizedName": "tile.stairsPurpur", - "localizedName": "Purpur Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 205, - "legacyData": 0, - "id": "minecraft:purpur_slab", - "unlocalizedName": "tile.purpurSlab", - "localizedName": "Purpur Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 206, - "legacyData": 0, - "id": "minecraft:end_bricks", - "unlocalizedName": "tile.endBricks", - "localizedName": "End Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 208, - "legacyData": 0, - "id": "minecraft:grass_path", - "unlocalizedName": "tile.grassPath", - "localizedName": "Grass Path", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 210, - "legacyData": 0, - "id": "minecraft:repeating_command_block", - "unlocalizedName": "tile.repeatingCommandBlock", - "localizedName": "Repeating Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 211, - "legacyData": 0, - "id": "minecraft:chain_command_block", - "unlocalizedName": "tile.chainCommandBlock", - "localizedName": "Chain Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 213, - "legacyData": 0, - "id": "minecraft:magma", - "unlocalizedName": "tile.magma", - "localizedName": "Magma Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 214, - "legacyData": 0, - "id": "minecraft:nether_wart_block", - "unlocalizedName": "tile.netherWartBlock", - "localizedName": "Nether Wart Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 215, - "legacyData": 0, - "id": "minecraft:red_nether_brick", - "unlocalizedName": "tile.redNetherBrick", - "localizedName": "Red Nether Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 216, - "legacyData": 0, - "id": "minecraft:bone_block", - "unlocalizedName": "tile.boneBlock", - "localizedName": "Bone Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 217, - "legacyData": 0, - "id": "minecraft:structure_void", - "unlocalizedName": "tile.structureVoid", - "localizedName": "Structure Void", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 218, - "legacyData": 0, - "id": "minecraft:observer", - "unlocalizedName": "tile.observer", - "localizedName": "Observer", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 219, - "legacyData": 0, - "id": "minecraft:white_shulker_box", - "unlocalizedName": "tile.shulkerBoxWhite", - "localizedName": "White Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 220, - "legacyData": 0, - "id": "minecraft:orange_shulker_box", - "unlocalizedName": "tile.shulkerBoxOrange", - "localizedName": "Orange Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 221, - "legacyData": 0, - "id": "minecraft:magenta_shulker_box", - "unlocalizedName": "tile.shulkerBoxMagenta", - "localizedName": "Magenta Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 222, - "legacyData": 0, - "id": "minecraft:light_blue_shulker_box", - "unlocalizedName": "tile.shulkerBoxLightBlue", - "localizedName": "Light Blue Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 223, - "legacyData": 0, - "id": "minecraft:yellow_shulker_box", - "unlocalizedName": "tile.shulkerBoxYellow", - "localizedName": "Yellow Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 224, - "legacyData": 0, - "id": "minecraft:lime_shulker_box", - "unlocalizedName": "tile.shulkerBoxLime", - "localizedName": "Lime Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 225, - "legacyData": 0, - "id": "minecraft:pink_shulker_box", - "unlocalizedName": "tile.shulkerBoxPink", - "localizedName": "Pink Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 226, - "legacyData": 0, - "id": "minecraft:gray_shulker_box", - "unlocalizedName": "tile.shulkerBoxGray", - "localizedName": "Gray Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 227, - "legacyData": 0, - "id": "minecraft:silver_shulker_box", - "unlocalizedName": "tile.shulkerBoxSilver", - "localizedName": "Light Gray Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 228, - "legacyData": 0, - "id": "minecraft:cyan_shulker_box", - "unlocalizedName": "tile.shulkerBoxCyan", - "localizedName": "Cyan Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 229, - "legacyData": 0, - "id": "minecraft:purple_shulker_box", - "unlocalizedName": "tile.shulkerBoxPurple", - "localizedName": "Purple Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 230, - "legacyData": 0, - "id": "minecraft:blue_shulker_box", - "unlocalizedName": "tile.shulkerBoxBlue", - "localizedName": "Blue Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 231, - "legacyData": 0, - "id": "minecraft:brown_shulker_box", - "unlocalizedName": "tile.shulkerBoxBrown", - "localizedName": "Brown Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 232, - "legacyData": 0, - "id": "minecraft:green_shulker_box", - "unlocalizedName": "tile.shulkerBoxGreen", - "localizedName": "Green Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 233, - "legacyData": 0, - "id": "minecraft:red_shulker_box", - "unlocalizedName": "tile.shulkerBoxRed", - "localizedName": "Red Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 234, - "legacyData": 0, - "id": "minecraft:black_shulker_box", - "unlocalizedName": "tile.shulkerBoxBlack", - "localizedName": "Black Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 235, - "legacyData": 0, - "id": "minecraft:white_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaWhite", - "localizedName": "White Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 236, - "legacyData": 0, - "id": "minecraft:orange_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaOrange", - "localizedName": "Orange Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 237, - "legacyData": 0, - "id": "minecraft:magenta_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaMagenta", - "localizedName": "Magenta Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 238, - "legacyData": 0, - "id": "minecraft:light_blue_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaLightBlue", - "localizedName": "Light Blue Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 239, - "legacyData": 0, - "id": "minecraft:yellow_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaYellow", - "localizedName": "Yellow Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 240, - "legacyData": 0, - "id": "minecraft:lime_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaLime", - "localizedName": "Lime Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 241, - "legacyData": 0, - "id": "minecraft:pink_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaPink", - "localizedName": "Pink Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 242, - "legacyData": 0, - "id": "minecraft:gray_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaGray", - "localizedName": "Gray Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 243, - "legacyData": 0, - "id": "minecraft:silver_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaSilver", - "localizedName": "Light Gray Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 244, - "legacyData": 0, - "id": "minecraft:cyan_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaCyan", - "localizedName": "Cyan Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 245, - "legacyData": 0, - "id": "minecraft:purple_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaPurple", - "localizedName": "Purple Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 246, - "legacyData": 0, - "id": "minecraft:blue_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBlue", - "localizedName": "Blue Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 247, - "legacyData": 0, - "id": "minecraft:brown_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBrown", - "localizedName": "Brown Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 248, - "legacyData": 0, - "id": "minecraft:green_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaGreen", - "localizedName": "Green Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 249, - "legacyData": 0, - "id": "minecraft:red_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaRed", - "localizedName": "Red Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 250, - "legacyData": 0, - "id": "minecraft:black_glazed_terracotta", - "unlocalizedName": "tile.glazedTerracottaBlack", - "localizedName": "Black Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 0, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.white", - "localizedName": "White Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 1, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.orange", - "localizedName": "Orange Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 2, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.magenta", - "localizedName": "Magenta Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 3, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.lightBlue", - "localizedName": "Light Blue Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 4, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.yellow", - "localizedName": "Yellow Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 5, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.lime", - "localizedName": "Lime Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 6, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.pink", - "localizedName": "Pink Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 7, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.gray", - "localizedName": "Gray Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 8, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.silver", - "localizedName": "Light Gray Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 9, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.cyan", - "localizedName": "Cyan Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 10, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.purple", - "localizedName": "Purple Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 11, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.blue", - "localizedName": "Blue Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 12, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.brown", - "localizedName": "Brown Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 13, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.green", - "localizedName": "Green Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 14, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.red", - "localizedName": "Red Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 251, - "legacyData": 15, - "id": "minecraft:concrete", - "unlocalizedName": "tile.concrete.black", - "localizedName": "Black Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 0, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.white", - "localizedName": "White Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 1, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.orange", - "localizedName": "Orange Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 2, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.magenta", - "localizedName": "Magenta Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 3, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.lightBlue", - "localizedName": "Light Blue Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 4, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.yellow", - "localizedName": "Yellow Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 5, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.lime", - "localizedName": "Lime Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 6, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.pink", - "localizedName": "Pink Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 7, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.gray", - "localizedName": "Gray Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 8, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.silver", - "localizedName": "Light Gray Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 9, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.cyan", - "localizedName": "Cyan Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 10, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.purple", - "localizedName": "Purple Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 11, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.blue", - "localizedName": "Blue Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 12, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.brown", - "localizedName": "Brown Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 13, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.green", - "localizedName": "Green Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 14, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.red", - "localizedName": "Red Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 252, - "legacyData": 15, - "id": "minecraft:concrete_powder", - "unlocalizedName": "tile.concretePowder.black", - "localizedName": "Black Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 255, - "legacyData": 0, - "id": "minecraft:structure_block", - "unlocalizedName": "tile.structureBlock", - "localizedName": "Structure Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 256, - "legacyData": 0, - "id": "minecraft:iron_shovel", - "unlocalizedName": "item.shovelIron", - "localizedName": "Iron Shovel", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "legacyId": 257, - "legacyData": 0, - "id": "minecraft:iron_pickaxe", - "unlocalizedName": "item.pickaxeIron", - "localizedName": "Iron Pickaxe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "legacyId": 258, - "legacyData": 0, - "id": "minecraft:iron_axe", - "unlocalizedName": "item.hatchetIron", - "localizedName": "Iron Axe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "legacyId": 259, - "legacyData": 0, - "id": "minecraft:flint_and_steel", - "unlocalizedName": "item.flintAndSteel", - "localizedName": "Flint and Steel", - "maxDamage": 64, - "maxStackSize": 1 - }, - { - "legacyId": 260, - "legacyData": 0, - "id": "minecraft:apple", - "unlocalizedName": "item.apple", - "localizedName": "Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 261, - "legacyData": 0, - "id": "minecraft:bow", - "unlocalizedName": "item.bow", - "localizedName": "Bow", - "maxDamage": 384, - "maxStackSize": 1 - }, - { - "legacyId": 262, - "legacyData": 0, - "id": "minecraft:arrow", - "unlocalizedName": "item.arrow", - "localizedName": "Arrow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 263, - "legacyData": 0, - "id": "minecraft:coal", - "unlocalizedName": "item.coal", - "localizedName": "Coal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 263, - "legacyData": 1, - "id": "minecraft:coal", - "unlocalizedName": "item.charcoal", - "localizedName": "Charcoal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 264, - "legacyData": 0, - "id": "minecraft:diamond", - "unlocalizedName": "item.diamond", - "localizedName": "Diamond", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 265, - "legacyData": 0, - "id": "minecraft:iron_ingot", - "unlocalizedName": "item.ingotIron", - "localizedName": "Iron Ingot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 266, - "legacyData": 0, - "id": "minecraft:gold_ingot", - "unlocalizedName": "item.ingotGold", - "localizedName": "Gold Ingot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 267, - "legacyData": 0, - "id": "minecraft:iron_sword", - "unlocalizedName": "item.swordIron", - "localizedName": "Iron Sword", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "legacyId": 268, - "legacyData": 0, - "id": "minecraft:wooden_sword", - "unlocalizedName": "item.swordWood", - "localizedName": "Wooden Sword", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "legacyId": 269, - "legacyData": 0, - "id": "minecraft:wooden_shovel", - "unlocalizedName": "item.shovelWood", - "localizedName": "Wooden Shovel", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "legacyId": 270, - "legacyData": 0, - "id": "minecraft:wooden_pickaxe", - "unlocalizedName": "item.pickaxeWood", - "localizedName": "Wooden Pickaxe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "legacyId": 271, - "legacyData": 0, - "id": "minecraft:wooden_axe", - "unlocalizedName": "item.hatchetWood", - "localizedName": "Wooden Axe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "legacyId": 272, - "legacyData": 0, - "id": "minecraft:stone_sword", - "unlocalizedName": "item.swordStone", - "localizedName": "Stone Sword", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "legacyId": 273, - "legacyData": 0, - "id": "minecraft:stone_shovel", - "unlocalizedName": "item.shovelStone", - "localizedName": "Stone Shovel", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "legacyId": 274, - "legacyData": 0, - "id": "minecraft:stone_pickaxe", - "unlocalizedName": "item.pickaxeStone", - "localizedName": "Stone Pickaxe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "legacyId": 275, - "legacyData": 0, - "id": "minecraft:stone_axe", - "unlocalizedName": "item.hatchetStone", - "localizedName": "Stone Axe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "legacyId": 276, - "legacyData": 0, - "id": "minecraft:diamond_sword", - "unlocalizedName": "item.swordDiamond", - "localizedName": "Diamond Sword", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "legacyId": 277, - "legacyData": 0, - "id": "minecraft:diamond_shovel", - "unlocalizedName": "item.shovelDiamond", - "localizedName": "Diamond Shovel", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "legacyId": 278, - "legacyData": 0, - "id": "minecraft:diamond_pickaxe", - "unlocalizedName": "item.pickaxeDiamond", - "localizedName": "Diamond Pickaxe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "legacyId": 279, - "legacyData": 0, - "id": "minecraft:diamond_axe", - "unlocalizedName": "item.hatchetDiamond", - "localizedName": "Diamond Axe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "legacyId": 280, - "legacyData": 0, - "id": "minecraft:stick", - "unlocalizedName": "item.stick", - "localizedName": "Stick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 281, - "legacyData": 0, - "id": "minecraft:bowl", - "unlocalizedName": "item.bowl", - "localizedName": "Bowl", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 282, - "legacyData": 0, - "id": "minecraft:mushroom_stew", - "unlocalizedName": "item.mushroomStew", - "localizedName": "Mushroom Stew", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 283, - "legacyData": 0, - "id": "minecraft:golden_sword", - "unlocalizedName": "item.swordGold", - "localizedName": "Golden Sword", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "legacyId": 284, - "legacyData": 0, - "id": "minecraft:golden_shovel", - "unlocalizedName": "item.shovelGold", - "localizedName": "Golden Shovel", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "legacyId": 285, - "legacyData": 0, - "id": "minecraft:golden_pickaxe", - "unlocalizedName": "item.pickaxeGold", - "localizedName": "Golden Pickaxe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "legacyId": 286, - "legacyData": 0, - "id": "minecraft:golden_axe", - "unlocalizedName": "item.hatchetGold", - "localizedName": "Golden Axe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "legacyId": 287, - "legacyData": 0, - "id": "minecraft:string", - "unlocalizedName": "item.string", - "localizedName": "String", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 288, - "legacyData": 0, - "id": "minecraft:feather", - "unlocalizedName": "item.feather", - "localizedName": "Feather", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 289, - "legacyData": 0, - "id": "minecraft:gunpowder", - "unlocalizedName": "item.sulphur", - "localizedName": "Gunpowder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 290, - "legacyData": 0, - "id": "minecraft:wooden_hoe", - "unlocalizedName": "item.hoeWood", - "localizedName": "Wooden Hoe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "legacyId": 291, - "legacyData": 0, - "id": "minecraft:stone_hoe", - "unlocalizedName": "item.hoeStone", - "localizedName": "Stone Hoe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "legacyId": 292, - "legacyData": 0, - "id": "minecraft:iron_hoe", - "unlocalizedName": "item.hoeIron", - "localizedName": "Iron Hoe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "legacyId": 293, - "legacyData": 0, - "id": "minecraft:diamond_hoe", - "unlocalizedName": "item.hoeDiamond", - "localizedName": "Diamond Hoe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "legacyId": 294, - "legacyData": 0, - "id": "minecraft:golden_hoe", - "unlocalizedName": "item.hoeGold", - "localizedName": "Golden Hoe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "legacyId": 295, - "legacyData": 0, - "id": "minecraft:wheat_seeds", - "unlocalizedName": "item.seeds", - "localizedName": "Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 296, - "legacyData": 0, - "id": "minecraft:wheat", - "unlocalizedName": "item.wheat", - "localizedName": "Wheat", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 297, - "legacyData": 0, - "id": "minecraft:bread", - "unlocalizedName": "item.bread", - "localizedName": "Bread", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 298, - "legacyData": 0, - "id": "minecraft:leather_helmet", - "unlocalizedName": "item.helmetCloth", - "localizedName": "Leather Cap", - "maxDamage": 55, - "maxStackSize": 1 - }, - { - "legacyId": 299, - "legacyData": 0, - "id": "minecraft:leather_chestplate", - "unlocalizedName": "item.chestplateCloth", - "localizedName": "Leather Tunic", - "maxDamage": 80, - "maxStackSize": 1 - }, - { - "legacyId": 300, - "legacyData": 0, - "id": "minecraft:leather_leggings", - "unlocalizedName": "item.leggingsCloth", - "localizedName": "Leather Pants", - "maxDamage": 75, - "maxStackSize": 1 - }, - { - "legacyId": 301, - "legacyData": 0, - "id": "minecraft:leather_boots", - "unlocalizedName": "item.bootsCloth", - "localizedName": "Leather Boots", - "maxDamage": 65, - "maxStackSize": 1 - }, - { - "legacyId": 302, - "legacyData": 0, - "id": "minecraft:chainmail_helmet", - "unlocalizedName": "item.helmetChain", - "localizedName": "Chain Helmet", - "maxDamage": 165, - "maxStackSize": 1 - }, - { - "legacyId": 303, - "legacyData": 0, - "id": "minecraft:chainmail_chestplate", - "unlocalizedName": "item.chestplateChain", - "localizedName": "Chain Chestplate", - "maxDamage": 240, - "maxStackSize": 1 - }, - { - "legacyId": 304, - "legacyData": 0, - "id": "minecraft:chainmail_leggings", - "unlocalizedName": "item.leggingsChain", - "localizedName": "Chain Leggings", - "maxDamage": 225, - "maxStackSize": 1 - }, - { - "legacyId": 305, - "legacyData": 0, - "id": "minecraft:chainmail_boots", - "unlocalizedName": "item.bootsChain", - "localizedName": "Chain Boots", - "maxDamage": 195, - "maxStackSize": 1 - }, - { - "legacyId": 306, - "legacyData": 0, - "id": "minecraft:iron_helmet", - "unlocalizedName": "item.helmetIron", - "localizedName": "Iron Helmet", - "maxDamage": 165, - "maxStackSize": 1 - }, - { - "legacyId": 307, - "legacyData": 0, - "id": "minecraft:iron_chestplate", - "unlocalizedName": "item.chestplateIron", - "localizedName": "Iron Chestplate", - "maxDamage": 240, - "maxStackSize": 1 - }, - { - "legacyId": 308, - "legacyData": 0, - "id": "minecraft:iron_leggings", - "unlocalizedName": "item.leggingsIron", - "localizedName": "Iron Leggings", - "maxDamage": 225, - "maxStackSize": 1 - }, - { - "legacyId": 309, - "legacyData": 0, - "id": "minecraft:iron_boots", - "unlocalizedName": "item.bootsIron", - "localizedName": "Iron Boots", - "maxDamage": 195, - "maxStackSize": 1 - }, - { - "legacyId": 310, - "legacyData": 0, - "id": "minecraft:diamond_helmet", - "unlocalizedName": "item.helmetDiamond", - "localizedName": "Diamond Helmet", - "maxDamage": 363, - "maxStackSize": 1 - }, - { - "legacyId": 311, - "legacyData": 0, - "id": "minecraft:diamond_chestplate", - "unlocalizedName": "item.chestplateDiamond", - "localizedName": "Diamond Chestplate", - "maxDamage": 528, - "maxStackSize": 1 - }, - { - "legacyId": 312, - "legacyData": 0, - "id": "minecraft:diamond_leggings", - "unlocalizedName": "item.leggingsDiamond", - "localizedName": "Diamond Leggings", - "maxDamage": 495, - "maxStackSize": 1 - }, - { - "legacyId": 313, - "legacyData": 0, - "id": "minecraft:diamond_boots", - "unlocalizedName": "item.bootsDiamond", - "localizedName": "Diamond Boots", - "maxDamage": 429, - "maxStackSize": 1 - }, - { - "legacyId": 314, - "legacyData": 0, - "id": "minecraft:golden_helmet", - "unlocalizedName": "item.helmetGold", - "localizedName": "Golden Helmet", - "maxDamage": 77, - "maxStackSize": 1 - }, - { - "legacyId": 315, - "legacyData": 0, - "id": "minecraft:golden_chestplate", - "unlocalizedName": "item.chestplateGold", - "localizedName": "Golden Chestplate", - "maxDamage": 112, - "maxStackSize": 1 - }, - { - "legacyId": 316, - "legacyData": 0, - "id": "minecraft:golden_leggings", - "unlocalizedName": "item.leggingsGold", - "localizedName": "Golden Leggings", - "maxDamage": 105, - "maxStackSize": 1 - }, - { - "legacyId": 317, - "legacyData": 0, - "id": "minecraft:golden_boots", - "unlocalizedName": "item.bootsGold", - "localizedName": "Golden Boots", - "maxDamage": 91, - "maxStackSize": 1 - }, - { - "legacyId": 318, - "legacyData": 0, - "id": "minecraft:flint", - "unlocalizedName": "item.flint", - "localizedName": "Flint", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 319, - "legacyData": 0, - "id": "minecraft:porkchop", - "unlocalizedName": "item.porkchopRaw", - "localizedName": "Raw Porkchop", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 320, - "legacyData": 0, - "id": "minecraft:cooked_porkchop", - "unlocalizedName": "item.porkchopCooked", - "localizedName": "Cooked Porkchop", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 321, - "legacyData": 0, - "id": "minecraft:painting", - "unlocalizedName": "item.painting", - "localizedName": "Painting", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 322, - "legacyData": 0, - "id": "minecraft:golden_apple", - "unlocalizedName": "item.appleGold", - "localizedName": "Golden Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 322, - "legacyData": 1, - "id": "minecraft:golden_apple", - "unlocalizedName": "item.appleGold", - "localizedName": "Golden Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 323, - "legacyData": 0, - "id": "minecraft:sign", - "unlocalizedName": "item.sign", - "localizedName": "Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 324, - "legacyData": 0, - "id": "minecraft:wooden_door", - "unlocalizedName": "item.doorOak", - "localizedName": "Oak Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 325, - "legacyData": 0, - "id": "minecraft:bucket", - "unlocalizedName": "item.bucket", - "localizedName": "Bucket", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 326, - "legacyData": 0, - "id": "minecraft:water_bucket", - "unlocalizedName": "item.bucketWater", - "localizedName": "Water Bucket", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 327, - "legacyData": 0, - "id": "minecraft:lava_bucket", - "unlocalizedName": "item.bucketLava", - "localizedName": "Lava Bucket", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 328, - "legacyData": 0, - "id": "minecraft:minecart", - "unlocalizedName": "item.minecart", - "localizedName": "Minecart", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 329, - "legacyData": 0, - "id": "minecraft:saddle", - "unlocalizedName": "item.saddle", - "localizedName": "Saddle", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 330, - "legacyData": 0, - "id": "minecraft:iron_door", - "unlocalizedName": "item.doorIron", - "localizedName": "Iron Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 331, - "legacyData": 0, - "id": "minecraft:redstone", - "unlocalizedName": "item.redstone", - "localizedName": "Redstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 332, - "legacyData": 0, - "id": "minecraft:snowball", - "unlocalizedName": "item.snowball", - "localizedName": "Snowball", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 333, - "legacyData": 0, - "id": "minecraft:boat", - "unlocalizedName": "item.boat.oak", - "localizedName": "Oak Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 334, - "legacyData": 0, - "id": "minecraft:leather", - "unlocalizedName": "item.leather", - "localizedName": "Leather", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 335, - "legacyData": 0, - "id": "minecraft:milk_bucket", - "unlocalizedName": "item.milk", - "localizedName": "Milk", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 336, - "legacyData": 0, - "id": "minecraft:brick", - "unlocalizedName": "item.brick", - "localizedName": "Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 337, - "legacyData": 0, - "id": "minecraft:clay_ball", - "unlocalizedName": "item.clay", - "localizedName": "Clay", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 338, - "legacyData": 0, - "id": "minecraft:reeds", - "unlocalizedName": "item.reeds", - "localizedName": "Sugar Canes", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 339, - "legacyData": 0, - "id": "minecraft:paper", - "unlocalizedName": "item.paper", - "localizedName": "Paper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 340, - "legacyData": 0, - "id": "minecraft:book", - "unlocalizedName": "item.book", - "localizedName": "Book", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 341, - "legacyData": 0, - "id": "minecraft:slime_ball", - "unlocalizedName": "item.slimeball", - "localizedName": "Slimeball", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 342, - "legacyData": 0, - "id": "minecraft:chest_minecart", - "unlocalizedName": "item.minecartChest", - "localizedName": "Minecart with Chest", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 343, - "legacyData": 0, - "id": "minecraft:furnace_minecart", - "unlocalizedName": "item.minecartFurnace", - "localizedName": "Minecart with Furnace", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 344, - "legacyData": 0, - "id": "minecraft:egg", - "unlocalizedName": "item.egg", - "localizedName": "Egg", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 345, - "legacyData": 0, - "id": "minecraft:compass", - "unlocalizedName": "item.compass", - "localizedName": "Compass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 346, - "legacyData": 0, - "id": "minecraft:fishing_rod", - "unlocalizedName": "item.fishingRod", - "localizedName": "Fishing Rod", - "maxDamage": 64, - "maxStackSize": 1 - }, - { - "legacyId": 347, - "legacyData": 0, - "id": "minecraft:clock", - "unlocalizedName": "item.clock", - "localizedName": "Clock", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 348, - "legacyData": 0, - "id": "minecraft:glowstone_dust", - "unlocalizedName": "item.yellowDust", - "localizedName": "Glowstone Dust", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 349, - "legacyData": 0, - "id": "minecraft:fish", - "unlocalizedName": "item.fish.cod.raw", - "localizedName": "Raw Fish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 349, - "legacyData": 1, - "id": "minecraft:fish", - "unlocalizedName": "item.fish.salmon.raw", - "localizedName": "Raw Salmon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 349, - "legacyData": 2, - "id": "minecraft:fish", - "unlocalizedName": "item.fish.clownfish.raw", - "localizedName": "Clownfish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 349, - "legacyData": 3, - "id": "minecraft:fish", - "unlocalizedName": "item.fish.pufferfish.raw", - "localizedName": "Pufferfish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 350, - "legacyData": 0, - "id": "minecraft:cooked_fish", - "unlocalizedName": "item.fish.cod.cooked", - "localizedName": "Cooked Fish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 350, - "legacyData": 1, - "id": "minecraft:cooked_fish", - "unlocalizedName": "item.fish.salmon.cooked", - "localizedName": "Cooked Salmon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 0, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.black", - "localizedName": "Ink Sac", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 1, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.red", - "localizedName": "Rose Red", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 2, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.green", - "localizedName": "Cactus Green", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 3, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.brown", - "localizedName": "Cocoa Beans", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 4, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.blue", - "localizedName": "Lapis Lazuli", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 5, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.purple", - "localizedName": "Purple Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 6, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.cyan", - "localizedName": "Cyan Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 7, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.silver", - "localizedName": "Light Gray Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 8, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.gray", - "localizedName": "Gray Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 9, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.pink", - "localizedName": "Pink Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 10, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.lime", - "localizedName": "Lime Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 11, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.yellow", - "localizedName": "Dandelion Yellow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 12, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.lightBlue", - "localizedName": "Light Blue Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 13, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.magenta", - "localizedName": "Magenta Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 14, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.orange", - "localizedName": "Orange Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 351, - "legacyData": 15, - "id": "minecraft:dye", - "unlocalizedName": "item.dyePowder.white", - "localizedName": "Bone Meal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 352, - "legacyData": 0, - "id": "minecraft:bone", - "unlocalizedName": "item.bone", - "localizedName": "Bone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 353, - "legacyData": 0, - "id": "minecraft:sugar", - "unlocalizedName": "item.sugar", - "localizedName": "Sugar", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 354, - "legacyData": 0, - "id": "minecraft:cake", - "unlocalizedName": "item.cake", - "localizedName": "Cake", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 0, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.white", - "localizedName": "White Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 1, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.orange", - "localizedName": "Orange Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 2, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.magenta", - "localizedName": "Magenta Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 3, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.lightBlue", - "localizedName": "Light Blue Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 4, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.yellow", - "localizedName": "Yellow Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 5, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.lime", - "localizedName": "Lime Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 6, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.pink", - "localizedName": "Pink Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 7, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.gray", - "localizedName": "Gray Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 8, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.silver", - "localizedName": "Light Gray Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 9, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.cyan", - "localizedName": "Cyan Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 10, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.purple", - "localizedName": "Purple Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 11, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.blue", - "localizedName": "Blue Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 12, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.brown", - "localizedName": "Brown Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 13, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.green", - "localizedName": "Green Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 14, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.red", - "localizedName": "Red Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 355, - "legacyData": 15, - "id": "minecraft:bed", - "unlocalizedName": "item.bed.black", - "localizedName": "Black Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 356, - "legacyData": 0, - "id": "minecraft:repeater", - "unlocalizedName": "item.diode", - "localizedName": "Redstone Repeater", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 357, - "legacyData": 0, - "id": "minecraft:cookie", - "unlocalizedName": "item.cookie", - "localizedName": "Cookie", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 358, - "legacyData": 0, - "id": "minecraft:filled_map", - "unlocalizedName": "item.map", - "localizedName": "Map", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 359, - "legacyData": 0, - "id": "minecraft:shears", - "unlocalizedName": "item.shears", - "localizedName": "Shears", - "maxDamage": 238, - "maxStackSize": 1 - }, - { - "legacyId": 360, - "legacyData": 0, - "id": "minecraft:melon", - "unlocalizedName": "item.melon", - "localizedName": "Melon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 361, - "legacyData": 0, - "id": "minecraft:pumpkin_seeds", - "unlocalizedName": "item.seeds_pumpkin", - "localizedName": "Pumpkin Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 362, - "legacyData": 0, - "id": "minecraft:melon_seeds", - "unlocalizedName": "item.seeds_melon", - "localizedName": "Melon Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 363, - "legacyData": 0, - "id": "minecraft:beef", - "unlocalizedName": "item.beefRaw", - "localizedName": "Raw Beef", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 364, - "legacyData": 0, - "id": "minecraft:cooked_beef", - "unlocalizedName": "item.beefCooked", - "localizedName": "Steak", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 365, - "legacyData": 0, - "id": "minecraft:chicken", - "unlocalizedName": "item.chickenRaw", - "localizedName": "Raw Chicken", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 366, - "legacyData": 0, - "id": "minecraft:cooked_chicken", - "unlocalizedName": "item.chickenCooked", - "localizedName": "Cooked Chicken", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 367, - "legacyData": 0, - "id": "minecraft:rotten_flesh", - "unlocalizedName": "item.rottenFlesh", - "localizedName": "Rotten Flesh", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 368, - "legacyData": 0, - "id": "minecraft:ender_pearl", - "unlocalizedName": "item.enderPearl", - "localizedName": "Ender Pearl", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 369, - "legacyData": 0, - "id": "minecraft:blaze_rod", - "unlocalizedName": "item.blazeRod", - "localizedName": "Blaze Rod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 370, - "legacyData": 0, - "id": "minecraft:ghast_tear", - "unlocalizedName": "item.ghastTear", - "localizedName": "Ghast Tear", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 371, - "legacyData": 0, - "id": "minecraft:gold_nugget", - "unlocalizedName": "item.goldNugget", - "localizedName": "Gold Nugget", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 372, - "legacyData": 0, - "id": "minecraft:nether_wart", - "unlocalizedName": "item.netherStalkSeeds", - "localizedName": "Nether Wart", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 373, - "legacyData": 0, - "id": "minecraft:potion", - "unlocalizedName": "item.potion", - "localizedName": "Uncraftable Potion", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 374, - "legacyData": 0, - "id": "minecraft:glass_bottle", - "unlocalizedName": "item.glassBottle", - "localizedName": "Glass Bottle", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 375, - "legacyData": 0, - "id": "minecraft:spider_eye", - "unlocalizedName": "item.spiderEye", - "localizedName": "Spider Eye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 376, - "legacyData": 0, - "id": "minecraft:fermented_spider_eye", - "unlocalizedName": "item.fermentedSpiderEye", - "localizedName": "Fermented Spider Eye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 377, - "legacyData": 0, - "id": "minecraft:blaze_powder", - "unlocalizedName": "item.blazePowder", - "localizedName": "Blaze Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 378, - "legacyData": 0, - "id": "minecraft:magma_cream", - "unlocalizedName": "item.magmaCream", - "localizedName": "Magma Cream", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 379, - "legacyData": 0, - "id": "minecraft:brewing_stand", - "unlocalizedName": "item.brewingStand", - "localizedName": "Brewing Stand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 380, - "legacyData": 0, - "id": "minecraft:cauldron", - "unlocalizedName": "item.cauldron", - "localizedName": "Cauldron", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 381, - "legacyData": 0, - "id": "minecraft:ender_eye", - "unlocalizedName": "item.eyeOfEnder", - "localizedName": "Eye of Ender", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 382, - "legacyData": 0, - "id": "minecraft:speckled_melon", - "unlocalizedName": "item.speckledMelon", - "localizedName": "Glistering Melon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 383, - "legacyData": 0, - "id": "minecraft:spawn_egg", - "unlocalizedName": "item.monsterPlacer", - "localizedName": "Spawn", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 384, - "legacyData": 0, - "id": "minecraft:experience_bottle", - "unlocalizedName": "item.expBottle", - "localizedName": "Bottle o\u0027 Enchanting", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 385, - "legacyData": 0, - "id": "minecraft:fire_charge", - "unlocalizedName": "item.fireball", - "localizedName": "Fire Charge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 386, - "legacyData": 0, - "id": "minecraft:writable_book", - "unlocalizedName": "item.writingBook", - "localizedName": "Book and Quill", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 387, - "legacyData": 0, - "id": "minecraft:written_book", - "unlocalizedName": "item.writtenBook", - "localizedName": "Written Book", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 388, - "legacyData": 0, - "id": "minecraft:emerald", - "unlocalizedName": "item.emerald", - "localizedName": "Emerald", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 389, - "legacyData": 0, - "id": "minecraft:item_frame", - "unlocalizedName": "item.frame", - "localizedName": "Item Frame", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 390, - "legacyData": 0, - "id": "minecraft:flower_pot", - "unlocalizedName": "item.flowerPot", - "localizedName": "Flower Pot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 391, - "legacyData": 0, - "id": "minecraft:carrot", - "unlocalizedName": "item.carrots", - "localizedName": "Carrot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 392, - "legacyData": 0, - "id": "minecraft:potato", - "unlocalizedName": "item.potato", - "localizedName": "Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 393, - "legacyData": 0, - "id": "minecraft:baked_potato", - "unlocalizedName": "item.potatoBaked", - "localizedName": "Baked Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 394, - "legacyData": 0, - "id": "minecraft:poisonous_potato", - "unlocalizedName": "item.potatoPoisonous", - "localizedName": "Poisonous Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 395, - "legacyData": 0, - "id": "minecraft:map", - "unlocalizedName": "item.emptyMap", - "localizedName": "Empty Map", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 396, - "legacyData": 0, - "id": "minecraft:golden_carrot", - "unlocalizedName": "item.carrotGolden", - "localizedName": "Golden Carrot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 0, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.skeleton", - "localizedName": "Skeleton Skull", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 1, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.wither", - "localizedName": "Wither Skeleton Skull", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 2, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.zombie", - "localizedName": "Zombie Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 3, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.char", - "localizedName": "Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 4, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.creeper", - "localizedName": "Creeper Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 397, - "legacyData": 5, - "id": "minecraft:skull", - "unlocalizedName": "item.skull.dragon", - "localizedName": "Dragon Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 398, - "legacyData": 0, - "id": "minecraft:carrot_on_a_stick", - "unlocalizedName": "item.carrotOnAStick", - "localizedName": "Carrot on a Stick", - "maxDamage": 25, - "maxStackSize": 1 - }, - { - "legacyId": 399, - "legacyData": 0, - "id": "minecraft:nether_star", - "unlocalizedName": "item.netherStar", - "localizedName": "Nether Star", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 400, - "legacyData": 0, - "id": "minecraft:pumpkin_pie", - "unlocalizedName": "item.pumpkinPie", - "localizedName": "Pumpkin Pie", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 401, - "legacyData": 0, - "id": "minecraft:fireworks", - "unlocalizedName": "item.fireworks", - "localizedName": "Firework Rocket", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 402, - "legacyData": 0, - "id": "minecraft:firework_charge", - "unlocalizedName": "item.fireworksCharge", - "localizedName": "Firework Star", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 403, - "legacyData": 0, - "id": "minecraft:enchanted_book", - "unlocalizedName": "item.enchantedBook", - "localizedName": "Enchanted Book", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 404, - "legacyData": 0, - "id": "minecraft:comparator", - "unlocalizedName": "item.comparator", - "localizedName": "Redstone Comparator", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 405, - "legacyData": 0, - "id": "minecraft:netherbrick", - "unlocalizedName": "item.netherbrick", - "localizedName": "Nether Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 406, - "legacyData": 0, - "id": "minecraft:quartz", - "unlocalizedName": "item.netherquartz", - "localizedName": "Nether Quartz", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 407, - "legacyData": 0, - "id": "minecraft:tnt_minecart", - "unlocalizedName": "item.minecartTnt", - "localizedName": "Minecart with TNT", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 408, - "legacyData": 0, - "id": "minecraft:hopper_minecart", - "unlocalizedName": "item.minecartHopper", - "localizedName": "Minecart with Hopper", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 409, - "legacyData": 0, - "id": "minecraft:prismarine_shard", - "unlocalizedName": "item.prismarineShard", - "localizedName": "Prismarine Shard", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 410, - "legacyData": 0, - "id": "minecraft:prismarine_crystals", - "unlocalizedName": "item.prismarineCrystals", - "localizedName": "Prismarine Crystals", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 411, - "legacyData": 0, - "id": "minecraft:rabbit", - "unlocalizedName": "item.rabbitRaw", - "localizedName": "Raw Rabbit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 412, - "legacyData": 0, - "id": "minecraft:cooked_rabbit", - "unlocalizedName": "item.rabbitCooked", - "localizedName": "Cooked Rabbit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 413, - "legacyData": 0, - "id": "minecraft:rabbit_stew", - "unlocalizedName": "item.rabbitStew", - "localizedName": "Rabbit Stew", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 414, - "legacyData": 0, - "id": "minecraft:rabbit_foot", - "unlocalizedName": "item.rabbitFoot", - "localizedName": "Rabbit\u0027s Foot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 415, - "legacyData": 0, - "id": "minecraft:rabbit_hide", - "unlocalizedName": "item.rabbitHide", - "localizedName": "Rabbit Hide", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 416, - "legacyData": 0, - "id": "minecraft:armor_stand", - "unlocalizedName": "item.armorStand", - "localizedName": "Armor Stand", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 417, - "legacyData": 0, - "id": "minecraft:iron_horse_armor", - "unlocalizedName": "item.horsearmormetal", - "localizedName": "Iron Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 418, - "legacyData": 0, - "id": "minecraft:golden_horse_armor", - "unlocalizedName": "item.horsearmorgold", - "localizedName": "Gold Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 419, - "legacyData": 0, - "id": "minecraft:diamond_horse_armor", - "unlocalizedName": "item.horsearmordiamond", - "localizedName": "Diamond Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 420, - "legacyData": 0, - "id": "minecraft:lead", - "unlocalizedName": "item.leash", - "localizedName": "Lead", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 421, - "legacyData": 0, - "id": "minecraft:name_tag", - "unlocalizedName": "item.nameTag", - "localizedName": "Name Tag", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 422, - "legacyData": 0, - "id": "minecraft:command_block_minecart", - "unlocalizedName": "item.minecartCommandBlock", - "localizedName": "Minecart with Command Block", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 423, - "legacyData": 0, - "id": "minecraft:mutton", - "unlocalizedName": "item.muttonRaw", - "localizedName": "Raw Mutton", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 424, - "legacyData": 0, - "id": "minecraft:cooked_mutton", - "unlocalizedName": "item.muttonCooked", - "localizedName": "Cooked Mutton", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 425, - "legacyData": 15, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "White Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 14, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Orange Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 13, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Magenta Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 12, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Light Blue Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 11, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Yellow Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 10, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Lime Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 9, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Pink Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 8, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Gray Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 7, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Light Gray Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 6, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Cyan Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 5, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Purple Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 4, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Blue Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 3, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Brown Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 2, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Green Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 1, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Red Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 425, - "legacyData": 0, - "id": "minecraft:banner", - "unlocalizedName": "tile.banner", - "localizedName": "Black Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "legacyId": 426, - "legacyData": 0, - "id": "minecraft:end_crystal", - "unlocalizedName": "item.end_crystal", - "localizedName": "End Crystal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 427, - "legacyData": 0, - "id": "minecraft:spruce_door", - "unlocalizedName": "item.doorSpruce", - "localizedName": "Spruce Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 428, - "legacyData": 0, - "id": "minecraft:birch_door", - "unlocalizedName": "item.doorBirch", - "localizedName": "Birch Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 429, - "legacyData": 0, - "id": "minecraft:jungle_door", - "unlocalizedName": "item.doorJungle", - "localizedName": "Jungle Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 430, - "legacyData": 0, - "id": "minecraft:acacia_door", - "unlocalizedName": "item.doorAcacia", - "localizedName": "Acacia Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 431, - "legacyData": 0, - "id": "minecraft:dark_oak_door", - "unlocalizedName": "item.doorDarkOak", - "localizedName": "Dark Oak Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 432, - "legacyData": 0, - "id": "minecraft:chorus_fruit", - "unlocalizedName": "item.chorusFruit", - "localizedName": "Chorus Fruit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 433, - "legacyData": 0, - "id": "minecraft:chorus_fruit_popped", - "unlocalizedName": "item.chorusFruitPopped", - "localizedName": "Popped Chorus Fruit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 434, - "legacyData": 0, - "id": "minecraft:beetroot", - "unlocalizedName": "item.beetroot", - "localizedName": "Beetroot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 435, - "legacyData": 0, - "id": "minecraft:beetroot_seeds", - "unlocalizedName": "item.beetroot_seeds", - "localizedName": "Beetroot Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 436, - "legacyData": 0, - "id": "minecraft:beetroot_soup", - "unlocalizedName": "item.beetroot_soup", - "localizedName": "Beetroot Soup", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 437, - "legacyData": 0, - "id": "minecraft:dragon_breath", - "unlocalizedName": "item.dragon_breath", - "localizedName": "Dragon\u0027s Breath", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 438, - "legacyData": 0, - "id": "minecraft:splash_potion", - "unlocalizedName": "item.splash_potion", - "localizedName": "Splash Uncraftable Potion", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 439, - "legacyData": 0, - "id": "minecraft:spectral_arrow", - "unlocalizedName": "item.spectral_arrow", - "localizedName": "Spectral Arrow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 440, - "legacyData": 0, - "id": "minecraft:tipped_arrow", - "unlocalizedName": "item.tipped_arrow", - "localizedName": "Uncraftable Tipped Arrow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "legacyId": 441, - "legacyData": 0, - "id": "minecraft:lingering_potion", - "unlocalizedName": "item.lingering_potion", - "localizedName": "Lingering Uncraftable Potion", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 442, - "legacyData": 0, - "id": "minecraft:shield", - "unlocalizedName": "item.shield", - "localizedName": "Shield", - "maxDamage": 336, - "maxStackSize": 1 - }, - { - "legacyId": 443, - "legacyData": 0, - "id": "minecraft:elytra", - "unlocalizedName": "item.elytra", - "localizedName": "Elytra", - "maxDamage": 432, - "maxStackSize": 1 - }, - { - "legacyId": 444, - "legacyData": 0, - "id": "minecraft:spruce_boat", - "unlocalizedName": "item.boat.spruce", - "localizedName": "Spruce Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 445, - "legacyData": 0, - "id": "minecraft:birch_boat", - "unlocalizedName": "item.boat.birch", - "localizedName": "Birch Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 446, - "legacyData": 0, - "id": "minecraft:jungle_boat", - "unlocalizedName": "item.boat.jungle", - "localizedName": "Jungle Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "legacyId": 447, - "legacyData": 0, "id": "minecraft:acacia_boat", - "unlocalizedName": "item.boat.acacia", - "localizedName": "Acacia Boat", - "maxDamage": 0, - "maxStackSize": 1 + "localizedName": "Acacia Boat" + }, + { + "id": "minecraft:acacia_button", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_door", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_log", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:acacia_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:activator_rail", + "localizedName": "Air" + }, + { + "id": "minecraft:air", + "localizedName": "Air" + }, + { + "id": "minecraft:allium", + "localizedName": "Air" + }, + { + "id": "minecraft:andesite", + "localizedName": "Air" + }, + { + "id": "minecraft:anvil", + "localizedName": "Air" + }, + { + "id": "minecraft:apple", + "localizedName": "Apple" + }, + { + "id": "minecraft:armor_stand", + "localizedName": "Armor Stand" + }, + { + "id": "minecraft:arrow", + "localizedName": "Arrow" + }, + { + "id": "minecraft:azure_bluet", + "localizedName": "Air" + }, + { + "id": "minecraft:baked_potato", + "localizedName": "Baked Potato" + }, + { + "id": "minecraft:barrier", + "localizedName": "Air" + }, + { + "id": "minecraft:bat_spawn_egg", + "localizedName": "Bat Spawn Egg" + }, + { + "id": "minecraft:beacon", + "localizedName": "Air" + }, + { + "id": "minecraft:bedrock", + "localizedName": "Air" + }, + { + "id": "minecraft:beef", + "localizedName": "Raw Beef" + }, + { + "id": "minecraft:beetroot", + "localizedName": "Beetroot" + }, + { + "id": "minecraft:beetroot_seeds", + "localizedName": "Beetroot Seeds" + }, + { + "id": "minecraft:beetroot_soup", + "localizedName": "Beetroot Soup" + }, + { + "id": "minecraft:birch_boat", + "localizedName": "Birch Boat" + }, + { + "id": "minecraft:birch_button", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_door", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_log", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:birch_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:black_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:black_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:black_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:black_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:black_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:black_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:black_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:black_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:black_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:black_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:black_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:blaze_powder", + "localizedName": "Blaze Powder" + }, + { + "id": "minecraft:blaze_rod", + "localizedName": "Blaze Rod" + }, + { + "id": "minecraft:blaze_spawn_egg", + "localizedName": "Blaze Spawn Egg" + }, + { + "id": "minecraft:blue_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_ice", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_orchid", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:blue_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:bone", + "localizedName": "Bone" + }, + { + "id": "minecraft:bone_block", + "localizedName": "Air" + }, + { + "id": "minecraft:bone_meal", + "localizedName": "Bone Meal" + }, + { + "id": "minecraft:book", + "localizedName": "Book" + }, + { + "id": "minecraft:bookshelf", + "localizedName": "Air" + }, + { + "id": "minecraft:bow", + "localizedName": "Bow" + }, + { + "id": "minecraft:bowl", + "localizedName": "Bowl" + }, + { + "id": "minecraft:brain_coral", + "localizedName": "Air" + }, + { + "id": "minecraft:brain_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:brain_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:bread", + "localizedName": "Bread" + }, + { + "id": "minecraft:brewing_stand", + "localizedName": "Air" + }, + { + "id": "minecraft:brick", + "localizedName": "Brick" + }, + { + "id": "minecraft:brick_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:brick_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_mushroom", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_mushroom_block", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:brown_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:bubble_coral", + "localizedName": "Air" + }, + { + "id": "minecraft:bubble_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:bubble_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:bucket", + "localizedName": "Bucket" + }, + { + "id": "minecraft:cactus", + "localizedName": "Air" + }, + { + "id": "minecraft:cactus_green", + "localizedName": "Cactus Green" + }, + { + "id": "minecraft:cake", + "localizedName": "Air" + }, + { + "id": "minecraft:carrot", + "localizedName": "Carrot" + }, + { + "id": "minecraft:carrot_on_a_stick", + "localizedName": "Carrot on a Stick" + }, + { + "id": "minecraft:carved_pumpkin", + "localizedName": "Air" + }, + { + "id": "minecraft:cauldron", + "localizedName": "Air" + }, + { + "id": "minecraft:cave_spider_spawn_egg", + "localizedName": "Cave Spider Spawn Egg" + }, + { + "id": "minecraft:chain_command_block", + "localizedName": "Air" + }, + { + "id": "minecraft:chainmail_boots", + "localizedName": "Chainmail Boots" + }, + { + "id": "minecraft:chainmail_chestplate", + "localizedName": "Chainmail Chestplate" + }, + { + "id": "minecraft:chainmail_helmet", + "localizedName": "Chainmail Helmet" + }, + { + "id": "minecraft:chainmail_leggings", + "localizedName": "Chainmail Leggings" + }, + { + "id": "minecraft:charcoal", + "localizedName": "Charcoal" + }, + { + "id": "minecraft:chest", + "localizedName": "Air" + }, + { + "id": "minecraft:chest_minecart", + "localizedName": "Minecart with Chest" + }, + { + "id": "minecraft:chicken", + "localizedName": "Raw Chicken" + }, + { + "id": "minecraft:chicken_spawn_egg", + "localizedName": "Chicken Spawn Egg" + }, + { + "id": "minecraft:chipped_anvil", + "localizedName": "Air" + }, + { + "id": "minecraft:chiseled_quartz_block", + "localizedName": "Air" + }, + { + "id": "minecraft:chiseled_red_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:chiseled_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:chiseled_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:chorus_flower", + "localizedName": "Air" + }, + { + "id": "minecraft:chorus_fruit", + "localizedName": "Chorus Fruit" + }, + { + "id": "minecraft:chorus_plant", + "localizedName": "Air" + }, + { + "id": "minecraft:clay", + "localizedName": "Air" + }, + { + "id": "minecraft:clay_ball", + "localizedName": "Clay" + }, + { + "id": "minecraft:clock", + "localizedName": "Clock" + }, + { + "id": "minecraft:coal", + "localizedName": "Coal" + }, + { + "id": "minecraft:coal_block", + "localizedName": "Air" + }, + { + "id": "minecraft:coal_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:coarse_dirt", + "localizedName": "Air" + }, + { + "id": "minecraft:cobblestone", + "localizedName": "Air" + }, + { + "id": "minecraft:cobblestone_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:cobblestone_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:cobblestone_wall", + "localizedName": "Air" + }, + { + "id": "minecraft:cobweb", + "localizedName": "Air" + }, + { + "id": "minecraft:cocoa_beans", + "localizedName": "Cocoa Beans" + }, + { + "id": "minecraft:cod", + "localizedName": "Raw Cod" + }, + { + "id": "minecraft:cod_bucket", + "localizedName": "Bucket of Cod" + }, + { + "id": "minecraft:cod_spawn_egg", + "localizedName": "Cod Spawn Egg" + }, + { + "id": "minecraft:command_block", + "localizedName": "Air" + }, + { + "id": "minecraft:command_block_minecart", + "localizedName": "Minecart with Command Block" + }, + { + "id": "minecraft:comparator", + "localizedName": "Air" + }, + { + "id": "minecraft:compass", + "localizedName": "Compass" + }, + { + "id": "minecraft:conduit", + "localizedName": "Air" + }, + { + "id": "minecraft:cooked_beef", + "localizedName": "Steak" + }, + { + "id": "minecraft:cooked_chicken", + "localizedName": "Cooked Chicken" + }, + { + "id": "minecraft:cooked_cod", + "localizedName": "Cooked Cod" + }, + { + "id": "minecraft:cooked_mutton", + "localizedName": "Cooked Mutton" + }, + { + "id": "minecraft:cooked_porkchop", + "localizedName": "Cooked Porkchop" + }, + { + "id": "minecraft:cooked_rabbit", + "localizedName": "Cooked Rabbit" + }, + { + "id": "minecraft:cooked_salmon", + "localizedName": "Cooked Salmon" + }, + { + "id": "minecraft:cookie", + "localizedName": "Cookie" + }, + { + "id": "minecraft:cow_spawn_egg", + "localizedName": "Cow Spawn Egg" + }, + { + "id": "minecraft:cracked_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:crafting_table", + "localizedName": "Air" + }, + { + "id": "minecraft:creeper_head", + "localizedName": "Air" + }, + { + "id": "minecraft:creeper_spawn_egg", + "localizedName": "Creeper Spawn Egg" + }, + { + "id": "minecraft:cut_red_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:cut_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_dye", + "localizedName": "Cyan Dye" + }, + { + "id": "minecraft:cyan_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:cyan_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:damaged_anvil", + "localizedName": "Air" + }, + { + "id": "minecraft:dandelion", + "localizedName": "Air" + }, + { + "id": "minecraft:dandelion_yellow", + "localizedName": "Dandelion Yellow" }, { - "legacyId": 448, - "legacyData": 0, "id": "minecraft:dark_oak_boat", - "unlocalizedName": "item.boat.dark_oak", - "localizedName": "Dark Oak Boat", - "maxDamage": 0, - "maxStackSize": 1 + "localizedName": "Dark Oak Boat" }, { - "legacyId": 449, - "legacyData": 0, - "id": "minecraft:totem_of_undying", - "unlocalizedName": "item.totem", - "localizedName": "Totem of Undying", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:dark_oak_button", + "localizedName": "Air" }, { - "legacyId": 450, - "legacyData": 0, - "id": "minecraft:shulker_shell", - "unlocalizedName": "item.shulkerShell", - "localizedName": "Shulker Shell", - "maxDamage": 0, - "maxStackSize": 64 + "id": "minecraft:dark_oak_door", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_log", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_oak_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_prismarine", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_prismarine_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:dark_prismarine_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:daylight_detector", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_brain_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_brain_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_bubble_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_bubble_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_bush", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_fire_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_fire_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_horn_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_horn_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_tube_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dead_tube_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:debug_stick", + "localizedName": "Debug Stick" + }, + { + "id": "minecraft:detector_rail", + "localizedName": "Air" + }, + { + "id": "minecraft:diamond", + "localizedName": "Diamond" + }, + { + "id": "minecraft:diamond_axe", + "localizedName": "Diamond Axe" + }, + { + "id": "minecraft:diamond_block", + "localizedName": "Air" + }, + { + "id": "minecraft:diamond_boots", + "localizedName": "Diamond Boots" + }, + { + "id": "minecraft:diamond_chestplate", + "localizedName": "Diamond Chestplate" + }, + { + "id": "minecraft:diamond_helmet", + "localizedName": "Diamond Helmet" + }, + { + "id": "minecraft:diamond_hoe", + "localizedName": "Diamond Hoe" + }, + { + "id": "minecraft:diamond_horse_armor", + "localizedName": "Diamond Horse Armor" + }, + { + "id": "minecraft:diamond_leggings", + "localizedName": "Diamond Leggings" + }, + { + "id": "minecraft:diamond_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:diamond_pickaxe", + "localizedName": "Diamond Pickaxe" + }, + { + "id": "minecraft:diamond_shovel", + "localizedName": "Diamond Shovel" + }, + { + "id": "minecraft:diamond_sword", + "localizedName": "Diamond Sword" + }, + { + "id": "minecraft:diorite", + "localizedName": "Air" + }, + { + "id": "minecraft:dirt", + "localizedName": "Air" + }, + { + "id": "minecraft:dispenser", + "localizedName": "Air" + }, + { + "id": "minecraft:dolphin_spawn_egg", + "localizedName": "Dolphin Spawn Egg" + }, + { + "id": "minecraft:donkey_spawn_egg", + "localizedName": "Donkey Spawn Egg" + }, + { + "id": "minecraft:dragon_breath", + "localizedName": "Dragon\u0027s Breath" + }, + { + "id": "minecraft:dragon_egg", + "localizedName": "Air" + }, + { + "id": "minecraft:dragon_head", + "localizedName": "Air" + }, + { + "id": "minecraft:dried_kelp", + "localizedName": "Dried Kelp" + }, + { + "id": "minecraft:dried_kelp_block", + "localizedName": "Air" + }, + { + "id": "minecraft:dropper", + "localizedName": "Air" + }, + { + "id": "minecraft:drowned_spawn_egg", + "localizedName": "Drowned Spawn Egg" + }, + { + "id": "minecraft:egg", + "localizedName": "Egg" + }, + { + "id": "minecraft:elder_guardian_spawn_egg", + "localizedName": "Elder Guardian Spawn Egg" + }, + { + "id": "minecraft:elytra", + "localizedName": "Elytra" + }, + { + "id": "minecraft:emerald", + "localizedName": "Emerald" + }, + { + "id": "minecraft:emerald_block", + "localizedName": "Air" + }, + { + "id": "minecraft:emerald_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:enchanted_book", + "localizedName": "Enchanted Book" + }, + { + "id": "minecraft:enchanted_golden_apple", + "localizedName": "Enchanted Golden Apple" + }, + { + "id": "minecraft:enchanting_table", + "localizedName": "Air" + }, + { + "id": "minecraft:end_crystal", + "localizedName": "End Crystal" + }, + { + "id": "minecraft:end_portal_frame", + "localizedName": "Air" + }, + { + "id": "minecraft:end_rod", + "localizedName": "Air" + }, + { + "id": "minecraft:end_stone", + "localizedName": "Air" + }, + { + "id": "minecraft:end_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:ender_chest", + "localizedName": "Air" + }, + { + "id": "minecraft:ender_eye", + "localizedName": "Eye of Ender" + }, + { + "id": "minecraft:ender_pearl", + "localizedName": "Ender Pearl" + }, + { + "id": "minecraft:enderman_spawn_egg", + "localizedName": "Enderman Spawn Egg" + }, + { + "id": "minecraft:endermite_spawn_egg", + "localizedName": "Endermite Spawn Egg" + }, + { + "id": "minecraft:evoker_spawn_egg", + "localizedName": "Evoker Spawn Egg" + }, + { + "id": "minecraft:experience_bottle", + "localizedName": "Bottle o\u0027 Enchanting" + }, + { + "id": "minecraft:farmland", + "localizedName": "Air" + }, + { + "id": "minecraft:feather", + "localizedName": "Feather" + }, + { + "id": "minecraft:fermented_spider_eye", + "localizedName": "Fermented Spider Eye" + }, + { + "id": "minecraft:fern", + "localizedName": "Air" + }, + { + "id": "minecraft:filled_map", + "localizedName": "Map" + }, + { + "id": "minecraft:fire_charge", + "localizedName": "Fire Charge" + }, + { + "id": "minecraft:fire_coral", + "localizedName": "Air" + }, + { + "id": "minecraft:fire_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:fire_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:firework_rocket", + "localizedName": "Firework Rocket" + }, + { + "id": "minecraft:firework_star", + "localizedName": "Firework Star" + }, + { + "id": "minecraft:fishing_rod", + "localizedName": "Fishing Rod" + }, + { + "id": "minecraft:flint", + "localizedName": "Flint" + }, + { + "id": "minecraft:flint_and_steel", + "localizedName": "Flint and Steel" + }, + { + "id": "minecraft:flower_pot", + "localizedName": "Air" + }, + { + "id": "minecraft:furnace", + "localizedName": "Air" + }, + { + "id": "minecraft:furnace_minecart", + "localizedName": "Minecart with Furnace" + }, + { + "id": "minecraft:ghast_spawn_egg", + "localizedName": "Ghast Spawn Egg" + }, + { + "id": "minecraft:ghast_tear", + "localizedName": "Ghast Tear" + }, + { + "id": "minecraft:glass", + "localizedName": "Air" + }, + { + "id": "minecraft:glass_bottle", + "localizedName": "Glass Bottle" + }, + { + "id": "minecraft:glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:glistering_melon_slice", + "localizedName": "Glistering Melon Slice" + }, + { + "id": "minecraft:glowstone", + "localizedName": "Air" + }, + { + "id": "minecraft:glowstone_dust", + "localizedName": "Glowstone Dust" + }, + { + "id": "minecraft:gold_block", + "localizedName": "Air" + }, + { + "id": "minecraft:gold_ingot", + "localizedName": "Gold Ingot" + }, + { + "id": "minecraft:gold_nugget", + "localizedName": "Gold Nugget" + }, + { + "id": "minecraft:gold_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:golden_apple", + "localizedName": "Golden Apple" + }, + { + "id": "minecraft:golden_axe", + "localizedName": "Golden Axe" + }, + { + "id": "minecraft:golden_boots", + "localizedName": "Golden Boots" + }, + { + "id": "minecraft:golden_carrot", + "localizedName": "Golden Carrot" + }, + { + "id": "minecraft:golden_chestplate", + "localizedName": "Golden Chestplate" + }, + { + "id": "minecraft:golden_helmet", + "localizedName": "Golden Helmet" + }, + { + "id": "minecraft:golden_hoe", + "localizedName": "Golden Hoe" + }, + { + "id": "minecraft:golden_horse_armor", + "localizedName": "Golden Horse Armor" + }, + { + "id": "minecraft:golden_leggings", + "localizedName": "Golden Leggings" + }, + { + "id": "minecraft:golden_pickaxe", + "localizedName": "Golden Pickaxe" + }, + { + "id": "minecraft:golden_shovel", + "localizedName": "Golden Shovel" + }, + { + "id": "minecraft:golden_sword", + "localizedName": "Golden Sword" + }, + { + "id": "minecraft:granite", + "localizedName": "Air" + }, + { + "id": "minecraft:grass", + "localizedName": "Air" + }, + { + "id": "minecraft:grass_block", + "localizedName": "Air" + }, + { + "id": "minecraft:grass_path", + "localizedName": "Air" + }, + { + "id": "minecraft:gravel", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_dye", + "localizedName": "Gray Dye" + }, + { + "id": "minecraft:gray_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:gray_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:green_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:green_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:green_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:green_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:green_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:green_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:green_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:green_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:green_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:green_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:green_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:guardian_spawn_egg", + "localizedName": "Guardian Spawn Egg" + }, + { + "id": "minecraft:gunpowder", + "localizedName": "Gunpowder" + }, + { + "id": "minecraft:hay_block", + "localizedName": "Air" + }, + { + "id": "minecraft:heart_of_the_sea", + "localizedName": "Heart of the Sea" + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:hopper", + "localizedName": "Air" + }, + { + "id": "minecraft:hopper_minecart", + "localizedName": "Minecart with Hopper" + }, + { + "id": "minecraft:horn_coral", + "localizedName": "Air" + }, + { + "id": "minecraft:horn_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:horn_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:horse_spawn_egg", + "localizedName": "Horse Spawn Egg" + }, + { + "id": "minecraft:husk_spawn_egg", + "localizedName": "Husk Spawn Egg" + }, + { + "id": "minecraft:ice", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_chiseled_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_cobblestone", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_cracked_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_mossy_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_stone", + "localizedName": "Air" + }, + { + "id": "minecraft:infested_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:ink_sac", + "localizedName": "Ink Sac" + }, + { + "id": "minecraft:iron_axe", + "localizedName": "Iron Axe" + }, + { + "id": "minecraft:iron_bars", + "localizedName": "Air" + }, + { + "id": "minecraft:iron_block", + "localizedName": "Air" + }, + { + "id": "minecraft:iron_boots", + "localizedName": "Iron Boots" + }, + { + "id": "minecraft:iron_chestplate", + "localizedName": "Iron Chestplate" + }, + { + "id": "minecraft:iron_door", + "localizedName": "Air" + }, + { + "id": "minecraft:iron_helmet", + "localizedName": "Iron Helmet" + }, + { + "id": "minecraft:iron_hoe", + "localizedName": "Iron Hoe" + }, + { + "id": "minecraft:iron_horse_armor", + "localizedName": "Iron Horse Armor" + }, + { + "id": "minecraft:iron_ingot", + "localizedName": "Iron Ingot" + }, + { + "id": "minecraft:iron_leggings", + "localizedName": "Iron Leggings" }, { - "legacyId": 452, - "legacyData": 0, "id": "minecraft:iron_nugget", - "unlocalizedName": "item.ironNugget", - "localizedName": "Iron Nugget", - "maxDamage": 0, - "maxStackSize": 64 + "localizedName": "Iron Nugget" + }, + { + "id": "minecraft:iron_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:iron_pickaxe", + "localizedName": "Iron Pickaxe" + }, + { + "id": "minecraft:iron_shovel", + "localizedName": "Iron Shovel" + }, + { + "id": "minecraft:iron_sword", + "localizedName": "Iron Sword" + }, + { + "id": "minecraft:iron_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:item_frame", + "localizedName": "Item Frame" + }, + { + "id": "minecraft:jack_o_lantern", + "localizedName": "Air" + }, + { + "id": "minecraft:jukebox", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_boat", + "localizedName": "Jungle Boat" + }, + { + "id": "minecraft:jungle_button", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_door", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_log", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:jungle_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:kelp", + "localizedName": "Air" }, { - "legacyId": 453, - "legacyData": 0, "id": "minecraft:knowledge_book", - "unlocalizedName": "item.knowledgeBook", - "localizedName": "Knowledge Book", - "maxDamage": 0, - "maxStackSize": 1 + "localizedName": "Knowledge Book" }, { - "legacyId": 2256, - "legacyData": 0, - "id": "minecraft:record_13", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:ladder", + "localizedName": "Air" }, { - "legacyId": 2257, - "legacyData": 0, - "id": "minecraft:record_cat", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:lapis_block", + "localizedName": "Air" }, { - "legacyId": 2258, - "legacyData": 0, - "id": "minecraft:record_blocks", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:lapis_lazuli", + "localizedName": "Lapis Lazuli" }, { - "legacyId": 2259, - "legacyData": 0, - "id": "minecraft:record_chirp", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:lapis_ore", + "localizedName": "Air" }, { - "legacyId": 2260, - "legacyData": 0, - "id": "minecraft:record_far", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:large_fern", + "localizedName": "Air" }, { - "legacyId": 2261, - "legacyData": 0, - "id": "minecraft:record_mall", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:lava_bucket", + "localizedName": "Lava Bucket" }, { - "legacyId": 2262, - "legacyData": 0, - "id": "minecraft:record_mellohi", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:lead", + "localizedName": "Lead" }, { - "legacyId": 2263, - "legacyData": 0, - "id": "minecraft:record_stal", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:leather", + "localizedName": "Leather" }, { - "legacyId": 2264, - "legacyData": 0, - "id": "minecraft:record_strad", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:leather_boots", + "localizedName": "Leather Boots" }, { - "legacyId": 2265, - "legacyData": 0, - "id": "minecraft:record_ward", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:leather_chestplate", + "localizedName": "Leather Tunic" }, { - "legacyId": 2266, - "legacyData": 0, - "id": "minecraft:record_11", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:leather_helmet", + "localizedName": "Leather Cap" }, { - "legacyId": 2267, - "legacyData": 0, - "id": "minecraft:record_wait", - "unlocalizedName": "item.record", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 + "id": "minecraft:leather_leggings", + "localizedName": "Leather Pants" + }, + { + "id": "minecraft:lever", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_dye", + "localizedName": "Light Blue Dye" + }, + { + "id": "minecraft:light_blue_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:light_blue_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_dye", + "localizedName": "Light Gray Dye" + }, + { + "id": "minecraft:light_gray_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:light_gray_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:lilac", + "localizedName": "Air" + }, + { + "id": "minecraft:lily_pad", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_dye", + "localizedName": "Lime Dye" + }, + { + "id": "minecraft:lime_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:lime_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:lingering_potion", + "localizedName": "Lingering Potion" + }, + { + "id": "minecraft:llama_spawn_egg", + "localizedName": "Llama Spawn Egg" + }, + { + "id": "minecraft:magenta_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_dye", + "localizedName": "Magenta Dye" + }, + { + "id": "minecraft:magenta_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:magenta_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:magma_block", + "localizedName": "Air" + }, + { + "id": "minecraft:magma_cream", + "localizedName": "Magma Cream" + }, + { + "id": "minecraft:magma_cube_spawn_egg", + "localizedName": "Magma Cube Spawn Egg" + }, + { + "id": "minecraft:map", + "localizedName": "Empty Map" + }, + { + "id": "minecraft:melon", + "localizedName": "Air" + }, + { + "id": "minecraft:melon_seeds", + "localizedName": "Melon Seeds" + }, + { + "id": "minecraft:melon_slice", + "localizedName": "Melon Slice" + }, + { + "id": "minecraft:milk_bucket", + "localizedName": "Milk Bucket" + }, + { + "id": "minecraft:minecart", + "localizedName": "Minecart" + }, + { + "id": "minecraft:mooshroom_spawn_egg", + "localizedName": "Mooshroom Spawn Egg" + }, + { + "id": "minecraft:mossy_cobblestone", + "localizedName": "Air" + }, + { + "id": "minecraft:mossy_cobblestone_wall", + "localizedName": "Air" + }, + { + "id": "minecraft:mossy_stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:mule_spawn_egg", + "localizedName": "Mule Spawn Egg" + }, + { + "id": "minecraft:mushroom_stem", + "localizedName": "Air" + }, + { + "id": "minecraft:mushroom_stew", + "localizedName": "Mushroom Stew" + }, + { + "id": "minecraft:music_disc_11", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_13", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_blocks", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_cat", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_chirp", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_far", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_mall", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_mellohi", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_stal", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_strad", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_wait", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:music_disc_ward", + "localizedName": "Music Disc" + }, + { + "id": "minecraft:mutton", + "localizedName": "Raw Mutton" + }, + { + "id": "minecraft:mycelium", + "localizedName": "Air" + }, + { + "id": "minecraft:name_tag", + "localizedName": "Name Tag" + }, + { + "id": "minecraft:nautilus_shell", + "localizedName": "Nautilus Shell" + }, + { + "id": "minecraft:nether_brick", + "localizedName": "Nether Brick" + }, + { + "id": "minecraft:nether_brick_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:nether_brick_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:nether_brick_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:nether_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:nether_quartz_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:nether_star", + "localizedName": "Nether Star" + }, + { + "id": "minecraft:nether_wart", + "localizedName": "Nether Wart" + }, + { + "id": "minecraft:nether_wart_block", + "localizedName": "Air" + }, + { + "id": "minecraft:netherrack", + "localizedName": "Air" + }, + { + "id": "minecraft:note_block", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_boat", + "localizedName": "Oak Boat" + }, + { + "id": "minecraft:oak_button", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_door", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_log", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:oak_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:observer", + "localizedName": "Air" + }, + { + "id": "minecraft:obsidian", + "localizedName": "Air" + }, + { + "id": "minecraft:ocelot_spawn_egg", + "localizedName": "Ocelot Spawn Egg" + }, + { + "id": "minecraft:orange_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_dye", + "localizedName": "Orange Dye" + }, + { + "id": "minecraft:orange_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_tulip", + "localizedName": "Air" + }, + { + "id": "minecraft:orange_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:oxeye_daisy", + "localizedName": "Air" + }, + { + "id": "minecraft:packed_ice", + "localizedName": "Air" + }, + { + "id": "minecraft:painting", + "localizedName": "Painting" + }, + { + "id": "minecraft:paper", + "localizedName": "Paper" + }, + { + "id": "minecraft:parrot_spawn_egg", + "localizedName": "Parrot Spawn Egg" + }, + { + "id": "minecraft:peony", + "localizedName": "Air" + }, + { + "id": "minecraft:petrified_oak_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:phantom_membrane", + "localizedName": "Phantom Membrane" + }, + { + "id": "minecraft:phantom_spawn_egg", + "localizedName": "Phantom Spawn Egg" + }, + { + "id": "minecraft:pig_spawn_egg", + "localizedName": "Pig Spawn Egg" + }, + { + "id": "minecraft:pink_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_dye", + "localizedName": "Pink Dye" + }, + { + "id": "minecraft:pink_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_tulip", + "localizedName": "Air" + }, + { + "id": "minecraft:pink_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:piston", + "localizedName": "Air" + }, + { + "id": "minecraft:player_head", + "localizedName": "Air" + }, + { + "id": "minecraft:podzol", + "localizedName": "Air" + }, + { + "id": "minecraft:poisonous_potato", + "localizedName": "Poisonous Potato" + }, + { + "id": "minecraft:polar_bear_spawn_egg", + "localizedName": "Polar Bear Spawn Egg" + }, + { + "id": "minecraft:polished_andesite", + "localizedName": "Air" + }, + { + "id": "minecraft:polished_diorite", + "localizedName": "Air" + }, + { + "id": "minecraft:polished_granite", + "localizedName": "Air" + }, + { + "id": "minecraft:popped_chorus_fruit", + "localizedName": "Popped Chorus Fruit" + }, + { + "id": "minecraft:poppy", + "localizedName": "Air" + }, + { + "id": "minecraft:porkchop", + "localizedName": "Raw Porkchop" + }, + { + "id": "minecraft:potato", + "localizedName": "Potato" + }, + { + "id": "minecraft:potion", + "localizedName": "Potion" + }, + { + "id": "minecraft:powered_rail", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine_brick_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine_brick_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine_crystals", + "localizedName": "Prismarine Crystals" + }, + { + "id": "minecraft:prismarine_shard", + "localizedName": "Prismarine Shard" + }, + { + "id": "minecraft:prismarine_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:prismarine_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:pufferfish", + "localizedName": "Pufferfish" + }, + { + "id": "minecraft:pufferfish_bucket", + "localizedName": "Bucket of Pufferfish" + }, + { + "id": "minecraft:pufferfish_spawn_egg", + "localizedName": "Pufferfish Spawn Egg" + }, + { + "id": "minecraft:pumpkin", + "localizedName": "Air" + }, + { + "id": "minecraft:pumpkin_pie", + "localizedName": "Pumpkin Pie" + }, + { + "id": "minecraft:pumpkin_seeds", + "localizedName": "Pumpkin Seeds" + }, + { + "id": "minecraft:purple_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_dye", + "localizedName": "Purple Dye" + }, + { + "id": "minecraft:purple_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:purple_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:purpur_block", + "localizedName": "Air" + }, + { + "id": "minecraft:purpur_pillar", + "localizedName": "Air" + }, + { + "id": "minecraft:purpur_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:purpur_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:quartz", + "localizedName": "Nether Quartz" + }, + { + "id": "minecraft:quartz_block", + "localizedName": "Air" + }, + { + "id": "minecraft:quartz_pillar", + "localizedName": "Air" + }, + { + "id": "minecraft:quartz_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:quartz_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:rabbit", + "localizedName": "Raw Rabbit" + }, + { + "id": "minecraft:rabbit_foot", + "localizedName": "Rabbit\u0027s Foot" + }, + { + "id": "minecraft:rabbit_hide", + "localizedName": "Rabbit Hide" + }, + { + "id": "minecraft:rabbit_spawn_egg", + "localizedName": "Rabbit Spawn Egg" + }, + { + "id": "minecraft:rabbit_stew", + "localizedName": "Rabbit Stew" + }, + { + "id": "minecraft:rail", + "localizedName": "Air" + }, + { + "id": "minecraft:red_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:red_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:red_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:red_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:red_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:red_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:red_mushroom", + "localizedName": "Air" + }, + { + "id": "minecraft:red_mushroom_block", + "localizedName": "Air" + }, + { + "id": "minecraft:red_nether_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:red_sand", + "localizedName": "Air" + }, + { + "id": "minecraft:red_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:red_sandstone_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:red_sandstone_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:red_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:red_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:red_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:red_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:red_tulip", + "localizedName": "Air" + }, + { + "id": "minecraft:red_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:redstone", + "localizedName": "Air" + }, + { + "id": "minecraft:redstone_block", + "localizedName": "Air" + }, + { + "id": "minecraft:redstone_lamp", + "localizedName": "Air" + }, + { + "id": "minecraft:redstone_ore", + "localizedName": "Air" + }, + { + "id": "minecraft:redstone_torch", + "localizedName": "Air" + }, + { + "id": "minecraft:repeater", + "localizedName": "Air" + }, + { + "id": "minecraft:repeating_command_block", + "localizedName": "Air" + }, + { + "id": "minecraft:rose_bush", + "localizedName": "Air" + }, + { + "id": "minecraft:rose_red", + "localizedName": "Rose Red" + }, + { + "id": "minecraft:rotten_flesh", + "localizedName": "Rotten Flesh" + }, + { + "id": "minecraft:saddle", + "localizedName": "Saddle" + }, + { + "id": "minecraft:salmon", + "localizedName": "Raw Salmon" + }, + { + "id": "minecraft:salmon_bucket", + "localizedName": "Bucket of Salmon" + }, + { + "id": "minecraft:salmon_spawn_egg", + "localizedName": "Salmon Spawn Egg" + }, + { + "id": "minecraft:sand", + "localizedName": "Air" + }, + { + "id": "minecraft:sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:sandstone_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:sandstone_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:scute", + "localizedName": "Scute" + }, + { + "id": "minecraft:sea_lantern", + "localizedName": "Air" + }, + { + "id": "minecraft:sea_pickle", + "localizedName": "Air" + }, + { + "id": "minecraft:seagrass", + "localizedName": "Air" + }, + { + "id": "minecraft:shears", + "localizedName": "Shears" + }, + { + "id": "minecraft:sheep_spawn_egg", + "localizedName": "Sheep Spawn Egg" + }, + { + "id": "minecraft:shield", + "localizedName": "Shield" + }, + { + "id": "minecraft:shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:shulker_shell", + "localizedName": "Shulker Shell" + }, + { + "id": "minecraft:shulker_spawn_egg", + "localizedName": "Shulker Spawn Egg" + }, + { + "id": "minecraft:sign", + "localizedName": "Air" + }, + { + "id": "minecraft:silverfish_spawn_egg", + "localizedName": "Silverfish Spawn Egg" + }, + { + "id": "minecraft:skeleton_horse_spawn_egg", + "localizedName": "Skeleton Horse Spawn Egg" + }, + { + "id": "minecraft:skeleton_skull", + "localizedName": "Air" + }, + { + "id": "minecraft:skeleton_spawn_egg", + "localizedName": "Skeleton Spawn Egg" + }, + { + "id": "minecraft:slime_ball", + "localizedName": "Slimeball" + }, + { + "id": "minecraft:slime_block", + "localizedName": "Air" + }, + { + "id": "minecraft:slime_spawn_egg", + "localizedName": "Slime Spawn Egg" + }, + { + "id": "minecraft:smooth_quartz", + "localizedName": "Air" + }, + { + "id": "minecraft:smooth_red_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:smooth_sandstone", + "localizedName": "Air" + }, + { + "id": "minecraft:smooth_stone", + "localizedName": "Air" + }, + { + "id": "minecraft:snow", + "localizedName": "Air" + }, + { + "id": "minecraft:snow_block", + "localizedName": "Air" + }, + { + "id": "minecraft:snowball", + "localizedName": "Snowball" + }, + { + "id": "minecraft:soul_sand", + "localizedName": "Air" + }, + { + "id": "minecraft:spawner", + "localizedName": "Air" + }, + { + "id": "minecraft:spectral_arrow", + "localizedName": "Spectral Arrow" + }, + { + "id": "minecraft:spider_eye", + "localizedName": "Spider Eye" + }, + { + "id": "minecraft:spider_spawn_egg", + "localizedName": "Spider Spawn Egg" + }, + { + "id": "minecraft:splash_potion", + "localizedName": "Splash Potion" + }, + { + "id": "minecraft:sponge", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_boat", + "localizedName": "Spruce Boat" + }, + { + "id": "minecraft:spruce_button", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_door", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_fence", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_fence_gate", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_leaves", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_log", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_planks", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_sapling", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_trapdoor", + "localizedName": "Air" + }, + { + "id": "minecraft:spruce_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:squid_spawn_egg", + "localizedName": "Squid Spawn Egg" + }, + { + "id": "minecraft:stick", + "localizedName": "Stick" + }, + { + "id": "minecraft:sticky_piston", + "localizedName": "Air" + }, + { + "id": "minecraft:stone", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_axe", + "localizedName": "Stone Axe" + }, + { + "id": "minecraft:stone_brick_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_brick_stairs", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_bricks", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_button", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_hoe", + "localizedName": "Stone Hoe" + }, + { + "id": "minecraft:stone_pickaxe", + "localizedName": "Stone Pickaxe" + }, + { + "id": "minecraft:stone_pressure_plate", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_shovel", + "localizedName": "Stone Shovel" + }, + { + "id": "minecraft:stone_slab", + "localizedName": "Air" + }, + { + "id": "minecraft:stone_sword", + "localizedName": "Stone Sword" + }, + { + "id": "minecraft:stray_spawn_egg", + "localizedName": "Stray Spawn Egg" + }, + { + "id": "minecraft:string", + "localizedName": "String" + }, + { + "id": "minecraft:stripped_acacia_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_acacia_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_birch_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_birch_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_dark_oak_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_dark_oak_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_jungle_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_jungle_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_oak_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_oak_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_spruce_log", + "localizedName": "Air" + }, + { + "id": "minecraft:stripped_spruce_wood", + "localizedName": "Air" + }, + { + "id": "minecraft:structure_block", + "localizedName": "Air" + }, + { + "id": "minecraft:structure_void", + "localizedName": "Air" + }, + { + "id": "minecraft:sugar", + "localizedName": "Sugar" + }, + { + "id": "minecraft:sugar_cane", + "localizedName": "Air" + }, + { + "id": "minecraft:sunflower", + "localizedName": "Air" + }, + { + "id": "minecraft:tall_grass", + "localizedName": "Air" + }, + { + "id": "minecraft:terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:tipped_arrow", + "localizedName": "Tipped Arrow" + }, + { + "id": "minecraft:tnt", + "localizedName": "Air" + }, + { + "id": "minecraft:tnt_minecart", + "localizedName": "Minecart with TNT" + }, + { + "id": "minecraft:torch", + "localizedName": "Air" + }, + { + "id": "minecraft:totem_of_undying", + "localizedName": "Totem of Undying" + }, + { + "id": "minecraft:trapped_chest", + "localizedName": "Air" + }, + { + "id": "minecraft:trident", + "localizedName": "Trident" + }, + { + "id": "minecraft:tripwire_hook", + "localizedName": "Air" + }, + { + "id": "minecraft:tropical_fish", + "localizedName": "Tropical Fish" + }, + { + "id": "minecraft:tropical_fish_bucket", + "localizedName": "Bucket of Tropical Fish" + }, + { + "id": "minecraft:tropical_fish_spawn_egg", + "localizedName": "Tropical Fish Spawn Egg" + }, + { + "id": "minecraft:tube_coral", + "localizedName": "Air" + }, + { + "id": "minecraft:tube_coral_block", + "localizedName": "Air" + }, + { + "id": "minecraft:tube_coral_fan", + "localizedName": "Air" + }, + { + "id": "minecraft:turtle_egg", + "localizedName": "Air" + }, + { + "id": "minecraft:turtle_helmet", + "localizedName": "Turtle Shell" + }, + { + "id": "minecraft:turtle_spawn_egg", + "localizedName": "Turtle Spawn Egg" + }, + { + "id": "minecraft:vex_spawn_egg", + "localizedName": "Vex Spawn Egg" + }, + { + "id": "minecraft:villager_spawn_egg", + "localizedName": "Villager Spawn Egg" + }, + { + "id": "minecraft:vindicator_spawn_egg", + "localizedName": "Vindicator Spawn Egg" + }, + { + "id": "minecraft:vine", + "localizedName": "Air" + }, + { + "id": "minecraft:water_bucket", + "localizedName": "Water Bucket" + }, + { + "id": "minecraft:wet_sponge", + "localizedName": "Air" + }, + { + "id": "minecraft:wheat", + "localizedName": "Wheat" + }, + { + "id": "minecraft:wheat_seeds", + "localizedName": "Wheat Seeds" + }, + { + "id": "minecraft:white_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:white_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:white_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:white_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:white_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:white_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:white_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:white_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:white_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:white_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:white_tulip", + "localizedName": "Air" + }, + { + "id": "minecraft:white_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:witch_spawn_egg", + "localizedName": "Witch Spawn Egg" + }, + { + "id": "minecraft:wither_skeleton_skull", + "localizedName": "Air" + }, + { + "id": "minecraft:wither_skeleton_spawn_egg", + "localizedName": "Wither Skeleton Spawn Egg" + }, + { + "id": "minecraft:wolf_spawn_egg", + "localizedName": "Wolf Spawn Egg" + }, + { + "id": "minecraft:wooden_axe", + "localizedName": "Wooden Axe" + }, + { + "id": "minecraft:wooden_hoe", + "localizedName": "Wooden Hoe" + }, + { + "id": "minecraft:wooden_pickaxe", + "localizedName": "Wooden Pickaxe" + }, + { + "id": "minecraft:wooden_shovel", + "localizedName": "Wooden Shovel" + }, + { + "id": "minecraft:wooden_sword", + "localizedName": "Wooden Sword" + }, + { + "id": "minecraft:writable_book", + "localizedName": "Book and Quill" + }, + { + "id": "minecraft:written_book", + "localizedName": "Written Book" + }, + { + "id": "minecraft:yellow_banner", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_bed", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_carpet", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_concrete", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_concrete_powder", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_glazed_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_shulker_box", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_stained_glass", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_terracotta", + "localizedName": "Air" + }, + { + "id": "minecraft:yellow_wool", + "localizedName": "Air" + }, + { + "id": "minecraft:zombie_head", + "localizedName": "Air" + }, + { + "id": "minecraft:zombie_horse_spawn_egg", + "localizedName": "Zombie Horse Spawn Egg" + }, + { + "id": "minecraft:zombie_pigman_spawn_egg", + "localizedName": "Zombie Pigman Spawn Egg" + }, + { + "id": "minecraft:zombie_spawn_egg", + "localizedName": "Zombie Spawn Egg" + }, + { + "id": "minecraft:zombie_villager_spawn_egg", + "localizedName": "Zombie Villager Spawn Egg" } ] \ No newline at end of file