diff --git a/build.gradle.kts b/build.gradle.kts
index 72ffb94d6..b90a202be 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -84,10 +84,3 @@ if (!project.hasProperty("gitCommitHash")) {
"no_git_id"
}
}
-
-//buildScan {
-// setTermsOfServiceUrl("https://gradle.com/terms-of-service")
-// setTermsOfServiceAgree("yes")
-//
-// publishAlways()
-//}
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
index 0df3521c6..230be5156 100644
--- a/buildSrc/build.gradle.kts
+++ b/buildSrc/build.gradle.kts
@@ -26,9 +26,9 @@ configurations.all {
resolutionStrategy {
// Fabric needs this.
force(
- "commons-io:commons-io:2.5",
- "org.ow2.asm:asm:7.1",
- "org.ow2.asm:asm-commons:7.1"
+ "commons-io:commons-io:2.5",
+ "org.ow2.asm:asm:7.1",
+ "org.ow2.asm:asm-commons:7.1"
)
}
}
diff --git a/buildSrc/src/main/kotlin/CommonConfig.kt b/buildSrc/src/main/kotlin/CommonConfig.kt
index a3b1bb38d..72c5b934d 100644
--- a/buildSrc/src/main/kotlin/CommonConfig.kt
+++ b/buildSrc/src/main/kotlin/CommonConfig.kt
@@ -21,8 +21,7 @@ fun Project.applyCommonConfiguration() {
}
configurations.all {
resolutionStrategy {
- cacheChangingModulesFor(10, "minutes")
+ cacheChangingModulesFor(5, "minutes")
}
}
-
}
diff --git a/buildSrc/src/main/kotlin/PlatformConfig.kt b/buildSrc/src/main/kotlin/PlatformConfig.kt
index d01728c9e..b38a347db 100644
--- a/buildSrc/src/main/kotlin/PlatformConfig.kt
+++ b/buildSrc/src/main/kotlin/PlatformConfig.kt
@@ -121,3 +121,8 @@ fun Project.applyShadowConfiguration() {
minimize()
}
}
+
+val CLASSPATH = listOf("truezip", "truevfs", "js")
+ .map { "$it.jar" }
+ .flatMap { listOf(it, "WorldEdit/$it") }
+ .joinToString(separator = " ")
diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt
index d1b42cac8..838ee35c8 100644
--- a/buildSrc/src/main/kotlin/Versions.kt
+++ b/buildSrc/src/main/kotlin/Versions.kt
@@ -7,6 +7,7 @@ object Versions {
const val AUTO_VALUE = "1.6.5"
const val JUNIT = "5.5.0"
const val MOCKITO = "3.0.0"
+ const val LOGBACK = "1.2.3"
}
// Properties that need a project reference to resolve:
diff --git a/worldedit-bukkit/build.gradle.kts b/worldedit-bukkit/build.gradle.kts
index 8107be45d..ff9ac062f 100644
--- a/worldedit-bukkit/build.gradle.kts
+++ b/worldedit-bukkit/build.gradle.kts
@@ -76,7 +76,7 @@ tasks.named
+ * The path is not guaranteed to exist. + *
+ * + * @param path the path + * @return date-time, if it can be parsed + */ + @Nullable + ZonedDateTime detectDateTime(Path path); + +} diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/util/translation/TranslationManager.java b/worldedit-core/src/main/java/com/sk89q/worldedit/util/translation/TranslationManager.java index 79ad5d6b2..47c05e552 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/util/translation/TranslationManager.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/util/translation/TranslationManager.java @@ -19,8 +19,6 @@ package com.sk89q.worldedit.util.translation; -import static java.util.stream.Collectors.toMap; - import com.google.common.collect.Maps; import com.google.gson.Gson; import com.google.gson.GsonBuilder; @@ -29,6 +27,7 @@ import com.sk89q.worldedit.WorldEdit; import com.sk89q.worldedit.util.formatting.text.Component; import com.sk89q.worldedit.util.formatting.text.renderer.FriendlyComponentRenderer; import com.sk89q.worldedit.util.io.ResourceLoader; + import java.io.File; import java.io.FileInputStream; import java.io.IOException; @@ -43,6 +42,8 @@ import java.util.Optional; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; +import static java.util.stream.Collectors.toMap; + /** * Handles translations for the plugin. * diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/AbstractWorld.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/AbstractWorld.java index f3a8c7c8a..c333f1269 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/AbstractWorld.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/AbstractWorld.java @@ -153,6 +153,7 @@ public abstract class AbstractWorld implements World { @Override public void setWeather(WeatherType weatherType, long duration) { } + private class QueuedEffect implements Comparable+ * Note that the Path can belong to another filesystem. This allows easy integration with + * zips due to Java's built-in zipfs support. + *
+ */ +public class FolderSnapshot implements Snapshot { + + /** + * Object used by {@code getRegionFolder(Path)} to indicate that the path does not exist. + */ + private static final Object NOT_FOUND_TOKEN = new Object(); + + private static Object getRegionFolder(Path folder) throws IOException { + Path regionDir = folder.resolve("region"); + if (Files.exists(regionDir)) { + checkState(Files.isDirectory(regionDir), "Region folder is actually a file"); + return regionDir; + } + // Might be in a DIM* folder + try (Stream+ * The existing snapshot API will be removed when this API is made official. It aims to have 100% + * compatibility with old snapshot storage, bar some odd date formats. + *
+ */ +package com.sk89q.worldedit.world.snapshot.experimental; +// TODO Un-experimentalize when ready. diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStore.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStore.java index e975a200f..2fa5c181d 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStore.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStore.java @@ -25,6 +25,7 @@ import com.sk89q.worldedit.math.BlockVector3; import com.sk89q.worldedit.world.DataException; import com.sk89q.worldedit.world.World; import com.sk89q.worldedit.world.chunk.Chunk; + import java.io.Closeable; import java.io.IOException; diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStoreHelper.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStoreHelper.java index 083f868b2..6337fc9c7 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStoreHelper.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/ChunkStoreHelper.java @@ -47,7 +47,7 @@ public class ChunkStoreHelper { public static CompoundTag readCompoundTag(ChunkDataInputSupplier input) throws DataException, IOException { try (InputStream stream = input.openInputStream(); - NBTInputStream nbt = new NBTInputStream(stream)) { + NBTInputStream nbt = new NBTInputStream(stream)) { Tag tag = nbt.readNamedTag().getTag(); if (!(tag instanceof CompoundTag)) { throw new ChunkStoreException("CompoundTag expected for chunk; got " diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/LegacyChunkStore.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/LegacyChunkStore.java index af302ff62..b0b83367b 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/LegacyChunkStore.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/LegacyChunkStore.java @@ -23,6 +23,7 @@ import com.sk89q.jnbt.CompoundTag; import com.sk89q.worldedit.math.BlockVector2; import com.sk89q.worldedit.world.DataException; import com.sk89q.worldedit.world.World; + import java.io.File; import java.io.IOException; import java.io.InputStream; diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/McRegionChunkStore.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/McRegionChunkStore.java index b8b82c314..84ecf742f 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/McRegionChunkStore.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/storage/McRegionChunkStore.java @@ -20,8 +20,6 @@ package com.sk89q.worldedit.world.storage; import com.sk89q.jnbt.CompoundTag; -import com.sk89q.jnbt.NBTInputStream; -import com.sk89q.jnbt.Tag; import com.sk89q.worldedit.math.BlockVector2; import com.sk89q.worldedit.world.DataException; import com.sk89q.worldedit.world.World; @@ -67,19 +65,11 @@ public abstract class McRegionChunkStore extends ChunkStore { @Override public CompoundTag getChunkTag(BlockVector2 position, World world) throws DataException, IOException { - McRegionReader reader = getReader(position, world.getName()); + return ChunkStoreHelper.readCompoundTag(() -> { + McRegionReader reader = getReader(position, world.getName()); - InputStream stream = reader.getChunkInputStream(position); - Tag tag; - - try (NBTInputStream nbt = new NBTInputStream(stream)) { - tag = nbt.readNamedTag().getTag(); - if (!(tag instanceof CompoundTag)) { - throw new ChunkStoreException("CompoundTag expected for chunk; got " + tag.getClass().getName()); - } - - return (CompoundTag) tag; - } + return reader.getChunkInputStream(position); + }); } /** diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.115.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.115.json index cb755293b..a08b75364 100644 --- a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.115.json +++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.115.json @@ -1,17002 +1 @@ -[ - { - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:acacia_planks", - "localizedName": "Acacia Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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: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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "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, - "resistance": 1200, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "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, - "resistance": 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:bedrock", - "localizedName": "Bedrock", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": -1, - "resistance": 3600000, - "ticksRandomly": false, - "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:bee_nest", - "localizedName": "Bee Nest", - "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": true, - "opaque": true, - "replacedDuringPlacement": false, - "toolRequired": false, - "fragileWhenPushed": false, - "unpushable": false, - "mapColor": "#8f7748", - "isTranslucent": false, - "hasContainer": false - } - }, - { - "id": "minecraft:beehive", - "localizedName": "Beehive", - "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:beetroots", - "localizedName": "Beetroots", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 0, - "resistance": 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, - "resistance": 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: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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:birch_planks", - "localizedName": "Birch Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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:black_banner", - "localizedName": "Black Banner", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 1, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 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: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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 2, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 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": "#a7a7a7", - "isTranslucent": false, - "hasContainer": false - } - }, - { - "id": "minecraft:cave_air", - "localizedName": "Cave Air", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 0, - "resistance": 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, - "resistance": 3600000, - "ticksRandomly": false, - "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, - "resistance": 1200, - "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, - "ticksRandomly": false, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 4, - "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, - "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, - "resistance": 3600000, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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:cornflower", - "localizedName": "Cornflower", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 0, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 6, - "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, - "resistance": 6, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1200, - "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, - "resistance": 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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:dark_oak_planks", - "localizedName": "Dark Oak Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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:dark_prismarine", - "localizedName": "Dark Prismarine", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 1.5, - "resistance": 6, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 3, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "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, - "resistance": 9, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 1200, - "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, - "resistance": 3600000, - "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, - "resistance": 3600000, - "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, - "resistance": 3600000, - "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, - "resistance": 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, - "resistance": 9, - "ticksRandomly": false, - "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": 3, - "resistance": 9, - "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": 3, - "resistance": 9, - "ticksRandomly": false, - "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": 3, - "resistance": 9, - "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": 3, - "resistance": 9, - "ticksRandomly": false, - "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, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 3, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 6, - "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:honey_block", - "localizedName": "Honey Block", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 0, - "resistance": 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": "#a4a8b8", - "isTranslucent": false, - "hasContainer": false - } - }, - { - "id": "minecraft:honeycomb_block", - "localizedName": "Honeycomb Block", - "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:hopper", - "localizedName": "Hopper", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 3, - "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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "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, - "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, - "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, - "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, - "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, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 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:iron_ore", - "localizedName": "Iron Ore", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 3, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 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:jack_o_lantern", - "localizedName": "Jack o'Lantern", - "material": { - "powerSource": false, - "lightValue": 15, - "hardness": 1, - "resistance": 1, - "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, - "resistance": 3600000, - "ticksRandomly": false, - "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, - "resistance": 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": 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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:jungle_planks", - "localizedName": "Jungle Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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:kelp", - "localizedName": "Kelp", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 0, - "resistance": 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, - "resistance": 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, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 100, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 6, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:oak_planks", - "localizedName": "Oak Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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:observer", - "localizedName": "Observer", - "material": { - "powerSource": true, - "lightValue": 0, - "hardness": 3, - "resistance": 3, - "ticksRandomly": false, - "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, - "resistance": 1200, - "ticksRandomly": false, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 6, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "ticksRandomly": false, - "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, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 2, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 3600000, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 6, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "resistance": 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": 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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 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:spruce_planks", - "localizedName": "Spruce Planks", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 3, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 3, - "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, - "resistance": 1, - "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, - "resistance": 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: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, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "ticksRandomly": false, - "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, - "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, - "ticksRandomly": false, - "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, - "resistance": 6, - "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, - "ticksRandomly": false, - "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, - "resistance": 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:stripped_acacia_wood", - "localizedName": "Stripped Acacia Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_birch_log", - "localizedName": "Stripped Birch Log", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_birch_wood", - "localizedName": "Stripped Birch Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_dark_oak_log", - "localizedName": "Stripped Dark Oak Log", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_dark_oak_wood", - "localizedName": "Stripped Dark Oak Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_jungle_log", - "localizedName": "Stripped Jungle Log", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_jungle_wood", - "localizedName": "Stripped Jungle Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_oak_log", - "localizedName": "Stripped Oak Log", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_oak_wood", - "localizedName": "Stripped Oak Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_spruce_log", - "localizedName": "Stripped Spruce Log", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:stripped_spruce_wood", - "localizedName": "Stripped Spruce Wood", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": 2, - "resistance": 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:structure_block", - "localizedName": "Structure Block", - "material": { - "powerSource": false, - "lightValue": 0, - "hardness": -1, - "resistance": 3600000, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "ticksRandomly": false, - "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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 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, - "resistance": 100, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 2, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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, - "resistance": 1, - "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 +[{"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:acacia_planks","localizedName":"Acacia Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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: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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"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,"resistance":1200,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":1,"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,"resistance":1,"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,"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,"resistance":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:bedrock","localizedName":"Bedrock","material":{"powerSource":false,"lightValue":0,"hardness":-1,"resistance":3600000,"ticksRandomly":false,"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:bee_nest","localizedName":"Bee Nest","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":true,"opaque":true,"replacedDuringPlacement":false,"toolRequired":false,"fragileWhenPushed":false,"unpushable":false,"mapColor":"#8f7748","isTranslucent":false,"hasContainer":false}},{"id":"minecraft:beehive","localizedName":"Beehive","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:beetroots","localizedName":"Beetroots","material":{"powerSource":false,"lightValue":0,"hardness":0,"resistance":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,"resistance":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: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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:birch_planks","localizedName":"Birch Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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:black_banner","localizedName":"Black Banner","material":{"powerSource":false,"lightValue":0,"hardness":1,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":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,"resistance":2,"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,"resistance":1,"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,"resistance":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: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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":1,"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,"resistance":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,"resistance":2,"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,"resistance":1,"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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":2,"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,"resistance":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,"resistance":1,"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,"resistance":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":"#a7a7a7","isTranslucent":false,"hasContainer":false}},{"id":"minecraft:cave_air","localizedName":"Cave Air","material":{"powerSource":false,"lightValue":0,"hardness":0,"resistance":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,"resistance":3600000,"ticksRandomly":false,"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,"resistance":1200,"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,"ticksRandomly":false,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":3,"ticksRandomly":false,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":4,"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,"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,"resistance":3600000,"ticksRandomly":false,"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,"resistance":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,"resistance":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:cornflower","localizedName":"Cornflower","material":{"powerSource":false,"lightValue":0,"hardness":0,"resistance":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,"ticksRandomly":false,"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,"resistance":1,"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,"resistance":1,"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,"resistance":6,"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,"resistance":6,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1200,"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,"resistance":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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:dark_oak_planks","localizedName":"Dark Oak Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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:dark_prismarine","localizedName":"Dark Prismarine","material":{"powerSource":false,"lightValue":0,"hardness":1.5,"resistance":6,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":6,"ticksRandomly":false,"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,"resistance":3,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"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,"resistance":9,"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,"resistance":1,"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,"resistance":1,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":3,"ticksRandomly":false,"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,"resistance":1200,"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,"resistance":3600000,"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,"resistance":3600000,"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,"resistance":3600000,"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,"resistance":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,"resistance":9,"ticksRandomly":false,"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":3,"resistance":9,"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":3,"resistance":9,"ticksRandomly":false,"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":3,"resistance":9,"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":3,"resistance":9,"ticksRandomly":false,"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,"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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":6,"ticksRandomly":false,"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,"resistance":3,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"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,"resistance":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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":6,"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:honey_block","localizedName":"Honey Block","material":{"powerSource":false,"lightValue":0,"hardness":0,"resistance":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":"#a4a8b8","isTranslucent":false,"hasContainer":false}},{"id":"minecraft:honeycomb_block","localizedName":"Honeycomb Block","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:hopper","localizedName":"Hopper","material":{"powerSource":false,"lightValue":0,"hardness":3,"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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"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,"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,"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,"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,"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,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":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:iron_ore","localizedName":"Iron Ore","material":{"powerSource":false,"lightValue":0,"hardness":3,"resistance":3,"ticksRandomly":false,"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,"resistance":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:jack_o_lantern","localizedName":"Jack o'Lantern","material":{"powerSource":false,"lightValue":15,"hardness":1,"resistance":1,"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,"resistance":3600000,"ticksRandomly":false,"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,"resistance":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":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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:jungle_planks","localizedName":"Jungle Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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:kelp","localizedName":"Kelp","material":{"powerSource":false,"lightValue":0,"hardness":0,"resistance":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,"resistance":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,"resistance":3,"ticksRandomly":false,"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,"resistance":3,"ticksRandomly":false,"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,"resistance":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,"resistance":100,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"resistance":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,"resistance":6,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":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,"resistance":3,"ticksRandomly":false,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:oak_planks","localizedName":"Oak Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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:observer","localizedName":"Observer","material":{"powerSource":true,"lightValue":0,"hardness":3,"resistance":3,"ticksRandomly":false,"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,"resistance":1200,"ticksRandomly":false,"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,"resistance":1,"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,"resistance":2,"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,"resistance":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,"resistance":1,"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,"resistance":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,"resistance":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,"resistance":6,"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,"resistance":1,"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,"resistance":2,"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,"resistance":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,"resistance":1,"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,"resistance":1,"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,"resistance":1,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"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,"resistance":1,"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,"resistance":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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"ticksRandomly":false,"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,"ticksRandomly":false,"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,"resistance":6,"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,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":1,"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,"resistance":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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":2,"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,"resistance":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,"resistance":1,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":3,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":3600000,"ticksRandomly":false,"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,"resistance":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,"resistance":6,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"ticksRandomly":false,"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,"resistance":6,"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,"resistance":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":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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":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:spruce_planks","localizedName":"Spruce Planks","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":3,"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,"resistance":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,"resistance":1,"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,"resistance":3,"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,"resistance":3,"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,"resistance":3,"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,"resistance":1,"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,"resistance":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: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,"ticksRandomly":false,"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,"resistance":6,"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,"ticksRandomly":false,"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,"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,"ticksRandomly":false,"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,"resistance":6,"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,"ticksRandomly":false,"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,"resistance":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:stripped_acacia_wood","localizedName":"Stripped Acacia Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_birch_log","localizedName":"Stripped Birch Log","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_birch_wood","localizedName":"Stripped Birch Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_dark_oak_log","localizedName":"Stripped Dark Oak Log","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_dark_oak_wood","localizedName":"Stripped Dark Oak Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_jungle_log","localizedName":"Stripped Jungle Log","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_jungle_wood","localizedName":"Stripped Jungle Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_oak_log","localizedName":"Stripped Oak Log","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_oak_wood","localizedName":"Stripped Oak Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_spruce_log","localizedName":"Stripped Spruce Log","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:stripped_spruce_wood","localizedName":"Stripped Spruce Wood","material":{"powerSource":false,"lightValue":0,"hardness":2,"resistance":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:structure_block","localizedName":"Structure Block","material":{"powerSource":false,"lightValue":0,"hardness":-1,"resistance":3600000,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"ticksRandomly":false,"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,"resistance":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,"resistance":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,"resistance":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,"resistance":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,"resistance":100,"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,"resistance":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,"resistance":1,"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,"resistance":2,"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,"resistance":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,"resistance":1,"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,"resistance":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,"resistance":1,"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,"resistance":1,"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,"resistance":1,"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,"resistance":2,"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,"resistance":1,"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,"resistance":1,"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,"resistance":1,"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}}] diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.115.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.115.json index d59a2dcaa..77b94c077 100644 --- a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.115.json +++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/items.115.json @@ -1,6190 +1 @@ -[ - { - "id": "minecraft:acacia_boat", - "unlocalizedName": "item.minecraft.acacia_boat", - "localizedName": "Acacia Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:acacia_button", - "unlocalizedName": "block.minecraft.acacia_button", - "localizedName": "Acacia Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_door", - "unlocalizedName": "block.minecraft.acacia_door", - "localizedName": "Acacia Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_fence", - "unlocalizedName": "block.minecraft.acacia_fence", - "localizedName": "Acacia Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_fence_gate", - "unlocalizedName": "block.minecraft.acacia_fence_gate", - "localizedName": "Acacia Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_leaves", - "unlocalizedName": "block.minecraft.acacia_leaves", - "localizedName": "Acacia Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_log", - "unlocalizedName": "block.minecraft.acacia_log", - "localizedName": "Acacia Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_planks", - "unlocalizedName": "block.minecraft.acacia_planks", - "localizedName": "Acacia Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_pressure_plate", - "unlocalizedName": "block.minecraft.acacia_pressure_plate", - "localizedName": "Acacia Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_sapling", - "unlocalizedName": "block.minecraft.acacia_sapling", - "localizedName": "Acacia Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_sign", - "unlocalizedName": "block.minecraft.acacia_sign", - "localizedName": "Acacia Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:acacia_slab", - "unlocalizedName": "block.minecraft.acacia_slab", - "localizedName": "Acacia Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_stairs", - "unlocalizedName": "block.minecraft.acacia_stairs", - "localizedName": "Acacia Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_trapdoor", - "unlocalizedName": "block.minecraft.acacia_trapdoor", - "localizedName": "Acacia Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:acacia_wood", - "unlocalizedName": "block.minecraft.acacia_wood", - "localizedName": "Acacia Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:activator_rail", - "unlocalizedName": "block.minecraft.activator_rail", - "localizedName": "Activator Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:air", - "unlocalizedName": "block.minecraft.air", - "localizedName": "Air", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:allium", - "unlocalizedName": "block.minecraft.allium", - "localizedName": "Allium", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:andesite", - "unlocalizedName": "block.minecraft.andesite", - "localizedName": "Andesite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:andesite_slab", - "unlocalizedName": "block.minecraft.andesite_slab", - "localizedName": "Andesite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:andesite_stairs", - "unlocalizedName": "block.minecraft.andesite_stairs", - "localizedName": "Andesite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:andesite_wall", - "unlocalizedName": "block.minecraft.andesite_wall", - "localizedName": "Andesite Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:anvil", - "unlocalizedName": "block.minecraft.anvil", - "localizedName": "Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:apple", - "unlocalizedName": "item.minecraft.apple", - "localizedName": "Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:armor_stand", - "unlocalizedName": "item.minecraft.armor_stand", - "localizedName": "Armor Stand", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:arrow", - "unlocalizedName": "item.minecraft.arrow", - "localizedName": "Arrow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:azure_bluet", - "unlocalizedName": "block.minecraft.azure_bluet", - "localizedName": "Azure Bluet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:baked_potato", - "unlocalizedName": "item.minecraft.baked_potato", - "localizedName": "Baked Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bamboo", - "unlocalizedName": "block.minecraft.bamboo", - "localizedName": "Bamboo", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:barrel", - "unlocalizedName": "block.minecraft.barrel", - "localizedName": "Barrel", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:barrier", - "unlocalizedName": "block.minecraft.barrier", - "localizedName": "Barrier", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bat_spawn_egg", - "unlocalizedName": "item.minecraft.bat_spawn_egg", - "localizedName": "Bat Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beacon", - "unlocalizedName": "block.minecraft.beacon", - "localizedName": "Beacon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bedrock", - "unlocalizedName": "block.minecraft.bedrock", - "localizedName": "Bedrock", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bee_nest", - "unlocalizedName": "block.minecraft.bee_nest", - "localizedName": "Bee Nest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bee_spawn_egg", - "unlocalizedName": "item.minecraft.bee_spawn_egg", - "localizedName": "Bee Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beef", - "unlocalizedName": "item.minecraft.beef", - "localizedName": "Raw Beef", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beehive", - "unlocalizedName": "block.minecraft.beehive", - "localizedName": "Beehive", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beetroot", - "unlocalizedName": "item.minecraft.beetroot", - "localizedName": "Beetroot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beetroot_seeds", - "unlocalizedName": "item.minecraft.beetroot_seeds", - "localizedName": "Beetroot Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:beetroot_soup", - "unlocalizedName": "item.minecraft.beetroot_soup", - "localizedName": "Beetroot Soup", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:bell", - "unlocalizedName": "block.minecraft.bell", - "localizedName": "Bell", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_boat", - "unlocalizedName": "item.minecraft.birch_boat", - "localizedName": "Birch Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:birch_button", - "unlocalizedName": "block.minecraft.birch_button", - "localizedName": "Birch Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_door", - "unlocalizedName": "block.minecraft.birch_door", - "localizedName": "Birch Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_fence", - "unlocalizedName": "block.minecraft.birch_fence", - "localizedName": "Birch Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_fence_gate", - "unlocalizedName": "block.minecraft.birch_fence_gate", - "localizedName": "Birch Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_leaves", - "unlocalizedName": "block.minecraft.birch_leaves", - "localizedName": "Birch Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_log", - "unlocalizedName": "block.minecraft.birch_log", - "localizedName": "Birch Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_planks", - "unlocalizedName": "block.minecraft.birch_planks", - "localizedName": "Birch Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_pressure_plate", - "unlocalizedName": "block.minecraft.birch_pressure_plate", - "localizedName": "Birch Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_sapling", - "unlocalizedName": "block.minecraft.birch_sapling", - "localizedName": "Birch Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_sign", - "unlocalizedName": "block.minecraft.birch_sign", - "localizedName": "Birch Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:birch_slab", - "unlocalizedName": "block.minecraft.birch_slab", - "localizedName": "Birch Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_stairs", - "unlocalizedName": "block.minecraft.birch_stairs", - "localizedName": "Birch Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_trapdoor", - "unlocalizedName": "block.minecraft.birch_trapdoor", - "localizedName": "Birch Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:birch_wood", - "unlocalizedName": "block.minecraft.birch_wood", - "localizedName": "Birch Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_banner", - "unlocalizedName": "block.minecraft.black_banner", - "localizedName": "Black Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:black_bed", - "unlocalizedName": "block.minecraft.black_bed", - "localizedName": "Black Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:black_carpet", - "unlocalizedName": "block.minecraft.black_carpet", - "localizedName": "Black Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_concrete", - "unlocalizedName": "block.minecraft.black_concrete", - "localizedName": "Black Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_concrete_powder", - "unlocalizedName": "block.minecraft.black_concrete_powder", - "localizedName": "Black Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_dye", - "unlocalizedName": "item.minecraft.black_dye", - "localizedName": "Black Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_glazed_terracotta", - "unlocalizedName": "block.minecraft.black_glazed_terracotta", - "localizedName": "Black Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_shulker_box", - "unlocalizedName": "block.minecraft.black_shulker_box", - "localizedName": "Black Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:black_stained_glass", - "unlocalizedName": "block.minecraft.black_stained_glass", - "localizedName": "Black Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_stained_glass_pane", - "unlocalizedName": "block.minecraft.black_stained_glass_pane", - "localizedName": "Black Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_terracotta", - "unlocalizedName": "block.minecraft.black_terracotta", - "localizedName": "Black Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:black_wool", - "unlocalizedName": "block.minecraft.black_wool", - "localizedName": "Black Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blast_furnace", - "unlocalizedName": "block.minecraft.blast_furnace", - "localizedName": "Blast Furnace", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blaze_powder", - "unlocalizedName": "item.minecraft.blaze_powder", - "localizedName": "Blaze Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blaze_rod", - "unlocalizedName": "item.minecraft.blaze_rod", - "localizedName": "Blaze Rod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blaze_spawn_egg", - "unlocalizedName": "item.minecraft.blaze_spawn_egg", - "localizedName": "Blaze Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_banner", - "unlocalizedName": "block.minecraft.blue_banner", - "localizedName": "Blue Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:blue_bed", - "unlocalizedName": "block.minecraft.blue_bed", - "localizedName": "Blue Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:blue_carpet", - "unlocalizedName": "block.minecraft.blue_carpet", - "localizedName": "Blue Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_concrete", - "unlocalizedName": "block.minecraft.blue_concrete", - "localizedName": "Blue Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_concrete_powder", - "unlocalizedName": "block.minecraft.blue_concrete_powder", - "localizedName": "Blue Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_dye", - "unlocalizedName": "item.minecraft.blue_dye", - "localizedName": "Blue Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_glazed_terracotta", - "unlocalizedName": "block.minecraft.blue_glazed_terracotta", - "localizedName": "Blue Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_ice", - "unlocalizedName": "block.minecraft.blue_ice", - "localizedName": "Blue Ice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_orchid", - "unlocalizedName": "block.minecraft.blue_orchid", - "localizedName": "Blue Orchid", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_shulker_box", - "unlocalizedName": "block.minecraft.blue_shulker_box", - "localizedName": "Blue Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:blue_stained_glass", - "unlocalizedName": "block.minecraft.blue_stained_glass", - "localizedName": "Blue Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_stained_glass_pane", - "unlocalizedName": "block.minecraft.blue_stained_glass_pane", - "localizedName": "Blue Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_terracotta", - "unlocalizedName": "block.minecraft.blue_terracotta", - "localizedName": "Blue Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:blue_wool", - "unlocalizedName": "block.minecraft.blue_wool", - "localizedName": "Blue Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bone", - "unlocalizedName": "item.minecraft.bone", - "localizedName": "Bone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bone_block", - "unlocalizedName": "block.minecraft.bone_block", - "localizedName": "Bone Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bone_meal", - "unlocalizedName": "item.minecraft.bone_meal", - "localizedName": "Bone Meal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:book", - "unlocalizedName": "item.minecraft.book", - "localizedName": "Book", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bookshelf", - "unlocalizedName": "block.minecraft.bookshelf", - "localizedName": "Bookshelf", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bow", - "unlocalizedName": "item.minecraft.bow", - "localizedName": "Bow", - "maxDamage": 384, - "maxStackSize": 1 - }, - { - "id": "minecraft:bowl", - "unlocalizedName": "item.minecraft.bowl", - "localizedName": "Bowl", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brain_coral", - "unlocalizedName": "block.minecraft.brain_coral", - "localizedName": "Brain Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brain_coral_block", - "unlocalizedName": "block.minecraft.brain_coral_block", - "localizedName": "Brain Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brain_coral_fan", - "unlocalizedName": "block.minecraft.brain_coral_fan", - "localizedName": "Brain Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bread", - "unlocalizedName": "item.minecraft.bread", - "localizedName": "Bread", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brewing_stand", - "unlocalizedName": "block.minecraft.brewing_stand", - "localizedName": "Brewing Stand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brick", - "unlocalizedName": "item.minecraft.brick", - "localizedName": "Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brick_slab", - "unlocalizedName": "block.minecraft.brick_slab", - "localizedName": "Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brick_stairs", - "unlocalizedName": "block.minecraft.brick_stairs", - "localizedName": "Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brick_wall", - "unlocalizedName": "block.minecraft.brick_wall", - "localizedName": "Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bricks", - "unlocalizedName": "block.minecraft.bricks", - "localizedName": "Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_banner", - "unlocalizedName": "block.minecraft.brown_banner", - "localizedName": "Brown Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:brown_bed", - "unlocalizedName": "block.minecraft.brown_bed", - "localizedName": "Brown Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:brown_carpet", - "unlocalizedName": "block.minecraft.brown_carpet", - "localizedName": "Brown Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_concrete", - "unlocalizedName": "block.minecraft.brown_concrete", - "localizedName": "Brown Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_concrete_powder", - "unlocalizedName": "block.minecraft.brown_concrete_powder", - "localizedName": "Brown Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_dye", - "unlocalizedName": "item.minecraft.brown_dye", - "localizedName": "Brown Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_glazed_terracotta", - "unlocalizedName": "block.minecraft.brown_glazed_terracotta", - "localizedName": "Brown Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_mushroom", - "unlocalizedName": "block.minecraft.brown_mushroom", - "localizedName": "Brown Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_mushroom_block", - "unlocalizedName": "block.minecraft.brown_mushroom_block", - "localizedName": "Brown Mushroom Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_shulker_box", - "unlocalizedName": "block.minecraft.brown_shulker_box", - "localizedName": "Brown Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:brown_stained_glass", - "unlocalizedName": "block.minecraft.brown_stained_glass", - "localizedName": "Brown Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_stained_glass_pane", - "unlocalizedName": "block.minecraft.brown_stained_glass_pane", - "localizedName": "Brown Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_terracotta", - "unlocalizedName": "block.minecraft.brown_terracotta", - "localizedName": "Brown Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:brown_wool", - "unlocalizedName": "block.minecraft.brown_wool", - "localizedName": "Brown Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bubble_coral", - "unlocalizedName": "block.minecraft.bubble_coral", - "localizedName": "Bubble Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bubble_coral_block", - "unlocalizedName": "block.minecraft.bubble_coral_block", - "localizedName": "Bubble Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bubble_coral_fan", - "unlocalizedName": "block.minecraft.bubble_coral_fan", - "localizedName": "Bubble Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:bucket", - "unlocalizedName": "item.minecraft.bucket", - "localizedName": "Bucket", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:cactus", - "unlocalizedName": "block.minecraft.cactus", - "localizedName": "Cactus", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cake", - "unlocalizedName": "block.minecraft.cake", - "localizedName": "Cake", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:campfire", - "unlocalizedName": "block.minecraft.campfire", - "localizedName": "Campfire", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:carrot", - "unlocalizedName": "item.minecraft.carrot", - "localizedName": "Carrot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:carrot_on_a_stick", - "unlocalizedName": "item.minecraft.carrot_on_a_stick", - "localizedName": "Carrot on a Stick", - "maxDamage": 25, - "maxStackSize": 1 - }, - { - "id": "minecraft:cartography_table", - "unlocalizedName": "block.minecraft.cartography_table", - "localizedName": "Cartography Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:carved_pumpkin", - "unlocalizedName": "block.minecraft.carved_pumpkin", - "localizedName": "Carved Pumpkin", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cat_spawn_egg", - "unlocalizedName": "item.minecraft.cat_spawn_egg", - "localizedName": "Cat Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cauldron", - "unlocalizedName": "block.minecraft.cauldron", - "localizedName": "Cauldron", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cave_spider_spawn_egg", - "unlocalizedName": "item.minecraft.cave_spider_spawn_egg", - "localizedName": "Cave Spider Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chain_command_block", - "unlocalizedName": "block.minecraft.chain_command_block", - "localizedName": "Chain Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chainmail_boots", - "unlocalizedName": "item.minecraft.chainmail_boots", - "localizedName": "Chainmail Boots", - "maxDamage": 195, - "maxStackSize": 1 - }, - { - "id": "minecraft:chainmail_chestplate", - "unlocalizedName": "item.minecraft.chainmail_chestplate", - "localizedName": "Chainmail Chestplate", - "maxDamage": 240, - "maxStackSize": 1 - }, - { - "id": "minecraft:chainmail_helmet", - "unlocalizedName": "item.minecraft.chainmail_helmet", - "localizedName": "Chainmail Helmet", - "maxDamage": 165, - "maxStackSize": 1 - }, - { - "id": "minecraft:chainmail_leggings", - "unlocalizedName": "item.minecraft.chainmail_leggings", - "localizedName": "Chainmail Leggings", - "maxDamage": 225, - "maxStackSize": 1 - }, - { - "id": "minecraft:charcoal", - "unlocalizedName": "item.minecraft.charcoal", - "localizedName": "Charcoal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chest", - "unlocalizedName": "block.minecraft.chest", - "localizedName": "Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chest_minecart", - "unlocalizedName": "item.minecraft.chest_minecart", - "localizedName": "Minecart with Chest", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:chicken", - "unlocalizedName": "item.minecraft.chicken", - "localizedName": "Raw Chicken", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chicken_spawn_egg", - "unlocalizedName": "item.minecraft.chicken_spawn_egg", - "localizedName": "Chicken Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chipped_anvil", - "unlocalizedName": "block.minecraft.chipped_anvil", - "localizedName": "Chipped Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chiseled_quartz_block", - "unlocalizedName": "block.minecraft.chiseled_quartz_block", - "localizedName": "Chiseled Quartz Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chiseled_red_sandstone", - "unlocalizedName": "block.minecraft.chiseled_red_sandstone", - "localizedName": "Chiseled Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chiseled_sandstone", - "unlocalizedName": "block.minecraft.chiseled_sandstone", - "localizedName": "Chiseled Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chiseled_stone_bricks", - "unlocalizedName": "block.minecraft.chiseled_stone_bricks", - "localizedName": "Chiseled Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chorus_flower", - "unlocalizedName": "block.minecraft.chorus_flower", - "localizedName": "Chorus Flower", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chorus_fruit", - "unlocalizedName": "item.minecraft.chorus_fruit", - "localizedName": "Chorus Fruit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:chorus_plant", - "unlocalizedName": "block.minecraft.chorus_plant", - "localizedName": "Chorus Plant", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:clay", - "unlocalizedName": "block.minecraft.clay", - "localizedName": "Clay", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:clay_ball", - "unlocalizedName": "item.minecraft.clay_ball", - "localizedName": "Clay", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:clock", - "unlocalizedName": "item.minecraft.clock", - "localizedName": "Clock", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:coal", - "unlocalizedName": "item.minecraft.coal", - "localizedName": "Coal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:coal_block", - "unlocalizedName": "block.minecraft.coal_block", - "localizedName": "Block of Coal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:coal_ore", - "unlocalizedName": "block.minecraft.coal_ore", - "localizedName": "Coal Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:coarse_dirt", - "unlocalizedName": "block.minecraft.coarse_dirt", - "localizedName": "Coarse Dirt", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cobblestone", - "unlocalizedName": "block.minecraft.cobblestone", - "localizedName": "Cobblestone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cobblestone_slab", - "unlocalizedName": "block.minecraft.cobblestone_slab", - "localizedName": "Cobblestone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cobblestone_stairs", - "unlocalizedName": "block.minecraft.cobblestone_stairs", - "localizedName": "Cobblestone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cobblestone_wall", - "unlocalizedName": "block.minecraft.cobblestone_wall", - "localizedName": "Cobblestone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cobweb", - "unlocalizedName": "block.minecraft.cobweb", - "localizedName": "Cobweb", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cocoa_beans", - "unlocalizedName": "item.minecraft.cocoa_beans", - "localizedName": "Cocoa Beans", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cod", - "unlocalizedName": "item.minecraft.cod", - "localizedName": "Raw Cod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cod_bucket", - "unlocalizedName": "item.minecraft.cod_bucket", - "localizedName": "Bucket of Cod", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:cod_spawn_egg", - "unlocalizedName": "item.minecraft.cod_spawn_egg", - "localizedName": "Cod Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:command_block", - "unlocalizedName": "block.minecraft.command_block", - "localizedName": "Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:command_block_minecart", - "unlocalizedName": "item.minecraft.command_block_minecart", - "localizedName": "Minecart with Command Block", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:comparator", - "unlocalizedName": "block.minecraft.comparator", - "localizedName": "Redstone Comparator", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:compass", - "unlocalizedName": "item.minecraft.compass", - "localizedName": "Compass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:composter", - "unlocalizedName": "block.minecraft.composter", - "localizedName": "Composter", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:conduit", - "unlocalizedName": "block.minecraft.conduit", - "localizedName": "Conduit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_beef", - "unlocalizedName": "item.minecraft.cooked_beef", - "localizedName": "Steak", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_chicken", - "unlocalizedName": "item.minecraft.cooked_chicken", - "localizedName": "Cooked Chicken", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_cod", - "unlocalizedName": "item.minecraft.cooked_cod", - "localizedName": "Cooked Cod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_mutton", - "unlocalizedName": "item.minecraft.cooked_mutton", - "localizedName": "Cooked Mutton", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_porkchop", - "unlocalizedName": "item.minecraft.cooked_porkchop", - "localizedName": "Cooked Porkchop", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_rabbit", - "unlocalizedName": "item.minecraft.cooked_rabbit", - "localizedName": "Cooked Rabbit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cooked_salmon", - "unlocalizedName": "item.minecraft.cooked_salmon", - "localizedName": "Cooked Salmon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cookie", - "unlocalizedName": "item.minecraft.cookie", - "localizedName": "Cookie", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cornflower", - "unlocalizedName": "block.minecraft.cornflower", - "localizedName": "Cornflower", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cow_spawn_egg", - "unlocalizedName": "item.minecraft.cow_spawn_egg", - "localizedName": "Cow Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cracked_stone_bricks", - "unlocalizedName": "block.minecraft.cracked_stone_bricks", - "localizedName": "Cracked Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:crafting_table", - "unlocalizedName": "block.minecraft.crafting_table", - "localizedName": "Crafting Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:creeper_banner_pattern", - "unlocalizedName": "item.minecraft.creeper_banner_pattern", - "localizedName": "Banner Pattern", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:creeper_head", - "unlocalizedName": "block.minecraft.creeper_head", - "localizedName": "Creeper Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:creeper_spawn_egg", - "unlocalizedName": "item.minecraft.creeper_spawn_egg", - "localizedName": "Creeper Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:crossbow", - "unlocalizedName": "item.minecraft.crossbow", - "localizedName": "Crossbow", - "maxDamage": 326, - "maxStackSize": 1 - }, - { - "id": "minecraft:cut_red_sandstone", - "unlocalizedName": "block.minecraft.cut_red_sandstone", - "localizedName": "Cut Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cut_red_sandstone_slab", - "unlocalizedName": "block.minecraft.cut_red_sandstone_slab", - "localizedName": "Cut Red Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cut_sandstone", - "unlocalizedName": "block.minecraft.cut_sandstone", - "localizedName": "Cut Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cut_sandstone_slab", - "unlocalizedName": "block.minecraft.cut_sandstone_slab", - "localizedName": "Cut Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_banner", - "unlocalizedName": "block.minecraft.cyan_banner", - "localizedName": "Cyan Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:cyan_bed", - "unlocalizedName": "block.minecraft.cyan_bed", - "localizedName": "Cyan Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:cyan_carpet", - "unlocalizedName": "block.minecraft.cyan_carpet", - "localizedName": "Cyan Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_concrete", - "unlocalizedName": "block.minecraft.cyan_concrete", - "localizedName": "Cyan Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_concrete_powder", - "unlocalizedName": "block.minecraft.cyan_concrete_powder", - "localizedName": "Cyan Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_dye", - "unlocalizedName": "item.minecraft.cyan_dye", - "localizedName": "Cyan Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_glazed_terracotta", - "unlocalizedName": "block.minecraft.cyan_glazed_terracotta", - "localizedName": "Cyan Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_shulker_box", - "unlocalizedName": "block.minecraft.cyan_shulker_box", - "localizedName": "Cyan Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:cyan_stained_glass", - "unlocalizedName": "block.minecraft.cyan_stained_glass", - "localizedName": "Cyan Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_stained_glass_pane", - "unlocalizedName": "block.minecraft.cyan_stained_glass_pane", - "localizedName": "Cyan Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_terracotta", - "unlocalizedName": "block.minecraft.cyan_terracotta", - "localizedName": "Cyan Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:cyan_wool", - "unlocalizedName": "block.minecraft.cyan_wool", - "localizedName": "Cyan Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:damaged_anvil", - "unlocalizedName": "block.minecraft.damaged_anvil", - "localizedName": "Damaged Anvil", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dandelion", - "unlocalizedName": "block.minecraft.dandelion", - "localizedName": "Dandelion", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_boat", - "unlocalizedName": "item.minecraft.dark_oak_boat", - "localizedName": "Dark Oak Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:dark_oak_button", - "unlocalizedName": "block.minecraft.dark_oak_button", - "localizedName": "Dark Oak Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_door", - "unlocalizedName": "block.minecraft.dark_oak_door", - "localizedName": "Dark Oak Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_fence", - "unlocalizedName": "block.minecraft.dark_oak_fence", - "localizedName": "Dark Oak Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_fence_gate", - "unlocalizedName": "block.minecraft.dark_oak_fence_gate", - "localizedName": "Dark Oak Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_leaves", - "unlocalizedName": "block.minecraft.dark_oak_leaves", - "localizedName": "Dark Oak Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_log", - "unlocalizedName": "block.minecraft.dark_oak_log", - "localizedName": "Dark Oak Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_planks", - "unlocalizedName": "block.minecraft.dark_oak_planks", - "localizedName": "Dark Oak Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_pressure_plate", - "unlocalizedName": "block.minecraft.dark_oak_pressure_plate", - "localizedName": "Dark Oak Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_sapling", - "unlocalizedName": "block.minecraft.dark_oak_sapling", - "localizedName": "Dark Oak Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_sign", - "unlocalizedName": "block.minecraft.dark_oak_sign", - "localizedName": "Dark Oak Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:dark_oak_slab", - "unlocalizedName": "block.minecraft.dark_oak_slab", - "localizedName": "Dark Oak Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_stairs", - "unlocalizedName": "block.minecraft.dark_oak_stairs", - "localizedName": "Dark Oak Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_trapdoor", - "unlocalizedName": "block.minecraft.dark_oak_trapdoor", - "localizedName": "Dark Oak Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_oak_wood", - "unlocalizedName": "block.minecraft.dark_oak_wood", - "localizedName": "Dark Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_prismarine", - "unlocalizedName": "block.minecraft.dark_prismarine", - "localizedName": "Dark Prismarine", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_prismarine_slab", - "unlocalizedName": "block.minecraft.dark_prismarine_slab", - "localizedName": "Dark Prismarine Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dark_prismarine_stairs", - "unlocalizedName": "block.minecraft.dark_prismarine_stairs", - "localizedName": "Dark Prismarine Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:daylight_detector", - "unlocalizedName": "block.minecraft.daylight_detector", - "localizedName": "Daylight Detector", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_brain_coral", - "unlocalizedName": "block.minecraft.dead_brain_coral", - "localizedName": "Dead Brain Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_brain_coral_block", - "unlocalizedName": "block.minecraft.dead_brain_coral_block", - "localizedName": "Dead Brain Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_brain_coral_fan", - "unlocalizedName": "block.minecraft.dead_brain_coral_fan", - "localizedName": "Dead Brain Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_bubble_coral", - "unlocalizedName": "block.minecraft.dead_bubble_coral", - "localizedName": "Dead Bubble Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_bubble_coral_block", - "unlocalizedName": "block.minecraft.dead_bubble_coral_block", - "localizedName": "Dead Bubble Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_bubble_coral_fan", - "unlocalizedName": "block.minecraft.dead_bubble_coral_fan", - "localizedName": "Dead Bubble Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_bush", - "unlocalizedName": "block.minecraft.dead_bush", - "localizedName": "Dead Bush", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_fire_coral", - "unlocalizedName": "block.minecraft.dead_fire_coral", - "localizedName": "Dead Fire Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_fire_coral_block", - "unlocalizedName": "block.minecraft.dead_fire_coral_block", - "localizedName": "Dead Fire Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_fire_coral_fan", - "unlocalizedName": "block.minecraft.dead_fire_coral_fan", - "localizedName": "Dead Fire Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_horn_coral", - "unlocalizedName": "block.minecraft.dead_horn_coral", - "localizedName": "Dead Horn Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_horn_coral_block", - "unlocalizedName": "block.minecraft.dead_horn_coral_block", - "localizedName": "Dead Horn Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_horn_coral_fan", - "unlocalizedName": "block.minecraft.dead_horn_coral_fan", - "localizedName": "Dead Horn Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_tube_coral", - "unlocalizedName": "block.minecraft.dead_tube_coral", - "localizedName": "Dead Tube Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_tube_coral_block", - "unlocalizedName": "block.minecraft.dead_tube_coral_block", - "localizedName": "Dead Tube Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dead_tube_coral_fan", - "unlocalizedName": "block.minecraft.dead_tube_coral_fan", - "localizedName": "Dead Tube Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:debug_stick", - "unlocalizedName": "item.minecraft.debug_stick", - "localizedName": "Debug Stick", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:detector_rail", - "unlocalizedName": "block.minecraft.detector_rail", - "localizedName": "Detector Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diamond", - "unlocalizedName": "item.minecraft.diamond", - "localizedName": "Diamond", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diamond_axe", - "unlocalizedName": "item.minecraft.diamond_axe", - "localizedName": "Diamond Axe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_block", - "unlocalizedName": "block.minecraft.diamond_block", - "localizedName": "Block of Diamond", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diamond_boots", - "unlocalizedName": "item.minecraft.diamond_boots", - "localizedName": "Diamond Boots", - "maxDamage": 429, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_chestplate", - "unlocalizedName": "item.minecraft.diamond_chestplate", - "localizedName": "Diamond Chestplate", - "maxDamage": 528, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_helmet", - "unlocalizedName": "item.minecraft.diamond_helmet", - "localizedName": "Diamond Helmet", - "maxDamage": 363, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_hoe", - "unlocalizedName": "item.minecraft.diamond_hoe", - "localizedName": "Diamond Hoe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_horse_armor", - "unlocalizedName": "item.minecraft.diamond_horse_armor", - "localizedName": "Diamond Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_leggings", - "unlocalizedName": "item.minecraft.diamond_leggings", - "localizedName": "Diamond Leggings", - "maxDamage": 495, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_ore", - "unlocalizedName": "block.minecraft.diamond_ore", - "localizedName": "Diamond Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diamond_pickaxe", - "unlocalizedName": "item.minecraft.diamond_pickaxe", - "localizedName": "Diamond Pickaxe", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_shovel", - "unlocalizedName": "item.minecraft.diamond_shovel", - "localizedName": "Diamond Shovel", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "id": "minecraft:diamond_sword", - "unlocalizedName": "item.minecraft.diamond_sword", - "localizedName": "Diamond Sword", - "maxDamage": 1561, - "maxStackSize": 1 - }, - { - "id": "minecraft:diorite", - "unlocalizedName": "block.minecraft.diorite", - "localizedName": "Diorite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diorite_slab", - "unlocalizedName": "block.minecraft.diorite_slab", - "localizedName": "Diorite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diorite_stairs", - "unlocalizedName": "block.minecraft.diorite_stairs", - "localizedName": "Diorite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:diorite_wall", - "unlocalizedName": "block.minecraft.diorite_wall", - "localizedName": "Diorite Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dirt", - "unlocalizedName": "block.minecraft.dirt", - "localizedName": "Dirt", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dispenser", - "unlocalizedName": "block.minecraft.dispenser", - "localizedName": "Dispenser", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dolphin_spawn_egg", - "unlocalizedName": "item.minecraft.dolphin_spawn_egg", - "localizedName": "Dolphin Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:donkey_spawn_egg", - "unlocalizedName": "item.minecraft.donkey_spawn_egg", - "localizedName": "Donkey Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dragon_breath", - "unlocalizedName": "item.minecraft.dragon_breath", - "localizedName": "Dragon's Breath", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dragon_egg", - "unlocalizedName": "block.minecraft.dragon_egg", - "localizedName": "Dragon Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dragon_head", - "unlocalizedName": "block.minecraft.dragon_head", - "localizedName": "Dragon Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dried_kelp", - "unlocalizedName": "item.minecraft.dried_kelp", - "localizedName": "Dried Kelp", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dried_kelp_block", - "unlocalizedName": "block.minecraft.dried_kelp_block", - "localizedName": "Dried Kelp Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:dropper", - "unlocalizedName": "block.minecraft.dropper", - "localizedName": "Dropper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:drowned_spawn_egg", - "unlocalizedName": "item.minecraft.drowned_spawn_egg", - "localizedName": "Drowned Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:egg", - "unlocalizedName": "item.minecraft.egg", - "localizedName": "Egg", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:elder_guardian_spawn_egg", - "unlocalizedName": "item.minecraft.elder_guardian_spawn_egg", - "localizedName": "Elder Guardian Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:elytra", - "unlocalizedName": "item.minecraft.elytra", - "localizedName": "Elytra", - "maxDamage": 432, - "maxStackSize": 1 - }, - { - "id": "minecraft:emerald", - "unlocalizedName": "item.minecraft.emerald", - "localizedName": "Emerald", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:emerald_block", - "unlocalizedName": "block.minecraft.emerald_block", - "localizedName": "Block of Emerald", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:emerald_ore", - "unlocalizedName": "block.minecraft.emerald_ore", - "localizedName": "Emerald Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:enchanted_book", - "unlocalizedName": "item.minecraft.enchanted_book", - "localizedName": "Enchanted Book", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:enchanted_golden_apple", - "unlocalizedName": "item.minecraft.enchanted_golden_apple", - "localizedName": "Enchanted Golden Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:enchanting_table", - "unlocalizedName": "block.minecraft.enchanting_table", - "localizedName": "Enchanting Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_crystal", - "unlocalizedName": "item.minecraft.end_crystal", - "localizedName": "End Crystal", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_portal_frame", - "unlocalizedName": "block.minecraft.end_portal_frame", - "localizedName": "End Portal Frame", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_rod", - "unlocalizedName": "block.minecraft.end_rod", - "localizedName": "End Rod", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_stone", - "unlocalizedName": "block.minecraft.end_stone", - "localizedName": "End Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_stone_brick_slab", - "unlocalizedName": "block.minecraft.end_stone_brick_slab", - "localizedName": "End Stone Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_stone_brick_stairs", - "unlocalizedName": "block.minecraft.end_stone_brick_stairs", - "localizedName": "End Stone Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_stone_brick_wall", - "unlocalizedName": "block.minecraft.end_stone_brick_wall", - "localizedName": "End Stone Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:end_stone_bricks", - "unlocalizedName": "block.minecraft.end_stone_bricks", - "localizedName": "End Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ender_chest", - "unlocalizedName": "block.minecraft.ender_chest", - "localizedName": "Ender Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ender_eye", - "unlocalizedName": "item.minecraft.ender_eye", - "localizedName": "Eye of Ender", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ender_pearl", - "unlocalizedName": "item.minecraft.ender_pearl", - "localizedName": "Ender Pearl", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:enderman_spawn_egg", - "unlocalizedName": "item.minecraft.enderman_spawn_egg", - "localizedName": "Enderman Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:endermite_spawn_egg", - "unlocalizedName": "item.minecraft.endermite_spawn_egg", - "localizedName": "Endermite Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:evoker_spawn_egg", - "unlocalizedName": "item.minecraft.evoker_spawn_egg", - "localizedName": "Evoker Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:experience_bottle", - "unlocalizedName": "item.minecraft.experience_bottle", - "localizedName": "Bottle o' Enchanting", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:farmland", - "unlocalizedName": "block.minecraft.farmland", - "localizedName": "Farmland", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:feather", - "unlocalizedName": "item.minecraft.feather", - "localizedName": "Feather", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fermented_spider_eye", - "unlocalizedName": "item.minecraft.fermented_spider_eye", - "localizedName": "Fermented Spider Eye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fern", - "unlocalizedName": "block.minecraft.fern", - "localizedName": "Fern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:filled_map", - "unlocalizedName": "item.minecraft.filled_map", - "localizedName": "Map", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fire_charge", - "unlocalizedName": "item.minecraft.fire_charge", - "localizedName": "Fire Charge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fire_coral", - "unlocalizedName": "block.minecraft.fire_coral", - "localizedName": "Fire Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fire_coral_block", - "unlocalizedName": "block.minecraft.fire_coral_block", - "localizedName": "Fire Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fire_coral_fan", - "unlocalizedName": "block.minecraft.fire_coral_fan", - "localizedName": "Fire Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:firework_rocket", - "unlocalizedName": "item.minecraft.firework_rocket", - "localizedName": "Firework Rocket", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:firework_star", - "unlocalizedName": "item.minecraft.firework_star", - "localizedName": "Firework Star", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fishing_rod", - "unlocalizedName": "item.minecraft.fishing_rod", - "localizedName": "Fishing Rod", - "maxDamage": 64, - "maxStackSize": 1 - }, - { - "id": "minecraft:fletching_table", - "unlocalizedName": "block.minecraft.fletching_table", - "localizedName": "Fletching Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:flint", - "unlocalizedName": "item.minecraft.flint", - "localizedName": "Flint", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:flint_and_steel", - "unlocalizedName": "item.minecraft.flint_and_steel", - "localizedName": "Flint and Steel", - "maxDamage": 64, - "maxStackSize": 1 - }, - { - "id": "minecraft:flower_banner_pattern", - "unlocalizedName": "item.minecraft.flower_banner_pattern", - "localizedName": "Banner Pattern", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:flower_pot", - "unlocalizedName": "block.minecraft.flower_pot", - "localizedName": "Flower Pot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:fox_spawn_egg", - "unlocalizedName": "item.minecraft.fox_spawn_egg", - "localizedName": "Fox Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:furnace", - "unlocalizedName": "block.minecraft.furnace", - "localizedName": "Furnace", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:furnace_minecart", - "unlocalizedName": "item.minecraft.furnace_minecart", - "localizedName": "Minecart with Furnace", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:ghast_spawn_egg", - "unlocalizedName": "item.minecraft.ghast_spawn_egg", - "localizedName": "Ghast Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ghast_tear", - "unlocalizedName": "item.minecraft.ghast_tear", - "localizedName": "Ghast Tear", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:glass", - "unlocalizedName": "block.minecraft.glass", - "localizedName": "Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:glass_bottle", - "unlocalizedName": "item.minecraft.glass_bottle", - "localizedName": "Glass Bottle", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:glass_pane", - "unlocalizedName": "block.minecraft.glass_pane", - "localizedName": "Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:glistering_melon_slice", - "unlocalizedName": "item.minecraft.glistering_melon_slice", - "localizedName": "Glistering Melon Slice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:globe_banner_pattern", - "unlocalizedName": "item.minecraft.globe_banner_pattern", - "localizedName": "Banner Pattern", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:glowstone", - "unlocalizedName": "block.minecraft.glowstone", - "localizedName": "Glowstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:glowstone_dust", - "unlocalizedName": "item.minecraft.glowstone_dust", - "localizedName": "Glowstone Dust", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gold_block", - "unlocalizedName": "block.minecraft.gold_block", - "localizedName": "Block of Gold", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gold_ingot", - "unlocalizedName": "item.minecraft.gold_ingot", - "localizedName": "Gold Ingot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gold_nugget", - "unlocalizedName": "item.minecraft.gold_nugget", - "localizedName": "Gold Nugget", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gold_ore", - "unlocalizedName": "block.minecraft.gold_ore", - "localizedName": "Gold Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:golden_apple", - "unlocalizedName": "item.minecraft.golden_apple", - "localizedName": "Golden Apple", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:golden_axe", - "unlocalizedName": "item.minecraft.golden_axe", - "localizedName": "Golden Axe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_boots", - "unlocalizedName": "item.minecraft.golden_boots", - "localizedName": "Golden Boots", - "maxDamage": 91, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_carrot", - "unlocalizedName": "item.minecraft.golden_carrot", - "localizedName": "Golden Carrot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:golden_chestplate", - "unlocalizedName": "item.minecraft.golden_chestplate", - "localizedName": "Golden Chestplate", - "maxDamage": 112, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_helmet", - "unlocalizedName": "item.minecraft.golden_helmet", - "localizedName": "Golden Helmet", - "maxDamage": 77, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_hoe", - "unlocalizedName": "item.minecraft.golden_hoe", - "localizedName": "Golden Hoe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_horse_armor", - "unlocalizedName": "item.minecraft.golden_horse_armor", - "localizedName": "Golden Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_leggings", - "unlocalizedName": "item.minecraft.golden_leggings", - "localizedName": "Golden Leggings", - "maxDamage": 105, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_pickaxe", - "unlocalizedName": "item.minecraft.golden_pickaxe", - "localizedName": "Golden Pickaxe", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_shovel", - "unlocalizedName": "item.minecraft.golden_shovel", - "localizedName": "Golden Shovel", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "id": "minecraft:golden_sword", - "unlocalizedName": "item.minecraft.golden_sword", - "localizedName": "Golden Sword", - "maxDamage": 32, - "maxStackSize": 1 - }, - { - "id": "minecraft:granite", - "unlocalizedName": "block.minecraft.granite", - "localizedName": "Granite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:granite_slab", - "unlocalizedName": "block.minecraft.granite_slab", - "localizedName": "Granite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:granite_stairs", - "unlocalizedName": "block.minecraft.granite_stairs", - "localizedName": "Granite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:granite_wall", - "unlocalizedName": "block.minecraft.granite_wall", - "localizedName": "Granite Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:grass", - "unlocalizedName": "block.minecraft.grass", - "localizedName": "Grass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:grass_block", - "unlocalizedName": "block.minecraft.grass_block", - "localizedName": "Grass Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:grass_path", - "unlocalizedName": "block.minecraft.grass_path", - "localizedName": "Grass Path", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gravel", - "unlocalizedName": "block.minecraft.gravel", - "localizedName": "Gravel", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_banner", - "unlocalizedName": "block.minecraft.gray_banner", - "localizedName": "Gray Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:gray_bed", - "unlocalizedName": "block.minecraft.gray_bed", - "localizedName": "Gray Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:gray_carpet", - "unlocalizedName": "block.minecraft.gray_carpet", - "localizedName": "Gray Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_concrete", - "unlocalizedName": "block.minecraft.gray_concrete", - "localizedName": "Gray Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_concrete_powder", - "unlocalizedName": "block.minecraft.gray_concrete_powder", - "localizedName": "Gray Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_dye", - "unlocalizedName": "item.minecraft.gray_dye", - "localizedName": "Gray Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_glazed_terracotta", - "unlocalizedName": "block.minecraft.gray_glazed_terracotta", - "localizedName": "Gray Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_shulker_box", - "unlocalizedName": "block.minecraft.gray_shulker_box", - "localizedName": "Gray Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:gray_stained_glass", - "unlocalizedName": "block.minecraft.gray_stained_glass", - "localizedName": "Gray Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_stained_glass_pane", - "unlocalizedName": "block.minecraft.gray_stained_glass_pane", - "localizedName": "Gray Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_terracotta", - "unlocalizedName": "block.minecraft.gray_terracotta", - "localizedName": "Gray Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gray_wool", - "unlocalizedName": "block.minecraft.gray_wool", - "localizedName": "Gray Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_banner", - "unlocalizedName": "block.minecraft.green_banner", - "localizedName": "Green Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:green_bed", - "unlocalizedName": "block.minecraft.green_bed", - "localizedName": "Green Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:green_carpet", - "unlocalizedName": "block.minecraft.green_carpet", - "localizedName": "Green Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_concrete", - "unlocalizedName": "block.minecraft.green_concrete", - "localizedName": "Green Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_concrete_powder", - "unlocalizedName": "block.minecraft.green_concrete_powder", - "localizedName": "Green Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_dye", - "unlocalizedName": "item.minecraft.green_dye", - "localizedName": "Green Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_glazed_terracotta", - "unlocalizedName": "block.minecraft.green_glazed_terracotta", - "localizedName": "Green Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_shulker_box", - "unlocalizedName": "block.minecraft.green_shulker_box", - "localizedName": "Green Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:green_stained_glass", - "unlocalizedName": "block.minecraft.green_stained_glass", - "localizedName": "Green Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_stained_glass_pane", - "unlocalizedName": "block.minecraft.green_stained_glass_pane", - "localizedName": "Green Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_terracotta", - "unlocalizedName": "block.minecraft.green_terracotta", - "localizedName": "Green Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:green_wool", - "unlocalizedName": "block.minecraft.green_wool", - "localizedName": "Green Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:grindstone", - "unlocalizedName": "block.minecraft.grindstone", - "localizedName": "Grindstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:guardian_spawn_egg", - "unlocalizedName": "item.minecraft.guardian_spawn_egg", - "localizedName": "Guardian Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:gunpowder", - "unlocalizedName": "item.minecraft.gunpowder", - "localizedName": "Gunpowder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:hay_block", - "unlocalizedName": "block.minecraft.hay_block", - "localizedName": "Hay Bale", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:heart_of_the_sea", - "unlocalizedName": "item.minecraft.heart_of_the_sea", - "localizedName": "Heart of the Sea", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:heavy_weighted_pressure_plate", - "unlocalizedName": "block.minecraft.heavy_weighted_pressure_plate", - "localizedName": "Heavy Weighted Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:honey_block", - "unlocalizedName": "block.minecraft.honey_block", - "localizedName": "Honey Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:honey_bottle", - "unlocalizedName": "item.minecraft.honey_bottle", - "localizedName": "Honey Bottle", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:honeycomb", - "unlocalizedName": "item.minecraft.honeycomb", - "localizedName": "Honeycomb", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:honeycomb_block", - "unlocalizedName": "block.minecraft.honeycomb_block", - "localizedName": "Honeycomb Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:hopper", - "unlocalizedName": "block.minecraft.hopper", - "localizedName": "Hopper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:hopper_minecart", - "unlocalizedName": "item.minecraft.hopper_minecart", - "localizedName": "Minecart with Hopper", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:horn_coral", - "unlocalizedName": "block.minecraft.horn_coral", - "localizedName": "Horn Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:horn_coral_block", - "unlocalizedName": "block.minecraft.horn_coral_block", - "localizedName": "Horn Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:horn_coral_fan", - "unlocalizedName": "block.minecraft.horn_coral_fan", - "localizedName": "Horn Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:horse_spawn_egg", - "unlocalizedName": "item.minecraft.horse_spawn_egg", - "localizedName": "Horse Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:husk_spawn_egg", - "unlocalizedName": "item.minecraft.husk_spawn_egg", - "localizedName": "Husk Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ice", - "unlocalizedName": "block.minecraft.ice", - "localizedName": "Ice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_chiseled_stone_bricks", - "unlocalizedName": "block.minecraft.infested_chiseled_stone_bricks", - "localizedName": "Infested Chiseled Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_cobblestone", - "unlocalizedName": "block.minecraft.infested_cobblestone", - "localizedName": "Infested Cobblestone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_cracked_stone_bricks", - "unlocalizedName": "block.minecraft.infested_cracked_stone_bricks", - "localizedName": "Infested Cracked Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_mossy_stone_bricks", - "unlocalizedName": "block.minecraft.infested_mossy_stone_bricks", - "localizedName": "Infested Mossy Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_stone", - "unlocalizedName": "block.minecraft.infested_stone", - "localizedName": "Infested Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:infested_stone_bricks", - "unlocalizedName": "block.minecraft.infested_stone_bricks", - "localizedName": "Infested Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ink_sac", - "unlocalizedName": "item.minecraft.ink_sac", - "localizedName": "Ink Sac", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_axe", - "unlocalizedName": "item.minecraft.iron_axe", - "localizedName": "Iron Axe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_bars", - "unlocalizedName": "block.minecraft.iron_bars", - "localizedName": "Iron Bars", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_block", - "unlocalizedName": "block.minecraft.iron_block", - "localizedName": "Block of Iron", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_boots", - "unlocalizedName": "item.minecraft.iron_boots", - "localizedName": "Iron Boots", - "maxDamage": 195, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_chestplate", - "unlocalizedName": "item.minecraft.iron_chestplate", - "localizedName": "Iron Chestplate", - "maxDamage": 240, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_door", - "unlocalizedName": "block.minecraft.iron_door", - "localizedName": "Iron Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_helmet", - "unlocalizedName": "item.minecraft.iron_helmet", - "localizedName": "Iron Helmet", - "maxDamage": 165, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_hoe", - "unlocalizedName": "item.minecraft.iron_hoe", - "localizedName": "Iron Hoe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_horse_armor", - "unlocalizedName": "item.minecraft.iron_horse_armor", - "localizedName": "Iron Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_ingot", - "unlocalizedName": "item.minecraft.iron_ingot", - "localizedName": "Iron Ingot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_leggings", - "unlocalizedName": "item.minecraft.iron_leggings", - "localizedName": "Iron Leggings", - "maxDamage": 225, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_nugget", - "unlocalizedName": "item.minecraft.iron_nugget", - "localizedName": "Iron Nugget", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_ore", - "unlocalizedName": "block.minecraft.iron_ore", - "localizedName": "Iron Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:iron_pickaxe", - "unlocalizedName": "item.minecraft.iron_pickaxe", - "localizedName": "Iron Pickaxe", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_shovel", - "unlocalizedName": "item.minecraft.iron_shovel", - "localizedName": "Iron Shovel", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_sword", - "unlocalizedName": "item.minecraft.iron_sword", - "localizedName": "Iron Sword", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:iron_trapdoor", - "unlocalizedName": "block.minecraft.iron_trapdoor", - "localizedName": "Iron Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:item_frame", - "unlocalizedName": "item.minecraft.item_frame", - "localizedName": "Item Frame", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jack_o_lantern", - "unlocalizedName": "block.minecraft.jack_o_lantern", - "localizedName": "Jack o'Lantern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jigsaw", - "unlocalizedName": "block.minecraft.jigsaw", - "localizedName": "Jigsaw Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jukebox", - "unlocalizedName": "block.minecraft.jukebox", - "localizedName": "Jukebox", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_boat", - "unlocalizedName": "item.minecraft.jungle_boat", - "localizedName": "Jungle Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:jungle_button", - "unlocalizedName": "block.minecraft.jungle_button", - "localizedName": "Jungle Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_door", - "unlocalizedName": "block.minecraft.jungle_door", - "localizedName": "Jungle Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_fence", - "unlocalizedName": "block.minecraft.jungle_fence", - "localizedName": "Jungle Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_fence_gate", - "unlocalizedName": "block.minecraft.jungle_fence_gate", - "localizedName": "Jungle Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_leaves", - "unlocalizedName": "block.minecraft.jungle_leaves", - "localizedName": "Jungle Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_log", - "unlocalizedName": "block.minecraft.jungle_log", - "localizedName": "Jungle Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_planks", - "unlocalizedName": "block.minecraft.jungle_planks", - "localizedName": "Jungle Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_pressure_plate", - "unlocalizedName": "block.minecraft.jungle_pressure_plate", - "localizedName": "Jungle Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_sapling", - "unlocalizedName": "block.minecraft.jungle_sapling", - "localizedName": "Jungle Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_sign", - "unlocalizedName": "block.minecraft.jungle_sign", - "localizedName": "Jungle Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:jungle_slab", - "unlocalizedName": "block.minecraft.jungle_slab", - "localizedName": "Jungle Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_stairs", - "unlocalizedName": "block.minecraft.jungle_stairs", - "localizedName": "Jungle Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_trapdoor", - "unlocalizedName": "block.minecraft.jungle_trapdoor", - "localizedName": "Jungle Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:jungle_wood", - "unlocalizedName": "block.minecraft.jungle_wood", - "localizedName": "Jungle Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:kelp", - "unlocalizedName": "block.minecraft.kelp", - "localizedName": "Kelp", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:knowledge_book", - "unlocalizedName": "item.minecraft.knowledge_book", - "localizedName": "Knowledge Book", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:ladder", - "unlocalizedName": "block.minecraft.ladder", - "localizedName": "Ladder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lantern", - "unlocalizedName": "block.minecraft.lantern", - "localizedName": "Lantern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lapis_block", - "unlocalizedName": "block.minecraft.lapis_block", - "localizedName": "Lapis Lazuli Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lapis_lazuli", - "unlocalizedName": "item.minecraft.lapis_lazuli", - "localizedName": "Lapis Lazuli", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lapis_ore", - "unlocalizedName": "block.minecraft.lapis_ore", - "localizedName": "Lapis Lazuli Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:large_fern", - "unlocalizedName": "block.minecraft.large_fern", - "localizedName": "Large Fern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lava_bucket", - "unlocalizedName": "item.minecraft.lava_bucket", - "localizedName": "Lava Bucket", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:lead", - "unlocalizedName": "item.minecraft.lead", - "localizedName": "Lead", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:leather", - "unlocalizedName": "item.minecraft.leather", - "localizedName": "Leather", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:leather_boots", - "unlocalizedName": "item.minecraft.leather_boots", - "localizedName": "Leather Boots", - "maxDamage": 65, - "maxStackSize": 1 - }, - { - "id": "minecraft:leather_chestplate", - "unlocalizedName": "item.minecraft.leather_chestplate", - "localizedName": "Leather Tunic", - "maxDamage": 80, - "maxStackSize": 1 - }, - { - "id": "minecraft:leather_helmet", - "unlocalizedName": "item.minecraft.leather_helmet", - "localizedName": "Leather Cap", - "maxDamage": 55, - "maxStackSize": 1 - }, - { - "id": "minecraft:leather_horse_armor", - "unlocalizedName": "item.minecraft.leather_horse_armor", - "localizedName": "Leather Horse Armor", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:leather_leggings", - "unlocalizedName": "item.minecraft.leather_leggings", - "localizedName": "Leather Pants", - "maxDamage": 75, - "maxStackSize": 1 - }, - { - "id": "minecraft:lectern", - "unlocalizedName": "block.minecraft.lectern", - "localizedName": "Lectern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lever", - "unlocalizedName": "block.minecraft.lever", - "localizedName": "Lever", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_banner", - "unlocalizedName": "block.minecraft.light_blue_banner", - "localizedName": "Light Blue Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:light_blue_bed", - "unlocalizedName": "block.minecraft.light_blue_bed", - "localizedName": "Light Blue Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:light_blue_carpet", - "unlocalizedName": "block.minecraft.light_blue_carpet", - "localizedName": "Light Blue Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_concrete", - "unlocalizedName": "block.minecraft.light_blue_concrete", - "localizedName": "Light Blue Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_concrete_powder", - "unlocalizedName": "block.minecraft.light_blue_concrete_powder", - "localizedName": "Light Blue Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_dye", - "unlocalizedName": "item.minecraft.light_blue_dye", - "localizedName": "Light Blue Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_glazed_terracotta", - "unlocalizedName": "block.minecraft.light_blue_glazed_terracotta", - "localizedName": "Light Blue Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_shulker_box", - "unlocalizedName": "block.minecraft.light_blue_shulker_box", - "localizedName": "Light Blue Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:light_blue_stained_glass", - "unlocalizedName": "block.minecraft.light_blue_stained_glass", - "localizedName": "Light Blue Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_stained_glass_pane", - "unlocalizedName": "block.minecraft.light_blue_stained_glass_pane", - "localizedName": "Light Blue Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_terracotta", - "unlocalizedName": "block.minecraft.light_blue_terracotta", - "localizedName": "Light Blue Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_blue_wool", - "unlocalizedName": "block.minecraft.light_blue_wool", - "localizedName": "Light Blue Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_banner", - "unlocalizedName": "block.minecraft.light_gray_banner", - "localizedName": "Light Gray Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:light_gray_bed", - "unlocalizedName": "block.minecraft.light_gray_bed", - "localizedName": "Light Gray Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:light_gray_carpet", - "unlocalizedName": "block.minecraft.light_gray_carpet", - "localizedName": "Light Gray Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_concrete", - "unlocalizedName": "block.minecraft.light_gray_concrete", - "localizedName": "Light Gray Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_concrete_powder", - "unlocalizedName": "block.minecraft.light_gray_concrete_powder", - "localizedName": "Light Gray Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_dye", - "unlocalizedName": "item.minecraft.light_gray_dye", - "localizedName": "Light Gray Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_glazed_terracotta", - "unlocalizedName": "block.minecraft.light_gray_glazed_terracotta", - "localizedName": "Light Gray Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_shulker_box", - "unlocalizedName": "block.minecraft.light_gray_shulker_box", - "localizedName": "Light Gray Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:light_gray_stained_glass", - "unlocalizedName": "block.minecraft.light_gray_stained_glass", - "localizedName": "Light Gray Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_stained_glass_pane", - "unlocalizedName": "block.minecraft.light_gray_stained_glass_pane", - "localizedName": "Light Gray Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_terracotta", - "unlocalizedName": "block.minecraft.light_gray_terracotta", - "localizedName": "Light Gray Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_gray_wool", - "unlocalizedName": "block.minecraft.light_gray_wool", - "localizedName": "Light Gray Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:light_weighted_pressure_plate", - "unlocalizedName": "block.minecraft.light_weighted_pressure_plate", - "localizedName": "Light Weighted Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lilac", - "unlocalizedName": "block.minecraft.lilac", - "localizedName": "Lilac", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lily_of_the_valley", - "unlocalizedName": "block.minecraft.lily_of_the_valley", - "localizedName": "Lily of the Valley", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lily_pad", - "unlocalizedName": "block.minecraft.lily_pad", - "localizedName": "Lily Pad", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_banner", - "unlocalizedName": "block.minecraft.lime_banner", - "localizedName": "Lime Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:lime_bed", - "unlocalizedName": "block.minecraft.lime_bed", - "localizedName": "Lime Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:lime_carpet", - "unlocalizedName": "block.minecraft.lime_carpet", - "localizedName": "Lime Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_concrete", - "unlocalizedName": "block.minecraft.lime_concrete", - "localizedName": "Lime Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_concrete_powder", - "unlocalizedName": "block.minecraft.lime_concrete_powder", - "localizedName": "Lime Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_dye", - "unlocalizedName": "item.minecraft.lime_dye", - "localizedName": "Lime Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_glazed_terracotta", - "unlocalizedName": "block.minecraft.lime_glazed_terracotta", - "localizedName": "Lime Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_shulker_box", - "unlocalizedName": "block.minecraft.lime_shulker_box", - "localizedName": "Lime Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:lime_stained_glass", - "unlocalizedName": "block.minecraft.lime_stained_glass", - "localizedName": "Lime Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_stained_glass_pane", - "unlocalizedName": "block.minecraft.lime_stained_glass_pane", - "localizedName": "Lime Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_terracotta", - "unlocalizedName": "block.minecraft.lime_terracotta", - "localizedName": "Lime Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lime_wool", - "unlocalizedName": "block.minecraft.lime_wool", - "localizedName": "Lime Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:lingering_potion", - "unlocalizedName": "item.minecraft.lingering_potion.effect.water", - "localizedName": "Lingering Water Bottle", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:llama_spawn_egg", - "unlocalizedName": "item.minecraft.llama_spawn_egg", - "localizedName": "Llama Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:loom", - "unlocalizedName": "block.minecraft.loom", - "localizedName": "Loom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_banner", - "unlocalizedName": "block.minecraft.magenta_banner", - "localizedName": "Magenta Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:magenta_bed", - "unlocalizedName": "block.minecraft.magenta_bed", - "localizedName": "Magenta Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:magenta_carpet", - "unlocalizedName": "block.minecraft.magenta_carpet", - "localizedName": "Magenta Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_concrete", - "unlocalizedName": "block.minecraft.magenta_concrete", - "localizedName": "Magenta Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_concrete_powder", - "unlocalizedName": "block.minecraft.magenta_concrete_powder", - "localizedName": "Magenta Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_dye", - "unlocalizedName": "item.minecraft.magenta_dye", - "localizedName": "Magenta Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_glazed_terracotta", - "unlocalizedName": "block.minecraft.magenta_glazed_terracotta", - "localizedName": "Magenta Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_shulker_box", - "unlocalizedName": "block.minecraft.magenta_shulker_box", - "localizedName": "Magenta Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:magenta_stained_glass", - "unlocalizedName": "block.minecraft.magenta_stained_glass", - "localizedName": "Magenta Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_stained_glass_pane", - "unlocalizedName": "block.minecraft.magenta_stained_glass_pane", - "localizedName": "Magenta Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_terracotta", - "unlocalizedName": "block.minecraft.magenta_terracotta", - "localizedName": "Magenta Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magenta_wool", - "unlocalizedName": "block.minecraft.magenta_wool", - "localizedName": "Magenta Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magma_block", - "unlocalizedName": "block.minecraft.magma_block", - "localizedName": "Magma Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magma_cream", - "unlocalizedName": "item.minecraft.magma_cream", - "localizedName": "Magma Cream", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:magma_cube_spawn_egg", - "unlocalizedName": "item.minecraft.magma_cube_spawn_egg", - "localizedName": "Magma Cube Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:map", - "unlocalizedName": "item.minecraft.map", - "localizedName": "Empty Map", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:melon", - "unlocalizedName": "block.minecraft.melon", - "localizedName": "Melon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:melon_seeds", - "unlocalizedName": "item.minecraft.melon_seeds", - "localizedName": "Melon Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:melon_slice", - "unlocalizedName": "item.minecraft.melon_slice", - "localizedName": "Melon Slice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:milk_bucket", - "unlocalizedName": "item.minecraft.milk_bucket", - "localizedName": "Milk Bucket", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:minecart", - "unlocalizedName": "item.minecraft.minecart", - "localizedName": "Minecart", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:mojang_banner_pattern", - "unlocalizedName": "item.minecraft.mojang_banner_pattern", - "localizedName": "Banner Pattern", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:mooshroom_spawn_egg", - "unlocalizedName": "item.minecraft.mooshroom_spawn_egg", - "localizedName": "Mooshroom Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_cobblestone", - "unlocalizedName": "block.minecraft.mossy_cobblestone", - "localizedName": "Mossy Cobblestone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_cobblestone_slab", - "unlocalizedName": "block.minecraft.mossy_cobblestone_slab", - "localizedName": "Mossy Cobblestone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_cobblestone_stairs", - "unlocalizedName": "block.minecraft.mossy_cobblestone_stairs", - "localizedName": "Mossy Cobblestone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_cobblestone_wall", - "unlocalizedName": "block.minecraft.mossy_cobblestone_wall", - "localizedName": "Mossy Cobblestone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_stone_brick_slab", - "unlocalizedName": "block.minecraft.mossy_stone_brick_slab", - "localizedName": "Mossy Stone Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_stone_brick_stairs", - "unlocalizedName": "block.minecraft.mossy_stone_brick_stairs", - "localizedName": "Mossy Stone Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_stone_brick_wall", - "unlocalizedName": "block.minecraft.mossy_stone_brick_wall", - "localizedName": "Mossy Stone Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mossy_stone_bricks", - "unlocalizedName": "block.minecraft.mossy_stone_bricks", - "localizedName": "Mossy Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mule_spawn_egg", - "unlocalizedName": "item.minecraft.mule_spawn_egg", - "localizedName": "Mule Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mushroom_stem", - "unlocalizedName": "block.minecraft.mushroom_stem", - "localizedName": "Mushroom Stem", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mushroom_stew", - "unlocalizedName": "item.minecraft.mushroom_stew", - "localizedName": "Mushroom Stew", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_11", - "unlocalizedName": "item.minecraft.music_disc_11", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_13", - "unlocalizedName": "item.minecraft.music_disc_13", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_blocks", - "unlocalizedName": "item.minecraft.music_disc_blocks", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_cat", - "unlocalizedName": "item.minecraft.music_disc_cat", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_chirp", - "unlocalizedName": "item.minecraft.music_disc_chirp", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_far", - "unlocalizedName": "item.minecraft.music_disc_far", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_mall", - "unlocalizedName": "item.minecraft.music_disc_mall", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_mellohi", - "unlocalizedName": "item.minecraft.music_disc_mellohi", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_stal", - "unlocalizedName": "item.minecraft.music_disc_stal", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_strad", - "unlocalizedName": "item.minecraft.music_disc_strad", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_wait", - "unlocalizedName": "item.minecraft.music_disc_wait", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:music_disc_ward", - "unlocalizedName": "item.minecraft.music_disc_ward", - "localizedName": "Music Disc", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:mutton", - "unlocalizedName": "item.minecraft.mutton", - "localizedName": "Raw Mutton", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:mycelium", - "unlocalizedName": "block.minecraft.mycelium", - "localizedName": "Mycelium", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:name_tag", - "unlocalizedName": "item.minecraft.name_tag", - "localizedName": "Name Tag", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nautilus_shell", - "unlocalizedName": "item.minecraft.nautilus_shell", - "localizedName": "Nautilus Shell", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_brick", - "unlocalizedName": "item.minecraft.nether_brick", - "localizedName": "Nether Brick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_brick_fence", - "unlocalizedName": "block.minecraft.nether_brick_fence", - "localizedName": "Nether Brick Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_brick_slab", - "unlocalizedName": "block.minecraft.nether_brick_slab", - "localizedName": "Nether Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_brick_stairs", - "unlocalizedName": "block.minecraft.nether_brick_stairs", - "localizedName": "Nether Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_brick_wall", - "unlocalizedName": "block.minecraft.nether_brick_wall", - "localizedName": "Nether Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_bricks", - "unlocalizedName": "block.minecraft.nether_bricks", - "localizedName": "Nether Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_quartz_ore", - "unlocalizedName": "block.minecraft.nether_quartz_ore", - "localizedName": "Nether Quartz Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_star", - "unlocalizedName": "item.minecraft.nether_star", - "localizedName": "Nether Star", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_wart", - "unlocalizedName": "item.minecraft.nether_wart", - "localizedName": "Nether Wart", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:nether_wart_block", - "unlocalizedName": "block.minecraft.nether_wart_block", - "localizedName": "Nether Wart Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:netherrack", - "unlocalizedName": "block.minecraft.netherrack", - "localizedName": "Netherrack", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:note_block", - "unlocalizedName": "block.minecraft.note_block", - "localizedName": "Note Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_boat", - "unlocalizedName": "item.minecraft.oak_boat", - "localizedName": "Oak Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:oak_button", - "unlocalizedName": "block.minecraft.oak_button", - "localizedName": "Oak Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_door", - "unlocalizedName": "block.minecraft.oak_door", - "localizedName": "Oak Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_fence", - "unlocalizedName": "block.minecraft.oak_fence", - "localizedName": "Oak Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_fence_gate", - "unlocalizedName": "block.minecraft.oak_fence_gate", - "localizedName": "Oak Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_leaves", - "unlocalizedName": "block.minecraft.oak_leaves", - "localizedName": "Oak Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_log", - "unlocalizedName": "block.minecraft.oak_log", - "localizedName": "Oak Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_planks", - "unlocalizedName": "block.minecraft.oak_planks", - "localizedName": "Oak Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_pressure_plate", - "unlocalizedName": "block.minecraft.oak_pressure_plate", - "localizedName": "Oak Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_sapling", - "unlocalizedName": "block.minecraft.oak_sapling", - "localizedName": "Oak Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_sign", - "unlocalizedName": "block.minecraft.oak_sign", - "localizedName": "Oak Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:oak_slab", - "unlocalizedName": "block.minecraft.oak_slab", - "localizedName": "Oak Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_stairs", - "unlocalizedName": "block.minecraft.oak_stairs", - "localizedName": "Oak Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_trapdoor", - "unlocalizedName": "block.minecraft.oak_trapdoor", - "localizedName": "Oak Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oak_wood", - "unlocalizedName": "block.minecraft.oak_wood", - "localizedName": "Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:observer", - "unlocalizedName": "block.minecraft.observer", - "localizedName": "Observer", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:obsidian", - "unlocalizedName": "block.minecraft.obsidian", - "localizedName": "Obsidian", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ocelot_spawn_egg", - "unlocalizedName": "item.minecraft.ocelot_spawn_egg", - "localizedName": "Ocelot Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_banner", - "unlocalizedName": "block.minecraft.orange_banner", - "localizedName": "Orange Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:orange_bed", - "unlocalizedName": "block.minecraft.orange_bed", - "localizedName": "Orange Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:orange_carpet", - "unlocalizedName": "block.minecraft.orange_carpet", - "localizedName": "Orange Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_concrete", - "unlocalizedName": "block.minecraft.orange_concrete", - "localizedName": "Orange Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_concrete_powder", - "unlocalizedName": "block.minecraft.orange_concrete_powder", - "localizedName": "Orange Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_dye", - "unlocalizedName": "item.minecraft.orange_dye", - "localizedName": "Orange Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_glazed_terracotta", - "unlocalizedName": "block.minecraft.orange_glazed_terracotta", - "localizedName": "Orange Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_shulker_box", - "unlocalizedName": "block.minecraft.orange_shulker_box", - "localizedName": "Orange Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:orange_stained_glass", - "unlocalizedName": "block.minecraft.orange_stained_glass", - "localizedName": "Orange Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_stained_glass_pane", - "unlocalizedName": "block.minecraft.orange_stained_glass_pane", - "localizedName": "Orange Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_terracotta", - "unlocalizedName": "block.minecraft.orange_terracotta", - "localizedName": "Orange Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_tulip", - "unlocalizedName": "block.minecraft.orange_tulip", - "localizedName": "Orange Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:orange_wool", - "unlocalizedName": "block.minecraft.orange_wool", - "localizedName": "Orange Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:oxeye_daisy", - "unlocalizedName": "block.minecraft.oxeye_daisy", - "localizedName": "Oxeye Daisy", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:packed_ice", - "unlocalizedName": "block.minecraft.packed_ice", - "localizedName": "Packed Ice", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:painting", - "unlocalizedName": "item.minecraft.painting", - "localizedName": "Painting", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:panda_spawn_egg", - "unlocalizedName": "item.minecraft.panda_spawn_egg", - "localizedName": "Panda Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:paper", - "unlocalizedName": "item.minecraft.paper", - "localizedName": "Paper", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:parrot_spawn_egg", - "unlocalizedName": "item.minecraft.parrot_spawn_egg", - "localizedName": "Parrot Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:peony", - "unlocalizedName": "block.minecraft.peony", - "localizedName": "Peony", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:petrified_oak_slab", - "unlocalizedName": "block.minecraft.petrified_oak_slab", - "localizedName": "Petrified Oak Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:phantom_membrane", - "unlocalizedName": "item.minecraft.phantom_membrane", - "localizedName": "Phantom Membrane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:phantom_spawn_egg", - "unlocalizedName": "item.minecraft.phantom_spawn_egg", - "localizedName": "Phantom Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pig_spawn_egg", - "unlocalizedName": "item.minecraft.pig_spawn_egg", - "localizedName": "Pig Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pillager_spawn_egg", - "unlocalizedName": "item.minecraft.pillager_spawn_egg", - "localizedName": "Pillager Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_banner", - "unlocalizedName": "block.minecraft.pink_banner", - "localizedName": "Pink Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:pink_bed", - "unlocalizedName": "block.minecraft.pink_bed", - "localizedName": "Pink Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:pink_carpet", - "unlocalizedName": "block.minecraft.pink_carpet", - "localizedName": "Pink Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_concrete", - "unlocalizedName": "block.minecraft.pink_concrete", - "localizedName": "Pink Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_concrete_powder", - "unlocalizedName": "block.minecraft.pink_concrete_powder", - "localizedName": "Pink Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_dye", - "unlocalizedName": "item.minecraft.pink_dye", - "localizedName": "Pink Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_glazed_terracotta", - "unlocalizedName": "block.minecraft.pink_glazed_terracotta", - "localizedName": "Pink Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_shulker_box", - "unlocalizedName": "block.minecraft.pink_shulker_box", - "localizedName": "Pink Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:pink_stained_glass", - "unlocalizedName": "block.minecraft.pink_stained_glass", - "localizedName": "Pink Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_stained_glass_pane", - "unlocalizedName": "block.minecraft.pink_stained_glass_pane", - "localizedName": "Pink Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_terracotta", - "unlocalizedName": "block.minecraft.pink_terracotta", - "localizedName": "Pink Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_tulip", - "unlocalizedName": "block.minecraft.pink_tulip", - "localizedName": "Pink Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pink_wool", - "unlocalizedName": "block.minecraft.pink_wool", - "localizedName": "Pink Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:piston", - "unlocalizedName": "block.minecraft.piston", - "localizedName": "Piston", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:player_head", - "unlocalizedName": "block.minecraft.player_head", - "localizedName": "Player Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:podzol", - "unlocalizedName": "block.minecraft.podzol", - "localizedName": "Podzol", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:poisonous_potato", - "unlocalizedName": "item.minecraft.poisonous_potato", - "localizedName": "Poisonous Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polar_bear_spawn_egg", - "unlocalizedName": "item.minecraft.polar_bear_spawn_egg", - "localizedName": "Polar Bear Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_andesite", - "unlocalizedName": "block.minecraft.polished_andesite", - "localizedName": "Polished Andesite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_andesite_slab", - "unlocalizedName": "block.minecraft.polished_andesite_slab", - "localizedName": "Polished Andesite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_andesite_stairs", - "unlocalizedName": "block.minecraft.polished_andesite_stairs", - "localizedName": "Polished Andesite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_diorite", - "unlocalizedName": "block.minecraft.polished_diorite", - "localizedName": "Polished Diorite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_diorite_slab", - "unlocalizedName": "block.minecraft.polished_diorite_slab", - "localizedName": "Polished Diorite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_diorite_stairs", - "unlocalizedName": "block.minecraft.polished_diorite_stairs", - "localizedName": "Polished Diorite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_granite", - "unlocalizedName": "block.minecraft.polished_granite", - "localizedName": "Polished Granite", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_granite_slab", - "unlocalizedName": "block.minecraft.polished_granite_slab", - "localizedName": "Polished Granite Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:polished_granite_stairs", - "unlocalizedName": "block.minecraft.polished_granite_stairs", - "localizedName": "Polished Granite Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:popped_chorus_fruit", - "unlocalizedName": "item.minecraft.popped_chorus_fruit", - "localizedName": "Popped Chorus Fruit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:poppy", - "unlocalizedName": "block.minecraft.poppy", - "localizedName": "Poppy", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:porkchop", - "unlocalizedName": "item.minecraft.porkchop", - "localizedName": "Raw Porkchop", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:potato", - "unlocalizedName": "item.minecraft.potato", - "localizedName": "Potato", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:potion", - "unlocalizedName": "item.minecraft.potion.effect.water", - "localizedName": "Water Bottle", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:powered_rail", - "unlocalizedName": "block.minecraft.powered_rail", - "localizedName": "Powered Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine", - "unlocalizedName": "block.minecraft.prismarine", - "localizedName": "Prismarine", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_brick_slab", - "unlocalizedName": "block.minecraft.prismarine_brick_slab", - "localizedName": "Prismarine Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_brick_stairs", - "unlocalizedName": "block.minecraft.prismarine_brick_stairs", - "localizedName": "Prismarine Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_bricks", - "unlocalizedName": "block.minecraft.prismarine_bricks", - "localizedName": "Prismarine Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_crystals", - "unlocalizedName": "item.minecraft.prismarine_crystals", - "localizedName": "Prismarine Crystals", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_shard", - "unlocalizedName": "item.minecraft.prismarine_shard", - "localizedName": "Prismarine Shard", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_slab", - "unlocalizedName": "block.minecraft.prismarine_slab", - "localizedName": "Prismarine Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_stairs", - "unlocalizedName": "block.minecraft.prismarine_stairs", - "localizedName": "Prismarine Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:prismarine_wall", - "unlocalizedName": "block.minecraft.prismarine_wall", - "localizedName": "Prismarine Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pufferfish", - "unlocalizedName": "item.minecraft.pufferfish", - "localizedName": "Pufferfish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pufferfish_bucket", - "unlocalizedName": "item.minecraft.pufferfish_bucket", - "localizedName": "Bucket of Pufferfish", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:pufferfish_spawn_egg", - "unlocalizedName": "item.minecraft.pufferfish_spawn_egg", - "localizedName": "Pufferfish Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pumpkin", - "unlocalizedName": "block.minecraft.pumpkin", - "localizedName": "Pumpkin", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pumpkin_pie", - "unlocalizedName": "item.minecraft.pumpkin_pie", - "localizedName": "Pumpkin Pie", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:pumpkin_seeds", - "unlocalizedName": "item.minecraft.pumpkin_seeds", - "localizedName": "Pumpkin Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_banner", - "unlocalizedName": "block.minecraft.purple_banner", - "localizedName": "Purple Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:purple_bed", - "unlocalizedName": "block.minecraft.purple_bed", - "localizedName": "Purple Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:purple_carpet", - "unlocalizedName": "block.minecraft.purple_carpet", - "localizedName": "Purple Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_concrete", - "unlocalizedName": "block.minecraft.purple_concrete", - "localizedName": "Purple Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_concrete_powder", - "unlocalizedName": "block.minecraft.purple_concrete_powder", - "localizedName": "Purple Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_dye", - "unlocalizedName": "item.minecraft.purple_dye", - "localizedName": "Purple Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_glazed_terracotta", - "unlocalizedName": "block.minecraft.purple_glazed_terracotta", - "localizedName": "Purple Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_shulker_box", - "unlocalizedName": "block.minecraft.purple_shulker_box", - "localizedName": "Purple Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:purple_stained_glass", - "unlocalizedName": "block.minecraft.purple_stained_glass", - "localizedName": "Purple Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_stained_glass_pane", - "unlocalizedName": "block.minecraft.purple_stained_glass_pane", - "localizedName": "Purple Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_terracotta", - "unlocalizedName": "block.minecraft.purple_terracotta", - "localizedName": "Purple Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purple_wool", - "unlocalizedName": "block.minecraft.purple_wool", - "localizedName": "Purple Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purpur_block", - "unlocalizedName": "block.minecraft.purpur_block", - "localizedName": "Purpur Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purpur_pillar", - "unlocalizedName": "block.minecraft.purpur_pillar", - "localizedName": "Purpur Pillar", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purpur_slab", - "unlocalizedName": "block.minecraft.purpur_slab", - "localizedName": "Purpur Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:purpur_stairs", - "unlocalizedName": "block.minecraft.purpur_stairs", - "localizedName": "Purpur Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:quartz", - "unlocalizedName": "item.minecraft.quartz", - "localizedName": "Nether Quartz", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:quartz_block", - "unlocalizedName": "block.minecraft.quartz_block", - "localizedName": "Block of Quartz", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:quartz_pillar", - "unlocalizedName": "block.minecraft.quartz_pillar", - "localizedName": "Quartz Pillar", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:quartz_slab", - "unlocalizedName": "block.minecraft.quartz_slab", - "localizedName": "Quartz Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:quartz_stairs", - "unlocalizedName": "block.minecraft.quartz_stairs", - "localizedName": "Quartz Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rabbit", - "unlocalizedName": "item.minecraft.rabbit", - "localizedName": "Raw Rabbit", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rabbit_foot", - "unlocalizedName": "item.minecraft.rabbit_foot", - "localizedName": "Rabbit's Foot", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rabbit_hide", - "unlocalizedName": "item.minecraft.rabbit_hide", - "localizedName": "Rabbit Hide", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rabbit_spawn_egg", - "unlocalizedName": "item.minecraft.rabbit_spawn_egg", - "localizedName": "Rabbit Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rabbit_stew", - "unlocalizedName": "item.minecraft.rabbit_stew", - "localizedName": "Rabbit Stew", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:rail", - "unlocalizedName": "block.minecraft.rail", - "localizedName": "Rail", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:ravager_spawn_egg", - "unlocalizedName": "item.minecraft.ravager_spawn_egg", - "localizedName": "Ravager Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_banner", - "unlocalizedName": "block.minecraft.red_banner", - "localizedName": "Red Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:red_bed", - "unlocalizedName": "block.minecraft.red_bed", - "localizedName": "Red Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:red_carpet", - "unlocalizedName": "block.minecraft.red_carpet", - "localizedName": "Red Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_concrete", - "unlocalizedName": "block.minecraft.red_concrete", - "localizedName": "Red Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_concrete_powder", - "unlocalizedName": "block.minecraft.red_concrete_powder", - "localizedName": "Red Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_dye", - "unlocalizedName": "item.minecraft.red_dye", - "localizedName": "Red Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_glazed_terracotta", - "unlocalizedName": "block.minecraft.red_glazed_terracotta", - "localizedName": "Red Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_mushroom", - "unlocalizedName": "block.minecraft.red_mushroom", - "localizedName": "Red Mushroom", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_mushroom_block", - "unlocalizedName": "block.minecraft.red_mushroom_block", - "localizedName": "Red Mushroom Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_nether_brick_slab", - "unlocalizedName": "block.minecraft.red_nether_brick_slab", - "localizedName": "Red Nether Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_nether_brick_stairs", - "unlocalizedName": "block.minecraft.red_nether_brick_stairs", - "localizedName": "Red Nether Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_nether_brick_wall", - "unlocalizedName": "block.minecraft.red_nether_brick_wall", - "localizedName": "Red Nether Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_nether_bricks", - "unlocalizedName": "block.minecraft.red_nether_bricks", - "localizedName": "Red Nether Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_sand", - "unlocalizedName": "block.minecraft.red_sand", - "localizedName": "Red Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_sandstone", - "unlocalizedName": "block.minecraft.red_sandstone", - "localizedName": "Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_sandstone_slab", - "unlocalizedName": "block.minecraft.red_sandstone_slab", - "localizedName": "Red Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_sandstone_stairs", - "unlocalizedName": "block.minecraft.red_sandstone_stairs", - "localizedName": "Red Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_sandstone_wall", - "unlocalizedName": "block.minecraft.red_sandstone_wall", - "localizedName": "Red Sandstone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_shulker_box", - "unlocalizedName": "block.minecraft.red_shulker_box", - "localizedName": "Red Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:red_stained_glass", - "unlocalizedName": "block.minecraft.red_stained_glass", - "localizedName": "Red Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_stained_glass_pane", - "unlocalizedName": "block.minecraft.red_stained_glass_pane", - "localizedName": "Red Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_terracotta", - "unlocalizedName": "block.minecraft.red_terracotta", - "localizedName": "Red Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_tulip", - "unlocalizedName": "block.minecraft.red_tulip", - "localizedName": "Red Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:red_wool", - "unlocalizedName": "block.minecraft.red_wool", - "localizedName": "Red Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:redstone", - "unlocalizedName": "item.minecraft.redstone", - "localizedName": "Redstone Dust", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:redstone_block", - "unlocalizedName": "block.minecraft.redstone_block", - "localizedName": "Block of Redstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:redstone_lamp", - "unlocalizedName": "block.minecraft.redstone_lamp", - "localizedName": "Redstone Lamp", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:redstone_ore", - "unlocalizedName": "block.minecraft.redstone_ore", - "localizedName": "Redstone Ore", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:redstone_torch", - "unlocalizedName": "block.minecraft.redstone_torch", - "localizedName": "Redstone Torch", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:repeater", - "unlocalizedName": "block.minecraft.repeater", - "localizedName": "Redstone Repeater", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:repeating_command_block", - "unlocalizedName": "block.minecraft.repeating_command_block", - "localizedName": "Repeating Command Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rose_bush", - "unlocalizedName": "block.minecraft.rose_bush", - "localizedName": "Rose Bush", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:rotten_flesh", - "unlocalizedName": "item.minecraft.rotten_flesh", - "localizedName": "Rotten Flesh", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:saddle", - "unlocalizedName": "item.minecraft.saddle", - "localizedName": "Saddle", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:salmon", - "unlocalizedName": "item.minecraft.salmon", - "localizedName": "Raw Salmon", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:salmon_bucket", - "unlocalizedName": "item.minecraft.salmon_bucket", - "localizedName": "Bucket of Salmon", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:salmon_spawn_egg", - "unlocalizedName": "item.minecraft.salmon_spawn_egg", - "localizedName": "Salmon Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sand", - "unlocalizedName": "block.minecraft.sand", - "localizedName": "Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sandstone", - "unlocalizedName": "block.minecraft.sandstone", - "localizedName": "Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sandstone_slab", - "unlocalizedName": "block.minecraft.sandstone_slab", - "localizedName": "Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sandstone_stairs", - "unlocalizedName": "block.minecraft.sandstone_stairs", - "localizedName": "Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sandstone_wall", - "unlocalizedName": "block.minecraft.sandstone_wall", - "localizedName": "Sandstone Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:scaffolding", - "unlocalizedName": "block.minecraft.scaffolding", - "localizedName": "Scaffolding", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:scute", - "unlocalizedName": "item.minecraft.scute", - "localizedName": "Scute", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sea_lantern", - "unlocalizedName": "block.minecraft.sea_lantern", - "localizedName": "Sea Lantern", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sea_pickle", - "unlocalizedName": "block.minecraft.sea_pickle", - "localizedName": "Sea Pickle", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:seagrass", - "unlocalizedName": "block.minecraft.seagrass", - "localizedName": "Seagrass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:shears", - "unlocalizedName": "item.minecraft.shears", - "localizedName": "Shears", - "maxDamage": 238, - "maxStackSize": 1 - }, - { - "id": "minecraft:sheep_spawn_egg", - "unlocalizedName": "item.minecraft.sheep_spawn_egg", - "localizedName": "Sheep Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:shield", - "unlocalizedName": "item.minecraft.shield", - "localizedName": "Shield", - "maxDamage": 336, - "maxStackSize": 1 - }, - { - "id": "minecraft:shulker_box", - "unlocalizedName": "block.minecraft.shulker_box", - "localizedName": "Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:shulker_shell", - "unlocalizedName": "item.minecraft.shulker_shell", - "localizedName": "Shulker Shell", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:shulker_spawn_egg", - "unlocalizedName": "item.minecraft.shulker_spawn_egg", - "localizedName": "Shulker Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:silverfish_spawn_egg", - "unlocalizedName": "item.minecraft.silverfish_spawn_egg", - "localizedName": "Silverfish Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:skeleton_horse_spawn_egg", - "unlocalizedName": "item.minecraft.skeleton_horse_spawn_egg", - "localizedName": "Skeleton Horse Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:skeleton_skull", - "unlocalizedName": "block.minecraft.skeleton_skull", - "localizedName": "Skeleton Skull", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:skeleton_spawn_egg", - "unlocalizedName": "item.minecraft.skeleton_spawn_egg", - "localizedName": "Skeleton Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:skull_banner_pattern", - "unlocalizedName": "item.minecraft.skull_banner_pattern", - "localizedName": "Banner Pattern", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:slime_ball", - "unlocalizedName": "item.minecraft.slime_ball", - "localizedName": "Slimeball", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:slime_block", - "unlocalizedName": "block.minecraft.slime_block", - "localizedName": "Slime Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:slime_spawn_egg", - "unlocalizedName": "item.minecraft.slime_spawn_egg", - "localizedName": "Slime Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smithing_table", - "unlocalizedName": "block.minecraft.smithing_table", - "localizedName": "Smithing Table", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smoker", - "unlocalizedName": "block.minecraft.smoker", - "localizedName": "Smoker", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_quartz", - "unlocalizedName": "block.minecraft.smooth_quartz", - "localizedName": "Smooth Quartz", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_quartz_slab", - "unlocalizedName": "block.minecraft.smooth_quartz_slab", - "localizedName": "Smooth Quartz Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_quartz_stairs", - "unlocalizedName": "block.minecraft.smooth_quartz_stairs", - "localizedName": "Smooth Quartz Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_red_sandstone", - "unlocalizedName": "block.minecraft.smooth_red_sandstone", - "localizedName": "Smooth Red Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_red_sandstone_slab", - "unlocalizedName": "block.minecraft.smooth_red_sandstone_slab", - "localizedName": "Smooth Red Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_red_sandstone_stairs", - "unlocalizedName": "block.minecraft.smooth_red_sandstone_stairs", - "localizedName": "Smooth Red Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_sandstone", - "unlocalizedName": "block.minecraft.smooth_sandstone", - "localizedName": "Smooth Sandstone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_sandstone_slab", - "unlocalizedName": "block.minecraft.smooth_sandstone_slab", - "localizedName": "Smooth Sandstone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_sandstone_stairs", - "unlocalizedName": "block.minecraft.smooth_sandstone_stairs", - "localizedName": "Smooth Sandstone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_stone", - "unlocalizedName": "block.minecraft.smooth_stone", - "localizedName": "Smooth Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:smooth_stone_slab", - "unlocalizedName": "block.minecraft.smooth_stone_slab", - "localizedName": "Smooth Stone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:snow", - "unlocalizedName": "block.minecraft.snow", - "localizedName": "Snow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:snow_block", - "unlocalizedName": "block.minecraft.snow_block", - "localizedName": "Snow Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:snowball", - "unlocalizedName": "item.minecraft.snowball", - "localizedName": "Snowball", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:soul_sand", - "unlocalizedName": "block.minecraft.soul_sand", - "localizedName": "Soul Sand", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spawner", - "unlocalizedName": "block.minecraft.spawner", - "localizedName": "Spawner", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spectral_arrow", - "unlocalizedName": "item.minecraft.spectral_arrow", - "localizedName": "Spectral Arrow", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spider_eye", - "unlocalizedName": "item.minecraft.spider_eye", - "localizedName": "Spider Eye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spider_spawn_egg", - "unlocalizedName": "item.minecraft.spider_spawn_egg", - "localizedName": "Spider Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:splash_potion", - "unlocalizedName": "item.minecraft.splash_potion.effect.water", - "localizedName": "Splash Water Bottle", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:sponge", - "unlocalizedName": "block.minecraft.sponge", - "localizedName": "Sponge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_boat", - "unlocalizedName": "item.minecraft.spruce_boat", - "localizedName": "Spruce Boat", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:spruce_button", - "unlocalizedName": "block.minecraft.spruce_button", - "localizedName": "Spruce Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_door", - "unlocalizedName": "block.minecraft.spruce_door", - "localizedName": "Spruce Door", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_fence", - "unlocalizedName": "block.minecraft.spruce_fence", - "localizedName": "Spruce Fence", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_fence_gate", - "unlocalizedName": "block.minecraft.spruce_fence_gate", - "localizedName": "Spruce Fence Gate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_leaves", - "unlocalizedName": "block.minecraft.spruce_leaves", - "localizedName": "Spruce Leaves", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_log", - "unlocalizedName": "block.minecraft.spruce_log", - "localizedName": "Spruce Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_planks", - "unlocalizedName": "block.minecraft.spruce_planks", - "localizedName": "Spruce Planks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_pressure_plate", - "unlocalizedName": "block.minecraft.spruce_pressure_plate", - "localizedName": "Spruce Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_sapling", - "unlocalizedName": "block.minecraft.spruce_sapling", - "localizedName": "Spruce Sapling", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_sign", - "unlocalizedName": "block.minecraft.spruce_sign", - "localizedName": "Spruce Sign", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:spruce_slab", - "unlocalizedName": "block.minecraft.spruce_slab", - "localizedName": "Spruce Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_stairs", - "unlocalizedName": "block.minecraft.spruce_stairs", - "localizedName": "Spruce Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_trapdoor", - "unlocalizedName": "block.minecraft.spruce_trapdoor", - "localizedName": "Spruce Trapdoor", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:spruce_wood", - "unlocalizedName": "block.minecraft.spruce_wood", - "localizedName": "Spruce Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:squid_spawn_egg", - "unlocalizedName": "item.minecraft.squid_spawn_egg", - "localizedName": "Squid Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stick", - "unlocalizedName": "item.minecraft.stick", - "localizedName": "Stick", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sticky_piston", - "unlocalizedName": "block.minecraft.sticky_piston", - "localizedName": "Sticky Piston", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone", - "unlocalizedName": "block.minecraft.stone", - "localizedName": "Stone", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_axe", - "unlocalizedName": "item.minecraft.stone_axe", - "localizedName": "Stone Axe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "id": "minecraft:stone_brick_slab", - "unlocalizedName": "block.minecraft.stone_brick_slab", - "localizedName": "Stone Brick Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_brick_stairs", - "unlocalizedName": "block.minecraft.stone_brick_stairs", - "localizedName": "Stone Brick Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_brick_wall", - "unlocalizedName": "block.minecraft.stone_brick_wall", - "localizedName": "Stone Brick Wall", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_bricks", - "unlocalizedName": "block.minecraft.stone_bricks", - "localizedName": "Stone Bricks", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_button", - "unlocalizedName": "block.minecraft.stone_button", - "localizedName": "Stone Button", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_hoe", - "unlocalizedName": "item.minecraft.stone_hoe", - "localizedName": "Stone Hoe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "id": "minecraft:stone_pickaxe", - "unlocalizedName": "item.minecraft.stone_pickaxe", - "localizedName": "Stone Pickaxe", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "id": "minecraft:stone_pressure_plate", - "unlocalizedName": "block.minecraft.stone_pressure_plate", - "localizedName": "Stone Pressure Plate", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_shovel", - "unlocalizedName": "item.minecraft.stone_shovel", - "localizedName": "Stone Shovel", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "id": "minecraft:stone_slab", - "unlocalizedName": "block.minecraft.stone_slab", - "localizedName": "Stone Slab", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_stairs", - "unlocalizedName": "block.minecraft.stone_stairs", - "localizedName": "Stone Stairs", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stone_sword", - "unlocalizedName": "item.minecraft.stone_sword", - "localizedName": "Stone Sword", - "maxDamage": 131, - "maxStackSize": 1 - }, - { - "id": "minecraft:stonecutter", - "unlocalizedName": "block.minecraft.stonecutter", - "localizedName": "Stonecutter", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stray_spawn_egg", - "unlocalizedName": "item.minecraft.stray_spawn_egg", - "localizedName": "Stray Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:string", - "unlocalizedName": "item.minecraft.string", - "localizedName": "String", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_acacia_log", - "unlocalizedName": "block.minecraft.stripped_acacia_log", - "localizedName": "Stripped Acacia Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_acacia_wood", - "unlocalizedName": "block.minecraft.stripped_acacia_wood", - "localizedName": "Stripped Acacia Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_birch_log", - "unlocalizedName": "block.minecraft.stripped_birch_log", - "localizedName": "Stripped Birch Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_birch_wood", - "unlocalizedName": "block.minecraft.stripped_birch_wood", - "localizedName": "Stripped Birch Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_dark_oak_log", - "unlocalizedName": "block.minecraft.stripped_dark_oak_log", - "localizedName": "Stripped Dark Oak Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_dark_oak_wood", - "unlocalizedName": "block.minecraft.stripped_dark_oak_wood", - "localizedName": "Stripped Dark Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_jungle_log", - "unlocalizedName": "block.minecraft.stripped_jungle_log", - "localizedName": "Stripped Jungle Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_jungle_wood", - "unlocalizedName": "block.minecraft.stripped_jungle_wood", - "localizedName": "Stripped Jungle Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_oak_log", - "unlocalizedName": "block.minecraft.stripped_oak_log", - "localizedName": "Stripped Oak Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_oak_wood", - "unlocalizedName": "block.minecraft.stripped_oak_wood", - "localizedName": "Stripped Oak Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_spruce_log", - "unlocalizedName": "block.minecraft.stripped_spruce_log", - "localizedName": "Stripped Spruce Log", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:stripped_spruce_wood", - "unlocalizedName": "block.minecraft.stripped_spruce_wood", - "localizedName": "Stripped Spruce Wood", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:structure_block", - "unlocalizedName": "block.minecraft.structure_block", - "localizedName": "Structure Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:structure_void", - "unlocalizedName": "block.minecraft.structure_void", - "localizedName": "Structure Void", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sugar", - "unlocalizedName": "item.minecraft.sugar", - "localizedName": "Sugar", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sugar_cane", - "unlocalizedName": "block.minecraft.sugar_cane", - "localizedName": "Sugar Cane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:sunflower", - "unlocalizedName": "block.minecraft.sunflower", - "localizedName": "Sunflower", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:suspicious_stew", - "unlocalizedName": "item.minecraft.suspicious_stew", - "localizedName": "Suspicious Stew", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:sweet_berries", - "unlocalizedName": "item.minecraft.sweet_berries", - "localizedName": "Sweet Berries", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tall_grass", - "unlocalizedName": "block.minecraft.tall_grass", - "localizedName": "Tall Grass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:terracotta", - "unlocalizedName": "block.minecraft.terracotta", - "localizedName": "Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tipped_arrow", - "unlocalizedName": "item.minecraft.tipped_arrow.effect.poison", - "localizedName": "Arrow of Poison", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tnt", - "unlocalizedName": "block.minecraft.tnt", - "localizedName": "TNT", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tnt_minecart", - "unlocalizedName": "item.minecraft.tnt_minecart", - "localizedName": "Minecart with TNT", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:torch", - "unlocalizedName": "block.minecraft.torch", - "localizedName": "Torch", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:totem_of_undying", - "unlocalizedName": "item.minecraft.totem_of_undying", - "localizedName": "Totem of Undying", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:trader_llama_spawn_egg", - "unlocalizedName": "item.minecraft.trader_llama_spawn_egg", - "localizedName": "Trader Llama Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:trapped_chest", - "unlocalizedName": "block.minecraft.trapped_chest", - "localizedName": "Trapped Chest", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:trident", - "unlocalizedName": "item.minecraft.trident", - "localizedName": "Trident", - "maxDamage": 250, - "maxStackSize": 1 - }, - { - "id": "minecraft:tripwire_hook", - "unlocalizedName": "block.minecraft.tripwire_hook", - "localizedName": "Tripwire Hook", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tropical_fish", - "unlocalizedName": "item.minecraft.tropical_fish", - "localizedName": "Tropical Fish", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tropical_fish_bucket", - "unlocalizedName": "item.minecraft.tropical_fish_bucket", - "localizedName": "Bucket of Tropical Fish", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:tropical_fish_spawn_egg", - "unlocalizedName": "item.minecraft.tropical_fish_spawn_egg", - "localizedName": "Tropical Fish Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tube_coral", - "unlocalizedName": "block.minecraft.tube_coral", - "localizedName": "Tube Coral", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tube_coral_block", - "unlocalizedName": "block.minecraft.tube_coral_block", - "localizedName": "Tube Coral Block", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:tube_coral_fan", - "unlocalizedName": "block.minecraft.tube_coral_fan", - "localizedName": "Tube Coral Fan", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:turtle_egg", - "unlocalizedName": "block.minecraft.turtle_egg", - "localizedName": "Turtle Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:turtle_helmet", - "unlocalizedName": "item.minecraft.turtle_helmet", - "localizedName": "Turtle Shell", - "maxDamage": 275, - "maxStackSize": 1 - }, - { - "id": "minecraft:turtle_spawn_egg", - "unlocalizedName": "item.minecraft.turtle_spawn_egg", - "localizedName": "Turtle Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:vex_spawn_egg", - "unlocalizedName": "item.minecraft.vex_spawn_egg", - "localizedName": "Vex Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:villager_spawn_egg", - "unlocalizedName": "item.minecraft.villager_spawn_egg", - "localizedName": "Villager Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:vindicator_spawn_egg", - "unlocalizedName": "item.minecraft.vindicator_spawn_egg", - "localizedName": "Vindicator Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:vine", - "unlocalizedName": "block.minecraft.vine", - "localizedName": "Vines", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wandering_trader_spawn_egg", - "unlocalizedName": "item.minecraft.wandering_trader_spawn_egg", - "localizedName": "Wandering Trader Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:water_bucket", - "unlocalizedName": "item.minecraft.water_bucket", - "localizedName": "Water Bucket", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:wet_sponge", - "unlocalizedName": "block.minecraft.wet_sponge", - "localizedName": "Wet Sponge", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wheat", - "unlocalizedName": "item.minecraft.wheat", - "localizedName": "Wheat", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wheat_seeds", - "unlocalizedName": "item.minecraft.wheat_seeds", - "localizedName": "Wheat Seeds", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_banner", - "unlocalizedName": "block.minecraft.white_banner", - "localizedName": "White Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:white_bed", - "unlocalizedName": "block.minecraft.white_bed", - "localizedName": "White Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:white_carpet", - "unlocalizedName": "block.minecraft.white_carpet", - "localizedName": "White Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_concrete", - "unlocalizedName": "block.minecraft.white_concrete", - "localizedName": "White Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_concrete_powder", - "unlocalizedName": "block.minecraft.white_concrete_powder", - "localizedName": "White Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_dye", - "unlocalizedName": "item.minecraft.white_dye", - "localizedName": "White Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_glazed_terracotta", - "unlocalizedName": "block.minecraft.white_glazed_terracotta", - "localizedName": "White Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_shulker_box", - "unlocalizedName": "block.minecraft.white_shulker_box", - "localizedName": "White Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:white_stained_glass", - "unlocalizedName": "block.minecraft.white_stained_glass", - "localizedName": "White Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_stained_glass_pane", - "unlocalizedName": "block.minecraft.white_stained_glass_pane", - "localizedName": "White Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_terracotta", - "unlocalizedName": "block.minecraft.white_terracotta", - "localizedName": "White Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_tulip", - "unlocalizedName": "block.minecraft.white_tulip", - "localizedName": "White Tulip", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:white_wool", - "unlocalizedName": "block.minecraft.white_wool", - "localizedName": "White Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:witch_spawn_egg", - "unlocalizedName": "item.minecraft.witch_spawn_egg", - "localizedName": "Witch Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wither_rose", - "unlocalizedName": "block.minecraft.wither_rose", - "localizedName": "Wither Rose", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wither_skeleton_skull", - "unlocalizedName": "block.minecraft.wither_skeleton_skull", - "localizedName": "Wither Skeleton Skull", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wither_skeleton_spawn_egg", - "unlocalizedName": "item.minecraft.wither_skeleton_spawn_egg", - "localizedName": "Wither Skeleton Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wolf_spawn_egg", - "unlocalizedName": "item.minecraft.wolf_spawn_egg", - "localizedName": "Wolf Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:wooden_axe", - "unlocalizedName": "item.minecraft.wooden_axe", - "localizedName": "Wooden Axe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "id": "minecraft:wooden_hoe", - "unlocalizedName": "item.minecraft.wooden_hoe", - "localizedName": "Wooden Hoe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "id": "minecraft:wooden_pickaxe", - "unlocalizedName": "item.minecraft.wooden_pickaxe", - "localizedName": "Wooden Pickaxe", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "id": "minecraft:wooden_shovel", - "unlocalizedName": "item.minecraft.wooden_shovel", - "localizedName": "Wooden Shovel", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "id": "minecraft:wooden_sword", - "unlocalizedName": "item.minecraft.wooden_sword", - "localizedName": "Wooden Sword", - "maxDamage": 59, - "maxStackSize": 1 - }, - { - "id": "minecraft:writable_book", - "unlocalizedName": "item.minecraft.writable_book", - "localizedName": "Book and Quill", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:written_book", - "unlocalizedName": "item.minecraft.written_book", - "localizedName": "Written Book", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:yellow_banner", - "unlocalizedName": "block.minecraft.yellow_banner", - "localizedName": "Yellow Banner", - "maxDamage": 0, - "maxStackSize": 16 - }, - { - "id": "minecraft:yellow_bed", - "unlocalizedName": "block.minecraft.yellow_bed", - "localizedName": "Yellow Bed", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:yellow_carpet", - "unlocalizedName": "block.minecraft.yellow_carpet", - "localizedName": "Yellow Carpet", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_concrete", - "unlocalizedName": "block.minecraft.yellow_concrete", - "localizedName": "Yellow Concrete", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_concrete_powder", - "unlocalizedName": "block.minecraft.yellow_concrete_powder", - "localizedName": "Yellow Concrete Powder", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_dye", - "unlocalizedName": "item.minecraft.yellow_dye", - "localizedName": "Yellow Dye", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_glazed_terracotta", - "unlocalizedName": "block.minecraft.yellow_glazed_terracotta", - "localizedName": "Yellow Glazed Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_shulker_box", - "unlocalizedName": "block.minecraft.yellow_shulker_box", - "localizedName": "Yellow Shulker Box", - "maxDamage": 0, - "maxStackSize": 1 - }, - { - "id": "minecraft:yellow_stained_glass", - "unlocalizedName": "block.minecraft.yellow_stained_glass", - "localizedName": "Yellow Stained Glass", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_stained_glass_pane", - "unlocalizedName": "block.minecraft.yellow_stained_glass_pane", - "localizedName": "Yellow Stained Glass Pane", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_terracotta", - "unlocalizedName": "block.minecraft.yellow_terracotta", - "localizedName": "Yellow Terracotta", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:yellow_wool", - "unlocalizedName": "block.minecraft.yellow_wool", - "localizedName": "Yellow Wool", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:zombie_head", - "unlocalizedName": "block.minecraft.zombie_head", - "localizedName": "Zombie Head", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:zombie_horse_spawn_egg", - "unlocalizedName": "item.minecraft.zombie_horse_spawn_egg", - "localizedName": "Zombie Horse Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:zombie_pigman_spawn_egg", - "unlocalizedName": "item.minecraft.zombie_pigman_spawn_egg", - "localizedName": "Zombie Pigman Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:zombie_spawn_egg", - "unlocalizedName": "item.minecraft.zombie_spawn_egg", - "localizedName": "Zombie Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - }, - { - "id": "minecraft:zombie_villager_spawn_egg", - "unlocalizedName": "item.minecraft.zombie_villager_spawn_egg", - "localizedName": "Zombie Villager Spawn Egg", - "maxDamage": 0, - "maxStackSize": 64 - } -] \ No newline at end of file +[{"id":"minecraft:acacia_boat","unlocalizedName":"item.minecraft.acacia_boat","localizedName":"Acacia Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:acacia_button","unlocalizedName":"block.minecraft.acacia_button","localizedName":"Acacia Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_door","unlocalizedName":"block.minecraft.acacia_door","localizedName":"Acacia Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_fence","unlocalizedName":"block.minecraft.acacia_fence","localizedName":"Acacia Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_fence_gate","unlocalizedName":"block.minecraft.acacia_fence_gate","localizedName":"Acacia Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_leaves","unlocalizedName":"block.minecraft.acacia_leaves","localizedName":"Acacia Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_log","unlocalizedName":"block.minecraft.acacia_log","localizedName":"Acacia Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_planks","unlocalizedName":"block.minecraft.acacia_planks","localizedName":"Acacia Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_pressure_plate","unlocalizedName":"block.minecraft.acacia_pressure_plate","localizedName":"Acacia Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_sapling","unlocalizedName":"block.minecraft.acacia_sapling","localizedName":"Acacia Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_sign","unlocalizedName":"block.minecraft.acacia_sign","localizedName":"Acacia Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:acacia_slab","unlocalizedName":"block.minecraft.acacia_slab","localizedName":"Acacia Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_stairs","unlocalizedName":"block.minecraft.acacia_stairs","localizedName":"Acacia Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_trapdoor","unlocalizedName":"block.minecraft.acacia_trapdoor","localizedName":"Acacia Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:acacia_wood","unlocalizedName":"block.minecraft.acacia_wood","localizedName":"Acacia Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:activator_rail","unlocalizedName":"block.minecraft.activator_rail","localizedName":"Activator Rail","maxDamage":0,"maxStackSize":64},{"id":"minecraft:air","unlocalizedName":"block.minecraft.air","localizedName":"Air","maxDamage":0,"maxStackSize":64},{"id":"minecraft:allium","unlocalizedName":"block.minecraft.allium","localizedName":"Allium","maxDamage":0,"maxStackSize":64},{"id":"minecraft:andesite","unlocalizedName":"block.minecraft.andesite","localizedName":"Andesite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:andesite_slab","unlocalizedName":"block.minecraft.andesite_slab","localizedName":"Andesite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:andesite_stairs","unlocalizedName":"block.minecraft.andesite_stairs","localizedName":"Andesite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:andesite_wall","unlocalizedName":"block.minecraft.andesite_wall","localizedName":"Andesite Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:anvil","unlocalizedName":"block.minecraft.anvil","localizedName":"Anvil","maxDamage":0,"maxStackSize":64},{"id":"minecraft:apple","unlocalizedName":"item.minecraft.apple","localizedName":"Apple","maxDamage":0,"maxStackSize":64},{"id":"minecraft:armor_stand","unlocalizedName":"item.minecraft.armor_stand","localizedName":"Armor Stand","maxDamage":0,"maxStackSize":16},{"id":"minecraft:arrow","unlocalizedName":"item.minecraft.arrow","localizedName":"Arrow","maxDamage":0,"maxStackSize":64},{"id":"minecraft:azure_bluet","unlocalizedName":"block.minecraft.azure_bluet","localizedName":"Azure Bluet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:baked_potato","unlocalizedName":"item.minecraft.baked_potato","localizedName":"Baked Potato","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bamboo","unlocalizedName":"block.minecraft.bamboo","localizedName":"Bamboo","maxDamage":0,"maxStackSize":64},{"id":"minecraft:barrel","unlocalizedName":"block.minecraft.barrel","localizedName":"Barrel","maxDamage":0,"maxStackSize":64},{"id":"minecraft:barrier","unlocalizedName":"block.minecraft.barrier","localizedName":"Barrier","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bat_spawn_egg","unlocalizedName":"item.minecraft.bat_spawn_egg","localizedName":"Bat Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beacon","unlocalizedName":"block.minecraft.beacon","localizedName":"Beacon","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bedrock","unlocalizedName":"block.minecraft.bedrock","localizedName":"Bedrock","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bee_nest","unlocalizedName":"block.minecraft.bee_nest","localizedName":"Bee Nest","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bee_spawn_egg","unlocalizedName":"item.minecraft.bee_spawn_egg","localizedName":"Bee Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beef","unlocalizedName":"item.minecraft.beef","localizedName":"Raw Beef","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beehive","unlocalizedName":"block.minecraft.beehive","localizedName":"Beehive","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beetroot","unlocalizedName":"item.minecraft.beetroot","localizedName":"Beetroot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beetroot_seeds","unlocalizedName":"item.minecraft.beetroot_seeds","localizedName":"Beetroot Seeds","maxDamage":0,"maxStackSize":64},{"id":"minecraft:beetroot_soup","unlocalizedName":"item.minecraft.beetroot_soup","localizedName":"Beetroot Soup","maxDamage":0,"maxStackSize":1},{"id":"minecraft:bell","unlocalizedName":"block.minecraft.bell","localizedName":"Bell","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_boat","unlocalizedName":"item.minecraft.birch_boat","localizedName":"Birch Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:birch_button","unlocalizedName":"block.minecraft.birch_button","localizedName":"Birch Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_door","unlocalizedName":"block.minecraft.birch_door","localizedName":"Birch Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_fence","unlocalizedName":"block.minecraft.birch_fence","localizedName":"Birch Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_fence_gate","unlocalizedName":"block.minecraft.birch_fence_gate","localizedName":"Birch Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_leaves","unlocalizedName":"block.minecraft.birch_leaves","localizedName":"Birch Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_log","unlocalizedName":"block.minecraft.birch_log","localizedName":"Birch Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_planks","unlocalizedName":"block.minecraft.birch_planks","localizedName":"Birch Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_pressure_plate","unlocalizedName":"block.minecraft.birch_pressure_plate","localizedName":"Birch Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_sapling","unlocalizedName":"block.minecraft.birch_sapling","localizedName":"Birch Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_sign","unlocalizedName":"block.minecraft.birch_sign","localizedName":"Birch Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:birch_slab","unlocalizedName":"block.minecraft.birch_slab","localizedName":"Birch Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_stairs","unlocalizedName":"block.minecraft.birch_stairs","localizedName":"Birch Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_trapdoor","unlocalizedName":"block.minecraft.birch_trapdoor","localizedName":"Birch Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:birch_wood","unlocalizedName":"block.minecraft.birch_wood","localizedName":"Birch Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_banner","unlocalizedName":"block.minecraft.black_banner","localizedName":"Black Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:black_bed","unlocalizedName":"block.minecraft.black_bed","localizedName":"Black Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:black_carpet","unlocalizedName":"block.minecraft.black_carpet","localizedName":"Black Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_concrete","unlocalizedName":"block.minecraft.black_concrete","localizedName":"Black Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_concrete_powder","unlocalizedName":"block.minecraft.black_concrete_powder","localizedName":"Black Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_dye","unlocalizedName":"item.minecraft.black_dye","localizedName":"Black Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_glazed_terracotta","unlocalizedName":"block.minecraft.black_glazed_terracotta","localizedName":"Black Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_shulker_box","unlocalizedName":"block.minecraft.black_shulker_box","localizedName":"Black Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:black_stained_glass","unlocalizedName":"block.minecraft.black_stained_glass","localizedName":"Black Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_stained_glass_pane","unlocalizedName":"block.minecraft.black_stained_glass_pane","localizedName":"Black Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_terracotta","unlocalizedName":"block.minecraft.black_terracotta","localizedName":"Black Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:black_wool","unlocalizedName":"block.minecraft.black_wool","localizedName":"Black Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blast_furnace","unlocalizedName":"block.minecraft.blast_furnace","localizedName":"Blast Furnace","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blaze_powder","unlocalizedName":"item.minecraft.blaze_powder","localizedName":"Blaze Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blaze_rod","unlocalizedName":"item.minecraft.blaze_rod","localizedName":"Blaze Rod","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blaze_spawn_egg","unlocalizedName":"item.minecraft.blaze_spawn_egg","localizedName":"Blaze Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_banner","unlocalizedName":"block.minecraft.blue_banner","localizedName":"Blue Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:blue_bed","unlocalizedName":"block.minecraft.blue_bed","localizedName":"Blue Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:blue_carpet","unlocalizedName":"block.minecraft.blue_carpet","localizedName":"Blue Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_concrete","unlocalizedName":"block.minecraft.blue_concrete","localizedName":"Blue Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_concrete_powder","unlocalizedName":"block.minecraft.blue_concrete_powder","localizedName":"Blue Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_dye","unlocalizedName":"item.minecraft.blue_dye","localizedName":"Blue Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_glazed_terracotta","unlocalizedName":"block.minecraft.blue_glazed_terracotta","localizedName":"Blue Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_ice","unlocalizedName":"block.minecraft.blue_ice","localizedName":"Blue Ice","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_orchid","unlocalizedName":"block.minecraft.blue_orchid","localizedName":"Blue Orchid","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_shulker_box","unlocalizedName":"block.minecraft.blue_shulker_box","localizedName":"Blue Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:blue_stained_glass","unlocalizedName":"block.minecraft.blue_stained_glass","localizedName":"Blue Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_stained_glass_pane","unlocalizedName":"block.minecraft.blue_stained_glass_pane","localizedName":"Blue Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_terracotta","unlocalizedName":"block.minecraft.blue_terracotta","localizedName":"Blue Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:blue_wool","unlocalizedName":"block.minecraft.blue_wool","localizedName":"Blue Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bone","unlocalizedName":"item.minecraft.bone","localizedName":"Bone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bone_block","unlocalizedName":"block.minecraft.bone_block","localizedName":"Bone Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bone_meal","unlocalizedName":"item.minecraft.bone_meal","localizedName":"Bone Meal","maxDamage":0,"maxStackSize":64},{"id":"minecraft:book","unlocalizedName":"item.minecraft.book","localizedName":"Book","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bookshelf","unlocalizedName":"block.minecraft.bookshelf","localizedName":"Bookshelf","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bow","unlocalizedName":"item.minecraft.bow","localizedName":"Bow","maxDamage":384,"maxStackSize":1},{"id":"minecraft:bowl","unlocalizedName":"item.minecraft.bowl","localizedName":"Bowl","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brain_coral","unlocalizedName":"block.minecraft.brain_coral","localizedName":"Brain Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brain_coral_block","unlocalizedName":"block.minecraft.brain_coral_block","localizedName":"Brain Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brain_coral_fan","unlocalizedName":"block.minecraft.brain_coral_fan","localizedName":"Brain Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bread","unlocalizedName":"item.minecraft.bread","localizedName":"Bread","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brewing_stand","unlocalizedName":"block.minecraft.brewing_stand","localizedName":"Brewing Stand","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brick","unlocalizedName":"item.minecraft.brick","localizedName":"Brick","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brick_slab","unlocalizedName":"block.minecraft.brick_slab","localizedName":"Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brick_stairs","unlocalizedName":"block.minecraft.brick_stairs","localizedName":"Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brick_wall","unlocalizedName":"block.minecraft.brick_wall","localizedName":"Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bricks","unlocalizedName":"block.minecraft.bricks","localizedName":"Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_banner","unlocalizedName":"block.minecraft.brown_banner","localizedName":"Brown Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:brown_bed","unlocalizedName":"block.minecraft.brown_bed","localizedName":"Brown Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:brown_carpet","unlocalizedName":"block.minecraft.brown_carpet","localizedName":"Brown Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_concrete","unlocalizedName":"block.minecraft.brown_concrete","localizedName":"Brown Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_concrete_powder","unlocalizedName":"block.minecraft.brown_concrete_powder","localizedName":"Brown Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_dye","unlocalizedName":"item.minecraft.brown_dye","localizedName":"Brown Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_glazed_terracotta","unlocalizedName":"block.minecraft.brown_glazed_terracotta","localizedName":"Brown Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_mushroom","unlocalizedName":"block.minecraft.brown_mushroom","localizedName":"Brown Mushroom","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_mushroom_block","unlocalizedName":"block.minecraft.brown_mushroom_block","localizedName":"Brown Mushroom Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_shulker_box","unlocalizedName":"block.minecraft.brown_shulker_box","localizedName":"Brown Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:brown_stained_glass","unlocalizedName":"block.minecraft.brown_stained_glass","localizedName":"Brown Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_stained_glass_pane","unlocalizedName":"block.minecraft.brown_stained_glass_pane","localizedName":"Brown Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_terracotta","unlocalizedName":"block.minecraft.brown_terracotta","localizedName":"Brown Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:brown_wool","unlocalizedName":"block.minecraft.brown_wool","localizedName":"Brown Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bubble_coral","unlocalizedName":"block.minecraft.bubble_coral","localizedName":"Bubble Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bubble_coral_block","unlocalizedName":"block.minecraft.bubble_coral_block","localizedName":"Bubble Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bubble_coral_fan","unlocalizedName":"block.minecraft.bubble_coral_fan","localizedName":"Bubble Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:bucket","unlocalizedName":"item.minecraft.bucket","localizedName":"Bucket","maxDamage":0,"maxStackSize":16},{"id":"minecraft:cactus","unlocalizedName":"block.minecraft.cactus","localizedName":"Cactus","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cake","unlocalizedName":"block.minecraft.cake","localizedName":"Cake","maxDamage":0,"maxStackSize":1},{"id":"minecraft:campfire","unlocalizedName":"block.minecraft.campfire","localizedName":"Campfire","maxDamage":0,"maxStackSize":64},{"id":"minecraft:carrot","unlocalizedName":"item.minecraft.carrot","localizedName":"Carrot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:carrot_on_a_stick","unlocalizedName":"item.minecraft.carrot_on_a_stick","localizedName":"Carrot on a Stick","maxDamage":25,"maxStackSize":1},{"id":"minecraft:cartography_table","unlocalizedName":"block.minecraft.cartography_table","localizedName":"Cartography Table","maxDamage":0,"maxStackSize":64},{"id":"minecraft:carved_pumpkin","unlocalizedName":"block.minecraft.carved_pumpkin","localizedName":"Carved Pumpkin","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cat_spawn_egg","unlocalizedName":"item.minecraft.cat_spawn_egg","localizedName":"Cat Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cauldron","unlocalizedName":"block.minecraft.cauldron","localizedName":"Cauldron","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cave_spider_spawn_egg","unlocalizedName":"item.minecraft.cave_spider_spawn_egg","localizedName":"Cave Spider Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chain_command_block","unlocalizedName":"block.minecraft.chain_command_block","localizedName":"Chain Command Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chainmail_boots","unlocalizedName":"item.minecraft.chainmail_boots","localizedName":"Chainmail Boots","maxDamage":195,"maxStackSize":1},{"id":"minecraft:chainmail_chestplate","unlocalizedName":"item.minecraft.chainmail_chestplate","localizedName":"Chainmail Chestplate","maxDamage":240,"maxStackSize":1},{"id":"minecraft:chainmail_helmet","unlocalizedName":"item.minecraft.chainmail_helmet","localizedName":"Chainmail Helmet","maxDamage":165,"maxStackSize":1},{"id":"minecraft:chainmail_leggings","unlocalizedName":"item.minecraft.chainmail_leggings","localizedName":"Chainmail Leggings","maxDamage":225,"maxStackSize":1},{"id":"minecraft:charcoal","unlocalizedName":"item.minecraft.charcoal","localizedName":"Charcoal","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chest","unlocalizedName":"block.minecraft.chest","localizedName":"Chest","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chest_minecart","unlocalizedName":"item.minecraft.chest_minecart","localizedName":"Minecart with Chest","maxDamage":0,"maxStackSize":1},{"id":"minecraft:chicken","unlocalizedName":"item.minecraft.chicken","localizedName":"Raw Chicken","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chicken_spawn_egg","unlocalizedName":"item.minecraft.chicken_spawn_egg","localizedName":"Chicken Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chipped_anvil","unlocalizedName":"block.minecraft.chipped_anvil","localizedName":"Chipped Anvil","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chiseled_quartz_block","unlocalizedName":"block.minecraft.chiseled_quartz_block","localizedName":"Chiseled Quartz Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chiseled_red_sandstone","unlocalizedName":"block.minecraft.chiseled_red_sandstone","localizedName":"Chiseled Red Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chiseled_sandstone","unlocalizedName":"block.minecraft.chiseled_sandstone","localizedName":"Chiseled Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chiseled_stone_bricks","unlocalizedName":"block.minecraft.chiseled_stone_bricks","localizedName":"Chiseled Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chorus_flower","unlocalizedName":"block.minecraft.chorus_flower","localizedName":"Chorus Flower","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chorus_fruit","unlocalizedName":"item.minecraft.chorus_fruit","localizedName":"Chorus Fruit","maxDamage":0,"maxStackSize":64},{"id":"minecraft:chorus_plant","unlocalizedName":"block.minecraft.chorus_plant","localizedName":"Chorus Plant","maxDamage":0,"maxStackSize":64},{"id":"minecraft:clay","unlocalizedName":"block.minecraft.clay","localizedName":"Clay","maxDamage":0,"maxStackSize":64},{"id":"minecraft:clay_ball","unlocalizedName":"item.minecraft.clay_ball","localizedName":"Clay","maxDamage":0,"maxStackSize":64},{"id":"minecraft:clock","unlocalizedName":"item.minecraft.clock","localizedName":"Clock","maxDamage":0,"maxStackSize":64},{"id":"minecraft:coal","unlocalizedName":"item.minecraft.coal","localizedName":"Coal","maxDamage":0,"maxStackSize":64},{"id":"minecraft:coal_block","unlocalizedName":"block.minecraft.coal_block","localizedName":"Block of Coal","maxDamage":0,"maxStackSize":64},{"id":"minecraft:coal_ore","unlocalizedName":"block.minecraft.coal_ore","localizedName":"Coal Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:coarse_dirt","unlocalizedName":"block.minecraft.coarse_dirt","localizedName":"Coarse Dirt","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cobblestone","unlocalizedName":"block.minecraft.cobblestone","localizedName":"Cobblestone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cobblestone_slab","unlocalizedName":"block.minecraft.cobblestone_slab","localizedName":"Cobblestone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cobblestone_stairs","unlocalizedName":"block.minecraft.cobblestone_stairs","localizedName":"Cobblestone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cobblestone_wall","unlocalizedName":"block.minecraft.cobblestone_wall","localizedName":"Cobblestone Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cobweb","unlocalizedName":"block.minecraft.cobweb","localizedName":"Cobweb","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cocoa_beans","unlocalizedName":"item.minecraft.cocoa_beans","localizedName":"Cocoa Beans","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cod","unlocalizedName":"item.minecraft.cod","localizedName":"Raw Cod","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cod_bucket","unlocalizedName":"item.minecraft.cod_bucket","localizedName":"Bucket of Cod","maxDamage":0,"maxStackSize":1},{"id":"minecraft:cod_spawn_egg","unlocalizedName":"item.minecraft.cod_spawn_egg","localizedName":"Cod Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:command_block","unlocalizedName":"block.minecraft.command_block","localizedName":"Command Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:command_block_minecart","unlocalizedName":"item.minecraft.command_block_minecart","localizedName":"Minecart with Command Block","maxDamage":0,"maxStackSize":1},{"id":"minecraft:comparator","unlocalizedName":"block.minecraft.comparator","localizedName":"Redstone Comparator","maxDamage":0,"maxStackSize":64},{"id":"minecraft:compass","unlocalizedName":"item.minecraft.compass","localizedName":"Compass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:composter","unlocalizedName":"block.minecraft.composter","localizedName":"Composter","maxDamage":0,"maxStackSize":64},{"id":"minecraft:conduit","unlocalizedName":"block.minecraft.conduit","localizedName":"Conduit","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_beef","unlocalizedName":"item.minecraft.cooked_beef","localizedName":"Steak","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_chicken","unlocalizedName":"item.minecraft.cooked_chicken","localizedName":"Cooked Chicken","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_cod","unlocalizedName":"item.minecraft.cooked_cod","localizedName":"Cooked Cod","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_mutton","unlocalizedName":"item.minecraft.cooked_mutton","localizedName":"Cooked Mutton","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_porkchop","unlocalizedName":"item.minecraft.cooked_porkchop","localizedName":"Cooked Porkchop","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_rabbit","unlocalizedName":"item.minecraft.cooked_rabbit","localizedName":"Cooked Rabbit","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cooked_salmon","unlocalizedName":"item.minecraft.cooked_salmon","localizedName":"Cooked Salmon","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cookie","unlocalizedName":"item.minecraft.cookie","localizedName":"Cookie","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cornflower","unlocalizedName":"block.minecraft.cornflower","localizedName":"Cornflower","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cow_spawn_egg","unlocalizedName":"item.minecraft.cow_spawn_egg","localizedName":"Cow Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cracked_stone_bricks","unlocalizedName":"block.minecraft.cracked_stone_bricks","localizedName":"Cracked Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:crafting_table","unlocalizedName":"block.minecraft.crafting_table","localizedName":"Crafting Table","maxDamage":0,"maxStackSize":64},{"id":"minecraft:creeper_banner_pattern","unlocalizedName":"item.minecraft.creeper_banner_pattern","localizedName":"Banner Pattern","maxDamage":0,"maxStackSize":1},{"id":"minecraft:creeper_head","unlocalizedName":"block.minecraft.creeper_head","localizedName":"Creeper Head","maxDamage":0,"maxStackSize":64},{"id":"minecraft:creeper_spawn_egg","unlocalizedName":"item.minecraft.creeper_spawn_egg","localizedName":"Creeper Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:crossbow","unlocalizedName":"item.minecraft.crossbow","localizedName":"Crossbow","maxDamage":326,"maxStackSize":1},{"id":"minecraft:cut_red_sandstone","unlocalizedName":"block.minecraft.cut_red_sandstone","localizedName":"Cut Red Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cut_red_sandstone_slab","unlocalizedName":"block.minecraft.cut_red_sandstone_slab","localizedName":"Cut Red Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cut_sandstone","unlocalizedName":"block.minecraft.cut_sandstone","localizedName":"Cut Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cut_sandstone_slab","unlocalizedName":"block.minecraft.cut_sandstone_slab","localizedName":"Cut Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_banner","unlocalizedName":"block.minecraft.cyan_banner","localizedName":"Cyan Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:cyan_bed","unlocalizedName":"block.minecraft.cyan_bed","localizedName":"Cyan Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:cyan_carpet","unlocalizedName":"block.minecraft.cyan_carpet","localizedName":"Cyan Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_concrete","unlocalizedName":"block.minecraft.cyan_concrete","localizedName":"Cyan Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_concrete_powder","unlocalizedName":"block.minecraft.cyan_concrete_powder","localizedName":"Cyan Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_dye","unlocalizedName":"item.minecraft.cyan_dye","localizedName":"Cyan Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_glazed_terracotta","unlocalizedName":"block.minecraft.cyan_glazed_terracotta","localizedName":"Cyan Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_shulker_box","unlocalizedName":"block.minecraft.cyan_shulker_box","localizedName":"Cyan Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:cyan_stained_glass","unlocalizedName":"block.minecraft.cyan_stained_glass","localizedName":"Cyan Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_stained_glass_pane","unlocalizedName":"block.minecraft.cyan_stained_glass_pane","localizedName":"Cyan Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_terracotta","unlocalizedName":"block.minecraft.cyan_terracotta","localizedName":"Cyan Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:cyan_wool","unlocalizedName":"block.minecraft.cyan_wool","localizedName":"Cyan Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:damaged_anvil","unlocalizedName":"block.minecraft.damaged_anvil","localizedName":"Damaged Anvil","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dandelion","unlocalizedName":"block.minecraft.dandelion","localizedName":"Dandelion","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_boat","unlocalizedName":"item.minecraft.dark_oak_boat","localizedName":"Dark Oak Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:dark_oak_button","unlocalizedName":"block.minecraft.dark_oak_button","localizedName":"Dark Oak Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_door","unlocalizedName":"block.minecraft.dark_oak_door","localizedName":"Dark Oak Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_fence","unlocalizedName":"block.minecraft.dark_oak_fence","localizedName":"Dark Oak Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_fence_gate","unlocalizedName":"block.minecraft.dark_oak_fence_gate","localizedName":"Dark Oak Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_leaves","unlocalizedName":"block.minecraft.dark_oak_leaves","localizedName":"Dark Oak Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_log","unlocalizedName":"block.minecraft.dark_oak_log","localizedName":"Dark Oak Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_planks","unlocalizedName":"block.minecraft.dark_oak_planks","localizedName":"Dark Oak Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_pressure_plate","unlocalizedName":"block.minecraft.dark_oak_pressure_plate","localizedName":"Dark Oak Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_sapling","unlocalizedName":"block.minecraft.dark_oak_sapling","localizedName":"Dark Oak Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_sign","unlocalizedName":"block.minecraft.dark_oak_sign","localizedName":"Dark Oak Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:dark_oak_slab","unlocalizedName":"block.minecraft.dark_oak_slab","localizedName":"Dark Oak Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_stairs","unlocalizedName":"block.minecraft.dark_oak_stairs","localizedName":"Dark Oak Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_trapdoor","unlocalizedName":"block.minecraft.dark_oak_trapdoor","localizedName":"Dark Oak Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_oak_wood","unlocalizedName":"block.minecraft.dark_oak_wood","localizedName":"Dark Oak Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_prismarine","unlocalizedName":"block.minecraft.dark_prismarine","localizedName":"Dark Prismarine","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_prismarine_slab","unlocalizedName":"block.minecraft.dark_prismarine_slab","localizedName":"Dark Prismarine Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dark_prismarine_stairs","unlocalizedName":"block.minecraft.dark_prismarine_stairs","localizedName":"Dark Prismarine Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:daylight_detector","unlocalizedName":"block.minecraft.daylight_detector","localizedName":"Daylight Detector","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_brain_coral","unlocalizedName":"block.minecraft.dead_brain_coral","localizedName":"Dead Brain Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_brain_coral_block","unlocalizedName":"block.minecraft.dead_brain_coral_block","localizedName":"Dead Brain Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_brain_coral_fan","unlocalizedName":"block.minecraft.dead_brain_coral_fan","localizedName":"Dead Brain Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_bubble_coral","unlocalizedName":"block.minecraft.dead_bubble_coral","localizedName":"Dead Bubble Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_bubble_coral_block","unlocalizedName":"block.minecraft.dead_bubble_coral_block","localizedName":"Dead Bubble Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_bubble_coral_fan","unlocalizedName":"block.minecraft.dead_bubble_coral_fan","localizedName":"Dead Bubble Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_bush","unlocalizedName":"block.minecraft.dead_bush","localizedName":"Dead Bush","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_fire_coral","unlocalizedName":"block.minecraft.dead_fire_coral","localizedName":"Dead Fire Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_fire_coral_block","unlocalizedName":"block.minecraft.dead_fire_coral_block","localizedName":"Dead Fire Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_fire_coral_fan","unlocalizedName":"block.minecraft.dead_fire_coral_fan","localizedName":"Dead Fire Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_horn_coral","unlocalizedName":"block.minecraft.dead_horn_coral","localizedName":"Dead Horn Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_horn_coral_block","unlocalizedName":"block.minecraft.dead_horn_coral_block","localizedName":"Dead Horn Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_horn_coral_fan","unlocalizedName":"block.minecraft.dead_horn_coral_fan","localizedName":"Dead Horn Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_tube_coral","unlocalizedName":"block.minecraft.dead_tube_coral","localizedName":"Dead Tube Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_tube_coral_block","unlocalizedName":"block.minecraft.dead_tube_coral_block","localizedName":"Dead Tube Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dead_tube_coral_fan","unlocalizedName":"block.minecraft.dead_tube_coral_fan","localizedName":"Dead Tube Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:debug_stick","unlocalizedName":"item.minecraft.debug_stick","localizedName":"Debug Stick","maxDamage":0,"maxStackSize":1},{"id":"minecraft:detector_rail","unlocalizedName":"block.minecraft.detector_rail","localizedName":"Detector Rail","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diamond","unlocalizedName":"item.minecraft.diamond","localizedName":"Diamond","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diamond_axe","unlocalizedName":"item.minecraft.diamond_axe","localizedName":"Diamond Axe","maxDamage":1561,"maxStackSize":1},{"id":"minecraft:diamond_block","unlocalizedName":"block.minecraft.diamond_block","localizedName":"Block of Diamond","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diamond_boots","unlocalizedName":"item.minecraft.diamond_boots","localizedName":"Diamond Boots","maxDamage":429,"maxStackSize":1},{"id":"minecraft:diamond_chestplate","unlocalizedName":"item.minecraft.diamond_chestplate","localizedName":"Diamond Chestplate","maxDamage":528,"maxStackSize":1},{"id":"minecraft:diamond_helmet","unlocalizedName":"item.minecraft.diamond_helmet","localizedName":"Diamond Helmet","maxDamage":363,"maxStackSize":1},{"id":"minecraft:diamond_hoe","unlocalizedName":"item.minecraft.diamond_hoe","localizedName":"Diamond Hoe","maxDamage":1561,"maxStackSize":1},{"id":"minecraft:diamond_horse_armor","unlocalizedName":"item.minecraft.diamond_horse_armor","localizedName":"Diamond Horse Armor","maxDamage":0,"maxStackSize":1},{"id":"minecraft:diamond_leggings","unlocalizedName":"item.minecraft.diamond_leggings","localizedName":"Diamond Leggings","maxDamage":495,"maxStackSize":1},{"id":"minecraft:diamond_ore","unlocalizedName":"block.minecraft.diamond_ore","localizedName":"Diamond Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diamond_pickaxe","unlocalizedName":"item.minecraft.diamond_pickaxe","localizedName":"Diamond Pickaxe","maxDamage":1561,"maxStackSize":1},{"id":"minecraft:diamond_shovel","unlocalizedName":"item.minecraft.diamond_shovel","localizedName":"Diamond Shovel","maxDamage":1561,"maxStackSize":1},{"id":"minecraft:diamond_sword","unlocalizedName":"item.minecraft.diamond_sword","localizedName":"Diamond Sword","maxDamage":1561,"maxStackSize":1},{"id":"minecraft:diorite","unlocalizedName":"block.minecraft.diorite","localizedName":"Diorite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diorite_slab","unlocalizedName":"block.minecraft.diorite_slab","localizedName":"Diorite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diorite_stairs","unlocalizedName":"block.minecraft.diorite_stairs","localizedName":"Diorite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:diorite_wall","unlocalizedName":"block.minecraft.diorite_wall","localizedName":"Diorite Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dirt","unlocalizedName":"block.minecraft.dirt","localizedName":"Dirt","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dispenser","unlocalizedName":"block.minecraft.dispenser","localizedName":"Dispenser","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dolphin_spawn_egg","unlocalizedName":"item.minecraft.dolphin_spawn_egg","localizedName":"Dolphin Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:donkey_spawn_egg","unlocalizedName":"item.minecraft.donkey_spawn_egg","localizedName":"Donkey Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dragon_breath","unlocalizedName":"item.minecraft.dragon_breath","localizedName":"Dragon's Breath","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dragon_egg","unlocalizedName":"block.minecraft.dragon_egg","localizedName":"Dragon Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dragon_head","unlocalizedName":"block.minecraft.dragon_head","localizedName":"Dragon Head","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dried_kelp","unlocalizedName":"item.minecraft.dried_kelp","localizedName":"Dried Kelp","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dried_kelp_block","unlocalizedName":"block.minecraft.dried_kelp_block","localizedName":"Dried Kelp Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:dropper","unlocalizedName":"block.minecraft.dropper","localizedName":"Dropper","maxDamage":0,"maxStackSize":64},{"id":"minecraft:drowned_spawn_egg","unlocalizedName":"item.minecraft.drowned_spawn_egg","localizedName":"Drowned Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:egg","unlocalizedName":"item.minecraft.egg","localizedName":"Egg","maxDamage":0,"maxStackSize":16},{"id":"minecraft:elder_guardian_spawn_egg","unlocalizedName":"item.minecraft.elder_guardian_spawn_egg","localizedName":"Elder Guardian Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:elytra","unlocalizedName":"item.minecraft.elytra","localizedName":"Elytra","maxDamage":432,"maxStackSize":1},{"id":"minecraft:emerald","unlocalizedName":"item.minecraft.emerald","localizedName":"Emerald","maxDamage":0,"maxStackSize":64},{"id":"minecraft:emerald_block","unlocalizedName":"block.minecraft.emerald_block","localizedName":"Block of Emerald","maxDamage":0,"maxStackSize":64},{"id":"minecraft:emerald_ore","unlocalizedName":"block.minecraft.emerald_ore","localizedName":"Emerald Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:enchanted_book","unlocalizedName":"item.minecraft.enchanted_book","localizedName":"Enchanted Book","maxDamage":0,"maxStackSize":1},{"id":"minecraft:enchanted_golden_apple","unlocalizedName":"item.minecraft.enchanted_golden_apple","localizedName":"Enchanted Golden Apple","maxDamage":0,"maxStackSize":64},{"id":"minecraft:enchanting_table","unlocalizedName":"block.minecraft.enchanting_table","localizedName":"Enchanting Table","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_crystal","unlocalizedName":"item.minecraft.end_crystal","localizedName":"End Crystal","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_portal_frame","unlocalizedName":"block.minecraft.end_portal_frame","localizedName":"End Portal Frame","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_rod","unlocalizedName":"block.minecraft.end_rod","localizedName":"End Rod","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_stone","unlocalizedName":"block.minecraft.end_stone","localizedName":"End Stone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_stone_brick_slab","unlocalizedName":"block.minecraft.end_stone_brick_slab","localizedName":"End Stone Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_stone_brick_stairs","unlocalizedName":"block.minecraft.end_stone_brick_stairs","localizedName":"End Stone Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_stone_brick_wall","unlocalizedName":"block.minecraft.end_stone_brick_wall","localizedName":"End Stone Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:end_stone_bricks","unlocalizedName":"block.minecraft.end_stone_bricks","localizedName":"End Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ender_chest","unlocalizedName":"block.minecraft.ender_chest","localizedName":"Ender Chest","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ender_eye","unlocalizedName":"item.minecraft.ender_eye","localizedName":"Eye of Ender","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ender_pearl","unlocalizedName":"item.minecraft.ender_pearl","localizedName":"Ender Pearl","maxDamage":0,"maxStackSize":16},{"id":"minecraft:enderman_spawn_egg","unlocalizedName":"item.minecraft.enderman_spawn_egg","localizedName":"Enderman Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:endermite_spawn_egg","unlocalizedName":"item.minecraft.endermite_spawn_egg","localizedName":"Endermite Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:evoker_spawn_egg","unlocalizedName":"item.minecraft.evoker_spawn_egg","localizedName":"Evoker Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:experience_bottle","unlocalizedName":"item.minecraft.experience_bottle","localizedName":"Bottle o' Enchanting","maxDamage":0,"maxStackSize":64},{"id":"minecraft:farmland","unlocalizedName":"block.minecraft.farmland","localizedName":"Farmland","maxDamage":0,"maxStackSize":64},{"id":"minecraft:feather","unlocalizedName":"item.minecraft.feather","localizedName":"Feather","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fermented_spider_eye","unlocalizedName":"item.minecraft.fermented_spider_eye","localizedName":"Fermented Spider Eye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fern","unlocalizedName":"block.minecraft.fern","localizedName":"Fern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:filled_map","unlocalizedName":"item.minecraft.filled_map","localizedName":"Map","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fire_charge","unlocalizedName":"item.minecraft.fire_charge","localizedName":"Fire Charge","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fire_coral","unlocalizedName":"block.minecraft.fire_coral","localizedName":"Fire Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fire_coral_block","unlocalizedName":"block.minecraft.fire_coral_block","localizedName":"Fire Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fire_coral_fan","unlocalizedName":"block.minecraft.fire_coral_fan","localizedName":"Fire Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:firework_rocket","unlocalizedName":"item.minecraft.firework_rocket","localizedName":"Firework Rocket","maxDamage":0,"maxStackSize":64},{"id":"minecraft:firework_star","unlocalizedName":"item.minecraft.firework_star","localizedName":"Firework Star","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fishing_rod","unlocalizedName":"item.minecraft.fishing_rod","localizedName":"Fishing Rod","maxDamage":64,"maxStackSize":1},{"id":"minecraft:fletching_table","unlocalizedName":"block.minecraft.fletching_table","localizedName":"Fletching Table","maxDamage":0,"maxStackSize":64},{"id":"minecraft:flint","unlocalizedName":"item.minecraft.flint","localizedName":"Flint","maxDamage":0,"maxStackSize":64},{"id":"minecraft:flint_and_steel","unlocalizedName":"item.minecraft.flint_and_steel","localizedName":"Flint and Steel","maxDamage":64,"maxStackSize":1},{"id":"minecraft:flower_banner_pattern","unlocalizedName":"item.minecraft.flower_banner_pattern","localizedName":"Banner Pattern","maxDamage":0,"maxStackSize":1},{"id":"minecraft:flower_pot","unlocalizedName":"block.minecraft.flower_pot","localizedName":"Flower Pot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:fox_spawn_egg","unlocalizedName":"item.minecraft.fox_spawn_egg","localizedName":"Fox Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:furnace","unlocalizedName":"block.minecraft.furnace","localizedName":"Furnace","maxDamage":0,"maxStackSize":64},{"id":"minecraft:furnace_minecart","unlocalizedName":"item.minecraft.furnace_minecart","localizedName":"Minecart with Furnace","maxDamage":0,"maxStackSize":1},{"id":"minecraft:ghast_spawn_egg","unlocalizedName":"item.minecraft.ghast_spawn_egg","localizedName":"Ghast Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ghast_tear","unlocalizedName":"item.minecraft.ghast_tear","localizedName":"Ghast Tear","maxDamage":0,"maxStackSize":64},{"id":"minecraft:glass","unlocalizedName":"block.minecraft.glass","localizedName":"Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:glass_bottle","unlocalizedName":"item.minecraft.glass_bottle","localizedName":"Glass Bottle","maxDamage":0,"maxStackSize":64},{"id":"minecraft:glass_pane","unlocalizedName":"block.minecraft.glass_pane","localizedName":"Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:glistering_melon_slice","unlocalizedName":"item.minecraft.glistering_melon_slice","localizedName":"Glistering Melon Slice","maxDamage":0,"maxStackSize":64},{"id":"minecraft:globe_banner_pattern","unlocalizedName":"item.minecraft.globe_banner_pattern","localizedName":"Banner Pattern","maxDamage":0,"maxStackSize":1},{"id":"minecraft:glowstone","unlocalizedName":"block.minecraft.glowstone","localizedName":"Glowstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:glowstone_dust","unlocalizedName":"item.minecraft.glowstone_dust","localizedName":"Glowstone Dust","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gold_block","unlocalizedName":"block.minecraft.gold_block","localizedName":"Block of Gold","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gold_ingot","unlocalizedName":"item.minecraft.gold_ingot","localizedName":"Gold Ingot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gold_nugget","unlocalizedName":"item.minecraft.gold_nugget","localizedName":"Gold Nugget","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gold_ore","unlocalizedName":"block.minecraft.gold_ore","localizedName":"Gold Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:golden_apple","unlocalizedName":"item.minecraft.golden_apple","localizedName":"Golden Apple","maxDamage":0,"maxStackSize":64},{"id":"minecraft:golden_axe","unlocalizedName":"item.minecraft.golden_axe","localizedName":"Golden Axe","maxDamage":32,"maxStackSize":1},{"id":"minecraft:golden_boots","unlocalizedName":"item.minecraft.golden_boots","localizedName":"Golden Boots","maxDamage":91,"maxStackSize":1},{"id":"minecraft:golden_carrot","unlocalizedName":"item.minecraft.golden_carrot","localizedName":"Golden Carrot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:golden_chestplate","unlocalizedName":"item.minecraft.golden_chestplate","localizedName":"Golden Chestplate","maxDamage":112,"maxStackSize":1},{"id":"minecraft:golden_helmet","unlocalizedName":"item.minecraft.golden_helmet","localizedName":"Golden Helmet","maxDamage":77,"maxStackSize":1},{"id":"minecraft:golden_hoe","unlocalizedName":"item.minecraft.golden_hoe","localizedName":"Golden Hoe","maxDamage":32,"maxStackSize":1},{"id":"minecraft:golden_horse_armor","unlocalizedName":"item.minecraft.golden_horse_armor","localizedName":"Golden Horse Armor","maxDamage":0,"maxStackSize":1},{"id":"minecraft:golden_leggings","unlocalizedName":"item.minecraft.golden_leggings","localizedName":"Golden Leggings","maxDamage":105,"maxStackSize":1},{"id":"minecraft:golden_pickaxe","unlocalizedName":"item.minecraft.golden_pickaxe","localizedName":"Golden Pickaxe","maxDamage":32,"maxStackSize":1},{"id":"minecraft:golden_shovel","unlocalizedName":"item.minecraft.golden_shovel","localizedName":"Golden Shovel","maxDamage":32,"maxStackSize":1},{"id":"minecraft:golden_sword","unlocalizedName":"item.minecraft.golden_sword","localizedName":"Golden Sword","maxDamage":32,"maxStackSize":1},{"id":"minecraft:granite","unlocalizedName":"block.minecraft.granite","localizedName":"Granite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:granite_slab","unlocalizedName":"block.minecraft.granite_slab","localizedName":"Granite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:granite_stairs","unlocalizedName":"block.minecraft.granite_stairs","localizedName":"Granite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:granite_wall","unlocalizedName":"block.minecraft.granite_wall","localizedName":"Granite Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:grass","unlocalizedName":"block.minecraft.grass","localizedName":"Grass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:grass_block","unlocalizedName":"block.minecraft.grass_block","localizedName":"Grass Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:grass_path","unlocalizedName":"block.minecraft.grass_path","localizedName":"Grass Path","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gravel","unlocalizedName":"block.minecraft.gravel","localizedName":"Gravel","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_banner","unlocalizedName":"block.minecraft.gray_banner","localizedName":"Gray Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:gray_bed","unlocalizedName":"block.minecraft.gray_bed","localizedName":"Gray Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:gray_carpet","unlocalizedName":"block.minecraft.gray_carpet","localizedName":"Gray Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_concrete","unlocalizedName":"block.minecraft.gray_concrete","localizedName":"Gray Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_concrete_powder","unlocalizedName":"block.minecraft.gray_concrete_powder","localizedName":"Gray Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_dye","unlocalizedName":"item.minecraft.gray_dye","localizedName":"Gray Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_glazed_terracotta","unlocalizedName":"block.minecraft.gray_glazed_terracotta","localizedName":"Gray Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_shulker_box","unlocalizedName":"block.minecraft.gray_shulker_box","localizedName":"Gray Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:gray_stained_glass","unlocalizedName":"block.minecraft.gray_stained_glass","localizedName":"Gray Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_stained_glass_pane","unlocalizedName":"block.minecraft.gray_stained_glass_pane","localizedName":"Gray Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_terracotta","unlocalizedName":"block.minecraft.gray_terracotta","localizedName":"Gray Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gray_wool","unlocalizedName":"block.minecraft.gray_wool","localizedName":"Gray Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_banner","unlocalizedName":"block.minecraft.green_banner","localizedName":"Green Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:green_bed","unlocalizedName":"block.minecraft.green_bed","localizedName":"Green Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:green_carpet","unlocalizedName":"block.minecraft.green_carpet","localizedName":"Green Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_concrete","unlocalizedName":"block.minecraft.green_concrete","localizedName":"Green Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_concrete_powder","unlocalizedName":"block.minecraft.green_concrete_powder","localizedName":"Green Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_dye","unlocalizedName":"item.minecraft.green_dye","localizedName":"Green Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_glazed_terracotta","unlocalizedName":"block.minecraft.green_glazed_terracotta","localizedName":"Green Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_shulker_box","unlocalizedName":"block.minecraft.green_shulker_box","localizedName":"Green Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:green_stained_glass","unlocalizedName":"block.minecraft.green_stained_glass","localizedName":"Green Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_stained_glass_pane","unlocalizedName":"block.minecraft.green_stained_glass_pane","localizedName":"Green Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_terracotta","unlocalizedName":"block.minecraft.green_terracotta","localizedName":"Green Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:green_wool","unlocalizedName":"block.minecraft.green_wool","localizedName":"Green Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:grindstone","unlocalizedName":"block.minecraft.grindstone","localizedName":"Grindstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:guardian_spawn_egg","unlocalizedName":"item.minecraft.guardian_spawn_egg","localizedName":"Guardian Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:gunpowder","unlocalizedName":"item.minecraft.gunpowder","localizedName":"Gunpowder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:hay_block","unlocalizedName":"block.minecraft.hay_block","localizedName":"Hay Bale","maxDamage":0,"maxStackSize":64},{"id":"minecraft:heart_of_the_sea","unlocalizedName":"item.minecraft.heart_of_the_sea","localizedName":"Heart of the Sea","maxDamage":0,"maxStackSize":64},{"id":"minecraft:heavy_weighted_pressure_plate","unlocalizedName":"block.minecraft.heavy_weighted_pressure_plate","localizedName":"Heavy Weighted Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:honey_block","unlocalizedName":"block.minecraft.honey_block","localizedName":"Honey Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:honey_bottle","unlocalizedName":"item.minecraft.honey_bottle","localizedName":"Honey Bottle","maxDamage":0,"maxStackSize":16},{"id":"minecraft:honeycomb","unlocalizedName":"item.minecraft.honeycomb","localizedName":"Honeycomb","maxDamage":0,"maxStackSize":64},{"id":"minecraft:honeycomb_block","unlocalizedName":"block.minecraft.honeycomb_block","localizedName":"Honeycomb Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:hopper","unlocalizedName":"block.minecraft.hopper","localizedName":"Hopper","maxDamage":0,"maxStackSize":64},{"id":"minecraft:hopper_minecart","unlocalizedName":"item.minecraft.hopper_minecart","localizedName":"Minecart with Hopper","maxDamage":0,"maxStackSize":1},{"id":"minecraft:horn_coral","unlocalizedName":"block.minecraft.horn_coral","localizedName":"Horn Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:horn_coral_block","unlocalizedName":"block.minecraft.horn_coral_block","localizedName":"Horn Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:horn_coral_fan","unlocalizedName":"block.minecraft.horn_coral_fan","localizedName":"Horn Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:horse_spawn_egg","unlocalizedName":"item.minecraft.horse_spawn_egg","localizedName":"Horse Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:husk_spawn_egg","unlocalizedName":"item.minecraft.husk_spawn_egg","localizedName":"Husk Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ice","unlocalizedName":"block.minecraft.ice","localizedName":"Ice","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_chiseled_stone_bricks","unlocalizedName":"block.minecraft.infested_chiseled_stone_bricks","localizedName":"Infested Chiseled Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_cobblestone","unlocalizedName":"block.minecraft.infested_cobblestone","localizedName":"Infested Cobblestone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_cracked_stone_bricks","unlocalizedName":"block.minecraft.infested_cracked_stone_bricks","localizedName":"Infested Cracked Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_mossy_stone_bricks","unlocalizedName":"block.minecraft.infested_mossy_stone_bricks","localizedName":"Infested Mossy Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_stone","unlocalizedName":"block.minecraft.infested_stone","localizedName":"Infested Stone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:infested_stone_bricks","unlocalizedName":"block.minecraft.infested_stone_bricks","localizedName":"Infested Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ink_sac","unlocalizedName":"item.minecraft.ink_sac","localizedName":"Ink Sac","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_axe","unlocalizedName":"item.minecraft.iron_axe","localizedName":"Iron Axe","maxDamage":250,"maxStackSize":1},{"id":"minecraft:iron_bars","unlocalizedName":"block.minecraft.iron_bars","localizedName":"Iron Bars","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_block","unlocalizedName":"block.minecraft.iron_block","localizedName":"Block of Iron","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_boots","unlocalizedName":"item.minecraft.iron_boots","localizedName":"Iron Boots","maxDamage":195,"maxStackSize":1},{"id":"minecraft:iron_chestplate","unlocalizedName":"item.minecraft.iron_chestplate","localizedName":"Iron Chestplate","maxDamage":240,"maxStackSize":1},{"id":"minecraft:iron_door","unlocalizedName":"block.minecraft.iron_door","localizedName":"Iron Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_helmet","unlocalizedName":"item.minecraft.iron_helmet","localizedName":"Iron Helmet","maxDamage":165,"maxStackSize":1},{"id":"minecraft:iron_hoe","unlocalizedName":"item.minecraft.iron_hoe","localizedName":"Iron Hoe","maxDamage":250,"maxStackSize":1},{"id":"minecraft:iron_horse_armor","unlocalizedName":"item.minecraft.iron_horse_armor","localizedName":"Iron Horse Armor","maxDamage":0,"maxStackSize":1},{"id":"minecraft:iron_ingot","unlocalizedName":"item.minecraft.iron_ingot","localizedName":"Iron Ingot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_leggings","unlocalizedName":"item.minecraft.iron_leggings","localizedName":"Iron Leggings","maxDamage":225,"maxStackSize":1},{"id":"minecraft:iron_nugget","unlocalizedName":"item.minecraft.iron_nugget","localizedName":"Iron Nugget","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_ore","unlocalizedName":"block.minecraft.iron_ore","localizedName":"Iron Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:iron_pickaxe","unlocalizedName":"item.minecraft.iron_pickaxe","localizedName":"Iron Pickaxe","maxDamage":250,"maxStackSize":1},{"id":"minecraft:iron_shovel","unlocalizedName":"item.minecraft.iron_shovel","localizedName":"Iron Shovel","maxDamage":250,"maxStackSize":1},{"id":"minecraft:iron_sword","unlocalizedName":"item.minecraft.iron_sword","localizedName":"Iron Sword","maxDamage":250,"maxStackSize":1},{"id":"minecraft:iron_trapdoor","unlocalizedName":"block.minecraft.iron_trapdoor","localizedName":"Iron Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:item_frame","unlocalizedName":"item.minecraft.item_frame","localizedName":"Item Frame","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jack_o_lantern","unlocalizedName":"block.minecraft.jack_o_lantern","localizedName":"Jack o'Lantern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jigsaw","unlocalizedName":"block.minecraft.jigsaw","localizedName":"Jigsaw Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jukebox","unlocalizedName":"block.minecraft.jukebox","localizedName":"Jukebox","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_boat","unlocalizedName":"item.minecraft.jungle_boat","localizedName":"Jungle Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:jungle_button","unlocalizedName":"block.minecraft.jungle_button","localizedName":"Jungle Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_door","unlocalizedName":"block.minecraft.jungle_door","localizedName":"Jungle Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_fence","unlocalizedName":"block.minecraft.jungle_fence","localizedName":"Jungle Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_fence_gate","unlocalizedName":"block.minecraft.jungle_fence_gate","localizedName":"Jungle Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_leaves","unlocalizedName":"block.minecraft.jungle_leaves","localizedName":"Jungle Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_log","unlocalizedName":"block.minecraft.jungle_log","localizedName":"Jungle Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_planks","unlocalizedName":"block.minecraft.jungle_planks","localizedName":"Jungle Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_pressure_plate","unlocalizedName":"block.minecraft.jungle_pressure_plate","localizedName":"Jungle Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_sapling","unlocalizedName":"block.minecraft.jungle_sapling","localizedName":"Jungle Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_sign","unlocalizedName":"block.minecraft.jungle_sign","localizedName":"Jungle Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:jungle_slab","unlocalizedName":"block.minecraft.jungle_slab","localizedName":"Jungle Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_stairs","unlocalizedName":"block.minecraft.jungle_stairs","localizedName":"Jungle Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_trapdoor","unlocalizedName":"block.minecraft.jungle_trapdoor","localizedName":"Jungle Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:jungle_wood","unlocalizedName":"block.minecraft.jungle_wood","localizedName":"Jungle Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:kelp","unlocalizedName":"block.minecraft.kelp","localizedName":"Kelp","maxDamage":0,"maxStackSize":64},{"id":"minecraft:knowledge_book","unlocalizedName":"item.minecraft.knowledge_book","localizedName":"Knowledge Book","maxDamage":0,"maxStackSize":1},{"id":"minecraft:ladder","unlocalizedName":"block.minecraft.ladder","localizedName":"Ladder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lantern","unlocalizedName":"block.minecraft.lantern","localizedName":"Lantern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lapis_block","unlocalizedName":"block.minecraft.lapis_block","localizedName":"Lapis Lazuli Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lapis_lazuli","unlocalizedName":"item.minecraft.lapis_lazuli","localizedName":"Lapis Lazuli","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lapis_ore","unlocalizedName":"block.minecraft.lapis_ore","localizedName":"Lapis Lazuli Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:large_fern","unlocalizedName":"block.minecraft.large_fern","localizedName":"Large Fern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lava_bucket","unlocalizedName":"item.minecraft.lava_bucket","localizedName":"Lava Bucket","maxDamage":0,"maxStackSize":1},{"id":"minecraft:lead","unlocalizedName":"item.minecraft.lead","localizedName":"Lead","maxDamage":0,"maxStackSize":64},{"id":"minecraft:leather","unlocalizedName":"item.minecraft.leather","localizedName":"Leather","maxDamage":0,"maxStackSize":64},{"id":"minecraft:leather_boots","unlocalizedName":"item.minecraft.leather_boots","localizedName":"Leather Boots","maxDamage":65,"maxStackSize":1},{"id":"minecraft:leather_chestplate","unlocalizedName":"item.minecraft.leather_chestplate","localizedName":"Leather Tunic","maxDamage":80,"maxStackSize":1},{"id":"minecraft:leather_helmet","unlocalizedName":"item.minecraft.leather_helmet","localizedName":"Leather Cap","maxDamage":55,"maxStackSize":1},{"id":"minecraft:leather_horse_armor","unlocalizedName":"item.minecraft.leather_horse_armor","localizedName":"Leather Horse Armor","maxDamage":0,"maxStackSize":1},{"id":"minecraft:leather_leggings","unlocalizedName":"item.minecraft.leather_leggings","localizedName":"Leather Pants","maxDamage":75,"maxStackSize":1},{"id":"minecraft:lectern","unlocalizedName":"block.minecraft.lectern","localizedName":"Lectern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lever","unlocalizedName":"block.minecraft.lever","localizedName":"Lever","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_banner","unlocalizedName":"block.minecraft.light_blue_banner","localizedName":"Light Blue Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:light_blue_bed","unlocalizedName":"block.minecraft.light_blue_bed","localizedName":"Light Blue Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:light_blue_carpet","unlocalizedName":"block.minecraft.light_blue_carpet","localizedName":"Light Blue Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_concrete","unlocalizedName":"block.minecraft.light_blue_concrete","localizedName":"Light Blue Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_concrete_powder","unlocalizedName":"block.minecraft.light_blue_concrete_powder","localizedName":"Light Blue Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_dye","unlocalizedName":"item.minecraft.light_blue_dye","localizedName":"Light Blue Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_glazed_terracotta","unlocalizedName":"block.minecraft.light_blue_glazed_terracotta","localizedName":"Light Blue Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_shulker_box","unlocalizedName":"block.minecraft.light_blue_shulker_box","localizedName":"Light Blue Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:light_blue_stained_glass","unlocalizedName":"block.minecraft.light_blue_stained_glass","localizedName":"Light Blue Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_stained_glass_pane","unlocalizedName":"block.minecraft.light_blue_stained_glass_pane","localizedName":"Light Blue Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_terracotta","unlocalizedName":"block.minecraft.light_blue_terracotta","localizedName":"Light Blue Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_blue_wool","unlocalizedName":"block.minecraft.light_blue_wool","localizedName":"Light Blue Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_banner","unlocalizedName":"block.minecraft.light_gray_banner","localizedName":"Light Gray Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:light_gray_bed","unlocalizedName":"block.minecraft.light_gray_bed","localizedName":"Light Gray Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:light_gray_carpet","unlocalizedName":"block.minecraft.light_gray_carpet","localizedName":"Light Gray Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_concrete","unlocalizedName":"block.minecraft.light_gray_concrete","localizedName":"Light Gray Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_concrete_powder","unlocalizedName":"block.minecraft.light_gray_concrete_powder","localizedName":"Light Gray Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_dye","unlocalizedName":"item.minecraft.light_gray_dye","localizedName":"Light Gray Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_glazed_terracotta","unlocalizedName":"block.minecraft.light_gray_glazed_terracotta","localizedName":"Light Gray Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_shulker_box","unlocalizedName":"block.minecraft.light_gray_shulker_box","localizedName":"Light Gray Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:light_gray_stained_glass","unlocalizedName":"block.minecraft.light_gray_stained_glass","localizedName":"Light Gray Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_stained_glass_pane","unlocalizedName":"block.minecraft.light_gray_stained_glass_pane","localizedName":"Light Gray Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_terracotta","unlocalizedName":"block.minecraft.light_gray_terracotta","localizedName":"Light Gray Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_gray_wool","unlocalizedName":"block.minecraft.light_gray_wool","localizedName":"Light Gray Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:light_weighted_pressure_plate","unlocalizedName":"block.minecraft.light_weighted_pressure_plate","localizedName":"Light Weighted Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lilac","unlocalizedName":"block.minecraft.lilac","localizedName":"Lilac","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lily_of_the_valley","unlocalizedName":"block.minecraft.lily_of_the_valley","localizedName":"Lily of the Valley","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lily_pad","unlocalizedName":"block.minecraft.lily_pad","localizedName":"Lily Pad","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_banner","unlocalizedName":"block.minecraft.lime_banner","localizedName":"Lime Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:lime_bed","unlocalizedName":"block.minecraft.lime_bed","localizedName":"Lime Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:lime_carpet","unlocalizedName":"block.minecraft.lime_carpet","localizedName":"Lime Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_concrete","unlocalizedName":"block.minecraft.lime_concrete","localizedName":"Lime Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_concrete_powder","unlocalizedName":"block.minecraft.lime_concrete_powder","localizedName":"Lime Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_dye","unlocalizedName":"item.minecraft.lime_dye","localizedName":"Lime Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_glazed_terracotta","unlocalizedName":"block.minecraft.lime_glazed_terracotta","localizedName":"Lime Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_shulker_box","unlocalizedName":"block.minecraft.lime_shulker_box","localizedName":"Lime Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:lime_stained_glass","unlocalizedName":"block.minecraft.lime_stained_glass","localizedName":"Lime Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_stained_glass_pane","unlocalizedName":"block.minecraft.lime_stained_glass_pane","localizedName":"Lime Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_terracotta","unlocalizedName":"block.minecraft.lime_terracotta","localizedName":"Lime Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lime_wool","unlocalizedName":"block.minecraft.lime_wool","localizedName":"Lime Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:lingering_potion","unlocalizedName":"item.minecraft.lingering_potion.effect.water","localizedName":"Lingering Water Bottle","maxDamage":0,"maxStackSize":1},{"id":"minecraft:llama_spawn_egg","unlocalizedName":"item.minecraft.llama_spawn_egg","localizedName":"Llama Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:loom","unlocalizedName":"block.minecraft.loom","localizedName":"Loom","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_banner","unlocalizedName":"block.minecraft.magenta_banner","localizedName":"Magenta Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:magenta_bed","unlocalizedName":"block.minecraft.magenta_bed","localizedName":"Magenta Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:magenta_carpet","unlocalizedName":"block.minecraft.magenta_carpet","localizedName":"Magenta Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_concrete","unlocalizedName":"block.minecraft.magenta_concrete","localizedName":"Magenta Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_concrete_powder","unlocalizedName":"block.minecraft.magenta_concrete_powder","localizedName":"Magenta Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_dye","unlocalizedName":"item.minecraft.magenta_dye","localizedName":"Magenta Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_glazed_terracotta","unlocalizedName":"block.minecraft.magenta_glazed_terracotta","localizedName":"Magenta Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_shulker_box","unlocalizedName":"block.minecraft.magenta_shulker_box","localizedName":"Magenta Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:magenta_stained_glass","unlocalizedName":"block.minecraft.magenta_stained_glass","localizedName":"Magenta Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_stained_glass_pane","unlocalizedName":"block.minecraft.magenta_stained_glass_pane","localizedName":"Magenta Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_terracotta","unlocalizedName":"block.minecraft.magenta_terracotta","localizedName":"Magenta Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magenta_wool","unlocalizedName":"block.minecraft.magenta_wool","localizedName":"Magenta Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magma_block","unlocalizedName":"block.minecraft.magma_block","localizedName":"Magma Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magma_cream","unlocalizedName":"item.minecraft.magma_cream","localizedName":"Magma Cream","maxDamage":0,"maxStackSize":64},{"id":"minecraft:magma_cube_spawn_egg","unlocalizedName":"item.minecraft.magma_cube_spawn_egg","localizedName":"Magma Cube Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:map","unlocalizedName":"item.minecraft.map","localizedName":"Empty Map","maxDamage":0,"maxStackSize":64},{"id":"minecraft:melon","unlocalizedName":"block.minecraft.melon","localizedName":"Melon","maxDamage":0,"maxStackSize":64},{"id":"minecraft:melon_seeds","unlocalizedName":"item.minecraft.melon_seeds","localizedName":"Melon Seeds","maxDamage":0,"maxStackSize":64},{"id":"minecraft:melon_slice","unlocalizedName":"item.minecraft.melon_slice","localizedName":"Melon Slice","maxDamage":0,"maxStackSize":64},{"id":"minecraft:milk_bucket","unlocalizedName":"item.minecraft.milk_bucket","localizedName":"Milk Bucket","maxDamage":0,"maxStackSize":1},{"id":"minecraft:minecart","unlocalizedName":"item.minecraft.minecart","localizedName":"Minecart","maxDamage":0,"maxStackSize":1},{"id":"minecraft:mojang_banner_pattern","unlocalizedName":"item.minecraft.mojang_banner_pattern","localizedName":"Banner Pattern","maxDamage":0,"maxStackSize":1},{"id":"minecraft:mooshroom_spawn_egg","unlocalizedName":"item.minecraft.mooshroom_spawn_egg","localizedName":"Mooshroom Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_cobblestone","unlocalizedName":"block.minecraft.mossy_cobblestone","localizedName":"Mossy Cobblestone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_cobblestone_slab","unlocalizedName":"block.minecraft.mossy_cobblestone_slab","localizedName":"Mossy Cobblestone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_cobblestone_stairs","unlocalizedName":"block.minecraft.mossy_cobblestone_stairs","localizedName":"Mossy Cobblestone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_cobblestone_wall","unlocalizedName":"block.minecraft.mossy_cobblestone_wall","localizedName":"Mossy Cobblestone Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_stone_brick_slab","unlocalizedName":"block.minecraft.mossy_stone_brick_slab","localizedName":"Mossy Stone Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_stone_brick_stairs","unlocalizedName":"block.minecraft.mossy_stone_brick_stairs","localizedName":"Mossy Stone Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_stone_brick_wall","unlocalizedName":"block.minecraft.mossy_stone_brick_wall","localizedName":"Mossy Stone Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mossy_stone_bricks","unlocalizedName":"block.minecraft.mossy_stone_bricks","localizedName":"Mossy Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mule_spawn_egg","unlocalizedName":"item.minecraft.mule_spawn_egg","localizedName":"Mule Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mushroom_stem","unlocalizedName":"block.minecraft.mushroom_stem","localizedName":"Mushroom Stem","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mushroom_stew","unlocalizedName":"item.minecraft.mushroom_stew","localizedName":"Mushroom Stew","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_11","unlocalizedName":"item.minecraft.music_disc_11","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_13","unlocalizedName":"item.minecraft.music_disc_13","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_blocks","unlocalizedName":"item.minecraft.music_disc_blocks","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_cat","unlocalizedName":"item.minecraft.music_disc_cat","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_chirp","unlocalizedName":"item.minecraft.music_disc_chirp","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_far","unlocalizedName":"item.minecraft.music_disc_far","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_mall","unlocalizedName":"item.minecraft.music_disc_mall","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_mellohi","unlocalizedName":"item.minecraft.music_disc_mellohi","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_stal","unlocalizedName":"item.minecraft.music_disc_stal","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_strad","unlocalizedName":"item.minecraft.music_disc_strad","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_wait","unlocalizedName":"item.minecraft.music_disc_wait","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:music_disc_ward","unlocalizedName":"item.minecraft.music_disc_ward","localizedName":"Music Disc","maxDamage":0,"maxStackSize":1},{"id":"minecraft:mutton","unlocalizedName":"item.minecraft.mutton","localizedName":"Raw Mutton","maxDamage":0,"maxStackSize":64},{"id":"minecraft:mycelium","unlocalizedName":"block.minecraft.mycelium","localizedName":"Mycelium","maxDamage":0,"maxStackSize":64},{"id":"minecraft:name_tag","unlocalizedName":"item.minecraft.name_tag","localizedName":"Name Tag","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nautilus_shell","unlocalizedName":"item.minecraft.nautilus_shell","localizedName":"Nautilus Shell","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_brick","unlocalizedName":"item.minecraft.nether_brick","localizedName":"Nether Brick","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_brick_fence","unlocalizedName":"block.minecraft.nether_brick_fence","localizedName":"Nether Brick Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_brick_slab","unlocalizedName":"block.minecraft.nether_brick_slab","localizedName":"Nether Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_brick_stairs","unlocalizedName":"block.minecraft.nether_brick_stairs","localizedName":"Nether Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_brick_wall","unlocalizedName":"block.minecraft.nether_brick_wall","localizedName":"Nether Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_bricks","unlocalizedName":"block.minecraft.nether_bricks","localizedName":"Nether Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_quartz_ore","unlocalizedName":"block.minecraft.nether_quartz_ore","localizedName":"Nether Quartz Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_star","unlocalizedName":"item.minecraft.nether_star","localizedName":"Nether Star","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_wart","unlocalizedName":"item.minecraft.nether_wart","localizedName":"Nether Wart","maxDamage":0,"maxStackSize":64},{"id":"minecraft:nether_wart_block","unlocalizedName":"block.minecraft.nether_wart_block","localizedName":"Nether Wart Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:netherrack","unlocalizedName":"block.minecraft.netherrack","localizedName":"Netherrack","maxDamage":0,"maxStackSize":64},{"id":"minecraft:note_block","unlocalizedName":"block.minecraft.note_block","localizedName":"Note Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_boat","unlocalizedName":"item.minecraft.oak_boat","localizedName":"Oak Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:oak_button","unlocalizedName":"block.minecraft.oak_button","localizedName":"Oak Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_door","unlocalizedName":"block.minecraft.oak_door","localizedName":"Oak Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_fence","unlocalizedName":"block.minecraft.oak_fence","localizedName":"Oak Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_fence_gate","unlocalizedName":"block.minecraft.oak_fence_gate","localizedName":"Oak Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_leaves","unlocalizedName":"block.minecraft.oak_leaves","localizedName":"Oak Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_log","unlocalizedName":"block.minecraft.oak_log","localizedName":"Oak Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_planks","unlocalizedName":"block.minecraft.oak_planks","localizedName":"Oak Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_pressure_plate","unlocalizedName":"block.minecraft.oak_pressure_plate","localizedName":"Oak Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_sapling","unlocalizedName":"block.minecraft.oak_sapling","localizedName":"Oak Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_sign","unlocalizedName":"block.minecraft.oak_sign","localizedName":"Oak Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:oak_slab","unlocalizedName":"block.minecraft.oak_slab","localizedName":"Oak Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_stairs","unlocalizedName":"block.minecraft.oak_stairs","localizedName":"Oak Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_trapdoor","unlocalizedName":"block.minecraft.oak_trapdoor","localizedName":"Oak Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oak_wood","unlocalizedName":"block.minecraft.oak_wood","localizedName":"Oak Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:observer","unlocalizedName":"block.minecraft.observer","localizedName":"Observer","maxDamage":0,"maxStackSize":64},{"id":"minecraft:obsidian","unlocalizedName":"block.minecraft.obsidian","localizedName":"Obsidian","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ocelot_spawn_egg","unlocalizedName":"item.minecraft.ocelot_spawn_egg","localizedName":"Ocelot Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_banner","unlocalizedName":"block.minecraft.orange_banner","localizedName":"Orange Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:orange_bed","unlocalizedName":"block.minecraft.orange_bed","localizedName":"Orange Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:orange_carpet","unlocalizedName":"block.minecraft.orange_carpet","localizedName":"Orange Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_concrete","unlocalizedName":"block.minecraft.orange_concrete","localizedName":"Orange Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_concrete_powder","unlocalizedName":"block.minecraft.orange_concrete_powder","localizedName":"Orange Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_dye","unlocalizedName":"item.minecraft.orange_dye","localizedName":"Orange Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_glazed_terracotta","unlocalizedName":"block.minecraft.orange_glazed_terracotta","localizedName":"Orange Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_shulker_box","unlocalizedName":"block.minecraft.orange_shulker_box","localizedName":"Orange Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:orange_stained_glass","unlocalizedName":"block.minecraft.orange_stained_glass","localizedName":"Orange Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_stained_glass_pane","unlocalizedName":"block.minecraft.orange_stained_glass_pane","localizedName":"Orange Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_terracotta","unlocalizedName":"block.minecraft.orange_terracotta","localizedName":"Orange Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_tulip","unlocalizedName":"block.minecraft.orange_tulip","localizedName":"Orange Tulip","maxDamage":0,"maxStackSize":64},{"id":"minecraft:orange_wool","unlocalizedName":"block.minecraft.orange_wool","localizedName":"Orange Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:oxeye_daisy","unlocalizedName":"block.minecraft.oxeye_daisy","localizedName":"Oxeye Daisy","maxDamage":0,"maxStackSize":64},{"id":"minecraft:packed_ice","unlocalizedName":"block.minecraft.packed_ice","localizedName":"Packed Ice","maxDamage":0,"maxStackSize":64},{"id":"minecraft:painting","unlocalizedName":"item.minecraft.painting","localizedName":"Painting","maxDamage":0,"maxStackSize":64},{"id":"minecraft:panda_spawn_egg","unlocalizedName":"item.minecraft.panda_spawn_egg","localizedName":"Panda Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:paper","unlocalizedName":"item.minecraft.paper","localizedName":"Paper","maxDamage":0,"maxStackSize":64},{"id":"minecraft:parrot_spawn_egg","unlocalizedName":"item.minecraft.parrot_spawn_egg","localizedName":"Parrot Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:peony","unlocalizedName":"block.minecraft.peony","localizedName":"Peony","maxDamage":0,"maxStackSize":64},{"id":"minecraft:petrified_oak_slab","unlocalizedName":"block.minecraft.petrified_oak_slab","localizedName":"Petrified Oak Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:phantom_membrane","unlocalizedName":"item.minecraft.phantom_membrane","localizedName":"Phantom Membrane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:phantom_spawn_egg","unlocalizedName":"item.minecraft.phantom_spawn_egg","localizedName":"Phantom Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pig_spawn_egg","unlocalizedName":"item.minecraft.pig_spawn_egg","localizedName":"Pig Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pillager_spawn_egg","unlocalizedName":"item.minecraft.pillager_spawn_egg","localizedName":"Pillager Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_banner","unlocalizedName":"block.minecraft.pink_banner","localizedName":"Pink Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:pink_bed","unlocalizedName":"block.minecraft.pink_bed","localizedName":"Pink Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:pink_carpet","unlocalizedName":"block.minecraft.pink_carpet","localizedName":"Pink Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_concrete","unlocalizedName":"block.minecraft.pink_concrete","localizedName":"Pink Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_concrete_powder","unlocalizedName":"block.minecraft.pink_concrete_powder","localizedName":"Pink Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_dye","unlocalizedName":"item.minecraft.pink_dye","localizedName":"Pink Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_glazed_terracotta","unlocalizedName":"block.minecraft.pink_glazed_terracotta","localizedName":"Pink Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_shulker_box","unlocalizedName":"block.minecraft.pink_shulker_box","localizedName":"Pink Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:pink_stained_glass","unlocalizedName":"block.minecraft.pink_stained_glass","localizedName":"Pink Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_stained_glass_pane","unlocalizedName":"block.minecraft.pink_stained_glass_pane","localizedName":"Pink Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_terracotta","unlocalizedName":"block.minecraft.pink_terracotta","localizedName":"Pink Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_tulip","unlocalizedName":"block.minecraft.pink_tulip","localizedName":"Pink Tulip","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pink_wool","unlocalizedName":"block.minecraft.pink_wool","localizedName":"Pink Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:piston","unlocalizedName":"block.minecraft.piston","localizedName":"Piston","maxDamage":0,"maxStackSize":64},{"id":"minecraft:player_head","unlocalizedName":"block.minecraft.player_head","localizedName":"Player Head","maxDamage":0,"maxStackSize":64},{"id":"minecraft:podzol","unlocalizedName":"block.minecraft.podzol","localizedName":"Podzol","maxDamage":0,"maxStackSize":64},{"id":"minecraft:poisonous_potato","unlocalizedName":"item.minecraft.poisonous_potato","localizedName":"Poisonous Potato","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polar_bear_spawn_egg","unlocalizedName":"item.minecraft.polar_bear_spawn_egg","localizedName":"Polar Bear Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_andesite","unlocalizedName":"block.minecraft.polished_andesite","localizedName":"Polished Andesite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_andesite_slab","unlocalizedName":"block.minecraft.polished_andesite_slab","localizedName":"Polished Andesite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_andesite_stairs","unlocalizedName":"block.minecraft.polished_andesite_stairs","localizedName":"Polished Andesite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_diorite","unlocalizedName":"block.minecraft.polished_diorite","localizedName":"Polished Diorite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_diorite_slab","unlocalizedName":"block.minecraft.polished_diorite_slab","localizedName":"Polished Diorite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_diorite_stairs","unlocalizedName":"block.minecraft.polished_diorite_stairs","localizedName":"Polished Diorite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_granite","unlocalizedName":"block.minecraft.polished_granite","localizedName":"Polished Granite","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_granite_slab","unlocalizedName":"block.minecraft.polished_granite_slab","localizedName":"Polished Granite Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:polished_granite_stairs","unlocalizedName":"block.minecraft.polished_granite_stairs","localizedName":"Polished Granite Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:popped_chorus_fruit","unlocalizedName":"item.minecraft.popped_chorus_fruit","localizedName":"Popped Chorus Fruit","maxDamage":0,"maxStackSize":64},{"id":"minecraft:poppy","unlocalizedName":"block.minecraft.poppy","localizedName":"Poppy","maxDamage":0,"maxStackSize":64},{"id":"minecraft:porkchop","unlocalizedName":"item.minecraft.porkchop","localizedName":"Raw Porkchop","maxDamage":0,"maxStackSize":64},{"id":"minecraft:potato","unlocalizedName":"item.minecraft.potato","localizedName":"Potato","maxDamage":0,"maxStackSize":64},{"id":"minecraft:potion","unlocalizedName":"item.minecraft.potion.effect.water","localizedName":"Water Bottle","maxDamage":0,"maxStackSize":1},{"id":"minecraft:powered_rail","unlocalizedName":"block.minecraft.powered_rail","localizedName":"Powered Rail","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine","unlocalizedName":"block.minecraft.prismarine","localizedName":"Prismarine","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_brick_slab","unlocalizedName":"block.minecraft.prismarine_brick_slab","localizedName":"Prismarine Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_brick_stairs","unlocalizedName":"block.minecraft.prismarine_brick_stairs","localizedName":"Prismarine Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_bricks","unlocalizedName":"block.minecraft.prismarine_bricks","localizedName":"Prismarine Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_crystals","unlocalizedName":"item.minecraft.prismarine_crystals","localizedName":"Prismarine Crystals","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_shard","unlocalizedName":"item.minecraft.prismarine_shard","localizedName":"Prismarine Shard","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_slab","unlocalizedName":"block.minecraft.prismarine_slab","localizedName":"Prismarine Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_stairs","unlocalizedName":"block.minecraft.prismarine_stairs","localizedName":"Prismarine Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:prismarine_wall","unlocalizedName":"block.minecraft.prismarine_wall","localizedName":"Prismarine Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pufferfish","unlocalizedName":"item.minecraft.pufferfish","localizedName":"Pufferfish","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pufferfish_bucket","unlocalizedName":"item.minecraft.pufferfish_bucket","localizedName":"Bucket of Pufferfish","maxDamage":0,"maxStackSize":1},{"id":"minecraft:pufferfish_spawn_egg","unlocalizedName":"item.minecraft.pufferfish_spawn_egg","localizedName":"Pufferfish Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pumpkin","unlocalizedName":"block.minecraft.pumpkin","localizedName":"Pumpkin","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pumpkin_pie","unlocalizedName":"item.minecraft.pumpkin_pie","localizedName":"Pumpkin Pie","maxDamage":0,"maxStackSize":64},{"id":"minecraft:pumpkin_seeds","unlocalizedName":"item.minecraft.pumpkin_seeds","localizedName":"Pumpkin Seeds","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_banner","unlocalizedName":"block.minecraft.purple_banner","localizedName":"Purple Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:purple_bed","unlocalizedName":"block.minecraft.purple_bed","localizedName":"Purple Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:purple_carpet","unlocalizedName":"block.minecraft.purple_carpet","localizedName":"Purple Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_concrete","unlocalizedName":"block.minecraft.purple_concrete","localizedName":"Purple Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_concrete_powder","unlocalizedName":"block.minecraft.purple_concrete_powder","localizedName":"Purple Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_dye","unlocalizedName":"item.minecraft.purple_dye","localizedName":"Purple Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_glazed_terracotta","unlocalizedName":"block.minecraft.purple_glazed_terracotta","localizedName":"Purple Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_shulker_box","unlocalizedName":"block.minecraft.purple_shulker_box","localizedName":"Purple Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:purple_stained_glass","unlocalizedName":"block.minecraft.purple_stained_glass","localizedName":"Purple Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_stained_glass_pane","unlocalizedName":"block.minecraft.purple_stained_glass_pane","localizedName":"Purple Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_terracotta","unlocalizedName":"block.minecraft.purple_terracotta","localizedName":"Purple Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purple_wool","unlocalizedName":"block.minecraft.purple_wool","localizedName":"Purple Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purpur_block","unlocalizedName":"block.minecraft.purpur_block","localizedName":"Purpur Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purpur_pillar","unlocalizedName":"block.minecraft.purpur_pillar","localizedName":"Purpur Pillar","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purpur_slab","unlocalizedName":"block.minecraft.purpur_slab","localizedName":"Purpur Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:purpur_stairs","unlocalizedName":"block.minecraft.purpur_stairs","localizedName":"Purpur Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:quartz","unlocalizedName":"item.minecraft.quartz","localizedName":"Nether Quartz","maxDamage":0,"maxStackSize":64},{"id":"minecraft:quartz_block","unlocalizedName":"block.minecraft.quartz_block","localizedName":"Block of Quartz","maxDamage":0,"maxStackSize":64},{"id":"minecraft:quartz_pillar","unlocalizedName":"block.minecraft.quartz_pillar","localizedName":"Quartz Pillar","maxDamage":0,"maxStackSize":64},{"id":"minecraft:quartz_slab","unlocalizedName":"block.minecraft.quartz_slab","localizedName":"Quartz Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:quartz_stairs","unlocalizedName":"block.minecraft.quartz_stairs","localizedName":"Quartz Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rabbit","unlocalizedName":"item.minecraft.rabbit","localizedName":"Raw Rabbit","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rabbit_foot","unlocalizedName":"item.minecraft.rabbit_foot","localizedName":"Rabbit's Foot","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rabbit_hide","unlocalizedName":"item.minecraft.rabbit_hide","localizedName":"Rabbit Hide","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rabbit_spawn_egg","unlocalizedName":"item.minecraft.rabbit_spawn_egg","localizedName":"Rabbit Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rabbit_stew","unlocalizedName":"item.minecraft.rabbit_stew","localizedName":"Rabbit Stew","maxDamage":0,"maxStackSize":1},{"id":"minecraft:rail","unlocalizedName":"block.minecraft.rail","localizedName":"Rail","maxDamage":0,"maxStackSize":64},{"id":"minecraft:ravager_spawn_egg","unlocalizedName":"item.minecraft.ravager_spawn_egg","localizedName":"Ravager Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_banner","unlocalizedName":"block.minecraft.red_banner","localizedName":"Red Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:red_bed","unlocalizedName":"block.minecraft.red_bed","localizedName":"Red Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:red_carpet","unlocalizedName":"block.minecraft.red_carpet","localizedName":"Red Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_concrete","unlocalizedName":"block.minecraft.red_concrete","localizedName":"Red Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_concrete_powder","unlocalizedName":"block.minecraft.red_concrete_powder","localizedName":"Red Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_dye","unlocalizedName":"item.minecraft.red_dye","localizedName":"Red Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_glazed_terracotta","unlocalizedName":"block.minecraft.red_glazed_terracotta","localizedName":"Red Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_mushroom","unlocalizedName":"block.minecraft.red_mushroom","localizedName":"Red Mushroom","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_mushroom_block","unlocalizedName":"block.minecraft.red_mushroom_block","localizedName":"Red Mushroom Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_nether_brick_slab","unlocalizedName":"block.minecraft.red_nether_brick_slab","localizedName":"Red Nether Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_nether_brick_stairs","unlocalizedName":"block.minecraft.red_nether_brick_stairs","localizedName":"Red Nether Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_nether_brick_wall","unlocalizedName":"block.minecraft.red_nether_brick_wall","localizedName":"Red Nether Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_nether_bricks","unlocalizedName":"block.minecraft.red_nether_bricks","localizedName":"Red Nether Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_sand","unlocalizedName":"block.minecraft.red_sand","localizedName":"Red Sand","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_sandstone","unlocalizedName":"block.minecraft.red_sandstone","localizedName":"Red Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_sandstone_slab","unlocalizedName":"block.minecraft.red_sandstone_slab","localizedName":"Red Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_sandstone_stairs","unlocalizedName":"block.minecraft.red_sandstone_stairs","localizedName":"Red Sandstone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_sandstone_wall","unlocalizedName":"block.minecraft.red_sandstone_wall","localizedName":"Red Sandstone Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_shulker_box","unlocalizedName":"block.minecraft.red_shulker_box","localizedName":"Red Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:red_stained_glass","unlocalizedName":"block.minecraft.red_stained_glass","localizedName":"Red Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_stained_glass_pane","unlocalizedName":"block.minecraft.red_stained_glass_pane","localizedName":"Red Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_terracotta","unlocalizedName":"block.minecraft.red_terracotta","localizedName":"Red Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_tulip","unlocalizedName":"block.minecraft.red_tulip","localizedName":"Red Tulip","maxDamage":0,"maxStackSize":64},{"id":"minecraft:red_wool","unlocalizedName":"block.minecraft.red_wool","localizedName":"Red Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:redstone","unlocalizedName":"item.minecraft.redstone","localizedName":"Redstone Dust","maxDamage":0,"maxStackSize":64},{"id":"minecraft:redstone_block","unlocalizedName":"block.minecraft.redstone_block","localizedName":"Block of Redstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:redstone_lamp","unlocalizedName":"block.minecraft.redstone_lamp","localizedName":"Redstone Lamp","maxDamage":0,"maxStackSize":64},{"id":"minecraft:redstone_ore","unlocalizedName":"block.minecraft.redstone_ore","localizedName":"Redstone Ore","maxDamage":0,"maxStackSize":64},{"id":"minecraft:redstone_torch","unlocalizedName":"block.minecraft.redstone_torch","localizedName":"Redstone Torch","maxDamage":0,"maxStackSize":64},{"id":"minecraft:repeater","unlocalizedName":"block.minecraft.repeater","localizedName":"Redstone Repeater","maxDamage":0,"maxStackSize":64},{"id":"minecraft:repeating_command_block","unlocalizedName":"block.minecraft.repeating_command_block","localizedName":"Repeating Command Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rose_bush","unlocalizedName":"block.minecraft.rose_bush","localizedName":"Rose Bush","maxDamage":0,"maxStackSize":64},{"id":"minecraft:rotten_flesh","unlocalizedName":"item.minecraft.rotten_flesh","localizedName":"Rotten Flesh","maxDamage":0,"maxStackSize":64},{"id":"minecraft:saddle","unlocalizedName":"item.minecraft.saddle","localizedName":"Saddle","maxDamage":0,"maxStackSize":1},{"id":"minecraft:salmon","unlocalizedName":"item.minecraft.salmon","localizedName":"Raw Salmon","maxDamage":0,"maxStackSize":64},{"id":"minecraft:salmon_bucket","unlocalizedName":"item.minecraft.salmon_bucket","localizedName":"Bucket of Salmon","maxDamage":0,"maxStackSize":1},{"id":"minecraft:salmon_spawn_egg","unlocalizedName":"item.minecraft.salmon_spawn_egg","localizedName":"Salmon Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sand","unlocalizedName":"block.minecraft.sand","localizedName":"Sand","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sandstone","unlocalizedName":"block.minecraft.sandstone","localizedName":"Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sandstone_slab","unlocalizedName":"block.minecraft.sandstone_slab","localizedName":"Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sandstone_stairs","unlocalizedName":"block.minecraft.sandstone_stairs","localizedName":"Sandstone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sandstone_wall","unlocalizedName":"block.minecraft.sandstone_wall","localizedName":"Sandstone Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:scaffolding","unlocalizedName":"block.minecraft.scaffolding","localizedName":"Scaffolding","maxDamage":0,"maxStackSize":64},{"id":"minecraft:scute","unlocalizedName":"item.minecraft.scute","localizedName":"Scute","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sea_lantern","unlocalizedName":"block.minecraft.sea_lantern","localizedName":"Sea Lantern","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sea_pickle","unlocalizedName":"block.minecraft.sea_pickle","localizedName":"Sea Pickle","maxDamage":0,"maxStackSize":64},{"id":"minecraft:seagrass","unlocalizedName":"block.minecraft.seagrass","localizedName":"Seagrass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:shears","unlocalizedName":"item.minecraft.shears","localizedName":"Shears","maxDamage":238,"maxStackSize":1},{"id":"minecraft:sheep_spawn_egg","unlocalizedName":"item.minecraft.sheep_spawn_egg","localizedName":"Sheep Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:shield","unlocalizedName":"item.minecraft.shield","localizedName":"Shield","maxDamage":336,"maxStackSize":1},{"id":"minecraft:shulker_box","unlocalizedName":"block.minecraft.shulker_box","localizedName":"Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:shulker_shell","unlocalizedName":"item.minecraft.shulker_shell","localizedName":"Shulker Shell","maxDamage":0,"maxStackSize":64},{"id":"minecraft:shulker_spawn_egg","unlocalizedName":"item.minecraft.shulker_spawn_egg","localizedName":"Shulker Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:silverfish_spawn_egg","unlocalizedName":"item.minecraft.silverfish_spawn_egg","localizedName":"Silverfish Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:skeleton_horse_spawn_egg","unlocalizedName":"item.minecraft.skeleton_horse_spawn_egg","localizedName":"Skeleton Horse Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:skeleton_skull","unlocalizedName":"block.minecraft.skeleton_skull","localizedName":"Skeleton Skull","maxDamage":0,"maxStackSize":64},{"id":"minecraft:skeleton_spawn_egg","unlocalizedName":"item.minecraft.skeleton_spawn_egg","localizedName":"Skeleton Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:skull_banner_pattern","unlocalizedName":"item.minecraft.skull_banner_pattern","localizedName":"Banner Pattern","maxDamage":0,"maxStackSize":1},{"id":"minecraft:slime_ball","unlocalizedName":"item.minecraft.slime_ball","localizedName":"Slimeball","maxDamage":0,"maxStackSize":64},{"id":"minecraft:slime_block","unlocalizedName":"block.minecraft.slime_block","localizedName":"Slime Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:slime_spawn_egg","unlocalizedName":"item.minecraft.slime_spawn_egg","localizedName":"Slime Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smithing_table","unlocalizedName":"block.minecraft.smithing_table","localizedName":"Smithing Table","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smoker","unlocalizedName":"block.minecraft.smoker","localizedName":"Smoker","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_quartz","unlocalizedName":"block.minecraft.smooth_quartz","localizedName":"Smooth Quartz","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_quartz_slab","unlocalizedName":"block.minecraft.smooth_quartz_slab","localizedName":"Smooth Quartz Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_quartz_stairs","unlocalizedName":"block.minecraft.smooth_quartz_stairs","localizedName":"Smooth Quartz Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_red_sandstone","unlocalizedName":"block.minecraft.smooth_red_sandstone","localizedName":"Smooth Red Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_red_sandstone_slab","unlocalizedName":"block.minecraft.smooth_red_sandstone_slab","localizedName":"Smooth Red Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_red_sandstone_stairs","unlocalizedName":"block.minecraft.smooth_red_sandstone_stairs","localizedName":"Smooth Red Sandstone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_sandstone","unlocalizedName":"block.minecraft.smooth_sandstone","localizedName":"Smooth Sandstone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_sandstone_slab","unlocalizedName":"block.minecraft.smooth_sandstone_slab","localizedName":"Smooth Sandstone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_sandstone_stairs","unlocalizedName":"block.minecraft.smooth_sandstone_stairs","localizedName":"Smooth Sandstone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_stone","unlocalizedName":"block.minecraft.smooth_stone","localizedName":"Smooth Stone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:smooth_stone_slab","unlocalizedName":"block.minecraft.smooth_stone_slab","localizedName":"Smooth Stone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:snow","unlocalizedName":"block.minecraft.snow","localizedName":"Snow","maxDamage":0,"maxStackSize":64},{"id":"minecraft:snow_block","unlocalizedName":"block.minecraft.snow_block","localizedName":"Snow Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:snowball","unlocalizedName":"item.minecraft.snowball","localizedName":"Snowball","maxDamage":0,"maxStackSize":16},{"id":"minecraft:soul_sand","unlocalizedName":"block.minecraft.soul_sand","localizedName":"Soul Sand","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spawner","unlocalizedName":"block.minecraft.spawner","localizedName":"Spawner","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spectral_arrow","unlocalizedName":"item.minecraft.spectral_arrow","localizedName":"Spectral Arrow","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spider_eye","unlocalizedName":"item.minecraft.spider_eye","localizedName":"Spider Eye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spider_spawn_egg","unlocalizedName":"item.minecraft.spider_spawn_egg","localizedName":"Spider Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:splash_potion","unlocalizedName":"item.minecraft.splash_potion.effect.water","localizedName":"Splash Water Bottle","maxDamage":0,"maxStackSize":1},{"id":"minecraft:sponge","unlocalizedName":"block.minecraft.sponge","localizedName":"Sponge","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_boat","unlocalizedName":"item.minecraft.spruce_boat","localizedName":"Spruce Boat","maxDamage":0,"maxStackSize":1},{"id":"minecraft:spruce_button","unlocalizedName":"block.minecraft.spruce_button","localizedName":"Spruce Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_door","unlocalizedName":"block.minecraft.spruce_door","localizedName":"Spruce Door","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_fence","unlocalizedName":"block.minecraft.spruce_fence","localizedName":"Spruce Fence","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_fence_gate","unlocalizedName":"block.minecraft.spruce_fence_gate","localizedName":"Spruce Fence Gate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_leaves","unlocalizedName":"block.minecraft.spruce_leaves","localizedName":"Spruce Leaves","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_log","unlocalizedName":"block.minecraft.spruce_log","localizedName":"Spruce Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_planks","unlocalizedName":"block.minecraft.spruce_planks","localizedName":"Spruce Planks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_pressure_plate","unlocalizedName":"block.minecraft.spruce_pressure_plate","localizedName":"Spruce Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_sapling","unlocalizedName":"block.minecraft.spruce_sapling","localizedName":"Spruce Sapling","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_sign","unlocalizedName":"block.minecraft.spruce_sign","localizedName":"Spruce Sign","maxDamage":0,"maxStackSize":16},{"id":"minecraft:spruce_slab","unlocalizedName":"block.minecraft.spruce_slab","localizedName":"Spruce Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_stairs","unlocalizedName":"block.minecraft.spruce_stairs","localizedName":"Spruce Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_trapdoor","unlocalizedName":"block.minecraft.spruce_trapdoor","localizedName":"Spruce Trapdoor","maxDamage":0,"maxStackSize":64},{"id":"minecraft:spruce_wood","unlocalizedName":"block.minecraft.spruce_wood","localizedName":"Spruce Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:squid_spawn_egg","unlocalizedName":"item.minecraft.squid_spawn_egg","localizedName":"Squid Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stick","unlocalizedName":"item.minecraft.stick","localizedName":"Stick","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sticky_piston","unlocalizedName":"block.minecraft.sticky_piston","localizedName":"Sticky Piston","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone","unlocalizedName":"block.minecraft.stone","localizedName":"Stone","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_axe","unlocalizedName":"item.minecraft.stone_axe","localizedName":"Stone Axe","maxDamage":131,"maxStackSize":1},{"id":"minecraft:stone_brick_slab","unlocalizedName":"block.minecraft.stone_brick_slab","localizedName":"Stone Brick Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_brick_stairs","unlocalizedName":"block.minecraft.stone_brick_stairs","localizedName":"Stone Brick Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_brick_wall","unlocalizedName":"block.minecraft.stone_brick_wall","localizedName":"Stone Brick Wall","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_bricks","unlocalizedName":"block.minecraft.stone_bricks","localizedName":"Stone Bricks","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_button","unlocalizedName":"block.minecraft.stone_button","localizedName":"Stone Button","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_hoe","unlocalizedName":"item.minecraft.stone_hoe","localizedName":"Stone Hoe","maxDamage":131,"maxStackSize":1},{"id":"minecraft:stone_pickaxe","unlocalizedName":"item.minecraft.stone_pickaxe","localizedName":"Stone Pickaxe","maxDamage":131,"maxStackSize":1},{"id":"minecraft:stone_pressure_plate","unlocalizedName":"block.minecraft.stone_pressure_plate","localizedName":"Stone Pressure Plate","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_shovel","unlocalizedName":"item.minecraft.stone_shovel","localizedName":"Stone Shovel","maxDamage":131,"maxStackSize":1},{"id":"minecraft:stone_slab","unlocalizedName":"block.minecraft.stone_slab","localizedName":"Stone Slab","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_stairs","unlocalizedName":"block.minecraft.stone_stairs","localizedName":"Stone Stairs","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stone_sword","unlocalizedName":"item.minecraft.stone_sword","localizedName":"Stone Sword","maxDamage":131,"maxStackSize":1},{"id":"minecraft:stonecutter","unlocalizedName":"block.minecraft.stonecutter","localizedName":"Stonecutter","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stray_spawn_egg","unlocalizedName":"item.minecraft.stray_spawn_egg","localizedName":"Stray Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:string","unlocalizedName":"item.minecraft.string","localizedName":"String","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_acacia_log","unlocalizedName":"block.minecraft.stripped_acacia_log","localizedName":"Stripped Acacia Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_acacia_wood","unlocalizedName":"block.minecraft.stripped_acacia_wood","localizedName":"Stripped Acacia Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_birch_log","unlocalizedName":"block.minecraft.stripped_birch_log","localizedName":"Stripped Birch Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_birch_wood","unlocalizedName":"block.minecraft.stripped_birch_wood","localizedName":"Stripped Birch Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_dark_oak_log","unlocalizedName":"block.minecraft.stripped_dark_oak_log","localizedName":"Stripped Dark Oak Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_dark_oak_wood","unlocalizedName":"block.minecraft.stripped_dark_oak_wood","localizedName":"Stripped Dark Oak Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_jungle_log","unlocalizedName":"block.minecraft.stripped_jungle_log","localizedName":"Stripped Jungle Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_jungle_wood","unlocalizedName":"block.minecraft.stripped_jungle_wood","localizedName":"Stripped Jungle Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_oak_log","unlocalizedName":"block.minecraft.stripped_oak_log","localizedName":"Stripped Oak Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_oak_wood","unlocalizedName":"block.minecraft.stripped_oak_wood","localizedName":"Stripped Oak Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_spruce_log","unlocalizedName":"block.minecraft.stripped_spruce_log","localizedName":"Stripped Spruce Log","maxDamage":0,"maxStackSize":64},{"id":"minecraft:stripped_spruce_wood","unlocalizedName":"block.minecraft.stripped_spruce_wood","localizedName":"Stripped Spruce Wood","maxDamage":0,"maxStackSize":64},{"id":"minecraft:structure_block","unlocalizedName":"block.minecraft.structure_block","localizedName":"Structure Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:structure_void","unlocalizedName":"block.minecraft.structure_void","localizedName":"Structure Void","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sugar","unlocalizedName":"item.minecraft.sugar","localizedName":"Sugar","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sugar_cane","unlocalizedName":"block.minecraft.sugar_cane","localizedName":"Sugar Cane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:sunflower","unlocalizedName":"block.minecraft.sunflower","localizedName":"Sunflower","maxDamage":0,"maxStackSize":64},{"id":"minecraft:suspicious_stew","unlocalizedName":"item.minecraft.suspicious_stew","localizedName":"Suspicious Stew","maxDamage":0,"maxStackSize":1},{"id":"minecraft:sweet_berries","unlocalizedName":"item.minecraft.sweet_berries","localizedName":"Sweet Berries","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tall_grass","unlocalizedName":"block.minecraft.tall_grass","localizedName":"Tall Grass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:terracotta","unlocalizedName":"block.minecraft.terracotta","localizedName":"Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tipped_arrow","unlocalizedName":"item.minecraft.tipped_arrow.effect.poison","localizedName":"Arrow of Poison","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tnt","unlocalizedName":"block.minecraft.tnt","localizedName":"TNT","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tnt_minecart","unlocalizedName":"item.minecraft.tnt_minecart","localizedName":"Minecart with TNT","maxDamage":0,"maxStackSize":1},{"id":"minecraft:torch","unlocalizedName":"block.minecraft.torch","localizedName":"Torch","maxDamage":0,"maxStackSize":64},{"id":"minecraft:totem_of_undying","unlocalizedName":"item.minecraft.totem_of_undying","localizedName":"Totem of Undying","maxDamage":0,"maxStackSize":1},{"id":"minecraft:trader_llama_spawn_egg","unlocalizedName":"item.minecraft.trader_llama_spawn_egg","localizedName":"Trader Llama Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:trapped_chest","unlocalizedName":"block.minecraft.trapped_chest","localizedName":"Trapped Chest","maxDamage":0,"maxStackSize":64},{"id":"minecraft:trident","unlocalizedName":"item.minecraft.trident","localizedName":"Trident","maxDamage":250,"maxStackSize":1},{"id":"minecraft:tripwire_hook","unlocalizedName":"block.minecraft.tripwire_hook","localizedName":"Tripwire Hook","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tropical_fish","unlocalizedName":"item.minecraft.tropical_fish","localizedName":"Tropical Fish","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tropical_fish_bucket","unlocalizedName":"item.minecraft.tropical_fish_bucket","localizedName":"Bucket of Tropical Fish","maxDamage":0,"maxStackSize":1},{"id":"minecraft:tropical_fish_spawn_egg","unlocalizedName":"item.minecraft.tropical_fish_spawn_egg","localizedName":"Tropical Fish Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tube_coral","unlocalizedName":"block.minecraft.tube_coral","localizedName":"Tube Coral","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tube_coral_block","unlocalizedName":"block.minecraft.tube_coral_block","localizedName":"Tube Coral Block","maxDamage":0,"maxStackSize":64},{"id":"minecraft:tube_coral_fan","unlocalizedName":"block.minecraft.tube_coral_fan","localizedName":"Tube Coral Fan","maxDamage":0,"maxStackSize":64},{"id":"minecraft:turtle_egg","unlocalizedName":"block.minecraft.turtle_egg","localizedName":"Turtle Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:turtle_helmet","unlocalizedName":"item.minecraft.turtle_helmet","localizedName":"Turtle Shell","maxDamage":275,"maxStackSize":1},{"id":"minecraft:turtle_spawn_egg","unlocalizedName":"item.minecraft.turtle_spawn_egg","localizedName":"Turtle Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:vex_spawn_egg","unlocalizedName":"item.minecraft.vex_spawn_egg","localizedName":"Vex Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:villager_spawn_egg","unlocalizedName":"item.minecraft.villager_spawn_egg","localizedName":"Villager Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:vindicator_spawn_egg","unlocalizedName":"item.minecraft.vindicator_spawn_egg","localizedName":"Vindicator Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:vine","unlocalizedName":"block.minecraft.vine","localizedName":"Vines","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wandering_trader_spawn_egg","unlocalizedName":"item.minecraft.wandering_trader_spawn_egg","localizedName":"Wandering Trader Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:water_bucket","unlocalizedName":"item.minecraft.water_bucket","localizedName":"Water Bucket","maxDamage":0,"maxStackSize":1},{"id":"minecraft:wet_sponge","unlocalizedName":"block.minecraft.wet_sponge","localizedName":"Wet Sponge","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wheat","unlocalizedName":"item.minecraft.wheat","localizedName":"Wheat","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wheat_seeds","unlocalizedName":"item.minecraft.wheat_seeds","localizedName":"Wheat Seeds","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_banner","unlocalizedName":"block.minecraft.white_banner","localizedName":"White Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:white_bed","unlocalizedName":"block.minecraft.white_bed","localizedName":"White Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:white_carpet","unlocalizedName":"block.minecraft.white_carpet","localizedName":"White Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_concrete","unlocalizedName":"block.minecraft.white_concrete","localizedName":"White Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_concrete_powder","unlocalizedName":"block.minecraft.white_concrete_powder","localizedName":"White Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_dye","unlocalizedName":"item.minecraft.white_dye","localizedName":"White Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_glazed_terracotta","unlocalizedName":"block.minecraft.white_glazed_terracotta","localizedName":"White Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_shulker_box","unlocalizedName":"block.minecraft.white_shulker_box","localizedName":"White Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:white_stained_glass","unlocalizedName":"block.minecraft.white_stained_glass","localizedName":"White Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_stained_glass_pane","unlocalizedName":"block.minecraft.white_stained_glass_pane","localizedName":"White Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_terracotta","unlocalizedName":"block.minecraft.white_terracotta","localizedName":"White Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_tulip","unlocalizedName":"block.minecraft.white_tulip","localizedName":"White Tulip","maxDamage":0,"maxStackSize":64},{"id":"minecraft:white_wool","unlocalizedName":"block.minecraft.white_wool","localizedName":"White Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:witch_spawn_egg","unlocalizedName":"item.minecraft.witch_spawn_egg","localizedName":"Witch Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wither_rose","unlocalizedName":"block.minecraft.wither_rose","localizedName":"Wither Rose","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wither_skeleton_skull","unlocalizedName":"block.minecraft.wither_skeleton_skull","localizedName":"Wither Skeleton Skull","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wither_skeleton_spawn_egg","unlocalizedName":"item.minecraft.wither_skeleton_spawn_egg","localizedName":"Wither Skeleton Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wolf_spawn_egg","unlocalizedName":"item.minecraft.wolf_spawn_egg","localizedName":"Wolf Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:wooden_axe","unlocalizedName":"item.minecraft.wooden_axe","localizedName":"Wooden Axe","maxDamage":59,"maxStackSize":1},{"id":"minecraft:wooden_hoe","unlocalizedName":"item.minecraft.wooden_hoe","localizedName":"Wooden Hoe","maxDamage":59,"maxStackSize":1},{"id":"minecraft:wooden_pickaxe","unlocalizedName":"item.minecraft.wooden_pickaxe","localizedName":"Wooden Pickaxe","maxDamage":59,"maxStackSize":1},{"id":"minecraft:wooden_shovel","unlocalizedName":"item.minecraft.wooden_shovel","localizedName":"Wooden Shovel","maxDamage":59,"maxStackSize":1},{"id":"minecraft:wooden_sword","unlocalizedName":"item.minecraft.wooden_sword","localizedName":"Wooden Sword","maxDamage":59,"maxStackSize":1},{"id":"minecraft:writable_book","unlocalizedName":"item.minecraft.writable_book","localizedName":"Book and Quill","maxDamage":0,"maxStackSize":1},{"id":"minecraft:written_book","unlocalizedName":"item.minecraft.written_book","localizedName":"Written Book","maxDamage":0,"maxStackSize":16},{"id":"minecraft:yellow_banner","unlocalizedName":"block.minecraft.yellow_banner","localizedName":"Yellow Banner","maxDamage":0,"maxStackSize":16},{"id":"minecraft:yellow_bed","unlocalizedName":"block.minecraft.yellow_bed","localizedName":"Yellow Bed","maxDamage":0,"maxStackSize":1},{"id":"minecraft:yellow_carpet","unlocalizedName":"block.minecraft.yellow_carpet","localizedName":"Yellow Carpet","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_concrete","unlocalizedName":"block.minecraft.yellow_concrete","localizedName":"Yellow Concrete","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_concrete_powder","unlocalizedName":"block.minecraft.yellow_concrete_powder","localizedName":"Yellow Concrete Powder","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_dye","unlocalizedName":"item.minecraft.yellow_dye","localizedName":"Yellow Dye","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_glazed_terracotta","unlocalizedName":"block.minecraft.yellow_glazed_terracotta","localizedName":"Yellow Glazed Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_shulker_box","unlocalizedName":"block.minecraft.yellow_shulker_box","localizedName":"Yellow Shulker Box","maxDamage":0,"maxStackSize":1},{"id":"minecraft:yellow_stained_glass","unlocalizedName":"block.minecraft.yellow_stained_glass","localizedName":"Yellow Stained Glass","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_stained_glass_pane","unlocalizedName":"block.minecraft.yellow_stained_glass_pane","localizedName":"Yellow Stained Glass Pane","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_terracotta","unlocalizedName":"block.minecraft.yellow_terracotta","localizedName":"Yellow Terracotta","maxDamage":0,"maxStackSize":64},{"id":"minecraft:yellow_wool","unlocalizedName":"block.minecraft.yellow_wool","localizedName":"Yellow Wool","maxDamage":0,"maxStackSize":64},{"id":"minecraft:zombie_head","unlocalizedName":"block.minecraft.zombie_head","localizedName":"Zombie Head","maxDamage":0,"maxStackSize":64},{"id":"minecraft:zombie_horse_spawn_egg","unlocalizedName":"item.minecraft.zombie_horse_spawn_egg","localizedName":"Zombie Horse Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:zombie_pigman_spawn_egg","unlocalizedName":"item.minecraft.zombie_pigman_spawn_egg","localizedName":"Zombie Pigman Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:zombie_spawn_egg","unlocalizedName":"item.minecraft.zombie_spawn_egg","localizedName":"Zombie Spawn Egg","maxDamage":0,"maxStackSize":64},{"id":"minecraft:zombie_villager_spawn_egg","unlocalizedName":"item.minecraft.zombie_villager_spawn_egg","localizedName":"Zombie Villager Spawn Egg","maxDamage":0,"maxStackSize":64}]