From 79910c57d78e27ae945910af13b9ac1d40fbf8ce Mon Sep 17 00:00:00 2001
From: wizjany
Date: Mon, 24 Jun 2019 23:15:07 -0400
Subject: [PATCH] Add 1.14 blocks, items, entities, and tags. (#490)
Should remain backwards compatible with 1.13. Removed blocks/items will
be forwarded to the "replacement" block/item. (e.g. BlockTypes.SIGN will
find OAK_SIGN on 1.14.)
---
.../factory/parser/DefaultBlockParser.java | 8 +-
.../extent/reorder/MultiStageReorder.java | 3 +
.../worldedit/world/biome/BiomeTypes.java | 4 +-
.../world/block/BlockCategories.java | 20 +-
.../worldedit/world/block/BlockTypes.java | 85 +-
.../worldedit/world/entity/EntityTypes.java | 7 +
.../worldedit/world/item/ItemCategories.java | 13 +-
.../sk89q/worldedit/world/item/ItemTypes.java | 100 +-
.../world/registry/BundledBlockData.java | 14 +-
.../world/registry/BundledItemData.java | 14 +-
.../worldedit/world/registry/blocks.114.json | 16902 ++++++++++++++++
.../worldedit/world/registry/items.114.json | 6141 ++++++
12 files changed, 23295 insertions(+), 16 deletions(-)
create mode 100644 worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.114.json
create mode 100644 worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.114.json
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/extension/factory/parser/DefaultBlockParser.java b/worldedit-core/src/main/java/com/sk89q/worldedit/extension/factory/parser/DefaultBlockParser.java
index 55a9089b0..32736265c 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/extension/factory/parser/DefaultBlockParser.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/extension/factory/parser/DefaultBlockParser.java
@@ -41,6 +41,7 @@ import com.sk89q.worldedit.registry.state.Property;
import com.sk89q.worldedit.util.HandSide;
import com.sk89q.worldedit.world.World;
import com.sk89q.worldedit.world.block.BaseBlock;
+import com.sk89q.worldedit.world.block.BlockCategories;
import com.sk89q.worldedit.world.block.BlockCategory;
import com.sk89q.worldedit.world.block.BlockState;
import com.sk89q.worldedit.world.block.BlockType;
@@ -346,9 +347,12 @@ public class DefaultBlockParser extends InputParser {
}
}
- final BlockCategory signCategory = BlockCategory.REGISTRY.get("minecraft:signs");
+ if (!context.isTryingLegacy()) {
+ return state.toBaseBlock();
+ }
+
if (blockType == BlockTypes.SIGN || blockType == BlockTypes.WALL_SIGN
- || signCategory != null && signCategory.contains(blockType)) {
+ || BlockCategories.SIGNS.contains(blockType)) {
// Allow special sign text syntax
String[] text = new String[4];
text[0] = blockAndExtraData.length > 1 ? blockAndExtraData[1] : "";
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/extent/reorder/MultiStageReorder.java b/worldedit-core/src/main/java/com/sk89q/worldedit/extent/reorder/MultiStageReorder.java
index 3e1a7d4fa..55ddbcb73 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/extent/reorder/MultiStageReorder.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/extent/reorder/MultiStageReorder.java
@@ -61,6 +61,8 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
BlockCategories.WOODEN_PRESSURE_PLATES.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.LAST));
BlockCategories.CARPETS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.LAST));
BlockCategories.RAILS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.LAST));
+ BlockCategories.BEDS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.LAST));
+ BlockCategories.SMALL_FLOWERS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.LAST));
priorityMap.put(BlockTypes.BLACK_BED, PlacementPriority.LAST);
priorityMap.put(BlockTypes.BLUE_BED, PlacementPriority.LAST);
priorityMap.put(BlockTypes.BROWN_BED, PlacementPriority.LAST);
@@ -128,6 +130,7 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
// Final
BlockCategories.DOORS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.FINAL));
BlockCategories.BANNERS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.FINAL));
+ BlockCategories.SIGNS.getAll().forEach(type -> priorityMap.put(type, PlacementPriority.FINAL));
priorityMap.put(BlockTypes.SIGN, PlacementPriority.FINAL);
priorityMap.put(BlockTypes.WALL_SIGN, PlacementPriority.FINAL);
priorityMap.put(BlockTypes.CACTUS, PlacementPriority.FINAL);
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java
index a9d07a5fc..f12228e2d 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java
@@ -24,10 +24,12 @@ import javax.annotation.Nullable;
/**
* Stores a list of common Biome String IDs.
*/
-public class BiomeTypes {
+public final class BiomeTypes {
@Nullable public static final BiomeType BADLANDS = get("minecraft:badlands");
@Nullable public static final BiomeType BADLANDS_PLATEAU = get("minecraft:badlands_plateau");
+ @Nullable public static final BiomeType BAMBOO_JUNGLE = get("minecraft:bamboo_jungle");
+ @Nullable public static final BiomeType BAMBOO_JUNGLE_HILLS = get("minecraft:bamboo_jungle_hills");
@Nullable public static final BiomeType BEACH = get("minecraft:beach");
@Nullable public static final BiomeType BIRCH_FOREST = get("minecraft:birch_forest");
@Nullable public static final BiomeType BIRCH_FOREST_HILLS = get("minecraft:birch_forest_hills");
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java
index 28c3385d5..f85fcca37 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java
@@ -26,17 +26,24 @@ public final class BlockCategories {
public static final BlockCategory ACACIA_LOGS = get("minecraft:acacia_logs");
public static final BlockCategory ANVIL = get("minecraft:anvil");
+ public static final BlockCategory BAMBOO_PLANTABLE_ON = get("minecraft:bamboo_plantable_on");
public static final BlockCategory BANNERS = get("minecraft:banners");
+ public static final BlockCategory BEDS = get("minecraft:beds");
public static final BlockCategory BIRCH_LOGS = get("minecraft:birch_logs");
public static final BlockCategory BUTTONS = get("minecraft:buttons");
public static final BlockCategory CARPETS = get("minecraft:carpets");
- public static final BlockCategory CORALS = get("minecraft:corals");
public static final BlockCategory CORAL_BLOCKS = get("minecraft:coral_blocks");
+ public static final BlockCategory CORAL_PLANTS = get("minecraft:coral_plants");
+ public static final BlockCategory CORALS = get("minecraft:corals");
public static final BlockCategory DARK_OAK_LOGS = get("minecraft:dark_oak_logs");
+ public static final BlockCategory DIRT_LIKE = get("minecraft:dirt_like");
public static final BlockCategory DOORS = get("minecraft:doors");
+ public static final BlockCategory DRAGON_IMMUNE = get("minecraft:dragon_immune");
public static final BlockCategory ENDERMAN_HOLDABLE = get("minecraft:enderman_holdable");
+ public static final BlockCategory FENCES = get("minecraft:fences");
public static final BlockCategory FLOWER_POTS = get("minecraft:flower_pots");
public static final BlockCategory ICE = get("minecraft:ice");
+ public static final BlockCategory IMPERMEABLE = get("minecraft:impermeable");
public static final BlockCategory JUNGLE_LOGS = get("minecraft:jungle_logs");
public static final BlockCategory LEAVES = get("minecraft:leaves");
public static final BlockCategory LOGS = get("minecraft:logs");
@@ -45,16 +52,27 @@ public final class BlockCategories {
public static final BlockCategory RAILS = get("minecraft:rails");
public static final BlockCategory SAND = get("minecraft:sand");
public static final BlockCategory SAPLINGS = get("minecraft:saplings");
+ public static final BlockCategory SIGNS = get("minecraft:signs");
public static final BlockCategory SLABS = get("minecraft:slabs");
+ public static final BlockCategory SMALL_FLOWERS = get("minecraft:small_flowers");
public static final BlockCategory SPRUCE_LOGS = get("minecraft:spruce_logs");
public static final BlockCategory STAIRS = get("minecraft:stairs");
+ public static final BlockCategory STANDING_SIGNS = get("minecraft:standing_signs");
public static final BlockCategory STONE_BRICKS = get("minecraft:stone_bricks");
+ public static final BlockCategory TRAPDOORS = get("minecraft:trapdoors");
+ public static final BlockCategory UNDERWATER_BONEMEALS = get("minecraft:underwater_bonemeals");
public static final BlockCategory VALID_SPAWN = get("minecraft:valid_spawn");
+ public static final BlockCategory WALL_CORALS = get("minecraft:wall_corals");
+ public static final BlockCategory WALL_SIGNS = get("minecraft:wall_signs");
+ public static final BlockCategory WALLS = get("minecraft:walls");
+ public static final BlockCategory WITHER_IMMUNE = get("minecraft:wither_immune");
public static final BlockCategory WOODEN_BUTTONS = get("minecraft:wooden_buttons");
public static final BlockCategory WOODEN_DOORS = get("minecraft:wooden_doors");
+ public static final BlockCategory WOODEN_FENCES = get("minecraft:wooden_fences");
public static final BlockCategory WOODEN_PRESSURE_PLATES = get("minecraft:wooden_pressure_plates");
public static final BlockCategory WOODEN_SLABS = get("minecraft:wooden_slabs");
public static final BlockCategory WOODEN_STAIRS = get("minecraft:wooden_stairs");
+ public static final BlockCategory WOODEN_TRAPDOORS = get("minecraft:wooden_trapdoors");
public static final BlockCategory WOOL = get("minecraft:wool");
private BlockCategories() {
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 1b8b44bcc..dd989ba91 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
@@ -20,6 +20,7 @@
package com.sk89q.worldedit.world.block;
import javax.annotation.Nullable;
+import java.util.Optional;
/**
* Stores a list of common Block String IDs.
@@ -35,22 +36,31 @@ public final class BlockTypes {
@Nullable public static final BlockType ACACIA_PLANKS = get("minecraft:acacia_planks");
@Nullable public static final BlockType ACACIA_PRESSURE_PLATE = get("minecraft:acacia_pressure_plate");
@Nullable public static final BlockType ACACIA_SAPLING = get("minecraft:acacia_sapling");
+ @Nullable public static final BlockType ACACIA_SIGN = get("minecraft:acacia_sign");
@Nullable public static final BlockType ACACIA_SLAB = get("minecraft:acacia_slab");
@Nullable public static final BlockType ACACIA_STAIRS = get("minecraft:acacia_stairs");
@Nullable public static final BlockType ACACIA_TRAPDOOR = get("minecraft:acacia_trapdoor");
+ @Nullable public static final BlockType ACACIA_WALL_SIGN = get("minecraft:acacia_wall_sign");
@Nullable public static final BlockType ACACIA_WOOD = get("minecraft:acacia_wood");
@Nullable public static final BlockType ACTIVATOR_RAIL = get("minecraft:activator_rail");
@Nullable public static final BlockType AIR = get("minecraft:air");
@Nullable public static final BlockType ALLIUM = get("minecraft:allium");
@Nullable public static final BlockType ANDESITE = get("minecraft:andesite");
+ @Nullable public static final BlockType ANDESITE_SLAB = get("minecraft:andesite_slab");
+ @Nullable public static final BlockType ANDESITE_STAIRS = get("minecraft:andesite_stairs");
+ @Nullable public static final BlockType ANDESITE_WALL = get("minecraft:andesite_wall");
@Nullable public static final BlockType ANVIL = get("minecraft:anvil");
@Nullable public static final BlockType ATTACHED_MELON_STEM = get("minecraft:attached_melon_stem");
@Nullable public static final BlockType ATTACHED_PUMPKIN_STEM = get("minecraft:attached_pumpkin_stem");
@Nullable public static final BlockType AZURE_BLUET = get("minecraft:azure_bluet");
+ @Nullable public static final BlockType BAMBOO = get("minecraft:bamboo");
+ @Nullable public static final BlockType BAMBOO_SAPLING = get("minecraft:bamboo_sapling");
+ @Nullable public static final BlockType BARREL = get("minecraft:barrel");
@Nullable public static final BlockType BARRIER = get("minecraft:barrier");
@Nullable public static final BlockType BEACON = get("minecraft:beacon");
@Nullable public static final BlockType BEDROCK = get("minecraft:bedrock");
@Nullable public static final BlockType BEETROOTS = get("minecraft:beetroots");
+ @Nullable public static final BlockType BELL = get("minecraft:bell");
@Nullable public static final BlockType BIRCH_BUTTON = get("minecraft:birch_button");
@Nullable public static final BlockType BIRCH_DOOR = get("minecraft:birch_door");
@Nullable public static final BlockType BIRCH_FENCE = get("minecraft:birch_fence");
@@ -60,9 +70,11 @@ public final class BlockTypes {
@Nullable public static final BlockType BIRCH_PLANKS = get("minecraft:birch_planks");
@Nullable public static final BlockType BIRCH_PRESSURE_PLATE = get("minecraft:birch_pressure_plate");
@Nullable public static final BlockType BIRCH_SAPLING = get("minecraft:birch_sapling");
+ @Nullable public static final BlockType BIRCH_SIGN = get("minecraft:birch_sign");
@Nullable public static final BlockType BIRCH_SLAB = get("minecraft:birch_slab");
@Nullable public static final BlockType BIRCH_STAIRS = get("minecraft:birch_stairs");
@Nullable public static final BlockType BIRCH_TRAPDOOR = get("minecraft:birch_trapdoor");
+ @Nullable public static final BlockType BIRCH_WALL_SIGN = get("minecraft:birch_wall_sign");
@Nullable public static final BlockType BIRCH_WOOD = get("minecraft:birch_wood");
@Nullable public static final BlockType BLACK_BANNER = get("minecraft:black_banner");
@Nullable public static final BlockType BLACK_BED = get("minecraft:black_bed");
@@ -76,6 +88,7 @@ public final class BlockTypes {
@Nullable public static final BlockType BLACK_TERRACOTTA = get("minecraft:black_terracotta");
@Nullable public static final BlockType BLACK_WALL_BANNER = get("minecraft:black_wall_banner");
@Nullable public static final BlockType BLACK_WOOL = get("minecraft:black_wool");
+ @Nullable public static final BlockType BLAST_FURNACE = get("minecraft:blast_furnace");
@Nullable public static final BlockType BLUE_BANNER = get("minecraft:blue_banner");
@Nullable public static final BlockType BLUE_BED = get("minecraft:blue_bed");
@Nullable public static final BlockType BLUE_CARPET = get("minecraft:blue_carpet");
@@ -99,6 +112,7 @@ public final class BlockTypes {
@Nullable public static final BlockType BREWING_STAND = get("minecraft:brewing_stand");
@Nullable public static final BlockType BRICK_SLAB = get("minecraft:brick_slab");
@Nullable public static final BlockType BRICK_STAIRS = get("minecraft:brick_stairs");
+ @Nullable public static final BlockType BRICK_WALL = get("minecraft:brick_wall");
@Nullable public static final BlockType BRICKS = get("minecraft:bricks");
@Nullable public static final BlockType BROWN_BANNER = get("minecraft:brown_banner");
@Nullable public static final BlockType BROWN_BED = get("minecraft:brown_bed");
@@ -121,7 +135,9 @@ public final class BlockTypes {
@Nullable public static final BlockType BUBBLE_CORAL_WALL_FAN = get("minecraft:bubble_coral_wall_fan");
@Nullable public static final BlockType CACTUS = get("minecraft:cactus");
@Nullable public static final BlockType CAKE = get("minecraft:cake");
+ @Nullable public static final BlockType CAMPFIRE = get("minecraft:campfire");
@Nullable public static final BlockType CARROTS = get("minecraft:carrots");
+ @Nullable public static final BlockType CARTOGRAPHY_TABLE = get("minecraft:cartography_table");
@Nullable public static final BlockType CARVED_PUMPKIN = get("minecraft:carved_pumpkin");
@Nullable public static final BlockType CAULDRON = get("minecraft:cauldron");
@Nullable public static final BlockType CAVE_AIR = get("minecraft:cave_air");
@@ -146,13 +162,17 @@ public final class BlockTypes {
@Nullable public static final BlockType COCOA = get("minecraft:cocoa");
@Nullable public static final BlockType COMMAND_BLOCK = get("minecraft:command_block");
@Nullable public static final BlockType COMPARATOR = get("minecraft:comparator");
+ @Nullable public static final BlockType COMPOSTER = get("minecraft:composter");
@Nullable public static final BlockType CONDUIT = get("minecraft:conduit");
+ @Nullable public static final BlockType CORNFLOWER = get("minecraft:cornflower");
@Nullable public static final BlockType CRACKED_STONE_BRICKS = get("minecraft:cracked_stone_bricks");
@Nullable public static final BlockType CRAFTING_TABLE = get("minecraft:crafting_table");
@Nullable public static final BlockType CREEPER_HEAD = get("minecraft:creeper_head");
@Nullable public static final BlockType CREEPER_WALL_HEAD = get("minecraft:creeper_wall_head");
@Nullable public static final BlockType CUT_RED_SANDSTONE = get("minecraft:cut_red_sandstone");
+ @Nullable public static final BlockType CUT_RED_SANDSTONE_SLAB = get("minecraft:cut_red_sandstone_slab");
@Nullable public static final BlockType CUT_SANDSTONE = get("minecraft:cut_sandstone");
+ @Nullable public static final BlockType CUT_SANDSTONE_SLAB = get("minecraft:cut_sandstone_slab");
@Nullable public static final BlockType CYAN_BANNER = get("minecraft:cyan_banner");
@Nullable public static final BlockType CYAN_BED = get("minecraft:cyan_bed");
@Nullable public static final BlockType CYAN_CARPET = get("minecraft:cyan_carpet");
@@ -176,9 +196,11 @@ public final class BlockTypes {
@Nullable public static final BlockType DARK_OAK_PLANKS = get("minecraft:dark_oak_planks");
@Nullable public static final BlockType DARK_OAK_PRESSURE_PLATE = get("minecraft:dark_oak_pressure_plate");
@Nullable public static final BlockType DARK_OAK_SAPLING = get("minecraft:dark_oak_sapling");
+ @Nullable public static final BlockType DARK_OAK_SIGN = get("minecraft:dark_oak_sign");
@Nullable public static final BlockType DARK_OAK_SLAB = get("minecraft:dark_oak_slab");
@Nullable public static final BlockType DARK_OAK_STAIRS = get("minecraft:dark_oak_stairs");
@Nullable public static final BlockType DARK_OAK_TRAPDOOR = get("minecraft:dark_oak_trapdoor");
+ @Nullable public static final BlockType DARK_OAK_WALL_SIGN = get("minecraft:dark_oak_wall_sign");
@Nullable public static final BlockType DARK_OAK_WOOD = get("minecraft:dark_oak_wood");
@Nullable public static final BlockType DARK_PRISMARINE = get("minecraft:dark_prismarine");
@Nullable public static final BlockType DARK_PRISMARINE_SLAB = get("minecraft:dark_prismarine_slab");
@@ -209,6 +231,9 @@ public final class BlockTypes {
@Nullable public static final BlockType DIAMOND_BLOCK = get("minecraft:diamond_block");
@Nullable public static final BlockType DIAMOND_ORE = get("minecraft:diamond_ore");
@Nullable public static final BlockType DIORITE = get("minecraft:diorite");
+ @Nullable public static final BlockType DIORITE_SLAB = get("minecraft:diorite_slab");
+ @Nullable public static final BlockType DIORITE_STAIRS = get("minecraft:diorite_stairs");
+ @Nullable public static final BlockType DIORITE_WALL = get("minecraft:diorite_wall");
@Nullable public static final BlockType DIRT = get("minecraft:dirt");
@Nullable public static final BlockType DISPENSER = get("minecraft:dispenser");
@Nullable public static final BlockType DRAGON_EGG = get("minecraft:dragon_egg");
@@ -224,6 +249,9 @@ public final class BlockTypes {
@Nullable public static final BlockType END_PORTAL_FRAME = get("minecraft:end_portal_frame");
@Nullable public static final BlockType END_ROD = get("minecraft:end_rod");
@Nullable public static final BlockType END_STONE = get("minecraft:end_stone");
+ @Nullable public static final BlockType END_STONE_BRICK_SLAB = get("minecraft:end_stone_brick_slab");
+ @Nullable public static final BlockType END_STONE_BRICK_STAIRS = get("minecraft:end_stone_brick_stairs");
+ @Nullable public static final BlockType END_STONE_BRICK_WALL = get("minecraft:end_stone_brick_wall");
@Nullable public static final BlockType END_STONE_BRICKS = get("minecraft:end_stone_bricks");
@Nullable public static final BlockType ENDER_CHEST = get("minecraft:ender_chest");
@Nullable public static final BlockType FARMLAND = get("minecraft:farmland");
@@ -233,6 +261,7 @@ public final class BlockTypes {
@Nullable public static final BlockType FIRE_CORAL_BLOCK = get("minecraft:fire_coral_block");
@Nullable public static final BlockType FIRE_CORAL_FAN = get("minecraft:fire_coral_fan");
@Nullable public static final BlockType FIRE_CORAL_WALL_FAN = get("minecraft:fire_coral_wall_fan");
+ @Nullable public static final BlockType FLETCHING_TABLE = get("minecraft:fletching_table");
@Nullable public static final BlockType FLOWER_POT = get("minecraft:flower_pot");
@Nullable public static final BlockType FROSTED_ICE = get("minecraft:frosted_ice");
@Nullable public static final BlockType FURNACE = get("minecraft:furnace");
@@ -242,6 +271,9 @@ public final class BlockTypes {
@Nullable public static final BlockType GOLD_BLOCK = get("minecraft:gold_block");
@Nullable public static final BlockType GOLD_ORE = get("minecraft:gold_ore");
@Nullable public static final BlockType GRANITE = get("minecraft:granite");
+ @Nullable public static final BlockType GRANITE_SLAB = get("minecraft:granite_slab");
+ @Nullable public static final BlockType GRANITE_STAIRS = get("minecraft:granite_stairs");
+ @Nullable public static final BlockType GRANITE_WALL = get("minecraft:granite_wall");
@Nullable public static final BlockType GRASS = get("minecraft:grass");
@Nullable public static final BlockType GRASS_BLOCK = get("minecraft:grass_block");
@Nullable public static final BlockType GRASS_PATH = get("minecraft:grass_path");
@@ -270,6 +302,7 @@ public final class BlockTypes {
@Nullable public static final BlockType GREEN_TERRACOTTA = get("minecraft:green_terracotta");
@Nullable public static final BlockType GREEN_WALL_BANNER = get("minecraft:green_wall_banner");
@Nullable public static final BlockType GREEN_WOOL = get("minecraft:green_wool");
+ @Nullable public static final BlockType GRINDSTONE = get("minecraft:grindstone");
@Nullable public static final BlockType HAY_BLOCK = get("minecraft:hay_block");
@Nullable public static final BlockType HEAVY_WEIGHTED_PRESSURE_PLATE = get("minecraft:heavy_weighted_pressure_plate");
@Nullable public static final BlockType HOPPER = get("minecraft:hopper");
@@ -290,6 +323,7 @@ public final class BlockTypes {
@Nullable public static final BlockType IRON_ORE = get("minecraft:iron_ore");
@Nullable public static final BlockType IRON_TRAPDOOR = get("minecraft:iron_trapdoor");
@Nullable public static final BlockType JACK_O_LANTERN = get("minecraft:jack_o_lantern");
+ @Nullable public static final BlockType JIGSAW = get("minecraft:jigsaw");
@Nullable public static final BlockType JUKEBOX = get("minecraft:jukebox");
@Nullable public static final BlockType JUNGLE_BUTTON = get("minecraft:jungle_button");
@Nullable public static final BlockType JUNGLE_DOOR = get("minecraft:jungle_door");
@@ -300,17 +334,21 @@ public final class BlockTypes {
@Nullable public static final BlockType JUNGLE_PLANKS = get("minecraft:jungle_planks");
@Nullable public static final BlockType JUNGLE_PRESSURE_PLATE = get("minecraft:jungle_pressure_plate");
@Nullable public static final BlockType JUNGLE_SAPLING = get("minecraft:jungle_sapling");
+ @Nullable public static final BlockType JUNGLE_SIGN = get("minecraft:jungle_sign");
@Nullable public static final BlockType JUNGLE_SLAB = get("minecraft:jungle_slab");
@Nullable public static final BlockType JUNGLE_STAIRS = get("minecraft:jungle_stairs");
@Nullable public static final BlockType JUNGLE_TRAPDOOR = get("minecraft:jungle_trapdoor");
+ @Nullable public static final BlockType JUNGLE_WALL_SIGN = get("minecraft:jungle_wall_sign");
@Nullable public static final BlockType JUNGLE_WOOD = get("minecraft:jungle_wood");
@Nullable public static final BlockType KELP = get("minecraft:kelp");
@Nullable public static final BlockType KELP_PLANT = get("minecraft:kelp_plant");
@Nullable public static final BlockType LADDER = get("minecraft:ladder");
+ @Nullable public static final BlockType LANTERN = get("minecraft:lantern");
@Nullable public static final BlockType LAPIS_BLOCK = get("minecraft:lapis_block");
@Nullable public static final BlockType LAPIS_ORE = get("minecraft:lapis_ore");
@Nullable public static final BlockType LARGE_FERN = get("minecraft:large_fern");
@Nullable public static final BlockType LAVA = get("minecraft:lava");
+ @Nullable public static final BlockType LECTERN = get("minecraft:lectern");
@Nullable public static final BlockType LEVER = get("minecraft:lever");
@Nullable public static final BlockType LIGHT_BLUE_BANNER = get("minecraft:light_blue_banner");
@Nullable public static final BlockType LIGHT_BLUE_BED = get("minecraft:light_blue_bed");
@@ -338,6 +376,7 @@ public final class BlockTypes {
@Nullable public static final BlockType LIGHT_GRAY_WOOL = get("minecraft:light_gray_wool");
@Nullable public static final BlockType LIGHT_WEIGHTED_PRESSURE_PLATE = get("minecraft:light_weighted_pressure_plate");
@Nullable public static final BlockType LILAC = get("minecraft:lilac");
+ @Nullable public static final BlockType LILY_OF_THE_VALLEY = get("minecraft:lily_of_the_valley");
@Nullable public static final BlockType LILY_PAD = get("minecraft:lily_pad");
@Nullable public static final BlockType LIME_BANNER = get("minecraft:lime_banner");
@Nullable public static final BlockType LIME_BED = get("minecraft:lime_bed");
@@ -351,6 +390,7 @@ public final class BlockTypes {
@Nullable public static final BlockType LIME_TERRACOTTA = get("minecraft:lime_terracotta");
@Nullable public static final BlockType LIME_WALL_BANNER = get("minecraft:lime_wall_banner");
@Nullable public static final BlockType LIME_WOOL = get("minecraft:lime_wool");
+ @Nullable public static final BlockType LOOM = get("minecraft:loom");
@Nullable public static final BlockType MAGENTA_BANNER = get("minecraft:magenta_banner");
@Nullable public static final BlockType MAGENTA_BED = get("minecraft:magenta_bed");
@Nullable public static final BlockType MAGENTA_CARPET = get("minecraft:magenta_carpet");
@@ -367,7 +407,12 @@ public final class BlockTypes {
@Nullable public static final BlockType MELON = get("minecraft:melon");
@Nullable public static final BlockType MELON_STEM = get("minecraft:melon_stem");
@Nullable public static final BlockType MOSSY_COBBLESTONE = get("minecraft:mossy_cobblestone");
+ @Nullable public static final BlockType MOSSY_COBBLESTONE_SLAB = get("minecraft:mossy_cobblestone_slab");
+ @Nullable public static final BlockType MOSSY_COBBLESTONE_STAIRS = get("minecraft:mossy_cobblestone_stairs");
@Nullable public static final BlockType MOSSY_COBBLESTONE_WALL = get("minecraft:mossy_cobblestone_wall");
+ @Nullable public static final BlockType MOSSY_STONE_BRICK_SLAB = get("minecraft:mossy_stone_brick_slab");
+ @Nullable public static final BlockType MOSSY_STONE_BRICK_STAIRS = get("minecraft:mossy_stone_brick_stairs");
+ @Nullable public static final BlockType MOSSY_STONE_BRICK_WALL = get("minecraft:mossy_stone_brick_wall");
@Nullable public static final BlockType MOSSY_STONE_BRICKS = get("minecraft:mossy_stone_bricks");
@Nullable public static final BlockType MOVING_PISTON = get("minecraft:moving_piston");
@Nullable public static final BlockType MUSHROOM_STEM = get("minecraft:mushroom_stem");
@@ -375,6 +420,7 @@ public final class BlockTypes {
@Nullable public static final BlockType NETHER_BRICK_FENCE = get("minecraft:nether_brick_fence");
@Nullable public static final BlockType NETHER_BRICK_SLAB = get("minecraft:nether_brick_slab");
@Nullable public static final BlockType NETHER_BRICK_STAIRS = get("minecraft:nether_brick_stairs");
+ @Nullable public static final BlockType NETHER_BRICK_WALL = get("minecraft:nether_brick_wall");
@Nullable public static final BlockType NETHER_BRICKS = get("minecraft:nether_bricks");
@Nullable public static final BlockType NETHER_PORTAL = get("minecraft:nether_portal");
@Nullable public static final BlockType NETHER_QUARTZ_ORE = get("minecraft:nether_quartz_ore");
@@ -391,9 +437,11 @@ public final class BlockTypes {
@Nullable public static final BlockType OAK_PLANKS = get("minecraft:oak_planks");
@Nullable public static final BlockType OAK_PRESSURE_PLATE = get("minecraft:oak_pressure_plate");
@Nullable public static final BlockType OAK_SAPLING = get("minecraft:oak_sapling");
+ @Nullable public static final BlockType OAK_SIGN = get("minecraft:oak_sign");
@Nullable public static final BlockType OAK_SLAB = get("minecraft:oak_slab");
@Nullable public static final BlockType OAK_STAIRS = get("minecraft:oak_stairs");
@Nullable public static final BlockType OAK_TRAPDOOR = get("minecraft:oak_trapdoor");
+ @Nullable public static final BlockType OAK_WALL_SIGN = get("minecraft:oak_wall_sign");
@Nullable public static final BlockType OAK_WOOD = get("minecraft:oak_wood");
@Nullable public static final BlockType OBSERVER = get("minecraft:observer");
@Nullable public static final BlockType OBSIDIAN = get("minecraft:obsidian");
@@ -433,22 +481,31 @@ public final class BlockTypes {
@Nullable public static final BlockType PLAYER_WALL_HEAD = get("minecraft:player_wall_head");
@Nullable public static final BlockType PODZOL = get("minecraft:podzol");
@Nullable public static final BlockType POLISHED_ANDESITE = get("minecraft:polished_andesite");
+ @Nullable public static final BlockType POLISHED_ANDESITE_SLAB = get("minecraft:polished_andesite_slab");
+ @Nullable public static final BlockType POLISHED_ANDESITE_STAIRS = get("minecraft:polished_andesite_stairs");
@Nullable public static final BlockType POLISHED_DIORITE = get("minecraft:polished_diorite");
+ @Nullable public static final BlockType POLISHED_DIORITE_SLAB = get("minecraft:polished_diorite_slab");
+ @Nullable public static final BlockType POLISHED_DIORITE_STAIRS = get("minecraft:polished_diorite_stairs");
@Nullable public static final BlockType POLISHED_GRANITE = get("minecraft:polished_granite");
+ @Nullable public static final BlockType POLISHED_GRANITE_SLAB = get("minecraft:polished_granite_slab");
+ @Nullable public static final BlockType POLISHED_GRANITE_STAIRS = get("minecraft:polished_granite_stairs");
@Nullable public static final BlockType POPPY = get("minecraft:poppy");
@Nullable public static final BlockType POTATOES = get("minecraft:potatoes");
@Nullable public static final BlockType POTTED_ACACIA_SAPLING = get("minecraft:potted_acacia_sapling");
@Nullable public static final BlockType POTTED_ALLIUM = get("minecraft:potted_allium");
@Nullable public static final BlockType POTTED_AZURE_BLUET = get("minecraft:potted_azure_bluet");
+ @Nullable public static final BlockType POTTED_BAMBOO = get("minecraft:potted_bamboo");
@Nullable public static final BlockType POTTED_BIRCH_SAPLING = get("minecraft:potted_birch_sapling");
@Nullable public static final BlockType POTTED_BLUE_ORCHID = get("minecraft:potted_blue_orchid");
@Nullable public static final BlockType POTTED_BROWN_MUSHROOM = get("minecraft:potted_brown_mushroom");
@Nullable public static final BlockType POTTED_CACTUS = get("minecraft:potted_cactus");
+ @Nullable public static final BlockType POTTED_CORNFLOWER = get("minecraft:potted_cornflower");
@Nullable public static final BlockType POTTED_DANDELION = get("minecraft:potted_dandelion");
@Nullable public static final BlockType POTTED_DARK_OAK_SAPLING = get("minecraft:potted_dark_oak_sapling");
@Nullable public static final BlockType POTTED_DEAD_BUSH = get("minecraft:potted_dead_bush");
@Nullable public static final BlockType POTTED_FERN = get("minecraft:potted_fern");
@Nullable public static final BlockType POTTED_JUNGLE_SAPLING = get("minecraft:potted_jungle_sapling");
+ @Nullable public static final BlockType POTTED_LILY_OF_THE_VALLEY = get("minecraft:potted_lily_of_the_valley");
@Nullable public static final BlockType POTTED_OAK_SAPLING = get("minecraft:potted_oak_sapling");
@Nullable public static final BlockType POTTED_ORANGE_TULIP = get("minecraft:potted_orange_tulip");
@Nullable public static final BlockType POTTED_OXEYE_DAISY = get("minecraft:potted_oxeye_daisy");
@@ -458,6 +515,7 @@ public final class BlockTypes {
@Nullable public static final BlockType POTTED_RED_TULIP = get("minecraft:potted_red_tulip");
@Nullable public static final BlockType POTTED_SPRUCE_SAPLING = get("minecraft:potted_spruce_sapling");
@Nullable public static final BlockType POTTED_WHITE_TULIP = get("minecraft:potted_white_tulip");
+ @Nullable public static final BlockType POTTED_WITHER_ROSE = get("minecraft:potted_wither_rose");
@Nullable public static final BlockType POWERED_RAIL = get("minecraft:powered_rail");
@Nullable public static final BlockType PRISMARINE = get("minecraft:prismarine");
@Nullable public static final BlockType PRISMARINE_BRICK_SLAB = get("minecraft:prismarine_brick_slab");
@@ -465,6 +523,7 @@ public final class BlockTypes {
@Nullable public static final BlockType PRISMARINE_BRICKS = get("minecraft:prismarine_bricks");
@Nullable public static final BlockType PRISMARINE_SLAB = get("minecraft:prismarine_slab");
@Nullable public static final BlockType PRISMARINE_STAIRS = get("minecraft:prismarine_stairs");
+ @Nullable public static final BlockType PRISMARINE_WALL = get("minecraft:prismarine_wall");
@Nullable public static final BlockType PUMPKIN = get("minecraft:pumpkin");
@Nullable public static final BlockType PUMPKIN_STEM = get("minecraft:pumpkin_stem");
@Nullable public static final BlockType PURPLE_BANNER = get("minecraft:purple_banner");
@@ -496,11 +555,15 @@ public final class BlockTypes {
@Nullable public static final BlockType RED_GLAZED_TERRACOTTA = get("minecraft:red_glazed_terracotta");
@Nullable public static final BlockType RED_MUSHROOM = get("minecraft:red_mushroom");
@Nullable public static final BlockType RED_MUSHROOM_BLOCK = get("minecraft:red_mushroom_block");
+ @Nullable public static final BlockType RED_NETHER_BRICK_SLAB = get("minecraft:red_nether_brick_slab");
+ @Nullable public static final BlockType RED_NETHER_BRICK_STAIRS = get("minecraft:red_nether_brick_stairs");
+ @Nullable public static final BlockType RED_NETHER_BRICK_WALL = get("minecraft:red_nether_brick_wall");
@Nullable public static final BlockType RED_NETHER_BRICKS = get("minecraft:red_nether_bricks");
@Nullable public static final BlockType RED_SAND = get("minecraft:red_sand");
@Nullable public static final BlockType RED_SANDSTONE = get("minecraft:red_sandstone");
@Nullable public static final BlockType RED_SANDSTONE_SLAB = get("minecraft:red_sandstone_slab");
@Nullable public static final BlockType RED_SANDSTONE_STAIRS = get("minecraft:red_sandstone_stairs");
+ @Nullable public static final BlockType RED_SANDSTONE_WALL = get("minecraft:red_sandstone_wall");
@Nullable public static final BlockType RED_SHULKER_BOX = get("minecraft:red_shulker_box");
@Nullable public static final BlockType RED_STAINED_GLASS = get("minecraft:red_stained_glass");
@Nullable public static final BlockType RED_STAINED_GLASS_PANE = get("minecraft:red_stained_glass_pane");
@@ -521,18 +584,29 @@ public final class BlockTypes {
@Nullable public static final BlockType SANDSTONE = get("minecraft:sandstone");
@Nullable public static final BlockType SANDSTONE_SLAB = get("minecraft:sandstone_slab");
@Nullable public static final BlockType SANDSTONE_STAIRS = get("minecraft:sandstone_stairs");
+ @Nullable public static final BlockType SANDSTONE_WALL = get("minecraft:sandstone_wall");
+ @Nullable public static final BlockType SCAFFOLDING = get("minecraft:scaffolding");
@Nullable public static final BlockType SEA_LANTERN = get("minecraft:sea_lantern");
@Nullable public static final BlockType SEA_PICKLE = get("minecraft:sea_pickle");
@Nullable public static final BlockType SEAGRASS = get("minecraft:seagrass");
@Nullable public static final BlockType SHULKER_BOX = get("minecraft:shulker_box");
- @Nullable public static final BlockType SIGN = get("minecraft:sign");
+ @Deprecated @Nullable public static final BlockType SIGN = Optional.ofNullable(get("minecraft:sign")).orElse(get("minecraft:oak_sign"));
@Nullable public static final BlockType SKELETON_SKULL = get("minecraft:skeleton_skull");
@Nullable public static final BlockType SKELETON_WALL_SKULL = get("minecraft:skeleton_wall_skull");
@Nullable public static final BlockType SLIME_BLOCK = get("minecraft:slime_block");
+ @Nullable public static final BlockType SMITHING_TABLE = get("minecraft:smithing_table");
+ @Nullable public static final BlockType SMOKER = get("minecraft:smoker");
@Nullable public static final BlockType SMOOTH_QUARTZ = get("minecraft:smooth_quartz");
+ @Nullable public static final BlockType SMOOTH_QUARTZ_SLAB = get("minecraft:smooth_quartz_slab");
+ @Nullable public static final BlockType SMOOTH_QUARTZ_STAIRS = get("minecraft:smooth_quartz_stairs");
@Nullable public static final BlockType SMOOTH_RED_SANDSTONE = get("minecraft:smooth_red_sandstone");
+ @Nullable public static final BlockType SMOOTH_RED_SANDSTONE_SLAB = get("minecraft:smooth_red_sandstone_slab");
+ @Nullable public static final BlockType SMOOTH_RED_SANDSTONE_STAIRS = get("minecraft:smooth_red_sandstone_stairs");
@Nullable public static final BlockType SMOOTH_SANDSTONE = get("minecraft:smooth_sandstone");
+ @Nullable public static final BlockType SMOOTH_SANDSTONE_SLAB = get("minecraft:smooth_sandstone_slab");
+ @Nullable public static final BlockType SMOOTH_SANDSTONE_STAIRS = get("minecraft:smooth_sandstone_stairs");
@Nullable public static final BlockType SMOOTH_STONE = get("minecraft:smooth_stone");
+ @Nullable public static final BlockType SMOOTH_STONE_SLAB = get("minecraft:smooth_stone_slab");
@Nullable public static final BlockType SNOW = get("minecraft:snow");
@Nullable public static final BlockType SNOW_BLOCK = get("minecraft:snow_block");
@Nullable public static final BlockType SOUL_SAND = get("minecraft:soul_sand");
@@ -547,18 +621,23 @@ public final class BlockTypes {
@Nullable public static final BlockType SPRUCE_PLANKS = get("minecraft:spruce_planks");
@Nullable public static final BlockType SPRUCE_PRESSURE_PLATE = get("minecraft:spruce_pressure_plate");
@Nullable public static final BlockType SPRUCE_SAPLING = get("minecraft:spruce_sapling");
+ @Nullable public static final BlockType SPRUCE_SIGN = get("minecraft:spruce_sign");
@Nullable public static final BlockType SPRUCE_SLAB = get("minecraft:spruce_slab");
@Nullable public static final BlockType SPRUCE_STAIRS = get("minecraft:spruce_stairs");
@Nullable public static final BlockType SPRUCE_TRAPDOOR = get("minecraft:spruce_trapdoor");
+ @Nullable public static final BlockType SPRUCE_WALL_SIGN = get("minecraft:spruce_wall_sign");
@Nullable public static final BlockType SPRUCE_WOOD = get("minecraft:spruce_wood");
@Nullable public static final BlockType STICKY_PISTON = get("minecraft:sticky_piston");
@Nullable public static final BlockType STONE = get("minecraft:stone");
@Nullable public static final BlockType STONE_BRICK_SLAB = get("minecraft:stone_brick_slab");
@Nullable public static final BlockType STONE_BRICK_STAIRS = get("minecraft:stone_brick_stairs");
+ @Nullable public static final BlockType STONE_BRICK_WALL = get("minecraft:stone_brick_wall");
@Nullable public static final BlockType STONE_BRICKS = get("minecraft:stone_bricks");
@Nullable public static final BlockType STONE_BUTTON = get("minecraft:stone_button");
@Nullable public static final BlockType STONE_PRESSURE_PLATE = get("minecraft:stone_pressure_plate");
@Nullable public static final BlockType STONE_SLAB = get("minecraft:stone_slab");
+ @Nullable public static final BlockType STONE_STAIRS = get("minecraft:stone_stairs");
+ @Nullable public static final BlockType STONECUTTER = get("minecraft:stonecutter");
@Nullable public static final BlockType STRIPPED_ACACIA_LOG = get("minecraft:stripped_acacia_log");
@Nullable public static final BlockType STRIPPED_ACACIA_WOOD = get("minecraft:stripped_acacia_wood");
@Nullable public static final BlockType STRIPPED_BIRCH_LOG = get("minecraft:stripped_birch_log");
@@ -575,6 +654,7 @@ public final class BlockTypes {
@Nullable public static final BlockType STRUCTURE_VOID = get("minecraft:structure_void");
@Nullable public static final BlockType SUGAR_CANE = get("minecraft:sugar_cane");
@Nullable public static final BlockType SUNFLOWER = get("minecraft:sunflower");
+ @Nullable public static final BlockType SWEET_BERRY_BUSH = get("minecraft:sweet_berry_bush");
@Nullable public static final BlockType TALL_GRASS = get("minecraft:tall_grass");
@Nullable public static final BlockType TALL_SEAGRASS = get("minecraft:tall_seagrass");
@Nullable public static final BlockType TERRACOTTA = get("minecraft:terracotta");
@@ -590,7 +670,7 @@ public final class BlockTypes {
@Nullable public static final BlockType TURTLE_EGG = get("minecraft:turtle_egg");
@Nullable public static final BlockType VINE = get("minecraft:vine");
@Nullable public static final BlockType VOID_AIR = get("minecraft:void_air");
- @Nullable public static final BlockType WALL_SIGN = get("minecraft:wall_sign");
+ @Deprecated @Nullable public static final BlockType WALL_SIGN = Optional.ofNullable(get("minecraft:wall_sign")).orElse(get("minecraft:oak_wall_sign"));
@Nullable public static final BlockType WALL_TORCH = get("minecraft:wall_torch");
@Nullable public static final BlockType WATER = get("minecraft:water");
@Nullable public static final BlockType WET_SPONGE = get("minecraft:wet_sponge");
@@ -608,6 +688,7 @@ public final class BlockTypes {
@Nullable public static final BlockType WHITE_TULIP = get("minecraft:white_tulip");
@Nullable public static final BlockType WHITE_WALL_BANNER = get("minecraft:white_wall_banner");
@Nullable public static final BlockType WHITE_WOOL = get("minecraft:white_wool");
+ @Nullable public static final BlockType WITHER_ROSE = get("minecraft:wither_rose");
@Nullable public static final BlockType WITHER_SKELETON_SKULL = get("minecraft:wither_skeleton_skull");
@Nullable public static final BlockType WITHER_SKELETON_WALL_SKULL = get("minecraft:wither_skeleton_wall_skull");
@Nullable public static final BlockType YELLOW_BANNER = get("minecraft:yellow_banner");
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java
index f98fd96c2..36b6831ae 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java
@@ -29,6 +29,7 @@ public class EntityTypes {
@Nullable public static final EntityType BAT = get("minecraft:bat");
@Nullable public static final EntityType BLAZE = get("minecraft:blaze");
@Nullable public static final EntityType BOAT = get("minecraft:boat");
+ @Nullable public static final EntityType CAT = get("minecraft:cat");
@Nullable public static final EntityType CAVE_SPIDER = get("minecraft:cave_spider");
@Nullable public static final EntityType CHEST_MINECART = get("minecraft:chest_minecart");
@Nullable public static final EntityType CHICKEN = get("minecraft:chicken");
@@ -56,6 +57,7 @@ public class EntityTypes {
@Nullable public static final EntityType FIREBALL = get("minecraft:fireball");
@Nullable public static final EntityType FIREWORK_ROCKET = get("minecraft:firework_rocket");
@Nullable public static final EntityType FISHING_BOBBER = get("minecraft:fishing_bobber");
+ @Nullable public static final EntityType FOX = get("minecraft:fox");
@Nullable public static final EntityType FURNACE_MINECART = get("minecraft:furnace_minecart");
@Nullable public static final EntityType GHAST = get("minecraft:ghast");
@Nullable public static final EntityType GIANT = get("minecraft:giant");
@@ -77,14 +79,17 @@ public class EntityTypes {
@Nullable public static final EntityType MULE = get("minecraft:mule");
@Nullable public static final EntityType OCELOT = get("minecraft:ocelot");
@Nullable public static final EntityType PAINTING = get("minecraft:painting");
+ @Nullable public static final EntityType PANDA = get("minecraft:panda");
@Nullable public static final EntityType PARROT = get("minecraft:parrot");
@Nullable public static final EntityType PHANTOM = get("minecraft:phantom");
@Nullable public static final EntityType PIG = get("minecraft:pig");
+ @Nullable public static final EntityType PILLAGER = get("minecraft:pillager");
@Nullable public static final EntityType PLAYER = get("minecraft:player");
@Nullable public static final EntityType POLAR_BEAR = get("minecraft:polar_bear");
@Nullable public static final EntityType POTION = get("minecraft:potion");
@Nullable public static final EntityType PUFFERFISH = get("minecraft:pufferfish");
@Nullable public static final EntityType RABBIT = get("minecraft:rabbit");
+ @Nullable public static final EntityType RAVAGER = get("minecraft:ravager");
@Nullable public static final EntityType SALMON = get("minecraft:salmon");
@Nullable public static final EntityType SHEEP = get("minecraft:sheep");
@Nullable public static final EntityType SHULKER = get("minecraft:shulker");
@@ -103,12 +108,14 @@ public class EntityTypes {
@Nullable public static final EntityType STRAY = get("minecraft:stray");
@Nullable public static final EntityType TNT = get("minecraft:tnt");
@Nullable public static final EntityType TNT_MINECART = get("minecraft:tnt_minecart");
+ @Nullable public static final EntityType TRADER_LLAMA = get("minecraft:trader_llama");
@Nullable public static final EntityType TRIDENT = get("minecraft:trident");
@Nullable public static final EntityType TROPICAL_FISH = get("minecraft:tropical_fish");
@Nullable public static final EntityType TURTLE = get("minecraft:turtle");
@Nullable public static final EntityType VEX = get("minecraft:vex");
@Nullable public static final EntityType VILLAGER = get("minecraft:villager");
@Nullable public static final EntityType VINDICATOR = get("minecraft:vindicator");
+ @Nullable public static final EntityType WANDERING_TRADER = get("minecraft:wandering_trader");
@Nullable public static final EntityType WITCH = get("minecraft:witch");
@Nullable public static final EntityType WITHER = get("minecraft:wither");
@Nullable public static final EntityType WITHER_SKELETON = get("minecraft:wither_skeleton");
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java
index 021d6834c..7dd006871 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java
@@ -26,33 +26,42 @@ public final class ItemCategories {
public static final ItemCategory ACACIA_LOGS = get("minecraft:acacia_logs");
public static final ItemCategory ANVIL = get("minecraft:anvil");
+ public static final ItemCategory ARROWS = get("minecraft:arrows");
public static final ItemCategory BANNERS = get("minecraft:banners");
+ public static final ItemCategory BEDS = get("minecraft:beds");
public static final ItemCategory BIRCH_LOGS = get("minecraft:birch_logs");
public static final ItemCategory BOATS = get("minecraft:boats");
public static final ItemCategory BUTTONS = get("minecraft:buttons");
public static final ItemCategory CARPETS = get("minecraft:carpets");
- public static final ItemCategory CORAL = get("minecraft:coral");
- public static final ItemCategory CORAL_PLANTS = get("minecraft:coral_plants");
+ public static final ItemCategory COALS = get("minecraft:coals");
public static final ItemCategory DARK_OAK_LOGS = get("minecraft:dark_oak_logs");
public static final ItemCategory DOORS = get("minecraft:doors");
+ public static final ItemCategory FENCES = get("minecraft:fences");
public static final ItemCategory FISHES = get("minecraft:fishes");
public static final ItemCategory JUNGLE_LOGS = get("minecraft:jungle_logs");
public static final ItemCategory LEAVES = get("minecraft:leaves");
public static final ItemCategory LOGS = get("minecraft:logs");
+ public static final ItemCategory MUSIC_DISCS = get("minecraft:music_discs");
public static final ItemCategory OAK_LOGS = get("minecraft:oak_logs");
public static final ItemCategory PLANKS = get("minecraft:planks");
public static final ItemCategory RAILS = get("minecraft:rails");
public static final ItemCategory SAND = get("minecraft:sand");
public static final ItemCategory SAPLINGS = get("minecraft:saplings");
+ public static final ItemCategory SIGNS = get("minecraft:signs");
public static final ItemCategory SLABS = get("minecraft:slabs");
+ public static final ItemCategory SMALL_FLOWERS = get("minecraft:small_flowers");
public static final ItemCategory SPRUCE_LOGS = get("minecraft:spruce_logs");
public static final ItemCategory STAIRS = get("minecraft:stairs");
public static final ItemCategory STONE_BRICKS = get("minecraft:stone_bricks");
+ public static final ItemCategory TRAPDOORS = get("minecraft:trapdoors");
+ public static final ItemCategory WALLS = get("minecraft:walls");
public static final ItemCategory WOODEN_BUTTONS = get("minecraft:wooden_buttons");
public static final ItemCategory WOODEN_DOORS = get("minecraft:wooden_doors");
+ public static final ItemCategory WOODEN_FENCES = get("minecraft:wooden_fences");
public static final ItemCategory WOODEN_PRESSURE_PLATES = get("minecraft:wooden_pressure_plates");
public static final ItemCategory WOODEN_SLABS = get("minecraft:wooden_slabs");
public static final ItemCategory WOODEN_STAIRS = get("minecraft:wooden_stairs");
+ public static final ItemCategory WOODEN_TRAPDOORS = get("minecraft:wooden_trapdoors");
public static final ItemCategory WOOL = get("minecraft:wool");
private ItemCategories() {
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 677ed2a8e..e773a4f6d 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
@@ -20,6 +20,7 @@
package com.sk89q.worldedit.world.item;
import javax.annotation.Nullable;
+import java.util.Optional;
public final class ItemTypes {
@@ -33,6 +34,7 @@ public final class ItemTypes {
@Nullable public static final ItemType ACACIA_PLANKS = get("minecraft:acacia_planks");
@Nullable public static final ItemType ACACIA_PRESSURE_PLATE = get("minecraft:acacia_pressure_plate");
@Nullable public static final ItemType ACACIA_SAPLING = get("minecraft:acacia_sapling");
+ @Nullable public static final ItemType ACACIA_SIGN = get("minecraft:acacia_sign");
@Nullable public static final ItemType ACACIA_SLAB = get("minecraft:acacia_slab");
@Nullable public static final ItemType ACACIA_STAIRS = get("minecraft:acacia_stairs");
@Nullable public static final ItemType ACACIA_TRAPDOOR = get("minecraft:acacia_trapdoor");
@@ -41,12 +43,17 @@ public final class ItemTypes {
@Nullable public static final ItemType AIR = get("minecraft:air");
@Nullable public static final ItemType ALLIUM = get("minecraft:allium");
@Nullable public static final ItemType ANDESITE = get("minecraft:andesite");
+ @Nullable public static final ItemType ANDESITE_SLAB = get("minecraft:andesite_slab");
+ @Nullable public static final ItemType ANDESITE_STAIRS = get("minecraft:andesite_stairs");
+ @Nullable public static final ItemType ANDESITE_WALL = get("minecraft:andesite_wall");
@Nullable public static final ItemType ANVIL = get("minecraft:anvil");
@Nullable public static final ItemType APPLE = get("minecraft:apple");
@Nullable public static final ItemType ARMOR_STAND = get("minecraft:armor_stand");
@Nullable public static final ItemType ARROW = get("minecraft:arrow");
@Nullable public static final ItemType AZURE_BLUET = get("minecraft:azure_bluet");
@Nullable public static final ItemType BAKED_POTATO = get("minecraft:baked_potato");
+ @Nullable public static final ItemType BAMBOO = get("minecraft:bamboo");
+ @Nullable public static final ItemType BARREL = get("minecraft:barrel");
@Nullable public static final ItemType BARRIER = get("minecraft:barrier");
@Nullable public static final ItemType BAT_SPAWN_EGG = get("minecraft:bat_spawn_egg");
@Nullable public static final ItemType BEACON = get("minecraft:beacon");
@@ -55,6 +62,7 @@ public final class ItemTypes {
@Nullable public static final ItemType BEETROOT = get("minecraft:beetroot");
@Nullable public static final ItemType BEETROOT_SEEDS = get("minecraft:beetroot_seeds");
@Nullable public static final ItemType BEETROOT_SOUP = get("minecraft:beetroot_soup");
+ @Nullable public static final ItemType BELL = get("minecraft:bell");
@Nullable public static final ItemType BIRCH_BOAT = get("minecraft:birch_boat");
@Nullable public static final ItemType BIRCH_BUTTON = get("minecraft:birch_button");
@Nullable public static final ItemType BIRCH_DOOR = get("minecraft:birch_door");
@@ -65,6 +73,7 @@ public final class ItemTypes {
@Nullable public static final ItemType BIRCH_PLANKS = get("minecraft:birch_planks");
@Nullable public static final ItemType BIRCH_PRESSURE_PLATE = get("minecraft:birch_pressure_plate");
@Nullable public static final ItemType BIRCH_SAPLING = get("minecraft:birch_sapling");
+ @Nullable public static final ItemType BIRCH_SIGN = get("minecraft:birch_sign");
@Nullable public static final ItemType BIRCH_SLAB = get("minecraft:birch_slab");
@Nullable public static final ItemType BIRCH_STAIRS = get("minecraft:birch_stairs");
@Nullable public static final ItemType BIRCH_TRAPDOOR = get("minecraft:birch_trapdoor");
@@ -74,12 +83,14 @@ public final class ItemTypes {
@Nullable public static final ItemType BLACK_CARPET = get("minecraft:black_carpet");
@Nullable public static final ItemType BLACK_CONCRETE = get("minecraft:black_concrete");
@Nullable public static final ItemType BLACK_CONCRETE_POWDER = get("minecraft:black_concrete_powder");
+ @Nullable public static final ItemType BLACK_DYE = get("minecraft:black_dye");
@Nullable public static final ItemType BLACK_GLAZED_TERRACOTTA = get("minecraft:black_glazed_terracotta");
@Nullable public static final ItemType BLACK_SHULKER_BOX = get("minecraft:black_shulker_box");
@Nullable public static final ItemType BLACK_STAINED_GLASS = get("minecraft:black_stained_glass");
@Nullable public static final ItemType BLACK_STAINED_GLASS_PANE = get("minecraft:black_stained_glass_pane");
@Nullable public static final ItemType BLACK_TERRACOTTA = get("minecraft:black_terracotta");
@Nullable public static final ItemType BLACK_WOOL = get("minecraft:black_wool");
+ @Nullable public static final ItemType BLAST_FURNACE = get("minecraft:blast_furnace");
@Nullable public static final ItemType BLAZE_POWDER = get("minecraft:blaze_powder");
@Nullable public static final ItemType BLAZE_ROD = get("minecraft:blaze_rod");
@Nullable public static final ItemType BLAZE_SPAWN_EGG = get("minecraft:blaze_spawn_egg");
@@ -88,6 +99,7 @@ public final class ItemTypes {
@Nullable public static final ItemType BLUE_CARPET = get("minecraft:blue_carpet");
@Nullable public static final ItemType BLUE_CONCRETE = get("minecraft:blue_concrete");
@Nullable public static final ItemType BLUE_CONCRETE_POWDER = get("minecraft:blue_concrete_powder");
+ @Nullable public static final ItemType BLUE_DYE = get("minecraft:blue_dye");
@Nullable public static final ItemType BLUE_GLAZED_TERRACOTTA = get("minecraft:blue_glazed_terracotta");
@Nullable public static final ItemType BLUE_ICE = get("minecraft:blue_ice");
@Nullable public static final ItemType BLUE_ORCHID = get("minecraft:blue_orchid");
@@ -111,12 +123,14 @@ public final class ItemTypes {
@Nullable public static final ItemType BRICK = get("minecraft:brick");
@Nullable public static final ItemType BRICK_SLAB = get("minecraft:brick_slab");
@Nullable public static final ItemType BRICK_STAIRS = get("minecraft:brick_stairs");
+ @Nullable public static final ItemType BRICK_WALL = get("minecraft:brick_wall");
@Nullable public static final ItemType BRICKS = get("minecraft:bricks");
@Nullable public static final ItemType BROWN_BANNER = get("minecraft:brown_banner");
@Nullable public static final ItemType BROWN_BED = get("minecraft:brown_bed");
@Nullable public static final ItemType BROWN_CARPET = get("minecraft:brown_carpet");
@Nullable public static final ItemType BROWN_CONCRETE = get("minecraft:brown_concrete");
@Nullable public static final ItemType BROWN_CONCRETE_POWDER = get("minecraft:brown_concrete_powder");
+ @Nullable public static final ItemType BROWN_DYE = get("minecraft:brown_dye");
@Nullable public static final ItemType BROWN_GLAZED_TERRACOTTA = get("minecraft:brown_glazed_terracotta");
@Nullable public static final ItemType BROWN_MUSHROOM = get("minecraft:brown_mushroom");
@Nullable public static final ItemType BROWN_MUSHROOM_BLOCK = get("minecraft:brown_mushroom_block");
@@ -130,11 +144,14 @@ public final class ItemTypes {
@Nullable public static final ItemType BUBBLE_CORAL_FAN = get("minecraft:bubble_coral_fan");
@Nullable public static final ItemType BUCKET = get("minecraft:bucket");
@Nullable public static final ItemType CACTUS = get("minecraft:cactus");
- @Nullable public static final ItemType CACTUS_GREEN = get("minecraft:cactus_green");
+ @Deprecated @Nullable public static final ItemType CACTUS_GREEN = Optional.ofNullable(get("minecraft:cactus_green")).orElseGet(() -> get("minecraft:green_dye"));
@Nullable public static final ItemType CAKE = get("minecraft:cake");
+ @Nullable public static final ItemType CAMPFIRE = get("minecraft:campfire");
@Nullable public static final ItemType CARROT = get("minecraft:carrot");
@Nullable public static final ItemType CARROT_ON_A_STICK = get("minecraft:carrot_on_a_stick");
+ @Nullable public static final ItemType CARTOGRAPHY_TABLE = get("minecraft:cartography_table");
@Nullable public static final ItemType CARVED_PUMPKIN = get("minecraft:carved_pumpkin");
+ @Nullable public static final ItemType CAT_SPAWN_EGG = get("minecraft:cat_spawn_egg");
@Nullable public static final ItemType CAULDRON = get("minecraft:cauldron");
@Nullable public static final ItemType CAVE_SPIDER_SPAWN_EGG = get("minecraft:cave_spider_spawn_egg");
@Nullable public static final ItemType CHAIN_COMMAND_BLOCK = get("minecraft:chain_command_block");
@@ -175,6 +192,7 @@ public final class ItemTypes {
@Nullable public static final ItemType COMMAND_BLOCK_MINECART = get("minecraft:command_block_minecart");
@Nullable public static final ItemType COMPARATOR = get("minecraft:comparator");
@Nullable public static final ItemType COMPASS = get("minecraft:compass");
+ @Nullable public static final ItemType COMPOSTER = get("minecraft:composter");
@Nullable public static final ItemType CONDUIT = get("minecraft:conduit");
@Nullable public static final ItemType COOKED_BEEF = get("minecraft:cooked_beef");
@Nullable public static final ItemType COOKED_CHICKEN = get("minecraft:cooked_chicken");
@@ -184,13 +202,18 @@ public final class ItemTypes {
@Nullable public static final ItemType COOKED_RABBIT = get("minecraft:cooked_rabbit");
@Nullable public static final ItemType COOKED_SALMON = get("minecraft:cooked_salmon");
@Nullable public static final ItemType COOKIE = get("minecraft:cookie");
+ @Nullable public static final ItemType CORNFLOWER = get("minecraft:cornflower");
@Nullable public static final ItemType COW_SPAWN_EGG = get("minecraft:cow_spawn_egg");
@Nullable public static final ItemType CRACKED_STONE_BRICKS = get("minecraft:cracked_stone_bricks");
@Nullable public static final ItemType CRAFTING_TABLE = get("minecraft:crafting_table");
+ @Nullable public static final ItemType CREEPER_BANNER_PATTERN = get("minecraft:creeper_banner_pattern");
@Nullable public static final ItemType CREEPER_HEAD = get("minecraft:creeper_head");
@Nullable public static final ItemType CREEPER_SPAWN_EGG = get("minecraft:creeper_spawn_egg");
+ @Nullable public static final ItemType CROSSBOW = get("minecraft:crossbow");
@Nullable public static final ItemType CUT_RED_SANDSTONE = get("minecraft:cut_red_sandstone");
+ @Nullable public static final ItemType CUT_RED_SANDSTONE_SLAB = get("minecraft:cut_red_sandstone_slab");
@Nullable public static final ItemType CUT_SANDSTONE = get("minecraft:cut_sandstone");
+ @Nullable public static final ItemType CUT_SANDSTONE_SLAB = get("minecraft:cut_sandstone_slab");
@Nullable public static final ItemType CYAN_BANNER = get("minecraft:cyan_banner");
@Nullable public static final ItemType CYAN_BED = get("minecraft:cyan_bed");
@Nullable public static final ItemType CYAN_CARPET = get("minecraft:cyan_carpet");
@@ -205,7 +228,7 @@ public final class ItemTypes {
@Nullable public static final ItemType CYAN_WOOL = get("minecraft:cyan_wool");
@Nullable public static final ItemType DAMAGED_ANVIL = get("minecraft:damaged_anvil");
@Nullable public static final ItemType DANDELION = get("minecraft:dandelion");
- @Nullable public static final ItemType DANDELION_YELLOW = get("minecraft:dandelion_yellow");
+ @Deprecated @Nullable public static final ItemType DANDELION_YELLOW = Optional.ofNullable(get("minecraft:dandelion_yellow")).orElseGet(() -> (get("minecraft:yellow_dye")));
@Nullable public static final ItemType DARK_OAK_BOAT = get("minecraft:dark_oak_boat");
@Nullable public static final ItemType DARK_OAK_BUTTON = get("minecraft:dark_oak_button");
@Nullable public static final ItemType DARK_OAK_DOOR = get("minecraft:dark_oak_door");
@@ -216,6 +239,7 @@ public final class ItemTypes {
@Nullable public static final ItemType DARK_OAK_PLANKS = get("minecraft:dark_oak_planks");
@Nullable public static final ItemType DARK_OAK_PRESSURE_PLATE = get("minecraft:dark_oak_pressure_plate");
@Nullable public static final ItemType DARK_OAK_SAPLING = get("minecraft:dark_oak_sapling");
+ @Nullable public static final ItemType DARK_OAK_SIGN = get("minecraft:dark_oak_sign");
@Nullable public static final ItemType DARK_OAK_SLAB = get("minecraft:dark_oak_slab");
@Nullable public static final ItemType DARK_OAK_STAIRS = get("minecraft:dark_oak_stairs");
@Nullable public static final ItemType DARK_OAK_TRAPDOOR = get("minecraft:dark_oak_trapdoor");
@@ -256,6 +280,9 @@ public final class ItemTypes {
@Nullable public static final ItemType DIAMOND_SHOVEL = get("minecraft:diamond_shovel");
@Nullable public static final ItemType DIAMOND_SWORD = get("minecraft:diamond_sword");
@Nullable public static final ItemType DIORITE = get("minecraft:diorite");
+ @Nullable public static final ItemType DIORITE_SLAB = get("minecraft:diorite_slab");
+ @Nullable public static final ItemType DIORITE_STAIRS = get("minecraft:diorite_stairs");
+ @Nullable public static final ItemType DIORITE_WALL = get("minecraft:diorite_wall");
@Nullable public static final ItemType DIRT = get("minecraft:dirt");
@Nullable public static final ItemType DISPENSER = get("minecraft:dispenser");
@Nullable public static final ItemType DOLPHIN_SPAWN_EGG = get("minecraft:dolphin_spawn_egg");
@@ -280,6 +307,9 @@ public final class ItemTypes {
@Nullable public static final ItemType END_PORTAL_FRAME = get("minecraft:end_portal_frame");
@Nullable public static final ItemType END_ROD = get("minecraft:end_rod");
@Nullable public static final ItemType END_STONE = get("minecraft:end_stone");
+ @Nullable public static final ItemType END_STONE_BRICK_SLAB = get("minecraft:end_stone_brick_slab");
+ @Nullable public static final ItemType END_STONE_BRICK_STAIRS = get("minecraft:end_stone_brick_stairs");
+ @Nullable public static final ItemType END_STONE_BRICK_WALL = get("minecraft:end_stone_brick_wall");
@Nullable public static final ItemType END_STONE_BRICKS = get("minecraft:end_stone_bricks");
@Nullable public static final ItemType ENDER_CHEST = get("minecraft:ender_chest");
@Nullable public static final ItemType ENDER_EYE = get("minecraft:ender_eye");
@@ -300,9 +330,12 @@ public final class ItemTypes {
@Nullable public static final ItemType FIREWORK_ROCKET = get("minecraft:firework_rocket");
@Nullable public static final ItemType FIREWORK_STAR = get("minecraft:firework_star");
@Nullable public static final ItemType FISHING_ROD = get("minecraft:fishing_rod");
+ @Nullable public static final ItemType FLETCHING_TABLE = get("minecraft:fletching_table");
@Nullable public static final ItemType FLINT = get("minecraft:flint");
@Nullable public static final ItemType FLINT_AND_STEEL = get("minecraft:flint_and_steel");
+ @Nullable public static final ItemType FLOWER_BANNER_PATTERN = get("minecraft:flower_banner_pattern");
@Nullable public static final ItemType FLOWER_POT = get("minecraft:flower_pot");
+ @Nullable public static final ItemType FOX_SPAWN_EGG = get("minecraft:fox_spawn_egg");
@Nullable public static final ItemType FURNACE = get("minecraft:furnace");
@Nullable public static final ItemType FURNACE_MINECART = get("minecraft:furnace_minecart");
@Nullable public static final ItemType GHAST_SPAWN_EGG = get("minecraft:ghast_spawn_egg");
@@ -311,6 +344,7 @@ public final class ItemTypes {
@Nullable public static final ItemType GLASS_BOTTLE = get("minecraft:glass_bottle");
@Nullable public static final ItemType GLASS_PANE = get("minecraft:glass_pane");
@Nullable public static final ItemType GLISTERING_MELON_SLICE = get("minecraft:glistering_melon_slice");
+ @Nullable public static final ItemType GLOBE_BANNER_PATTERN = get("minecraft:globe_banner_pattern");
@Nullable public static final ItemType GLOWSTONE = get("minecraft:glowstone");
@Nullable public static final ItemType GLOWSTONE_DUST = get("minecraft:glowstone_dust");
@Nullable public static final ItemType GOLD_BLOCK = get("minecraft:gold_block");
@@ -330,6 +364,9 @@ public final class ItemTypes {
@Nullable public static final ItemType GOLDEN_SHOVEL = get("minecraft:golden_shovel");
@Nullable public static final ItemType GOLDEN_SWORD = get("minecraft:golden_sword");
@Nullable public static final ItemType GRANITE = get("minecraft:granite");
+ @Nullable public static final ItemType GRANITE_SLAB = get("minecraft:granite_slab");
+ @Nullable public static final ItemType GRANITE_STAIRS = get("minecraft:granite_stairs");
+ @Nullable public static final ItemType GRANITE_WALL = get("minecraft:granite_wall");
@Nullable public static final ItemType GRASS = get("minecraft:grass");
@Nullable public static final ItemType GRASS_BLOCK = get("minecraft:grass_block");
@Nullable public static final ItemType GRASS_PATH = get("minecraft:grass_path");
@@ -351,12 +388,14 @@ public final class ItemTypes {
@Nullable public static final ItemType GREEN_CARPET = get("minecraft:green_carpet");
@Nullable public static final ItemType GREEN_CONCRETE = get("minecraft:green_concrete");
@Nullable public static final ItemType GREEN_CONCRETE_POWDER = get("minecraft:green_concrete_powder");
+ @Nullable public static final ItemType GREEN_DYE = get("minecraft:green_dye");
@Nullable public static final ItemType GREEN_GLAZED_TERRACOTTA = get("minecraft:green_glazed_terracotta");
@Nullable public static final ItemType GREEN_SHULKER_BOX = get("minecraft:green_shulker_box");
@Nullable public static final ItemType GREEN_STAINED_GLASS = get("minecraft:green_stained_glass");
@Nullable public static final ItemType GREEN_STAINED_GLASS_PANE = get("minecraft:green_stained_glass_pane");
@Nullable public static final ItemType GREEN_TERRACOTTA = get("minecraft:green_terracotta");
@Nullable public static final ItemType GREEN_WOOL = get("minecraft:green_wool");
+ @Nullable public static final ItemType GRINDSTONE = get("minecraft:grindstone");
@Nullable public static final ItemType GUARDIAN_SPAWN_EGG = get("minecraft:guardian_spawn_egg");
@Nullable public static final ItemType GUNPOWDER = get("minecraft:gunpowder");
@Nullable public static final ItemType HAY_BLOCK = get("minecraft:hay_block");
@@ -396,6 +435,7 @@ public final class ItemTypes {
@Nullable public static final ItemType IRON_TRAPDOOR = get("minecraft:iron_trapdoor");
@Nullable public static final ItemType ITEM_FRAME = get("minecraft:item_frame");
@Nullable public static final ItemType JACK_O_LANTERN = get("minecraft:jack_o_lantern");
+ @Nullable public static final ItemType JIGSAW = get("minecraft:jigsaw");
@Nullable public static final ItemType JUKEBOX = get("minecraft:jukebox");
@Nullable public static final ItemType JUNGLE_BOAT = get("minecraft:jungle_boat");
@Nullable public static final ItemType JUNGLE_BUTTON = get("minecraft:jungle_button");
@@ -407,6 +447,7 @@ public final class ItemTypes {
@Nullable public static final ItemType JUNGLE_PLANKS = get("minecraft:jungle_planks");
@Nullable public static final ItemType JUNGLE_PRESSURE_PLATE = get("minecraft:jungle_pressure_plate");
@Nullable public static final ItemType JUNGLE_SAPLING = get("minecraft:jungle_sapling");
+ @Nullable public static final ItemType JUNGLE_SIGN = get("minecraft:jungle_sign");
@Nullable public static final ItemType JUNGLE_SLAB = get("minecraft:jungle_slab");
@Nullable public static final ItemType JUNGLE_STAIRS = get("minecraft:jungle_stairs");
@Nullable public static final ItemType JUNGLE_TRAPDOOR = get("minecraft:jungle_trapdoor");
@@ -414,6 +455,7 @@ public final class ItemTypes {
@Nullable public static final ItemType KELP = get("minecraft:kelp");
@Nullable public static final ItemType KNOWLEDGE_BOOK = get("minecraft:knowledge_book");
@Nullable public static final ItemType LADDER = get("minecraft:ladder");
+ @Nullable public static final ItemType LANTERN = get("minecraft:lantern");
@Nullable public static final ItemType LAPIS_BLOCK = get("minecraft:lapis_block");
@Nullable public static final ItemType LAPIS_LAZULI = get("minecraft:lapis_lazuli");
@Nullable public static final ItemType LAPIS_ORE = get("minecraft:lapis_ore");
@@ -424,7 +466,9 @@ public final class ItemTypes {
@Nullable public static final ItemType LEATHER_BOOTS = get("minecraft:leather_boots");
@Nullable public static final ItemType LEATHER_CHESTPLATE = get("minecraft:leather_chestplate");
@Nullable public static final ItemType LEATHER_HELMET = get("minecraft:leather_helmet");
+ @Nullable public static final ItemType LEATHER_HORSE_ARMOR = get("minecraft:leather_horse_armor");
@Nullable public static final ItemType LEATHER_LEGGINGS = get("minecraft:leather_leggings");
+ @Nullable public static final ItemType LECTERN = get("minecraft:lectern");
@Nullable public static final ItemType LEVER = get("minecraft:lever");
@Nullable public static final ItemType LIGHT_BLUE_BANNER = get("minecraft:light_blue_banner");
@Nullable public static final ItemType LIGHT_BLUE_BED = get("minecraft:light_blue_bed");
@@ -452,6 +496,7 @@ public final class ItemTypes {
@Nullable public static final ItemType LIGHT_GRAY_WOOL = get("minecraft:light_gray_wool");
@Nullable public static final ItemType LIGHT_WEIGHTED_PRESSURE_PLATE = get("minecraft:light_weighted_pressure_plate");
@Nullable public static final ItemType LILAC = get("minecraft:lilac");
+ @Nullable public static final ItemType LILY_OF_THE_VALLEY = get("minecraft:lily_of_the_valley");
@Nullable public static final ItemType LILY_PAD = get("minecraft:lily_pad");
@Nullable public static final ItemType LIME_BANNER = get("minecraft:lime_banner");
@Nullable public static final ItemType LIME_BED = get("minecraft:lime_bed");
@@ -467,6 +512,7 @@ public final class ItemTypes {
@Nullable public static final ItemType LIME_WOOL = get("minecraft:lime_wool");
@Nullable public static final ItemType LINGERING_POTION = get("minecraft:lingering_potion");
@Nullable public static final ItemType LLAMA_SPAWN_EGG = get("minecraft:llama_spawn_egg");
+ @Nullable public static final ItemType LOOM = get("minecraft:loom");
@Nullable public static final ItemType MAGENTA_BANNER = get("minecraft:magenta_banner");
@Nullable public static final ItemType MAGENTA_BED = get("minecraft:magenta_bed");
@Nullable public static final ItemType MAGENTA_CARPET = get("minecraft:magenta_carpet");
@@ -488,9 +534,15 @@ public final class ItemTypes {
@Nullable public static final ItemType MELON_SLICE = get("minecraft:melon_slice");
@Nullable public static final ItemType MILK_BUCKET = get("minecraft:milk_bucket");
@Nullable public static final ItemType MINECART = get("minecraft:minecart");
+ @Nullable public static final ItemType MOJANG_BANNER_PATTERN = get("minecraft:mojang_banner_pattern");
@Nullable public static final ItemType MOOSHROOM_SPAWN_EGG = get("minecraft:mooshroom_spawn_egg");
@Nullable public static final ItemType MOSSY_COBBLESTONE = get("minecraft:mossy_cobblestone");
+ @Nullable public static final ItemType MOSSY_COBBLESTONE_SLAB = get("minecraft:mossy_cobblestone_slab");
+ @Nullable public static final ItemType MOSSY_COBBLESTONE_STAIRS = get("minecraft:mossy_cobblestone_stairs");
@Nullable public static final ItemType MOSSY_COBBLESTONE_WALL = get("minecraft:mossy_cobblestone_wall");
+ @Nullable public static final ItemType MOSSY_STONE_BRICK_SLAB = get("minecraft:mossy_stone_brick_slab");
+ @Nullable public static final ItemType MOSSY_STONE_BRICK_STAIRS = get("minecraft:mossy_stone_brick_stairs");
+ @Nullable public static final ItemType MOSSY_STONE_BRICK_WALL = get("minecraft:mossy_stone_brick_wall");
@Nullable public static final ItemType MOSSY_STONE_BRICKS = get("minecraft:mossy_stone_bricks");
@Nullable public static final ItemType MULE_SPAWN_EGG = get("minecraft:mule_spawn_egg");
@Nullable public static final ItemType MUSHROOM_STEM = get("minecraft:mushroom_stem");
@@ -515,6 +567,7 @@ public final class ItemTypes {
@Nullable public static final ItemType NETHER_BRICK_FENCE = get("minecraft:nether_brick_fence");
@Nullable public static final ItemType NETHER_BRICK_SLAB = get("minecraft:nether_brick_slab");
@Nullable public static final ItemType NETHER_BRICK_STAIRS = get("minecraft:nether_brick_stairs");
+ @Nullable public static final ItemType NETHER_BRICK_WALL = get("minecraft:nether_brick_wall");
@Nullable public static final ItemType NETHER_BRICKS = get("minecraft:nether_bricks");
@Nullable public static final ItemType NETHER_QUARTZ_ORE = get("minecraft:nether_quartz_ore");
@Nullable public static final ItemType NETHER_STAR = get("minecraft:nether_star");
@@ -532,6 +585,7 @@ public final class ItemTypes {
@Nullable public static final ItemType OAK_PLANKS = get("minecraft:oak_planks");
@Nullable public static final ItemType OAK_PRESSURE_PLATE = get("minecraft:oak_pressure_plate");
@Nullable public static final ItemType OAK_SAPLING = get("minecraft:oak_sapling");
+ @Nullable public static final ItemType OAK_SIGN = get("minecraft:oak_sign");
@Nullable public static final ItemType OAK_SLAB = get("minecraft:oak_slab");
@Nullable public static final ItemType OAK_STAIRS = get("minecraft:oak_stairs");
@Nullable public static final ItemType OAK_TRAPDOOR = get("minecraft:oak_trapdoor");
@@ -555,6 +609,7 @@ public final class ItemTypes {
@Nullable public static final ItemType OXEYE_DAISY = get("minecraft:oxeye_daisy");
@Nullable public static final ItemType PACKED_ICE = get("minecraft:packed_ice");
@Nullable public static final ItemType PAINTING = get("minecraft:painting");
+ @Nullable public static final ItemType PANDA_SPAWN_EGG = get("minecraft:panda_spawn_egg");
@Nullable public static final ItemType PAPER = get("minecraft:paper");
@Nullable public static final ItemType PARROT_SPAWN_EGG = get("minecraft:parrot_spawn_egg");
@Nullable public static final ItemType PEONY = get("minecraft:peony");
@@ -562,6 +617,7 @@ public final class ItemTypes {
@Nullable public static final ItemType PHANTOM_MEMBRANE = get("minecraft:phantom_membrane");
@Nullable public static final ItemType PHANTOM_SPAWN_EGG = get("minecraft:phantom_spawn_egg");
@Nullable public static final ItemType PIG_SPAWN_EGG = get("minecraft:pig_spawn_egg");
+ @Nullable public static final ItemType PILLAGER_SPAWN_EGG = get("minecraft:pillager_spawn_egg");
@Nullable public static final ItemType PINK_BANNER = get("minecraft:pink_banner");
@Nullable public static final ItemType PINK_BED = get("minecraft:pink_bed");
@Nullable public static final ItemType PINK_CARPET = get("minecraft:pink_carpet");
@@ -581,8 +637,14 @@ public final class ItemTypes {
@Nullable public static final ItemType POISONOUS_POTATO = get("minecraft:poisonous_potato");
@Nullable public static final ItemType POLAR_BEAR_SPAWN_EGG = get("minecraft:polar_bear_spawn_egg");
@Nullable public static final ItemType POLISHED_ANDESITE = get("minecraft:polished_andesite");
+ @Nullable public static final ItemType POLISHED_ANDESITE_SLAB = get("minecraft:polished_andesite_slab");
+ @Nullable public static final ItemType POLISHED_ANDESITE_STAIRS = get("minecraft:polished_andesite_stairs");
@Nullable public static final ItemType POLISHED_DIORITE = get("minecraft:polished_diorite");
+ @Nullable public static final ItemType POLISHED_DIORITE_SLAB = get("minecraft:polished_diorite_slab");
+ @Nullable public static final ItemType POLISHED_DIORITE_STAIRS = get("minecraft:polished_diorite_stairs");
@Nullable public static final ItemType POLISHED_GRANITE = get("minecraft:polished_granite");
+ @Nullable public static final ItemType POLISHED_GRANITE_SLAB = get("minecraft:polished_granite_slab");
+ @Nullable public static final ItemType POLISHED_GRANITE_STAIRS = get("minecraft:polished_granite_stairs");
@Nullable public static final ItemType POPPED_CHORUS_FRUIT = get("minecraft:popped_chorus_fruit");
@Nullable public static final ItemType POPPY = get("minecraft:poppy");
@Nullable public static final ItemType PORKCHOP = get("minecraft:porkchop");
@@ -597,6 +659,7 @@ public final class ItemTypes {
@Nullable public static final ItemType PRISMARINE_SHARD = get("minecraft:prismarine_shard");
@Nullable public static final ItemType PRISMARINE_SLAB = get("minecraft:prismarine_slab");
@Nullable public static final ItemType PRISMARINE_STAIRS = get("minecraft:prismarine_stairs");
+ @Nullable public static final ItemType PRISMARINE_WALL = get("minecraft:prismarine_wall");
@Nullable public static final ItemType PUFFERFISH = get("minecraft:pufferfish");
@Nullable public static final ItemType PUFFERFISH_BUCKET = get("minecraft:pufferfish_bucket");
@Nullable public static final ItemType PUFFERFISH_SPAWN_EGG = get("minecraft:pufferfish_spawn_egg");
@@ -630,19 +693,25 @@ public final class ItemTypes {
@Nullable public static final ItemType RABBIT_SPAWN_EGG = get("minecraft:rabbit_spawn_egg");
@Nullable public static final ItemType RABBIT_STEW = get("minecraft:rabbit_stew");
@Nullable public static final ItemType RAIL = get("minecraft:rail");
+ @Nullable public static final ItemType RAVAGER_SPAWN_EGG = get("minecraft:ravager_spawn_egg");
@Nullable public static final ItemType RED_BANNER = get("minecraft:red_banner");
@Nullable public static final ItemType RED_BED = get("minecraft:red_bed");
@Nullable public static final ItemType RED_CARPET = get("minecraft:red_carpet");
@Nullable public static final ItemType RED_CONCRETE = get("minecraft:red_concrete");
@Nullable public static final ItemType RED_CONCRETE_POWDER = get("minecraft:red_concrete_powder");
+ @Nullable public static final ItemType RED_DYE = get("minecraft:red_dye");
@Nullable public static final ItemType RED_GLAZED_TERRACOTTA = get("minecraft:red_glazed_terracotta");
@Nullable public static final ItemType RED_MUSHROOM = get("minecraft:red_mushroom");
@Nullable public static final ItemType RED_MUSHROOM_BLOCK = get("minecraft:red_mushroom_block");
+ @Nullable public static final ItemType RED_NETHER_BRICK_SLAB = get("minecraft:red_nether_brick_slab");
+ @Nullable public static final ItemType RED_NETHER_BRICK_STAIRS = get("minecraft:red_nether_brick_stairs");
+ @Nullable public static final ItemType RED_NETHER_BRICK_WALL = get("minecraft:red_nether_brick_wall");
@Nullable public static final ItemType RED_NETHER_BRICKS = get("minecraft:red_nether_bricks");
@Nullable public static final ItemType RED_SAND = get("minecraft:red_sand");
@Nullable public static final ItemType RED_SANDSTONE = get("minecraft:red_sandstone");
@Nullable public static final ItemType RED_SANDSTONE_SLAB = get("minecraft:red_sandstone_slab");
@Nullable public static final ItemType RED_SANDSTONE_STAIRS = get("minecraft:red_sandstone_stairs");
+ @Nullable public static final ItemType RED_SANDSTONE_WALL = get("minecraft:red_sandstone_wall");
@Nullable public static final ItemType RED_SHULKER_BOX = get("minecraft:red_shulker_box");
@Nullable public static final ItemType RED_STAINED_GLASS = get("minecraft:red_stained_glass");
@Nullable public static final ItemType RED_STAINED_GLASS_PANE = get("minecraft:red_stained_glass_pane");
@@ -657,7 +726,7 @@ public final class ItemTypes {
@Nullable public static final ItemType REPEATER = get("minecraft:repeater");
@Nullable public static final ItemType REPEATING_COMMAND_BLOCK = get("minecraft:repeating_command_block");
@Nullable public static final ItemType ROSE_BUSH = get("minecraft:rose_bush");
- @Nullable public static final ItemType ROSE_RED = get("minecraft:rose_red");
+ @Deprecated @Nullable public static final ItemType ROSE_RED = Optional.ofNullable(get("minecraft:rose_red")).orElseGet(() -> (get("minecraft:red_dye")));
@Nullable public static final ItemType ROTTEN_FLESH = get("minecraft:rotten_flesh");
@Nullable public static final ItemType SADDLE = get("minecraft:saddle");
@Nullable public static final ItemType SALMON = get("minecraft:salmon");
@@ -667,6 +736,8 @@ public final class ItemTypes {
@Nullable public static final ItemType SANDSTONE = get("minecraft:sandstone");
@Nullable public static final ItemType SANDSTONE_SLAB = get("minecraft:sandstone_slab");
@Nullable public static final ItemType SANDSTONE_STAIRS = get("minecraft:sandstone_stairs");
+ @Nullable public static final ItemType SANDSTONE_WALL = get("minecraft:sandstone_wall");
+ @Nullable public static final ItemType SCAFFOLDING = get("minecraft:scaffolding");
@Nullable public static final ItemType SCUTE = get("minecraft:scute");
@Nullable public static final ItemType SEA_LANTERN = get("minecraft:sea_lantern");
@Nullable public static final ItemType SEA_PICKLE = get("minecraft:sea_pickle");
@@ -677,18 +748,28 @@ public final class ItemTypes {
@Nullable public static final ItemType SHULKER_BOX = get("minecraft:shulker_box");
@Nullable public static final ItemType SHULKER_SHELL = get("minecraft:shulker_shell");
@Nullable public static final ItemType SHULKER_SPAWN_EGG = get("minecraft:shulker_spawn_egg");
- @Nullable public static final ItemType SIGN = get("minecraft:sign");
+ @Deprecated @Nullable public static final ItemType SIGN = Optional.ofNullable(get("minecraft:sign")).orElseGet(() -> (get("minecraft:oak_sign")));
@Nullable public static final ItemType SILVERFISH_SPAWN_EGG = get("minecraft:silverfish_spawn_egg");
@Nullable public static final ItemType SKELETON_HORSE_SPAWN_EGG = get("minecraft:skeleton_horse_spawn_egg");
@Nullable public static final ItemType SKELETON_SKULL = get("minecraft:skeleton_skull");
@Nullable public static final ItemType SKELETON_SPAWN_EGG = get("minecraft:skeleton_spawn_egg");
+ @Nullable public static final ItemType SKULL_BANNER_PATTERN = get("minecraft:skull_banner_pattern");
@Nullable public static final ItemType SLIME_BALL = get("minecraft:slime_ball");
@Nullable public static final ItemType SLIME_BLOCK = get("minecraft:slime_block");
@Nullable public static final ItemType SLIME_SPAWN_EGG = get("minecraft:slime_spawn_egg");
+ @Nullable public static final ItemType SMITHING_TABLE = get("minecraft:smithing_table");
+ @Nullable public static final ItemType SMOKER = get("minecraft:smoker");
@Nullable public static final ItemType SMOOTH_QUARTZ = get("minecraft:smooth_quartz");
+ @Nullable public static final ItemType SMOOTH_QUARTZ_SLAB = get("minecraft:smooth_quartz_slab");
+ @Nullable public static final ItemType SMOOTH_QUARTZ_STAIRS = get("minecraft:smooth_quartz_stairs");
@Nullable public static final ItemType SMOOTH_RED_SANDSTONE = get("minecraft:smooth_red_sandstone");
+ @Nullable public static final ItemType SMOOTH_RED_SANDSTONE_SLAB = get("minecraft:smooth_red_sandstone_slab");
+ @Nullable public static final ItemType SMOOTH_RED_SANDSTONE_STAIRS = get("minecraft:smooth_red_sandstone_stairs");
@Nullable public static final ItemType SMOOTH_SANDSTONE = get("minecraft:smooth_sandstone");
+ @Nullable public static final ItemType SMOOTH_SANDSTONE_SLAB = get("minecraft:smooth_sandstone_slab");
+ @Nullable public static final ItemType SMOOTH_SANDSTONE_STAIRS = get("minecraft:smooth_sandstone_stairs");
@Nullable public static final ItemType SMOOTH_STONE = get("minecraft:smooth_stone");
+ @Nullable public static final ItemType SMOOTH_STONE_SLAB = get("minecraft:smooth_stone_slab");
@Nullable public static final ItemType SNOW = get("minecraft:snow");
@Nullable public static final ItemType SNOW_BLOCK = get("minecraft:snow_block");
@Nullable public static final ItemType SNOWBALL = get("minecraft:snowball");
@@ -709,6 +790,7 @@ public final class ItemTypes {
@Nullable public static final ItemType SPRUCE_PLANKS = get("minecraft:spruce_planks");
@Nullable public static final ItemType SPRUCE_PRESSURE_PLATE = get("minecraft:spruce_pressure_plate");
@Nullable public static final ItemType SPRUCE_SAPLING = get("minecraft:spruce_sapling");
+ @Nullable public static final ItemType SPRUCE_SIGN = get("minecraft:spruce_sign");
@Nullable public static final ItemType SPRUCE_SLAB = get("minecraft:spruce_slab");
@Nullable public static final ItemType SPRUCE_STAIRS = get("minecraft:spruce_stairs");
@Nullable public static final ItemType SPRUCE_TRAPDOOR = get("minecraft:spruce_trapdoor");
@@ -720,6 +802,7 @@ public final class ItemTypes {
@Nullable public static final ItemType STONE_AXE = get("minecraft:stone_axe");
@Nullable public static final ItemType STONE_BRICK_SLAB = get("minecraft:stone_brick_slab");
@Nullable public static final ItemType STONE_BRICK_STAIRS = get("minecraft:stone_brick_stairs");
+ @Nullable public static final ItemType STONE_BRICK_WALL = get("minecraft:stone_brick_wall");
@Nullable public static final ItemType STONE_BRICKS = get("minecraft:stone_bricks");
@Nullable public static final ItemType STONE_BUTTON = get("minecraft:stone_button");
@Nullable public static final ItemType STONE_HOE = get("minecraft:stone_hoe");
@@ -727,7 +810,9 @@ public final class ItemTypes {
@Nullable public static final ItemType STONE_PRESSURE_PLATE = get("minecraft:stone_pressure_plate");
@Nullable public static final ItemType STONE_SHOVEL = get("minecraft:stone_shovel");
@Nullable public static final ItemType STONE_SLAB = get("minecraft:stone_slab");
+ @Nullable public static final ItemType STONE_STAIRS = get("minecraft:stone_stairs");
@Nullable public static final ItemType STONE_SWORD = get("minecraft:stone_sword");
+ @Nullable public static final ItemType STONECUTTER = get("minecraft:stonecutter");
@Nullable public static final ItemType STRAY_SPAWN_EGG = get("minecraft:stray_spawn_egg");
@Nullable public static final ItemType STRING = get("minecraft:string");
@Nullable public static final ItemType STRIPPED_ACACIA_LOG = get("minecraft:stripped_acacia_log");
@@ -747,6 +832,8 @@ public final class ItemTypes {
@Nullable public static final ItemType SUGAR = get("minecraft:sugar");
@Nullable public static final ItemType SUGAR_CANE = get("minecraft:sugar_cane");
@Nullable public static final ItemType SUNFLOWER = get("minecraft:sunflower");
+ @Nullable public static final ItemType SUSPICIOUS_STEW = get("minecraft:suspicious_stew");
+ @Nullable public static final ItemType SWEET_BERRIES = get("minecraft:sweet_berries");
@Nullable public static final ItemType TALL_GRASS = get("minecraft:tall_grass");
@Nullable public static final ItemType TERRACOTTA = get("minecraft:terracotta");
@Nullable public static final ItemType TIPPED_ARROW = get("minecraft:tipped_arrow");
@@ -754,6 +841,7 @@ public final class ItemTypes {
@Nullable public static final ItemType TNT_MINECART = get("minecraft:tnt_minecart");
@Nullable public static final ItemType TORCH = get("minecraft:torch");
@Nullable public static final ItemType TOTEM_OF_UNDYING = get("minecraft:totem_of_undying");
+ @Nullable public static final ItemType TRADER_LLAMA_SPAWN_EGG = get("minecraft:trader_llama_spawn_egg");
@Nullable public static final ItemType TRAPPED_CHEST = get("minecraft:trapped_chest");
@Nullable public static final ItemType TRIDENT = get("minecraft:trident");
@Nullable public static final ItemType TRIPWIRE_HOOK = get("minecraft:tripwire_hook");
@@ -770,6 +858,7 @@ public final class ItemTypes {
@Nullable public static final ItemType VILLAGER_SPAWN_EGG = get("minecraft:villager_spawn_egg");
@Nullable public static final ItemType VINDICATOR_SPAWN_EGG = get("minecraft:vindicator_spawn_egg");
@Nullable public static final ItemType VINE = get("minecraft:vine");
+ @Nullable public static final ItemType WANDERING_TRADER_SPAWN_EGG = get("minecraft:wandering_trader_spawn_egg");
@Nullable public static final ItemType WATER_BUCKET = get("minecraft:water_bucket");
@Nullable public static final ItemType WET_SPONGE = get("minecraft:wet_sponge");
@Nullable public static final ItemType WHEAT = get("minecraft:wheat");
@@ -779,6 +868,7 @@ public final class ItemTypes {
@Nullable public static final ItemType WHITE_CARPET = get("minecraft:white_carpet");
@Nullable public static final ItemType WHITE_CONCRETE = get("minecraft:white_concrete");
@Nullable public static final ItemType WHITE_CONCRETE_POWDER = get("minecraft:white_concrete_powder");
+ @Nullable public static final ItemType WHITE_DYE = get("minecraft:white_dye");
@Nullable public static final ItemType WHITE_GLAZED_TERRACOTTA = get("minecraft:white_glazed_terracotta");
@Nullable public static final ItemType WHITE_SHULKER_BOX = get("minecraft:white_shulker_box");
@Nullable public static final ItemType WHITE_STAINED_GLASS = get("minecraft:white_stained_glass");
@@ -787,6 +877,7 @@ public final class ItemTypes {
@Nullable public static final ItemType WHITE_TULIP = get("minecraft:white_tulip");
@Nullable public static final ItemType WHITE_WOOL = get("minecraft:white_wool");
@Nullable public static final ItemType WITCH_SPAWN_EGG = get("minecraft:witch_spawn_egg");
+ @Nullable public static final ItemType WITHER_ROSE = get("minecraft:wither_rose");
@Nullable public static final ItemType WITHER_SKELETON_SKULL = get("minecraft:wither_skeleton_skull");
@Nullable public static final ItemType WITHER_SKELETON_SPAWN_EGG = get("minecraft:wither_skeleton_spawn_egg");
@Nullable public static final ItemType WOLF_SPAWN_EGG = get("minecraft:wolf_spawn_egg");
@@ -802,6 +893,7 @@ public final class ItemTypes {
@Nullable public static final ItemType YELLOW_CARPET = get("minecraft:yellow_carpet");
@Nullable public static final ItemType YELLOW_CONCRETE = get("minecraft:yellow_concrete");
@Nullable public static final ItemType YELLOW_CONCRETE_POWDER = get("minecraft:yellow_concrete_powder");
+ @Nullable public static final ItemType YELLOW_DYE = get("minecraft:yellow_dye");
@Nullable public static final ItemType YELLOW_GLAZED_TERRACOTTA = get("minecraft:yellow_glazed_terracotta");
@Nullable public static final ItemType YELLOW_SHULKER_BOX = get("minecraft:yellow_shulker_box");
@Nullable public static final ItemType YELLOW_STAINED_GLASS = get("minecraft:yellow_stained_glass");
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledBlockData.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledBlockData.java
index 76cd902ef..59505f2f4 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledBlockData.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledBlockData.java
@@ -23,6 +23,8 @@ import com.google.common.io.Resources;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;
+import com.sk89q.worldedit.WorldEdit;
+import com.sk89q.worldedit.extension.platform.Capability;
import com.sk89q.worldedit.math.Vector3;
import com.sk89q.worldedit.util.gson.VectorAdapter;
import com.sk89q.worldedit.util.io.ResourceLoader;
@@ -48,7 +50,7 @@ import java.util.Map;
* reading fails (which occurs when this class is first instantiated), then
* the methods will return {@code null}s for all blocks.
*/
-public class BundledBlockData {
+public final class BundledBlockData {
private static final Logger log = LoggerFactory.getLogger(BundledBlockData.class);
private static BundledBlockData INSTANCE;
@@ -75,10 +77,18 @@ public class BundledBlockData {
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(Vector3.class, new VectorAdapter());
Gson gson = gsonBuilder.create();
- URL url = ResourceLoader.getResource(BundledBlockData.class, "blocks.json");
+ URL url = null;
+ final int dataVersion = WorldEdit.getInstance().getPlatformManager().queryCapability(Capability.WORLD_EDITING).getDataVersion();
+ if (dataVersion > 1900) { // > MC 1.13
+ url = ResourceLoader.getResource(BundledBlockData.class, "blocks.114.json");
+ }
+ if (url == null) {
+ url = ResourceLoader.getResource(BundledBlockData.class, "blocks.json");
+ }
if (url == null) {
throw new IOException("Could not find blocks.json");
}
+ log.debug("Using {} for bundled block data.", url);
String data = Resources.toString(url, Charset.defaultCharset());
List entries = gson.fromJson(data, new TypeToken>() {}.getType());
diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledItemData.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledItemData.java
index 4e1af0422..28c6c6aa7 100644
--- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledItemData.java
+++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BundledItemData.java
@@ -23,6 +23,8 @@ import com.google.common.io.Resources;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;
+import com.sk89q.worldedit.WorldEdit;
+import com.sk89q.worldedit.extension.platform.Capability;
import com.sk89q.worldedit.math.Vector3;
import com.sk89q.worldedit.util.gson.VectorAdapter;
import com.sk89q.worldedit.util.io.ResourceLoader;
@@ -48,7 +50,7 @@ import java.util.Map;
* reading fails (which occurs when this class is first instantiated), then
* the methods will return {@code null}s for all items.
*/
-public class BundledItemData {
+public final class BundledItemData {
private static final Logger log = LoggerFactory.getLogger(BundledItemData.class);
private static BundledItemData INSTANCE;
@@ -75,10 +77,18 @@ public class BundledItemData {
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(Vector3.class, new VectorAdapter());
Gson gson = gsonBuilder.create();
- URL url = ResourceLoader.getResource(BundledItemData.class,"items.json");
+ URL url = null;
+ final int dataVersion = WorldEdit.getInstance().getPlatformManager().queryCapability(Capability.WORLD_EDITING).getDataVersion();
+ if (dataVersion > 1900) { // > MC 1.13
+ url = ResourceLoader.getResource(BundledBlockData.class, "items.114.json");
+ }
+ if (url == null) {
+ url = ResourceLoader.getResource(BundledBlockData.class, "items.json");
+ }
if (url == null) {
throw new IOException("Could not find items.json");
}
+ log.debug("Using {} for bundled item data.", url);
String data = Resources.toString(url, Charset.defaultCharset());
List entries = gson.fromJson(data, new TypeToken>() {}.getType());
diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.114.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.114.json
new file mode 100644
index 000000000..d5f98648d
--- /dev/null
+++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.114.json
@@ -0,0 +1,16902 @@
+[
+ {
+ "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_sign",
+ "localizedName": "Acacia 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": 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": 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_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_wall_sign",
+ "localizedName": "Acacia 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": 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",
+ "localizedName": "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": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:allium",
+ "localizedName": "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": "#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:andesite_slab",
+ "localizedName": "Andesite 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:andesite_stairs",
+ "localizedName": "Andesite Stairs",
+ "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:andesite_wall",
+ "localizedName": "Andesite Wall",
+ "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: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:bamboo",
+ "localizedName": "Bamboo",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 1.0,
+ "resistance": 1.0,
+ "ticksRandomly": true,
+ "fullCube": false,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": true,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": true,
+ "unpushable": false,
+ "mapColor": "#8f7748",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:bamboo_sapling",
+ "localizedName": "Bamboo Sapling",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 1.0,
+ "resistance": 1.0,
+ "ticksRandomly": true,
+ "fullCube": false,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": false,
+ "burnable": true,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": true,
+ "unpushable": false,
+ "mapColor": "#8f7748",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:barrel",
+ "localizedName": "Barrel",
+ "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": true
+ }
+ },
+ {
+ "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": 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:bedrock",
+ "localizedName": "Bedrock",
+ "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": "#707070",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:beetroots",
+ "localizedName": "Beetroots",
+ "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:bell",
+ "localizedName": "Bell",
+ "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:birch_button",
+ "localizedName": "Birch 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:birch_door",
+ "localizedName": "Birch 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:birch_fence",
+ "localizedName": "Birch 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:birch_fence_gate",
+ "localizedName": "Birch 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:birch_leaves",
+ "localizedName": "Birch 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:birch_log",
+ "localizedName": "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:birch_planks",
+ "localizedName": "Birch 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:birch_pressure_plate",
+ "localizedName": "Birch 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:birch_sapling",
+ "localizedName": "Birch 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:birch_sign",
+ "localizedName": "Birch 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": false
+ }
+ },
+ {
+ "id": "minecraft:birch_slab",
+ "localizedName": "Birch 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:birch_stairs",
+ "localizedName": "Birch Stairs",
+ "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:birch_trapdoor",
+ "localizedName": "Birch 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:birch_wall_sign",
+ "localizedName": "Birch 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": false
+ }
+ },
+ {
+ "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,
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:black_bed",
+ "localizedName": "Black 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:black_carpet",
+ "localizedName": "Black 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: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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "isTranslucent": true,
+ "hasContainer": true
+ }
+ },
+ {
+ "id": "minecraft:black_stained_glass",
+ "localizedName": "Black Stained Glass",
+ "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": 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": "Black 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": false
+ }
+ },
+ {
+ "id": "minecraft:black_wool",
+ "localizedName": "Black 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:blast_furnace",
+ "localizedName": "Blast Furnace",
+ "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:blue_banner",
+ "localizedName": "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": false
+ }
+ },
+ {
+ "id": "minecraft:blue_bed",
+ "localizedName": "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:blue_carpet",
+ "localizedName": "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: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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": 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:brick_wall",
+ "localizedName": "Brick 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: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": false
+ }
+ },
+ {
+ "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,
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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:campfire",
+ "localizedName": "Campfire",
+ "material": {
+ "powerSource": false,
+ "lightValue": 15,
+ "hardness": 2.0,
+ "resistance": 2.0,
+ "ticksRandomly": true,
+ "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: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:cartography_table",
+ "localizedName": "Cartography 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: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": 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: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": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "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": 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_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": true,
+ "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": false
+ }
+ },
+ {
+ "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:composter",
+ "localizedName": "Composter",
+ "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": true,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#8f7748",
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:cornflower",
+ "localizedName": "Cornflower",
+ "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: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": false
+ }
+ },
+ {
+ "id": "minecraft:creeper_wall_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": false
+ }
+ },
+ {
+ "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_red_sandstone_slab",
+ "localizedName": "Cut 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: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:cut_sandstone_slab",
+ "localizedName": "Cut 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: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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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_sign",
+ "localizedName": "Dark Oak 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": 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": 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_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_wall_sign",
+ "localizedName": "Dark Oak 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": 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": 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: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": false
+ }
+ },
+ {
+ "id": "minecraft:dead_brain_coral",
+ "localizedName": "Dead Brain Coral",
+ "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_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",
+ "localizedName": "Dead Bubble Coral",
+ "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",
+ "localizedName": "Dead Fire Coral",
+ "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_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",
+ "localizedName": "Dead Horn Coral",
+ "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",
+ "localizedName": "Dead Tube Coral",
+ "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:diorite_slab",
+ "localizedName": "Diorite 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:diorite_stairs",
+ "localizedName": "Diorite Stairs",
+ "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:diorite_wall",
+ "localizedName": "Diorite Wall",
+ "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: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": false
+ }
+ },
+ {
+ "id": "minecraft:dragon_wall_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": false
+ }
+ },
+ {
+ "id": "minecraft:dried_kelp_block",
+ "localizedName": "Dried Kelp Block",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:end_gateway",
+ "localizedName": "End Gateway",
+ "material": {
+ "powerSource": false,
+ "lightValue": 15,
+ "hardness": -1.0,
+ "resistance": 3600000.0,
+ "ticksRandomly": false,
+ "fullCube": true,
+ "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: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": false
+ }
+ },
+ {
+ "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_brick_slab",
+ "localizedName": "End Stone Brick Slab",
+ "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:end_stone_brick_stairs",
+ "localizedName": "End Stone Brick Stairs",
+ "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:end_stone_brick_wall",
+ "localizedName": "End Stone Brick Wall",
+ "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: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": false
+ }
+ },
+ {
+ "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:fletching_table",
+ "localizedName": "Fletching 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: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,
+ "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:furnace",
+ "localizedName": "Furnace",
+ "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:glass",
+ "localizedName": "Glass",
+ "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": false,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:glass_pane",
+ "localizedName": "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: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,
+ "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:granite",
+ "localizedName": "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:granite_slab",
+ "localizedName": "Granite 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:granite_stairs",
+ "localizedName": "Granite Stairs",
+ "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:granite_wall",
+ "localizedName": "Granite Wall",
+ "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:grass",
+ "localizedName": "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:grass_block",
+ "localizedName": "Grass Block",
+ "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:grass_path",
+ "localizedName": "Grass Path",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.65,
+ "resistance": 0.65,
+ "ticksRandomly": false,
+ "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:gravel",
+ "localizedName": "Gravel",
+ "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": "#f7e9a3",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:gray_banner",
+ "localizedName": "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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:grindstone",
+ "localizedName": "Grindstone",
+ "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": true,
+ "mapColor": "#a7a7a7",
+ "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": 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: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,
+ "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:jigsaw",
+ "localizedName": "Jigsaw 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": 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,
+ "burnable": false,
+ "opaque": false,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": true,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:jungle_door",
+ "localizedName": "Jungle 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: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_sign",
+ "localizedName": "Jungle 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": 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": 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_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_wall_sign",
+ "localizedName": "Jungle 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": 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": true,
+ "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:lantern",
+ "localizedName": "Lantern",
+ "material": {
+ "powerSource": false,
+ "lightValue": 15,
+ "hardness": 3.5,
+ "resistance": 3.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: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,
+ "burnable": false,
+ "opaque": true,
+ "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": true,
+ "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": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:lectern",
+ "localizedName": "Lectern",
+ "material": {
+ "powerSource": true,
+ "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: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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": true,
+ "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_of_the_valley",
+ "localizedName": "Lily of the Valley",
+ "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: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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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:loom",
+ "localizedName": "Loom",
+ "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: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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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_slab",
+ "localizedName": "Mossy 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:mossy_cobblestone_stairs",
+ "localizedName": "Mossy Cobblestone Stairs",
+ "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_brick_slab",
+ "localizedName": "Mossy Stone 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:mossy_stone_brick_stairs",
+ "localizedName": "Mossy Stone Brick Stairs",
+ "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:mossy_stone_brick_wall",
+ "localizedName": "Mossy Stone Brick Wall",
+ "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: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,
+ "mapColor": "#707070",
+ "isTranslucent": true,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:mushroom_stem",
+ "localizedName": "Mushroom Stem",
+ "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: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,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": true,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#707070",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "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": 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_brick_wall",
+ "localizedName": "Nether Brick 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: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",
+ "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:nether_wart",
+ "localizedName": "Nether Wart",
+ "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:nether_wart_block",
+ "localizedName": "Nether Wart Block",
+ "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": false,
+ "unpushable": false,
+ "mapColor": "#7fb238",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "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,
+ "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:oak_log",
+ "localizedName": "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:oak_planks",
+ "localizedName": "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: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,
+ "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_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_sign",
+ "localizedName": "Oak 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": false
+ }
+ },
+ {
+ "id": "minecraft:oak_slab",
+ "localizedName": "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:oak_stairs",
+ "localizedName": "Oak Stairs",
+ "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: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_wall_sign",
+ "localizedName": "Oak 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": 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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": true,
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": true,
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:player_wall_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": false
+ }
+ },
+ {
+ "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_andesite_slab",
+ "localizedName": "Polished Andesite 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:polished_andesite_stairs",
+ "localizedName": "Polished Andesite Stairs",
+ "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_diorite_slab",
+ "localizedName": "Polished Diorite 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:polished_diorite_stairs",
+ "localizedName": "Polished Diorite Stairs",
+ "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:polished_granite_slab",
+ "localizedName": "Polished Granite 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:polished_granite_stairs",
+ "localizedName": "Polished Granite Stairs",
+ "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_bamboo",
+ "localizedName": "Potted Bamboo",
+ "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_cornflower",
+ "localizedName": "Potted Cornflower",
+ "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_lily_of_the_valley",
+ "localizedName": "Potted Lily of the Valley",
+ "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:potted_wither_rose",
+ "localizedName": "Potted Wither Rose",
+ "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": 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_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": 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_wall",
+ "localizedName": "Prismarine Wall",
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": 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_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": 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: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": false
+ }
+ },
+ {
+ "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_brick_slab",
+ "localizedName": "Red 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:red_nether_brick_stairs",
+ "localizedName": "Red Nether Brick Stairs",
+ "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_nether_brick_wall",
+ "localizedName": "Red Nether Brick 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: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": 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_wall",
+ "localizedName": "Red Sandstone Wall",
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": "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_wire",
+ "localizedName": "Redstone Wire",
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:rose_bush",
+ "localizedName": "Rose Bush",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.0,
+ "resistance": 0.0,
+ "ticksRandomly": false,
+ "fullCube": true,
+ "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": 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_wall",
+ "localizedName": "Sandstone Wall",
+ "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:scaffolding",
+ "localizedName": "Scaffolding",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.0,
+ "resistance": 0.0,
+ "ticksRandomly": false,
+ "fullCube": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": false,
+ "movementBlocker": false,
+ "burnable": false,
+ "opaque": false,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": true,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": true,
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "isTranslucent": true,
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:skeleton_wall_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": false
+ }
+ },
+ {
+ "id": "minecraft:slime_block",
+ "localizedName": "Slime Block",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.0,
+ "resistance": 0.0,
+ "ticksRandomly": false,
+ "fullCube": true,
+ "slipperiness": 0.8,
+ "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:smithing_table",
+ "localizedName": "Smithing 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:smoker",
+ "localizedName": "Smoker",
+ "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:smooth_quartz",
+ "localizedName": "Smooth Quartz",
+ "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_quartz_slab",
+ "localizedName": "Smooth 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:smooth_quartz_stairs",
+ "localizedName": "Smooth Quartz Stairs",
+ "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_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_red_sandstone_slab",
+ "localizedName": "Smooth 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:smooth_red_sandstone_stairs",
+ "localizedName": "Smooth Red Sandstone Stairs",
+ "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_sandstone_slab",
+ "localizedName": "Smooth 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:smooth_sandstone_stairs",
+ "localizedName": "Smooth Sandstone Stairs",
+ "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:smooth_stone_slab",
+ "localizedName": "Smooth 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: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": 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": "#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,
+ "lightValue": 0,
+ "hardness": 5.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": false
+ }
+ },
+ {
+ "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,
+ "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:spruce_door",
+ "localizedName": "Spruce 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: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_sign",
+ "localizedName": "Spruce 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": 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": 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_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_wall_sign",
+ "localizedName": "Spruce 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": 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": true,
+ "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,
+ "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_slab",
+ "localizedName": "Stone 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:stone_brick_stairs",
+ "localizedName": "Stone Brick Stairs",
+ "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_brick_wall",
+ "localizedName": "Stone Brick Wall",
+ "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:stone_stairs",
+ "localizedName": "Stone Stairs",
+ "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:stonecutter",
+ "localizedName": "Stonecutter",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 3.5,
+ "resistance": 3.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: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": false
+ }
+ },
+ {
+ "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": true,
+ "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:sweet_berry_bush",
+ "localizedName": "Sweet Berry Bush",
+ "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:tall_grass",
+ "localizedName": "Tall Grass",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.0,
+ "resistance": 0.0,
+ "ticksRandomly": false,
+ "fullCube": true,
+ "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,
+ "mapColor": "#ff0000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:torch",
+ "localizedName": "Torch",
+ "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:trapped_chest",
+ "localizedName": "Trapped Chest",
+ "material": {
+ "powerSource": true,
+ "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: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,
+ "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:tube_coral_fan",
+ "localizedName": "Tube 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: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,
+ "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:vine",
+ "localizedName": "Vines",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 0.2,
+ "resistance": 0.2,
+ "ticksRandomly": true,
+ "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:void_air",
+ "localizedName": "Void 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": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#000000",
+ "isTranslucent": false,
+ "hasContainer": false
+ }
+ },
+ {
+ "id": "minecraft:wall_torch",
+ "localizedName": "Torch",
+ "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:water",
+ "localizedName": "Water",
+ "material": {
+ "powerSource": false,
+ "lightValue": 0,
+ "hardness": 100.0,
+ "resistance": 100.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:wet_sponge",
+ "localizedName": "Wet 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:wheat",
+ "localizedName": "Wheat Crops",
+ "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: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": false
+ }
+ },
+ {
+ "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,
+ "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_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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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_rose",
+ "localizedName": "Wither Rose",
+ "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: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": false
+ }
+ },
+ {
+ "id": "minecraft:wither_skeleton_wall_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": false
+ }
+ },
+ {
+ "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": false
+ }
+ },
+ {
+ "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": true,
+ "slipperiness": 0.6,
+ "liquid": false,
+ "solid": true,
+ "movementBlocker": true,
+ "burnable": false,
+ "opaque": true,
+ "replacedDuringPlacement": false,
+ "toolRequired": false,
+ "fragileWhenPushed": false,
+ "unpushable": false,
+ "mapColor": "#7f3fb2",
+ "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": 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: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": "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": false
+ }
+ },
+ {
+ "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": false
+ }
+ },
+ {
+ "id": "minecraft:zombie_wall_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": false
+ }
+ }
+]
\ No newline at end of file
diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.114.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.114.json
new file mode 100644
index 000000000..f139d1082
--- /dev/null
+++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.114.json
@@ -0,0 +1,6141 @@
+[
+ {
+ "id": "minecraft:acacia_boat",
+ "unlocalizedName": "item.minecraft.acacia_boat",
+ "localizedName": "Acacia Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_button",
+ "unlocalizedName": "block.minecraft.acacia_button",
+ "localizedName": "Acacia Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_door",
+ "unlocalizedName": "block.minecraft.acacia_door",
+ "localizedName": "Acacia Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_fence",
+ "unlocalizedName": "block.minecraft.acacia_fence",
+ "localizedName": "Acacia Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_fence_gate",
+ "unlocalizedName": "block.minecraft.acacia_fence_gate",
+ "localizedName": "Acacia Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_leaves",
+ "unlocalizedName": "block.minecraft.acacia_leaves",
+ "localizedName": "Acacia Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_log",
+ "unlocalizedName": "block.minecraft.acacia_log",
+ "localizedName": "Acacia Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_planks",
+ "unlocalizedName": "block.minecraft.acacia_planks",
+ "localizedName": "Acacia Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_pressure_plate",
+ "unlocalizedName": "block.minecraft.acacia_pressure_plate",
+ "localizedName": "Acacia Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_sapling",
+ "unlocalizedName": "block.minecraft.acacia_sapling",
+ "localizedName": "Acacia Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_sign",
+ "unlocalizedName": "block.minecraft.acacia_sign",
+ "localizedName": "Acacia Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_slab",
+ "unlocalizedName": "block.minecraft.acacia_slab",
+ "localizedName": "Acacia Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_stairs",
+ "unlocalizedName": "block.minecraft.acacia_stairs",
+ "localizedName": "Acacia Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_trapdoor",
+ "unlocalizedName": "block.minecraft.acacia_trapdoor",
+ "localizedName": "Acacia Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:acacia_wood",
+ "unlocalizedName": "block.minecraft.acacia_wood",
+ "localizedName": "Acacia Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:activator_rail",
+ "unlocalizedName": "block.minecraft.activator_rail",
+ "localizedName": "Activator Rail",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:air",
+ "unlocalizedName": "block.minecraft.air",
+ "localizedName": "Air",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:allium",
+ "unlocalizedName": "block.minecraft.allium",
+ "localizedName": "Allium",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:andesite",
+ "unlocalizedName": "block.minecraft.andesite",
+ "localizedName": "Andesite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:andesite_slab",
+ "unlocalizedName": "block.minecraft.andesite_slab",
+ "localizedName": "Andesite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:andesite_stairs",
+ "unlocalizedName": "block.minecraft.andesite_stairs",
+ "localizedName": "Andesite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:andesite_wall",
+ "unlocalizedName": "block.minecraft.andesite_wall",
+ "localizedName": "Andesite Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:anvil",
+ "unlocalizedName": "block.minecraft.anvil",
+ "localizedName": "Anvil",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:apple",
+ "unlocalizedName": "item.minecraft.apple",
+ "localizedName": "Apple",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:armor_stand",
+ "unlocalizedName": "item.minecraft.armor_stand",
+ "localizedName": "Armor Stand",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:arrow",
+ "unlocalizedName": "item.minecraft.arrow",
+ "localizedName": "Arrow",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:azure_bluet",
+ "unlocalizedName": "block.minecraft.azure_bluet",
+ "localizedName": "Azure Bluet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:baked_potato",
+ "unlocalizedName": "item.minecraft.baked_potato",
+ "localizedName": "Baked Potato",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bamboo",
+ "unlocalizedName": "block.minecraft.bamboo",
+ "localizedName": "Bamboo",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:barrel",
+ "unlocalizedName": "block.minecraft.barrel",
+ "localizedName": "Barrel",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:barrier",
+ "unlocalizedName": "block.minecraft.barrier",
+ "localizedName": "Barrier",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bat_spawn_egg",
+ "unlocalizedName": "item.minecraft.bat_spawn_egg",
+ "localizedName": "Bat Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:beacon",
+ "unlocalizedName": "block.minecraft.beacon",
+ "localizedName": "Beacon",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bedrock",
+ "unlocalizedName": "block.minecraft.bedrock",
+ "localizedName": "Bedrock",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:beef",
+ "unlocalizedName": "item.minecraft.beef",
+ "localizedName": "Raw Beef",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:beetroot",
+ "unlocalizedName": "item.minecraft.beetroot",
+ "localizedName": "Beetroot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:beetroot_seeds",
+ "unlocalizedName": "item.minecraft.beetroot_seeds",
+ "localizedName": "Beetroot Seeds",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:beetroot_soup",
+ "unlocalizedName": "item.minecraft.beetroot_soup",
+ "localizedName": "Beetroot Soup",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bell",
+ "unlocalizedName": "block.minecraft.bell",
+ "localizedName": "Bell",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_boat",
+ "unlocalizedName": "item.minecraft.birch_boat",
+ "localizedName": "Birch Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_button",
+ "unlocalizedName": "block.minecraft.birch_button",
+ "localizedName": "Birch Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_door",
+ "unlocalizedName": "block.minecraft.birch_door",
+ "localizedName": "Birch Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_fence",
+ "unlocalizedName": "block.minecraft.birch_fence",
+ "localizedName": "Birch Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_fence_gate",
+ "unlocalizedName": "block.minecraft.birch_fence_gate",
+ "localizedName": "Birch Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_leaves",
+ "unlocalizedName": "block.minecraft.birch_leaves",
+ "localizedName": "Birch Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_log",
+ "unlocalizedName": "block.minecraft.birch_log",
+ "localizedName": "Birch Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_planks",
+ "unlocalizedName": "block.minecraft.birch_planks",
+ "localizedName": "Birch Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_pressure_plate",
+ "unlocalizedName": "block.minecraft.birch_pressure_plate",
+ "localizedName": "Birch Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_sapling",
+ "unlocalizedName": "block.minecraft.birch_sapling",
+ "localizedName": "Birch Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_sign",
+ "unlocalizedName": "block.minecraft.birch_sign",
+ "localizedName": "Birch Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_slab",
+ "unlocalizedName": "block.minecraft.birch_slab",
+ "localizedName": "Birch Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_stairs",
+ "unlocalizedName": "block.minecraft.birch_stairs",
+ "localizedName": "Birch Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_trapdoor",
+ "unlocalizedName": "block.minecraft.birch_trapdoor",
+ "localizedName": "Birch Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:birch_wood",
+ "unlocalizedName": "block.minecraft.birch_wood",
+ "localizedName": "Birch Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_banner",
+ "unlocalizedName": "block.minecraft.black_banner",
+ "localizedName": "Black Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_bed",
+ "unlocalizedName": "block.minecraft.black_bed",
+ "localizedName": "Black Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_carpet",
+ "unlocalizedName": "block.minecraft.black_carpet",
+ "localizedName": "Black Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_concrete",
+ "unlocalizedName": "block.minecraft.black_concrete",
+ "localizedName": "Black Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_concrete_powder",
+ "unlocalizedName": "block.minecraft.black_concrete_powder",
+ "localizedName": "Black Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_dye",
+ "unlocalizedName": "item.minecraft.black_dye",
+ "localizedName": "Black Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.black_glazed_terracotta",
+ "localizedName": "Black Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_shulker_box",
+ "unlocalizedName": "block.minecraft.black_shulker_box",
+ "localizedName": "Black Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_stained_glass",
+ "unlocalizedName": "block.minecraft.black_stained_glass",
+ "localizedName": "Black Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.black_stained_glass_pane",
+ "localizedName": "Black Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_terracotta",
+ "unlocalizedName": "block.minecraft.black_terracotta",
+ "localizedName": "Black Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:black_wool",
+ "unlocalizedName": "block.minecraft.black_wool",
+ "localizedName": "Black Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blast_furnace",
+ "unlocalizedName": "block.minecraft.blast_furnace",
+ "localizedName": "Blast Furnace",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blaze_powder",
+ "unlocalizedName": "item.minecraft.blaze_powder",
+ "localizedName": "Blaze Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blaze_rod",
+ "unlocalizedName": "item.minecraft.blaze_rod",
+ "localizedName": "Blaze Rod",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blaze_spawn_egg",
+ "unlocalizedName": "item.minecraft.blaze_spawn_egg",
+ "localizedName": "Blaze Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_banner",
+ "unlocalizedName": "block.minecraft.blue_banner",
+ "localizedName": "Blue Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_bed",
+ "unlocalizedName": "block.minecraft.blue_bed",
+ "localizedName": "Blue Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_carpet",
+ "unlocalizedName": "block.minecraft.blue_carpet",
+ "localizedName": "Blue Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_concrete",
+ "unlocalizedName": "block.minecraft.blue_concrete",
+ "localizedName": "Blue Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_concrete_powder",
+ "unlocalizedName": "block.minecraft.blue_concrete_powder",
+ "localizedName": "Blue Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_dye",
+ "unlocalizedName": "item.minecraft.blue_dye",
+ "localizedName": "Blue Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.blue_glazed_terracotta",
+ "localizedName": "Blue Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_ice",
+ "unlocalizedName": "block.minecraft.blue_ice",
+ "localizedName": "Blue Ice",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_orchid",
+ "unlocalizedName": "block.minecraft.blue_orchid",
+ "localizedName": "Blue Orchid",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_shulker_box",
+ "unlocalizedName": "block.minecraft.blue_shulker_box",
+ "localizedName": "Blue Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_stained_glass",
+ "unlocalizedName": "block.minecraft.blue_stained_glass",
+ "localizedName": "Blue Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.blue_stained_glass_pane",
+ "localizedName": "Blue Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_terracotta",
+ "unlocalizedName": "block.minecraft.blue_terracotta",
+ "localizedName": "Blue Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:blue_wool",
+ "unlocalizedName": "block.minecraft.blue_wool",
+ "localizedName": "Blue Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bone",
+ "unlocalizedName": "item.minecraft.bone",
+ "localizedName": "Bone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bone_block",
+ "unlocalizedName": "block.minecraft.bone_block",
+ "localizedName": "Bone Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bone_meal",
+ "unlocalizedName": "item.minecraft.bone_meal",
+ "localizedName": "Bone Meal",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:book",
+ "unlocalizedName": "item.minecraft.book",
+ "localizedName": "Book",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bookshelf",
+ "unlocalizedName": "block.minecraft.bookshelf",
+ "localizedName": "Bookshelf",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bow",
+ "unlocalizedName": "item.minecraft.bow",
+ "localizedName": "Bow",
+ "maxStackSize": 1,
+ "maxDamage": 384
+ },
+ {
+ "id": "minecraft:bowl",
+ "unlocalizedName": "item.minecraft.bowl",
+ "localizedName": "Bowl",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brain_coral",
+ "unlocalizedName": "block.minecraft.brain_coral",
+ "localizedName": "Brain Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brain_coral_block",
+ "unlocalizedName": "block.minecraft.brain_coral_block",
+ "localizedName": "Brain Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brain_coral_fan",
+ "unlocalizedName": "block.minecraft.brain_coral_fan",
+ "localizedName": "Brain Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bread",
+ "unlocalizedName": "item.minecraft.bread",
+ "localizedName": "Bread",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brewing_stand",
+ "unlocalizedName": "block.minecraft.brewing_stand",
+ "localizedName": "Brewing Stand",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brick",
+ "unlocalizedName": "item.minecraft.brick",
+ "localizedName": "Brick",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brick_slab",
+ "unlocalizedName": "block.minecraft.brick_slab",
+ "localizedName": "Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brick_stairs",
+ "unlocalizedName": "block.minecraft.brick_stairs",
+ "localizedName": "Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brick_wall",
+ "unlocalizedName": "block.minecraft.brick_wall",
+ "localizedName": "Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bricks",
+ "unlocalizedName": "block.minecraft.bricks",
+ "localizedName": "Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_banner",
+ "unlocalizedName": "block.minecraft.brown_banner",
+ "localizedName": "Brown Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_bed",
+ "unlocalizedName": "block.minecraft.brown_bed",
+ "localizedName": "Brown Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_carpet",
+ "unlocalizedName": "block.minecraft.brown_carpet",
+ "localizedName": "Brown Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_concrete",
+ "unlocalizedName": "block.minecraft.brown_concrete",
+ "localizedName": "Brown Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_concrete_powder",
+ "unlocalizedName": "block.minecraft.brown_concrete_powder",
+ "localizedName": "Brown Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_dye",
+ "unlocalizedName": "item.minecraft.brown_dye",
+ "localizedName": "Brown Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.brown_glazed_terracotta",
+ "localizedName": "Brown Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_mushroom",
+ "unlocalizedName": "block.minecraft.brown_mushroom",
+ "localizedName": "Brown Mushroom",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_mushroom_block",
+ "unlocalizedName": "block.minecraft.brown_mushroom_block",
+ "localizedName": "Brown Mushroom Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_shulker_box",
+ "unlocalizedName": "block.minecraft.brown_shulker_box",
+ "localizedName": "Brown Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_stained_glass",
+ "unlocalizedName": "block.minecraft.brown_stained_glass",
+ "localizedName": "Brown Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.brown_stained_glass_pane",
+ "localizedName": "Brown Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_terracotta",
+ "unlocalizedName": "block.minecraft.brown_terracotta",
+ "localizedName": "Brown Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:brown_wool",
+ "unlocalizedName": "block.minecraft.brown_wool",
+ "localizedName": "Brown Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bubble_coral",
+ "unlocalizedName": "block.minecraft.bubble_coral",
+ "localizedName": "Bubble Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bubble_coral_block",
+ "unlocalizedName": "block.minecraft.bubble_coral_block",
+ "localizedName": "Bubble Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bubble_coral_fan",
+ "unlocalizedName": "block.minecraft.bubble_coral_fan",
+ "localizedName": "Bubble Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:bucket",
+ "unlocalizedName": "item.minecraft.bucket",
+ "localizedName": "Bucket",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cactus",
+ "unlocalizedName": "block.minecraft.cactus",
+ "localizedName": "Cactus",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cake",
+ "unlocalizedName": "block.minecraft.cake",
+ "localizedName": "Cake",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:campfire",
+ "unlocalizedName": "block.minecraft.campfire",
+ "localizedName": "Campfire",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:carrot",
+ "unlocalizedName": "item.minecraft.carrot",
+ "localizedName": "Carrot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:carrot_on_a_stick",
+ "unlocalizedName": "item.minecraft.carrot_on_a_stick",
+ "localizedName": "Carrot on a Stick",
+ "maxStackSize": 1,
+ "maxDamage": 25
+ },
+ {
+ "id": "minecraft:cartography_table",
+ "unlocalizedName": "block.minecraft.cartography_table",
+ "localizedName": "Cartography Table",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:carved_pumpkin",
+ "unlocalizedName": "block.minecraft.carved_pumpkin",
+ "localizedName": "Carved Pumpkin",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cat_spawn_egg",
+ "unlocalizedName": "item.minecraft.cat_spawn_egg",
+ "localizedName": "Cat Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cauldron",
+ "unlocalizedName": "block.minecraft.cauldron",
+ "localizedName": "Cauldron",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cave_spider_spawn_egg",
+ "unlocalizedName": "item.minecraft.cave_spider_spawn_egg",
+ "localizedName": "Cave Spider Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chain_command_block",
+ "unlocalizedName": "block.minecraft.chain_command_block",
+ "localizedName": "Chain Command Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chainmail_boots",
+ "unlocalizedName": "item.minecraft.chainmail_boots",
+ "localizedName": "Chainmail Boots",
+ "maxStackSize": 1,
+ "maxDamage": 195
+ },
+ {
+ "id": "minecraft:chainmail_chestplate",
+ "unlocalizedName": "item.minecraft.chainmail_chestplate",
+ "localizedName": "Chainmail Chestplate",
+ "maxStackSize": 1,
+ "maxDamage": 240
+ },
+ {
+ "id": "minecraft:chainmail_helmet",
+ "unlocalizedName": "item.minecraft.chainmail_helmet",
+ "localizedName": "Chainmail Helmet",
+ "maxStackSize": 1,
+ "maxDamage": 165
+ },
+ {
+ "id": "minecraft:chainmail_leggings",
+ "unlocalizedName": "item.minecraft.chainmail_leggings",
+ "localizedName": "Chainmail Leggings",
+ "maxStackSize": 1,
+ "maxDamage": 225
+ },
+ {
+ "id": "minecraft:charcoal",
+ "unlocalizedName": "item.minecraft.charcoal",
+ "localizedName": "Charcoal",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chest",
+ "unlocalizedName": "block.minecraft.chest",
+ "localizedName": "Chest",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chest_minecart",
+ "unlocalizedName": "item.minecraft.chest_minecart",
+ "localizedName": "Minecart with Chest",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chicken",
+ "unlocalizedName": "item.minecraft.chicken",
+ "localizedName": "Raw Chicken",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chicken_spawn_egg",
+ "unlocalizedName": "item.minecraft.chicken_spawn_egg",
+ "localizedName": "Chicken Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chipped_anvil",
+ "unlocalizedName": "block.minecraft.chipped_anvil",
+ "localizedName": "Chipped Anvil",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chiseled_quartz_block",
+ "unlocalizedName": "block.minecraft.chiseled_quartz_block",
+ "localizedName": "Chiseled Quartz Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chiseled_red_sandstone",
+ "unlocalizedName": "block.minecraft.chiseled_red_sandstone",
+ "localizedName": "Chiseled Red Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chiseled_sandstone",
+ "unlocalizedName": "block.minecraft.chiseled_sandstone",
+ "localizedName": "Chiseled Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chiseled_stone_bricks",
+ "unlocalizedName": "block.minecraft.chiseled_stone_bricks",
+ "localizedName": "Chiseled Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chorus_flower",
+ "unlocalizedName": "block.minecraft.chorus_flower",
+ "localizedName": "Chorus Flower",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chorus_fruit",
+ "unlocalizedName": "item.minecraft.chorus_fruit",
+ "localizedName": "Chorus Fruit",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:chorus_plant",
+ "unlocalizedName": "block.minecraft.chorus_plant",
+ "localizedName": "Chorus Plant",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:clay",
+ "unlocalizedName": "block.minecraft.clay",
+ "localizedName": "Clay",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:clay_ball",
+ "unlocalizedName": "item.minecraft.clay_ball",
+ "localizedName": "Clay",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:clock",
+ "unlocalizedName": "item.minecraft.clock",
+ "localizedName": "Clock",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:coal",
+ "unlocalizedName": "item.minecraft.coal",
+ "localizedName": "Coal",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:coal_block",
+ "unlocalizedName": "block.minecraft.coal_block",
+ "localizedName": "Block of Coal",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:coal_ore",
+ "unlocalizedName": "block.minecraft.coal_ore",
+ "localizedName": "Coal Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:coarse_dirt",
+ "unlocalizedName": "block.minecraft.coarse_dirt",
+ "localizedName": "Coarse Dirt",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cobblestone",
+ "unlocalizedName": "block.minecraft.cobblestone",
+ "localizedName": "Cobblestone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cobblestone_slab",
+ "unlocalizedName": "block.minecraft.cobblestone_slab",
+ "localizedName": "Cobblestone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cobblestone_stairs",
+ "unlocalizedName": "block.minecraft.cobblestone_stairs",
+ "localizedName": "Cobblestone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cobblestone_wall",
+ "unlocalizedName": "block.minecraft.cobblestone_wall",
+ "localizedName": "Cobblestone Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cobweb",
+ "unlocalizedName": "block.minecraft.cobweb",
+ "localizedName": "Cobweb",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cocoa_beans",
+ "unlocalizedName": "item.minecraft.cocoa_beans",
+ "localizedName": "Cocoa Beans",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cod",
+ "unlocalizedName": "item.minecraft.cod",
+ "localizedName": "Raw Cod",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cod_bucket",
+ "unlocalizedName": "item.minecraft.cod_bucket",
+ "localizedName": "Bucket of Cod",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cod_spawn_egg",
+ "unlocalizedName": "item.minecraft.cod_spawn_egg",
+ "localizedName": "Cod Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:command_block",
+ "unlocalizedName": "block.minecraft.command_block",
+ "localizedName": "Command Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:command_block_minecart",
+ "unlocalizedName": "item.minecraft.command_block_minecart",
+ "localizedName": "Minecart with Command Block",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:comparator",
+ "unlocalizedName": "block.minecraft.comparator",
+ "localizedName": "Redstone Comparator",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:compass",
+ "unlocalizedName": "item.minecraft.compass",
+ "localizedName": "Compass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:composter",
+ "unlocalizedName": "block.minecraft.composter",
+ "localizedName": "Composter",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:conduit",
+ "unlocalizedName": "block.minecraft.conduit",
+ "localizedName": "Conduit",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_beef",
+ "unlocalizedName": "item.minecraft.cooked_beef",
+ "localizedName": "Steak",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_chicken",
+ "unlocalizedName": "item.minecraft.cooked_chicken",
+ "localizedName": "Cooked Chicken",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_cod",
+ "unlocalizedName": "item.minecraft.cooked_cod",
+ "localizedName": "Cooked Cod",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_mutton",
+ "unlocalizedName": "item.minecraft.cooked_mutton",
+ "localizedName": "Cooked Mutton",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_porkchop",
+ "unlocalizedName": "item.minecraft.cooked_porkchop",
+ "localizedName": "Cooked Porkchop",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_rabbit",
+ "unlocalizedName": "item.minecraft.cooked_rabbit",
+ "localizedName": "Cooked Rabbit",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cooked_salmon",
+ "unlocalizedName": "item.minecraft.cooked_salmon",
+ "localizedName": "Cooked Salmon",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cookie",
+ "unlocalizedName": "item.minecraft.cookie",
+ "localizedName": "Cookie",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cornflower",
+ "unlocalizedName": "block.minecraft.cornflower",
+ "localizedName": "Cornflower",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cow_spawn_egg",
+ "unlocalizedName": "item.minecraft.cow_spawn_egg",
+ "localizedName": "Cow Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cracked_stone_bricks",
+ "unlocalizedName": "block.minecraft.cracked_stone_bricks",
+ "localizedName": "Cracked Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:crafting_table",
+ "unlocalizedName": "block.minecraft.crafting_table",
+ "localizedName": "Crafting Table",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:creeper_banner_pattern",
+ "unlocalizedName": "item.minecraft.creeper_banner_pattern",
+ "localizedName": "Banner Pattern",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:creeper_head",
+ "unlocalizedName": "block.minecraft.creeper_head",
+ "localizedName": "Creeper Head",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:creeper_spawn_egg",
+ "unlocalizedName": "item.minecraft.creeper_spawn_egg",
+ "localizedName": "Creeper Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:crossbow",
+ "unlocalizedName": "item.minecraft.crossbow",
+ "localizedName": "Crossbow",
+ "maxStackSize": 1,
+ "maxDamage": 326
+ },
+ {
+ "id": "minecraft:cut_red_sandstone",
+ "unlocalizedName": "block.minecraft.cut_red_sandstone",
+ "localizedName": "Cut Red Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cut_red_sandstone_slab",
+ "unlocalizedName": "block.minecraft.cut_red_sandstone_slab",
+ "localizedName": "Cut Red Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cut_sandstone",
+ "unlocalizedName": "block.minecraft.cut_sandstone",
+ "localizedName": "Cut Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cut_sandstone_slab",
+ "unlocalizedName": "block.minecraft.cut_sandstone_slab",
+ "localizedName": "Cut Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_banner",
+ "unlocalizedName": "block.minecraft.cyan_banner",
+ "localizedName": "Cyan Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_bed",
+ "unlocalizedName": "block.minecraft.cyan_bed",
+ "localizedName": "Cyan Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_carpet",
+ "unlocalizedName": "block.minecraft.cyan_carpet",
+ "localizedName": "Cyan Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_concrete",
+ "unlocalizedName": "block.minecraft.cyan_concrete",
+ "localizedName": "Cyan Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_concrete_powder",
+ "unlocalizedName": "block.minecraft.cyan_concrete_powder",
+ "localizedName": "Cyan Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_dye",
+ "unlocalizedName": "item.minecraft.cyan_dye",
+ "localizedName": "Cyan Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.cyan_glazed_terracotta",
+ "localizedName": "Cyan Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_shulker_box",
+ "unlocalizedName": "block.minecraft.cyan_shulker_box",
+ "localizedName": "Cyan Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_stained_glass",
+ "unlocalizedName": "block.minecraft.cyan_stained_glass",
+ "localizedName": "Cyan Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.cyan_stained_glass_pane",
+ "localizedName": "Cyan Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_terracotta",
+ "unlocalizedName": "block.minecraft.cyan_terracotta",
+ "localizedName": "Cyan Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:cyan_wool",
+ "unlocalizedName": "block.minecraft.cyan_wool",
+ "localizedName": "Cyan Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:damaged_anvil",
+ "unlocalizedName": "block.minecraft.damaged_anvil",
+ "localizedName": "Damaged Anvil",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dandelion",
+ "unlocalizedName": "block.minecraft.dandelion",
+ "localizedName": "Dandelion",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_boat",
+ "unlocalizedName": "item.minecraft.dark_oak_boat",
+ "localizedName": "Dark Oak Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_button",
+ "unlocalizedName": "block.minecraft.dark_oak_button",
+ "localizedName": "Dark Oak Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_door",
+ "unlocalizedName": "block.minecraft.dark_oak_door",
+ "localizedName": "Dark Oak Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_fence",
+ "unlocalizedName": "block.minecraft.dark_oak_fence",
+ "localizedName": "Dark Oak Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_fence_gate",
+ "unlocalizedName": "block.minecraft.dark_oak_fence_gate",
+ "localizedName": "Dark Oak Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_leaves",
+ "unlocalizedName": "block.minecraft.dark_oak_leaves",
+ "localizedName": "Dark Oak Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_log",
+ "unlocalizedName": "block.minecraft.dark_oak_log",
+ "localizedName": "Dark Oak Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_planks",
+ "unlocalizedName": "block.minecraft.dark_oak_planks",
+ "localizedName": "Dark Oak Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_pressure_plate",
+ "unlocalizedName": "block.minecraft.dark_oak_pressure_plate",
+ "localizedName": "Dark Oak Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_sapling",
+ "unlocalizedName": "block.minecraft.dark_oak_sapling",
+ "localizedName": "Dark Oak Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_sign",
+ "unlocalizedName": "block.minecraft.dark_oak_sign",
+ "localizedName": "Dark Oak Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_slab",
+ "unlocalizedName": "block.minecraft.dark_oak_slab",
+ "localizedName": "Dark Oak Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_stairs",
+ "unlocalizedName": "block.minecraft.dark_oak_stairs",
+ "localizedName": "Dark Oak Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_trapdoor",
+ "unlocalizedName": "block.minecraft.dark_oak_trapdoor",
+ "localizedName": "Dark Oak Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_oak_wood",
+ "unlocalizedName": "block.minecraft.dark_oak_wood",
+ "localizedName": "Dark Oak Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_prismarine",
+ "unlocalizedName": "block.minecraft.dark_prismarine",
+ "localizedName": "Dark Prismarine",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_prismarine_slab",
+ "unlocalizedName": "block.minecraft.dark_prismarine_slab",
+ "localizedName": "Dark Prismarine Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dark_prismarine_stairs",
+ "unlocalizedName": "block.minecraft.dark_prismarine_stairs",
+ "localizedName": "Dark Prismarine Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:daylight_detector",
+ "unlocalizedName": "block.minecraft.daylight_detector",
+ "localizedName": "Daylight Detector",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_brain_coral",
+ "unlocalizedName": "block.minecraft.dead_brain_coral",
+ "localizedName": "Dead Brain Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_brain_coral_block",
+ "unlocalizedName": "block.minecraft.dead_brain_coral_block",
+ "localizedName": "Dead Brain Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_brain_coral_fan",
+ "unlocalizedName": "block.minecraft.dead_brain_coral_fan",
+ "localizedName": "Dead Brain Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_bubble_coral",
+ "unlocalizedName": "block.minecraft.dead_bubble_coral",
+ "localizedName": "Dead Bubble Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_bubble_coral_block",
+ "unlocalizedName": "block.minecraft.dead_bubble_coral_block",
+ "localizedName": "Dead Bubble Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_bubble_coral_fan",
+ "unlocalizedName": "block.minecraft.dead_bubble_coral_fan",
+ "localizedName": "Dead Bubble Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_bush",
+ "unlocalizedName": "block.minecraft.dead_bush",
+ "localizedName": "Dead Bush",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_fire_coral",
+ "unlocalizedName": "block.minecraft.dead_fire_coral",
+ "localizedName": "Dead Fire Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_fire_coral_block",
+ "unlocalizedName": "block.minecraft.dead_fire_coral_block",
+ "localizedName": "Dead Fire Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_fire_coral_fan",
+ "unlocalizedName": "block.minecraft.dead_fire_coral_fan",
+ "localizedName": "Dead Fire Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_horn_coral",
+ "unlocalizedName": "block.minecraft.dead_horn_coral",
+ "localizedName": "Dead Horn Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_horn_coral_block",
+ "unlocalizedName": "block.minecraft.dead_horn_coral_block",
+ "localizedName": "Dead Horn Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_horn_coral_fan",
+ "unlocalizedName": "block.minecraft.dead_horn_coral_fan",
+ "localizedName": "Dead Horn Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_tube_coral",
+ "unlocalizedName": "block.minecraft.dead_tube_coral",
+ "localizedName": "Dead Tube Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_tube_coral_block",
+ "unlocalizedName": "block.minecraft.dead_tube_coral_block",
+ "localizedName": "Dead Tube Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dead_tube_coral_fan",
+ "unlocalizedName": "block.minecraft.dead_tube_coral_fan",
+ "localizedName": "Dead Tube Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:debug_stick",
+ "unlocalizedName": "item.minecraft.debug_stick",
+ "localizedName": "Debug Stick",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:detector_rail",
+ "unlocalizedName": "block.minecraft.detector_rail",
+ "localizedName": "Detector Rail",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diamond",
+ "unlocalizedName": "item.minecraft.diamond",
+ "localizedName": "Diamond",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diamond_axe",
+ "unlocalizedName": "item.minecraft.diamond_axe",
+ "localizedName": "Diamond Axe",
+ "maxStackSize": 1,
+ "maxDamage": 1561
+ },
+ {
+ "id": "minecraft:diamond_block",
+ "unlocalizedName": "block.minecraft.diamond_block",
+ "localizedName": "Block of Diamond",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diamond_boots",
+ "unlocalizedName": "item.minecraft.diamond_boots",
+ "localizedName": "Diamond Boots",
+ "maxStackSize": 1,
+ "maxDamage": 429
+ },
+ {
+ "id": "minecraft:diamond_chestplate",
+ "unlocalizedName": "item.minecraft.diamond_chestplate",
+ "localizedName": "Diamond Chestplate",
+ "maxStackSize": 1,
+ "maxDamage": 528
+ },
+ {
+ "id": "minecraft:diamond_helmet",
+ "unlocalizedName": "item.minecraft.diamond_helmet",
+ "localizedName": "Diamond Helmet",
+ "maxStackSize": 1,
+ "maxDamage": 363
+ },
+ {
+ "id": "minecraft:diamond_hoe",
+ "unlocalizedName": "item.minecraft.diamond_hoe",
+ "localizedName": "Diamond Hoe",
+ "maxStackSize": 1,
+ "maxDamage": 1561
+ },
+ {
+ "id": "minecraft:diamond_horse_armor",
+ "unlocalizedName": "item.minecraft.diamond_horse_armor",
+ "localizedName": "Diamond Horse Armor",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diamond_leggings",
+ "unlocalizedName": "item.minecraft.diamond_leggings",
+ "localizedName": "Diamond Leggings",
+ "maxStackSize": 1,
+ "maxDamage": 495
+ },
+ {
+ "id": "minecraft:diamond_ore",
+ "unlocalizedName": "block.minecraft.diamond_ore",
+ "localizedName": "Diamond Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diamond_pickaxe",
+ "unlocalizedName": "item.minecraft.diamond_pickaxe",
+ "localizedName": "Diamond Pickaxe",
+ "maxStackSize": 1,
+ "maxDamage": 1561
+ },
+ {
+ "id": "minecraft:diamond_shovel",
+ "unlocalizedName": "item.minecraft.diamond_shovel",
+ "localizedName": "Diamond Shovel",
+ "maxStackSize": 1,
+ "maxDamage": 1561
+ },
+ {
+ "id": "minecraft:diamond_sword",
+ "unlocalizedName": "item.minecraft.diamond_sword",
+ "localizedName": "Diamond Sword",
+ "maxStackSize": 1,
+ "maxDamage": 1561
+ },
+ {
+ "id": "minecraft:diorite",
+ "unlocalizedName": "block.minecraft.diorite",
+ "localizedName": "Diorite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diorite_slab",
+ "unlocalizedName": "block.minecraft.diorite_slab",
+ "localizedName": "Diorite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diorite_stairs",
+ "unlocalizedName": "block.minecraft.diorite_stairs",
+ "localizedName": "Diorite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:diorite_wall",
+ "unlocalizedName": "block.minecraft.diorite_wall",
+ "localizedName": "Diorite Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dirt",
+ "unlocalizedName": "block.minecraft.dirt",
+ "localizedName": "Dirt",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dispenser",
+ "unlocalizedName": "block.minecraft.dispenser",
+ "localizedName": "Dispenser",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dolphin_spawn_egg",
+ "unlocalizedName": "item.minecraft.dolphin_spawn_egg",
+ "localizedName": "Dolphin Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:donkey_spawn_egg",
+ "unlocalizedName": "item.minecraft.donkey_spawn_egg",
+ "localizedName": "Donkey Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dragon_breath",
+ "unlocalizedName": "item.minecraft.dragon_breath",
+ "localizedName": "Dragon\u0027s Breath",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dragon_egg",
+ "unlocalizedName": "block.minecraft.dragon_egg",
+ "localizedName": "Dragon Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dragon_head",
+ "unlocalizedName": "block.minecraft.dragon_head",
+ "localizedName": "Dragon Head",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dried_kelp",
+ "unlocalizedName": "item.minecraft.dried_kelp",
+ "localizedName": "Dried Kelp",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dried_kelp_block",
+ "unlocalizedName": "block.minecraft.dried_kelp_block",
+ "localizedName": "Dried Kelp Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:dropper",
+ "unlocalizedName": "block.minecraft.dropper",
+ "localizedName": "Dropper",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:drowned_spawn_egg",
+ "unlocalizedName": "item.minecraft.drowned_spawn_egg",
+ "localizedName": "Drowned Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:egg",
+ "unlocalizedName": "item.minecraft.egg",
+ "localizedName": "Egg",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:elder_guardian_spawn_egg",
+ "unlocalizedName": "item.minecraft.elder_guardian_spawn_egg",
+ "localizedName": "Elder Guardian Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:elytra",
+ "unlocalizedName": "item.minecraft.elytra",
+ "localizedName": "Elytra",
+ "maxStackSize": 1,
+ "maxDamage": 432
+ },
+ {
+ "id": "minecraft:emerald",
+ "unlocalizedName": "item.minecraft.emerald",
+ "localizedName": "Emerald",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:emerald_block",
+ "unlocalizedName": "block.minecraft.emerald_block",
+ "localizedName": "Block of Emerald",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:emerald_ore",
+ "unlocalizedName": "block.minecraft.emerald_ore",
+ "localizedName": "Emerald Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:enchanted_book",
+ "unlocalizedName": "item.minecraft.enchanted_book",
+ "localizedName": "Enchanted Book",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:enchanted_golden_apple",
+ "unlocalizedName": "item.minecraft.enchanted_golden_apple",
+ "localizedName": "Enchanted Golden Apple",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:enchanting_table",
+ "unlocalizedName": "block.minecraft.enchanting_table",
+ "localizedName": "Enchanting Table",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_crystal",
+ "unlocalizedName": "item.minecraft.end_crystal",
+ "localizedName": "End Crystal",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_portal_frame",
+ "unlocalizedName": "block.minecraft.end_portal_frame",
+ "localizedName": "End Portal Frame",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_rod",
+ "unlocalizedName": "block.minecraft.end_rod",
+ "localizedName": "End Rod",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_stone",
+ "unlocalizedName": "block.minecraft.end_stone",
+ "localizedName": "End Stone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_stone_brick_slab",
+ "unlocalizedName": "block.minecraft.end_stone_brick_slab",
+ "localizedName": "End Stone Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_stone_brick_stairs",
+ "unlocalizedName": "block.minecraft.end_stone_brick_stairs",
+ "localizedName": "End Stone Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_stone_brick_wall",
+ "unlocalizedName": "block.minecraft.end_stone_brick_wall",
+ "localizedName": "End Stone Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:end_stone_bricks",
+ "unlocalizedName": "block.minecraft.end_stone_bricks",
+ "localizedName": "End Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ender_chest",
+ "unlocalizedName": "block.minecraft.ender_chest",
+ "localizedName": "Ender Chest",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ender_eye",
+ "unlocalizedName": "item.minecraft.ender_eye",
+ "localizedName": "Eye of Ender",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ender_pearl",
+ "unlocalizedName": "item.minecraft.ender_pearl",
+ "localizedName": "Ender Pearl",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:enderman_spawn_egg",
+ "unlocalizedName": "item.minecraft.enderman_spawn_egg",
+ "localizedName": "Enderman Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:endermite_spawn_egg",
+ "unlocalizedName": "item.minecraft.endermite_spawn_egg",
+ "localizedName": "Endermite Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:evoker_spawn_egg",
+ "unlocalizedName": "item.minecraft.evoker_spawn_egg",
+ "localizedName": "Evoker Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:experience_bottle",
+ "unlocalizedName": "item.minecraft.experience_bottle",
+ "localizedName": "Bottle o\u0027 Enchanting",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:farmland",
+ "unlocalizedName": "block.minecraft.farmland",
+ "localizedName": "Farmland",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:feather",
+ "unlocalizedName": "item.minecraft.feather",
+ "localizedName": "Feather",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fermented_spider_eye",
+ "unlocalizedName": "item.minecraft.fermented_spider_eye",
+ "localizedName": "Fermented Spider Eye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fern",
+ "unlocalizedName": "block.minecraft.fern",
+ "localizedName": "Fern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:filled_map",
+ "unlocalizedName": "item.minecraft.filled_map",
+ "localizedName": "Map",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fire_charge",
+ "unlocalizedName": "item.minecraft.fire_charge",
+ "localizedName": "Fire Charge",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fire_coral",
+ "unlocalizedName": "block.minecraft.fire_coral",
+ "localizedName": "Fire Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fire_coral_block",
+ "unlocalizedName": "block.minecraft.fire_coral_block",
+ "localizedName": "Fire Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fire_coral_fan",
+ "unlocalizedName": "block.minecraft.fire_coral_fan",
+ "localizedName": "Fire Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:firework_rocket",
+ "unlocalizedName": "item.minecraft.firework_rocket",
+ "localizedName": "Firework Rocket",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:firework_star",
+ "unlocalizedName": "item.minecraft.firework_star",
+ "localizedName": "Firework Star",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fishing_rod",
+ "unlocalizedName": "item.minecraft.fishing_rod",
+ "localizedName": "Fishing Rod",
+ "maxStackSize": 1,
+ "maxDamage": 64
+ },
+ {
+ "id": "minecraft:fletching_table",
+ "unlocalizedName": "block.minecraft.fletching_table",
+ "localizedName": "Fletching Table",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:flint",
+ "unlocalizedName": "item.minecraft.flint",
+ "localizedName": "Flint",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:flint_and_steel",
+ "unlocalizedName": "item.minecraft.flint_and_steel",
+ "localizedName": "Flint and Steel",
+ "maxStackSize": 1,
+ "maxDamage": 64
+ },
+ {
+ "id": "minecraft:flower_banner_pattern",
+ "unlocalizedName": "item.minecraft.flower_banner_pattern",
+ "localizedName": "Banner Pattern",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:flower_pot",
+ "unlocalizedName": "block.minecraft.flower_pot",
+ "localizedName": "Flower Pot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:fox_spawn_egg",
+ "unlocalizedName": "item.minecraft.fox_spawn_egg",
+ "localizedName": "Fox Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:furnace",
+ "unlocalizedName": "block.minecraft.furnace",
+ "localizedName": "Furnace",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:furnace_minecart",
+ "unlocalizedName": "item.minecraft.furnace_minecart",
+ "localizedName": "Minecart with Furnace",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ghast_spawn_egg",
+ "unlocalizedName": "item.minecraft.ghast_spawn_egg",
+ "localizedName": "Ghast Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ghast_tear",
+ "unlocalizedName": "item.minecraft.ghast_tear",
+ "localizedName": "Ghast Tear",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glass",
+ "unlocalizedName": "block.minecraft.glass",
+ "localizedName": "Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glass_bottle",
+ "unlocalizedName": "item.minecraft.glass_bottle",
+ "localizedName": "Glass Bottle",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glass_pane",
+ "unlocalizedName": "block.minecraft.glass_pane",
+ "localizedName": "Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glistering_melon_slice",
+ "unlocalizedName": "item.minecraft.glistering_melon_slice",
+ "localizedName": "Glistering Melon Slice",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:globe_banner_pattern",
+ "unlocalizedName": "item.minecraft.globe_banner_pattern",
+ "localizedName": "Banner Pattern",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glowstone",
+ "unlocalizedName": "block.minecraft.glowstone",
+ "localizedName": "Glowstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:glowstone_dust",
+ "unlocalizedName": "item.minecraft.glowstone_dust",
+ "localizedName": "Glowstone Dust",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gold_block",
+ "unlocalizedName": "block.minecraft.gold_block",
+ "localizedName": "Block of Gold",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gold_ingot",
+ "unlocalizedName": "item.minecraft.gold_ingot",
+ "localizedName": "Gold Ingot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gold_nugget",
+ "unlocalizedName": "item.minecraft.gold_nugget",
+ "localizedName": "Gold Nugget",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gold_ore",
+ "unlocalizedName": "block.minecraft.gold_ore",
+ "localizedName": "Gold Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:golden_apple",
+ "unlocalizedName": "item.minecraft.golden_apple",
+ "localizedName": "Golden Apple",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:golden_axe",
+ "unlocalizedName": "item.minecraft.golden_axe",
+ "localizedName": "Golden Axe",
+ "maxStackSize": 1,
+ "maxDamage": 32
+ },
+ {
+ "id": "minecraft:golden_boots",
+ "unlocalizedName": "item.minecraft.golden_boots",
+ "localizedName": "Golden Boots",
+ "maxStackSize": 1,
+ "maxDamage": 91
+ },
+ {
+ "id": "minecraft:golden_carrot",
+ "unlocalizedName": "item.minecraft.golden_carrot",
+ "localizedName": "Golden Carrot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:golden_chestplate",
+ "unlocalizedName": "item.minecraft.golden_chestplate",
+ "localizedName": "Golden Chestplate",
+ "maxStackSize": 1,
+ "maxDamage": 112
+ },
+ {
+ "id": "minecraft:golden_helmet",
+ "unlocalizedName": "item.minecraft.golden_helmet",
+ "localizedName": "Golden Helmet",
+ "maxStackSize": 1,
+ "maxDamage": 77
+ },
+ {
+ "id": "minecraft:golden_hoe",
+ "unlocalizedName": "item.minecraft.golden_hoe",
+ "localizedName": "Golden Hoe",
+ "maxStackSize": 1,
+ "maxDamage": 32
+ },
+ {
+ "id": "minecraft:golden_horse_armor",
+ "unlocalizedName": "item.minecraft.golden_horse_armor",
+ "localizedName": "Golden Horse Armor",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:golden_leggings",
+ "unlocalizedName": "item.minecraft.golden_leggings",
+ "localizedName": "Golden Leggings",
+ "maxStackSize": 1,
+ "maxDamage": 105
+ },
+ {
+ "id": "minecraft:golden_pickaxe",
+ "unlocalizedName": "item.minecraft.golden_pickaxe",
+ "localizedName": "Golden Pickaxe",
+ "maxStackSize": 1,
+ "maxDamage": 32
+ },
+ {
+ "id": "minecraft:golden_shovel",
+ "unlocalizedName": "item.minecraft.golden_shovel",
+ "localizedName": "Golden Shovel",
+ "maxStackSize": 1,
+ "maxDamage": 32
+ },
+ {
+ "id": "minecraft:golden_sword",
+ "unlocalizedName": "item.minecraft.golden_sword",
+ "localizedName": "Golden Sword",
+ "maxStackSize": 1,
+ "maxDamage": 32
+ },
+ {
+ "id": "minecraft:granite",
+ "unlocalizedName": "block.minecraft.granite",
+ "localizedName": "Granite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:granite_slab",
+ "unlocalizedName": "block.minecraft.granite_slab",
+ "localizedName": "Granite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:granite_stairs",
+ "unlocalizedName": "block.minecraft.granite_stairs",
+ "localizedName": "Granite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:granite_wall",
+ "unlocalizedName": "block.minecraft.granite_wall",
+ "localizedName": "Granite Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:grass",
+ "unlocalizedName": "block.minecraft.grass",
+ "localizedName": "Grass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:grass_block",
+ "unlocalizedName": "block.minecraft.grass_block",
+ "localizedName": "Grass Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:grass_path",
+ "unlocalizedName": "block.minecraft.grass_path",
+ "localizedName": "Grass Path",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gravel",
+ "unlocalizedName": "block.minecraft.gravel",
+ "localizedName": "Gravel",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_banner",
+ "unlocalizedName": "block.minecraft.gray_banner",
+ "localizedName": "Gray Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_bed",
+ "unlocalizedName": "block.minecraft.gray_bed",
+ "localizedName": "Gray Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_carpet",
+ "unlocalizedName": "block.minecraft.gray_carpet",
+ "localizedName": "Gray Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_concrete",
+ "unlocalizedName": "block.minecraft.gray_concrete",
+ "localizedName": "Gray Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_concrete_powder",
+ "unlocalizedName": "block.minecraft.gray_concrete_powder",
+ "localizedName": "Gray Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_dye",
+ "unlocalizedName": "item.minecraft.gray_dye",
+ "localizedName": "Gray Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.gray_glazed_terracotta",
+ "localizedName": "Gray Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_shulker_box",
+ "unlocalizedName": "block.minecraft.gray_shulker_box",
+ "localizedName": "Gray Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_stained_glass",
+ "unlocalizedName": "block.minecraft.gray_stained_glass",
+ "localizedName": "Gray Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.gray_stained_glass_pane",
+ "localizedName": "Gray Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_terracotta",
+ "unlocalizedName": "block.minecraft.gray_terracotta",
+ "localizedName": "Gray Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gray_wool",
+ "unlocalizedName": "block.minecraft.gray_wool",
+ "localizedName": "Gray Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_banner",
+ "unlocalizedName": "block.minecraft.green_banner",
+ "localizedName": "Green Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_bed",
+ "unlocalizedName": "block.minecraft.green_bed",
+ "localizedName": "Green Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_carpet",
+ "unlocalizedName": "block.minecraft.green_carpet",
+ "localizedName": "Green Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_concrete",
+ "unlocalizedName": "block.minecraft.green_concrete",
+ "localizedName": "Green Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_concrete_powder",
+ "unlocalizedName": "block.minecraft.green_concrete_powder",
+ "localizedName": "Green Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_dye",
+ "unlocalizedName": "item.minecraft.green_dye",
+ "localizedName": "Green Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.green_glazed_terracotta",
+ "localizedName": "Green Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_shulker_box",
+ "unlocalizedName": "block.minecraft.green_shulker_box",
+ "localizedName": "Green Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_stained_glass",
+ "unlocalizedName": "block.minecraft.green_stained_glass",
+ "localizedName": "Green Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.green_stained_glass_pane",
+ "localizedName": "Green Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_terracotta",
+ "unlocalizedName": "block.minecraft.green_terracotta",
+ "localizedName": "Green Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:green_wool",
+ "unlocalizedName": "block.minecraft.green_wool",
+ "localizedName": "Green Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:grindstone",
+ "unlocalizedName": "block.minecraft.grindstone",
+ "localizedName": "Grindstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:guardian_spawn_egg",
+ "unlocalizedName": "item.minecraft.guardian_spawn_egg",
+ "localizedName": "Guardian Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:gunpowder",
+ "unlocalizedName": "item.minecraft.gunpowder",
+ "localizedName": "Gunpowder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:hay_block",
+ "unlocalizedName": "block.minecraft.hay_block",
+ "localizedName": "Hay Bale",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:heart_of_the_sea",
+ "unlocalizedName": "item.minecraft.heart_of_the_sea",
+ "localizedName": "Heart of the Sea",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:heavy_weighted_pressure_plate",
+ "unlocalizedName": "block.minecraft.heavy_weighted_pressure_plate",
+ "localizedName": "Heavy Weighted Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:hopper",
+ "unlocalizedName": "block.minecraft.hopper",
+ "localizedName": "Hopper",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:hopper_minecart",
+ "unlocalizedName": "item.minecraft.hopper_minecart",
+ "localizedName": "Minecart with Hopper",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:horn_coral",
+ "unlocalizedName": "block.minecraft.horn_coral",
+ "localizedName": "Horn Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:horn_coral_block",
+ "unlocalizedName": "block.minecraft.horn_coral_block",
+ "localizedName": "Horn Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:horn_coral_fan",
+ "unlocalizedName": "block.minecraft.horn_coral_fan",
+ "localizedName": "Horn Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:horse_spawn_egg",
+ "unlocalizedName": "item.minecraft.horse_spawn_egg",
+ "localizedName": "Horse Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:husk_spawn_egg",
+ "unlocalizedName": "item.minecraft.husk_spawn_egg",
+ "localizedName": "Husk Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ice",
+ "unlocalizedName": "block.minecraft.ice",
+ "localizedName": "Ice",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_chiseled_stone_bricks",
+ "unlocalizedName": "block.minecraft.infested_chiseled_stone_bricks",
+ "localizedName": "Infested Chiseled Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_cobblestone",
+ "unlocalizedName": "block.minecraft.infested_cobblestone",
+ "localizedName": "Infested Cobblestone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_cracked_stone_bricks",
+ "unlocalizedName": "block.minecraft.infested_cracked_stone_bricks",
+ "localizedName": "Infested Cracked Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_mossy_stone_bricks",
+ "unlocalizedName": "block.minecraft.infested_mossy_stone_bricks",
+ "localizedName": "Infested Mossy Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_stone",
+ "unlocalizedName": "block.minecraft.infested_stone",
+ "localizedName": "Infested Stone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:infested_stone_bricks",
+ "unlocalizedName": "block.minecraft.infested_stone_bricks",
+ "localizedName": "Infested Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ink_sac",
+ "unlocalizedName": "item.minecraft.ink_sac",
+ "localizedName": "Ink Sac",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_axe",
+ "unlocalizedName": "item.minecraft.iron_axe",
+ "localizedName": "Iron Axe",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:iron_bars",
+ "unlocalizedName": "block.minecraft.iron_bars",
+ "localizedName": "Iron Bars",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_block",
+ "unlocalizedName": "block.minecraft.iron_block",
+ "localizedName": "Block of Iron",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_boots",
+ "unlocalizedName": "item.minecraft.iron_boots",
+ "localizedName": "Iron Boots",
+ "maxStackSize": 1,
+ "maxDamage": 195
+ },
+ {
+ "id": "minecraft:iron_chestplate",
+ "unlocalizedName": "item.minecraft.iron_chestplate",
+ "localizedName": "Iron Chestplate",
+ "maxStackSize": 1,
+ "maxDamage": 240
+ },
+ {
+ "id": "minecraft:iron_door",
+ "unlocalizedName": "block.minecraft.iron_door",
+ "localizedName": "Iron Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_helmet",
+ "unlocalizedName": "item.minecraft.iron_helmet",
+ "localizedName": "Iron Helmet",
+ "maxStackSize": 1,
+ "maxDamage": 165
+ },
+ {
+ "id": "minecraft:iron_hoe",
+ "unlocalizedName": "item.minecraft.iron_hoe",
+ "localizedName": "Iron Hoe",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:iron_horse_armor",
+ "unlocalizedName": "item.minecraft.iron_horse_armor",
+ "localizedName": "Iron Horse Armor",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_ingot",
+ "unlocalizedName": "item.minecraft.iron_ingot",
+ "localizedName": "Iron Ingot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_leggings",
+ "unlocalizedName": "item.minecraft.iron_leggings",
+ "localizedName": "Iron Leggings",
+ "maxStackSize": 1,
+ "maxDamage": 225
+ },
+ {
+ "id": "minecraft:iron_nugget",
+ "unlocalizedName": "item.minecraft.iron_nugget",
+ "localizedName": "Iron Nugget",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_ore",
+ "unlocalizedName": "block.minecraft.iron_ore",
+ "localizedName": "Iron Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:iron_pickaxe",
+ "unlocalizedName": "item.minecraft.iron_pickaxe",
+ "localizedName": "Iron Pickaxe",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:iron_shovel",
+ "unlocalizedName": "item.minecraft.iron_shovel",
+ "localizedName": "Iron Shovel",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:iron_sword",
+ "unlocalizedName": "item.minecraft.iron_sword",
+ "localizedName": "Iron Sword",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:iron_trapdoor",
+ "unlocalizedName": "block.minecraft.iron_trapdoor",
+ "localizedName": "Iron Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:item_frame",
+ "unlocalizedName": "item.minecraft.item_frame",
+ "localizedName": "Item Frame",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jack_o_lantern",
+ "unlocalizedName": "block.minecraft.jack_o_lantern",
+ "localizedName": "Jack o\u0027Lantern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jigsaw",
+ "unlocalizedName": "block.minecraft.jigsaw",
+ "localizedName": "Jigsaw Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jukebox",
+ "unlocalizedName": "block.minecraft.jukebox",
+ "localizedName": "Jukebox",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_boat",
+ "unlocalizedName": "item.minecraft.jungle_boat",
+ "localizedName": "Jungle Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_button",
+ "unlocalizedName": "block.minecraft.jungle_button",
+ "localizedName": "Jungle Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_door",
+ "unlocalizedName": "block.minecraft.jungle_door",
+ "localizedName": "Jungle Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_fence",
+ "unlocalizedName": "block.minecraft.jungle_fence",
+ "localizedName": "Jungle Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_fence_gate",
+ "unlocalizedName": "block.minecraft.jungle_fence_gate",
+ "localizedName": "Jungle Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_leaves",
+ "unlocalizedName": "block.minecraft.jungle_leaves",
+ "localizedName": "Jungle Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_log",
+ "unlocalizedName": "block.minecraft.jungle_log",
+ "localizedName": "Jungle Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_planks",
+ "unlocalizedName": "block.minecraft.jungle_planks",
+ "localizedName": "Jungle Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_pressure_plate",
+ "unlocalizedName": "block.minecraft.jungle_pressure_plate",
+ "localizedName": "Jungle Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_sapling",
+ "unlocalizedName": "block.minecraft.jungle_sapling",
+ "localizedName": "Jungle Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_sign",
+ "unlocalizedName": "block.minecraft.jungle_sign",
+ "localizedName": "Jungle Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_slab",
+ "unlocalizedName": "block.minecraft.jungle_slab",
+ "localizedName": "Jungle Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_stairs",
+ "unlocalizedName": "block.minecraft.jungle_stairs",
+ "localizedName": "Jungle Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_trapdoor",
+ "unlocalizedName": "block.minecraft.jungle_trapdoor",
+ "localizedName": "Jungle Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:jungle_wood",
+ "unlocalizedName": "block.minecraft.jungle_wood",
+ "localizedName": "Jungle Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:kelp",
+ "unlocalizedName": "block.minecraft.kelp",
+ "localizedName": "Kelp",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:knowledge_book",
+ "unlocalizedName": "item.minecraft.knowledge_book",
+ "localizedName": "Knowledge Book",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ladder",
+ "unlocalizedName": "block.minecraft.ladder",
+ "localizedName": "Ladder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lantern",
+ "unlocalizedName": "block.minecraft.lantern",
+ "localizedName": "Lantern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lapis_block",
+ "unlocalizedName": "block.minecraft.lapis_block",
+ "localizedName": "Lapis Lazuli Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lapis_lazuli",
+ "unlocalizedName": "item.minecraft.lapis_lazuli",
+ "localizedName": "Lapis Lazuli",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lapis_ore",
+ "unlocalizedName": "block.minecraft.lapis_ore",
+ "localizedName": "Lapis Lazuli Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:large_fern",
+ "unlocalizedName": "block.minecraft.large_fern",
+ "localizedName": "Large Fern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lava_bucket",
+ "unlocalizedName": "item.minecraft.lava_bucket",
+ "localizedName": "Lava Bucket",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lead",
+ "unlocalizedName": "item.minecraft.lead",
+ "localizedName": "Lead",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:leather",
+ "unlocalizedName": "item.minecraft.leather",
+ "localizedName": "Leather",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:leather_boots",
+ "unlocalizedName": "item.minecraft.leather_boots",
+ "localizedName": "Leather Boots",
+ "maxStackSize": 1,
+ "maxDamage": 65
+ },
+ {
+ "id": "minecraft:leather_chestplate",
+ "unlocalizedName": "item.minecraft.leather_chestplate",
+ "localizedName": "Leather Tunic",
+ "maxStackSize": 1,
+ "maxDamage": 80
+ },
+ {
+ "id": "minecraft:leather_helmet",
+ "unlocalizedName": "item.minecraft.leather_helmet",
+ "localizedName": "Leather Cap",
+ "maxStackSize": 1,
+ "maxDamage": 55
+ },
+ {
+ "id": "minecraft:leather_horse_armor",
+ "unlocalizedName": "item.minecraft.leather_horse_armor",
+ "localizedName": "Leather Horse Armor",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:leather_leggings",
+ "unlocalizedName": "item.minecraft.leather_leggings",
+ "localizedName": "Leather Pants",
+ "maxStackSize": 1,
+ "maxDamage": 75
+ },
+ {
+ "id": "minecraft:lectern",
+ "unlocalizedName": "block.minecraft.lectern",
+ "localizedName": "Lectern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lever",
+ "unlocalizedName": "block.minecraft.lever",
+ "localizedName": "Lever",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_banner",
+ "unlocalizedName": "block.minecraft.light_blue_banner",
+ "localizedName": "Light Blue Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_bed",
+ "unlocalizedName": "block.minecraft.light_blue_bed",
+ "localizedName": "Light Blue Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_carpet",
+ "unlocalizedName": "block.minecraft.light_blue_carpet",
+ "localizedName": "Light Blue Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_concrete",
+ "unlocalizedName": "block.minecraft.light_blue_concrete",
+ "localizedName": "Light Blue Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_concrete_powder",
+ "unlocalizedName": "block.minecraft.light_blue_concrete_powder",
+ "localizedName": "Light Blue Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_dye",
+ "unlocalizedName": "item.minecraft.light_blue_dye",
+ "localizedName": "Light Blue Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.light_blue_glazed_terracotta",
+ "localizedName": "Light Blue Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_shulker_box",
+ "unlocalizedName": "block.minecraft.light_blue_shulker_box",
+ "localizedName": "Light Blue Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_stained_glass",
+ "unlocalizedName": "block.minecraft.light_blue_stained_glass",
+ "localizedName": "Light Blue Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.light_blue_stained_glass_pane",
+ "localizedName": "Light Blue Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_terracotta",
+ "unlocalizedName": "block.minecraft.light_blue_terracotta",
+ "localizedName": "Light Blue Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_blue_wool",
+ "unlocalizedName": "block.minecraft.light_blue_wool",
+ "localizedName": "Light Blue Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_banner",
+ "unlocalizedName": "block.minecraft.light_gray_banner",
+ "localizedName": "Light Gray Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_bed",
+ "unlocalizedName": "block.minecraft.light_gray_bed",
+ "localizedName": "Light Gray Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_carpet",
+ "unlocalizedName": "block.minecraft.light_gray_carpet",
+ "localizedName": "Light Gray Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_concrete",
+ "unlocalizedName": "block.minecraft.light_gray_concrete",
+ "localizedName": "Light Gray Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_concrete_powder",
+ "unlocalizedName": "block.minecraft.light_gray_concrete_powder",
+ "localizedName": "Light Gray Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_dye",
+ "unlocalizedName": "item.minecraft.light_gray_dye",
+ "localizedName": "Light Gray Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.light_gray_glazed_terracotta",
+ "localizedName": "Light Gray Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_shulker_box",
+ "unlocalizedName": "block.minecraft.light_gray_shulker_box",
+ "localizedName": "Light Gray Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_stained_glass",
+ "unlocalizedName": "block.minecraft.light_gray_stained_glass",
+ "localizedName": "Light Gray Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.light_gray_stained_glass_pane",
+ "localizedName": "Light Gray Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_terracotta",
+ "unlocalizedName": "block.minecraft.light_gray_terracotta",
+ "localizedName": "Light Gray Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_gray_wool",
+ "unlocalizedName": "block.minecraft.light_gray_wool",
+ "localizedName": "Light Gray Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:light_weighted_pressure_plate",
+ "unlocalizedName": "block.minecraft.light_weighted_pressure_plate",
+ "localizedName": "Light Weighted Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lilac",
+ "unlocalizedName": "block.minecraft.lilac",
+ "localizedName": "Lilac",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lily_of_the_valley",
+ "unlocalizedName": "block.minecraft.lily_of_the_valley",
+ "localizedName": "Lily of the Valley",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lily_pad",
+ "unlocalizedName": "block.minecraft.lily_pad",
+ "localizedName": "Lily Pad",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_banner",
+ "unlocalizedName": "block.minecraft.lime_banner",
+ "localizedName": "Lime Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_bed",
+ "unlocalizedName": "block.minecraft.lime_bed",
+ "localizedName": "Lime Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_carpet",
+ "unlocalizedName": "block.minecraft.lime_carpet",
+ "localizedName": "Lime Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_concrete",
+ "unlocalizedName": "block.minecraft.lime_concrete",
+ "localizedName": "Lime Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_concrete_powder",
+ "unlocalizedName": "block.minecraft.lime_concrete_powder",
+ "localizedName": "Lime Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_dye",
+ "unlocalizedName": "item.minecraft.lime_dye",
+ "localizedName": "Lime Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.lime_glazed_terracotta",
+ "localizedName": "Lime Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_shulker_box",
+ "unlocalizedName": "block.minecraft.lime_shulker_box",
+ "localizedName": "Lime Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_stained_glass",
+ "unlocalizedName": "block.minecraft.lime_stained_glass",
+ "localizedName": "Lime Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.lime_stained_glass_pane",
+ "localizedName": "Lime Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_terracotta",
+ "unlocalizedName": "block.minecraft.lime_terracotta",
+ "localizedName": "Lime Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lime_wool",
+ "unlocalizedName": "block.minecraft.lime_wool",
+ "localizedName": "Lime Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:lingering_potion",
+ "unlocalizedName": "item.minecraft.lingering_potion.effect.water",
+ "localizedName": "Lingering Water Bottle",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:llama_spawn_egg",
+ "unlocalizedName": "item.minecraft.llama_spawn_egg",
+ "localizedName": "Llama Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:loom",
+ "unlocalizedName": "block.minecraft.loom",
+ "localizedName": "Loom",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_banner",
+ "unlocalizedName": "block.minecraft.magenta_banner",
+ "localizedName": "Magenta Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_bed",
+ "unlocalizedName": "block.minecraft.magenta_bed",
+ "localizedName": "Magenta Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_carpet",
+ "unlocalizedName": "block.minecraft.magenta_carpet",
+ "localizedName": "Magenta Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_concrete",
+ "unlocalizedName": "block.minecraft.magenta_concrete",
+ "localizedName": "Magenta Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_concrete_powder",
+ "unlocalizedName": "block.minecraft.magenta_concrete_powder",
+ "localizedName": "Magenta Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_dye",
+ "unlocalizedName": "item.minecraft.magenta_dye",
+ "localizedName": "Magenta Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.magenta_glazed_terracotta",
+ "localizedName": "Magenta Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_shulker_box",
+ "unlocalizedName": "block.minecraft.magenta_shulker_box",
+ "localizedName": "Magenta Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_stained_glass",
+ "unlocalizedName": "block.minecraft.magenta_stained_glass",
+ "localizedName": "Magenta Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.magenta_stained_glass_pane",
+ "localizedName": "Magenta Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_terracotta",
+ "unlocalizedName": "block.minecraft.magenta_terracotta",
+ "localizedName": "Magenta Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magenta_wool",
+ "unlocalizedName": "block.minecraft.magenta_wool",
+ "localizedName": "Magenta Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magma_block",
+ "unlocalizedName": "block.minecraft.magma_block",
+ "localizedName": "Magma Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magma_cream",
+ "unlocalizedName": "item.minecraft.magma_cream",
+ "localizedName": "Magma Cream",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:magma_cube_spawn_egg",
+ "unlocalizedName": "item.minecraft.magma_cube_spawn_egg",
+ "localizedName": "Magma Cube Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:map",
+ "unlocalizedName": "item.minecraft.map",
+ "localizedName": "Empty Map",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:melon",
+ "unlocalizedName": "block.minecraft.melon",
+ "localizedName": "Melon",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:melon_seeds",
+ "unlocalizedName": "item.minecraft.melon_seeds",
+ "localizedName": "Melon Seeds",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:melon_slice",
+ "unlocalizedName": "item.minecraft.melon_slice",
+ "localizedName": "Melon Slice",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:milk_bucket",
+ "unlocalizedName": "item.minecraft.milk_bucket",
+ "localizedName": "Milk Bucket",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:minecart",
+ "unlocalizedName": "item.minecraft.minecart",
+ "localizedName": "Minecart",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mojang_banner_pattern",
+ "unlocalizedName": "item.minecraft.mojang_banner_pattern",
+ "localizedName": "Banner Pattern",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mooshroom_spawn_egg",
+ "unlocalizedName": "item.minecraft.mooshroom_spawn_egg",
+ "localizedName": "Mooshroom Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_cobblestone",
+ "unlocalizedName": "block.minecraft.mossy_cobblestone",
+ "localizedName": "Mossy Cobblestone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_cobblestone_slab",
+ "unlocalizedName": "block.minecraft.mossy_cobblestone_slab",
+ "localizedName": "Mossy Cobblestone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_cobblestone_stairs",
+ "unlocalizedName": "block.minecraft.mossy_cobblestone_stairs",
+ "localizedName": "Mossy Cobblestone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_cobblestone_wall",
+ "unlocalizedName": "block.minecraft.mossy_cobblestone_wall",
+ "localizedName": "Mossy Cobblestone Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_stone_brick_slab",
+ "unlocalizedName": "block.minecraft.mossy_stone_brick_slab",
+ "localizedName": "Mossy Stone Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_stone_brick_stairs",
+ "unlocalizedName": "block.minecraft.mossy_stone_brick_stairs",
+ "localizedName": "Mossy Stone Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_stone_brick_wall",
+ "unlocalizedName": "block.minecraft.mossy_stone_brick_wall",
+ "localizedName": "Mossy Stone Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mossy_stone_bricks",
+ "unlocalizedName": "block.minecraft.mossy_stone_bricks",
+ "localizedName": "Mossy Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mule_spawn_egg",
+ "unlocalizedName": "item.minecraft.mule_spawn_egg",
+ "localizedName": "Mule Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mushroom_stem",
+ "unlocalizedName": "block.minecraft.mushroom_stem",
+ "localizedName": "Mushroom Stem",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mushroom_stew",
+ "unlocalizedName": "item.minecraft.mushroom_stew",
+ "localizedName": "Mushroom Stew",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_11",
+ "unlocalizedName": "item.minecraft.music_disc_11",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_13",
+ "unlocalizedName": "item.minecraft.music_disc_13",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_blocks",
+ "unlocalizedName": "item.minecraft.music_disc_blocks",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_cat",
+ "unlocalizedName": "item.minecraft.music_disc_cat",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_chirp",
+ "unlocalizedName": "item.minecraft.music_disc_chirp",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_far",
+ "unlocalizedName": "item.minecraft.music_disc_far",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_mall",
+ "unlocalizedName": "item.minecraft.music_disc_mall",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_mellohi",
+ "unlocalizedName": "item.minecraft.music_disc_mellohi",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_stal",
+ "unlocalizedName": "item.minecraft.music_disc_stal",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_strad",
+ "unlocalizedName": "item.minecraft.music_disc_strad",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_wait",
+ "unlocalizedName": "item.minecraft.music_disc_wait",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:music_disc_ward",
+ "unlocalizedName": "item.minecraft.music_disc_ward",
+ "localizedName": "Music Disc",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mutton",
+ "unlocalizedName": "item.minecraft.mutton",
+ "localizedName": "Raw Mutton",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:mycelium",
+ "unlocalizedName": "block.minecraft.mycelium",
+ "localizedName": "Mycelium",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:name_tag",
+ "unlocalizedName": "item.minecraft.name_tag",
+ "localizedName": "Name Tag",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nautilus_shell",
+ "unlocalizedName": "item.minecraft.nautilus_shell",
+ "localizedName": "Nautilus Shell",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_brick",
+ "unlocalizedName": "item.minecraft.nether_brick",
+ "localizedName": "Nether Brick",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_brick_fence",
+ "unlocalizedName": "block.minecraft.nether_brick_fence",
+ "localizedName": "Nether Brick Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_brick_slab",
+ "unlocalizedName": "block.minecraft.nether_brick_slab",
+ "localizedName": "Nether Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_brick_stairs",
+ "unlocalizedName": "block.minecraft.nether_brick_stairs",
+ "localizedName": "Nether Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_brick_wall",
+ "unlocalizedName": "block.minecraft.nether_brick_wall",
+ "localizedName": "Nether Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_bricks",
+ "unlocalizedName": "block.minecraft.nether_bricks",
+ "localizedName": "Nether Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_quartz_ore",
+ "unlocalizedName": "block.minecraft.nether_quartz_ore",
+ "localizedName": "Nether Quartz Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_star",
+ "unlocalizedName": "item.minecraft.nether_star",
+ "localizedName": "Nether Star",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_wart",
+ "unlocalizedName": "item.minecraft.nether_wart",
+ "localizedName": "Nether Wart",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:nether_wart_block",
+ "unlocalizedName": "block.minecraft.nether_wart_block",
+ "localizedName": "Nether Wart Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:netherrack",
+ "unlocalizedName": "block.minecraft.netherrack",
+ "localizedName": "Netherrack",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:note_block",
+ "unlocalizedName": "block.minecraft.note_block",
+ "localizedName": "Note Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_boat",
+ "unlocalizedName": "item.minecraft.oak_boat",
+ "localizedName": "Oak Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_button",
+ "unlocalizedName": "block.minecraft.oak_button",
+ "localizedName": "Oak Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_door",
+ "unlocalizedName": "block.minecraft.oak_door",
+ "localizedName": "Oak Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_fence",
+ "unlocalizedName": "block.minecraft.oak_fence",
+ "localizedName": "Oak Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_fence_gate",
+ "unlocalizedName": "block.minecraft.oak_fence_gate",
+ "localizedName": "Oak Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_leaves",
+ "unlocalizedName": "block.minecraft.oak_leaves",
+ "localizedName": "Oak Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_log",
+ "unlocalizedName": "block.minecraft.oak_log",
+ "localizedName": "Oak Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_planks",
+ "unlocalizedName": "block.minecraft.oak_planks",
+ "localizedName": "Oak Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_pressure_plate",
+ "unlocalizedName": "block.minecraft.oak_pressure_plate",
+ "localizedName": "Oak Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_sapling",
+ "unlocalizedName": "block.minecraft.oak_sapling",
+ "localizedName": "Oak Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_sign",
+ "unlocalizedName": "block.minecraft.oak_sign",
+ "localizedName": "Oak Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_slab",
+ "unlocalizedName": "block.minecraft.oak_slab",
+ "localizedName": "Oak Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_stairs",
+ "unlocalizedName": "block.minecraft.oak_stairs",
+ "localizedName": "Oak Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_trapdoor",
+ "unlocalizedName": "block.minecraft.oak_trapdoor",
+ "localizedName": "Oak Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oak_wood",
+ "unlocalizedName": "block.minecraft.oak_wood",
+ "localizedName": "Oak Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:observer",
+ "unlocalizedName": "block.minecraft.observer",
+ "localizedName": "Observer",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:obsidian",
+ "unlocalizedName": "block.minecraft.obsidian",
+ "localizedName": "Obsidian",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ocelot_spawn_egg",
+ "unlocalizedName": "item.minecraft.ocelot_spawn_egg",
+ "localizedName": "Ocelot Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_banner",
+ "unlocalizedName": "block.minecraft.orange_banner",
+ "localizedName": "Orange Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_bed",
+ "unlocalizedName": "block.minecraft.orange_bed",
+ "localizedName": "Orange Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_carpet",
+ "unlocalizedName": "block.minecraft.orange_carpet",
+ "localizedName": "Orange Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_concrete",
+ "unlocalizedName": "block.minecraft.orange_concrete",
+ "localizedName": "Orange Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_concrete_powder",
+ "unlocalizedName": "block.minecraft.orange_concrete_powder",
+ "localizedName": "Orange Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_dye",
+ "unlocalizedName": "item.minecraft.orange_dye",
+ "localizedName": "Orange Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.orange_glazed_terracotta",
+ "localizedName": "Orange Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_shulker_box",
+ "unlocalizedName": "block.minecraft.orange_shulker_box",
+ "localizedName": "Orange Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_stained_glass",
+ "unlocalizedName": "block.minecraft.orange_stained_glass",
+ "localizedName": "Orange Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.orange_stained_glass_pane",
+ "localizedName": "Orange Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_terracotta",
+ "unlocalizedName": "block.minecraft.orange_terracotta",
+ "localizedName": "Orange Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_tulip",
+ "unlocalizedName": "block.minecraft.orange_tulip",
+ "localizedName": "Orange Tulip",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:orange_wool",
+ "unlocalizedName": "block.minecraft.orange_wool",
+ "localizedName": "Orange Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:oxeye_daisy",
+ "unlocalizedName": "block.minecraft.oxeye_daisy",
+ "localizedName": "Oxeye Daisy",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:packed_ice",
+ "unlocalizedName": "block.minecraft.packed_ice",
+ "localizedName": "Packed Ice",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:painting",
+ "unlocalizedName": "item.minecraft.painting",
+ "localizedName": "Painting",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:panda_spawn_egg",
+ "unlocalizedName": "item.minecraft.panda_spawn_egg",
+ "localizedName": "Panda Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:paper",
+ "unlocalizedName": "item.minecraft.paper",
+ "localizedName": "Paper",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:parrot_spawn_egg",
+ "unlocalizedName": "item.minecraft.parrot_spawn_egg",
+ "localizedName": "Parrot Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:peony",
+ "unlocalizedName": "block.minecraft.peony",
+ "localizedName": "Peony",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:petrified_oak_slab",
+ "unlocalizedName": "block.minecraft.petrified_oak_slab",
+ "localizedName": "Petrified Oak Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:phantom_membrane",
+ "unlocalizedName": "item.minecraft.phantom_membrane",
+ "localizedName": "Phantom Membrane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:phantom_spawn_egg",
+ "unlocalizedName": "item.minecraft.phantom_spawn_egg",
+ "localizedName": "Phantom Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pig_spawn_egg",
+ "unlocalizedName": "item.minecraft.pig_spawn_egg",
+ "localizedName": "Pig Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pillager_spawn_egg",
+ "unlocalizedName": "item.minecraft.pillager_spawn_egg",
+ "localizedName": "Pillager Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_banner",
+ "unlocalizedName": "block.minecraft.pink_banner",
+ "localizedName": "Pink Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_bed",
+ "unlocalizedName": "block.minecraft.pink_bed",
+ "localizedName": "Pink Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_carpet",
+ "unlocalizedName": "block.minecraft.pink_carpet",
+ "localizedName": "Pink Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_concrete",
+ "unlocalizedName": "block.minecraft.pink_concrete",
+ "localizedName": "Pink Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_concrete_powder",
+ "unlocalizedName": "block.minecraft.pink_concrete_powder",
+ "localizedName": "Pink Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_dye",
+ "unlocalizedName": "item.minecraft.pink_dye",
+ "localizedName": "Pink Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.pink_glazed_terracotta",
+ "localizedName": "Pink Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_shulker_box",
+ "unlocalizedName": "block.minecraft.pink_shulker_box",
+ "localizedName": "Pink Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_stained_glass",
+ "unlocalizedName": "block.minecraft.pink_stained_glass",
+ "localizedName": "Pink Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.pink_stained_glass_pane",
+ "localizedName": "Pink Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_terracotta",
+ "unlocalizedName": "block.minecraft.pink_terracotta",
+ "localizedName": "Pink Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_tulip",
+ "unlocalizedName": "block.minecraft.pink_tulip",
+ "localizedName": "Pink Tulip",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pink_wool",
+ "unlocalizedName": "block.minecraft.pink_wool",
+ "localizedName": "Pink Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:piston",
+ "unlocalizedName": "block.minecraft.piston",
+ "localizedName": "Piston",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:player_head",
+ "unlocalizedName": "block.minecraft.player_head",
+ "localizedName": "Player Head",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:podzol",
+ "unlocalizedName": "block.minecraft.podzol",
+ "localizedName": "Podzol",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:poisonous_potato",
+ "unlocalizedName": "item.minecraft.poisonous_potato",
+ "localizedName": "Poisonous Potato",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polar_bear_spawn_egg",
+ "unlocalizedName": "item.minecraft.polar_bear_spawn_egg",
+ "localizedName": "Polar Bear Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_andesite",
+ "unlocalizedName": "block.minecraft.polished_andesite",
+ "localizedName": "Polished Andesite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_andesite_slab",
+ "unlocalizedName": "block.minecraft.polished_andesite_slab",
+ "localizedName": "Polished Andesite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_andesite_stairs",
+ "unlocalizedName": "block.minecraft.polished_andesite_stairs",
+ "localizedName": "Polished Andesite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_diorite",
+ "unlocalizedName": "block.minecraft.polished_diorite",
+ "localizedName": "Polished Diorite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_diorite_slab",
+ "unlocalizedName": "block.minecraft.polished_diorite_slab",
+ "localizedName": "Polished Diorite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_diorite_stairs",
+ "unlocalizedName": "block.minecraft.polished_diorite_stairs",
+ "localizedName": "Polished Diorite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_granite",
+ "unlocalizedName": "block.minecraft.polished_granite",
+ "localizedName": "Polished Granite",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_granite_slab",
+ "unlocalizedName": "block.minecraft.polished_granite_slab",
+ "localizedName": "Polished Granite Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:polished_granite_stairs",
+ "unlocalizedName": "block.minecraft.polished_granite_stairs",
+ "localizedName": "Polished Granite Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:popped_chorus_fruit",
+ "unlocalizedName": "item.minecraft.popped_chorus_fruit",
+ "localizedName": "Popped Chorus Fruit",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:poppy",
+ "unlocalizedName": "block.minecraft.poppy",
+ "localizedName": "Poppy",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:porkchop",
+ "unlocalizedName": "item.minecraft.porkchop",
+ "localizedName": "Raw Porkchop",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:potato",
+ "unlocalizedName": "item.minecraft.potato",
+ "localizedName": "Potato",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:potion",
+ "unlocalizedName": "item.minecraft.potion.effect.water",
+ "localizedName": "Water Bottle",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:powered_rail",
+ "unlocalizedName": "block.minecraft.powered_rail",
+ "localizedName": "Powered Rail",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine",
+ "unlocalizedName": "block.minecraft.prismarine",
+ "localizedName": "Prismarine",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_brick_slab",
+ "unlocalizedName": "block.minecraft.prismarine_brick_slab",
+ "localizedName": "Prismarine Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_brick_stairs",
+ "unlocalizedName": "block.minecraft.prismarine_brick_stairs",
+ "localizedName": "Prismarine Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_bricks",
+ "unlocalizedName": "block.minecraft.prismarine_bricks",
+ "localizedName": "Prismarine Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_crystals",
+ "unlocalizedName": "item.minecraft.prismarine_crystals",
+ "localizedName": "Prismarine Crystals",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_shard",
+ "unlocalizedName": "item.minecraft.prismarine_shard",
+ "localizedName": "Prismarine Shard",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_slab",
+ "unlocalizedName": "block.minecraft.prismarine_slab",
+ "localizedName": "Prismarine Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_stairs",
+ "unlocalizedName": "block.minecraft.prismarine_stairs",
+ "localizedName": "Prismarine Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:prismarine_wall",
+ "unlocalizedName": "block.minecraft.prismarine_wall",
+ "localizedName": "Prismarine Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pufferfish",
+ "unlocalizedName": "item.minecraft.pufferfish",
+ "localizedName": "Pufferfish",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pufferfish_bucket",
+ "unlocalizedName": "item.minecraft.pufferfish_bucket",
+ "localizedName": "Bucket of Pufferfish",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pufferfish_spawn_egg",
+ "unlocalizedName": "item.minecraft.pufferfish_spawn_egg",
+ "localizedName": "Pufferfish Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pumpkin",
+ "unlocalizedName": "block.minecraft.pumpkin",
+ "localizedName": "Pumpkin",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pumpkin_pie",
+ "unlocalizedName": "item.minecraft.pumpkin_pie",
+ "localizedName": "Pumpkin Pie",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:pumpkin_seeds",
+ "unlocalizedName": "item.minecraft.pumpkin_seeds",
+ "localizedName": "Pumpkin Seeds",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_banner",
+ "unlocalizedName": "block.minecraft.purple_banner",
+ "localizedName": "Purple Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_bed",
+ "unlocalizedName": "block.minecraft.purple_bed",
+ "localizedName": "Purple Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_carpet",
+ "unlocalizedName": "block.minecraft.purple_carpet",
+ "localizedName": "Purple Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_concrete",
+ "unlocalizedName": "block.minecraft.purple_concrete",
+ "localizedName": "Purple Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_concrete_powder",
+ "unlocalizedName": "block.minecraft.purple_concrete_powder",
+ "localizedName": "Purple Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_dye",
+ "unlocalizedName": "item.minecraft.purple_dye",
+ "localizedName": "Purple Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.purple_glazed_terracotta",
+ "localizedName": "Purple Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_shulker_box",
+ "unlocalizedName": "block.minecraft.purple_shulker_box",
+ "localizedName": "Purple Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_stained_glass",
+ "unlocalizedName": "block.minecraft.purple_stained_glass",
+ "localizedName": "Purple Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.purple_stained_glass_pane",
+ "localizedName": "Purple Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_terracotta",
+ "unlocalizedName": "block.minecraft.purple_terracotta",
+ "localizedName": "Purple Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purple_wool",
+ "unlocalizedName": "block.minecraft.purple_wool",
+ "localizedName": "Purple Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purpur_block",
+ "unlocalizedName": "block.minecraft.purpur_block",
+ "localizedName": "Purpur Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purpur_pillar",
+ "unlocalizedName": "block.minecraft.purpur_pillar",
+ "localizedName": "Purpur Pillar",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purpur_slab",
+ "unlocalizedName": "block.minecraft.purpur_slab",
+ "localizedName": "Purpur Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:purpur_stairs",
+ "unlocalizedName": "block.minecraft.purpur_stairs",
+ "localizedName": "Purpur Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:quartz",
+ "unlocalizedName": "item.minecraft.quartz",
+ "localizedName": "Nether Quartz",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:quartz_block",
+ "unlocalizedName": "block.minecraft.quartz_block",
+ "localizedName": "Block of Quartz",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:quartz_pillar",
+ "unlocalizedName": "block.minecraft.quartz_pillar",
+ "localizedName": "Quartz Pillar",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:quartz_slab",
+ "unlocalizedName": "block.minecraft.quartz_slab",
+ "localizedName": "Quartz Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:quartz_stairs",
+ "unlocalizedName": "block.minecraft.quartz_stairs",
+ "localizedName": "Quartz Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rabbit",
+ "unlocalizedName": "item.minecraft.rabbit",
+ "localizedName": "Raw Rabbit",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rabbit_foot",
+ "unlocalizedName": "item.minecraft.rabbit_foot",
+ "localizedName": "Rabbit\u0027s Foot",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rabbit_hide",
+ "unlocalizedName": "item.minecraft.rabbit_hide",
+ "localizedName": "Rabbit Hide",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rabbit_spawn_egg",
+ "unlocalizedName": "item.minecraft.rabbit_spawn_egg",
+ "localizedName": "Rabbit Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rabbit_stew",
+ "unlocalizedName": "item.minecraft.rabbit_stew",
+ "localizedName": "Rabbit Stew",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rail",
+ "unlocalizedName": "block.minecraft.rail",
+ "localizedName": "Rail",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:ravager_spawn_egg",
+ "unlocalizedName": "item.minecraft.ravager_spawn_egg",
+ "localizedName": "Ravager Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_banner",
+ "unlocalizedName": "block.minecraft.red_banner",
+ "localizedName": "Red Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_bed",
+ "unlocalizedName": "block.minecraft.red_bed",
+ "localizedName": "Red Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_carpet",
+ "unlocalizedName": "block.minecraft.red_carpet",
+ "localizedName": "Red Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_concrete",
+ "unlocalizedName": "block.minecraft.red_concrete",
+ "localizedName": "Red Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_concrete_powder",
+ "unlocalizedName": "block.minecraft.red_concrete_powder",
+ "localizedName": "Red Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_dye",
+ "unlocalizedName": "item.minecraft.red_dye",
+ "localizedName": "Red Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.red_glazed_terracotta",
+ "localizedName": "Red Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_mushroom",
+ "unlocalizedName": "block.minecraft.red_mushroom",
+ "localizedName": "Red Mushroom",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_mushroom_block",
+ "unlocalizedName": "block.minecraft.red_mushroom_block",
+ "localizedName": "Red Mushroom Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_nether_brick_slab",
+ "unlocalizedName": "block.minecraft.red_nether_brick_slab",
+ "localizedName": "Red Nether Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_nether_brick_stairs",
+ "unlocalizedName": "block.minecraft.red_nether_brick_stairs",
+ "localizedName": "Red Nether Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_nether_brick_wall",
+ "unlocalizedName": "block.minecraft.red_nether_brick_wall",
+ "localizedName": "Red Nether Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_nether_bricks",
+ "unlocalizedName": "block.minecraft.red_nether_bricks",
+ "localizedName": "Red Nether Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_sand",
+ "unlocalizedName": "block.minecraft.red_sand",
+ "localizedName": "Red Sand",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_sandstone",
+ "unlocalizedName": "block.minecraft.red_sandstone",
+ "localizedName": "Red Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_sandstone_slab",
+ "unlocalizedName": "block.minecraft.red_sandstone_slab",
+ "localizedName": "Red Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_sandstone_stairs",
+ "unlocalizedName": "block.minecraft.red_sandstone_stairs",
+ "localizedName": "Red Sandstone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_sandstone_wall",
+ "unlocalizedName": "block.minecraft.red_sandstone_wall",
+ "localizedName": "Red Sandstone Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_shulker_box",
+ "unlocalizedName": "block.minecraft.red_shulker_box",
+ "localizedName": "Red Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_stained_glass",
+ "unlocalizedName": "block.minecraft.red_stained_glass",
+ "localizedName": "Red Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.red_stained_glass_pane",
+ "localizedName": "Red Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_terracotta",
+ "unlocalizedName": "block.minecraft.red_terracotta",
+ "localizedName": "Red Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_tulip",
+ "unlocalizedName": "block.minecraft.red_tulip",
+ "localizedName": "Red Tulip",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:red_wool",
+ "unlocalizedName": "block.minecraft.red_wool",
+ "localizedName": "Red Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:redstone",
+ "unlocalizedName": "item.minecraft.redstone",
+ "localizedName": "Redstone Dust",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:redstone_block",
+ "unlocalizedName": "block.minecraft.redstone_block",
+ "localizedName": "Block of Redstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:redstone_lamp",
+ "unlocalizedName": "block.minecraft.redstone_lamp",
+ "localizedName": "Redstone Lamp",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:redstone_ore",
+ "unlocalizedName": "block.minecraft.redstone_ore",
+ "localizedName": "Redstone Ore",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:redstone_torch",
+ "unlocalizedName": "block.minecraft.redstone_torch",
+ "localizedName": "Redstone Torch",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:repeater",
+ "unlocalizedName": "block.minecraft.repeater",
+ "localizedName": "Redstone Repeater",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:repeating_command_block",
+ "unlocalizedName": "block.minecraft.repeating_command_block",
+ "localizedName": "Repeating Command Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rose_bush",
+ "unlocalizedName": "block.minecraft.rose_bush",
+ "localizedName": "Rose Bush",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:rotten_flesh",
+ "unlocalizedName": "item.minecraft.rotten_flesh",
+ "localizedName": "Rotten Flesh",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:saddle",
+ "unlocalizedName": "item.minecraft.saddle",
+ "localizedName": "Saddle",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:salmon",
+ "unlocalizedName": "item.minecraft.salmon",
+ "localizedName": "Raw Salmon",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:salmon_bucket",
+ "unlocalizedName": "item.minecraft.salmon_bucket",
+ "localizedName": "Bucket of Salmon",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:salmon_spawn_egg",
+ "unlocalizedName": "item.minecraft.salmon_spawn_egg",
+ "localizedName": "Salmon Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sand",
+ "unlocalizedName": "block.minecraft.sand",
+ "localizedName": "Sand",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sandstone",
+ "unlocalizedName": "block.minecraft.sandstone",
+ "localizedName": "Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sandstone_slab",
+ "unlocalizedName": "block.minecraft.sandstone_slab",
+ "localizedName": "Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sandstone_stairs",
+ "unlocalizedName": "block.minecraft.sandstone_stairs",
+ "localizedName": "Sandstone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sandstone_wall",
+ "unlocalizedName": "block.minecraft.sandstone_wall",
+ "localizedName": "Sandstone Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:scaffolding",
+ "unlocalizedName": "block.minecraft.scaffolding",
+ "localizedName": "Scaffolding",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:scute",
+ "unlocalizedName": "item.minecraft.scute",
+ "localizedName": "Scute",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sea_lantern",
+ "unlocalizedName": "block.minecraft.sea_lantern",
+ "localizedName": "Sea Lantern",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sea_pickle",
+ "unlocalizedName": "block.minecraft.sea_pickle",
+ "localizedName": "Sea Pickle",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:seagrass",
+ "unlocalizedName": "block.minecraft.seagrass",
+ "localizedName": "Seagrass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:shears",
+ "unlocalizedName": "item.minecraft.shears",
+ "localizedName": "Shears",
+ "maxStackSize": 1,
+ "maxDamage": 238
+ },
+ {
+ "id": "minecraft:sheep_spawn_egg",
+ "unlocalizedName": "item.minecraft.sheep_spawn_egg",
+ "localizedName": "Sheep Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:shield",
+ "unlocalizedName": "item.minecraft.shield",
+ "localizedName": "Shield",
+ "maxStackSize": 1,
+ "maxDamage": 336
+ },
+ {
+ "id": "minecraft:shulker_box",
+ "unlocalizedName": "block.minecraft.shulker_box",
+ "localizedName": "Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:shulker_shell",
+ "unlocalizedName": "item.minecraft.shulker_shell",
+ "localizedName": "Shulker Shell",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:shulker_spawn_egg",
+ "unlocalizedName": "item.minecraft.shulker_spawn_egg",
+ "localizedName": "Shulker Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:silverfish_spawn_egg",
+ "unlocalizedName": "item.minecraft.silverfish_spawn_egg",
+ "localizedName": "Silverfish Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:skeleton_horse_spawn_egg",
+ "unlocalizedName": "item.minecraft.skeleton_horse_spawn_egg",
+ "localizedName": "Skeleton Horse Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:skeleton_skull",
+ "unlocalizedName": "block.minecraft.skeleton_skull",
+ "localizedName": "Skeleton Skull",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:skeleton_spawn_egg",
+ "unlocalizedName": "item.minecraft.skeleton_spawn_egg",
+ "localizedName": "Skeleton Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:skull_banner_pattern",
+ "unlocalizedName": "item.minecraft.skull_banner_pattern",
+ "localizedName": "Banner Pattern",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:slime_ball",
+ "unlocalizedName": "item.minecraft.slime_ball",
+ "localizedName": "Slimeball",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:slime_block",
+ "unlocalizedName": "block.minecraft.slime_block",
+ "localizedName": "Slime Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:slime_spawn_egg",
+ "unlocalizedName": "item.minecraft.slime_spawn_egg",
+ "localizedName": "Slime Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smithing_table",
+ "unlocalizedName": "block.minecraft.smithing_table",
+ "localizedName": "Smithing Table",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smoker",
+ "unlocalizedName": "block.minecraft.smoker",
+ "localizedName": "Smoker",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_quartz",
+ "unlocalizedName": "block.minecraft.smooth_quartz",
+ "localizedName": "Smooth Quartz",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_quartz_slab",
+ "unlocalizedName": "block.minecraft.smooth_quartz_slab",
+ "localizedName": "Smooth Quartz Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_quartz_stairs",
+ "unlocalizedName": "block.minecraft.smooth_quartz_stairs",
+ "localizedName": "Smooth Quartz Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_red_sandstone",
+ "unlocalizedName": "block.minecraft.smooth_red_sandstone",
+ "localizedName": "Smooth Red Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_red_sandstone_slab",
+ "unlocalizedName": "block.minecraft.smooth_red_sandstone_slab",
+ "localizedName": "Smooth Red Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_red_sandstone_stairs",
+ "unlocalizedName": "block.minecraft.smooth_red_sandstone_stairs",
+ "localizedName": "Smooth Red Sandstone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_sandstone",
+ "unlocalizedName": "block.minecraft.smooth_sandstone",
+ "localizedName": "Smooth Sandstone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_sandstone_slab",
+ "unlocalizedName": "block.minecraft.smooth_sandstone_slab",
+ "localizedName": "Smooth Sandstone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_sandstone_stairs",
+ "unlocalizedName": "block.minecraft.smooth_sandstone_stairs",
+ "localizedName": "Smooth Sandstone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_stone",
+ "unlocalizedName": "block.minecraft.smooth_stone",
+ "localizedName": "Smooth Stone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:smooth_stone_slab",
+ "unlocalizedName": "block.minecraft.smooth_stone_slab",
+ "localizedName": "Smooth Stone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:snow",
+ "unlocalizedName": "block.minecraft.snow",
+ "localizedName": "Snow",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:snow_block",
+ "unlocalizedName": "block.minecraft.snow_block",
+ "localizedName": "Snow Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:snowball",
+ "unlocalizedName": "item.minecraft.snowball",
+ "localizedName": "Snowball",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:soul_sand",
+ "unlocalizedName": "block.minecraft.soul_sand",
+ "localizedName": "Soul Sand",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spawner",
+ "unlocalizedName": "block.minecraft.spawner",
+ "localizedName": "Spawner",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spectral_arrow",
+ "unlocalizedName": "item.minecraft.spectral_arrow",
+ "localizedName": "Spectral Arrow",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spider_eye",
+ "unlocalizedName": "item.minecraft.spider_eye",
+ "localizedName": "Spider Eye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spider_spawn_egg",
+ "unlocalizedName": "item.minecraft.spider_spawn_egg",
+ "localizedName": "Spider Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:splash_potion",
+ "unlocalizedName": "item.minecraft.splash_potion.effect.water",
+ "localizedName": "Splash Water Bottle",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sponge",
+ "unlocalizedName": "block.minecraft.sponge",
+ "localizedName": "Sponge",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_boat",
+ "unlocalizedName": "item.minecraft.spruce_boat",
+ "localizedName": "Spruce Boat",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_button",
+ "unlocalizedName": "block.minecraft.spruce_button",
+ "localizedName": "Spruce Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_door",
+ "unlocalizedName": "block.minecraft.spruce_door",
+ "localizedName": "Spruce Door",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_fence",
+ "unlocalizedName": "block.minecraft.spruce_fence",
+ "localizedName": "Spruce Fence",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_fence_gate",
+ "unlocalizedName": "block.minecraft.spruce_fence_gate",
+ "localizedName": "Spruce Fence Gate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_leaves",
+ "unlocalizedName": "block.minecraft.spruce_leaves",
+ "localizedName": "Spruce Leaves",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_log",
+ "unlocalizedName": "block.minecraft.spruce_log",
+ "localizedName": "Spruce Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_planks",
+ "unlocalizedName": "block.minecraft.spruce_planks",
+ "localizedName": "Spruce Planks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_pressure_plate",
+ "unlocalizedName": "block.minecraft.spruce_pressure_plate",
+ "localizedName": "Spruce Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_sapling",
+ "unlocalizedName": "block.minecraft.spruce_sapling",
+ "localizedName": "Spruce Sapling",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_sign",
+ "unlocalizedName": "block.minecraft.spruce_sign",
+ "localizedName": "Spruce Sign",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_slab",
+ "unlocalizedName": "block.minecraft.spruce_slab",
+ "localizedName": "Spruce Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_stairs",
+ "unlocalizedName": "block.minecraft.spruce_stairs",
+ "localizedName": "Spruce Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_trapdoor",
+ "unlocalizedName": "block.minecraft.spruce_trapdoor",
+ "localizedName": "Spruce Trapdoor",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:spruce_wood",
+ "unlocalizedName": "block.minecraft.spruce_wood",
+ "localizedName": "Spruce Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:squid_spawn_egg",
+ "unlocalizedName": "item.minecraft.squid_spawn_egg",
+ "localizedName": "Squid Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stick",
+ "unlocalizedName": "item.minecraft.stick",
+ "localizedName": "Stick",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sticky_piston",
+ "unlocalizedName": "block.minecraft.sticky_piston",
+ "localizedName": "Sticky Piston",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone",
+ "unlocalizedName": "block.minecraft.stone",
+ "localizedName": "Stone",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_axe",
+ "unlocalizedName": "item.minecraft.stone_axe",
+ "localizedName": "Stone Axe",
+ "maxStackSize": 1,
+ "maxDamage": 131
+ },
+ {
+ "id": "minecraft:stone_brick_slab",
+ "unlocalizedName": "block.minecraft.stone_brick_slab",
+ "localizedName": "Stone Brick Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_brick_stairs",
+ "unlocalizedName": "block.minecraft.stone_brick_stairs",
+ "localizedName": "Stone Brick Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_brick_wall",
+ "unlocalizedName": "block.minecraft.stone_brick_wall",
+ "localizedName": "Stone Brick Wall",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_bricks",
+ "unlocalizedName": "block.minecraft.stone_bricks",
+ "localizedName": "Stone Bricks",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_button",
+ "unlocalizedName": "block.minecraft.stone_button",
+ "localizedName": "Stone Button",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_hoe",
+ "unlocalizedName": "item.minecraft.stone_hoe",
+ "localizedName": "Stone Hoe",
+ "maxStackSize": 1,
+ "maxDamage": 131
+ },
+ {
+ "id": "minecraft:stone_pickaxe",
+ "unlocalizedName": "item.minecraft.stone_pickaxe",
+ "localizedName": "Stone Pickaxe",
+ "maxStackSize": 1,
+ "maxDamage": 131
+ },
+ {
+ "id": "minecraft:stone_pressure_plate",
+ "unlocalizedName": "block.minecraft.stone_pressure_plate",
+ "localizedName": "Stone Pressure Plate",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_shovel",
+ "unlocalizedName": "item.minecraft.stone_shovel",
+ "localizedName": "Stone Shovel",
+ "maxStackSize": 1,
+ "maxDamage": 131
+ },
+ {
+ "id": "minecraft:stone_slab",
+ "unlocalizedName": "block.minecraft.stone_slab",
+ "localizedName": "Stone Slab",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_stairs",
+ "unlocalizedName": "block.minecraft.stone_stairs",
+ "localizedName": "Stone Stairs",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stone_sword",
+ "unlocalizedName": "item.minecraft.stone_sword",
+ "localizedName": "Stone Sword",
+ "maxStackSize": 1,
+ "maxDamage": 131
+ },
+ {
+ "id": "minecraft:stonecutter",
+ "unlocalizedName": "block.minecraft.stonecutter",
+ "localizedName": "Stonecutter",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stray_spawn_egg",
+ "unlocalizedName": "item.minecraft.stray_spawn_egg",
+ "localizedName": "Stray Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:string",
+ "unlocalizedName": "item.minecraft.string",
+ "localizedName": "String",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_acacia_log",
+ "unlocalizedName": "block.minecraft.stripped_acacia_log",
+ "localizedName": "Stripped Acacia Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_acacia_wood",
+ "unlocalizedName": "block.minecraft.stripped_acacia_wood",
+ "localizedName": "Stripped Acacia Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_birch_log",
+ "unlocalizedName": "block.minecraft.stripped_birch_log",
+ "localizedName": "Stripped Birch Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_birch_wood",
+ "unlocalizedName": "block.minecraft.stripped_birch_wood",
+ "localizedName": "Stripped Birch Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_dark_oak_log",
+ "unlocalizedName": "block.minecraft.stripped_dark_oak_log",
+ "localizedName": "Stripped Dark Oak Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_dark_oak_wood",
+ "unlocalizedName": "block.minecraft.stripped_dark_oak_wood",
+ "localizedName": "Stripped Dark Oak Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_jungle_log",
+ "unlocalizedName": "block.minecraft.stripped_jungle_log",
+ "localizedName": "Stripped Jungle Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_jungle_wood",
+ "unlocalizedName": "block.minecraft.stripped_jungle_wood",
+ "localizedName": "Stripped Jungle Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_oak_log",
+ "unlocalizedName": "block.minecraft.stripped_oak_log",
+ "localizedName": "Stripped Oak Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_oak_wood",
+ "unlocalizedName": "block.minecraft.stripped_oak_wood",
+ "localizedName": "Stripped Oak Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_spruce_log",
+ "unlocalizedName": "block.minecraft.stripped_spruce_log",
+ "localizedName": "Stripped Spruce Log",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:stripped_spruce_wood",
+ "unlocalizedName": "block.minecraft.stripped_spruce_wood",
+ "localizedName": "Stripped Spruce Wood",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:structure_block",
+ "unlocalizedName": "block.minecraft.structure_block",
+ "localizedName": "Structure Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:structure_void",
+ "unlocalizedName": "block.minecraft.structure_void",
+ "localizedName": "Structure Void",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sugar",
+ "unlocalizedName": "item.minecraft.sugar",
+ "localizedName": "Sugar",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sugar_cane",
+ "unlocalizedName": "block.minecraft.sugar_cane",
+ "localizedName": "Sugar Cane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sunflower",
+ "unlocalizedName": "block.minecraft.sunflower",
+ "localizedName": "Sunflower",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:suspicious_stew",
+ "unlocalizedName": "item.minecraft.suspicious_stew",
+ "localizedName": "Suspicious Stew",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:sweet_berries",
+ "unlocalizedName": "item.minecraft.sweet_berries",
+ "localizedName": "Sweet Berries",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tall_grass",
+ "unlocalizedName": "block.minecraft.tall_grass",
+ "localizedName": "Tall Grass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:terracotta",
+ "unlocalizedName": "block.minecraft.terracotta",
+ "localizedName": "Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tipped_arrow",
+ "unlocalizedName": "item.minecraft.tipped_arrow.effect.poison",
+ "localizedName": "Arrow of Poison",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tnt",
+ "unlocalizedName": "block.minecraft.tnt",
+ "localizedName": "TNT",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tnt_minecart",
+ "unlocalizedName": "item.minecraft.tnt_minecart",
+ "localizedName": "Minecart with TNT",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:torch",
+ "unlocalizedName": "block.minecraft.torch",
+ "localizedName": "Torch",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:totem_of_undying",
+ "unlocalizedName": "item.minecraft.totem_of_undying",
+ "localizedName": "Totem of Undying",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:trader_llama_spawn_egg",
+ "unlocalizedName": "item.minecraft.trader_llama_spawn_egg",
+ "localizedName": "Trader Llama Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:trapped_chest",
+ "unlocalizedName": "block.minecraft.trapped_chest",
+ "localizedName": "Trapped Chest",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:trident",
+ "unlocalizedName": "item.minecraft.trident",
+ "localizedName": "Trident",
+ "maxStackSize": 1,
+ "maxDamage": 250
+ },
+ {
+ "id": "minecraft:tripwire_hook",
+ "unlocalizedName": "block.minecraft.tripwire_hook",
+ "localizedName": "Tripwire Hook",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tropical_fish",
+ "unlocalizedName": "item.minecraft.tropical_fish",
+ "localizedName": "Tropical Fish",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tropical_fish_bucket",
+ "unlocalizedName": "item.minecraft.tropical_fish_bucket",
+ "localizedName": "Bucket of Tropical Fish",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tropical_fish_spawn_egg",
+ "unlocalizedName": "item.minecraft.tropical_fish_spawn_egg",
+ "localizedName": "Tropical Fish Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tube_coral",
+ "unlocalizedName": "block.minecraft.tube_coral",
+ "localizedName": "Tube Coral",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tube_coral_block",
+ "unlocalizedName": "block.minecraft.tube_coral_block",
+ "localizedName": "Tube Coral Block",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:tube_coral_fan",
+ "unlocalizedName": "block.minecraft.tube_coral_fan",
+ "localizedName": "Tube Coral Fan",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:turtle_egg",
+ "unlocalizedName": "block.minecraft.turtle_egg",
+ "localizedName": "Turtle Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:turtle_helmet",
+ "unlocalizedName": "item.minecraft.turtle_helmet",
+ "localizedName": "Turtle Shell",
+ "maxStackSize": 1,
+ "maxDamage": 275
+ },
+ {
+ "id": "minecraft:turtle_spawn_egg",
+ "unlocalizedName": "item.minecraft.turtle_spawn_egg",
+ "localizedName": "Turtle Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:vex_spawn_egg",
+ "unlocalizedName": "item.minecraft.vex_spawn_egg",
+ "localizedName": "Vex Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:villager_spawn_egg",
+ "unlocalizedName": "item.minecraft.villager_spawn_egg",
+ "localizedName": "Villager Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:vindicator_spawn_egg",
+ "unlocalizedName": "item.minecraft.vindicator_spawn_egg",
+ "localizedName": "Vindicator Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:vine",
+ "unlocalizedName": "block.minecraft.vine",
+ "localizedName": "Vines",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wandering_trader_spawn_egg",
+ "unlocalizedName": "item.minecraft.wandering_trader_spawn_egg",
+ "localizedName": "Wandering Trader Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:water_bucket",
+ "unlocalizedName": "item.minecraft.water_bucket",
+ "localizedName": "Water Bucket",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wet_sponge",
+ "unlocalizedName": "block.minecraft.wet_sponge",
+ "localizedName": "Wet Sponge",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wheat",
+ "unlocalizedName": "item.minecraft.wheat",
+ "localizedName": "Wheat",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wheat_seeds",
+ "unlocalizedName": "item.minecraft.wheat_seeds",
+ "localizedName": "Wheat Seeds",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_banner",
+ "unlocalizedName": "block.minecraft.white_banner",
+ "localizedName": "White Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_bed",
+ "unlocalizedName": "block.minecraft.white_bed",
+ "localizedName": "White Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_carpet",
+ "unlocalizedName": "block.minecraft.white_carpet",
+ "localizedName": "White Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_concrete",
+ "unlocalizedName": "block.minecraft.white_concrete",
+ "localizedName": "White Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_concrete_powder",
+ "unlocalizedName": "block.minecraft.white_concrete_powder",
+ "localizedName": "White Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_dye",
+ "unlocalizedName": "item.minecraft.white_dye",
+ "localizedName": "White Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.white_glazed_terracotta",
+ "localizedName": "White Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_shulker_box",
+ "unlocalizedName": "block.minecraft.white_shulker_box",
+ "localizedName": "White Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_stained_glass",
+ "unlocalizedName": "block.minecraft.white_stained_glass",
+ "localizedName": "White Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.white_stained_glass_pane",
+ "localizedName": "White Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_terracotta",
+ "unlocalizedName": "block.minecraft.white_terracotta",
+ "localizedName": "White Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_tulip",
+ "unlocalizedName": "block.minecraft.white_tulip",
+ "localizedName": "White Tulip",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:white_wool",
+ "unlocalizedName": "block.minecraft.white_wool",
+ "localizedName": "White Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:witch_spawn_egg",
+ "unlocalizedName": "item.minecraft.witch_spawn_egg",
+ "localizedName": "Witch Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wither_rose",
+ "unlocalizedName": "block.minecraft.wither_rose",
+ "localizedName": "Wither Rose",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wither_skeleton_skull",
+ "unlocalizedName": "block.minecraft.wither_skeleton_skull",
+ "localizedName": "Wither Skeleton Skull",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wither_skeleton_spawn_egg",
+ "unlocalizedName": "item.minecraft.wither_skeleton_spawn_egg",
+ "localizedName": "Wither Skeleton Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wolf_spawn_egg",
+ "unlocalizedName": "item.minecraft.wolf_spawn_egg",
+ "localizedName": "Wolf Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:wooden_axe",
+ "unlocalizedName": "item.minecraft.wooden_axe",
+ "localizedName": "Wooden Axe",
+ "maxStackSize": 1,
+ "maxDamage": 59
+ },
+ {
+ "id": "minecraft:wooden_hoe",
+ "unlocalizedName": "item.minecraft.wooden_hoe",
+ "localizedName": "Wooden Hoe",
+ "maxStackSize": 1,
+ "maxDamage": 59
+ },
+ {
+ "id": "minecraft:wooden_pickaxe",
+ "unlocalizedName": "item.minecraft.wooden_pickaxe",
+ "localizedName": "Wooden Pickaxe",
+ "maxStackSize": 1,
+ "maxDamage": 59
+ },
+ {
+ "id": "minecraft:wooden_shovel",
+ "unlocalizedName": "item.minecraft.wooden_shovel",
+ "localizedName": "Wooden Shovel",
+ "maxStackSize": 1,
+ "maxDamage": 59
+ },
+ {
+ "id": "minecraft:wooden_sword",
+ "unlocalizedName": "item.minecraft.wooden_sword",
+ "localizedName": "Wooden Sword",
+ "maxStackSize": 1,
+ "maxDamage": 59
+ },
+ {
+ "id": "minecraft:writable_book",
+ "unlocalizedName": "item.minecraft.writable_book",
+ "localizedName": "Book and Quill",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:written_book",
+ "unlocalizedName": "item.minecraft.written_book",
+ "localizedName": "Written Book",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_banner",
+ "unlocalizedName": "block.minecraft.yellow_banner",
+ "localizedName": "Yellow Banner",
+ "maxStackSize": 16,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_bed",
+ "unlocalizedName": "block.minecraft.yellow_bed",
+ "localizedName": "Yellow Bed",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_carpet",
+ "unlocalizedName": "block.minecraft.yellow_carpet",
+ "localizedName": "Yellow Carpet",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_concrete",
+ "unlocalizedName": "block.minecraft.yellow_concrete",
+ "localizedName": "Yellow Concrete",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_concrete_powder",
+ "unlocalizedName": "block.minecraft.yellow_concrete_powder",
+ "localizedName": "Yellow Concrete Powder",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_dye",
+ "unlocalizedName": "item.minecraft.yellow_dye",
+ "localizedName": "Yellow Dye",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_glazed_terracotta",
+ "unlocalizedName": "block.minecraft.yellow_glazed_terracotta",
+ "localizedName": "Yellow Glazed Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_shulker_box",
+ "unlocalizedName": "block.minecraft.yellow_shulker_box",
+ "localizedName": "Yellow Shulker Box",
+ "maxStackSize": 1,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_stained_glass",
+ "unlocalizedName": "block.minecraft.yellow_stained_glass",
+ "localizedName": "Yellow Stained Glass",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_stained_glass_pane",
+ "unlocalizedName": "block.minecraft.yellow_stained_glass_pane",
+ "localizedName": "Yellow Stained Glass Pane",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_terracotta",
+ "unlocalizedName": "block.minecraft.yellow_terracotta",
+ "localizedName": "Yellow Terracotta",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:yellow_wool",
+ "unlocalizedName": "block.minecraft.yellow_wool",
+ "localizedName": "Yellow Wool",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:zombie_head",
+ "unlocalizedName": "block.minecraft.zombie_head",
+ "localizedName": "Zombie Head",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:zombie_horse_spawn_egg",
+ "unlocalizedName": "item.minecraft.zombie_horse_spawn_egg",
+ "localizedName": "Zombie Horse Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:zombie_pigman_spawn_egg",
+ "unlocalizedName": "item.minecraft.zombie_pigman_spawn_egg",
+ "localizedName": "Zombie Pigman Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:zombie_spawn_egg",
+ "unlocalizedName": "item.minecraft.zombie_spawn_egg",
+ "localizedName": "Zombie Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ },
+ {
+ "id": "minecraft:zombie_villager_spawn_egg",
+ "unlocalizedName": "item.minecraft.zombie_villager_spawn_egg",
+ "localizedName": "Zombie Villager Spawn Egg",
+ "maxStackSize": 64,
+ "maxDamage": 0
+ }
+]
\ No newline at end of file