diff --git a/src/main/java/de/bixilon/minosoft/data/mappings/blocks/Block.java b/src/main/java/de/bixilon/minosoft/data/mappings/blocks/Block.java
index 3088a753e..e811727d6 100644
--- a/src/main/java/de/bixilon/minosoft/data/mappings/blocks/Block.java
+++ b/src/main/java/de/bixilon/minosoft/data/mappings/blocks/Block.java
@@ -49,6 +49,30 @@ public class Block {
this.rotation = BlockRotations.NONE;
}
+ public Block(String mod, String identifier, String properties) {
+ this.mod = mod;
+ this.identifier = identifier;
+ this.properties = new HashSet<>();
+ BlockRotations rot = BlockRotations.NONE;
+ for (String part : properties.split(",")) {
+ if (part.equals("")) {
+ continue;
+ }
+ String[] subParts = part.split("=");
+ if (!(subParts.length == 2)) {
+ throw new IllegalArgumentException("too many or few = in " + part);
+ }
+ String key = subParts[0];
+ String value = subParts[1];
+ if (Blocks.getPropertiesMapping().containsKey(key)) {
+ this.properties.add(Blocks.getPropertiesMapping().get(key).get(value));
+ } else if (Blocks.getRotationMapping().containsKey(key)) {
+ rot = Blocks.getRotationMapping().get(value);
+ }
+ }
+ rotation = rot;
+ }
+
public String getMod() {
return mod;
}
diff --git a/src/main/java/de/bixilon/minosoft/render/AssetsLoader.java b/src/main/java/de/bixilon/minosoft/render/AssetsLoader.java
deleted file mode 100644
index 1beceac80..000000000
--- a/src/main/java/de/bixilon/minosoft/render/AssetsLoader.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Lukas Eisenhauer
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render;
-
-import de.bixilon.minosoft.render.blockModels.BlockModelLoader;
-import de.bixilon.minosoft.render.entityModels.EntityModelLoader;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-
-public class AssetsLoader {
- TextureLoader textureLoader;
- BlockModelLoader blockModelLoader;
- EntityModelLoader entityModelLoader;
-
- public AssetsLoader() {
- blockModelLoader = new BlockModelLoader();
- entityModelLoader = new EntityModelLoader();
- textureLoader = new TextureLoader(blockModelLoader.getTextures(), blockModelLoader.getTints());
- blockModelLoader.applyTextures(textureLoader);
- }
-
-
- public TextureLoader getTextureLoader() {
- return textureLoader;
- }
-
- public BlockModelLoader getBlockModelLoader() {
- return blockModelLoader;
- }
-
- public EntityModelLoader getEntityModelLoader() {
- return entityModelLoader;
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/WorldRenderer.java b/src/main/java/de/bixilon/minosoft/render/WorldRenderer.java
index 6dff8ca46..accad9e92 100644
--- a/src/main/java/de/bixilon/minosoft/render/WorldRenderer.java
+++ b/src/main/java/de/bixilon/minosoft/render/WorldRenderer.java
@@ -16,6 +16,7 @@ package de.bixilon.minosoft.render;
import de.bixilon.minosoft.data.mappings.blocks.Block;
import de.bixilon.minosoft.data.world.*;
import de.bixilon.minosoft.protocol.network.Connection;
+import de.bixilon.minosoft.render.blockModels.BlockModelLoader;
import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
import de.bixilon.minosoft.render.blockModels.Face.RenderConstants;
import org.apache.commons.collections.primitives.ArrayFloatList;
@@ -29,7 +30,7 @@ import static org.lwjgl.opengl.GL11.*;
public class WorldRenderer {
private final ConcurrentHashMap> faces;
- private AssetsLoader assetsLoader;
+ private BlockModelLoader modelLoader;
private LinkedBlockingQueue queuedMapData;
@@ -39,7 +40,7 @@ public class WorldRenderer {
public void init() {
queuedMapData = new LinkedBlockingQueue<>();
- assetsLoader = new AssetsLoader();
+ modelLoader = new BlockModelLoader();
}
public void startChunkPreparation(Connection connection) {
@@ -167,12 +168,12 @@ public class WorldRenderer {
yield nibbleBlocks.get(new ChunkNibbleLocation(location.getX(), location.getY(), location.getZ() + 1));
}
};
- if (dependedBlock == null || !assetsLoader.getBlockModelLoader().isFull(dependedBlock)) {
+ if (dependedBlock == null || modelLoader.isFull(dependedBlock, FaceOrientation.inverse(orientation))) {
facesToDraw.add(orientation);
}
}
if (!facesToDraw.isEmpty()) {
- nibbleMap.addAll(assetsLoader.getBlockModelLoader().prepare(block, facesToDraw, new BlockPosition(chunkLocation, sectionHeight, location)));
+ nibbleMap.addAll(modelLoader.prepare(block, facesToDraw, new BlockPosition(chunkLocation, sectionHeight, location)));
}
});
return nibbleMap;
@@ -181,7 +182,7 @@ public class WorldRenderer {
public void draw() {
glPushMatrix();
- glBindTexture(GL_TEXTURE_2D, assetsLoader.getTextureLoader().getTextureID());
+ glBindTexture(GL_TEXTURE_2D, modelLoader.getTextureLoader().getTextureID());
glBegin(GL_QUADS);
for (ConcurrentHashMap chunk : faces.values()) {
for (ArrayFloatList nibble : chunk.values()) {
@@ -195,10 +196,6 @@ public class WorldRenderer {
glEnd();
}
- public AssetsLoader getAssetsLoader() {
- return assetsLoader;
- }
-
private ChunkNibble getChunkNibbleOfWorld(ConcurrentHashMap world, ChunkLocation location, byte sectionHeight) {
if (world.containsKey(location) && world.get(location).getNibbles().containsKey(sectionHeight)) {
return world.get(location).getNibbles().get(sectionHeight);
@@ -206,4 +203,7 @@ public class WorldRenderer {
return null;
}
+ public BlockModelLoader getBlockModelLoader() {
+ return modelLoader;
+ }
}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfiguration.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfiguration.java
deleted file mode 100644
index 0a7bc6578..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfiguration.java
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.mappings.blocks.Blocks;
-
-import java.util.HashMap;
-import java.util.HashSet;
-
-public class BlockConfiguration {
- private BlockRotations rotation;
- private HashSet blockProperties;
-
- public BlockConfiguration(JsonObject json) {
- if (json.has("facing")) {
- rotation = Blocks.getRotationMapping().get(json.get("facing").getAsString());
- json.remove("facing");
- }
- if (json.has("rotation")) {
- rotation = Blocks.getRotationMapping().get(json.get("rotation").getAsString());
- json.remove("rotation");
- }
- if (json.has("axis")) {
- rotation = Blocks.getRotationMapping().get(json.get("axis").getAsString());
- json.remove("axis");
- }
-
- blockProperties = new HashSet<>();
- for (String propertyName : json.keySet()) {
- HashMap properties = Blocks.getPropertiesMapping().get(propertyName);
- if (properties == null) {
- throw new RuntimeException(String.format("Unknown block property: %s", propertyName));
- }
- BlockProperties property = properties.get(json.get(propertyName).getAsString());
- if (property == null) {
- throw new RuntimeException(String.format("Unknown block property: %s -> %s", propertyName, json.get(propertyName).getAsString()));
- }
- blockProperties.add(property);
- }
- }
-
- public BlockConfiguration() {
- }
-
- public BlockRotations getRotation() {
- return rotation;
- }
-
- public HashSet getBlockProperties() {
- return blockProperties;
- }
-
- public boolean equals(BlockConfiguration blockConfiguration) {
- return rotation.equals(blockConfiguration.getRotation()) && blockProperties.equals(blockConfiguration.getBlockProperties());
- }
-
- public boolean contains(Block block) {
- if (rotation != null && block.getRotation() != rotation) {
- return false;
- }
- for (BlockProperties property : blockProperties) {
- if (!block.getProperties().contains(property)) {
- return false;
- }
- }
- return true;
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfigurationTrue.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfigurationTrue.java
deleted file mode 100644
index e0910559e..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockConfigurationTrue.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels;
-
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-
-public class BlockConfigurationTrue extends BlockConfiguration {
- @Override
- public boolean contains(Block block) {
- return true;
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModel.java
new file mode 100644
index 000000000..a42098317
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModel.java
@@ -0,0 +1,153 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.render.blockModels;
+
+import com.google.gson.JsonElement;
+import com.google.gson.JsonObject;
+import de.bixilon.minosoft.data.world.BlockPosition;
+import de.bixilon.minosoft.render.blockModels.Face.Axis;
+import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
+import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
+import de.bixilon.minosoft.render.texture.TextureLoader;
+import org.apache.commons.collections.primitives.ArrayFloatList;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.HashSet;
+
+public class BlockModel {
+ private final ArrayList subBlocks;
+ private final boolean[] full; // minor memory improvement over a Map
+
+ public BlockModel(JsonObject block, JsonObject allModels) {
+ subBlocks = load(block, allModels);
+ full = new boolean[]{true, true, true, true, true, true};
+ }
+
+ public BlockModel(BlockModel blockModel, JsonObject json) {
+ if (blockModel != null) {
+ subBlocks = blockModel.getSubBlocks();
+ } else {
+ subBlocks = new ArrayList<>();
+ }
+ if (json.has("x")) {
+ for (SubBlock subBlock : subBlocks) {
+ subBlock.rotate(Axis.X, json.get("x").getAsInt());
+ }
+ }
+ if (json.has("y")) {
+ for (SubBlock subBlock : subBlocks) {
+ subBlock.rotate(Axis.X, json.get("y").getAsInt());
+ }
+ }
+ if (json.has("z")) {
+ for (SubBlock subBlock : subBlocks) {
+ subBlock.rotate(Axis.X, json.get("z").getAsInt());
+ }
+ }
+ full = createFullValues();
+ }
+
+ public BlockModel(ArrayList models) {
+ subBlocks = new ArrayList<>();
+ for (BlockModel model : models) {
+ subBlocks.addAll(model.getSubBlocks());
+ }
+ full = createFullValues();
+ }
+
+ static ArrayList load(JsonObject json, JsonObject allModels, HashMap variables) {
+ ArrayList result = new ArrayList<>();
+ if (json.has("textures")) {
+ // read the textures into a variable hashmap
+ JsonObject textures = json.getAsJsonObject("textures");
+ for (String texture : textures.keySet()) {
+ if (texture.contains("#") && variables.containsKey(texture)) {
+ variables.put("#" + texture, variables.get(texture));
+ } else {
+ variables.put("#" + texture, textures.get(texture).getAsString());
+ }
+ }
+ }
+ if (json.has("elements")) {
+ for (JsonElement subBlockJson : json.get("elements").getAsJsonArray()) {
+ result.add(new SubBlock(subBlockJson.getAsJsonObject(), variables));
+ }
+ } else if (json.has("parent") && !json.get("parent").getAsString().equals("block/block")) {
+ String parent = json.get("parent").getAsString();
+ if (parent.equals("block/block")) {
+ return result;
+ }
+ String parentIdentifier = parent.substring(parent.lastIndexOf("/") + 1);
+ result.addAll(load(allModels.get(parentIdentifier).getAsJsonObject(), allModels, variables));
+ }
+ return result;
+ }
+
+ static ArrayList load(JsonObject json, JsonObject allModels) {
+ return load(json, allModels, new HashMap<>());
+ }
+
+ private boolean[] createFullValues() {
+ boolean[] result = new boolean[6];
+ outer:
+ for (FaceOrientation orientation : FaceOrientation.values()) {
+ for (SubBlock subBlock : subBlocks) {
+ if (subBlock.getFull()[orientation.getId()]) {
+ result[orientation.getId()] = true;
+ continue outer;
+ }
+ }
+ }
+ return result;
+ }
+
+ public boolean isFull(FaceOrientation orientation) {
+ return full[orientation.getId()];
+ }
+
+ public ArrayFloatList prepare(HashSet facesToDraw, BlockPosition position) {
+ ArrayFloatList result = new ArrayFloatList();
+ for (SubBlock subBlock : subBlocks) {
+ result.addAll(subBlock.getFaces(facesToDraw, position));
+ }
+ return result;
+ }
+
+ public boolean isFull() {
+ return true;
+ }
+
+ public HashSet getAllTextures() {
+ HashSet result = new HashSet<>();
+ for (SubBlock subBlock : subBlocks) {
+ result.addAll(subBlock.getTextures());
+ }
+ return result;
+ }
+
+ public void applyTextures(String mod, TextureLoader loader) {
+ for (SubBlock subBlock : subBlocks) {
+ subBlock.applyTextures(mod, loader);
+ }
+ }
+
+ public ArrayList getSubBlocks() {
+ return subBlocks;
+ }
+
+ public boolean[] getFull() {
+ return full;
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelBlockWrapper.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelBlockWrapper.java
new file mode 100644
index 000000000..3b3127a94
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelBlockWrapper.java
@@ -0,0 +1,52 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.render.blockModels;
+
+import de.bixilon.minosoft.data.mappings.blocks.Block;
+import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
+
+public class BlockModelBlockWrapper {
+ Block block;
+
+ public BlockModelBlockWrapper(Block block) {
+ this.block = block;
+ }
+
+ public Block getBlock() {
+ return block;
+ }
+
+ @Override
+ public int hashCode() {
+ return block.getMod().hashCode() * block.getIdentifier().hashCode();
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (super.equals(obj)) {
+ return true;
+ }
+ BlockModelBlockWrapper their = (BlockModelBlockWrapper) obj;
+ if (block.equals(their.getBlock())) {
+ return true;
+ }
+ if (!(block.getMod().equals(their.getBlock().getMod()) && block.getIdentifier().equals(their.getBlock().getIdentifier()))) {
+ return false;
+ }
+ if (block.getRotation() == BlockRotations.NONE || their.getBlock().getRotation() == BlockRotations.NONE || block.getProperties().size() == 0 || their.getBlock().getProperties().size() == 0) {
+ return true;
+ }
+ return block.getProperties().equals(their.getBlock().getProperties()) && block.getMod().equals(their.getBlock().getMod());
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelInterface.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelInterface.java
deleted file mode 100644
index c827a748e..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelInterface.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels;
-
-import com.google.common.collect.HashBiMap;
-import com.google.gson.JsonElement;
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.Config;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.logging.Log;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import de.bixilon.minosoft.util.Util;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Map;
-
-public interface BlockModelInterface {
- HashBiMap rotationAdjust = HashBiMap.create(Map.of(BlockRotations.EAST, BlockRotations.SOUTH, BlockRotations.SOUTH, BlockRotations.WEST, BlockRotations.WEST, BlockRotations.NORTH, BlockRotations.NORTH, BlockRotations.EAST));
-
- static void applyConfigurationTextures(HashSet subBlocks, String mod, TextureLoader loader) {
- for (SubBlock subBlock : subBlocks) {
- subBlock.applyTextures(mod, loader);
- }
- }
-
- static ArrayFloatList prepareState(HashSet subBlocks, BlockRotations rotation, HashSet facesToDraw, BlockPosition position) {
- ArrayFloatList result = new ArrayFloatList();
- for (SubBlock subBlock : subBlocks) {
- result.addAll(subBlock.getFaces(new Block("", "", rotation), facesToDraw, position));
- }
- return result;
- }
-
- static HashSet getTextures(HashSet subBlocks) {
- HashSet result = new HashSet<>();
- for (SubBlock subBlock : subBlocks) {
- result.addAll(subBlock.getTextures());
- }
- return result;
- }
-
- static HashSet load(String mod, String identifier, HashMap variables) {
- String path = Config.homeDir + "assets/" + mod + "/models/block/" + identifier + ".json";
- JsonObject json = null;
- try {
- json = Util.readJsonFromFile(path);
- } catch (IOException e) {
- e.printStackTrace();
- Log.warn("File not found: " + path);
- return null;
- }
- HashSet result = new HashSet<>();
- if (json.has("textures")) {
- // read the textures into a variable hashmap
- JsonObject textures = json.getAsJsonObject("textures");
- for (String texture : textures.keySet()) {
- if (texture.contains("#") && variables.containsKey(texture)) {
- variables.put("#" + texture, variables.get(texture));
- } else {
- variables.put("#" + texture, textures.get(texture).getAsString());
- }
- }
- }
- if (json.has("elements")) {
- for (JsonElement subBlockJson : json.get("elements").getAsJsonArray()) {
- result.add(new SubBlock(subBlockJson.getAsJsonObject(), variables));
- }
- } else if (json.has("parent") && !json.get("parent").getAsString().equals("block/block")) {
- String parent = json.get("parent").getAsString();
- String parentIdentifier = parent.substring(parent.lastIndexOf("/") + 1);
- result.addAll(load(mod, parentIdentifier, variables));
- }
- return result;
- }
-
- static HashSet load(String mod, String identifier) {
- return load(mod, identifier, new HashMap<>());
- }
-
- ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position);
-
- boolean isFull();
-
- HashSet getAllTextures();
-
- void applyTextures(String mod, TextureLoader loader);
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java
index 0796e29fc..e3738501e 100644
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java
@@ -19,47 +19,89 @@ import de.bixilon.minosoft.data.mappings.blocks.Block;
import de.bixilon.minosoft.data.mappings.blocks.Blocks;
import de.bixilon.minosoft.data.world.BlockPosition;
import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.specialModels.*;
import de.bixilon.minosoft.render.texture.TextureLoader;
import de.bixilon.minosoft.util.Util;
import org.apache.commons.collections.primitives.ArrayFloatList;
import java.io.IOException;
+import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
public class BlockModelLoader {
- private final HashMap> blockDescriptionMap;
- private final HashMap> textures;
- HashMap> tints;
+ HashMap blockMap;
+ TextureLoader loader;
public BlockModelLoader() {
- blockDescriptionMap = new HashMap<>();
- tints = new HashMap<>();
- textures = new HashMap<>();
+ blockMap = new HashMap<>();
+ HashMap mods = new HashMap<>();
+ HashMap> tints = new HashMap<>();
try {
- JsonObject json = Util.readJsonAsset("mapping/blockModels.json");
- String mod = "minecraft";
- tints.put(mod, readTints(json));
- textures.put(mod, loadModels(json.get("blocks").getAsJsonObject(), mod));
+ //TODO: modding
+ mods.put("minecraft", Util.readJsonAsset("mapping/blockModels.json"));
} catch (IOException e) {
e.printStackTrace();
}
+ HashMap> blockModels = new HashMap<>();
+ for (Map.Entry mod : mods.entrySet()) {
+ blockModels.put(mod.getKey(), loadModels(mod));
+ tints.put(mod.getKey(), readTints(mod.getValue()));
+ }
+ loader = new TextureLoader(getTextures(blockModels), tints);
+ applyTextures(blockModels);
+ for (Map.Entry mod : mods.entrySet()) {
+ loadBlocks(mod, blockModels.get(mod.getKey()));
+ }
}
- public HashMap> getTints() {
- return tints;
+ private void loadBlocks(Map.Entry mod, HashMap blockModels) {
+ for (Map.Entry blockEntry : mod.getValue().get("blockStates").getAsJsonObject().entrySet()) {
+ JsonObject block = blockEntry.getValue().getAsJsonObject();
+ if (block.has("variants")) {
+ JsonObject variants = block.get("variants").getAsJsonObject();
+ for (Map.Entry variant : variants.entrySet()) {
+ if (variant.getValue().isJsonArray()) {
+ ArrayList models = new ArrayList<>();
+ for (JsonElement model : variant.getValue().getAsJsonArray()) {
+ models.add(new BlockModel(blockModels.get(blockEntry.getKey()), model.getAsJsonObject()));
+ }
+ blockMap.put(new BlockModelBlockWrapper(new Block(mod.getKey(), blockEntry.getKey(), variant.getKey())), new BlockModel(models));
+ } else {
+ String fullModel = variant.getValue().getAsJsonObject().get("model").getAsString();
+ String modelName = fullModel.substring(fullModel.indexOf("/") + 1);
+ BlockModel model = blockModels.get(modelName);
+ blockMap.put(new BlockModelBlockWrapper(new Block(mod.getKey(), blockEntry.getKey(), variant.getKey())), new BlockModel(model, variant.getValue().getAsJsonObject()));
+ }
+ }
+ }
+ }
}
- public HashMap> getTextures() {
+ private HashMap loadModels(Map.Entry mod) {
+ HashMap modMap = new HashMap<>();
+ for (Map.Entry block : mod.getValue().get("blockModels").getAsJsonObject().entrySet()) {
+ modMap.put(block.getKey(), new BlockModel(block.getValue().getAsJsonObject(), mod.getValue().get("blockModels").getAsJsonObject()));
+ }
+ return modMap;
+ }
+
+ public HashMap> getTextures(HashMap> blockModels) {
+ HashMap> textures = new HashMap<>();
+ for (Map.Entry> mod : blockModels.entrySet()) {
+ HashSet modTextures = new HashSet<>();
+ for (BlockModel blockModel : mod.getValue().values()) {
+ modTextures.addAll(blockModel.getAllTextures());
+ }
+ textures.put(mod.getKey(), modTextures);
+ }
return textures;
}
- public void applyTextures(TextureLoader loader) {
- for (Map.Entry> mod : blockDescriptionMap.entrySet()) {
- for (Map.Entry block : mod.getValue().entrySet()) {
+ public void applyTextures(HashMap> blockModels) {
+ for (Map.Entry> mod : blockModels.entrySet()) {
+ for (Map.Entry block : mod.getValue().entrySet()) {
block.getValue().applyTextures(mod.getKey(), loader);
}
}
@@ -81,57 +123,30 @@ public class BlockModelLoader {
return result;
}
- private HashSet loadModels(JsonObject blockList, String mod) {
- HashSet result = new HashSet<>();
- blockDescriptionMap.put(mod, new HashMap<>());
- for (String identifier : blockList.keySet()) {
- JsonObject block = blockList.get(identifier).getAsJsonObject();
- result.addAll(loadModel(mod, identifier, block));
+ public BlockModel getBlockModel(Block block) {
+ BlockModel model = blockMap.get(new BlockModelBlockWrapper(block));
+ if (model == null) {
+ throw new RuntimeException("block " + block + " could not be found");
}
- return result;
+ return blockMap.get(new BlockModelBlockWrapper(block));
}
- private HashSet loadModel(String mod, String identifier, JsonObject block) {
- HashSet result = new HashSet<>();
- try {
- String type = "";
- if (block.has("type")) {
- type = block.get("type").getAsString();
- }
- BlockModelInterface model = switch (type) {
- case "fire" -> new FireModel(block, mod);
- case "stairs" -> new StairsModel(block, mod);
- case "wire" -> new WireModel(block, mod);
- case "crop" -> new CropModel(block, mod);
- case "door" -> new DoorModel(block, mod);
- case "fence" -> new FenceModel(block, mod);
- case "mushroom" -> new MushroomModel(block, mod);
- default -> new BlockModel(block, mod);
- };
- result.addAll(model.getAllTextures());
- HashMap modMap = blockDescriptionMap.get(mod);
- modMap.put(identifier, model);
- } catch (Exception e) {
- e.printStackTrace();
- System.out.println(mod + ":" + identifier);
- System.exit(-1);
- }
- return result;
- }
-
- public BlockModelInterface getBlockDescription(Block block) {
- HashMap modList = blockDescriptionMap.get(block.getMod());
- return modList.get(block.getIdentifier());
- }
-
- public boolean isFull(Block block) {
+ public boolean isFull(Block block, FaceOrientation orientation) {
if (block == null || block.equals(Blocks.nullBlock)) {
return false;
}
- return getBlockDescription(block).isFull();
+ return getBlockModel(block).isFull(orientation);
+ }
+
+ public boolean isFull(Block block) {
+ return block != null && !block.equals(Blocks.nullBlock);
}
public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- return getBlockDescription(block).prepare(block, facesToDraw, position);
+ return getBlockModel(block).prepare(facesToDraw, position);
+ }
+
+ public TextureLoader getTextureLoader() {
+ return loader;
}
}
\ No newline at end of file
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/Face/FaceOrientation.java b/src/main/java/de/bixilon/minosoft/render/blockModels/Face/FaceOrientation.java
index 76d054981..38b2e2d3f 100644
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/Face/FaceOrientation.java
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/Face/FaceOrientation.java
@@ -14,10 +14,31 @@
package de.bixilon.minosoft.render.blockModels.Face;
public enum FaceOrientation {
- EAST,
- WEST,
- UP,
- DOWN,
- SOUTH,
- NORTH
+ EAST(0),
+ WEST(1),
+ UP(2),
+ DOWN(3),
+ SOUTH(4),
+ NORTH(5);
+
+ private final int id;
+
+ FaceOrientation(int id) {
+ this.id = id;
+ }
+
+ public static FaceOrientation inverse(FaceOrientation orientation) {
+ return switch (orientation) {
+ case EAST -> WEST;
+ case WEST -> EAST;
+ case UP -> DOWN;
+ case DOWN -> UP;
+ case NORTH -> SOUTH;
+ case SOUTH -> NORTH;
+ };
+ }
+
+ public int getId() {
+ return id;
+ }
}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/BlockModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/BlockModel.java
deleted file mode 100644
index a6fd4f071..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/BlockModel.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonElement;
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.logging.Log;
-import de.bixilon.minosoft.render.blockModels.BlockConfiguration;
-import de.bixilon.minosoft.render.blockModels.BlockConfigurationTrue;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Map;
-
-public class BlockModel implements BlockModelInterface {
- private final HashMap> blockConfigurationStates;
- private final boolean isFull;
-
- public BlockModel(JsonObject block, String mod) {
- blockConfigurationStates = new HashMap<>();
-
- if (block.has("blockModel")) {
- blockConfigurationStates.put(new BlockConfigurationTrue(), BlockModelInterface.load(mod, block.get("blockModel").getAsString()));
- } else if (block.has("states")) {
- for (JsonElement element : block.get("states").getAsJsonArray()) {
- JsonObject state = element.getAsJsonObject();
- BlockConfiguration configuration = new BlockConfiguration(state.get("properties").getAsJsonObject());
- blockConfigurationStates.put(configuration, BlockModelInterface.load(mod, state.get("blockModel").getAsString()));
- }
- }
- // TODO
- isFull = true;
- }
-
- public static ArrayFloatList prepareBlockState(HashSet subBlocks, HashSet facesToDraw, Block block, BlockPosition position) {
- ArrayFloatList result = new ArrayFloatList();
- for (SubBlock subBlock : subBlocks) {
- result.addAll(subBlock.getFaces(block, facesToDraw, position));
- }
- return result;
- }
-
- public boolean isFull() {
- return isFull;
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- for (Map.Entry> entry : blockConfigurationStates.entrySet()) {
- if (entry.getKey().contains(block)) {
- return prepareBlockState(entry.getValue(), facesToDraw, block, position);
- }
- }
- Log.warn("no matching blockConfiguration found! Block: " + block.toString());
- return new ArrayFloatList();
- }
-
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- for (HashSet subBlocks : blockConfigurationStates.values()) {
- for (SubBlock subBlock : subBlocks) {
- result.addAll(subBlock.getTextures());
- }
- }
- return result;
- }
-
- public void applyTextures(String mod, TextureLoader loader) {
- for (HashSet subBlocks : blockConfigurationStates.values()) {
- BlockModelInterface.applyConfigurationTextures(subBlocks, mod, loader);
- }
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/CropModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/CropModel.java
deleted file mode 100644
index bb673c6db..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/CropModel.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashMap;
-import java.util.HashSet;
-
-import static de.bixilon.minosoft.render.blockModels.specialModels.BlockModel.prepareBlockState;
-
-public class CropModel implements BlockModelInterface {
- private final HashMap> modelMap;
-
- public CropModel(JsonObject block, String mod) {
- int stages = block.get("stages").getAsInt();
- modelMap = new HashMap<>();
- for (int i = 0; i < stages; i++) {
- modelMap.put(String.format("%s%d", "AGE_", i), BlockModelInterface.load(mod, String.format("%s%d", block.get("base_name").getAsString(), i)));
- }
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- for (BlockProperties property : block.getProperties()) {
- if (modelMap.containsKey(property.name())) {
- return prepareBlockState(modelMap.get(property.name()), facesToDraw, block, position);
- }
- }
- throw new RuntimeException("Failed to prepare block: " + block.toString());
- }
-
- public boolean isFull() {
- return false;
- }
-
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- for (HashSet subBlocks : modelMap.values()) {
- for (SubBlock subBlock : subBlocks) {
- result.addAll(subBlock.getTextures());
- }
- }
- return result;
- }
-
- public void applyTextures(String mod, TextureLoader loader) {
- for (HashSet subBlocks : modelMap.values()) {
- BlockModelInterface.applyConfigurationTextures(subBlocks, mod, loader);
- }
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/DoorModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/DoorModel.java
deleted file mode 100644
index 16edaca2e..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/DoorModel.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.logging.Log;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-import static de.bixilon.minosoft.render.blockModels.specialModels.BlockModel.prepareBlockState;
-
-public class DoorModel implements BlockModelInterface {
- private final HashSet bottom;
- private final HashSet bottom_hinge;
-
- private final HashSet top;
- private final HashSet top_hinge;
-
- public DoorModel(JsonObject block, String mod) {
- bottom = BlockModelInterface.load(mod, block.get("bottom").getAsString());
- bottom_hinge = BlockModelInterface.load(mod, block.get("bottom_hinge").getAsString());
-
- top = BlockModelInterface.load(mod, block.get("top").getAsString());
- top_hinge = BlockModelInterface.load(mod, block.get("top_hinge").getAsString());
- }
-
- private static ArrayFloatList prepareHinge(HashSet bottom, HashSet top, Block block, HashSet facesToDraw, BlockPosition position) {
- if (block.getProperties().contains(BlockProperties.OPEN)) {
- return prepareHalf(bottom, top, rotationAdjust.inverse().get(block.getRotation()), block, facesToDraw, position);
- } else {
- return prepareHalf(bottom, top, block.getRotation(), block, facesToDraw, position);
- }
- }
-
- private static ArrayFloatList prepareHalf(HashSet bottom, HashSet top, BlockRotations rotation, Block block, HashSet facesToDraw, BlockPosition position) {
- if (block.getProperties().contains(BlockProperties.HALF_LOWER)) {
- return prepareBlockState(bottom, facesToDraw, new Block("", "", rotation), position);
- } else if (block.getProperties().contains(BlockProperties.HALF_UPPER)) {
- return prepareBlockState(top, facesToDraw, new Block("", "", rotation), position);
- }
- Log.warn("now");
- return null;
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- if (block.getProperties().contains(BlockProperties.HINGE_LEFT)) {
- return prepareHinge(bottom, top, block, facesToDraw, position);
- }
- return prepareHinge(bottom_hinge, top_hinge, block, facesToDraw, position);
- }
-
- public boolean isFull() {
- return false;
- }
-
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- result.addAll(BlockModelInterface.getTextures(bottom));
- result.addAll(BlockModelInterface.getTextures(bottom_hinge));
- result.addAll(BlockModelInterface.getTextures(top));
- result.addAll(BlockModelInterface.getTextures(top_hinge));
- return result;
- }
-
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(bottom, mod, loader);
- BlockModelInterface.applyConfigurationTextures(bottom_hinge, mod, loader);
- BlockModelInterface.applyConfigurationTextures(top, mod, loader);
- BlockModelInterface.applyConfigurationTextures(top_hinge, mod, loader);
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FenceModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FenceModel.java
deleted file mode 100644
index ae8ded5e1..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FenceModel.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-public class FenceModel implements BlockModelInterface {
- private final HashSet post;
- private final HashSet side;
-
- public FenceModel(JsonObject block, String mod) {
- post = BlockModelInterface.load(mod, block.get("post").getAsString());
- side = BlockModelInterface.load(mod, block.get("side").getAsString());
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- ArrayFloatList result = new ArrayFloatList();
- // TODO
- return result;
- }
-
- @Override
- public boolean isFull() {
- return false;
- }
-
- @Override
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- result.addAll(BlockModelInterface.getTextures(post));
- result.addAll(BlockModelInterface.getTextures(side));
- return result;
- }
-
- @Override
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(post, mod, loader);
- BlockModelInterface.applyConfigurationTextures(side, mod, loader);
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FireModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FireModel.java
deleted file mode 100644
index 37b342e51..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/FireModel.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-public class FireModel implements BlockModelInterface {
- private final HashSet floor;
- private final HashSet side;
- private final HashSet up;
-
- public FireModel(JsonObject block, String mod) {
- floor = BlockModelInterface.load(mod, block.get("floor").getAsString());
- side = BlockModelInterface.load(mod, block.get("side").getAsString());
- up = BlockModelInterface.load(mod, block.get("up").getAsString());
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- HashSet properties = block.getProperties();
-
- ArrayFloatList result = new ArrayFloatList();
- if (properties.contains(BlockProperties.EAST)) {
- result.addAll(BlockModelInterface.prepareState(side, BlockRotations.EAST, facesToDraw, position));
- }
- if (properties.contains(BlockProperties.WEST)) {
- result.addAll(BlockModelInterface.prepareState(side, BlockRotations.WEST, facesToDraw, position));
- }
- if (properties.contains(BlockProperties.NORTH)) {
- result.addAll(BlockModelInterface.prepareState(side, BlockRotations.NORTH, facesToDraw, position));
- }
- if (properties.contains(BlockProperties.SOUTH)) {
- result.addAll(BlockModelInterface.prepareState(side, BlockRotations.SOUTH, facesToDraw, position));
- }
- if (properties.contains(BlockProperties.UP)) {
- result.addAll(BlockModelInterface.prepareState(up, BlockRotations.UP, facesToDraw, position));
- }
- if (result.size() == 0) {
- result.addAll(BlockModelInterface.prepareState(floor, BlockRotations.NONE, facesToDraw, position));
- }
- return result;
- }
-
- @Override
- public boolean isFull() {
- return false;
- }
-
- @Override
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- result.addAll(BlockModelInterface.getTextures(floor));
- result.addAll(BlockModelInterface.getTextures(side));
- result.addAll(BlockModelInterface.getTextures(up));
- return result;
- }
-
- @Override
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(floor, mod, loader);
- BlockModelInterface.applyConfigurationTextures(side, mod, loader);
- BlockModelInterface.applyConfigurationTextures(up, mod, loader);
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/MushroomModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/MushroomModel.java
deleted file mode 100644
index 8ed91c7b9..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/MushroomModel.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-public class MushroomModel implements BlockModelInterface {
- private final HashSet subBlocks;
-
- public MushroomModel(JsonObject block, String mod) {
- subBlocks = BlockModelInterface.load(mod, block.get("block").getAsString());
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- ArrayFloatList result = new ArrayFloatList();
- if (block.getProperties().contains(BlockProperties.DOWN)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.DOWN, facesToDraw, position));
- }
- if (block.getProperties().contains(BlockProperties.UP)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.UP, facesToDraw, position));
- }
- if (block.getProperties().contains(BlockProperties.EAST)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.EAST, facesToDraw, position));
- }
- if (block.getProperties().contains(BlockProperties.WEST)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.WEST, facesToDraw, position));
- }
- if (block.getProperties().contains(BlockProperties.NORTH)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.NORTH, facesToDraw, position));
- }
- if (block.getProperties().contains(BlockProperties.SOUTH)) {
- result.addAll(BlockModelInterface.prepareState(subBlocks, BlockRotations.SOUTH, facesToDraw, position));
- }
- return result;
- }
-
- @Override
- public boolean isFull() {
- return true;
- }
-
- @Override
- public HashSet getAllTextures() {
- return BlockModelInterface.getTextures(subBlocks);
- }
-
- @Override
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(subBlocks, mod, loader);
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/StairsModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/StairsModel.java
deleted file mode 100644
index 627d7c51a..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/StairsModel.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockProperties;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-public class StairsModel implements BlockModelInterface {
- private final HashSet straight;
- private final HashSet inner;
- private final HashSet outer;
-
- public StairsModel(JsonObject block, String mod) {
- straight = BlockModelInterface.load(mod, block.get("straight").getAsString());
- inner = BlockModelInterface.load(mod, block.get("inner").getAsString());
- outer = BlockModelInterface.load(mod, block.get("outer").getAsString());
- }
-
- public static ArrayFloatList prepareCorner(HashSet subBlocks, BlockProperties property, BlockRotations rotation, HashSet facesToDraw, BlockPosition position) {
- if (property.name().contains("LEFT")) {
- return BlockModelInterface.prepareState(subBlocks, rotation, facesToDraw, position);
- }
- return BlockModelInterface.prepareState(subBlocks, rotationAdjust.get(rotation), facesToDraw, position);
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- HashSet properties = block.getProperties();
-
- for (BlockProperties property : properties) {
- if (property.name().contains("INNER")) {
- return prepareCorner(outer, property, block.getRotation(), facesToDraw, position);
- } else if (property.name().contains("OUTER")) {
- return prepareCorner(inner, property, block.getRotation(), facesToDraw, position);
- }
- }
- return BlockModelInterface.prepareState(straight, rotationAdjust.get(block.getRotation()), facesToDraw, position);
- }
-
- @Override
- public boolean isFull() {
- return false;
- }
-
- @Override
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- result.addAll(BlockModelInterface.getTextures(straight));
- result.addAll(BlockModelInterface.getTextures(inner));
- result.addAll(BlockModelInterface.getTextures(outer));
- return result;
- }
-
- @Override
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(straight, mod, loader);
- BlockModelInterface.applyConfigurationTextures(inner, mod, loader);
- BlockModelInterface.applyConfigurationTextures(outer, mod, loader);
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/WireModel.java b/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/WireModel.java
deleted file mode 100644
index a147eb43c..000000000
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/specialModels/WireModel.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.render.blockModels.specialModels;
-
-import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.world.BlockPosition;
-import de.bixilon.minosoft.render.blockModels.BlockModelInterface;
-import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
-import de.bixilon.minosoft.render.blockModels.subBlocks.SubBlock;
-import de.bixilon.minosoft.render.texture.TextureLoader;
-import org.apache.commons.collections.primitives.ArrayFloatList;
-
-import java.util.HashSet;
-
-public class WireModel implements BlockModelInterface {
- private final HashSet dot;
- private final HashSet side;
- private final HashSet up;
-
- public WireModel(JsonObject block, String mod) {
- dot = BlockModelInterface.load(mod, block.get("dot").getAsString());
- side = BlockModelInterface.load(mod, block.get("side").getAsString());
- up = BlockModelInterface.load(mod, block.get("up").getAsString());
- }
-
- public ArrayFloatList prepare(Block block, HashSet facesToDraw, BlockPosition position) {
- // TODO: REDSTONE
- return new ArrayFloatList();
- }
-
- @Override
- public boolean isFull() {
- return false;
- }
-
- @Override
- public HashSet getAllTextures() {
- HashSet result = new HashSet<>();
- result.addAll(BlockModelInterface.getTextures(dot));
- result.addAll(BlockModelInterface.getTextures(side));
- result.addAll(BlockModelInterface.getTextures(up));
- return result;
- }
-
- @Override
- public void applyTextures(String mod, TextureLoader loader) {
- BlockModelInterface.applyConfigurationTextures(dot, mod, loader);
- BlockModelInterface.applyConfigurationTextures(side, mod, loader);
- BlockModelInterface.applyConfigurationTextures(up, mod, loader);
- }
-}
\ No newline at end of file
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/Cuboid.java b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/Cuboid.java
index 9ad56a5bc..765c642fa 100644
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/Cuboid.java
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/Cuboid.java
@@ -1,6 +1,6 @@
/*
* Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
+ * Copyright (C) 2020 Lukas Eisenhauer
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
@@ -15,13 +15,14 @@ package de.bixilon.minosoft.render.blockModels.subBlocks;
// some 3d object with 8 corners, 6 faces and 12 edges (example: cube, but can be deformed)
-import de.bixilon.minosoft.data.mappings.blocks.Block;
-import de.bixilon.minosoft.data.mappings.blocks.BlockRotations;
+import de.bixilon.minosoft.render.blockModels.Face.Axis;
import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
import java.util.HashMap;
import java.util.Map;
+import static de.bixilon.minosoft.render.blockModels.Face.RenderConstants.BLOCK_RESOLUTION;
+
public class Cuboid {
public static final Map facePositionMapTemplate = Map.of(FaceOrientation.EAST, new int[]{7, 5, 1, 3}, FaceOrientation.WEST, new int[]{4, 6, 2, 0}, FaceOrientation.UP, new int[]{4, 5, 7, 6}, FaceOrientation.DOWN, new int[]{2, 3, 1, 0}, FaceOrientation.SOUTH, new int[]{6, 7, 3, 2}, FaceOrientation.NORTH, new int[]{5, 4, 0, 1});
@@ -54,15 +55,27 @@ public class Cuboid {
}
}
- public SubBlockPosition[] getFacePositions(FaceOrientation orientation, Block block) {
- SubBlockPosition[] positions = facePositionMap.get(orientation);
- if (block.getRotation() == BlockRotations.NONE || block.getRotation() == BlockRotations.NORTH) {
- return positions;
+ public SubBlockPosition[] getFacePositions(FaceOrientation orientation) {
+ return facePositionMap.get(orientation);
+ }
+
+ public boolean isFull(FaceOrientation orientation) {
+ SubBlockPosition[] positions = getFacePositions(orientation);
+ return switch (orientation) {
+ case EAST -> (positions[0].x == 0 && positions[1].x == 0 && positions[2].x == 0 && positions[3].x == 0);
+ case WEST -> (positions[0].x == BLOCK_RESOLUTION && positions[1].x == BLOCK_RESOLUTION && positions[2].x == BLOCK_RESOLUTION && positions[3].x == BLOCK_RESOLUTION);
+ case UP -> (positions[0].y == 0 && positions[1].y == 0 && positions[2].y == 0 && positions[3].y == 0);
+ case DOWN -> (positions[0].y == BLOCK_RESOLUTION && positions[1].y == BLOCK_RESOLUTION && positions[2].y == BLOCK_RESOLUTION && positions[3].y == BLOCK_RESOLUTION);
+ case SOUTH -> (positions[0].z == 0 && positions[1].z == 0 && positions[2].z == 0 && positions[3].z == 0);
+ case NORTH -> (positions[0].z == BLOCK_RESOLUTION && positions[1].z == BLOCK_RESOLUTION && positions[2].z == BLOCK_RESOLUTION && positions[3].z == BLOCK_RESOLUTION);
+ };
+ }
+
+ public void rotate(Axis axis, int rotation) {
+ for (SubBlockPosition[] positions : facePositionMap.values()) {
+ for (SubBlockPosition position : positions) {
+ position = position.rotated(axis, rotation);
+ }
}
- SubBlockPosition[] result = new SubBlockPosition[positions.length];
- for (int i = 0; i < positions.length; i++) {
- result[i] = positions[i].rotated(block);
- }
- return result;
}
}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlock.java b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlock.java
index 1502057c5..63b342f39 100644
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlock.java
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlock.java
@@ -14,8 +14,8 @@
package de.bixilon.minosoft.render.blockModels.subBlocks;
import com.google.gson.JsonObject;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
import de.bixilon.minosoft.data.world.BlockPosition;
+import de.bixilon.minosoft.render.blockModels.Face.Axis;
import de.bixilon.minosoft.render.blockModels.Face.FaceOrientation;
import de.bixilon.minosoft.render.texture.InFaceUV;
import de.bixilon.minosoft.render.texture.TextureLoader;
@@ -29,10 +29,9 @@ public class SubBlock {
private final HashMap textureCoordinates;
private final HashMap textures;
private final HashMap textureRotations;
- private final HashSet cullFaceTextures;
+ private final boolean[] full;
private final HashMap uv;
private final Cuboid cuboid;
- private final boolean isFull;
private SubBlockRotation rotation;
public SubBlock(JsonObject json, HashMap variables) {
@@ -40,7 +39,6 @@ public class SubBlock {
textures = new HashMap<>();
textureRotations = new HashMap<>();
textureCoordinates = new HashMap<>();
- cullFaceTextures = new HashSet<>();
SubBlockPosition from = new SubBlockPosition(json.getAsJsonArray("from"));
SubBlockPosition to = new SubBlockPosition(json.getAsJsonArray("to"));
@@ -55,7 +53,7 @@ public class SubBlock {
putTexture(faces.getAsJsonObject(orientation.name().toLowerCase()), orientation, variables);
}
}
- isFull = (from.x == 0 && from.y == 0 && from.z == 0) && (to.x == 16 && to.y == 16 && to.z == 16) && rotation == null;
+ full = createFull();
}
private static String getRealTextureName(String textureName, HashMap variables) {
@@ -71,13 +69,17 @@ public class SubBlock {
}
return newName;
} else {
- throw new IllegalArgumentException("could not resolve variable " + textureName);
+ return "";
}
} else {
return textureName;
}
}
+ private boolean[] createFull() {
+ return new boolean[]{cuboid.isFull(FaceOrientation.EAST), cuboid.isFull(FaceOrientation.WEST), cuboid.isFull(FaceOrientation.UP), cuboid.isFull(FaceOrientation.DOWN), cuboid.isFull(FaceOrientation.NORTH), cuboid.isFull(FaceOrientation.SOUTH)};
+ }
+
public void applyTextures(String mod, TextureLoader loader) {
for (Map.Entry entry : textures.entrySet()) {
float texture = loader.getTexture(mod, entry.getValue());
@@ -106,10 +108,10 @@ public class SubBlock {
textures.put(orientation, textureName);
}
- public ArrayFloatList getFaces(Block block, HashSet facesToDraw, BlockPosition position) {
+ public ArrayFloatList getFaces(HashSet facesToDraw, BlockPosition position) {
ArrayFloatList result = new ArrayFloatList();
facesToDraw.forEach((faceOrientation -> {
- ArrayFloatList face = prepareFace(faceOrientation, block, position);
+ ArrayFloatList face = prepareFace(faceOrientation, position);
if (face != null) {
result.addAll(face);
}
@@ -117,12 +119,12 @@ public class SubBlock {
return result;
}
- private ArrayFloatList prepareFace(FaceOrientation faceDirection, Block block, BlockPosition position) {
- if (cullFaceTextures.contains(faceDirection) || !textureCoordinates.containsKey(faceDirection)) {
+ private ArrayFloatList prepareFace(FaceOrientation faceDirection, BlockPosition position) {
+ if (full[faceDirection.getId()] || !textureCoordinates.containsKey(faceDirection)) {
return null;
}
ArrayFloatList result = new ArrayFloatList();
- SubBlockPosition[] positions = cuboid.getFacePositions(faceDirection, block);
+ SubBlockPosition[] positions = cuboid.getFacePositions(faceDirection);
InFaceUV inFaceUV = uv.get(faceDirection);
inFaceUV.prepare(textureCoordinates.get(faceDirection));
int rotation = textureRotations.get(faceDirection);
@@ -133,10 +135,6 @@ public class SubBlock {
return result;
}
- public boolean isFull() {
- return isFull;
- }
-
public HashSet getTextures() {
HashSet result = new HashSet<>();
for (Map.Entry texture : textures.entrySet()) {
@@ -144,4 +142,12 @@ public class SubBlock {
}
return result;
}
+
+ public void rotate(Axis axis, int rotation) {
+ cuboid.rotate(axis, rotation);
+ }
+
+ public boolean[] getFull() {
+ return full;
+ }
}
diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlockPosition.java b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlockPosition.java
index 588bf14ab..ee9ef5250 100644
--- a/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlockPosition.java
+++ b/src/main/java/de/bixilon/minosoft/render/blockModels/subBlocks/SubBlockPosition.java
@@ -14,7 +14,6 @@
package de.bixilon.minosoft.render.blockModels.subBlocks;
import com.google.gson.JsonArray;
-import de.bixilon.minosoft.data.mappings.blocks.Block;
import de.bixilon.minosoft.data.world.BlockPosition;
import de.bixilon.minosoft.render.blockModels.Face.Axis;
import org.apache.commons.collections.primitives.ArrayFloatList;
@@ -23,14 +22,6 @@ import static de.bixilon.minosoft.render.blockModels.Face.RenderConstants.BLOCK_
public class SubBlockPosition {
private static final SubBlockPosition middlePos = new SubBlockPosition(8, 8, 8);
- private static final SubBlockRotation westRotator = new SubBlockRotation(middlePos, Axis.Y, 90);
- private static final SubBlockRotation eastRotator = new SubBlockRotation(middlePos, Axis.Y, 270);
- private static final SubBlockRotation southRotator = new SubBlockRotation(middlePos, Axis.Y, 180);
- private static final SubBlockRotation xAxisRotator = new SubBlockRotation(middlePos, Axis.Z, 90);
- private static final SubBlockRotation zAxisRotator = new SubBlockRotation(middlePos, Axis.X, 90);
- private static final SubBlockRotation downRotator = new SubBlockRotation(middlePos, Axis.X, 90);
- private static final SubBlockRotation downAltRotator = new SubBlockRotation(middlePos, Axis.X, 180);
- private static final SubBlockRotation upRotator = new SubBlockRotation(middlePos, Axis.X, -90);
public float x;
public float y;
public float z;
@@ -56,35 +47,6 @@ public class SubBlockPosition {
return new SubBlockPosition(pos1.x - pos2.x, pos1.y - pos2.y, pos1.z - pos2.z);
}
- public SubBlockPosition rotated(Block block) {
- if (block.getRotation() == null) {
- return this;
- }
- switch (block.getRotation()) {
- case EAST:
- return eastRotator.apply(this);
- case WEST:
- return westRotator.apply(this);
- case SOUTH:
- return southRotator.apply(this);
- case UP:
- if (block.getIdentifier().equals("dispenser") || block.getIdentifier().equals("dropper")) {
- return this;
- }
- return upRotator.apply(this);
- case DOWN:
- if (block.getIdentifier().equals("dispenser") || block.getIdentifier().equals("dropper")) {
- return downAltRotator.apply(this);
- }
- return downRotator.apply(this);
- case AXIS_X:
- return xAxisRotator.apply(this);
- case AXIS_Z:
- return zAxisRotator.apply(this);
- }
- return this;
- }
-
public ArrayFloatList getFloats(BlockPosition position) {
ArrayFloatList result = new ArrayFloatList();
result.add(x / BLOCK_RESOLUTION + position.getX());
@@ -92,4 +54,8 @@ public class SubBlockPosition {
result.add(z / BLOCK_RESOLUTION + position.getZ());
return result;
}
+
+ public SubBlockPosition rotated(Axis axis, int rotation) {
+ return new SubBlockRotation(middlePos, axis, rotation).apply(this);
+ }
}
diff --git a/src/main/java/de/bixilon/minosoft/render/movement/CollisionHandler.java b/src/main/java/de/bixilon/minosoft/render/movement/CollisionHandler.java
index f17e90fef..1aa648755 100644
--- a/src/main/java/de/bixilon/minosoft/render/movement/CollisionHandler.java
+++ b/src/main/java/de/bixilon/minosoft/render/movement/CollisionHandler.java
@@ -27,7 +27,7 @@ public class CollisionHandler {
public CollisionHandler(PlayerController controller) {
world = GameWindow.getConnection().getPlayer().getWorld();
- modelLoader = GameWindow.getRenderer().getAssetsLoader().getBlockModelLoader();
+ modelLoader = GameWindow.getRenderer().getBlockModelLoader();
this.controller = controller;
}
@@ -88,14 +88,14 @@ public class CollisionHandler {
controller.playerVelocity.z = 0;
}
- private boolean isPositionValid(Vec3 testPos) {
+ private boolean isPositionValid(Vec3 testPosition) {
float width = controller.getPlayerWidth();
- int[] xPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPos.x + width), AdditionalMath.betterRound(testPos.x - width));
+ int[] xPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPosition.x + width), AdditionalMath.betterRound(testPosition.x - width));
- int[] yPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPos.y), AdditionalMath.betterRound(testPos.y + controller.getPlayerHeight()));
+ int[] yPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPosition.y), AdditionalMath.betterRound(testPosition.y + controller.getPlayerHeight()));
- int[] zPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPos.z + width), AdditionalMath.betterRound(testPos.z - width));
+ int[] zPositions = AdditionalMath.valuesBetween(AdditionalMath.betterRound(testPosition.z + width), AdditionalMath.betterRound(testPosition.z - width));
for (int xPos : xPositions) {
for (int yPos : yPositions) {
diff --git a/src/main/java/de/bixilon/minosoft/render/movement/PlayerMovement.java b/src/main/java/de/bixilon/minosoft/render/movement/PlayerMovement.java
index fd21bd787..2935d0957 100644
--- a/src/main/java/de/bixilon/minosoft/render/movement/PlayerMovement.java
+++ b/src/main/java/de/bixilon/minosoft/render/movement/PlayerMovement.java
@@ -19,7 +19,7 @@ import de.bixilon.minosoft.render.utility.Vec3;
import static org.lwjgl.glfw.GLFW.*;
public class PlayerMovement {
- private static final float FLY_SPEED = 0.1f;
+ private static final float FLY_SPEED = 0.2f;
private static final Vec3 CAMERA_UP = new Vec3(0f, 1f, 0f);
private final long window;
diff --git a/src/main/java/de/bixilon/minosoft/render/texture/InFaceUV.java b/src/main/java/de/bixilon/minosoft/render/texture/InFaceUV.java
index 065f6457e..e676a79a4 100644
--- a/src/main/java/de/bixilon/minosoft/render/texture/InFaceUV.java
+++ b/src/main/java/de/bixilon/minosoft/render/texture/InFaceUV.java
@@ -36,8 +36,8 @@ public class InFaceUV {
}
public void prepare(float texture) {
- realU1 = texture + u1 * GameWindow.getRenderer().getAssetsLoader().getTextureLoader().getStep() / RenderConstants.TEXTURE_PACK_RESOLUTION;
- realU2 = texture + u2 * GameWindow.getRenderer().getAssetsLoader().getTextureLoader().getStep() / RenderConstants.TEXTURE_PACK_RESOLUTION;
+ realU1 = texture + u1 * GameWindow.getRenderer().getBlockModelLoader().getTextureLoader().getStep() / RenderConstants.TEXTURE_PACK_RESOLUTION;
+ realU2 = texture + u2 * GameWindow.getRenderer().getBlockModelLoader().getTextureLoader().getStep() / RenderConstants.TEXTURE_PACK_RESOLUTION;
realV1 = (float) v1 / RenderConstants.TEXTURE_PACK_RESOLUTION;
realV2 = (float) v2 / RenderConstants.TEXTURE_PACK_RESOLUTION;
}
diff --git a/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java b/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java
index 55a9b26e1..e0156fde2 100644
--- a/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java
+++ b/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java
@@ -72,13 +72,13 @@ public class TextureLoader {
private void loadTextures(String mod, HashSet textureNames, HashMap tint) {
HashMap modTextureMap = new HashMap<>();
for (String textureName : textureNames) {
- if (textureName.contains("overlay")) {
+ if (textureName.contains("overlay") || textureName.equals("")) {
continue;
}
String path = Config.homeDir + "assets/" + mod + "/textures/" + textureName + ".png";
try {
BufferedImage image = ImageIO.read(new File(path));
- if (tint.containsKey(textureName)) {
+ if (tint != null && tint.containsKey(textureName)) {
tintImage(image, tint.get(textureName));
}
modTextureMap.put(textureName, image);
@@ -141,7 +141,7 @@ public class TextureLoader {
}
public float getTexture(String mod, String textureName) {
- if (textureName.contains("overlay")) {
+ if (textureName.contains("overlay") || textureName.equals("")) {
return -1;
}
@@ -153,11 +153,6 @@ public class TextureLoader {
}
Integer pos = modMap.get(textureName);
- if (pos == null) {
- System.out.println("failed to find texture " + textureName);
- System.exit(10);
- }
-
return pos * step;
}
diff --git a/src/main/resources/assets/mapping/blockModels.json b/src/main/resources/assets/mapping/blockModels.json
index 289716f20..f0e4ae85c 100644
--- a/src/main/resources/assets/mapping/blockModels.json
+++ b/src/main/resources/assets/mapping/blockModels.json
@@ -1,5057 +1 @@
-{
- "blocks": {
- "stone": {
- "blockModel": "stone"
- },
- "granite": {
- "blockModel": "granite"
- },
- "polished_granite": {
- "blockModel": "polished_granite"
- },
- "diorite": {
- "blockModel": "diorite"
- },
- "polished_diorite": {
- "blockModel": "polished_diorite"
- },
- "andesite": {
- "blockModel": "andesite"
- },
- "polished_andesite": {
- "blockModel": "polished_andesite"
- },
- "grass_block": {
- "states": [
- {
- "properties": {
- "snowy": "true"
- },
- "blockModel": "grass_block_snow"
- },
- {
- "properties": {
- "snowy": "false"
- },
- "blockModel": "grass_block"
- }
- ]
- },
- "dirt": {
- "blockModel": "dirt"
- },
- "coarse_dirt": {
- "blockModel": "coarse_dirt"
- },
- "podzol": {
- "blockModel": "podzol"
- },
- "cobblestone": {
- "blockModel": "cobblestone"
- },
- "oak_planks": {
- "blockModel": "oak_planks"
- },
- "spruce_planks": {
- "blockModel": "spruce_planks"
- },
- "birch_planks": {
- "blockModel": "birch_planks"
- },
- "jungle_planks": {
- "blockModel": "jungle_planks"
- },
- "acacia_planks": {
- "blockModel": "acacia_planks"
- },
- "dark_oak_planks": {
- "blockModel": "dark_oak_planks"
- },
- "oak_sapling": {
- "blockModel": "oak_sapling"
- },
- "spruce_sapling": {
- "blockModel": "spruce_sapling"
- },
- "birch_sapling": {
- "blockModel": "birch_sapling"
- },
- "jungle_sapling": {
- "blockModel": "jungle_sapling"
- },
- "acacia_sapling": {
- "blockModel": "acacia_sapling"
- },
- "dark_oak_sapling": {
- "blockModel": "dark_oak_sapling"
- },
- "bedrock": {
- "blockModel": "bedrock"
- },
- "water": {
- "blockModel": "water"
- },
- "lava": {
- "blockModel": "lava"
- },
- "sand": {
- "blockModel": "sand"
- },
- "red_sand": {
- "blockModel": "red_sand"
- },
- "gravel": {
- "blockModel": "gravel"
- },
- "gold_ore": {
- "blockModel": "gold_ore"
- },
- "iron_ore": {
- "blockModel": "iron_ore"
- },
- "coal_ore": {
- "blockModel": "coal_ore"
- },
- "oak_log": {
- "blockModel": "oak_log"
- },
- "spruce_log": {
- "blockModel": "spruce_log"
- },
- "birch_log": {
- "blockModel": "birch_log"
- },
- "jungle_log": {
- "blockModel": "jungle_log"
- },
- "acacia_log": {
- "blockModel": "acacia_log"
- },
- "dark_oak_log": {
- "blockModel": "dark_oak_log"
- },
- "stripped_oak_log": {
- "blockModel": "stripped_oak_log"
- },
- "stripped_spruce_log": {
- "blockModel": "stripped_spruce_log"
- },
- "stripped_birch_log": {
- "blockModel": "stripped_birch_log"
- },
- "stripped_jungle_log": {
- "blockModel": "stripped_jungle_log"
- },
- "stripped_acacia_log": {
- "blockModel": "stripped_acacia_log"
- },
- "stripped_dark_oak_log": {
- "blockModel": "stripped_dark_oak_log"
- },
- "oak_wood": {
- "blockModel": "oak_wood"
- },
- "spruce_wood": {
- "blockModel": "spruce_wood"
- },
- "birch_wood": {
- "blockModel": "birch_wood"
- },
- "jungle_wood": {
- "blockModel": "jungle_wood"
- },
- "acacia_wood": {
- "blockModel": "acacia_wood"
- },
- "dark_oak_wood": {
- "blockModel": "dark_oak_wood"
- },
- "stripped_oak_wood": {
- "blockModel": "stripped_oak_wood"
- },
- "stripped_spruce_wood": {
- "blockModel": "stripped_spruce_wood"
- },
- "stripped_birch_wood": {
- "blockModel": "stripped_birch_wood"
- },
- "stripped_jungle_wood": {
- "blockModel": "stripped_jungle_wood"
- },
- "stripped_acacia_wood": {
- "blockModel": "stripped_acacia_wood"
- },
- "stripped_dark_oak_wood": {
- "blockModel": "stripped_dark_oak_wood"
- },
- "oak_leaves": {
- "blockModel": "oak_leaves"
- },
- "spruce_leaves": {
- "blockModel": "spruce_leaves"
- },
- "birch_leaves": {
- "blockModel": "birch_leaves"
- },
- "jungle_leaves": {
- "blockModel": "jungle_leaves"
- },
- "acacia_leaves": {
- "blockModel": "acacia_leaves"
- },
- "dark_oak_leaves": {
- "blockModel": "dark_oak_leaves"
- },
- "sponge": {
- "blockModel": "sponge"
- },
- "wet_sponge": {
- "blockModel": "wet_sponge"
- },
- "glass": {
- "blockModel": "glass"
- },
- "lapis_ore": {
- "blockModel": "lapis_ore"
- },
- "lapis_block": {
- "blockModel": "lapis_block"
- },
- "dispenser": {
- "states": [
- {
- "properties": {
- "facing": "north"
- },
- "blockModel": "dispenser"
- },
- {
- "properties": {
- "facing": "east"
- },
- "blockModel": "dispenser"
- },
- {
- "properties": {
- "facing": "south"
- },
- "blockModel": "dispenser"
- },
- {
- "properties": {
- "facing": "west"
- },
- "blockModel": "dispenser"
- },
- {
- "properties": {
- "facing": "up"
- },
- "blockModel": "dispenser_vertical"
- },
- {
- "properties": {
- "facing": "down"
- },
- "blockModel": "dispenser_vertical"
- }
- ]
- },
- "sandstone": {
- "blockModel": "sandstone"
- },
- "chiseled_sandstone": {
- "blockModel": "chiseled_sandstone"
- },
- "cut_sandstone": {
- "blockModel": "cut_sandstone"
- },
- "note_block": {
- "blockModel": "note_block"
- },
- "powered_rail": {
- "states": [
- {
- "properties": {
- "powered": "true",
- "shape": "north_south"
- },
- "blockModel": "powered_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "east_west"
- },
- "blockModel": "powered_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_east"
- },
- "blockModel": "powered_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_west"
- },
- "blockModel": "powered_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_north"
- },
- "blockModel": "powered_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_south"
- },
- "blockModel": "powered_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "north_south"
- },
- "blockModel": "powered_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "east_west"
- },
- "blockModel": "powered_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_east"
- },
- "blockModel": "powered_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_west"
- },
- "blockModel": "powered_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_north"
- },
- "blockModel": "powered_rail_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_south"
- },
- "blockModel": "powered_rail_raised_sw"
- }
- ]
- },
- "detector_rail": {
- "states": [
- {
- "properties": {
- "powered": "true",
- "shape": "north_south"
- },
- "blockModel": "detector_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "east_west"
- },
- "blockModel": "detector_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_east"
- },
- "blockModel": "detector_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_west"
- },
- "blockModel": "detector_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_north"
- },
- "blockModel": "detector_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_south"
- },
- "blockModel": "detector_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "north_south"
- },
- "blockModel": "detector_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "east_west"
- },
- "blockModel": "detector_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_east"
- },
- "blockModel": "detector_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_west"
- },
- "blockModel": "detector_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_north"
- },
- "blockModel": "detector_rail_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_south"
- },
- "blockModel": "detector_rail_raised_sw"
- }
- ]
- },
- "cobweb": {
- "blockModel": "cobweb"
- },
- "grass": {
- "blockModel": "grass"
- },
- "fern": {
- "blockModel": "fern"
- },
- "dead_bush": {
- "blockModel": "dead_bush"
- },
- "seagrass": {
- "blockModel": "seagrass"
- },
- "tall_seagrass": {
- "states": [
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "tall_seagrass_top"
- },
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "tall_seagrass_bottom"
- }
- ]
- },
- "sticky_piston": {
- "states": [
- {
- "properties": {
- "extended": "true"
- },
- "blockModel": "piston_base"
- },
- {
- "properties": {
- "extended": "false"
- },
- "blockModel": "sticky_piston"
- }
- ]
- },
- "piston": {
- "states": [
- {
- "properties": {
- "extended": "true"
- },
- "blockModel": "piston_base"
- },
- {
- "properties": {
- "extended": "false"
- },
- "blockModel": "piston"
- }
- ]
- },
- "piston_head": {
- "states": [
- {
- "properties": {
- "short": "true",
- "type": "normal"
- },
- "blockModel": "piston_head_short"
- },
- {
- "properties": {
- "short": "false",
- "type": "normal"
- },
- "blockModel": "piston_head"
- },
- {
- "properties": {
- "short": "true",
- "type": "sticky"
- },
- "blockModel": "piston_head_short_sticky"
- },
- {
- "properties": {
- "short": "false",
- "type": "sticky"
- },
- "blockModel": "piston_head_sticky"
- }
- ]
- },
- "white_wool": {
- "blockModel": "white_wool"
- },
- "orange_wool": {
- "blockModel": "orange_wool"
- },
- "magenta_wool": {
- "blockModel": "magenta_wool"
- },
- "light_blue_wool": {
- "blockModel": "light_blue_wool"
- },
- "yellow_wool": {
- "blockModel": "yellow_wool"
- },
- "lime_wool": {
- "blockModel": "lime_wool"
- },
- "pink_wool": {
- "blockModel": "pink_wool"
- },
- "gray_wool": {
- "blockModel": "gray_wool"
- },
- "light_gray_wool": {
- "blockModel": "light_gray_wool"
- },
- "cyan_wool": {
- "blockModel": "cyan_wool"
- },
- "purple_wool": {
- "blockModel": "purple_wool"
- },
- "blue_wool": {
- "blockModel": "blue_wool"
- },
- "brown_wool": {
- "blockModel": "brown_wool"
- },
- "green_wool": {
- "blockModel": "green_wool"
- },
- "red_wool": {
- "blockModel": "red_wool"
- },
- "black_wool": {
- "blockModel": "black_wool"
- },
- "moving_piston": {
- "blockModel": "moving_piston"
- },
- "dandelion": {
- "blockModel": "dandelion"
- },
- "poppy": {
- "blockModel": "poppy"
- },
- "blue_orchid": {
- "blockModel": "allium"
- },
- "azure_bluet": {
- "blockModel": "azure_bluet"
- },
- "red_tulip": {
- "blockModel": "red_tulip"
- },
- "orange_tulip": {
- "blockModel": "orange_tulip"
- },
- "white_tulip": {
- "blockModel": "white_tulip"
- },
- "pink_tulip": {
- "blockModel": "pink_tulip"
- },
- "oxeye_daisy": {
- "blockModel": "oxeye_daisy"
- },
- "cornflower": {
- "blockModel": "cornflower"
- },
- "wither_rose": {
- "blockModel": "wither_rose"
- },
- "lily_of_the_valley": {
- "blockModel": "lily_of_the_valley"
- },
- "brown_mushroom": {
- "blockModel": "brown_mushroom"
- },
- "red_mushroom": {
- "blockModel": "red_mushroom"
- },
- "gold_block": {
- "blockModel": "gold_block"
- },
- "iron_block": {
- "blockModel": "iron_block"
- },
- "bricks": {
- "blockModel": "bricks"
- },
- "tnt": {
- "blockModel": "tnt"
- },
- "bookshelf": {
- "blockModel": "bookshelf"
- },
- "mossy_cobblestone": {
- "blockModel": "mossy_cobblestone"
- },
- "obsidian": {
- "blockModel": "obsidian"
- },
- "torch": {
- "blockModel": "torch"
- },
- "wall_torch": {
- "blockModel": "wall_torch"
- },
- "fire": {
- "type": "fire",
- "floor": "fire_floor0",
- "side": "fire_side0",
- "up": "fire_up0"
- },
- "spawner": {
- "blockModel": "spawner"
- },
- "oak_stairs": {
- "type": "stairs",
- "straight": "oak_stairs",
- "inner": "oak_stairs_inner",
- "outer": "oak_stairs_outer"
- },
- "chest": {
- "blockModel": "chest"
- },
- "redstone_wire": {
- "type": "wire",
- "dot": "redstone_dust_dot",
- "side": "redstone_dust_side0",
- "up": "redstone_dust_up"
- },
- "diamond_ore": {
- "blockModel": "diamond_ore"
- },
- "diamond_block": {
- "blockModel": "diamond_block"
- },
- "crafting_table": {
- "blockModel": "crafting_table"
- },
- "wheat": {
- "type": "crop",
- "stages": 8,
- "base_name": "wheat_stage"
- },
- "farmland": {
- "states": [
- {
- "properties": {
- "moisture": "0"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "1"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "2"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "3"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "4"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "5"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "6"
- },
- "blockModel": "farmland"
- },
- {
- "properties": {
- "moisture": "7"
- },
- "blockModel": "farmland_moist"
- }
- ]
- },
- "furnace": {
- "states": [
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "furnace"
- },
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "furnace_on"
- }
- ]
- },
- "oak_sign": {
- "blockModel": "oak_sign"
- },
- "spruce_sign": {
- "blockModel": "spruce_sign"
- },
- "birch_sign": {
- "blockModel": "birch_sign"
- },
- "acacia_sign": {
- "blockModel": "acacia_sign"
- },
- "jungle_sign": {
- "blockModel": "jungle_sign"
- },
- "dark_oak_sign": {
- "blockModel": "dark_oak_sign"
- },
- "oak_door": {
- "type": "door",
- "bottom": "oak_door_bottom",
- "bottom_hinge": "oak_door_bottom_hinge",
- "top": "oak_door_top",
- "top_hinge": "oak_door_top_hinge"
- },
- "ladder": {
- "blockModel": "ladder"
- },
- "rail": {
- "states": [
- {
- "properties": {
- "shape": "north_south"
- },
- "blockModel": "rail"
- },
- {
- "properties": {
- "shape": "east_west"
- },
- "blockModel": "rail"
- },
- {
- "properties": {
- "shape": "ascending_east"
- },
- "blockModel": "rail_raised_ne"
- },
- {
- "properties": {
- "shape": "ascending_west"
- },
- "blockModel": "rail_raised_ne"
- },
- {
- "properties": {
- "shape": "ascending_north"
- },
- "blockModel": "rail_raised_ne"
- },
- {
- "properties": {
- "shape": "ascending_south"
- },
- "blockModel": "rail_raised_ne"
- },
- {
- "properties": {
- "shape": "south_east"
- },
- "blockModel": "rail_corner"
- },
- {
- "properties": {
- "shape": "south_west"
- },
- "blockModel": "rail_corner"
- },
- {
- "properties": {
- "shape": "north_east"
- },
- "blockModel": "rail_corner"
- },
- {
- "properties": {
- "shape": "north_west"
- },
- "blockModel": "rail_corner"
- }
- ]
- },
- "cobblestone_stairs": {
- "type": "stairs",
- "straight": "cobblestone_stairs",
- "inner": "cobblestone_stairs_inner",
- "outer": "cobblestone_stairs_outer"
- },
- "oak_wall_sign": {
- "blockModel": "oak_sign"
- },
- "spruce_wall_sign": {
- "blockModel": "spruce_sign"
- },
- "birch_wall_sign": {
- "blockModel": "birch_sign"
- },
- "acacia_wall_sign": {
- "blockModel": "acacia_sign"
- },
- "jungle_wall_sign": {
- "blockModel": "jungle_sign"
- },
- "dark_oak_wall_sign": {
- "blockModel": "dark_oak_sign"
- },
- "lever": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "lever_on"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "lever"
- }
- ]
- },
- "stone_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "stone_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "stone_pressure_plate"
- }
- ]
- },
- "iron_door": {
- "type": "door",
- "bottom": "iron_door_bottom",
- "bottom_hinge": "iron_door_bottom_hinge",
- "top": "iron_door_top",
- "top_hinge": "iron_door_bottom_hinge"
- },
- "oak_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "oak_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "oak_pressure_plate"
- }
- ]
- },
- "spruce_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "spruce_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "spruce_pressure_plate"
- }
- ]
- },
- "jungle_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "jungle_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "jungle_pressure_plate"
- }
- ]
- },
- "acacia_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "acacia_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "acacia_pressure_plate"
- }
- ]
- },
- "dark_oak_pressure_plate": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "dark_oak_pressure_plate_down"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "dark_oak_pressure_plate"
- }
- ]
- },
- "redstone_ore": {
- "states": [
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "redstone_ore_on"
- },
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "redstone_ore"
- }
- ]
- },
- "redstone_torch": {
- "states": [
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "redstone_torch"
- },
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "redstone_torch_off"
- }
- ]
- },
- "redstone_wall_torch": {
- "states": [
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "redstone_wall_torch"
- },
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "redstone_wall_torch_off"
- }
- ]
- },
- "stone_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "stone_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "stone_button"
- }
- ]
- },
- "snow": {
- "states": [
- {
- "properties": {
- "layers": "1"
- },
- "blockModel": "snow_height2"
- },
- {
- "properties": {
- "layers": "2"
- },
- "blockModel": "snow_height4"
- },
- {
- "properties": {
- "layers": "3"
- },
- "blockModel": "snow_height6"
- },
- {
- "properties": {
- "layers": "4"
- },
- "blockModel": "snow_height8"
- },
- {
- "properties": {
- "layers": "5"
- },
- "blockModel": "snow_height10"
- },
- {
- "properties": {
- "layers": "6"
- },
- "blockModel": "snow_height12"
- },
- {
- "properties": {
- "layers": "7"
- },
- "blockModel": "snow_height14"
- }
- ]
- },
- "ice": {
- "blockModel": "ice"
- },
- "snow_block": {
- "blockModel": "snow_block"
- },
- "cactus": {
- "blockModel": "cactus"
- },
- "clay": {
- "blockModel": "clay"
- },
- "sugar_cane": {
- "blockModel": "sugar_cane"
- },
- "jukebox": {
- "blockModel": "jukebox"
- },
- "oak_fence": {
- "type": "fence",
- "post": "oak_fence_post",
- "side": "oak_fence_side"
- },
- "pumpkin": {
- "blockModel": "pumpkin"
- },
- "netherrack": {
- "blockModel": "netherrack"
- },
- "soul_sand": {
- "blockModel": "soul_sand"
- },
- "glowstone": {
- "blockModel": "glowstone"
- },
- "carved_pumpkin": {
- "blockModel": "carved_pumpkin"
- },
- "nether_portal": {
- "states": [
- {
- "properties": {
- "axis": "x"
- },
- "blockModel": "nether_portal_ns"
- },
- {
- "properties": {
- "axis": "z"
- },
- "blockModel": "nether_portal_ew"
- }
- ]
- },
- "jack_o_lantern": {
- "blockModel": "jack_o_lantern"
- },
- "cake": {
- "states": [
- {
- "properties": {
- "bites": "0"
- },
- "blockModel": "cake"
- },
- {
- "properties": {
- "bites": "1"
- },
- "blockModel": "cake_slice1"
- },
- {
- "properties": {
- "bites": "2"
- },
- "blockModel": "cake_slice2"
- },
- {
- "properties": {
- "bites": "3"
- },
- "blockModel": "cake_slice3"
- },
- {
- "properties": {
- "bites": "4"
- },
- "blockModel": "cake_slice4"
- },
- {
- "properties": {
- "bites": "5"
- },
- "blockModel": "cake_slice5"
- },
- {
- "properties": {
- "bites": "6"
- },
- "blockModel": "cake_slice6"
- }
- ]
- },
- "repeater": {
- "states": [
- {
- "properties": {
- "delay": "1",
- "locked": "false",
- "powered": "false"
- },
- "blockModel": "repeater_1tick"
- },
- {
- "properties": {
- "delay": "1",
- "locked": "true",
- "powered": "false"
- },
- "blockModel": "repeater_1tick_locked"
- },
- {
- "properties": {
- "delay": "1",
- "locked": "false",
- "powered": "true"
- },
- "blockModel": "repeater_1tick_on"
- },
- {
- "properties": {
- "delay": "1",
- "locked": "true",
- "powered": "true"
- },
- "blockModel": "repeater_1tick_on_locked"
- },
- {
- "properties": {
- "delay": "2",
- "locked": "false",
- "powered": "false"
- },
- "blockModel": "repeater_2tick"
- },
- {
- "properties": {
- "delay": "2",
- "locked": "true",
- "powered": "false"
- },
- "blockModel": "repeater_2tick_locked"
- },
- {
- "properties": {
- "delay": "2",
- "locked": "false",
- "powered": "true"
- },
- "blockModel": "repeater_2tick_on"
- },
- {
- "properties": {
- "delay": "2",
- "locked": "true",
- "powered": "true"
- },
- "blockModel": "repeater_2tick_on_locked"
- },
- {
- "properties": {
- "delay": "3",
- "locked": "false",
- "powered": "false"
- },
- "blockModel": "repeater_3tick"
- },
- {
- "properties": {
- "delay": "3",
- "locked": "true",
- "powered": "false"
- },
- "blockModel": "repeater_3tick_locked"
- },
- {
- "properties": {
- "delay": "3",
- "locked": "false",
- "powered": "true"
- },
- "blockModel": "repeater_3tick_on"
- },
- {
- "properties": {
- "delay": "3",
- "locked": "true",
- "powered": "true"
- },
- "blockModel": "repeater_3tick_on_locked"
- },
- {
- "properties": {
- "delay": "4",
- "locked": "false",
- "powered": "false"
- },
- "blockModel": "repeater_4tick"
- },
- {
- "properties": {
- "delay": "4",
- "locked": "true",
- "powered": "false"
- },
- "blockModel": "repeater_4tick_locked"
- },
- {
- "properties": {
- "delay": "4",
- "locked": "false",
- "powered": "true"
- },
- "blockModel": "repeater_4tick_on"
- },
- {
- "properties": {
- "delay": "4",
- "locked": "true",
- "powered": "true"
- },
- "blockModel": "repeater_4tick_on_locked"
- }
- ]
- },
- "white_stained_glass": {
- "blockModel": "white_stained_glass"
- },
- "orange_stained_glass": {
- "blockModel": "orange_stained_glass"
- },
- "magenta_stained_glass": {
- "blockModel": "magenta_stained_glass"
- },
- "light_blue_stained_glass": {
- "blockModel": "light_blue_stained_glass"
- },
- "yellow_stained_glass": {
- "blockModel": "yellow_stained_glass"
- },
- "lime_stained_glass": {
- "blockModel": "lime_stained_glass"
- },
- "pink_stained_glass": {
- "blockModel": "pink_stained_glass"
- },
- "gray_stained_glass": {
- "blockModel": "gray_stained_glass"
- },
- "light_gray_stained_glass": {
- "blockModel": "light_gray_stained_glass"
- },
- "cyan_stained_glass": {
- "blockModel": "cyan_stained_glass"
- },
- "purple_stained_glass": {
- "blockModel": "purple_stained_glass"
- },
- "blue_stained_glass": {
- "blockModel": "blue_stained_glass"
- },
- "brown_stained_glass": {
- "blockModel": "brown_stained_glass"
- },
- "green_stained_glass": {
- "blockModel": "green_stained_glass"
- },
- "red_stained_glass": {
- "blockModel": "red_stained_glass"
- },
- "black_stained_glass": {
- "blockModel": "black_stained_glass"
- },
- "oak_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "oak_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "oak_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "oak_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "oak_trapdoor_open"
- }
- ]
- },
- "spruce_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "spruce_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "spruce_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "spruce_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "spruce_trapdoor_open"
- }
- ]
- },
- "birch_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "birch_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "birch_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "birch_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "birch_trapdoor_open"
- }
- ]
- },
- "jungle_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "jungle_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "jungle_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "jungle_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "jungle_trapdoor_open"
- }
- ]
- },
- "acacia_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "acacia_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "acacia_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "acacia_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "acacia_trapdoor_open"
- }
- ]
- },
- "dark_oak_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "dark_oak_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "dark_oak_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "dark_oak_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "dark_oak_trapdoor_open"
- }
- ]
- },
- "stone_bricks": {
- "blockModel": "stone_bricks"
- },
- "mossy_stone_bricks": {
- "blockModel": "mossy_stone_bricks"
- },
- "cracked_stone_bricks": {
- "blockModel": "cracked_stone_bricks"
- },
- "chiseled_stone_bricks": {
- "blockModel": "chiseled_stone_bricks"
- },
- "infested_stone": {
- "blockModel": "stone"
- },
- "infested_cobblestone": {
- "blockModel": "cobblestone"
- },
- "infested_stone_bricks": {
- "blockModel": "stone_bricks"
- },
- "infested_mossy_stone_bricks": {
- "blockModel": "mossy_stone_bricks"
- },
- "infested_chiseled_stone_bricks": {
- "blockModel": "chiseled_stone_bricks"
- },
- "brown_mushroom_block": {
- "type": "mushroom",
- "block": "brown_mushroom_block"
- },
- "red_mushroom_block": {
- "type": "mushroom",
- "block": "red_mushroom_block"
- },
- "glass_pane": {
- "type": "fence",
- "post": "glass_pane_post",
- "side": "glass_pane_side"
- },
- "melon": {
- "blockModel": "melon"
- },
- "attached_pumpkin_stem": {
- "blockModel": "attached_pumpkin_stem"
- },
- "attached_melon-stem": {
- "blockModel": "attached_melon_stem"
- },
- "pumpkin_stem": {
- "type": "crop",
- "stages": "8",
- "base_name": "pumpkin_stem_stage"
- },
- "melon_stem": {
- "type": "crop",
- "stages": "8",
- "base_name": "melon_stem_stage"
- },
- "vine": {
- "type": "mushroom",
- "block": "vine_1"
- },
- "brick_stairs": {
- "type": "stairs",
- "straight": "brick_stairs",
- "inner": "brick_stairs_inner",
- "outer": "brick_stairs_outer"
- },
- "stone_brick_stairs": {
- "type": "stairs",
- "straight": "stone_brick_stairs",
- "inner": "stone_brick_stairs_inner",
- "outer": "stone_brick_stairs_outer"
- },
- "mycelium": {
- "blockModel": "mycelium"
- },
- "lily_pad": {
- "blockModel": "lily_pad"
- },
- "nether_bricks": {
- "blockModel": "nether_bricks"
- },
- "nether_brick_fence": {
- "type": "fence",
- "post": "nether_brick_fence_post",
- "side": "nether_brick_fence_side"
- },
- "nether_brick_stairs": {
- "type": "stairs",
- "straight": "nether_brick_stairs",
- "inner": "nether_brick_stairs_inner",
- "outer": "nether_brick_stairs_outer"
- },
- "nether_wart": {
- "type": "crop",
- "stages": "3",
- "base_name": "nether_wart_stage"
- },
- "enchanting_table": {
- "blockModel": "enchanting_table"
- },
- "brewing_stand": {
- "TODO": ""
- },
- "cauldron": {
- "states": [
- {
- "properties": {
- "level": "0"
- },
- "blockModel": "cauldron"
- },
- {
- "properties": {
- "level": "1"
- },
- "blockModel": "cauldron_level1"
- },
- {
- "properties": {
- "level": "2"
- },
- "blockModel": "cauldron_level2"
- },
- {
- "properties": {
- "level": "3"
- },
- "blockModel": "cauldron_level3"
- }
- ]
- },
- "end_portal": {
- "blockModel": "end_portal"
- },
- "end_portal_frame": {
- "states": [
- {
- "properties": {
- "eye": "true"
- },
- "blockModel": "end_portal_frame_filled"
- },
- {
- "properties": {
- "eye": "false"
- },
- "blockModel": "end_portal_frame"
- }
- ]
- },
- "end_stone": {
- "blockModel": "end_stone"
- },
- "dragon_egg": {
- "blockModel": "dragon_egg"
- },
- "redstone_lamp": {
- "states": [
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "redstone_lamp_on"
- },
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "redstone_lamp"
- }
- ]
- },
- "cocoa": {
- "type": "crop",
- "stages": "3",
- "base_name": "cocoa_stage"
- },
- "sandstone_stairs": {
- "type": "stairs",
- "straight": "sandstone_stairs",
- "inner": "sandstone_stairs_inner",
- "outer": "sandstone_stairs_outer"
- },
- "tripwire_hook": {
- "states": [
- {
- "properties": {
- "attached": "false",
- "powered": "false"
- },
- "blockModel": "tripwire_hook"
- },
- {
- "properties": {
- "attached": "true",
- "powered": "false"
- },
- "blockModel": "tripwire_hook_attached"
- },
- {
- "properties": {
- "attached": "false",
- "powered": "true"
- },
- "blockModel": "tripwire_hook_on"
- },
- {
- "properties": {
- "attached": "true",
- "powered": "true"
- },
- "blockModel": "tripwire_hook_attached_on"
- }
- ]
- },
- "tripwire": {
- "TODO": "",
- "blockModel": "tripwire_nsew"
- },
- "birch_stairs": {
- "type": "stairs",
- "straight": "birch_stairs",
- "inner": "birch_stairs_inner",
- "outer": "birch_stairs_outer"
- },
- "jungle_stairs": {
- "type": "stairs",
- "straight": "jungle_stairs",
- "inner": "jungle_stairs_inner",
- "outer": "jungle_stairs_outer"
- },
- "beacon": {
- "blockModel": "beacon"
- },
- "cobblestone_wall": {
- "type": "wall",
- "post": "cobblestone_wall_post",
- "side": "cobblestone_wall_side"
- },
- "flower_pot": {
- "blockModel": "flower_pot"
- },
- "potted_oak_sapling": {
- "blockModel": "potted_birch_sapling"
- },
- "potted_spruce_sapling": {
- "blockModel": "potted_spruce_sapling"
- },
- "potted_birch_sapling": {
- "blockModel": "potted_birch_sapling"
- },
- "potted_jungle_sapling": {
- "blockModel": "potted_jungle_sapling"
- },
- "potted_acacia_sapling": {
- "blockModel": "potted_acacia_sapling"
- },
- "potted_dark_oak_sapling": {
- "blockModel": "potted_dark_oak_sapling"
- },
- "potted_fern": {
- "blockModel": "potted_fern"
- },
- "potted_dandelion": {
- "blockModel": "potted_dandelion"
- },
- "potted_poppy": {
- "blockModel": "potted_poppy"
- },
- "potted_blue_orchid": {
- "blockModel": "potted_blue_orchid"
- },
- "potted_allium": {
- "blockModel": "potted_allium"
- },
- "potted_azure_bluet": {
- "blockModel": "potted_azure_bluet"
- },
- "potted_red_tulip": {
- "blockModel": "potted_red_tulip"
- },
- "potted_orange_tulip": {
- "blockModel": "potted_orange_tulip"
- },
- "potted_white_tulip": {
- "blockModel": "potted_white_tulip"
- },
- "potted_oxeye_daisy": {
- "blockModel": "potted_oxeye_daisy"
- },
- "potted_cornflower": {
- "blockModel": "potted_cornflower"
- },
- "potted_lily_of_the_valley": {
- "blockModel": "potted_lily_of_the_valley"
- },
- "potted_wither_rose": {
- "blockModel": "potted_wither_rose"
- },
- "potted_red_mushroom": {
- "blockModel": "potted_red_mushroom"
- },
- "potted_brown_mushroom": {
- "blockModel": "potted_brown_mushroom"
- },
- "potted_dead_bush": {
- "blockModel": "potted_dead_bush"
- },
- "potted_cactus": {
- "blockModel": "potted_cactus"
- },
- "carrots": {
- "type": "crop",
- "stages": "4",
- "base_name": "carrots_stage"
- },
- "potatoes": {
- "type": "crop",
- "stages": "4",
- "base_name": "potatoes_stage"
- },
- "oak_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "oak_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "oak_button"
- }
- ]
- },
- "spruce_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "spruce_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "spruce_button"
- }
- ]
- },
- "birch_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "birch_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "birch_button"
- }
- ]
- },
- "jungle_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "jungle_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "jungle_button"
- }
- ]
- },
- "acacia_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "acacia_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "acacia_button"
- }
- ]
- },
- "dark_oak_button": {
- "states": [
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "dark_oak_button_pressed"
- },
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "dark_oak_button"
- }
- ]
- },
- "skeleton_skull": {
- "blockModel": "skull"
- },
- "skeleton_wall_skull": {
- "blockModel": "skull"
- },
- "wither_skeleton_skull": {
- "blockModel": "skull"
- },
- "wither_skeleton_wall_skull": {
- "blockModel": "skull"
- },
- "zombie_head": {
- "blockModel": "skull"
- },
- "zombie_wall_head": {
- "blockModel": "skull"
- },
- "player_head": {
- "blockModel": "skull"
- },
- "player_wall_head": {
- "blockModel": "skull"
- },
- "creeper_head": {
- "blockModel": "skull"
- },
- "creeper_wall_head": {
- "blockModel": "skull"
- },
- "dragon_head": {
- "blockModel": "skull"
- },
- "dragon_wall_head": {
- "blockModel": "skull"
- },
- "anvil": {
- "blockModel": "anvil"
- },
- "chipped_anvil": {
- "blockModel": "chipped_anvil"
- },
- "damaged_anvil": {
- "blockModel": "damaged_anvil"
- },
- "trapped_chest": {
- "blockModel": "chest"
- },
- "light_weighted_pressure_plate": {
- "states": [
- {
- "properties": {
- "power": "0"
- },
- "blockModel": "light_weighted_pressure_plate"
- },
- {
- "properties": {
- "power": "1"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "2"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "3"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "4"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "5"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "6"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "7"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "8"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "9"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "10"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "11"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "12"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "13"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "14"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "15"
- },
- "blockModel": "light_weighted_pressure_plate_down"
- }
- ]
- },
- "heavy_weighted_pressure_plate": {
- "states": [
- {
- "properties": {
- "power": "0"
- },
- "blockModel": "heavy_weighted_pressure_plate"
- },
- {
- "properties": {
- "power": "1"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "2"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "3"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "4"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "5"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "6"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "7"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "8"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "9"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "10"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "11"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "12"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "13"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "14"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- },
- {
- "properties": {
- "power": "15"
- },
- "blockModel": "heavy_weighted_pressure_plate_down"
- }
- ]
- },
- "comparator": {
- "states": [
- {
- "properties": {
- "mode": "compare",
- "powered": "false"
- },
- "blockModel": "comparator"
- },
- {
- "properties": {
- "mode": "subtract",
- "powered": "false"
- },
- "blockModel": "comparator_subtract"
- },
- {
- "properties": {
- "mode": "compare",
- "powered": "true"
- },
- "blockModel": "comparator_on"
- },
- {
- "properties": {
- "mode": "subtract",
- "powered": "true"
- },
- "blockModel": "comparator_on_subtract"
- }
- ]
- },
- "daylight_detector": {
- "states": [
- {
- "properties": {
- "inverted": "false"
- },
- "blockModel": "daylight_detector"
- },
- {
- "properties": {
- "inverted": "true"
- },
- "blockModel": "daylight_detector_inverted"
- }
- ]
- },
- "redstone_block": {
- "blockModel": "redstone_block"
- },
- "nether_quartz_ore": {
- "blockModel": "nether_quartz_ore"
- },
- "hopper": {
- "states": [
- {
- "properties": {
- "facing": "down"
- },
- "blockModel": "hopper"
- },
- {
- "properties": {
- "facing": "north"
- },
- "blockModel": "hopper_side"
- },
- {
- "properties": {
- "facing": "south"
- },
- "blockModel": "hopper_side"
- },
- {
- "properties": {
- "facing": "east"
- },
- "blockModel": "hopper_side"
- },
- {
- "properties": {
- "facing": "west"
- },
- "blockModel": "hopper_side"
- }
- ]
- },
- "quartz_block": {
- "blockModel": "quartz_block"
- },
- "chiseled_quartz_block": {
- "blockModel": "chiseled_quartz_block"
- },
- "quartz_pillar": {
- "blockModel": "quartz_pillar"
- },
- "quartz_stairs": {
- "type": "stairs",
- "straight": "quartz_stairs",
- "inner": "quartz_stairs_inner",
- "outer": "quartz_stairs_outer"
- },
- "activator_rail": {
- "states": [
- {
- "properties": {
- "powered": "true",
- "shape": "north_south"
- },
- "blockModel": "activator_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "east_west"
- },
- "blockModel": "activator_rail_on"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_east"
- },
- "blockModel": "activator_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_west"
- },
- "blockModel": "activator_rail_on_raised_ne"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_north"
- },
- "blockModel": "activator_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "true",
- "shape": "ascending_south"
- },
- "blockModel": "activator_rail_on_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "north_south"
- },
- "blockModel": "activator_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "east_west"
- },
- "blockModel": "activator_rail"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_east"
- },
- "blockModel": "activator_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_west"
- },
- "blockModel": "activator_rail_raised_ne"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_north"
- },
- "blockModel": "activator_rail_raised_sw"
- },
- {
- "properties": {
- "powered": "false",
- "shape": "ascending_south"
- },
- "blockModel": "activator_rail_raised_sw"
- }
- ]
- },
- "dropper": {
- "states": [
- {
- "properties": {
- "facing": "north"
- },
- "blockModel": "dropper"
- },
- {
- "properties": {
- "facing": "east"
- },
- "blockModel": "dropper"
- },
- {
- "properties": {
- "facing": "south"
- },
- "blockModel": "dropper"
- },
- {
- "properties": {
- "facing": "west"
- },
- "blockModel": "dropper"
- },
- {
- "properties": {
- "facing": "up"
- },
- "blockModel": "dropper_vertical"
- },
- {
- "properties": {
- "facing": "down"
- },
- "blockModel": "dropper_vertical"
- }
- ]
- },
- "white_terracotta": {
- "blockModel": "white_terracotta"
- },
- "orange_terracotta": {
- "blockModel": "orange_terracotta"
- },
- "magenta_terracotta": {
- "blockModel": "magenta_terracotta"
- },
- "light_blue_terracotta": {
- "blockModel": "light_blue_terracotta"
- },
- "yellow_terracotta": {
- "blockModel": "yellow_terracotta"
- },
- "lime_terracotta": {
- "blockModel": "lime_terracotta"
- },
- "pink_terracotta": {
- "blockModel": "pink_terracotta"
- },
- "gray_terracotta": {
- "blockModel": "gray_terracotta"
- },
- "light_gray_terracotta": {
- "blockModel": "light_gray_terracotta"
- },
- "cyan_terracotta": {
- "blockModel": "cyan_terracotta"
- },
- "purple_terracotta": {
- "blockModel": "purple_terracotta"
- },
- "blue_terracotta": {
- "blockModel": "blue_terracotta"
- },
- "brown_terracotta": {
- "blockModel": "brown_terracotta"
- },
- "green_terracotta": {
- "blockModel": "green_terracotta"
- },
- "red_terracotta": {
- "blockModel": "red_terracotta"
- },
- "black_terracotta": {
- "blockModel": "black_terracotta"
- },
- "white_stained_glass_pane": {
- "type": "fence",
- "post": "white_stained_glass_pane_post",
- "side": "white_stained_glass_pane_side"
- },
- "orange_stained_glass_pane": {
- "type": "fence",
- "post": "orange_stained_glass_pane_post",
- "side": "orange_stained_glass_pane_side"
- },
- "magenta_stained_glass_pane": {
- "type": "fence",
- "post": "magenta_stained_glass_pane_post",
- "side": "magenta_stained_glass_pane_side"
- },
- "light_blue_stained_glass_pane": {
- "type": "fence",
- "post": "light_blue_stained_glass_pane_post",
- "side": "light_blue_stained_glass_pane_side"
- },
- "yellow_stained_glass_pane": {
- "type": "fence",
- "post": "yellow_stained_glass_pane_post",
- "side": "yellow_stained_glass_pane_side"
- },
- "lime_stained_glass_pane": {
- "type": "fence",
- "post": "lime_stained_glass_pane_post",
- "side": "lime_stained_glass_pane_side"
- },
- "pink_stained_glass_pane": {
- "type": "fence",
- "post": "pink_stained_glass_pane_post",
- "side": "pink_stained_glass_pane_side"
- },
- "gray_stained_glass_pane": {
- "type": "fence",
- "post": "gray_stained_glass_pane_post",
- "side": "gray_stained_glass_pane_side"
- },
- "light_gray_stained_glass_pane": {
- "type": "fence",
- "post": "light_gray_stained_glass_pane_post",
- "side": "light_gray_stained_glass_pane_side"
- },
- "cyan_stained_glass_pane": {
- "type": "fence",
- "post": "cyan_stained_glass_pane_post",
- "side": "cyan_stained_glass_pane_side"
- },
- "purple_stained_glass_pane": {
- "type": "fence",
- "post": "purple_stained_glass_pane_post",
- "side": "purple_stained_glass_pane_side"
- },
- "brown_stained_glass_pane": {
- "type": "fence",
- "post": "brown_stained_glass_pane_post",
- "side": "brown_stained_glass_pane_side"
- },
- "green_stained_glass_pane": {
- "type": "fence",
- "post": "green_stained_glass_pane_post",
- "side": "green_stained_glass_pane_side"
- },
- "red_stained_glass_pane": {
- "type": "fence",
- "post": "red_stained_glass_pane_post",
- "side": "red_stained_glass_pane_side"
- },
- "black_stained_glass_pane": {
- "type": "fence",
- "post": "black_stained_glass_pane_post",
- "side": "black_stained_glass_pane_side"
- },
- "acacia_stairs": {
- "type": "stairs",
- "straight": "acacia_stairs",
- "inner": "acacia_stairs_inner",
- "outer": "acacia_stairs_outer"
- },
- "dark_oak_stairs": {
- "type": "stairs",
- "straight": "dark_oak_stairs",
- "inner": "dark_oak_stairs_inner",
- "outer": "dark_oak_stairs_outer"
- },
- "slime_block": {
- "blockModel": "slime_block"
- },
- "barrier": {
- "blockModel": "barrier"
- },
- "iron_trapdoor": {
- "states": [
- {
- "properties": {
- "half": "top",
- "open": "false"
- },
- "blockModel": "iron_trapdoor_top"
- },
- {
- "properties": {
- "half": "top",
- "open": "true"
- },
- "blockModel": "iron_trapdoor_open"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "false"
- },
- "blockModel": "iron_trapdoor_bottom"
- },
- {
- "properties": {
- "half": "bottom",
- "open": "true"
- },
- "blockModel": "iron_trapdoor_open"
- }
- ]
- },
- "prismarine": {
- "blockModel": "prismarine"
- },
- "prismarine_bricks": {
- "blockModel": "prismarine_bricks"
- },
- "dark_prismarine": {
- "blockModel": "dark_prismarine"
- },
- "prismarine_stairs": {
- "type": "stairs",
- "straight": "prismarine_stairs",
- "inner": "prismarine_stairs_inner",
- "outer": "prismarine_stairs_outer"
- },
- "prismarine_brick_stairs": {
- "type": "stairs",
- "straight": "prismarine_brick_stairs",
- "inner": "prismarine_brick_stairs_inner",
- "outer": "prismarine_stairs_outer"
- },
- "dark_prismarine_stairs": {
- "type": "stairs",
- "straight": "dark_prismarine_stairs",
- "inner": "dark_prismarine_stairs_inner",
- "outer": "dark_prismarine_stairs_outer"
- },
- "prismarine_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "prismarine_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "prismarine_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "prismarine"
- }
- ]
- },
- "prismarine_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "prismarine_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "prismarine_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "prismarine_bricks"
- }
- ]
- },
- "dark_prismarine_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "dark_prismarine_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "dark_prismarine_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "dark_prismarine"
- }
- ]
- },
- "sea_lantern": {
- "blockModel": "sea_lantern"
- },
- "hay_block": {
- "blockModel": "hay_block"
- },
- "white_carpet": {
- "blockModel": "white_carpet"
- },
- "orange_carpet": {
- "blockModel": "orange_carpet"
- },
- "magenta_carpet": {
- "blockModel": "magenta_carpet"
- },
- "light_blue_carpet": {
- "blockModel": "light_blue_carpet"
- },
- "yellow_carpet": {
- "blockModel": "yellow_carpet"
- },
- "lime_carpet": {
- "blockModel": "lime_carpet"
- },
- "pink_carpet": {
- "blockModel": "pink_carpet"
- },
- "gray_carpet": {
- "blockModel": "gray_carpet"
- },
- "light_gray_carpet": {
- "blockModel": "light_gray_carpet"
- },
- "cyan_carpet": {
- "blockModel": "cyan_carpet"
- },
- "purple_carpet": {
- "blockModel": "purple_carpet"
- },
- "blue_carpet": {
- "blockModel": "blue_carpet"
- },
- "brown_carpet": {
- "blockModel": "brown_carpet"
- },
- "green_carpet": {
- "blockModel": "green_carpet"
- },
- "red_carpet": {
- "blockModel": "red_carpet"
- },
- "black_carpet": {
- "blockModel": "black_carpet"
- },
- "terracotta": {
- "blockModel": "terracotta"
- },
- "coal_block": {
- "blockModel": "coal_block"
- },
- "packed_ice": {
- "blockModel": "packed_ice"
- },
- "sunflower": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "sunflower_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "sunflower_top"
- }
- ]
- },
- "lilac": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "lilac_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "lilac_top"
- }
- ]
- },
- "rose_bush": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "rose_bush_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "rose_bush_top"
- }
- ]
- },
- "peony": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "peony_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "peony_top"
- }
- ]
- },
- "tall_grass": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "tall_grass_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "tall_grass_top"
- }
- ]
- },
- "large_fern": {
- "states": [
- {
- "properties": {
- "half": "lower"
- },
- "blockModel": "large_fern_bottom"
- },
- {
- "properties": {
- "half": "upper"
- },
- "blockModel": "large_fern_top"
- }
- ]
- },
- "white_banner": {
- "blockModel": "banner"
- },
- "orange_banner": {
- "blockModel": "banner"
- },
- "magenta_banner": {
- "blockModel": "banner"
- },
- "light_blue_banner": {
- "blockModel": "banner"
- },
- "yellow_banner": {
- "blockModel": "banner"
- },
- "lime_banner": {
- "blockModel": "banner"
- },
- "pink_banner": {
- "blockModel": "banner"
- },
- "gray_banner": {
- "blockModel": "banner"
- },
- "light_gray_banner": {
- "blockModel": "banner"
- },
- "cyan_banner": {
- "blockModel": "banner"
- },
- "purple_banner": {
- "blockModel": "banner"
- },
- "blue_banner": {
- "blockModel": "banner"
- },
- "brown_banner": {
- "blockModel": "banner"
- },
- "green_banner": {
- "blockModel": "banner"
- },
- "red_banner": {
- "blockModel": "banner"
- },
- "black_banner": {
- "blockModel": "banner"
- },
- "white_wall_banner": {
- "blockModel": "banner"
- },
- "orange_wall_banner": {
- "blockModel": "banner"
- },
- "magenta_wall_banner": {
- "blockModel": "banner"
- },
- "light_blue_wall_banner": {
- "blockModel": "banner"
- },
- "yellow_wall_banner": {
- "blockModel": "banner"
- },
- "lime_wall_banner": {
- "blockModel": "banner"
- },
- "pink_wall_banner": {
- "blockModel": "banner"
- },
- "gray_wall_banner": {
- "blockModel": "banner"
- },
- "light_gray_wall_banner": {
- "blockModel": "banner"
- },
- "cyan_wall_banner": {
- "blockModel": "banner"
- },
- "purple_wall_banner": {
- "blockModel": "banner"
- },
- "blue_wall_banner": {
- "blockModel": "banner"
- },
- "brown_wall_banner": {
- "blockModel": "banner"
- },
- "green_wall_banner": {
- "blockModel": "banner"
- },
- "red_wall_banner": {
- "blockModel": "banner"
- },
- "black_wall_banner": {
- "blockModel": "banner"
- },
- "red_sandstone": {
- "blockModel": "red_sandstone"
- },
- "chiseled_red_sandstone": {
- "blockModel": "chiseled_red_sandstone"
- },
- "red_sandstone_stairs": {
- "type": "stairs",
- "straight": "red_sandstone_stairs",
- "inner": "red_sandstone_stairs_inner",
- "outer": "red_sandstone_stairs_outer"
- },
- "oak_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "oak_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "oak_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "oak_planks"
- }
- ]
- },
- "spruce_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "spruce_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "spruce_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "spruce_planks"
- }
- ]
- },
- "birch_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "birch_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "birch_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "birch_planks"
- }
- ]
- },
- "jungle_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "jungle_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "jungle_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "jungle_planks"
- }
- ]
- },
- "acacia_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "acacia_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "acacia_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "acacia_planks"
- }
- ]
- },
- "dark_oak_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "dark_oak_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "dark_oak_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "dark_oak_planks"
- }
- ]
- },
- "stone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "stone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "stone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "stone"
- }
- ]
- },
- "smooth_stone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "smooth_stone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "smooth_stone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "smooth_stone"
- }
- ]
- },
- "sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "sandstone"
- }
- ]
- },
- "cut_sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "cut_sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "cut_sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "cut_sandstone"
- }
- ]
- },
- "petrified_oak_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "petrified_oak_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "petrified_oak_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "oak_planks"
- }
- ]
- },
- "cobblestone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "cobblestone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "cobblestone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "cobblestone"
- }
- ]
- },
- "brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "bricks"
- }
- ]
- },
- "stone_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "stone_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "stone_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "stone_bricks"
- }
- ]
- },
- "nether_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "nether_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "nether_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "nether_bricks"
- }
- ]
- },
- "quartz_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "quartz_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "quartz_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "quartz_block"
- }
- ]
- },
- "red_sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "red_sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "red_sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "red_sandstone"
- }
- ]
- },
- "cut_red_sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "cut_red_sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "cut_red_sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "cut_red_sandstone"
- }
- ]
- },
- "purpur_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "purpur_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "purpur_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "purpur_block"
- }
- ]
- },
- "smooth_stone": {
- "blockModel": "smooth_stone"
- },
- "smooth_sandstone": {
- "blockModel": "smooth_sandstone"
- },
- "smooth_quartz": {
- "blockModel": "smooth_quartz"
- },
- "smooth_red_sandstone": {
- "blockModel": "smooth_red_sandstone"
- },
- "oak_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "oak_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "oak_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "oak_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "oak_fence_gate_wall_open"
- }
- ]
- },
- "spruce_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "spruce_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "spruce_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "spruce_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "spruce_fence_gate_wall_open"
- }
- ]
- },
- "birch_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "birch_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "birch_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "birch_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "birch_fence_gate_wall_open"
- }
- ]
- },
- "jungle_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "jungle_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "jungle_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "jungle_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "jungle_fence_gate_wall_open"
- }
- ]
- },
- "acacia_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "acacia_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "acacia_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "acacia_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "acacia_fence_gate_wall_open"
- }
- ]
- },
- "dark_oak_fence_gate": {
- "states": [
- {
- "properties": {
- "in_wall": "false",
- "open": "false"
- },
- "blockModel": "dark_oak_fence_gate"
- },
- {
- "properties": {
- "in_wall": "false",
- "open": "true"
- },
- "blockModel": "dark_oak_fence_gate"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "false"
- },
- "blockModel": "dark_oak_fence_gate_wall"
- },
- {
- "properties": {
- "in_wall": "true",
- "open": "true"
- },
- "blockModel": "dark_oak_fence_gate_wall_open"
- }
- ]
- },
- "spruce_fence": {
- "type": "fence",
- "post": "spruce_fence_post",
- "side": "spruce_fence_side"
- },
- "birch_fence": {
- "type": "fence",
- "post": "birch_fence_post",
- "side": "birch_fence_side"
- },
- "jungle_fence": {
- "type": "fence",
- "post": "jungle_fence_post",
- "side": "jungle_fence_side"
- },
- "acacia_fence": {
- "type": "fence",
- "post": "acacia_fence_post",
- "side": "acacia_fence_side"
- },
- "dark_oak_fence": {
- "type": "fence",
- "post": "dark_oak_fence_post",
- "side": "dark_oak_fence_side"
- },
- "spruce_door": {
- "type": "door",
- "bottom": "spruce_door_bottom",
- "bottom_hinge": "spruce_door_bottom_hinge",
- "top": "spruce_door_top",
- "top_hinge": "spruce_door_top_hinge"
- },
- "birch_door": {
- "type": "door",
- "bottom": "birch_door_bottom",
- "bottom_hinge": "birch_door_bottom_hinge",
- "top": "birch_door_top",
- "top_hinge": "birch_door_top_hinge"
- },
- "jungle_door": {
- "type": "door",
- "bottom": "jungle_door_bottom",
- "bottom_hinge": "jungle_door_bottom_hinge",
- "top": "jungle_door_top",
- "top_hinge": "jungle_door_top_hinge"
- },
- "acacia_door": {
- "type": "door",
- "bottom": "acacia_door_bottom",
- "bottom_hinge": "acacia_door_bottom_hinge",
- "top": "acacia_door_top",
- "top_hinge": "acacia_door_top_hinge"
- },
- "dark_oak_door": {
- "type": "door",
- "bottom": "dark_oak_door_bottom",
- "bottom_hinge": "dark_oak_door_bottom_hinge",
- "top": "dark_oak_door_top",
- "top_hinge": "dark_oak_door_top_hinge"
- },
- "end_rod": {
- "blockModel": "end_rod"
- },
- "chorus_plant": {
- "TODO": "",
- "blockModel": "chorus_plant"
- },
- "chorus_flower": {
- "blockModel": "chorus_flower"
- },
- "purpur_block": {
- "blockModel": "purpur_block"
- },
- "purpur_pillar": {
- "blockModel": "purpur_pillar"
- },
- "purpur_stairs": {
- "type": "stairs",
- "straight": "purpur_stairs",
- "inner": "purpur_stairs_inner",
- "outer": "purpur_stairs_outer"
- },
- "end_stone_bricks": {
- "blockModel": "end_stone_bricks"
- },
- "beetroots": {
- "type": "crop",
- "stages": "4",
- "base_name": "beetroots_stage"
- },
- "grass_path": {
- "blockModel": "grass_path"
- },
- "end_gateway": {
- },
- "command_block": {
- "states": [
- {
- "properties": {
- "conditional": "false"
- },
- "blockModel": "command_block"
- },
- {
- "properties": {
- "conditional": "true"
- },
- "blockModel": "command_block_conditional"
- }
- ]
- },
- "repeating_command_block": {
- "states": [
- {
- "properties": {
- "conditional": "false"
- },
- "blockModel": "repeating_command_block"
- },
- {
- "properties": {
- "conditional": "true"
- },
- "blockModel": "repeating_command_block_conditional"
- }
- ]
- },
- "chain_command_block": {
- "states": [
- {
- "properties": {
- "conditional": "false"
- },
- "blockModel": "chain_command_block"
- },
- {
- "properties": {
- "conditional": "true"
- },
- "blockModel": "chain_command_block_conditional"
- }
- ]
- },
- "frosted_ice": {
- "type": "crop",
- "stages": "4",
- "base_name": "frosted_ice_"
- },
- "magma_block": {
- "blockModel": "magma_block"
- },
- "nether_wart_block": {
- "blockModel": "nether_wart_block"
- },
- "red_nether_bricks": {
- "blockModel": "red_nether_bricks"
- },
- "bone_block": {
- "blockModel": "bone_block"
- },
- "structure_void": {
- "blockModel": "structure_void"
- },
- "observer": {
- "states": [
- {
- "properties": {
- "powered": "false"
- },
- "blockModel": "observer"
- },
- {
- "properties": {
- "powered": "true"
- },
- "blockModel": "observer_on"
- }
- ]
- },
- "shulker_box": {
- "blockModel": "shulker_box"
- },
- "white_shulker_box": {
- "blockModel": "white_shulker_box"
- },
- "orange_shulker_box": {
- "blockModel": "orange_shulker_box"
- },
- "magenta_shulker_box": {
- "blockModel": "magenta_shulker_box"
- },
- "light_blue_shulker_box": {
- "blockModel": "light_blue_shulker_box"
- },
- "yellow_shulker_box": {
- "blockModel": "yellow_shulker_box"
- },
- "lime_shulker_box": {
- "blockModel": "lime_shulker_box"
- },
- "pink_shulker_box": {
- "blockModel": "pink_shulker_box"
- },
- "gray_shulker_box": {
- "blockModel": "gray_shulker_box"
- },
- "light_gray_shulker_box": {
- "blockModel": "light_gray_shulker_box"
- },
- "cyan_shulker_box": {
- "blockModel": "cyan_shulker_box"
- },
- "purple_shulker_box": {
- "blockModel": "purple_shulker_box"
- },
- "blue_shulker_box": {
- "blockModel": "blue_shulker_box"
- },
- "brown_shulker_box": {
- "blockModel": "brown_shulker_box"
- },
- "green_shulker_box": {
- "blockModel": "green_shulker_box"
- },
- "red_shulker_box": {
- "blockModel": "red_shulker_box"
- },
- "black_shulker_box": {
- "blockModel": "black_shulker_box"
- },
- "white_glazed_terracotta": {
- "blockModel": "white_glazed_terracotta"
- },
- "orange_glazed_terracotta": {
- "blockModel": "orange_glazed_terracotta"
- },
- "magenta_glazed_terracotta": {
- "blockModel": "magenta_glazed_terracotta"
- },
- "light_blue_glazed_terracotta": {
- "blockModel": "light_blue_glazed_terracotta"
- },
- "yellow_glazed_terracotta": {
- "blockModel": "yellow_glazed_terracotta"
- },
- "lime_glazed_terracotta": {
- "blockModel": "lime_glazed_terracotta"
- },
- "pink_glazed_terracotta": {
- "blockModel": "pink_glazed_terracotta"
- },
- "gray_glazed_terracotta": {
- "blockModel": "gray_glazed_terracotta"
- },
- "light_gray_glazed_terracotta": {
- "blockModel": "light_gray_glazed_terracotta"
- },
- "cyan_glazed_terracotta": {
- "blockModel": "cyan_glazed_terracotta"
- },
- "purple_glazed_terracotta": {
- "blockModel": "purple_glazed_terracotta"
- },
- "blue_glazed_terracotta": {
- "blockModel": "blue_glazed_terracotta"
- },
- "brown_glazed_terracotta": {
- "blockModel": "brown_glazed_terracotta"
- },
- "green_glazed_terracotta": {
- "blockModel": "green_glazed_terracotta"
- },
- "red_glazed_terracotta": {
- "blockModel": "red_glazed_terracotta"
- },
- "black_glazed_terracotta": {
- "blockModel": "black_glazed_terracotta"
- },
- "white_concrete": {
- "blockModel": "white_concrete"
- },
- "orange_concrete": {
- "blockModel": "orange_concrete"
- },
- "magenta_concrete": {
- "blockModel": "magenta_concrete"
- },
- "light_blue_concrete": {
- "blockModel": "light_blue_concrete"
- },
- "yellow_concrete": {
- "blockModel": "yellow_concrete"
- },
- "lime_concrete": {
- "blockModel": "lime_concrete"
- },
- "pink_concrete": {
- "blockModel": "pink_concrete"
- },
- "gray_concrete": {
- "blockModel": "gray_concrete"
- },
- "light_gray_concrete": {
- "blockModel": "light_gray_concrete"
- },
- "cyan_concrete": {
- "blockModel": "cyan_concrete"
- },
- "purple_concrete": {
- "blockModel": "purple_concrete"
- },
- "blue_concrete": {
- "blockModel": "blue_concrete"
- },
- "brown_concrete": {
- "blockModel": "brown_concrete"
- },
- "green_concrete": {
- "blockModel": "green_concrete"
- },
- "red_concrete": {
- "blockModel": "red_concrete"
- },
- "black_concrete": {
- "blockModel": "black_concrete"
- },
- "white_concrete_powder": {
- "blockModel": "white_concrete_powder"
- },
- "orange_concrete_powder": {
- "blockModel": "orange_concrete_powder"
- },
- "magenta_concrete_powder": {
- "blockModel": "magenta_concrete_powder"
- },
- "light_blue_concrete_powder": {
- "blockModel": "light_blue_concrete_powder"
- },
- "yellow_concrete_powder": {
- "blockModel": "yellow_concrete_powder"
- },
- "lime_concrete_powder": {
- "blockModel": "lime_concrete_powder"
- },
- "pink_concrete_powder": {
- "blockModel": "pink_concrete_powder"
- },
- "gray_concrete_powder": {
- "blockModel": "gray_concrete_powder"
- },
- "light_gray_concrete_powder": {
- "blockModel": "light_gray_concrete_powder"
- },
- "cyan_concrete_powder": {
- "blockModel": "cyan_concrete_powder"
- },
- "purple_concrete_powder": {
- "blockModel": "purple_concrete_powder"
- },
- "blue_concrete_powder": {
- "blockModel": "blue_concrete_powder"
- },
- "brown_concrete_powder": {
- "blockModel": "brown_concrete_powder"
- },
- "green_concrete_powder": {
- "blockModel": "green_concrete_powder"
- },
- "red_concrete_powder": {
- "blockModel": "red_concrete_powder"
- },
- "black_concrete_powder": {
- "blockModel": "black_concrete_powder"
- },
- "kelp": {
- "blockModel": "kelp"
- },
- "kelp_plant": {
- "blockModel": "kelp_plant"
- },
- "dried_kelp_block": {
- "blockModel": "dried_kelp_block"
- },
- "turtle_egg": {
- "states": [
- {
- "properties": {
- "eggs": "1",
- "hatch": "0"
- },
- "blockModel": "turtle_egg"
- },
- {
- "properties": {
- "eggs": "1",
- "hatch": "1"
- },
- "blockModel": "slightly_cracked_turtle_egg"
- },
- {
- "properties": {
- "eggs": "1",
- "hatch": "2"
- },
- "blockModel": "very_cracked_turtle_egg"
- },
- {
- "properties": {
- "eggs": "2",
- "hatch": "0"
- },
- "blockModel": "two_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "2",
- "hatch": "1"
- },
- "blockModel": "two_slightly_cracked_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "2",
- "hatch": "2"
- },
- "blockModel": "two_very_cracked_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "3",
- "hatch": "0"
- },
- "blockModel": "three_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "3",
- "hatch": "1"
- },
- "blockModel": "three_slightly_cracked_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "3",
- "hatch": "2"
- },
- "blockModel": "three_very_cracked_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "4",
- "hatch": "0"
- },
- "blockModel": "four_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "4",
- "hatch": "1"
- },
- "blockModel": "four_slightly_cracked_turtle_eggs"
- },
- {
- "properties": {
- "eggs": "4",
- "hatch": "2"
- },
- "blockModel": "four_very_cracked_turtle_eggs"
- }
- ]
- },
- "dead_tube_coral_block": {
- "blockModel": "dead_tube_coral_block"
- },
- "dead_brain_coral_block": {
- "blockModel": "dead_brain_coral_block"
- },
- "dead_bubble_coral_block": {
- "blockModel": "dead_bubble_coral_block"
- },
- "dead_fire_coral_block": {
- "blockModel": "dead_fire_coral_block"
- },
- "dead_horn_coral_block": {
- "blockModel": "dead_horn_coral_block"
- },
- "tube_coral_block": {
- "blockModel": "tube_coral_block"
- },
- "brain_coral_block": {
- "blockModel": "brain_coral_block"
- },
- "bubble_coral_block": {
- "blockModel": "bubble_coral_block"
- },
- "fire_coral_block": {
- "blockModel": "fire_coral_block"
- },
- "horn_coral_block": {
- "blockModel": "horn_coral_block"
- },
- "dead_tube_coral": {
- "blockModel": "dead_tube_coral"
- },
- "dead_brain_coral": {
- "blockModel": "dead_brain_coral"
- },
- "dead_bubble_coral": {
- "blockModel": "dead_bubble_coral"
- },
- "dead_fire_coral": {
- "blockModel": "dead_fire_coral"
- },
- "dead_horn_coral": {
- "blockModel": "dead_horn_coral"
- },
- "tube_coral": {
- "blockModel": "tube_coral"
- },
- "brain_coral": {
- "blockModel": "brain_coral"
- },
- "bubble_coral": {
- "blockModel": "bubble_coral"
- },
- "fire_coral": {
- "blockModel": "fire_coral"
- },
- "horn_coral": {
- "blockModel": "horn_coral"
- },
- "dead_tube_coral_fan": {
- "blockModel": "dead_tube_coral_fan"
- },
- "dead_brain_coral_fan": {
- "blockModel": "dead_brain_coral_fan"
- },
- "dead_bubble_coral_fan": {
- "blockModel": "dead_bubble_coral_fan"
- },
- "dead_fire_coral_fan": {
- "blockModel": "dead_fire_coral_fan"
- },
- "dead_horn_coral_fan": {
- "blockModel": "dead_horn_coral_fan"
- },
- "tube_coral_fan": {
- "blockModel": "tube_coral_fan"
- },
- "brain_coral_fan": {
- "blockModel": "brain_coral_fan"
- },
- "bubble_coral_fan": {
- "blockModel": "bubble_coral_fan"
- },
- "fire_coral_fan": {
- "blockModel": "fire_coral_fan"
- },
- "horn_coral_fan": {
- "blockModel": "horn_coral_fan"
- },
- "dead_tube_coral_wall_fan": {
- "blockModel": "dead_tube_coral_wall_fan"
- },
- "dead_brain_coral_wall_fan": {
- "blockModel": "dead_brain_coral_wall_fan"
- },
- "dead_bubble_coral_wall_fan": {
- "blockModel": "dead_bubble_coral_wall_fan"
- },
- "dead_fire_coral_wall_fan": {
- "blockModel": "dead_fire_coral_wall_fan"
- },
- "dead_horn_coral_wall_fan": {
- "blockModel": "dead_horn_coral_wall_fan"
- },
- "tube_coral_wall_fan": {
- "blockModel": "tube_coral_wall_fan"
- },
- "brain_coral_wall_fan": {
- "blockModel": "brain_coral_wall_fan"
- },
- "bubble_coral_wall_fan": {
- "blockModel": "bubble_coral_wall_fan"
- },
- "fire_coral_wall_fan": {
- "blockModel": "fire_coral_wall_fan"
- },
- "horn_coral_wall_fan": {
- "blockModel": "horn_coral_wall_fan"
- },
- "sea_pickle": {
- "states": [
- {
- "properties": {
- "pickles": "1"
- },
- "blockModel": "sea_pickle"
- },
- {
- "properties": {
- "pickles": "2"
- },
- "blockModel": "two_sea_pickles"
- },
- {
- "properties": {
- "pickles": "3"
- },
- "blockModel": "three_sea_pickles"
- },
- {
- "properties": {
- "pickles": "4"
- },
- "blockModel": "four_sea_pickles"
- }
- ]
- },
- "blue_ice": {
- "blockModel": "blue_ice"
- },
- "conduit": {
- "blockModel": "conduit"
- },
- "bamboo_sapling": {
- "blockModel": "bamboo_sapling"
- },
- "bamboo": {
- "TODO": "",
- "states": [
- {
- "properties": {
- "leaves": "none"
- },
- "blockModel": "bamboo1_age0"
- },
- {
- "properties": {
- "leaves": "small"
- },
- "blockModel": "bamboo_small_leaves"
- },
- {
- "properties": {
- "leaves": "large"
- },
- "blockModel": "bamboo_large_leaves"
- }
- ]
- },
- "potted_bamboo": {
- "blockModel": "potted_bamboo"
- },
- "void_air": {
- },
- "cave_air": {
- },
- "bubble_column": {
- },
- "polished_granite_stairs": {
- "type": "stairs",
- "straight": "polished_granite_stairs",
- "inner": "polished_granite_stairs_inner",
- "outer": "polished_granite_stairs_outer"
- },
- "smooth_red_sandstone_stairs": {
- "type": "stairs",
- "straight": "smooth_red_sandstone_stairs",
- "inner": "smooth_red_sandstone_stairs_inner",
- "outer": "smooth_red_sandstone_stairs_outer"
- },
- "mossy_stone_brick_stairs": {
- "type": "stairs",
- "straight": "mossy_stone_brick_stairs",
- "inner": "mossy_stone_brick_stairs_inner",
- "outer": "mossy_stone_brick_stairs_outer"
- },
- "polished_diorite_stairs": {
- "type": "stairs",
- "straight": "polished_diorite_stairs",
- "inner": "polished_diorite_stairs_inner",
- "outer": "polished_diorite_stairs_outer"
- },
- "mossy_cobblestone_stairs": {
- "type": "stairs",
- "straight": "mossy_cobblestone_stairs",
- "inner": "mossy_cobblestone_stairs_inner",
- "outer": "mossy_cobblestone_stairs_outer"
- },
- "end_stone_brick_stairs": {
- "type": "stairs",
- "straight": "end_stone_brick_stairs",
- "inner": "end_stone_brick_stairs_inner",
- "outer": "end_stone_brick_stairs_outer"
- },
- "stone_stairs": {
- "type": "stairs",
- "straight": "stone_stairs",
- "inner": "stone_stairs_inner",
- "outer": "stone_stairs_outer"
- },
- "smooth_quartz_stairs": {
- "type": "stairs",
- "straight": "smooth_quartz_stairs",
- "inner": "smooth_quartz_stairs_inner",
- "outer": "smooth_quartz_stairs_outer"
- },
- "granite_stairs": {
- "type": "stairs",
- "straight": "granite_stairs",
- "inner": "granite_stairs_inner",
- "outer": "granite_stairs_outer"
- },
- "andesite_stairs": {
- "type": "stairs",
- "straight": "andesite_stairs",
- "inner": "andesite_stairs_inner",
- "outer": "andesite_stairs_outer"
- },
- "red_nether_brick_stairs": {
- "type": "stairs",
- "straight": "red_nether_brick_stairs",
- "inner": "red_nether_brick_stairs_inner",
- "outer": "red_nether_brick_stairs_outer"
- },
- "polished_andesite_stairs": {
- "type": "stairs",
- "straight": "polished_andesite_stairs",
- "inner": "polished_andesite_stairs_inner",
- "outer": "polished_andesite_stairs_outer"
- },
- "diorite_stairs": {
- "type": "stairs",
- "straight": "diorite_stairs",
- "inner": "diorite_stairs_inner",
- "outer": "diorite_stairs_outer"
- },
- "smooth_red_sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "smooth_red_sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "smooth_red_sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "smooth_red_sandstone"
- }
- ]
- },
- "mossy_stone_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "mossy_stone_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "mossy_stone_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "mossy_stone_bricks"
- }
- ]
- },
- "polished_diorite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "polished_diorite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "polished_diorite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "polished_diorite"
- }
- ]
- },
- "mossy_cobblestone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "mossy_cobblestone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "mossy_cobblestone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "mossy_cobblestone"
- }
- ]
- },
- "end_stone_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "end_stone_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "end_stone_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "end_stone_bricks"
- }
- ]
- },
- "smooth_sandstone_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "smooth_sandstone_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "smooth_sandstone_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "smooth_sandstone"
- }
- ]
- },
- "smooth_quartz_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "smooth_quartz_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "smooth_quartz_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "smooth_quartz"
- }
- ]
- },
- "granite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "granite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "granite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "granite"
- }
- ]
- },
- "andesite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "andesite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "andesite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "andesite"
- }
- ]
- },
- "red_nether_brick_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "red_nether_brick_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "red_nether_brick_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "red_nether_bricks"
- }
- ]
- },
- "polished_andesite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "polished_andesite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "polished_andesite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "polished_andesite"
- }
- ]
- },
- "diorite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "diorite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "diorite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "diorite"
- }
- ]
- },
- "polished_granite_slab": {
- "states": [
- {
- "properties": {
- "type": "top"
- },
- "blockModel": "polished_granite_slab_top"
- },
- {
- "properties": {
- "type": "bottom"
- },
- "blockModel": "polished_granite_slab"
- },
- {
- "properties": {
- "type": "double"
- },
- "blockModel": "polished_granite"
- }
- ]
- },
- "brick_wall": {
- "type": "wall",
- "post": "brick_wall_post",
- "side": "brick_wall_side"
- },
- "prismarine_wall": {
- "type": "wall",
- "post": "prismarine_wall_post",
- "side": "prismarine_wall_side"
- },
- "red_sandstone_wall": {
- "type": "wall",
- "post": "red_sandstone_wall_post",
- "side": "red_sandstone_wall_side"
- },
- "mossy_stone_brick_wall": {
- "type": "wall",
- "post": "mossy_stone_brick_wall_post",
- "side": "mossy_stone_brick_wall_side"
- },
- "granite_wall": {
- "type": "wall",
- "post": "granite_wall_post",
- "side": "granite_wall_side"
- },
- "stone_brick_wall": {
- "type": "wall",
- "post": "stone_brick_wall_post",
- "side": "stone_brick_wall_side"
- },
- "nether_brick_wall": {
- "type": "wall",
- "post": "nether_brick_wall_post",
- "side": "nether_brick_wall_side"
- },
- "andesite_wall": {
- "type": "wall",
- "post": "andesite_wall_post",
- "side": "andesite_wall_side"
- },
- "red_nether_brick_wall": {
- "type": "wall",
- "post": "red_nether_brick_wall_post",
- "side": "red_nether_brick_wall_side"
- },
- "sandstone_wall": {
- "type": "wall",
- "post": "sandstone_wall_post",
- "side": "sandstone_wall_side"
- },
- "end_stone_brick_wall": {
- "type": "wall",
- "post": "end_stone_brick_wall_post",
- "side": "end_stone_brick_wall_side"
- },
- "diorite_wall": {
- "type": "wall",
- "post": "diorite_wall_post",
- "side": "diorite_wall_side"
- },
- "scaffolding": {
- "states": [
- {
- "properties": {
- "bottom": "false"
- },
- "blockModel": "scaffolding_stable"
- },
- {
- "properties": {
- "bottom": "true"
- },
- "blockModel": "scaffolding_unstable"
- }
- ]
- },
- "loom": {
- "blockModel": "loom"
- },
- "barrel": {
- "states": [
- {
- "properties": {
- "open": "false"
- },
- "blockModel": "barrel"
- },
- {
- "properties": {
- "open": "true"
- },
- "blockModel": "barrel_open"
- }
- ]
- },
- "smoker": {
- "states": [
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "smoker"
- },
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "smoker_on"
- }
- ]
- },
- "blast_furnace": {
- "states": [
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "blast_furnace"
- },
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "blast_furnace_on"
- }
- ]
- },
- "cartography_table": {
- "blockModel": "cartography_table"
- },
- "fletching_table": {
- "blockModel": "fletching_table"
- },
- "grindstone": {
- "blockModel": "grindstone"
- },
- "lectern": {
- "blockModel": "lectern"
- },
- "smithing_table": {
- "blockModel": "smithing_table"
- },
- "stonecutter": {
- "blockModel": "stonecutter"
- },
- "bell": {
- "states": [
- {
- "properties": {
- "attachment": "floor"
- },
- "blockModel": "bell_floor"
- },
- {
- "properties": {
- "attachment": "ceiling"
- },
- "blockModel": "bell_ceiling"
- },
- {
- "properties": {
- "attachment": "single_wall"
- },
- "blockModel": "bell_wall"
- },
- {
- "properties": {
- "attachment": "double_wall"
- },
- "blockModel": "bell_between_walls"
- }
- ]
- },
- "lantern": {
- "states": [
- {
- "properties": {
- "hanging": "false"
- },
- "blockModel": "lantern"
- },
- {
- "properties": {
- "hanging": "true"
- },
- "blockModel": "hanging_lantern"
- }
- ]
- },
- "campfire": {
- "states": [
- {
- "properties": {
- "lit": "false"
- },
- "blockModel": "campfire_off"
- },
- {
- "properties": {
- "lit": "true"
- },
- "blockModel": "campfire"
- }
- ]
- },
- "sweet_berry_bush": {
- "type": "crop",
- "stages": "4",
- "base_name": "sweet_berry_bush_stage"
- },
- "structure_block": {
- "states": [
- {
- "properties": {
- "mode": "save"
- },
- "blockModel": "structure_block_save"
- },
- {
- "properties": {
- "mode": "load"
- },
- "blockModel": "structure_block_load"
- },
- {
- "properties": {
- "mode": "corner"
- },
- "blockModel": "structure_block_corner"
- },
- {
- "properties": {
- "mode": "data"
- },
- "blockModel": "structure_block_data"
- }
- ]
- },
- "jigsaw": {
- "blockModel": "jigsaw"
- },
- "composter": {
- "states": [
- {
- "properties": {
- "level": "0"
- },
- "blockModel": "composter"
- },
- {
- "properties": {
- "level": "1"
- },
- "blockModel": "composter_contents1"
- },
- {
- "properties": {
- "level": "2"
- },
- "blockModel": "composter_contents2"
- },
- {
- "properties": {
- "level": "3"
- },
- "blockModel": "composter_contents3"
- },
- {
- "properties": {
- "level": "4"
- },
- "blockModel": "composter_contents4"
- },
- {
- "properties": {
- "level": "5"
- },
- "blockModel": "composter_contents5"
- },
- {
- "properties": {
- "level": "6"
- },
- "blockModel": "composter_contents6"
- },
- {
- "properties": {
- "level": "7"
- },
- "blockModel": "composter_contents7"
- },
- {
- "properties": {
- "level": "8"
- },
- "blockModel": "composter_contents_ready"
- }
- ]
- },
- "bee_nest": {
- "states": [
- {
- "properties": {
- "honey_level": "0"
- },
- "blockModel": "bee_nest"
- },
- {
- "properties": {
- "honey_level": "1"
- },
- "blockModel": "bee_nest"
- },
- {
- "properties": {
- "honey_level": "2"
- },
- "blockModel": "bee_nest"
- },
- {
- "properties": {
- "honey_level": "3"
- },
- "blockModel": "bee_nest"
- },
- {
- "properties": {
- "honey_level": "4"
- },
- "blockModel": "bee_nest"
- },
- {
- "properties": {
- "honey_level": "5"
- },
- "blockModel": "bee_nest_honey"
- }
- ]
- },
- "beehive": {
- "states": [
- {
- "properties": {
- "honey_level": "0"
- },
- "blockModel": "beehive"
- },
- {
- "properties": {
- "honey_level": "1"
- },
- "blockModel": "beehive"
- },
- {
- "properties": {
- "honey_level": "2"
- },
- "blockModel": "beehive"
- },
- {
- "properties": {
- "honey_level": "3"
- },
- "blockModel": "beehive"
- },
- {
- "properties": {
- "honey_level": "4"
- },
- "blockModel": "beehive"
- },
- {
- "properties": {
- "honey_level": "5"
- },
- "blockModel": "beehive_honey"
- }
- ]
- },
- "honey_block": {
- "blockModel": "honey_block"
- },
- "honeycomb_block": {
- "blockModel": "honeycomb_block"
- }
- },
- "tinted_textures": {
- "block/grass_block_top": [0,1,0],
- "block/grass": [0,1,0]
- }
-}
\ No newline at end of file
+{"blockStates":{"acacia_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/acacia_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/acacia_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/acacia_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/acacia_button"},"face=wall,facing=east,powered=false":{"model":"block/acacia_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/acacia_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/acacia_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/acacia_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/acacia_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/acacia_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/acacia_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/acacia_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/acacia_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/acacia_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/acacia_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/acacia_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/acacia_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/acacia_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/acacia_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/acacia_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/acacia_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/acacia_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/acacia_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/acacia_button_pressed","x":180,"y":180}}},"acacia_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/acacia_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/acacia_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/acacia_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/acacia_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/acacia_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/acacia_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/acacia_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/acacia_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/acacia_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/acacia_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/acacia_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/acacia_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/acacia_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/acacia_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/acacia_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/acacia_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/acacia_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/acacia_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/acacia_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/acacia_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/acacia_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/acacia_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/acacia_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/acacia_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/acacia_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/acacia_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/acacia_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/acacia_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/acacia_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/acacia_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/acacia_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/acacia_door_top","y":180}}},"acacia_fence":{"multipart":[{"apply":{"model":"block/acacia_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/acacia_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/acacia_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/acacia_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/acacia_fence_side","y":270,"uvlock":true}}]},"acacia_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/acacia_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/acacia_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/acacia_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/acacia_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/acacia_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/acacia_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/acacia_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/acacia_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/acacia_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/acacia_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/acacia_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/acacia_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/acacia_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/acacia_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/acacia_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/acacia_fence_gate_wall_open","uvlock":true,"y":270}}},"acacia_leaves":{"variants":{"":{"model":"block/acacia_leaves"}}},"acacia_log":{"variants":{"axis=y":{"model":"block/acacia_log"},"axis=z":{"model":"block/acacia_log","x":90},"axis=x":{"model":"block/acacia_log","x":90,"y":90}}},"acacia_planks":{"variants":{"":{"model":"block/acacia_planks"}}},"acacia_pressure_plate":{"variants":{"powered=false":{"model":"block/acacia_pressure_plate"},"powered=true":{"model":"block/acacia_pressure_plate_down"}}},"acacia_sapling":{"variants":{"":{"model":"block/acacia_sapling"}}},"acacia_sign":{"variants":{"":{"model":"block/acacia_sign"}}},"acacia_slab":{"variants":{"type=bottom":{"model":"block/acacia_slab"},"type=top":{"model":"block/acacia_slab_top"},"type=double":{"model":"block/acacia_planks"}}},"acacia_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/acacia_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/acacia_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/acacia_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/acacia_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/acacia_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/acacia_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/acacia_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/acacia_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/acacia_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/acacia_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/acacia_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/acacia_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/acacia_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/acacia_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/acacia_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/acacia_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/acacia_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/acacia_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/acacia_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/acacia_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/acacia_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/acacia_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/acacia_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/acacia_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/acacia_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/acacia_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/acacia_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/acacia_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/acacia_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/acacia_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/acacia_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/acacia_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/acacia_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/acacia_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/acacia_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/acacia_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/acacia_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/acacia_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/acacia_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/acacia_stairs_inner","x":180,"y":270,"uvlock":true}}},"acacia_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/acacia_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/acacia_trapdoor_bottom","y":180},"facing=east,half=bottom,open=false":{"model":"block/acacia_trapdoor_bottom","y":90},"facing=west,half=bottom,open=false":{"model":"block/acacia_trapdoor_bottom","y":270},"facing=north,half=top,open=false":{"model":"block/acacia_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/acacia_trapdoor_top","y":180},"facing=east,half=top,open=false":{"model":"block/acacia_trapdoor_top","y":90},"facing=west,half=top,open=false":{"model":"block/acacia_trapdoor_top","y":270},"facing=north,half=bottom,open=true":{"model":"block/acacia_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/acacia_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/acacia_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/acacia_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/acacia_trapdoor_open","x":180,"y":180},"facing=south,half=top,open=true":{"model":"block/acacia_trapdoor_open","x":180,"y":0},"facing=east,half=top,open=true":{"model":"block/acacia_trapdoor_open","x":180,"y":270},"facing=west,half=top,open=true":{"model":"block/acacia_trapdoor_open","x":180,"y":90}}},"acacia_wall_sign":{"variants":{"":{"model":"block/acacia_sign"}}},"acacia_wood":{"variants":{"axis=y":{"model":"block/acacia_wood"},"axis=z":{"model":"block/acacia_wood","x":90},"axis=x":{"model":"block/acacia_wood","x":90,"y":90}}},"activator_rail":{"variants":{"powered=false,shape=north_south":{"model":"block/activator_rail"},"powered=false,shape=east_west":{"model":"block/activator_rail","y":90},"powered=false,shape=ascending_east":{"model":"block/activator_rail_raised_ne","y":90},"powered=false,shape=ascending_west":{"model":"block/activator_rail_raised_sw","y":90},"powered=false,shape=ascending_north":{"model":"block/activator_rail_raised_ne"},"powered=false,shape=ascending_south":{"model":"block/activator_rail_raised_sw"},"powered=true,shape=north_south":{"model":"block/activator_rail_on"},"powered=true,shape=east_west":{"model":"block/activator_rail_on","y":90},"powered=true,shape=ascending_east":{"model":"block/activator_rail_on_raised_ne","y":90},"powered=true,shape=ascending_west":{"model":"block/activator_rail_on_raised_sw","y":90},"powered=true,shape=ascending_north":{"model":"block/activator_rail_on_raised_ne"},"powered=true,shape=ascending_south":{"model":"block/activator_rail_on_raised_sw"}}},"air":{"variants":{"":{"model":"block/air"}}},"allium":{"variants":{"":{"model":"block/allium"}}},"andesite":{"variants":{"":{"model":"block/andesite"}}},"andesite_slab":{"variants":{"type=bottom":{"model":"block/andesite_slab"},"type=top":{"model":"block/andesite_slab_top"},"type=double":{"model":"block/andesite"}}},"andesite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/andesite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/andesite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/andesite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/andesite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/andesite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/andesite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/andesite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/andesite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/andesite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/andesite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/andesite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/andesite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/andesite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/andesite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/andesite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/andesite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/andesite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/andesite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/andesite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/andesite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/andesite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/andesite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/andesite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/andesite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/andesite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/andesite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/andesite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/andesite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/andesite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/andesite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/andesite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/andesite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/andesite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/andesite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/andesite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/andesite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/andesite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/andesite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/andesite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/andesite_stairs_inner","x":180,"y":270,"uvlock":true}}},"andesite_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/andesite_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/andesite_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/andesite_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/andesite_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/andesite_wall_side","y":270,"uvlock":true}}]},"anvil":{"variants":{"facing=south":{"model":"block/anvil"},"facing=west":{"model":"block/anvil","y":90},"facing=north":{"model":"block/anvil","y":180},"facing=east":{"model":"block/anvil","y":270}}},"attached_melon_stem":{"variants":{"facing=west":{"model":"block/attached_melon_stem"},"facing=east":{"model":"block/attached_melon_stem","y":180},"facing=north":{"model":"block/attached_melon_stem","y":90},"facing=south":{"model":"block/attached_melon_stem","y":270}}},"attached_pumpkin_stem":{"variants":{"facing=west":{"model":"block/attached_pumpkin_stem"},"facing=east":{"model":"block/attached_pumpkin_stem","y":180},"facing=north":{"model":"block/attached_pumpkin_stem","y":90},"facing=south":{"model":"block/attached_pumpkin_stem","y":270}}},"azure_bluet":{"variants":{"":{"model":"block/azure_bluet"}}},"bamboo":{"multipart":[{"when":{"age":"0"},"apply":[{"model":"block/bamboo1_age0"},{"model":"block/bamboo2_age0"},{"model":"block/bamboo3_age0"},{"model":"block/bamboo4_age0"}]},{"when":{"age":"1"},"apply":[{"model":"block/bamboo1_age1"},{"model":"block/bamboo2_age1"},{"model":"block/bamboo3_age1"},{"model":"block/bamboo4_age1"}]},{"when":{"leaves":"small"},"apply":{"model":"block/bamboo_small_leaves"}},{"when":{"leaves":"large"},"apply":{"model":"block/bamboo_large_leaves"}}]},"bamboo_sapling":{"variants":{"":{"model":"block/bamboo_sapling"}}},"barrel":{"variants":{"facing=down,open=false":{"model":"block/barrel","x":180},"facing=up,open=false":{"model":"block/barrel"},"facing=north,open=false":{"model":"block/barrel","x":90},"facing=south,open=false":{"model":"block/barrel","x":90,"y":180},"facing=west,open=false":{"model":"block/barrel","x":90,"y":270},"facing=east,open=false":{"model":"block/barrel","x":90,"y":90},"facing=down,open=true":{"model":"block/barrel_open","x":180},"facing=up,open=true":{"model":"block/barrel_open"},"facing=north,open=true":{"model":"block/barrel_open","x":90},"facing=south,open=true":{"model":"block/barrel_open","x":90,"y":180},"facing=west,open=true":{"model":"block/barrel_open","x":90,"y":270},"facing=east,open=true":{"model":"block/barrel_open","x":90,"y":90}}},"barrier":{"variants":{"":{"model":"block/barrier"}}},"beacon":{"variants":{"":{"model":"block/beacon"}}},"bedrock":{"variants":{"":[{"model":"block/bedrock"},{"model":"block/bedrock_mirrored"},{"model":"block/bedrock","y":180},{"model":"block/bedrock_mirrored","y":180}]}},"beehive":{"variants":{"facing=north,honey_level=0":{"model":"block/beehive"},"facing=south,honey_level=0":{"model":"block/beehive","y":180},"facing=west,honey_level=0":{"model":"block/beehive","y":270},"facing=east,honey_level=0":{"model":"block/beehive","y":90},"facing=north,honey_level=1":{"model":"block/beehive"},"facing=south,honey_level=1":{"model":"block/beehive","y":180},"facing=west,honey_level=1":{"model":"block/beehive","y":270},"facing=east,honey_level=1":{"model":"block/beehive","y":90},"facing=north,honey_level=2":{"model":"block/beehive"},"facing=south,honey_level=2":{"model":"block/beehive","y":180},"facing=west,honey_level=2":{"model":"block/beehive","y":270},"facing=east,honey_level=2":{"model":"block/beehive","y":90},"facing=north,honey_level=3":{"model":"block/beehive"},"facing=south,honey_level=3":{"model":"block/beehive","y":180},"facing=west,honey_level=3":{"model":"block/beehive","y":270},"facing=east,honey_level=3":{"model":"block/beehive","y":90},"facing=north,honey_level=4":{"model":"block/beehive"},"facing=south,honey_level=4":{"model":"block/beehive","y":180},"facing=west,honey_level=4":{"model":"block/beehive","y":270},"facing=east,honey_level=4":{"model":"block/beehive","y":90},"facing=north,honey_level=5":{"model":"block/beehive_honey"},"facing=south,honey_level=5":{"model":"block/beehive_honey","y":180},"facing=west,honey_level=5":{"model":"block/beehive_honey","y":270},"facing=east,honey_level=5":{"model":"block/beehive_honey","y":90}}},"beetroots":{"variants":{"age=0":{"model":"block/beetroots_stage0"},"age=1":{"model":"block/beetroots_stage1"},"age=2":{"model":"block/beetroots_stage2"},"age=3":{"model":"block/beetroots_stage3"}}},"bee_nest":{"variants":{"facing=north,honey_level=0":{"model":"block/bee_nest"},"facing=south,honey_level=0":{"model":"block/bee_nest","y":180},"facing=west,honey_level=0":{"model":"block/bee_nest","y":270},"facing=east,honey_level=0":{"model":"block/bee_nest","y":90},"facing=north,honey_level=1":{"model":"block/bee_nest"},"facing=south,honey_level=1":{"model":"block/bee_nest","y":180},"facing=west,honey_level=1":{"model":"block/bee_nest","y":270},"facing=east,honey_level=1":{"model":"block/bee_nest","y":90},"facing=north,honey_level=2":{"model":"block/bee_nest"},"facing=south,honey_level=2":{"model":"block/bee_nest","y":180},"facing=west,honey_level=2":{"model":"block/bee_nest","y":270},"facing=east,honey_level=2":{"model":"block/bee_nest","y":90},"facing=north,honey_level=3":{"model":"block/bee_nest"},"facing=south,honey_level=3":{"model":"block/bee_nest","y":180},"facing=west,honey_level=3":{"model":"block/bee_nest","y":270},"facing=east,honey_level=3":{"model":"block/bee_nest","y":90},"facing=north,honey_level=4":{"model":"block/bee_nest"},"facing=south,honey_level=4":{"model":"block/bee_nest","y":180},"facing=west,honey_level=4":{"model":"block/bee_nest","y":270},"facing=east,honey_level=4":{"model":"block/bee_nest","y":90},"facing=north,honey_level=5":{"model":"block/bee_nest_honey"},"facing=south,honey_level=5":{"model":"block/bee_nest_honey","y":180},"facing=west,honey_level=5":{"model":"block/bee_nest_honey","y":270},"facing=east,honey_level=5":{"model":"block/bee_nest_honey","y":90}}},"bell":{"variants":{"facing=north,attachment=floor":{"model":"block/bell_floor"},"facing=south,attachment=floor":{"model":"block/bell_floor","y":180},"facing=east,attachment=floor":{"model":"block/bell_floor","y":90},"facing=west,attachment=floor":{"model":"block/bell_floor","y":270},"facing=north,attachment=ceiling":{"model":"block/bell_ceiling"},"facing=south,attachment=ceiling":{"model":"block/bell_ceiling","y":180},"facing=east,attachment=ceiling":{"model":"block/bell_ceiling","y":90},"facing=west,attachment=ceiling":{"model":"block/bell_ceiling","y":270},"facing=east,attachment=single_wall":{"model":"block/bell_wall"},"facing=west,attachment=single_wall":{"model":"block/bell_wall","y":180},"facing=south,attachment=single_wall":{"model":"block/bell_wall","y":90},"facing=north,attachment=single_wall":{"model":"block/bell_wall","y":270},"facing=east,attachment=double_wall":{"model":"block/bell_between_walls"},"facing=west,attachment=double_wall":{"model":"block/bell_between_walls","y":180},"facing=north,attachment=double_wall":{"model":"block/bell_between_walls","y":90},"facing=south,attachment=double_wall":{"model":"block/bell_between_walls","y":270}}},"birch_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/birch_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/birch_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/birch_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/birch_button"},"face=wall,facing=east,powered=false":{"model":"block/birch_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/birch_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/birch_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/birch_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/birch_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/birch_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/birch_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/birch_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/birch_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/birch_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/birch_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/birch_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/birch_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/birch_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/birch_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/birch_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/birch_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/birch_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/birch_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/birch_button_pressed","x":180,"y":180}}},"birch_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/birch_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/birch_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/birch_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/birch_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/birch_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/birch_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/birch_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/birch_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/birch_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/birch_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/birch_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/birch_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/birch_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/birch_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/birch_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/birch_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/birch_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/birch_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/birch_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/birch_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/birch_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/birch_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/birch_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/birch_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/birch_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/birch_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/birch_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/birch_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/birch_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/birch_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/birch_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/birch_door_top","y":180}}},"birch_fence":{"multipart":[{"apply":{"model":"block/birch_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/birch_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/birch_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/birch_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/birch_fence_side","y":270,"uvlock":true}}]},"birch_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/birch_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/birch_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/birch_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/birch_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/birch_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/birch_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/birch_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/birch_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/birch_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/birch_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/birch_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/birch_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/birch_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/birch_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/birch_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/birch_fence_gate_wall_open","uvlock":true,"y":270}}},"birch_leaves":{"variants":{"":{"model":"block/birch_leaves"}}},"birch_log":{"variants":{"axis=y":{"model":"block/birch_log"},"axis=z":{"model":"block/birch_log","x":90},"axis=x":{"model":"block/birch_log","x":90,"y":90}}},"birch_planks":{"variants":{"":{"model":"block/birch_planks"}}},"birch_pressure_plate":{"variants":{"powered=false":{"model":"block/birch_pressure_plate"},"powered=true":{"model":"block/birch_pressure_plate_down"}}},"birch_sapling":{"variants":{"":{"model":"block/birch_sapling"}}},"birch_sign":{"variants":{"":{"model":"block/birch_sign"}}},"birch_slab":{"variants":{"type=bottom":{"model":"block/birch_slab"},"type=top":{"model":"block/birch_slab_top"},"type=double":{"model":"block/birch_planks"}}},"birch_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/birch_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/birch_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/birch_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/birch_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/birch_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/birch_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/birch_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/birch_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/birch_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/birch_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/birch_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/birch_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/birch_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/birch_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/birch_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/birch_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/birch_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/birch_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/birch_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/birch_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/birch_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/birch_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/birch_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/birch_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/birch_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/birch_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/birch_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/birch_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/birch_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/birch_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/birch_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/birch_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/birch_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/birch_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/birch_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/birch_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/birch_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/birch_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/birch_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/birch_stairs_inner","x":180,"y":270,"uvlock":true}}},"birch_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/birch_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/birch_trapdoor_bottom","y":180},"facing=east,half=bottom,open=false":{"model":"block/birch_trapdoor_bottom","y":90},"facing=west,half=bottom,open=false":{"model":"block/birch_trapdoor_bottom","y":270},"facing=north,half=top,open=false":{"model":"block/birch_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/birch_trapdoor_top","y":180},"facing=east,half=top,open=false":{"model":"block/birch_trapdoor_top","y":90},"facing=west,half=top,open=false":{"model":"block/birch_trapdoor_top","y":270},"facing=north,half=bottom,open=true":{"model":"block/birch_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/birch_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/birch_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/birch_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/birch_trapdoor_open","x":180,"y":180},"facing=south,half=top,open=true":{"model":"block/birch_trapdoor_open","x":180,"y":0},"facing=east,half=top,open=true":{"model":"block/birch_trapdoor_open","x":180,"y":270},"facing=west,half=top,open=true":{"model":"block/birch_trapdoor_open","x":180,"y":90}}},"birch_wall_sign":{"variants":{"":{"model":"block/birch_sign"}}},"birch_wood":{"variants":{"axis=y":{"model":"block/birch_wood"},"axis=z":{"model":"block/birch_wood","x":90},"axis=x":{"model":"block/birch_wood","x":90,"y":90}}},"black_banner":{"variants":{"":{"model":"block/banner"}}},"black_bed":{"variants":{"":{"model":"block/bed"}}},"black_carpet":{"variants":{"":{"model":"block/black_carpet"}}},"black_concrete":{"variants":{"":{"model":"block/black_concrete"}}},"black_concrete_powder":{"variants":{"":[{"model":"block/black_concrete_powder"},{"model":"block/black_concrete_powder","y":90},{"model":"block/black_concrete_powder","y":180},{"model":"block/black_concrete_powder","y":270}]}},"black_glazed_terracotta":{"variants":{"facing=south":{"model":"block/black_glazed_terracotta"},"facing=west":{"model":"block/black_glazed_terracotta","y":90},"facing=north":{"model":"block/black_glazed_terracotta","y":180},"facing=east":{"model":"block/black_glazed_terracotta","y":270}}},"black_shulker_box":{"variants":{"":{"model":"block/black_shulker_box"}}},"black_stained_glass":{"variants":{"":{"model":"block/black_stained_glass"}}},"black_stained_glass_pane":{"multipart":[{"apply":{"model":"block/black_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/black_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/black_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/black_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/black_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/black_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/black_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/black_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/black_stained_glass_pane_noside","y":270}}]},"black_terracotta":{"variants":{"":{"model":"block/black_terracotta"}}},"black_wall_banner":{"variants":{"":{"model":"block/banner"}}},"black_wool":{"variants":{"":{"model":"block/black_wool"}}},"blast_furnace":{"variants":{"facing=north,lit=false":{"model":"block/blast_furnace"},"facing=south,lit=false":{"model":"block/blast_furnace","y":180},"facing=west,lit=false":{"model":"block/blast_furnace","y":270},"facing=east,lit=false":{"model":"block/blast_furnace","y":90},"facing=north,lit=true":{"model":"block/blast_furnace_on"},"facing=south,lit=true":{"model":"block/blast_furnace_on","y":180},"facing=west,lit=true":{"model":"block/blast_furnace_on","y":270},"facing=east,lit=true":{"model":"block/blast_furnace_on","y":90}}},"blue_banner":{"variants":{"":{"model":"block/banner"}}},"blue_bed":{"variants":{"":{"model":"block/bed"}}},"blue_carpet":{"variants":{"":{"model":"block/blue_carpet"}}},"blue_concrete":{"variants":{"":{"model":"block/blue_concrete"}}},"blue_concrete_powder":{"variants":{"":[{"model":"block/blue_concrete_powder"},{"model":"block/blue_concrete_powder","y":90},{"model":"block/blue_concrete_powder","y":180},{"model":"block/blue_concrete_powder","y":270}]}},"blue_glazed_terracotta":{"variants":{"facing=south":{"model":"block/blue_glazed_terracotta"},"facing=west":{"model":"block/blue_glazed_terracotta","y":90},"facing=north":{"model":"block/blue_glazed_terracotta","y":180},"facing=east":{"model":"block/blue_glazed_terracotta","y":270}}},"blue_ice":{"variants":{"":{"model":"block/blue_ice"}}},"blue_orchid":{"variants":{"":{"model":"block/blue_orchid"}}},"blue_shulker_box":{"variants":{"":{"model":"block/blue_shulker_box"}}},"blue_stained_glass":{"variants":{"":{"model":"block/blue_stained_glass"}}},"blue_stained_glass_pane":{"multipart":[{"apply":{"model":"block/blue_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/blue_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/blue_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/blue_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/blue_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/blue_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/blue_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/blue_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/blue_stained_glass_pane_noside","y":270}}]},"blue_terracotta":{"variants":{"":{"model":"block/blue_terracotta"}}},"blue_wall_banner":{"variants":{"":{"model":"block/banner"}}},"blue_wool":{"variants":{"":{"model":"block/blue_wool"}}},"bone_block":{"variants":{"axis=y":{"model":"block/bone_block"},"axis=z":{"model":"block/bone_block","x":90},"axis=x":{"model":"block/bone_block","x":90,"y":90}}},"bookshelf":{"variants":{"":{"model":"block/bookshelf"}}},"brain_coral":{"variants":{"":{"model":"block/brain_coral"}}},"brain_coral_block":{"variants":{"":{"model":"block/brain_coral_block"}}},"brain_coral_fan":{"variants":{"":{"model":"block/brain_coral_fan"}}},"brain_coral_wall_fan":{"variants":{"facing=east":{"model":"block/brain_coral_wall_fan","y":90},"facing=south":{"model":"block/brain_coral_wall_fan","y":180},"facing=west":{"model":"block/brain_coral_wall_fan","y":270},"facing=north":{"model":"block/brain_coral_wall_fan","y":0}}},"brewing_stand":{"multipart":[{"apply":{"model":"block/brewing_stand"}},{"when":{"has_bottle_0":"true"},"apply":{"model":"block/brewing_stand_bottle0"}},{"when":{"has_bottle_1":"true"},"apply":{"model":"block/brewing_stand_bottle1"}},{"when":{"has_bottle_2":"true"},"apply":{"model":"block/brewing_stand_bottle2"}},{"when":{"has_bottle_0":"false"},"apply":{"model":"block/brewing_stand_empty0"}},{"when":{"has_bottle_1":"false"},"apply":{"model":"block/brewing_stand_empty1"}},{"when":{"has_bottle_2":"false"},"apply":{"model":"block/brewing_stand_empty2"}}]},"bricks":{"variants":{"":{"model":"block/bricks"}}},"brick_slab":{"variants":{"type=bottom":{"model":"block/brick_slab"},"type=top":{"model":"block/brick_slab_top"},"type=double":{"model":"block/bricks"}}},"brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/brick_wall_side","y":270,"uvlock":true}}]},"brown_banner":{"variants":{"":{"model":"block/banner"}}},"brown_bed":{"variants":{"":{"model":"block/bed"}}},"brown_carpet":{"variants":{"":{"model":"block/brown_carpet"}}},"brown_concrete":{"variants":{"":{"model":"block/brown_concrete"}}},"brown_concrete_powder":{"variants":{"":[{"model":"block/brown_concrete_powder"},{"model":"block/brown_concrete_powder","y":90},{"model":"block/brown_concrete_powder","y":180},{"model":"block/brown_concrete_powder","y":270}]}},"brown_glazed_terracotta":{"variants":{"facing=south":{"model":"block/brown_glazed_terracotta"},"facing=west":{"model":"block/brown_glazed_terracotta","y":90},"facing=north":{"model":"block/brown_glazed_terracotta","y":180},"facing=east":{"model":"block/brown_glazed_terracotta","y":270}}},"brown_mushroom":{"variants":{"":{"model":"block/brown_mushroom"}}},"brown_mushroom_block":{"multipart":[{"when":{"north":true},"apply":{"model":"block/brown_mushroom_block"}},{"when":{"east":true},"apply":{"model":"block/brown_mushroom_block","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/brown_mushroom_block","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/brown_mushroom_block","y":270,"uvlock":true}},{"when":{"up":true},"apply":{"model":"block/brown_mushroom_block","x":270,"uvlock":true}},{"when":{"down":true},"apply":{"model":"block/brown_mushroom_block","x":90,"uvlock":true}},{"when":{"north":false},"apply":{"model":"block/mushroom_block_inside"}},{"when":{"east":false},"apply":{"model":"block/mushroom_block_inside","y":90,"uvlock":false}},{"when":{"south":false},"apply":{"model":"block/mushroom_block_inside","y":180,"uvlock":false}},{"when":{"west":false},"apply":{"model":"block/mushroom_block_inside","y":270,"uvlock":false}},{"when":{"up":false},"apply":{"model":"block/mushroom_block_inside","x":270,"uvlock":false}},{"when":{"down":false},"apply":{"model":"block/mushroom_block_inside","x":90,"uvlock":false}}]},"brown_shulker_box":{"variants":{"":{"model":"block/brown_shulker_box"}}},"brown_stained_glass":{"variants":{"":{"model":"block/brown_stained_glass"}}},"brown_stained_glass_pane":{"multipart":[{"apply":{"model":"block/brown_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/brown_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/brown_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/brown_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/brown_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/brown_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/brown_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/brown_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/brown_stained_glass_pane_noside","y":270}}]},"brown_terracotta":{"variants":{"":{"model":"block/brown_terracotta"}}},"brown_wall_banner":{"variants":{"":{"model":"block/banner"}}},"brown_wool":{"variants":{"":{"model":"block/brown_wool"}}},"bubble_column":{"variants":{"":{"model":"block/water"}}},"bubble_coral":{"variants":{"":{"model":"block/bubble_coral"}}},"bubble_coral_block":{"variants":{"":{"model":"block/bubble_coral_block"}}},"bubble_coral_fan":{"variants":{"":{"model":"block/bubble_coral_fan"}}},"bubble_coral_wall_fan":{"variants":{"facing=east":{"model":"block/bubble_coral_wall_fan","y":90},"facing=south":{"model":"block/bubble_coral_wall_fan","y":180},"facing=west":{"model":"block/bubble_coral_wall_fan","y":270},"facing=north":{"model":"block/bubble_coral_wall_fan","y":0}}},"cactus":{"variants":{"":{"model":"block/cactus"}}},"cake":{"variants":{"bites=0":{"model":"block/cake"},"bites=1":{"model":"block/cake_slice1"},"bites=2":{"model":"block/cake_slice2"},"bites=3":{"model":"block/cake_slice3"},"bites=4":{"model":"block/cake_slice4"},"bites=5":{"model":"block/cake_slice5"},"bites=6":{"model":"block/cake_slice6"}}},"campfire":{"variants":{"facing=north,lit=true":{"model":"block/campfire","y":180},"facing=south,lit=true":{"model":"block/campfire"},"facing=east,lit=true":{"model":"block/campfire","y":270},"facing=west,lit=true":{"model":"block/campfire","y":90},"facing=north,lit=false":{"model":"block/campfire_off","y":180},"facing=south,lit=false":{"model":"block/campfire_off"},"facing=east,lit=false":{"model":"block/campfire_off","y":270},"facing=west,lit=false":{"model":"block/campfire_off","y":90}}},"carrots":{"variants":{"age=0":{"model":"block/carrots_stage0"},"age=1":{"model":"block/carrots_stage0"},"age=2":{"model":"block/carrots_stage1"},"age=3":{"model":"block/carrots_stage1"},"age=4":{"model":"block/carrots_stage2"},"age=5":{"model":"block/carrots_stage2"},"age=6":{"model":"block/carrots_stage2"},"age=7":{"model":"block/carrots_stage3"}}},"cartography_table":{"variants":{"":{"model":"block/cartography_table"}}},"carved_pumpkin":{"variants":{"facing=north":{"model":"block/carved_pumpkin"},"facing=south":{"model":"block/carved_pumpkin","y":180},"facing=west":{"model":"block/carved_pumpkin","y":270},"facing=east":{"model":"block/carved_pumpkin","y":90}}},"cauldron":{"variants":{"level=0":{"model":"block/cauldron"},"level=1":{"model":"block/cauldron_level1"},"level=2":{"model":"block/cauldron_level2"},"level=3":{"model":"block/cauldron_level3"}}},"cave_air":{"variants":{"":{"model":"block/air"}}},"chain_command_block":{"variants":{"conditional=false,facing=down":{"model":"block/chain_command_block","x":90},"conditional=false,facing=up":{"model":"block/chain_command_block","x":270},"conditional=false,facing=north":{"model":"block/chain_command_block"},"conditional=false,facing=south":{"model":"block/chain_command_block","y":180},"conditional=false,facing=west":{"model":"block/chain_command_block","y":270},"conditional=false,facing=east":{"model":"block/chain_command_block","y":90},"conditional=true,facing=down":{"model":"block/chain_command_block_conditional","x":90},"conditional=true,facing=up":{"model":"block/chain_command_block_conditional","x":270},"conditional=true,facing=north":{"model":"block/chain_command_block_conditional"},"conditional=true,facing=south":{"model":"block/chain_command_block_conditional","y":180},"conditional=true,facing=west":{"model":"block/chain_command_block_conditional","y":270},"conditional=true,facing=east":{"model":"block/chain_command_block_conditional","y":90}}},"chest":{"variants":{"":{"model":"block/chest"}}},"chipped_anvil":{"variants":{"facing=south":{"model":"block/chipped_anvil"},"facing=west":{"model":"block/chipped_anvil","y":90},"facing=north":{"model":"block/chipped_anvil","y":180},"facing=east":{"model":"block/chipped_anvil","y":270}}},"chiseled_quartz_block":{"variants":{"":{"model":"block/chiseled_quartz_block"}}},"chiseled_red_sandstone":{"variants":{"":{"model":"block/chiseled_red_sandstone"}}},"chiseled_sandstone":{"variants":{"":{"model":"block/chiseled_sandstone"}}},"chiseled_stone_bricks":{"variants":{"":{"model":"block/chiseled_stone_bricks"}}},"chorus_flower":{"variants":{"age=0":{"model":"block/chorus_flower"},"age=1":{"model":"block/chorus_flower"},"age=2":{"model":"block/chorus_flower"},"age=3":{"model":"block/chorus_flower"},"age=4":{"model":"block/chorus_flower"},"age=5":{"model":"block/chorus_flower_dead"}}},"chorus_plant":{"multipart":[{"when":{"north":true},"apply":{"model":"block/chorus_plant_side"}},{"when":{"east":true},"apply":{"model":"block/chorus_plant_side","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/chorus_plant_side","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/chorus_plant_side","y":270,"uvlock":true}},{"when":{"up":true},"apply":{"model":"block/chorus_plant_side","x":270,"uvlock":true}},{"when":{"down":true},"apply":{"model":"block/chorus_plant_side","x":90,"uvlock":true}},{"when":{"north":false},"apply":[{"model":"block/chorus_plant_noside","weight":2},{"model":"block/chorus_plant_noside1"},{"model":"block/chorus_plant_noside2"},{"model":"block/chorus_plant_noside3"}]},{"when":{"east":false},"apply":[{"model":"block/chorus_plant_noside1","y":90,"uvlock":true},{"model":"block/chorus_plant_noside2","y":90,"uvlock":true},{"model":"block/chorus_plant_noside3","y":90,"uvlock":true},{"model":"block/chorus_plant_noside","weight":2,"y":90,"uvlock":true}]},{"when":{"south":false},"apply":[{"model":"block/chorus_plant_noside2","y":180,"uvlock":true},{"model":"block/chorus_plant_noside3","y":180,"uvlock":true},{"model":"block/chorus_plant_noside","weight":2,"y":180,"uvlock":true},{"model":"block/chorus_plant_noside1","y":180,"uvlock":true}]},{"when":{"west":false},"apply":[{"model":"block/chorus_plant_noside3","y":270,"uvlock":true},{"model":"block/chorus_plant_noside","weight":2,"y":270,"uvlock":true},{"model":"block/chorus_plant_noside1","y":270,"uvlock":true},{"model":"block/chorus_plant_noside2","y":270,"uvlock":true}]},{"when":{"up":false},"apply":[{"model":"block/chorus_plant_noside","weight":2,"x":270,"uvlock":true},{"model":"block/chorus_plant_noside3","x":270,"uvlock":true},{"model":"block/chorus_plant_noside1","x":270,"uvlock":true},{"model":"block/chorus_plant_noside2","x":270,"uvlock":true}]},{"when":{"down":false},"apply":[{"model":"block/chorus_plant_noside3","x":90,"uvlock":true},{"model":"block/chorus_plant_noside2","x":90,"uvlock":true},{"model":"block/chorus_plant_noside1","x":90,"uvlock":true},{"model":"block/chorus_plant_noside","weight":2,"x":90,"uvlock":true}]}]},"clay":{"variants":{"":{"model":"block/clay"}}},"coal_block":{"variants":{"":{"model":"block/coal_block"}}},"coal_ore":{"variants":{"":{"model":"block/coal_ore"}}},"coarse_dirt":{"variants":{"":{"model":"block/coarse_dirt"}}},"cobblestone":{"variants":{"":{"model":"block/cobblestone"}}},"cobblestone_slab":{"variants":{"type=bottom":{"model":"block/cobblestone_slab"},"type=top":{"model":"block/cobblestone_slab_top"},"type=double":{"model":"block/cobblestone"}}},"cobblestone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/cobblestone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/cobblestone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/cobblestone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/cobblestone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/cobblestone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/cobblestone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/cobblestone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/cobblestone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/cobblestone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/cobblestone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/cobblestone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/cobblestone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/cobblestone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/cobblestone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/cobblestone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/cobblestone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/cobblestone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/cobblestone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/cobblestone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/cobblestone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/cobblestone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/cobblestone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/cobblestone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/cobblestone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/cobblestone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/cobblestone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/cobblestone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/cobblestone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/cobblestone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/cobblestone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/cobblestone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/cobblestone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/cobblestone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/cobblestone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/cobblestone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/cobblestone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/cobblestone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/cobblestone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/cobblestone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/cobblestone_stairs_inner","x":180,"y":270,"uvlock":true}}},"cobblestone_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/cobblestone_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/cobblestone_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/cobblestone_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/cobblestone_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/cobblestone_wall_side","y":270,"uvlock":true}}]},"cobweb":{"variants":{"":{"model":"block/cobweb"}}},"cocoa":{"variants":{"age=0,facing=south":{"model":"block/cocoa_stage0"},"age=0,facing=west":{"model":"block/cocoa_stage0","y":90},"age=0,facing=north":{"model":"block/cocoa_stage0","y":180},"age=0,facing=east":{"model":"block/cocoa_stage0","y":270},"age=1,facing=south":{"model":"block/cocoa_stage1"},"age=1,facing=west":{"model":"block/cocoa_stage1","y":90},"age=1,facing=north":{"model":"block/cocoa_stage1","y":180},"age=1,facing=east":{"model":"block/cocoa_stage1","y":270},"age=2,facing=south":{"model":"block/cocoa_stage2"},"age=2,facing=west":{"model":"block/cocoa_stage2","y":90},"age=2,facing=north":{"model":"block/cocoa_stage2","y":180},"age=2,facing=east":{"model":"block/cocoa_stage2","y":270}}},"command_block":{"variants":{"conditional=false,facing=down":{"model":"block/command_block","x":90},"conditional=false,facing=up":{"model":"block/command_block","x":270},"conditional=false,facing=north":{"model":"block/command_block"},"conditional=false,facing=south":{"model":"block/command_block","y":180},"conditional=false,facing=west":{"model":"block/command_block","y":270},"conditional=false,facing=east":{"model":"block/command_block","y":90},"conditional=true,facing=down":{"model":"block/command_block_conditional","x":90},"conditional=true,facing=up":{"model":"block/command_block_conditional","x":270},"conditional=true,facing=north":{"model":"block/command_block_conditional"},"conditional=true,facing=south":{"model":"block/command_block_conditional","y":180},"conditional=true,facing=west":{"model":"block/command_block_conditional","y":270},"conditional=true,facing=east":{"model":"block/command_block_conditional","y":90}}},"comparator":{"variants":{"facing=south,mode=compare,powered=false":{"model":"block/comparator"},"facing=west,mode=compare,powered=false":{"model":"block/comparator","y":90},"facing=north,mode=compare,powered=false":{"model":"block/comparator","y":180},"facing=east,mode=compare,powered=false":{"model":"block/comparator","y":270},"facing=south,mode=subtract,powered=false":{"model":"block/comparator_subtract"},"facing=west,mode=subtract,powered=false":{"model":"block/comparator_subtract","y":90},"facing=north,mode=subtract,powered=false":{"model":"block/comparator_subtract","y":180},"facing=east,mode=subtract,powered=false":{"model":"block/comparator_subtract","y":270},"facing=south,mode=compare,powered=true":{"model":"block/comparator_on"},"facing=west,mode=compare,powered=true":{"model":"block/comparator_on","y":90},"facing=north,mode=compare,powered=true":{"model":"block/comparator_on","y":180},"facing=east,mode=compare,powered=true":{"model":"block/comparator_on","y":270},"facing=south,mode=subtract,powered=true":{"model":"block/comparator_on_subtract"},"facing=west,mode=subtract,powered=true":{"model":"block/comparator_on_subtract","y":90},"facing=north,mode=subtract,powered=true":{"model":"block/comparator_on_subtract","y":180},"facing=east,mode=subtract,powered=true":{"model":"block/comparator_on_subtract","y":270}}},"composter":{"multipart":[{"apply":{"model":"block/composter"}},{"when":{"level":"1"},"apply":{"model":"block/composter_contents1"}},{"when":{"level":"2"},"apply":{"model":"block/composter_contents2"}},{"when":{"level":"3"},"apply":{"model":"block/composter_contents3"}},{"when":{"level":"4"},"apply":{"model":"block/composter_contents4"}},{"when":{"level":"5"},"apply":{"model":"block/composter_contents5"}},{"when":{"level":"6"},"apply":{"model":"block/composter_contents6"}},{"when":{"level":"7"},"apply":{"model":"block/composter_contents7"}},{"when":{"level":"8"},"apply":{"model":"block/composter_contents_ready"}}]},"conduit":{"variants":{"":{"model":"block/conduit"}}},"cornflower":{"variants":{"":{"model":"block/cornflower"}}},"cracked_stone_bricks":{"variants":{"":{"model":"block/cracked_stone_bricks"}}},"crafting_table":{"variants":{"":{"model":"block/crafting_table"}}},"creeper_head":{"variants":{"":{"model":"block/skull"}}},"creeper_wall_head":{"variants":{"":{"model":"block/skull"}}},"cut_red_sandstone":{"variants":{"":{"model":"block/cut_red_sandstone"}}},"cut_red_sandstone_slab":{"variants":{"type=bottom":{"model":"block/cut_red_sandstone_slab"},"type=top":{"model":"block/cut_red_sandstone_slab_top"},"type=double":{"model":"block/cut_red_sandstone"}}},"cut_sandstone":{"variants":{"":{"model":"block/cut_sandstone"}}},"cut_sandstone_slab":{"variants":{"type=bottom":{"model":"block/cut_sandstone_slab"},"type=top":{"model":"block/cut_sandstone_slab_top"},"type=double":{"model":"block/cut_sandstone"}}},"cyan_banner":{"variants":{"":{"model":"block/banner"}}},"cyan_bed":{"variants":{"":{"model":"block/bed"}}},"cyan_carpet":{"variants":{"":{"model":"block/cyan_carpet"}}},"cyan_concrete":{"variants":{"":{"model":"block/cyan_concrete"}}},"cyan_concrete_powder":{"variants":{"":[{"model":"block/cyan_concrete_powder"},{"model":"block/cyan_concrete_powder","y":90},{"model":"block/cyan_concrete_powder","y":180},{"model":"block/cyan_concrete_powder","y":270}]}},"cyan_glazed_terracotta":{"variants":{"facing=south":{"model":"block/cyan_glazed_terracotta"},"facing=west":{"model":"block/cyan_glazed_terracotta","y":90},"facing=north":{"model":"block/cyan_glazed_terracotta","y":180},"facing=east":{"model":"block/cyan_glazed_terracotta","y":270}}},"cyan_shulker_box":{"variants":{"":{"model":"block/cyan_shulker_box"}}},"cyan_stained_glass":{"variants":{"":{"model":"block/cyan_stained_glass"}}},"cyan_stained_glass_pane":{"multipart":[{"apply":{"model":"block/cyan_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/cyan_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/cyan_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/cyan_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/cyan_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/cyan_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/cyan_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/cyan_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/cyan_stained_glass_pane_noside","y":270}}]},"cyan_terracotta":{"variants":{"":{"model":"block/cyan_terracotta"}}},"cyan_wall_banner":{"variants":{"":{"model":"block/banner"}}},"cyan_wool":{"variants":{"":{"model":"block/cyan_wool"}}},"damaged_anvil":{"variants":{"facing=south":{"model":"block/damaged_anvil"},"facing=west":{"model":"block/damaged_anvil","y":90},"facing=north":{"model":"block/damaged_anvil","y":180},"facing=east":{"model":"block/damaged_anvil","y":270}}},"dandelion":{"variants":{"":{"model":"block/dandelion"}}},"dark_oak_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/dark_oak_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/dark_oak_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/dark_oak_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/dark_oak_button"},"face=wall,facing=east,powered=false":{"model":"block/dark_oak_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/dark_oak_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/dark_oak_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/dark_oak_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/dark_oak_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/dark_oak_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/dark_oak_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/dark_oak_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/dark_oak_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/dark_oak_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/dark_oak_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/dark_oak_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/dark_oak_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/dark_oak_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/dark_oak_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/dark_oak_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/dark_oak_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/dark_oak_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/dark_oak_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/dark_oak_button_pressed","x":180,"y":180}}},"dark_oak_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/dark_oak_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/dark_oak_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/dark_oak_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/dark_oak_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/dark_oak_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/dark_oak_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/dark_oak_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/dark_oak_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/dark_oak_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/dark_oak_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/dark_oak_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/dark_oak_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/dark_oak_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/dark_oak_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/dark_oak_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/dark_oak_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/dark_oak_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/dark_oak_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/dark_oak_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/dark_oak_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/dark_oak_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/dark_oak_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/dark_oak_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/dark_oak_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/dark_oak_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/dark_oak_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/dark_oak_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/dark_oak_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/dark_oak_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/dark_oak_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/dark_oak_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/dark_oak_door_top","y":180}}},"dark_oak_fence":{"multipart":[{"apply":{"model":"block/dark_oak_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/dark_oak_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/dark_oak_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/dark_oak_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/dark_oak_fence_side","y":270,"uvlock":true}}]},"dark_oak_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/dark_oak_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/dark_oak_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/dark_oak_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/dark_oak_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/dark_oak_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/dark_oak_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/dark_oak_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/dark_oak_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/dark_oak_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/dark_oak_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/dark_oak_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/dark_oak_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/dark_oak_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/dark_oak_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/dark_oak_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/dark_oak_fence_gate_wall_open","uvlock":true,"y":270}}},"dark_oak_leaves":{"variants":{"":{"model":"block/dark_oak_leaves"}}},"dark_oak_log":{"variants":{"axis=y":{"model":"block/dark_oak_log"},"axis=z":{"model":"block/dark_oak_log","x":90},"axis=x":{"model":"block/dark_oak_log","x":90,"y":90}}},"dark_oak_planks":{"variants":{"":{"model":"block/dark_oak_planks"}}},"dark_oak_pressure_plate":{"variants":{"powered=false":{"model":"block/dark_oak_pressure_plate"},"powered=true":{"model":"block/dark_oak_pressure_plate_down"}}},"dark_oak_sapling":{"variants":{"":{"model":"block/dark_oak_sapling"}}},"dark_oak_sign":{"variants":{"":{"model":"block/dark_oak_sign"}}},"dark_oak_slab":{"variants":{"type=bottom":{"model":"block/dark_oak_slab"},"type=top":{"model":"block/dark_oak_slab_top"},"type=double":{"model":"block/dark_oak_planks"}}},"dark_oak_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/dark_oak_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/dark_oak_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/dark_oak_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/dark_oak_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/dark_oak_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/dark_oak_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/dark_oak_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/dark_oak_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/dark_oak_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/dark_oak_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/dark_oak_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/dark_oak_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/dark_oak_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/dark_oak_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/dark_oak_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/dark_oak_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/dark_oak_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/dark_oak_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/dark_oak_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/dark_oak_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/dark_oak_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/dark_oak_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/dark_oak_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/dark_oak_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/dark_oak_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/dark_oak_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/dark_oak_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/dark_oak_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/dark_oak_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/dark_oak_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/dark_oak_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/dark_oak_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/dark_oak_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/dark_oak_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/dark_oak_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/dark_oak_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/dark_oak_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/dark_oak_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/dark_oak_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/dark_oak_stairs_inner","x":180,"y":270,"uvlock":true}}},"dark_oak_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/dark_oak_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/dark_oak_trapdoor_bottom"},"facing=east,half=bottom,open=false":{"model":"block/dark_oak_trapdoor_bottom"},"facing=west,half=bottom,open=false":{"model":"block/dark_oak_trapdoor_bottom"},"facing=north,half=top,open=false":{"model":"block/dark_oak_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/dark_oak_trapdoor_top"},"facing=east,half=top,open=false":{"model":"block/dark_oak_trapdoor_top"},"facing=west,half=top,open=false":{"model":"block/dark_oak_trapdoor_top"},"facing=north,half=bottom,open=true":{"model":"block/dark_oak_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/dark_oak_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/dark_oak_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/dark_oak_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/dark_oak_trapdoor_open"},"facing=south,half=top,open=true":{"model":"block/dark_oak_trapdoor_open","y":180},"facing=east,half=top,open=true":{"model":"block/dark_oak_trapdoor_open","y":90},"facing=west,half=top,open=true":{"model":"block/dark_oak_trapdoor_open","y":270}}},"dark_oak_wall_sign":{"variants":{"":{"model":"block/dark_oak_sign"}}},"dark_oak_wood":{"variants":{"axis=y":{"model":"block/dark_oak_wood"},"axis=z":{"model":"block/dark_oak_wood","x":90},"axis=x":{"model":"block/dark_oak_wood","x":90,"y":90}}},"dark_prismarine":{"variants":{"":{"model":"block/dark_prismarine"}}},"dark_prismarine_slab":{"variants":{"type=bottom":{"model":"block/dark_prismarine_slab"},"type=top":{"model":"block/dark_prismarine_slab_top"},"type=double":{"model":"block/dark_prismarine"}}},"dark_prismarine_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/dark_prismarine_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/dark_prismarine_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/dark_prismarine_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/dark_prismarine_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/dark_prismarine_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/dark_prismarine_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/dark_prismarine_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/dark_prismarine_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/dark_prismarine_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/dark_prismarine_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/dark_prismarine_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/dark_prismarine_stairs_inner","x":180,"y":270,"uvlock":true}}},"daylight_detector":{"variants":{"inverted=false":{"model":"block/daylight_detector"},"inverted=true":{"model":"block/daylight_detector_inverted"}}},"dead_brain_coral":{"variants":{"":{"model":"block/dead_brain_coral"}}},"dead_brain_coral_block":{"variants":{"":{"model":"block/dead_brain_coral_block"}}},"dead_brain_coral_fan":{"variants":{"":{"model":"block/dead_brain_coral_fan"}}},"dead_brain_coral_wall_fan":{"variants":{"facing=east":{"model":"block/dead_brain_coral_wall_fan","y":90},"facing=south":{"model":"block/dead_brain_coral_wall_fan","y":180},"facing=west":{"model":"block/dead_brain_coral_wall_fan","y":270},"facing=north":{"model":"block/dead_brain_coral_wall_fan","y":0}}},"dead_bubble_coral":{"variants":{"":{"model":"block/dead_bubble_coral"}}},"dead_bubble_coral_block":{"variants":{"":{"model":"block/dead_bubble_coral_block"}}},"dead_bubble_coral_fan":{"variants":{"":{"model":"block/dead_bubble_coral_fan"}}},"dead_bubble_coral_wall_fan":{"variants":{"facing=east":{"model":"block/dead_bubble_coral_wall_fan","y":90},"facing=south":{"model":"block/dead_bubble_coral_wall_fan","y":180},"facing=west":{"model":"block/dead_bubble_coral_wall_fan","y":270},"facing=north":{"model":"block/dead_bubble_coral_wall_fan","y":0}}},"dead_bush":{"variants":{"":{"model":"block/dead_bush"}}},"dead_fire_coral":{"variants":{"":{"model":"block/dead_fire_coral"}}},"dead_fire_coral_block":{"variants":{"":{"model":"block/dead_fire_coral_block"}}},"dead_fire_coral_fan":{"variants":{"":{"model":"block/dead_fire_coral_fan"}}},"dead_fire_coral_wall_fan":{"variants":{"facing=east":{"model":"block/dead_fire_coral_wall_fan","y":90},"facing=south":{"model":"block/dead_fire_coral_wall_fan","y":180},"facing=west":{"model":"block/dead_fire_coral_wall_fan","y":270},"facing=north":{"model":"block/dead_fire_coral_wall_fan","y":0}}},"dead_horn_coral":{"variants":{"":{"model":"block/dead_horn_coral"}}},"dead_horn_coral_block":{"variants":{"":{"model":"block/dead_horn_coral_block"}}},"dead_horn_coral_fan":{"variants":{"":{"model":"block/dead_horn_coral_fan"}}},"dead_horn_coral_wall_fan":{"variants":{"facing=east":{"model":"block/dead_horn_coral_wall_fan","y":90},"facing=south":{"model":"block/dead_horn_coral_wall_fan","y":180},"facing=west":{"model":"block/dead_horn_coral_wall_fan","y":270},"facing=north":{"model":"block/dead_horn_coral_wall_fan","y":0}}},"dead_tube_coral":{"variants":{"":{"model":"block/dead_tube_coral"}}},"dead_tube_coral_block":{"variants":{"":{"model":"block/dead_tube_coral_block"}}},"dead_tube_coral_fan":{"variants":{"":{"model":"block/dead_tube_coral_fan"}}},"dead_tube_coral_wall_fan":{"variants":{"facing=east":{"model":"block/dead_tube_coral_wall_fan","y":90},"facing=south":{"model":"block/dead_tube_coral_wall_fan","y":180},"facing=west":{"model":"block/dead_tube_coral_wall_fan","y":270},"facing=north":{"model":"block/dead_tube_coral_wall_fan","y":0}}},"detector_rail":{"variants":{"powered=false,shape=north_south":{"model":"block/detector_rail"},"powered=false,shape=east_west":{"model":"block/detector_rail","y":90},"powered=false,shape=ascending_east":{"model":"block/detector_rail_raised_ne","y":90},"powered=false,shape=ascending_west":{"model":"block/detector_rail_raised_sw","y":90},"powered=false,shape=ascending_north":{"model":"block/detector_rail_raised_ne"},"powered=false,shape=ascending_south":{"model":"block/detector_rail_raised_sw"},"powered=true,shape=north_south":{"model":"block/detector_rail_on"},"powered=true,shape=east_west":{"model":"block/detector_rail_on","y":90},"powered=true,shape=ascending_east":{"model":"block/detector_rail_on_raised_ne","y":90},"powered=true,shape=ascending_west":{"model":"block/detector_rail_on_raised_sw","y":90},"powered=true,shape=ascending_north":{"model":"block/detector_rail_on_raised_ne"},"powered=true,shape=ascending_south":{"model":"block/detector_rail_on_raised_sw"}}},"diamond_block":{"variants":{"":{"model":"block/diamond_block"}}},"diamond_ore":{"variants":{"":{"model":"block/diamond_ore"}}},"diorite":{"variants":{"":{"model":"block/diorite"}}},"diorite_slab":{"variants":{"type=bottom":{"model":"block/diorite_slab"},"type=top":{"model":"block/diorite_slab_top"},"type=double":{"model":"block/diorite"}}},"diorite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/diorite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/diorite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/diorite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/diorite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/diorite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/diorite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/diorite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/diorite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/diorite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/diorite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/diorite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/diorite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/diorite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/diorite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/diorite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/diorite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/diorite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/diorite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/diorite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/diorite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/diorite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/diorite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/diorite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/diorite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/diorite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/diorite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/diorite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/diorite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/diorite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/diorite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/diorite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/diorite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/diorite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/diorite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/diorite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/diorite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/diorite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/diorite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/diorite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/diorite_stairs_inner","x":180,"y":270,"uvlock":true}}},"diorite_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/diorite_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/diorite_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/diorite_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/diorite_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/diorite_wall_side","y":270,"uvlock":true}}]},"dirt":{"variants":{"":[{"model":"block/dirt"},{"model":"block/dirt","y":90},{"model":"block/dirt","y":180},{"model":"block/dirt","y":270}]}},"dispenser":{"variants":{"facing=down":{"model":"block/dispenser_vertical","x":180},"facing=up":{"model":"block/dispenser_vertical"},"facing=north":{"model":"block/dispenser"},"facing=south":{"model":"block/dispenser","y":180},"facing=west":{"model":"block/dispenser","y":270},"facing=east":{"model":"block/dispenser","y":90}}},"dragon_egg":{"variants":{"":{"model":"block/dragon_egg"}}},"dragon_head":{"variants":{"":{"model":"block/skull"}}},"dragon_wall_head":{"variants":{"":{"model":"block/skull"}}},"dried_kelp_block":{"variants":{"":{"model":"block/dried_kelp_block"}}},"dropper":{"variants":{"facing=down":{"model":"block/dropper_vertical","x":180},"facing=up":{"model":"block/dropper_vertical"},"facing=north":{"model":"block/dropper"},"facing=south":{"model":"block/dropper","y":180},"facing=west":{"model":"block/dropper","y":270},"facing=east":{"model":"block/dropper","y":90}}},"emerald_block":{"variants":{"":{"model":"block/emerald_block"}}},"emerald_ore":{"variants":{"":{"model":"block/emerald_ore"}}},"enchanting_table":{"variants":{"":{"model":"block/enchanting_table"}}},"ender_chest":{"variants":{"":{"model":"block/ender_chest"}}},"end_gateway":{"variants":{"":{"model":"block/end_portal"}}},"end_portal":{"variants":{"":{"model":"block/end_portal"}}},"end_portal_frame":{"variants":{"eye=false,facing=south":{"model":"block/end_portal_frame"},"eye=false,facing=west":{"model":"block/end_portal_frame","y":90},"eye=false,facing=north":{"model":"block/end_portal_frame","y":180},"eye=false,facing=east":{"model":"block/end_portal_frame","y":270},"eye=true,facing=south":{"model":"block/end_portal_frame_filled"},"eye=true,facing=west":{"model":"block/end_portal_frame_filled","y":90},"eye=true,facing=north":{"model":"block/end_portal_frame_filled","y":180},"eye=true,facing=east":{"model":"block/end_portal_frame_filled","y":270}}},"end_rod":{"variants":{"facing=up":{"model":"block/end_rod"},"facing=down":{"model":"block/end_rod","x":180},"facing=east":{"model":"block/end_rod","y":90,"x":90},"facing=south":{"model":"block/end_rod","y":180,"x":90},"facing=west":{"model":"block/end_rod","y":270,"x":90},"facing=north":{"model":"block/end_rod","y":0,"x":90}}},"end_stone":{"variants":{"":{"model":"block/end_stone"}}},"end_stone_bricks":{"variants":{"":{"model":"block/end_stone_bricks"}}},"end_stone_brick_slab":{"variants":{"type=bottom":{"model":"block/end_stone_brick_slab"},"type=top":{"model":"block/end_stone_brick_slab_top"},"type=double":{"model":"block/end_stone_bricks"}}},"end_stone_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/end_stone_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/end_stone_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/end_stone_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/end_stone_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/end_stone_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/end_stone_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/end_stone_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/end_stone_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/end_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/end_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/end_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/end_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"end_stone_brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/end_stone_brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/end_stone_brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/end_stone_brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/end_stone_brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/end_stone_brick_wall_side","y":270,"uvlock":true}}]},"farmland":{"variants":{"moisture=0":{"model":"block/farmland"},"moisture=1":{"model":"block/farmland"},"moisture=2":{"model":"block/farmland"},"moisture=3":{"model":"block/farmland"},"moisture=4":{"model":"block/farmland"},"moisture=5":{"model":"block/farmland"},"moisture=6":{"model":"block/farmland"},"moisture=7":{"model":"block/farmland_moist"}}},"fern":{"variants":{"":{"model":"block/fern"}}},"fire":{"multipart":[{"when":{"north":false,"east":false,"south":false,"west":false,"up":false},"apply":[{"model":"block/fire_floor0"},{"model":"block/fire_floor1"}]},{"when":{"OR":[{"north":true},{"north":false,"east":false,"south":false,"west":false,"up":false}]},"apply":[{"model":"block/fire_side0"},{"model":"block/fire_side1"},{"model":"block/fire_side_alt0"},{"model":"block/fire_side_alt1"}]},{"when":{"OR":[{"east":true},{"north":false,"east":false,"south":false,"west":false,"up":false}]},"apply":[{"model":"block/fire_side0","y":90},{"model":"block/fire_side1","y":90},{"model":"block/fire_side_alt0","y":90},{"model":"block/fire_side_alt1","y":90}]},{"when":{"OR":[{"south":true},{"north":false,"east":false,"south":false,"west":false,"up":false}]},"apply":[{"model":"block/fire_side0","y":180},{"model":"block/fire_side1","y":180},{"model":"block/fire_side_alt0","y":180},{"model":"block/fire_side_alt1","y":180}]},{"when":{"OR":[{"west":true},{"north":false,"east":false,"south":false,"west":false,"up":false}]},"apply":[{"model":"block/fire_side0","y":270},{"model":"block/fire_side1","y":270},{"model":"block/fire_side_alt0","y":270},{"model":"block/fire_side_alt1","y":270}]},{"when":{"up":true},"apply":[{"model":"block/fire_up0"},{"model":"block/fire_up1"},{"model":"block/fire_up_alt0"},{"model":"block/fire_up_alt1"}]}]},"fire_coral":{"variants":{"":{"model":"block/fire_coral"}}},"fire_coral_block":{"variants":{"":{"model":"block/fire_coral_block"}}},"fire_coral_fan":{"variants":{"":{"model":"block/fire_coral_fan"}}},"fire_coral_wall_fan":{"variants":{"facing=east":{"model":"block/fire_coral_wall_fan","y":90},"facing=south":{"model":"block/fire_coral_wall_fan","y":180},"facing=west":{"model":"block/fire_coral_wall_fan","y":270},"facing=north":{"model":"block/fire_coral_wall_fan","y":0}}},"fletching_table":{"variants":{"":{"model":"block/fletching_table"}}},"flower_pot":{"variants":{"":{"model":"block/flower_pot"}}},"frosted_ice":{"variants":{"age=0":{"model":"block/frosted_ice_0"},"age=1":{"model":"block/frosted_ice_1"},"age=2":{"model":"block/frosted_ice_2"},"age=3":{"model":"block/frosted_ice_3"}}},"furnace":{"variants":{"facing=north,lit=false":{"model":"block/furnace"},"facing=south,lit=false":{"model":"block/furnace","y":180},"facing=west,lit=false":{"model":"block/furnace","y":270},"facing=east,lit=false":{"model":"block/furnace","y":90},"facing=north,lit=true":{"model":"block/furnace_on"},"facing=south,lit=true":{"model":"block/furnace_on","y":180},"facing=west,lit=true":{"model":"block/furnace_on","y":270},"facing=east,lit=true":{"model":"block/furnace_on","y":90}}},"glass":{"variants":{"":{"model":"block/glass"}}},"glass_pane":{"multipart":[{"apply":{"model":"block/glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/glass_pane_noside","y":270}}]},"glowstone":{"variants":{"":{"model":"block/glowstone"}}},"gold_block":{"variants":{"":{"model":"block/gold_block"}}},"gold_ore":{"variants":{"":{"model":"block/gold_ore"}}},"granite":{"variants":{"":{"model":"block/granite"}}},"granite_slab":{"variants":{"type=bottom":{"model":"block/granite_slab"},"type=top":{"model":"block/granite_slab_top"},"type=double":{"model":"block/granite"}}},"granite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/granite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/granite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/granite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/granite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/granite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/granite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/granite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/granite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/granite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/granite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/granite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/granite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/granite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/granite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/granite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/granite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/granite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/granite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/granite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/granite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/granite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/granite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/granite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/granite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/granite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/granite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/granite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/granite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/granite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/granite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/granite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/granite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/granite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/granite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/granite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/granite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/granite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/granite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/granite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/granite_stairs_inner","x":180,"y":270,"uvlock":true}}},"granite_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/granite_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/granite_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/granite_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/granite_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/granite_wall_side","y":270,"uvlock":true}}]},"grass":{"variants":{"":{"model":"block/grass"}}},"grass_block":{"variants":{"snowy=false":[{"model":"block/grass_block"},{"model":"block/grass_block","y":90},{"model":"block/grass_block","y":180},{"model":"block/grass_block","y":270}],"snowy=true":{"model":"block/grass_block_snow"}}},"grass_path":{"variants":{"":[{"model":"block/grass_path"},{"model":"block/grass_path","y":90},{"model":"block/grass_path","y":180},{"model":"block/grass_path","y":270}]}},"gravel":{"variants":{"":{"model":"block/gravel"}}},"gray_banner":{"variants":{"":{"model":"block/banner"}}},"gray_bed":{"variants":{"":{"model":"block/bed"}}},"gray_carpet":{"variants":{"":{"model":"block/gray_carpet"}}},"gray_concrete":{"variants":{"":{"model":"block/gray_concrete"}}},"gray_concrete_powder":{"variants":{"":[{"model":"block/gray_concrete_powder"},{"model":"block/gray_concrete_powder","y":90},{"model":"block/gray_concrete_powder","y":180},{"model":"block/gray_concrete_powder","y":270}]}},"gray_glazed_terracotta":{"variants":{"facing=south":{"model":"block/gray_glazed_terracotta"},"facing=west":{"model":"block/gray_glazed_terracotta","y":90},"facing=north":{"model":"block/gray_glazed_terracotta","y":180},"facing=east":{"model":"block/gray_glazed_terracotta","y":270}}},"gray_shulker_box":{"variants":{"":{"model":"block/gray_shulker_box"}}},"gray_stained_glass":{"variants":{"":{"model":"block/gray_stained_glass"}}},"gray_stained_glass_pane":{"multipart":[{"apply":{"model":"block/gray_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/gray_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/gray_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/gray_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/gray_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/gray_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/gray_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/gray_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/gray_stained_glass_pane_noside","y":270}}]},"gray_terracotta":{"variants":{"":{"model":"block/gray_terracotta"}}},"gray_wall_banner":{"variants":{"":{"model":"block/banner"}}},"gray_wool":{"variants":{"":{"model":"block/gray_wool"}}},"green_banner":{"variants":{"":{"model":"block/banner"}}},"green_bed":{"variants":{"":{"model":"block/bed"}}},"green_carpet":{"variants":{"":{"model":"block/green_carpet"}}},"green_concrete":{"variants":{"":{"model":"block/green_concrete"}}},"green_concrete_powder":{"variants":{"":[{"model":"block/green_concrete_powder"},{"model":"block/green_concrete_powder","y":90},{"model":"block/green_concrete_powder","y":180},{"model":"block/green_concrete_powder","y":270}]}},"green_glazed_terracotta":{"variants":{"facing=south":{"model":"block/green_glazed_terracotta"},"facing=west":{"model":"block/green_glazed_terracotta","y":90},"facing=north":{"model":"block/green_glazed_terracotta","y":180},"facing=east":{"model":"block/green_glazed_terracotta","y":270}}},"green_shulker_box":{"variants":{"":{"model":"block/green_shulker_box"}}},"green_stained_glass":{"variants":{"":{"model":"block/green_stained_glass"}}},"green_stained_glass_pane":{"multipart":[{"apply":{"model":"block/green_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/green_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/green_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/green_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/green_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/green_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/green_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/green_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/green_stained_glass_pane_noside","y":270}}]},"green_terracotta":{"variants":{"":{"model":"block/green_terracotta"}}},"green_wall_banner":{"variants":{"":{"model":"block/banner"}}},"green_wool":{"variants":{"":{"model":"block/green_wool"}}},"grindstone":{"variants":{"face=floor,facing=east":{"model":"block/grindstone","y":90},"face=floor,facing=west":{"model":"block/grindstone","y":270},"face=floor,facing=south":{"model":"block/grindstone","y":180},"face=floor,facing=north":{"model":"block/grindstone"},"face=wall,facing=east":{"model":"block/grindstone","x":90,"y":90},"face=wall,facing=west":{"model":"block/grindstone","x":90,"y":270},"face=wall,facing=south":{"model":"block/grindstone","x":90,"y":180},"face=wall,facing=north":{"model":"block/grindstone","x":90},"face=ceiling,facing=east":{"model":"block/grindstone","x":180,"y":270},"face=ceiling,facing=west":{"model":"block/grindstone","x":180,"y":90},"face=ceiling,facing=south":{"model":"block/grindstone","x":180},"face=ceiling,facing=north":{"model":"block/grindstone","x":180,"y":180}}},"hay_block":{"variants":{"axis=y":{"model":"block/hay_block"},"axis=z":{"model":"block/hay_block","x":90},"axis=x":{"model":"block/hay_block","x":90,"y":90}}},"heavy_weighted_pressure_plate":{"variants":{"power=0":{"model":"block/heavy_weighted_pressure_plate"},"power=1":{"model":"block/heavy_weighted_pressure_plate_down"},"power=2":{"model":"block/heavy_weighted_pressure_plate_down"},"power=3":{"model":"block/heavy_weighted_pressure_plate_down"},"power=4":{"model":"block/heavy_weighted_pressure_plate_down"},"power=5":{"model":"block/heavy_weighted_pressure_plate_down"},"power=6":{"model":"block/heavy_weighted_pressure_plate_down"},"power=7":{"model":"block/heavy_weighted_pressure_plate_down"},"power=8":{"model":"block/heavy_weighted_pressure_plate_down"},"power=9":{"model":"block/heavy_weighted_pressure_plate_down"},"power=10":{"model":"block/heavy_weighted_pressure_plate_down"},"power=11":{"model":"block/heavy_weighted_pressure_plate_down"},"power=12":{"model":"block/heavy_weighted_pressure_plate_down"},"power=13":{"model":"block/heavy_weighted_pressure_plate_down"},"power=14":{"model":"block/heavy_weighted_pressure_plate_down"},"power=15":{"model":"block/heavy_weighted_pressure_plate_down"}}},"honeycomb_block":{"variants":{"":{"model":"block/honeycomb_block"}}},"honey_block":{"variants":{"":{"model":"block/honey_block"}}},"hopper":{"variants":{"facing=down":{"model":"block/hopper"},"facing=north":{"model":"block/hopper_side"},"facing=south":{"model":"block/hopper_side","y":180},"facing=west":{"model":"block/hopper_side","y":270},"facing=east":{"model":"block/hopper_side","y":90}}},"horn_coral":{"variants":{"":{"model":"block/horn_coral"}}},"horn_coral_block":{"variants":{"":{"model":"block/horn_coral_block"}}},"horn_coral_fan":{"variants":{"":{"model":"block/horn_coral_fan"}}},"horn_coral_wall_fan":{"variants":{"facing=east":{"model":"block/horn_coral_wall_fan","y":90},"facing=south":{"model":"block/horn_coral_wall_fan","y":180},"facing=west":{"model":"block/horn_coral_wall_fan","y":270},"facing=north":{"model":"block/horn_coral_wall_fan","y":0}}},"ice":{"variants":{"":{"model":"block/ice"}}},"infested_chiseled_stone_bricks":{"variants":{"":{"model":"block/chiseled_stone_bricks"}}},"infested_cobblestone":{"variants":{"":{"model":"block/cobblestone"}}},"infested_cracked_stone_bricks":{"variants":{"":{"model":"block/cracked_stone_bricks"}}},"infested_mossy_stone_bricks":{"variants":{"":{"model":"block/mossy_stone_bricks"}}},"infested_stone":{"variants":{"":[{"model":"block/stone"},{"model":"block/stone_mirrored"},{"model":"block/stone","y":180},{"model":"block/stone_mirrored","y":180}]}},"infested_stone_bricks":{"variants":{"":{"model":"block/stone_bricks"}}},"iron_bars":{"multipart":[{"apply":{"model":"block/iron_bars_post_ends"}},{"when":{"north":false,"east":false,"south":false,"west":false},"apply":{"model":"block/iron_bars_post"}},{"when":{"north":true,"east":false,"south":false,"west":false},"apply":{"model":"block/iron_bars_cap"}},{"when":{"north":false,"east":true,"south":false,"west":false},"apply":{"model":"block/iron_bars_cap","y":90}},{"when":{"north":false,"east":false,"south":true,"west":false},"apply":{"model":"block/iron_bars_cap_alt"}},{"when":{"north":false,"east":false,"south":false,"west":true},"apply":{"model":"block/iron_bars_cap_alt","y":90}},{"when":{"north":true},"apply":{"model":"block/iron_bars_side"}},{"when":{"east":true},"apply":{"model":"block/iron_bars_side","y":90}},{"when":{"south":true},"apply":{"model":"block/iron_bars_side_alt"}},{"when":{"west":true},"apply":{"model":"block/iron_bars_side_alt","y":90}}]},"iron_block":{"variants":{"":{"model":"block/iron_block"}}},"iron_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/iron_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/iron_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/iron_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/iron_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/iron_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/iron_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/iron_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/iron_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/iron_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/iron_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/iron_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/iron_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/iron_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/iron_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/iron_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/iron_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/iron_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/iron_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/iron_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/iron_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/iron_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/iron_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/iron_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/iron_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/iron_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/iron_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/iron_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/iron_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/iron_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/iron_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/iron_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/iron_door_top","y":180}}},"iron_ore":{"variants":{"":{"model":"block/iron_ore"}}},"iron_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/iron_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/iron_trapdoor_bottom"},"facing=east,half=bottom,open=false":{"model":"block/iron_trapdoor_bottom"},"facing=west,half=bottom,open=false":{"model":"block/iron_trapdoor_bottom"},"facing=north,half=top,open=false":{"model":"block/iron_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/iron_trapdoor_top"},"facing=east,half=top,open=false":{"model":"block/iron_trapdoor_top"},"facing=west,half=top,open=false":{"model":"block/iron_trapdoor_top"},"facing=north,half=bottom,open=true":{"model":"block/iron_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/iron_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/iron_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/iron_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/iron_trapdoor_open"},"facing=south,half=top,open=true":{"model":"block/iron_trapdoor_open","y":180},"facing=east,half=top,open=true":{"model":"block/iron_trapdoor_open","y":90},"facing=west,half=top,open=true":{"model":"block/iron_trapdoor_open","y":270}}},"item_frame":{"variants":{"map=false":{"model":"block/item_frame"},"map=true":{"model":"block/item_frame_map"}}},"jack_o_lantern":{"variants":{"facing=north":{"model":"block/jack_o_lantern"},"facing=south":{"model":"block/jack_o_lantern","y":180},"facing=west":{"model":"block/jack_o_lantern","y":270},"facing=east":{"model":"block/jack_o_lantern","y":90}}},"jigsaw":{"variants":{"facing=up":{"model":"block/jigsaw"},"facing=down":{"model":"block/jigsaw","x":180},"facing=north":{"model":"block/jigsaw","x":90},"facing=south":{"model":"block/jigsaw","x":90,"y":180},"facing=west":{"model":"block/jigsaw","x":90,"y":270},"facing=east":{"model":"block/jigsaw","x":90,"y":90}}},"jukebox":{"variants":{"":{"model":"block/jukebox"}}},"jungle_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/jungle_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/jungle_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/jungle_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/jungle_button"},"face=wall,facing=east,powered=false":{"model":"block/jungle_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/jungle_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/jungle_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/jungle_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/jungle_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/jungle_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/jungle_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/jungle_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/jungle_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/jungle_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/jungle_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/jungle_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/jungle_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/jungle_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/jungle_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/jungle_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/jungle_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/jungle_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/jungle_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/jungle_button_pressed","x":180,"y":180}}},"jungle_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/jungle_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/jungle_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/jungle_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/jungle_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/jungle_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/jungle_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/jungle_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/jungle_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/jungle_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/jungle_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/jungle_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/jungle_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/jungle_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/jungle_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/jungle_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/jungle_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/jungle_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/jungle_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/jungle_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/jungle_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/jungle_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/jungle_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/jungle_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/jungle_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/jungle_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/jungle_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/jungle_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/jungle_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/jungle_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/jungle_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/jungle_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/jungle_door_top","y":180}}},"jungle_fence":{"multipart":[{"apply":{"model":"block/jungle_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/jungle_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/jungle_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/jungle_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/jungle_fence_side","y":270,"uvlock":true}}]},"jungle_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/jungle_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/jungle_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/jungle_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/jungle_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/jungle_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/jungle_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/jungle_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/jungle_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/jungle_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/jungle_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/jungle_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/jungle_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/jungle_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/jungle_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/jungle_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/jungle_fence_gate_wall_open","uvlock":true,"y":270}}},"jungle_leaves":{"variants":{"":{"model":"block/jungle_leaves"}}},"jungle_log":{"variants":{"axis=y":{"model":"block/jungle_log"},"axis=z":{"model":"block/jungle_log","x":90},"axis=x":{"model":"block/jungle_log","x":90,"y":90}}},"jungle_planks":{"variants":{"":{"model":"block/jungle_planks"}}},"jungle_pressure_plate":{"variants":{"powered=false":{"model":"block/jungle_pressure_plate"},"powered=true":{"model":"block/jungle_pressure_plate_down"}}},"jungle_sapling":{"variants":{"":{"model":"block/jungle_sapling"}}},"jungle_sign":{"variants":{"":{"model":"block/jungle_sign"}}},"jungle_slab":{"variants":{"type=bottom":{"model":"block/jungle_slab"},"type=top":{"model":"block/jungle_slab_top"},"type=double":{"model":"block/jungle_planks"}}},"jungle_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/jungle_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/jungle_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/jungle_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/jungle_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/jungle_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/jungle_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/jungle_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/jungle_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/jungle_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/jungle_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/jungle_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/jungle_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/jungle_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/jungle_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/jungle_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/jungle_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/jungle_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/jungle_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/jungle_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/jungle_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/jungle_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/jungle_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/jungle_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/jungle_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/jungle_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/jungle_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/jungle_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/jungle_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/jungle_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/jungle_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/jungle_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/jungle_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/jungle_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/jungle_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/jungle_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/jungle_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/jungle_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/jungle_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/jungle_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/jungle_stairs_inner","x":180,"y":270,"uvlock":true}}},"jungle_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/jungle_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/jungle_trapdoor_bottom","y":180},"facing=east,half=bottom,open=false":{"model":"block/jungle_trapdoor_bottom","y":90},"facing=west,half=bottom,open=false":{"model":"block/jungle_trapdoor_bottom","y":270},"facing=north,half=top,open=false":{"model":"block/jungle_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/jungle_trapdoor_top","y":180},"facing=east,half=top,open=false":{"model":"block/jungle_trapdoor_top","y":90},"facing=west,half=top,open=false":{"model":"block/jungle_trapdoor_top","y":270},"facing=north,half=bottom,open=true":{"model":"block/jungle_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/jungle_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/jungle_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/jungle_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/jungle_trapdoor_open","x":180,"y":180},"facing=south,half=top,open=true":{"model":"block/jungle_trapdoor_open","x":180,"y":0},"facing=east,half=top,open=true":{"model":"block/jungle_trapdoor_open","x":180,"y":270},"facing=west,half=top,open=true":{"model":"block/jungle_trapdoor_open","x":180,"y":90}}},"jungle_wall_sign":{"variants":{"":{"model":"block/jungle_sign"}}},"jungle_wood":{"variants":{"axis=y":{"model":"block/jungle_wood"},"axis=z":{"model":"block/jungle_wood","x":90},"axis=x":{"model":"block/jungle_wood","x":90,"y":90}}},"kelp":{"variants":{"":{"model":"block/kelp"}}},"kelp_plant":{"variants":{"":{"model":"block/kelp_plant"}}},"ladder":{"variants":{"facing=north":{"model":"block/ladder"},"facing=east":{"model":"block/ladder","y":90},"facing=south":{"model":"block/ladder","y":180},"facing=west":{"model":"block/ladder","y":270}}},"lantern":{"variants":{"hanging=true":{"model":"block/hanging_lantern"},"hanging=false":{"model":"block/lantern"}}},"lapis_block":{"variants":{"":{"model":"block/lapis_block"}}},"lapis_ore":{"variants":{"":{"model":"block/lapis_ore"}}},"large_fern":{"variants":{"half=lower":{"model":"block/large_fern_bottom"},"half=upper":{"model":"block/large_fern_top"}}},"lava":{"variants":{"":{"model":"block/lava"}}},"lectern":{"variants":{"facing=north":{"model":"block/lectern"},"facing=south":{"model":"block/lectern","y":180},"facing=west":{"model":"block/lectern","y":270},"facing=east":{"model":"block/lectern","y":90}}},"lever":{"variants":{"face=ceiling,facing=north,powered=false":{"model":"block/lever_on","x":180,"y":180},"face=ceiling,facing=east,powered=false":{"model":"block/lever_on","x":180,"y":270},"face=ceiling,facing=south,powered=false":{"model":"block/lever_on","x":180},"face=ceiling,facing=west,powered=false":{"model":"block/lever_on","x":180,"y":90},"face=floor,facing=north,powered=false":{"model":"block/lever_on"},"face=floor,facing=east,powered=false":{"model":"block/lever_on","y":90},"face=floor,facing=south,powered=false":{"model":"block/lever_on","y":180},"face=floor,facing=west,powered=false":{"model":"block/lever_on","y":270},"face=wall,facing=north,powered=false":{"model":"block/lever_on","x":90},"face=wall,facing=east,powered=false":{"model":"block/lever_on","x":90,"y":90},"face=wall,facing=south,powered=false":{"model":"block/lever_on","x":90,"y":180},"face=wall,facing=west,powered=false":{"model":"block/lever_on","x":90,"y":270},"face=ceiling,facing=north,powered=true":{"model":"block/lever","x":180,"y":180},"face=ceiling,facing=east,powered=true":{"model":"block/lever","x":180,"y":270},"face=ceiling,facing=south,powered=true":{"model":"block/lever","x":180},"face=ceiling,facing=west,powered=true":{"model":"block/lever","x":180,"y":90},"face=floor,facing=north,powered=true":{"model":"block/lever"},"face=floor,facing=east,powered=true":{"model":"block/lever","y":90},"face=floor,facing=south,powered=true":{"model":"block/lever","y":180},"face=floor,facing=west,powered=true":{"model":"block/lever","y":270},"face=wall,facing=north,powered=true":{"model":"block/lever","x":90},"face=wall,facing=east,powered=true":{"model":"block/lever","x":90,"y":90},"face=wall,facing=south,powered=true":{"model":"block/lever","x":90,"y":180},"face=wall,facing=west,powered=true":{"model":"block/lever","x":90,"y":270}}},"light_blue_banner":{"variants":{"":{"model":"block/banner"}}},"light_blue_bed":{"variants":{"":{"model":"block/bed"}}},"light_blue_carpet":{"variants":{"":{"model":"block/light_blue_carpet"}}},"light_blue_concrete":{"variants":{"":{"model":"block/light_blue_concrete"}}},"light_blue_concrete_powder":{"variants":{"":[{"model":"block/light_blue_concrete_powder"},{"model":"block/light_blue_concrete_powder","y":90},{"model":"block/light_blue_concrete_powder","y":180},{"model":"block/light_blue_concrete_powder","y":270}]}},"light_blue_glazed_terracotta":{"variants":{"facing=south":{"model":"block/light_blue_glazed_terracotta"},"facing=west":{"model":"block/light_blue_glazed_terracotta","y":90},"facing=north":{"model":"block/light_blue_glazed_terracotta","y":180},"facing=east":{"model":"block/light_blue_glazed_terracotta","y":270}}},"light_blue_shulker_box":{"variants":{"":{"model":"block/light_blue_shulker_box"}}},"light_blue_stained_glass":{"variants":{"":{"model":"block/light_blue_stained_glass"}}},"light_blue_stained_glass_pane":{"multipart":[{"apply":{"model":"block/light_blue_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/light_blue_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/light_blue_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/light_blue_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/light_blue_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/light_blue_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/light_blue_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/light_blue_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/light_blue_stained_glass_pane_noside","y":270}}]},"light_blue_terracotta":{"variants":{"":{"model":"block/light_blue_terracotta"}}},"light_blue_wall_banner":{"variants":{"":{"model":"block/banner"}}},"light_blue_wool":{"variants":{"":{"model":"block/light_blue_wool"}}},"light_gray_banner":{"variants":{"":{"model":"block/banner"}}},"light_gray_bed":{"variants":{"":{"model":"block/bed"}}},"light_gray_carpet":{"variants":{"":{"model":"block/light_gray_carpet"}}},"light_gray_concrete":{"variants":{"":{"model":"block/light_gray_concrete"}}},"light_gray_concrete_powder":{"variants":{"":[{"model":"block/light_gray_concrete_powder"},{"model":"block/light_gray_concrete_powder","y":90},{"model":"block/light_gray_concrete_powder","y":180},{"model":"block/light_gray_concrete_powder","y":270}]}},"light_gray_glazed_terracotta":{"variants":{"facing=south":{"model":"block/light_gray_glazed_terracotta"},"facing=west":{"model":"block/light_gray_glazed_terracotta","y":90},"facing=north":{"model":"block/light_gray_glazed_terracotta","y":180},"facing=east":{"model":"block/light_gray_glazed_terracotta","y":270}}},"light_gray_shulker_box":{"variants":{"":{"model":"block/light_gray_shulker_box"}}},"light_gray_stained_glass":{"variants":{"":{"model":"block/light_gray_stained_glass"}}},"light_gray_stained_glass_pane":{"multipart":[{"apply":{"model":"block/light_gray_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/light_gray_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/light_gray_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/light_gray_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/light_gray_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/light_gray_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/light_gray_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/light_gray_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/light_gray_stained_glass_pane_noside","y":270}}]},"light_gray_terracotta":{"variants":{"":{"model":"block/light_gray_terracotta"}}},"light_gray_wall_banner":{"variants":{"":{"model":"block/banner"}}},"light_gray_wool":{"variants":{"":{"model":"block/light_gray_wool"}}},"light_weighted_pressure_plate":{"variants":{"power=0":{"model":"block/light_weighted_pressure_plate"},"power=1":{"model":"block/light_weighted_pressure_plate_down"},"power=2":{"model":"block/light_weighted_pressure_plate_down"},"power=3":{"model":"block/light_weighted_pressure_plate_down"},"power=4":{"model":"block/light_weighted_pressure_plate_down"},"power=5":{"model":"block/light_weighted_pressure_plate_down"},"power=6":{"model":"block/light_weighted_pressure_plate_down"},"power=7":{"model":"block/light_weighted_pressure_plate_down"},"power=8":{"model":"block/light_weighted_pressure_plate_down"},"power=9":{"model":"block/light_weighted_pressure_plate_down"},"power=10":{"model":"block/light_weighted_pressure_plate_down"},"power=11":{"model":"block/light_weighted_pressure_plate_down"},"power=12":{"model":"block/light_weighted_pressure_plate_down"},"power=13":{"model":"block/light_weighted_pressure_plate_down"},"power=14":{"model":"block/light_weighted_pressure_plate_down"},"power=15":{"model":"block/light_weighted_pressure_plate_down"}}},"lilac":{"variants":{"half=lower":{"model":"block/lilac_bottom"},"half=upper":{"model":"block/lilac_top"}}},"lily_of_the_valley":{"variants":{"":{"model":"block/lily_of_the_valley"}}},"lily_pad":{"variants":{"":[{"model":"block/lily_pad"},{"model":"block/lily_pad","y":90},{"model":"block/lily_pad","y":180},{"model":"block/lily_pad","y":270}]}},"lime_banner":{"variants":{"":{"model":"block/banner"}}},"lime_bed":{"variants":{"":{"model":"block/bed"}}},"lime_carpet":{"variants":{"":{"model":"block/lime_carpet"}}},"lime_concrete":{"variants":{"":{"model":"block/lime_concrete"}}},"lime_concrete_powder":{"variants":{"":[{"model":"block/lime_concrete_powder"},{"model":"block/lime_concrete_powder","y":90},{"model":"block/lime_concrete_powder","y":180},{"model":"block/lime_concrete_powder","y":270}]}},"lime_glazed_terracotta":{"variants":{"facing=south":{"model":"block/lime_glazed_terracotta"},"facing=west":{"model":"block/lime_glazed_terracotta","y":90},"facing=north":{"model":"block/lime_glazed_terracotta","y":180},"facing=east":{"model":"block/lime_glazed_terracotta","y":270}}},"lime_shulker_box":{"variants":{"":{"model":"block/lime_shulker_box"}}},"lime_stained_glass":{"variants":{"":{"model":"block/lime_stained_glass"}}},"lime_stained_glass_pane":{"multipart":[{"apply":{"model":"block/lime_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/lime_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/lime_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/lime_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/lime_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/lime_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/lime_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/lime_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/lime_stained_glass_pane_noside","y":270}}]},"lime_terracotta":{"variants":{"":{"model":"block/lime_terracotta"}}},"lime_wall_banner":{"variants":{"":{"model":"block/banner"}}},"lime_wool":{"variants":{"":{"model":"block/lime_wool"}}},"loom":{"variants":{"facing=north":{"model":"block/loom"},"facing=south":{"model":"block/loom","y":180},"facing=west":{"model":"block/loom","y":270},"facing=east":{"model":"block/loom","y":90}}},"magenta_banner":{"variants":{"":{"model":"block/banner"}}},"magenta_bed":{"variants":{"":{"model":"block/bed"}}},"magenta_carpet":{"variants":{"":{"model":"block/magenta_carpet"}}},"magenta_concrete":{"variants":{"":{"model":"block/magenta_concrete"}}},"magenta_concrete_powder":{"variants":{"":[{"model":"block/magenta_concrete_powder"},{"model":"block/magenta_concrete_powder","y":90},{"model":"block/magenta_concrete_powder","y":180},{"model":"block/magenta_concrete_powder","y":270}]}},"magenta_glazed_terracotta":{"variants":{"facing=south":{"model":"block/magenta_glazed_terracotta"},"facing=west":{"model":"block/magenta_glazed_terracotta","y":90},"facing=north":{"model":"block/magenta_glazed_terracotta","y":180},"facing=east":{"model":"block/magenta_glazed_terracotta","y":270}}},"magenta_shulker_box":{"variants":{"":{"model":"block/magenta_shulker_box"}}},"magenta_stained_glass":{"variants":{"":{"model":"block/magenta_stained_glass"}}},"magenta_stained_glass_pane":{"multipart":[{"apply":{"model":"block/magenta_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/magenta_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/magenta_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/magenta_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/magenta_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/magenta_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/magenta_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/magenta_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/magenta_stained_glass_pane_noside","y":270}}]},"magenta_terracotta":{"variants":{"":{"model":"block/magenta_terracotta"}}},"magenta_wall_banner":{"variants":{"":{"model":"block/banner"}}},"magenta_wool":{"variants":{"":{"model":"block/magenta_wool"}}},"magma_block":{"variants":{"":{"model":"block/magma_block"}}},"melon":{"variants":{"":{"model":"block/melon"}}},"melon_stem":{"variants":{"age=0":{"model":"block/melon_stem_stage0"},"age=1":{"model":"block/melon_stem_stage1"},"age=2":{"model":"block/melon_stem_stage2"},"age=3":{"model":"block/melon_stem_stage3"},"age=4":{"model":"block/melon_stem_stage4"},"age=5":{"model":"block/melon_stem_stage5"},"age=6":{"model":"block/melon_stem_stage6"},"age=7":{"model":"block/melon_stem_stage7"}}},"mossy_cobblestone":{"variants":{"":{"model":"block/mossy_cobblestone"}}},"mossy_cobblestone_slab":{"variants":{"type=bottom":{"model":"block/mossy_cobblestone_slab"},"type=top":{"model":"block/mossy_cobblestone_slab_top"},"type=double":{"model":"block/mossy_cobblestone"}}},"mossy_cobblestone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/mossy_cobblestone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/mossy_cobblestone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/mossy_cobblestone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/mossy_cobblestone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/mossy_cobblestone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/mossy_cobblestone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/mossy_cobblestone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/mossy_cobblestone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/mossy_cobblestone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/mossy_cobblestone_stairs_inner","x":180,"y":270,"uvlock":true}}},"mossy_cobblestone_wall":{"multipart":[{"when":{"up":true},"apply":{"model":"block/mossy_cobblestone_wall_post"}},{"when":{"north":true},"apply":{"model":"block/mossy_cobblestone_wall_side","uvlock":true}},{"when":{"east":true},"apply":{"model":"block/mossy_cobblestone_wall_side","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/mossy_cobblestone_wall_side","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/mossy_cobblestone_wall_side","y":270,"uvlock":true}}]},"mossy_stone_bricks":{"variants":{"":{"model":"block/mossy_stone_bricks"}}},"mossy_stone_brick_slab":{"variants":{"type=bottom":{"model":"block/mossy_stone_brick_slab"},"type=top":{"model":"block/mossy_stone_brick_slab_top"},"type=double":{"model":"block/mossy_stone_bricks"}}},"mossy_stone_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/mossy_stone_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/mossy_stone_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/mossy_stone_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/mossy_stone_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/mossy_stone_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/mossy_stone_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/mossy_stone_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/mossy_stone_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/mossy_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/mossy_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"mossy_stone_brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/mossy_stone_brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/mossy_stone_brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/mossy_stone_brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/mossy_stone_brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/mossy_stone_brick_wall_side","y":270,"uvlock":true}}]},"moving_piston":{"variants":{"":{"model":"block/moving_piston"}}},"mushroom_stem":{"multipart":[{"when":{"north":true},"apply":{"model":"block/mushroom_stem"}},{"when":{"east":true},"apply":{"model":"block/mushroom_stem","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/mushroom_stem","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/mushroom_stem","y":270,"uvlock":true}},{"when":{"up":true},"apply":{"model":"block/mushroom_stem","x":270,"uvlock":true}},{"when":{"down":true},"apply":{"model":"block/mushroom_stem","x":90,"uvlock":true}},{"when":{"north":false},"apply":{"model":"block/mushroom_block_inside"}},{"when":{"east":false},"apply":{"model":"block/mushroom_block_inside","y":90,"uvlock":false}},{"when":{"south":false},"apply":{"model":"block/mushroom_block_inside","y":180,"uvlock":false}},{"when":{"west":false},"apply":{"model":"block/mushroom_block_inside","y":270,"uvlock":false}},{"when":{"up":false},"apply":{"model":"block/mushroom_block_inside","x":270,"uvlock":false}},{"when":{"down":false},"apply":{"model":"block/mushroom_block_inside","x":90,"uvlock":false}}]},"mycelium":{"variants":{"snowy=false":[{"model":"block/mycelium"},{"model":"block/mycelium","y":90},{"model":"block/mycelium","y":180},{"model":"block/mycelium","y":270}],"snowy=true":{"model":"block/grass_block_snow"}}},"netherrack":{"variants":{"":[{"model":"block/netherrack"},{"model":"block/netherrack","x":90},{"model":"block/netherrack","x":180},{"model":"block/netherrack","x":270},{"model":"block/netherrack","y":90},{"model":"block/netherrack","y":90,"x":90},{"model":"block/netherrack","y":90,"x":180},{"model":"block/netherrack","y":90,"x":270},{"model":"block/netherrack","y":180},{"model":"block/netherrack","y":180,"x":90},{"model":"block/netherrack","y":180,"x":180},{"model":"block/netherrack","y":180,"x":270},{"model":"block/netherrack","y":270},{"model":"block/netherrack","y":270,"x":90},{"model":"block/netherrack","y":270,"x":180},{"model":"block/netherrack","y":270,"x":270}]}},"nether_bricks":{"variants":{"":{"model":"block/nether_bricks"}}},"nether_brick_fence":{"multipart":[{"apply":{"model":"block/nether_brick_fence_post"}},{"when":{"north":true},"apply":{"model":"block/nether_brick_fence_side","uvlock":true}},{"when":{"east":true},"apply":{"model":"block/nether_brick_fence_side","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/nether_brick_fence_side","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/nether_brick_fence_side","y":270,"uvlock":true}}]},"nether_brick_slab":{"variants":{"type=bottom":{"model":"block/nether_brick_slab"},"type=top":{"model":"block/nether_brick_slab_top"},"type=double":{"model":"block/nether_bricks"}}},"nether_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/nether_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/nether_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/nether_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/nether_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/nether_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/nether_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/nether_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/nether_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/nether_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/nether_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/nether_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/nether_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/nether_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/nether_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/nether_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/nether_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/nether_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/nether_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/nether_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/nether_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/nether_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/nether_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/nether_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/nether_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/nether_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/nether_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/nether_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/nether_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/nether_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/nether_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/nether_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/nether_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/nether_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/nether_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/nether_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/nether_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/nether_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/nether_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/nether_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/nether_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"nether_brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/nether_brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/nether_brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/nether_brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/nether_brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/nether_brick_wall_side","y":270,"uvlock":true}}]},"nether_portal":{"variants":{"axis=z":{"model":"block/nether_portal_ew"},"axis=x":{"model":"block/nether_portal_ns"}}},"nether_quartz_ore":{"variants":{"":{"model":"block/nether_quartz_ore"}}},"nether_wart":{"variants":{"age=0":{"model":"block/nether_wart_stage0"},"age=1":{"model":"block/nether_wart_stage1"},"age=2":{"model":"block/nether_wart_stage1"},"age=3":{"model":"block/nether_wart_stage2"}}},"nether_wart_block":{"variants":{"":{"model":"block/nether_wart_block"}}},"note_block":{"variants":{"":{"model":"block/note_block"}}},"oak_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/oak_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/oak_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/oak_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/oak_button"},"face=wall,facing=east,powered=false":{"model":"block/oak_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/oak_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/oak_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/oak_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/oak_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/oak_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/oak_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/oak_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/oak_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/oak_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/oak_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/oak_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/oak_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/oak_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/oak_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/oak_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/oak_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/oak_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/oak_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/oak_button_pressed","x":180,"y":180}}},"oak_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/oak_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/oak_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/oak_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/oak_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/oak_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/oak_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/oak_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/oak_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/oak_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/oak_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/oak_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/oak_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/oak_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/oak_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/oak_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/oak_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/oak_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/oak_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/oak_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/oak_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/oak_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/oak_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/oak_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/oak_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/oak_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/oak_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/oak_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/oak_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/oak_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/oak_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/oak_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/oak_door_top","y":180}}},"oak_fence":{"multipart":[{"apply":{"model":"block/oak_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/oak_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/oak_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/oak_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/oak_fence_side","y":270,"uvlock":true}}]},"oak_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/oak_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/oak_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/oak_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/oak_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/oak_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/oak_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/oak_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/oak_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/oak_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/oak_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/oak_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/oak_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/oak_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/oak_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/oak_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/oak_fence_gate_wall_open","uvlock":true,"y":270}}},"oak_leaves":{"variants":{"":{"model":"block/oak_leaves"}}},"oak_log":{"variants":{"axis=y":{"model":"block/oak_log"},"axis=z":{"model":"block/oak_log","x":90},"axis=x":{"model":"block/oak_log","x":90,"y":90}}},"oak_planks":{"variants":{"":{"model":"block/oak_planks"}}},"oak_pressure_plate":{"variants":{"powered=false":{"model":"block/oak_pressure_plate"},"powered=true":{"model":"block/oak_pressure_plate_down"}}},"oak_sapling":{"variants":{"":{"model":"block/oak_sapling"}}},"oak_sign":{"variants":{"":{"model":"block/oak_sign"}}},"oak_slab":{"variants":{"type=bottom":{"model":"block/oak_slab"},"type=top":{"model":"block/oak_slab_top"},"type=double":{"model":"block/oak_planks"}}},"oak_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/oak_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/oak_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/oak_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/oak_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/oak_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/oak_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/oak_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/oak_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/oak_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/oak_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/oak_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/oak_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/oak_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/oak_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/oak_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/oak_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/oak_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/oak_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/oak_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/oak_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/oak_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/oak_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/oak_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/oak_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/oak_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/oak_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/oak_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/oak_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/oak_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/oak_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/oak_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/oak_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/oak_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/oak_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/oak_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/oak_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/oak_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/oak_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/oak_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/oak_stairs_inner","x":180,"y":270,"uvlock":true}}},"oak_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/oak_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/oak_trapdoor_bottom"},"facing=east,half=bottom,open=false":{"model":"block/oak_trapdoor_bottom"},"facing=west,half=bottom,open=false":{"model":"block/oak_trapdoor_bottom"},"facing=north,half=top,open=false":{"model":"block/oak_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/oak_trapdoor_top"},"facing=east,half=top,open=false":{"model":"block/oak_trapdoor_top"},"facing=west,half=top,open=false":{"model":"block/oak_trapdoor_top"},"facing=north,half=bottom,open=true":{"model":"block/oak_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/oak_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/oak_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/oak_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/oak_trapdoor_open"},"facing=south,half=top,open=true":{"model":"block/oak_trapdoor_open","y":180},"facing=east,half=top,open=true":{"model":"block/oak_trapdoor_open","y":90},"facing=west,half=top,open=true":{"model":"block/oak_trapdoor_open","y":270}}},"oak_wall_sign":{"variants":{"":{"model":"block/oak_sign"}}},"oak_wood":{"variants":{"axis=y":{"model":"block/oak_wood"},"axis=z":{"model":"block/oak_wood","x":90},"axis=x":{"model":"block/oak_wood","x":90,"y":90}}},"observer":{"variants":{"facing=up,powered=false":{"model":"block/observer","x":270},"facing=down,powered=false":{"model":"block/observer","x":90},"facing=north,powered=false":{"model":"block/observer"},"facing=south,powered=false":{"model":"block/observer","y":180},"facing=west,powered=false":{"model":"block/observer","y":270},"facing=east,powered=false":{"model":"block/observer","y":90},"facing=up,powered=true":{"model":"block/observer_on","x":270},"facing=down,powered=true":{"model":"block/observer_on","x":90},"facing=north,powered=true":{"model":"block/observer_on"},"facing=south,powered=true":{"model":"block/observer_on","y":180},"facing=west,powered=true":{"model":"block/observer_on","y":270},"facing=east,powered=true":{"model":"block/observer_on","y":90}}},"obsidian":{"variants":{"":{"model":"block/obsidian"}}},"orange_banner":{"variants":{"":{"model":"block/banner"}}},"orange_bed":{"variants":{"":{"model":"block/bed"}}},"orange_carpet":{"variants":{"":{"model":"block/orange_carpet"}}},"orange_concrete":{"variants":{"":{"model":"block/orange_concrete"}}},"orange_concrete_powder":{"variants":{"":[{"model":"block/orange_concrete_powder"},{"model":"block/orange_concrete_powder","y":90},{"model":"block/orange_concrete_powder","y":180},{"model":"block/orange_concrete_powder","y":270}]}},"orange_glazed_terracotta":{"variants":{"facing=south":{"model":"block/orange_glazed_terracotta"},"facing=west":{"model":"block/orange_glazed_terracotta","y":90},"facing=north":{"model":"block/orange_glazed_terracotta","y":180},"facing=east":{"model":"block/orange_glazed_terracotta","y":270}}},"orange_shulker_box":{"variants":{"":{"model":"block/orange_shulker_box"}}},"orange_stained_glass":{"variants":{"":{"model":"block/orange_stained_glass"}}},"orange_stained_glass_pane":{"multipart":[{"apply":{"model":"block/orange_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/orange_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/orange_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/orange_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/orange_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/orange_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/orange_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/orange_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/orange_stained_glass_pane_noside","y":270}}]},"orange_terracotta":{"variants":{"":{"model":"block/orange_terracotta"}}},"orange_tulip":{"variants":{"":{"model":"block/orange_tulip"}}},"orange_wall_banner":{"variants":{"":{"model":"block/banner"}}},"orange_wool":{"variants":{"":{"model":"block/orange_wool"}}},"oxeye_daisy":{"variants":{"":{"model":"block/oxeye_daisy"}}},"packed_ice":{"variants":{"":{"model":"block/packed_ice"}}},"peony":{"variants":{"half=lower":{"model":"block/peony_bottom"},"half=upper":{"model":"block/peony_top"}}},"petrified_oak_slab":{"variants":{"type=bottom":{"model":"block/petrified_oak_slab"},"type=top":{"model":"block/petrified_oak_slab_top"},"type=double":{"model":"block/oak_planks"}}},"pink_banner":{"variants":{"":{"model":"block/banner"}}},"pink_bed":{"variants":{"":{"model":"block/bed"}}},"pink_carpet":{"variants":{"":{"model":"block/pink_carpet"}}},"pink_concrete":{"variants":{"":{"model":"block/pink_concrete"}}},"pink_concrete_powder":{"variants":{"":[{"model":"block/pink_concrete_powder"},{"model":"block/pink_concrete_powder","y":90},{"model":"block/pink_concrete_powder","y":180},{"model":"block/pink_concrete_powder","y":270}]}},"pink_glazed_terracotta":{"variants":{"facing=south":{"model":"block/pink_glazed_terracotta"},"facing=west":{"model":"block/pink_glazed_terracotta","y":90},"facing=north":{"model":"block/pink_glazed_terracotta","y":180},"facing=east":{"model":"block/pink_glazed_terracotta","y":270}}},"pink_shulker_box":{"variants":{"":{"model":"block/pink_shulker_box"}}},"pink_stained_glass":{"variants":{"":{"model":"block/pink_stained_glass"}}},"pink_stained_glass_pane":{"multipart":[{"apply":{"model":"block/pink_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/pink_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/pink_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/pink_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/pink_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/pink_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/pink_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/pink_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/pink_stained_glass_pane_noside","y":270}}]},"pink_terracotta":{"variants":{"":{"model":"block/pink_terracotta"}}},"pink_tulip":{"variants":{"":{"model":"block/pink_tulip"}}},"pink_wall_banner":{"variants":{"":{"model":"block/banner"}}},"pink_wool":{"variants":{"":{"model":"block/pink_wool"}}},"piston":{"variants":{"extended=false,facing=down":{"model":"block/piston","x":90},"extended=false,facing=up":{"model":"block/piston","x":270},"extended=false,facing=north":{"model":"block/piston"},"extended=false,facing=south":{"model":"block/piston","y":180},"extended=false,facing=west":{"model":"block/piston","y":270},"extended=false,facing=east":{"model":"block/piston","y":90},"extended=true,facing=down":{"model":"block/piston_base","x":90},"extended=true,facing=up":{"model":"block/piston_base","x":270},"extended=true,facing=north":{"model":"block/piston_base"},"extended=true,facing=south":{"model":"block/piston_base","y":180},"extended=true,facing=west":{"model":"block/piston_base","y":270},"extended=true,facing=east":{"model":"block/piston_base","y":90}}},"piston_head":{"variants":{"facing=down,short=false,type=normal":{"model":"block/piston_head","x":90},"facing=up,short=false,type=normal":{"model":"block/piston_head","x":270},"facing=north,short=false,type=normal":{"model":"block/piston_head"},"facing=south,short=false,type=normal":{"model":"block/piston_head","y":180},"facing=west,short=false,type=normal":{"model":"block/piston_head","y":270},"facing=east,short=false,type=normal":{"model":"block/piston_head","y":90},"facing=down,short=false,type=sticky":{"model":"block/piston_head_sticky","x":90},"facing=up,short=false,type=sticky":{"model":"block/piston_head_sticky","x":270},"facing=north,short=false,type=sticky":{"model":"block/piston_head_sticky"},"facing=south,short=false,type=sticky":{"model":"block/piston_head_sticky","y":180},"facing=west,short=false,type=sticky":{"model":"block/piston_head_sticky","y":270},"facing=east,short=false,type=sticky":{"model":"block/piston_head_sticky","y":90},"facing=down,short=true,type=normal":{"model":"block/piston_head_short","x":90},"facing=up,short=true,type=normal":{"model":"block/piston_head_short","x":270},"facing=north,short=true,type=normal":{"model":"block/piston_head_short"},"facing=south,short=true,type=normal":{"model":"block/piston_head_short","y":180},"facing=west,short=true,type=normal":{"model":"block/piston_head_short","y":270},"facing=east,short=true,type=normal":{"model":"block/piston_head_short","y":90},"facing=down,short=true,type=sticky":{"model":"block/piston_head_short_sticky","x":90},"facing=up,short=true,type=sticky":{"model":"block/piston_head_short_sticky","x":270},"facing=north,short=true,type=sticky":{"model":"block/piston_head_short_sticky"},"facing=south,short=true,type=sticky":{"model":"block/piston_head_short_sticky","y":180},"facing=west,short=true,type=sticky":{"model":"block/piston_head_short_sticky","y":270},"facing=east,short=true,type=sticky":{"model":"block/piston_head_short_sticky","y":90}}},"player_head":{"variants":{"":{"model":"block/skull"}}},"player_wall_head":{"variants":{"":{"model":"block/skull"}}},"podzol":{"variants":{"snowy=false":[{"model":"block/podzol"},{"model":"block/podzol","y":90},{"model":"block/podzol","y":180},{"model":"block/podzol","y":270}],"snowy=true":{"model":"block/grass_block_snow"}}},"polished_andesite":{"variants":{"":{"model":"block/polished_andesite"}}},"polished_andesite_slab":{"variants":{"type=bottom":{"model":"block/polished_andesite_slab"},"type=top":{"model":"block/polished_andesite_slab_top"},"type=double":{"model":"block/polished_andesite"}}},"polished_andesite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/polished_andesite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/polished_andesite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/polished_andesite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/polished_andesite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/polished_andesite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/polished_andesite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/polished_andesite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/polished_andesite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/polished_andesite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/polished_andesite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/polished_andesite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/polished_andesite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/polished_andesite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/polished_andesite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/polished_andesite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/polished_andesite_stairs_inner","x":180,"y":270,"uvlock":true}}},"polished_diorite":{"variants":{"":{"model":"block/polished_diorite"}}},"polished_diorite_slab":{"variants":{"type=bottom":{"model":"block/polished_diorite_slab"},"type=top":{"model":"block/polished_diorite_slab_top"},"type=double":{"model":"block/polished_diorite"}}},"polished_diorite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/polished_diorite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/polished_diorite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/polished_diorite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/polished_diorite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/polished_diorite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/polished_diorite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/polished_diorite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/polished_diorite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/polished_diorite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/polished_diorite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/polished_diorite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/polished_diorite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/polished_diorite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/polished_diorite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/polished_diorite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/polished_diorite_stairs_inner","x":180,"y":270,"uvlock":true}}},"polished_granite":{"variants":{"":{"model":"block/polished_granite"}}},"polished_granite_slab":{"variants":{"type=bottom":{"model":"block/polished_granite_slab"},"type=top":{"model":"block/polished_granite_slab_top"},"type=double":{"model":"block/polished_granite"}}},"polished_granite_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/polished_granite_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/polished_granite_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/polished_granite_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/polished_granite_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/polished_granite_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/polished_granite_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/polished_granite_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/polished_granite_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/polished_granite_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/polished_granite_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/polished_granite_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/polished_granite_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/polished_granite_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/polished_granite_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/polished_granite_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/polished_granite_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/polished_granite_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/polished_granite_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/polished_granite_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/polished_granite_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/polished_granite_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/polished_granite_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/polished_granite_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/polished_granite_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/polished_granite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/polished_granite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/polished_granite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/polished_granite_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/polished_granite_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/polished_granite_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/polished_granite_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/polished_granite_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/polished_granite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/polished_granite_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/polished_granite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/polished_granite_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/polished_granite_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/polished_granite_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/polished_granite_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/polished_granite_stairs_inner","x":180,"y":270,"uvlock":true}}},"poppy":{"variants":{"":{"model":"block/poppy"}}},"potatoes":{"variants":{"age=0":{"model":"block/potatoes_stage0"},"age=1":{"model":"block/potatoes_stage0"},"age=2":{"model":"block/potatoes_stage1"},"age=3":{"model":"block/potatoes_stage1"},"age=4":{"model":"block/potatoes_stage2"},"age=5":{"model":"block/potatoes_stage2"},"age=6":{"model":"block/potatoes_stage2"},"age=7":{"model":"block/potatoes_stage3"}}},"potted_acacia_sapling":{"variants":{"":{"model":"block/potted_acacia_sapling"}}},"potted_allium":{"variants":{"":{"model":"block/potted_allium"}}},"potted_azure_bluet":{"variants":{"":{"model":"block/potted_azure_bluet"}}},"potted_bamboo":{"variants":{"":{"model":"block/potted_bamboo"}}},"potted_birch_sapling":{"variants":{"":{"model":"block/potted_birch_sapling"}}},"potted_blue_orchid":{"variants":{"":{"model":"block/potted_blue_orchid"}}},"potted_brown_mushroom":{"variants":{"":{"model":"block/potted_brown_mushroom"}}},"potted_cactus":{"variants":{"":{"model":"block/potted_cactus"}}},"potted_cornflower":{"variants":{"":{"model":"block/potted_cornflower"}}},"potted_dandelion":{"variants":{"":{"model":"block/potted_dandelion"}}},"potted_dark_oak_sapling":{"variants":{"":{"model":"block/potted_dark_oak_sapling"}}},"potted_dead_bush":{"variants":{"":{"model":"block/potted_dead_bush"}}},"potted_fern":{"variants":{"":{"model":"block/potted_fern"}}},"potted_jungle_sapling":{"variants":{"":{"model":"block/potted_jungle_sapling"}}},"potted_lily_of_the_valley":{"variants":{"":{"model":"block/potted_lily_of_the_valley"}}},"potted_oak_sapling":{"variants":{"":{"model":"block/potted_oak_sapling"}}},"potted_orange_tulip":{"variants":{"":{"model":"block/potted_orange_tulip"}}},"potted_oxeye_daisy":{"variants":{"":{"model":"block/potted_oxeye_daisy"}}},"potted_pink_tulip":{"variants":{"":{"model":"block/potted_pink_tulip"}}},"potted_poppy":{"variants":{"":{"model":"block/potted_poppy"}}},"potted_red_mushroom":{"variants":{"":{"model":"block/potted_red_mushroom"}}},"potted_red_tulip":{"variants":{"":{"model":"block/potted_red_tulip"}}},"potted_spruce_sapling":{"variants":{"":{"model":"block/potted_spruce_sapling"}}},"potted_white_tulip":{"variants":{"":{"model":"block/potted_white_tulip"}}},"potted_wither_rose":{"variants":{"":{"model":"block/potted_wither_rose"}}},"powered_rail":{"variants":{"powered=false,shape=north_south":{"model":"block/powered_rail"},"powered=false,shape=east_west":{"model":"block/powered_rail","y":90},"powered=false,shape=ascending_east":{"model":"block/powered_rail_raised_ne","y":90},"powered=false,shape=ascending_west":{"model":"block/powered_rail_raised_sw","y":90},"powered=false,shape=ascending_north":{"model":"block/powered_rail_raised_ne"},"powered=false,shape=ascending_south":{"model":"block/powered_rail_raised_sw"},"powered=true,shape=north_south":{"model":"block/powered_rail_on"},"powered=true,shape=east_west":{"model":"block/powered_rail_on","y":90},"powered=true,shape=ascending_east":{"model":"block/powered_rail_on_raised_ne","y":90},"powered=true,shape=ascending_west":{"model":"block/powered_rail_on_raised_sw","y":90},"powered=true,shape=ascending_north":{"model":"block/powered_rail_on_raised_ne"},"powered=true,shape=ascending_south":{"model":"block/powered_rail_on_raised_sw"}}},"prismarine":{"variants":{"":{"model":"block/prismarine"}}},"prismarine_bricks":{"variants":{"":{"model":"block/prismarine_bricks"}}},"prismarine_brick_slab":{"variants":{"type=bottom":{"model":"block/prismarine_brick_slab"},"type=top":{"model":"block/prismarine_brick_slab_top"},"type=double":{"model":"block/prismarine_bricks"}}},"prismarine_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/prismarine_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/prismarine_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/prismarine_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/prismarine_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/prismarine_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/prismarine_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/prismarine_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/prismarine_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/prismarine_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/prismarine_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/prismarine_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/prismarine_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"prismarine_slab":{"variants":{"type=bottom":{"model":"block/prismarine_slab"},"type=top":{"model":"block/prismarine_slab_top"},"type=double":{"model":"block/prismarine"}}},"prismarine_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/prismarine_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/prismarine_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/prismarine_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/prismarine_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/prismarine_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/prismarine_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/prismarine_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/prismarine_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/prismarine_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/prismarine_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/prismarine_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/prismarine_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/prismarine_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/prismarine_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/prismarine_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/prismarine_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/prismarine_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/prismarine_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/prismarine_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/prismarine_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/prismarine_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/prismarine_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/prismarine_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/prismarine_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/prismarine_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/prismarine_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/prismarine_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/prismarine_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/prismarine_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/prismarine_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/prismarine_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/prismarine_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/prismarine_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/prismarine_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/prismarine_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/prismarine_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/prismarine_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/prismarine_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/prismarine_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/prismarine_stairs_inner","x":180,"y":270,"uvlock":true}}},"prismarine_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/prismarine_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/prismarine_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/prismarine_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/prismarine_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/prismarine_wall_side","y":270,"uvlock":true}}]},"pumpkin":{"variants":{"":{"model":"block/pumpkin"}}},"pumpkin_stem":{"variants":{"age=0":{"model":"block/pumpkin_stem_stage0"},"age=1":{"model":"block/pumpkin_stem_stage1"},"age=2":{"model":"block/pumpkin_stem_stage2"},"age=3":{"model":"block/pumpkin_stem_stage3"},"age=4":{"model":"block/pumpkin_stem_stage4"},"age=5":{"model":"block/pumpkin_stem_stage5"},"age=6":{"model":"block/pumpkin_stem_stage6"},"age=7":{"model":"block/pumpkin_stem_stage7"}}},"purple_banner":{"variants":{"":{"model":"block/banner"}}},"purple_bed":{"variants":{"":{"model":"block/bed"}}},"purple_carpet":{"variants":{"":{"model":"block/purple_carpet"}}},"purple_concrete":{"variants":{"":{"model":"block/purple_concrete"}}},"purple_concrete_powder":{"variants":{"":[{"model":"block/purple_concrete_powder"},{"model":"block/purple_concrete_powder","y":90},{"model":"block/purple_concrete_powder","y":180},{"model":"block/purple_concrete_powder","y":270}]}},"purple_glazed_terracotta":{"variants":{"facing=south":{"model":"block/purple_glazed_terracotta"},"facing=west":{"model":"block/purple_glazed_terracotta","y":90},"facing=north":{"model":"block/purple_glazed_terracotta","y":180},"facing=east":{"model":"block/purple_glazed_terracotta","y":270}}},"purple_shulker_box":{"variants":{"":{"model":"block/purple_shulker_box"}}},"purple_stained_glass":{"variants":{"":{"model":"block/purple_stained_glass"}}},"purple_stained_glass_pane":{"multipart":[{"apply":{"model":"block/purple_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/purple_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/purple_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/purple_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/purple_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/purple_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/purple_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/purple_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/purple_stained_glass_pane_noside","y":270}}]},"purple_terracotta":{"variants":{"":{"model":"block/purple_terracotta"}}},"purple_wall_banner":{"variants":{"":{"model":"block/banner"}}},"purple_wool":{"variants":{"":{"model":"block/purple_wool"}}},"purpur_block":{"variants":{"":{"model":"block/purpur_block"}}},"purpur_pillar":{"variants":{"axis=y":{"model":"block/purpur_pillar"},"axis=z":{"model":"block/purpur_pillar","x":90},"axis=x":{"model":"block/purpur_pillar","x":90,"y":90}}},"purpur_slab":{"variants":{"type=bottom":{"model":"block/purpur_slab"},"type=top":{"model":"block/purpur_slab_top"},"type=double":{"model":"block/purpur_block"}}},"purpur_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/purpur_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/purpur_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/purpur_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/purpur_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/purpur_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/purpur_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/purpur_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/purpur_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/purpur_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/purpur_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/purpur_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/purpur_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/purpur_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/purpur_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/purpur_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/purpur_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/purpur_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/purpur_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/purpur_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/purpur_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/purpur_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/purpur_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/purpur_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/purpur_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/purpur_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/purpur_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/purpur_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/purpur_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/purpur_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/purpur_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/purpur_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/purpur_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/purpur_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/purpur_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/purpur_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/purpur_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/purpur_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/purpur_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/purpur_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/purpur_stairs_inner","x":180,"y":270,"uvlock":true}}},"quartz_block":{"variants":{"":{"model":"block/quartz_block"}}},"quartz_pillar":{"variants":{"axis=y":{"model":"block/quartz_pillar"},"axis=z":{"model":"block/quartz_pillar","x":90},"axis=x":{"model":"block/quartz_pillar","x":90,"y":90}}},"quartz_slab":{"variants":{"type=bottom":{"model":"block/quartz_slab"},"type=top":{"model":"block/quartz_slab_top"},"type=double":{"model":"block/quartz_block"}}},"quartz_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/quartz_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/quartz_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/quartz_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/quartz_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/quartz_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/quartz_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/quartz_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/quartz_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/quartz_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/quartz_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/quartz_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/quartz_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/quartz_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/quartz_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/quartz_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/quartz_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/quartz_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/quartz_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/quartz_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/quartz_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/quartz_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/quartz_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/quartz_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/quartz_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/quartz_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/quartz_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/quartz_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/quartz_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/quartz_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/quartz_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/quartz_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/quartz_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/quartz_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/quartz_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/quartz_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/quartz_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/quartz_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/quartz_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/quartz_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/quartz_stairs_inner","x":180,"y":270,"uvlock":true}}},"rail":{"variants":{"shape=north_south":{"model":"block/rail"},"shape=east_west":{"model":"block/rail","y":90},"shape=ascending_east":{"model":"block/rail_raised_ne","y":90},"shape=ascending_west":{"model":"block/rail_raised_sw","y":90},"shape=ascending_north":{"model":"block/rail_raised_ne"},"shape=ascending_south":{"model":"block/rail_raised_sw"},"shape=south_east":{"model":"block/rail_corner"},"shape=south_west":{"model":"block/rail_corner","y":90},"shape=north_west":{"model":"block/rail_corner","y":180},"shape=north_east":{"model":"block/rail_corner","y":270}}},"redstone_block":{"variants":{"":{"model":"block/redstone_block"}}},"redstone_lamp":{"variants":{"lit=false":{"model":"block/redstone_lamp"},"lit=true":{"model":"block/redstone_lamp_on"}}},"redstone_ore":{"variants":{"lit=false":{"model":"block/redstone_ore"},"lit=true":{"model":"block/redstone_ore_on"}}},"redstone_torch":{"variants":{"lit=true":{"model":"block/redstone_torch"},"lit=false":{"model":"block/redstone_torch_off"}}},"redstone_wall_torch":{"variants":{"facing=east,lit=true":{"model":"block/redstone_wall_torch"},"facing=south,lit=true":{"model":"block/redstone_wall_torch","y":90},"facing=west,lit=true":{"model":"block/redstone_wall_torch","y":180},"facing=north,lit=true":{"model":"block/redstone_wall_torch","y":270},"facing=east,lit=false":{"model":"block/redstone_wall_torch_off"},"facing=south,lit=false":{"model":"block/redstone_wall_torch_off","y":90},"facing=west,lit=false":{"model":"block/redstone_wall_torch_off","y":180},"facing=north,lit=false":{"model":"block/redstone_wall_torch_off","y":270}}},"redstone_wire":{"multipart":[{"when":{"OR":[{"north":"none","east":"none","south":"none","west":"none"},{"north":"side|up","east":"side|up"},{"east":"side|up","south":"side|up"},{"south":"side|up","west":"side|up"},{"west":"side|up","north":"side|up"}]},"apply":{"model":"block/redstone_dust_dot"}},{"when":{"OR":[{"north":"side|up"},{"north":"none","east":"none","south":"side|up","west":"none"}]},"apply":{"model":"block/redstone_dust_side0"}},{"when":{"OR":[{"south":"side|up"},{"north":"side|up","east":"none","south":"none","west":"none"}]},"apply":{"model":"block/redstone_dust_side_alt0"}},{"when":{"OR":[{"east":"side|up"},{"north":"none","east":"none","south":"none","west":"side|up"}]},"apply":{"model":"block/redstone_dust_side_alt1","y":270}},{"when":{"OR":[{"west":"side|up"},{"north":"none","east":"side|up","south":"none","west":"none"}]},"apply":{"model":"block/redstone_dust_side1","y":270}},{"when":{"north":"up"},"apply":{"model":"block/redstone_dust_up"}},{"when":{"east":"up"},"apply":{"model":"block/redstone_dust_up","y":90}},{"when":{"south":"up"},"apply":{"model":"block/redstone_dust_up","y":180}},{"when":{"west":"up"},"apply":{"model":"block/redstone_dust_up","y":270}}]},"red_banner":{"variants":{"":{"model":"block/banner"}}},"red_bed":{"variants":{"":{"model":"block/bed"}}},"red_carpet":{"variants":{"":{"model":"block/red_carpet"}}},"red_concrete":{"variants":{"":{"model":"block/red_concrete"}}},"red_concrete_powder":{"variants":{"":[{"model":"block/red_concrete_powder"},{"model":"block/red_concrete_powder","y":90},{"model":"block/red_concrete_powder","y":180},{"model":"block/red_concrete_powder","y":270}]}},"red_glazed_terracotta":{"variants":{"facing=south":{"model":"block/red_glazed_terracotta"},"facing=west":{"model":"block/red_glazed_terracotta","y":90},"facing=north":{"model":"block/red_glazed_terracotta","y":180},"facing=east":{"model":"block/red_glazed_terracotta","y":270}}},"red_mushroom":{"variants":{"":{"model":"block/red_mushroom"}}},"red_mushroom_block":{"multipart":[{"when":{"north":true},"apply":{"model":"block/red_mushroom_block"}},{"when":{"east":true},"apply":{"model":"block/red_mushroom_block","y":90,"uvlock":true}},{"when":{"south":true},"apply":{"model":"block/red_mushroom_block","y":180,"uvlock":true}},{"when":{"west":true},"apply":{"model":"block/red_mushroom_block","y":270,"uvlock":true}},{"when":{"up":true},"apply":{"model":"block/red_mushroom_block","x":270,"uvlock":true}},{"when":{"down":true},"apply":{"model":"block/red_mushroom_block","x":90,"uvlock":true}},{"when":{"north":false},"apply":{"model":"block/mushroom_block_inside"}},{"when":{"east":false},"apply":{"model":"block/mushroom_block_inside","y":90,"uvlock":false}},{"when":{"south":false},"apply":{"model":"block/mushroom_block_inside","y":180,"uvlock":false}},{"when":{"west":false},"apply":{"model":"block/mushroom_block_inside","y":270,"uvlock":false}},{"when":{"up":false},"apply":{"model":"block/mushroom_block_inside","x":270,"uvlock":false}},{"when":{"down":false},"apply":{"model":"block/mushroom_block_inside","x":90,"uvlock":false}}]},"red_nether_bricks":{"variants":{"":{"model":"block/red_nether_bricks"}}},"red_nether_brick_slab":{"variants":{"type=bottom":{"model":"block/red_nether_brick_slab"},"type=top":{"model":"block/red_nether_brick_slab_top"},"type=double":{"model":"block/red_nether_bricks"}}},"red_nether_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/red_nether_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/red_nether_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/red_nether_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/red_nether_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/red_nether_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/red_nether_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/red_nether_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/red_nether_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/red_nether_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/red_nether_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/red_nether_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/red_nether_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"red_nether_brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/red_nether_brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/red_nether_brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/red_nether_brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/red_nether_brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/red_nether_brick_wall_side","y":270,"uvlock":true}}]},"red_sand":{"variants":{"":[{"model":"block/red_sand"},{"model":"block/red_sand","y":90},{"model":"block/red_sand","y":180},{"model":"block/red_sand","y":270}]}},"red_sandstone":{"variants":{"":{"model":"block/red_sandstone"}}},"red_sandstone_slab":{"variants":{"type=bottom":{"model":"block/red_sandstone_slab"},"type=top":{"model":"block/red_sandstone_slab_top"},"type=double":{"model":"block/red_sandstone"}}},"red_sandstone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/red_sandstone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/red_sandstone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/red_sandstone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/red_sandstone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/red_sandstone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/red_sandstone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/red_sandstone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/red_sandstone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/red_sandstone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/red_sandstone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/red_sandstone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/red_sandstone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/red_sandstone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/red_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/red_sandstone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/red_sandstone_stairs_inner","x":180,"y":270,"uvlock":true}}},"red_sandstone_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/red_sandstone_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/red_sandstone_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/red_sandstone_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/red_sandstone_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/red_sandstone_wall_side","y":270,"uvlock":true}}]},"red_shulker_box":{"variants":{"":{"model":"block/red_shulker_box"}}},"red_stained_glass":{"variants":{"":{"model":"block/red_stained_glass"}}},"red_stained_glass_pane":{"multipart":[{"apply":{"model":"block/red_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/red_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/red_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/red_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/red_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/red_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/red_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/red_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/red_stained_glass_pane_noside","y":270}}]},"red_terracotta":{"variants":{"":{"model":"block/red_terracotta"}}},"red_tulip":{"variants":{"":{"model":"block/red_tulip"}}},"red_wall_banner":{"variants":{"":{"model":"block/banner"}}},"red_wool":{"variants":{"":{"model":"block/red_wool"}}},"repeater":{"variants":{"delay=1,facing=south,locked=false,powered=false":{"model":"block/repeater_1tick"},"delay=1,facing=west,locked=false,powered=false":{"model":"block/repeater_1tick","y":90},"delay=1,facing=north,locked=false,powered=false":{"model":"block/repeater_1tick","y":180},"delay=1,facing=east,locked=false,powered=false":{"model":"block/repeater_1tick","y":270},"delay=2,facing=south,locked=false,powered=false":{"model":"block/repeater_2tick"},"delay=2,facing=west,locked=false,powered=false":{"model":"block/repeater_2tick","y":90},"delay=2,facing=north,locked=false,powered=false":{"model":"block/repeater_2tick","y":180},"delay=2,facing=east,locked=false,powered=false":{"model":"block/repeater_2tick","y":270},"delay=3,facing=south,locked=false,powered=false":{"model":"block/repeater_3tick"},"delay=3,facing=west,locked=false,powered=false":{"model":"block/repeater_3tick","y":90},"delay=3,facing=north,locked=false,powered=false":{"model":"block/repeater_3tick","y":180},"delay=3,facing=east,locked=false,powered=false":{"model":"block/repeater_3tick","y":270},"delay=4,facing=south,locked=false,powered=false":{"model":"block/repeater_4tick"},"delay=4,facing=west,locked=false,powered=false":{"model":"block/repeater_4tick","y":90},"delay=4,facing=north,locked=false,powered=false":{"model":"block/repeater_4tick","y":180},"delay=4,facing=east,locked=false,powered=false":{"model":"block/repeater_4tick","y":270},"delay=1,facing=south,locked=true,powered=false":{"model":"block/repeater_1tick_locked"},"delay=1,facing=west,locked=true,powered=false":{"model":"block/repeater_1tick_locked","y":90},"delay=1,facing=north,locked=true,powered=false":{"model":"block/repeater_1tick_locked","y":180},"delay=1,facing=east,locked=true,powered=false":{"model":"block/repeater_1tick_locked","y":270},"delay=2,facing=south,locked=true,powered=false":{"model":"block/repeater_2tick_locked"},"delay=2,facing=west,locked=true,powered=false":{"model":"block/repeater_2tick_locked","y":90},"delay=2,facing=north,locked=true,powered=false":{"model":"block/repeater_2tick_locked","y":180},"delay=2,facing=east,locked=true,powered=false":{"model":"block/repeater_2tick_locked","y":270},"delay=3,facing=south,locked=true,powered=false":{"model":"block/repeater_3tick_locked"},"delay=3,facing=west,locked=true,powered=false":{"model":"block/repeater_3tick_locked","y":90},"delay=3,facing=north,locked=true,powered=false":{"model":"block/repeater_3tick_locked","y":180},"delay=3,facing=east,locked=true,powered=false":{"model":"block/repeater_3tick_locked","y":270},"delay=4,facing=south,locked=true,powered=false":{"model":"block/repeater_4tick_locked"},"delay=4,facing=west,locked=true,powered=false":{"model":"block/repeater_4tick_locked","y":90},"delay=4,facing=north,locked=true,powered=false":{"model":"block/repeater_4tick_locked","y":180},"delay=4,facing=east,locked=true,powered=false":{"model":"block/repeater_4tick_locked","y":270},"delay=1,facing=south,locked=false,powered=true":{"model":"block/repeater_1tick_on"},"delay=1,facing=west,locked=false,powered=true":{"model":"block/repeater_1tick_on","y":90},"delay=1,facing=north,locked=false,powered=true":{"model":"block/repeater_1tick_on","y":180},"delay=1,facing=east,locked=false,powered=true":{"model":"block/repeater_1tick_on","y":270},"delay=2,facing=south,locked=false,powered=true":{"model":"block/repeater_2tick_on"},"delay=2,facing=west,locked=false,powered=true":{"model":"block/repeater_2tick_on","y":90},"delay=2,facing=north,locked=false,powered=true":{"model":"block/repeater_2tick_on","y":180},"delay=2,facing=east,locked=false,powered=true":{"model":"block/repeater_2tick_on","y":270},"delay=3,facing=south,locked=false,powered=true":{"model":"block/repeater_3tick_on"},"delay=3,facing=west,locked=false,powered=true":{"model":"block/repeater_3tick_on","y":90},"delay=3,facing=north,locked=false,powered=true":{"model":"block/repeater_3tick_on","y":180},"delay=3,facing=east,locked=false,powered=true":{"model":"block/repeater_3tick_on","y":270},"delay=4,facing=south,locked=false,powered=true":{"model":"block/repeater_4tick_on"},"delay=4,facing=west,locked=false,powered=true":{"model":"block/repeater_4tick_on","y":90},"delay=4,facing=north,locked=false,powered=true":{"model":"block/repeater_4tick_on","y":180},"delay=4,facing=east,locked=false,powered=true":{"model":"block/repeater_4tick_on","y":270},"delay=1,facing=south,locked=true,powered=true":{"model":"block/repeater_1tick_on_locked"},"delay=1,facing=west,locked=true,powered=true":{"model":"block/repeater_1tick_on_locked","y":90},"delay=1,facing=north,locked=true,powered=true":{"model":"block/repeater_1tick_on_locked","y":180},"delay=1,facing=east,locked=true,powered=true":{"model":"block/repeater_1tick_on_locked","y":270},"delay=2,facing=south,locked=true,powered=true":{"model":"block/repeater_2tick_on_locked"},"delay=2,facing=west,locked=true,powered=true":{"model":"block/repeater_2tick_on_locked","y":90},"delay=2,facing=north,locked=true,powered=true":{"model":"block/repeater_2tick_on_locked","y":180},"delay=2,facing=east,locked=true,powered=true":{"model":"block/repeater_2tick_on_locked","y":270},"delay=3,facing=south,locked=true,powered=true":{"model":"block/repeater_3tick_on_locked"},"delay=3,facing=west,locked=true,powered=true":{"model":"block/repeater_3tick_on_locked","y":90},"delay=3,facing=north,locked=true,powered=true":{"model":"block/repeater_3tick_on_locked","y":180},"delay=3,facing=east,locked=true,powered=true":{"model":"block/repeater_3tick_on_locked","y":270},"delay=4,facing=south,locked=true,powered=true":{"model":"block/repeater_4tick_on_locked"},"delay=4,facing=west,locked=true,powered=true":{"model":"block/repeater_4tick_on_locked","y":90},"delay=4,facing=north,locked=true,powered=true":{"model":"block/repeater_4tick_on_locked","y":180},"delay=4,facing=east,locked=true,powered=true":{"model":"block/repeater_4tick_on_locked","y":270}}},"repeating_command_block":{"variants":{"conditional=false,facing=down":{"model":"block/repeating_command_block","x":90},"conditional=false,facing=up":{"model":"block/repeating_command_block","x":270},"conditional=false,facing=north":{"model":"block/repeating_command_block"},"conditional=false,facing=south":{"model":"block/repeating_command_block","y":180},"conditional=false,facing=west":{"model":"block/repeating_command_block","y":270},"conditional=false,facing=east":{"model":"block/repeating_command_block","y":90},"conditional=true,facing=down":{"model":"block/repeating_command_block_conditional","x":90},"conditional=true,facing=up":{"model":"block/repeating_command_block_conditional","x":270},"conditional=true,facing=north":{"model":"block/repeating_command_block_conditional"},"conditional=true,facing=south":{"model":"block/repeating_command_block_conditional","y":180},"conditional=true,facing=west":{"model":"block/repeating_command_block_conditional","y":270},"conditional=true,facing=east":{"model":"block/repeating_command_block_conditional","y":90}}},"rose_bush":{"variants":{"half=lower":{"model":"block/rose_bush_bottom"},"half=upper":{"model":"block/rose_bush_top"}}},"sand":{"variants":{"":[{"model":"block/sand"},{"model":"block/sand","y":90},{"model":"block/sand","y":180},{"model":"block/sand","y":270}]}},"sandstone":{"variants":{"":{"model":"block/sandstone"}}},"sandstone_slab":{"variants":{"type=bottom":{"model":"block/sandstone_slab"},"type=top":{"model":"block/sandstone_slab_top"},"type=double":{"model":"block/sandstone"}}},"sandstone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/sandstone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/sandstone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/sandstone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/sandstone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/sandstone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/sandstone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/sandstone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/sandstone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/sandstone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/sandstone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/sandstone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/sandstone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/sandstone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/sandstone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/sandstone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/sandstone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/sandstone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/sandstone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/sandstone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/sandstone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/sandstone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/sandstone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/sandstone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/sandstone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/sandstone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/sandstone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/sandstone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/sandstone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/sandstone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/sandstone_stairs_inner","x":180,"y":270,"uvlock":true}}},"sandstone_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/sandstone_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/sandstone_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/sandstone_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/sandstone_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/sandstone_wall_side","y":270,"uvlock":true}}]},"scaffolding":{"variants":{"bottom=true":{"model":"block/scaffolding_unstable"},"bottom=false":{"model":"block/scaffolding_stable"}}},"seagrass":{"variants":{"":{"model":"block/seagrass"}}},"sea_lantern":{"variants":{"":{"model":"block/sea_lantern"}}},"sea_pickle":{"variants":{"pickles=1,waterlogged=false":[{"model":"block/dead_sea_pickle"},{"model":"block/dead_sea_pickle","y":90},{"model":"block/dead_sea_pickle","y":180},{"model":"block/dead_sea_pickle","y":270}],"pickles=2,waterlogged=false":[{"model":"block/two_dead_sea_pickles"},{"model":"block/two_dead_sea_pickles","y":90},{"model":"block/two_dead_sea_pickles","y":180},{"model":"block/two_dead_sea_pickles","y":270}],"pickles=3,waterlogged=false":[{"model":"block/three_dead_sea_pickles"},{"model":"block/three_dead_sea_pickles","y":90},{"model":"block/three_dead_sea_pickles","y":180},{"model":"block/three_dead_sea_pickles","y":270}],"pickles=4,waterlogged=false":[{"model":"block/four_dead_sea_pickles"},{"model":"block/four_dead_sea_pickles","y":90},{"model":"block/four_dead_sea_pickles","y":180},{"model":"block/four_dead_sea_pickles","y":270}],"pickles=1,waterlogged=true":[{"model":"block/sea_pickle"},{"model":"block/sea_pickle","y":90},{"model":"block/sea_pickle","y":180},{"model":"block/sea_pickle","y":270}],"pickles=2,waterlogged=true":[{"model":"block/two_sea_pickles"},{"model":"block/two_sea_pickles","y":90},{"model":"block/two_sea_pickles","y":180},{"model":"block/two_sea_pickles","y":270}],"pickles=3,waterlogged=true":[{"model":"block/three_sea_pickles"},{"model":"block/three_sea_pickles","y":90},{"model":"block/three_sea_pickles","y":180},{"model":"block/three_sea_pickles","y":270}],"pickles=4,waterlogged=true":[{"model":"block/four_sea_pickles"},{"model":"block/four_sea_pickles","y":90},{"model":"block/four_sea_pickles","y":180},{"model":"block/four_sea_pickles","y":270}]}},"shulker_box":{"variants":{"":{"model":"block/shulker_box"}}},"skeleton_skull":{"variants":{"":{"model":"block/soul_sand"}}},"skeleton_wall_skull":{"variants":{"":{"model":"block/soul_sand"}}},"slime_block":{"variants":{"":{"model":"block/slime_block"}}},"smithing_table":{"variants":{"":{"model":"block/smithing_table"}}},"smoker":{"variants":{"facing=north,lit=false":{"model":"block/smoker"},"facing=south,lit=false":{"model":"block/smoker","y":180},"facing=west,lit=false":{"model":"block/smoker","y":270},"facing=east,lit=false":{"model":"block/smoker","y":90},"facing=north,lit=true":{"model":"block/smoker_on"},"facing=south,lit=true":{"model":"block/smoker_on","y":180},"facing=west,lit=true":{"model":"block/smoker_on","y":270},"facing=east,lit=true":{"model":"block/smoker_on","y":90}}},"smooth_quartz":{"variants":{"":{"model":"block/smooth_quartz"}}},"smooth_quartz_slab":{"variants":{"type=bottom":{"model":"block/smooth_quartz_slab"},"type=top":{"model":"block/smooth_quartz_slab_top"},"type=double":{"model":"block/smooth_quartz"}}},"smooth_quartz_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/smooth_quartz_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/smooth_quartz_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/smooth_quartz_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/smooth_quartz_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/smooth_quartz_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/smooth_quartz_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/smooth_quartz_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/smooth_quartz_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/smooth_quartz_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/smooth_quartz_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/smooth_quartz_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/smooth_quartz_stairs_inner","x":180,"y":270,"uvlock":true}}},"smooth_red_sandstone":{"variants":{"":{"model":"block/smooth_red_sandstone"}}},"smooth_red_sandstone_slab":{"variants":{"type=bottom":{"model":"block/smooth_red_sandstone_slab"},"type=top":{"model":"block/smooth_red_sandstone_slab_top"},"type=double":{"model":"block/smooth_red_sandstone"}}},"smooth_red_sandstone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/smooth_red_sandstone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/smooth_red_sandstone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/smooth_red_sandstone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/smooth_red_sandstone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/smooth_red_sandstone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/smooth_red_sandstone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/smooth_red_sandstone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/smooth_red_sandstone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/smooth_red_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/smooth_red_sandstone_stairs_inner","x":180,"y":270,"uvlock":true}}},"smooth_sandstone":{"variants":{"":{"model":"block/smooth_sandstone"}}},"smooth_sandstone_slab":{"variants":{"type=bottom":{"model":"block/smooth_sandstone_slab"},"type=top":{"model":"block/smooth_sandstone_slab_top"},"type=double":{"model":"block/smooth_sandstone"}}},"smooth_sandstone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/smooth_sandstone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/smooth_sandstone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/smooth_sandstone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/smooth_sandstone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/smooth_sandstone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/smooth_sandstone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/smooth_sandstone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/smooth_sandstone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/smooth_sandstone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/smooth_sandstone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/smooth_sandstone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/smooth_sandstone_stairs_inner","x":180,"y":270,"uvlock":true}}},"smooth_stone":{"variants":{"":{"model":"block/smooth_stone"}}},"smooth_stone_slab":{"variants":{"type=bottom":{"model":"block/smooth_stone_slab"},"type=top":{"model":"block/smooth_stone_slab_top"},"type=double":{"model":"block/smooth_stone_slab_double"}}},"snow":{"variants":{"layers=1":{"model":"block/snow_height2"},"layers=2":{"model":"block/snow_height4"},"layers=3":{"model":"block/snow_height6"},"layers=4":{"model":"block/snow_height8"},"layers=5":{"model":"block/snow_height10"},"layers=6":{"model":"block/snow_height12"},"layers=7":{"model":"block/snow_height14"},"layers=8":{"model":"block/snow_block"}}},"snow_block":{"variants":{"":{"model":"block/snow_block"}}},"soul_sand":{"variants":{"":{"model":"block/soul_sand"}}},"spawner":{"variants":{"":{"model":"block/spawner"}}},"sponge":{"variants":{"":{"model":"block/sponge"}}},"spruce_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/spruce_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/spruce_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/spruce_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/spruce_button"},"face=wall,facing=east,powered=false":{"model":"block/spruce_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/spruce_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/spruce_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/spruce_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/spruce_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/spruce_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/spruce_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/spruce_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/spruce_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/spruce_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/spruce_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/spruce_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/spruce_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/spruce_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/spruce_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/spruce_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/spruce_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/spruce_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/spruce_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/spruce_button_pressed","x":180,"y":180}}},"spruce_door":{"variants":{"facing=east,half=lower,hinge=left,open=false":{"model":"block/spruce_door_bottom"},"facing=south,half=lower,hinge=left,open=false":{"model":"block/spruce_door_bottom","y":90},"facing=west,half=lower,hinge=left,open=false":{"model":"block/spruce_door_bottom","y":180},"facing=north,half=lower,hinge=left,open=false":{"model":"block/spruce_door_bottom","y":270},"facing=east,half=lower,hinge=right,open=false":{"model":"block/spruce_door_bottom_hinge"},"facing=south,half=lower,hinge=right,open=false":{"model":"block/spruce_door_bottom_hinge","y":90},"facing=west,half=lower,hinge=right,open=false":{"model":"block/spruce_door_bottom_hinge","y":180},"facing=north,half=lower,hinge=right,open=false":{"model":"block/spruce_door_bottom_hinge","y":270},"facing=east,half=lower,hinge=left,open=true":{"model":"block/spruce_door_bottom_hinge","y":90},"facing=south,half=lower,hinge=left,open=true":{"model":"block/spruce_door_bottom_hinge","y":180},"facing=west,half=lower,hinge=left,open=true":{"model":"block/spruce_door_bottom_hinge","y":270},"facing=north,half=lower,hinge=left,open=true":{"model":"block/spruce_door_bottom_hinge"},"facing=east,half=lower,hinge=right,open=true":{"model":"block/spruce_door_bottom","y":270},"facing=south,half=lower,hinge=right,open=true":{"model":"block/spruce_door_bottom"},"facing=west,half=lower,hinge=right,open=true":{"model":"block/spruce_door_bottom","y":90},"facing=north,half=lower,hinge=right,open=true":{"model":"block/spruce_door_bottom","y":180},"facing=east,half=upper,hinge=left,open=false":{"model":"block/spruce_door_top"},"facing=south,half=upper,hinge=left,open=false":{"model":"block/spruce_door_top","y":90},"facing=west,half=upper,hinge=left,open=false":{"model":"block/spruce_door_top","y":180},"facing=north,half=upper,hinge=left,open=false":{"model":"block/spruce_door_top","y":270},"facing=east,half=upper,hinge=right,open=false":{"model":"block/spruce_door_top_hinge"},"facing=south,half=upper,hinge=right,open=false":{"model":"block/spruce_door_top_hinge","y":90},"facing=west,half=upper,hinge=right,open=false":{"model":"block/spruce_door_top_hinge","y":180},"facing=north,half=upper,hinge=right,open=false":{"model":"block/spruce_door_top_hinge","y":270},"facing=east,half=upper,hinge=left,open=true":{"model":"block/spruce_door_top_hinge","y":90},"facing=south,half=upper,hinge=left,open=true":{"model":"block/spruce_door_top_hinge","y":180},"facing=west,half=upper,hinge=left,open=true":{"model":"block/spruce_door_top_hinge","y":270},"facing=north,half=upper,hinge=left,open=true":{"model":"block/spruce_door_top_hinge"},"facing=east,half=upper,hinge=right,open=true":{"model":"block/spruce_door_top","y":270},"facing=south,half=upper,hinge=right,open=true":{"model":"block/spruce_door_top"},"facing=west,half=upper,hinge=right,open=true":{"model":"block/spruce_door_top","y":90},"facing=north,half=upper,hinge=right,open=true":{"model":"block/spruce_door_top","y":180}}},"spruce_fence":{"multipart":[{"apply":{"model":"block/spruce_fence_post"}},{"when":{"north":"true"},"apply":{"model":"block/spruce_fence_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/spruce_fence_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/spruce_fence_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/spruce_fence_side","y":270,"uvlock":true}}]},"spruce_fence_gate":{"variants":{"facing=south,in_wall=false,open=false":{"model":"block/spruce_fence_gate","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"block/spruce_fence_gate","uvlock":true,"y":90},"facing=north,in_wall=false,open=false":{"model":"block/spruce_fence_gate","uvlock":true,"y":180},"facing=east,in_wall=false,open=false":{"model":"block/spruce_fence_gate","uvlock":true,"y":270},"facing=south,in_wall=false,open=true":{"model":"block/spruce_fence_gate_open","uvlock":true},"facing=west,in_wall=false,open=true":{"model":"block/spruce_fence_gate_open","uvlock":true,"y":90},"facing=north,in_wall=false,open=true":{"model":"block/spruce_fence_gate_open","uvlock":true,"y":180},"facing=east,in_wall=false,open=true":{"model":"block/spruce_fence_gate_open","uvlock":true,"y":270},"facing=south,in_wall=true,open=false":{"model":"block/spruce_fence_gate_wall","uvlock":true},"facing=west,in_wall=true,open=false":{"model":"block/spruce_fence_gate_wall","uvlock":true,"y":90},"facing=north,in_wall=true,open=false":{"model":"block/spruce_fence_gate_wall","uvlock":true,"y":180},"facing=east,in_wall=true,open=false":{"model":"block/spruce_fence_gate_wall","uvlock":true,"y":270},"facing=south,in_wall=true,open=true":{"model":"block/spruce_fence_gate_wall_open","uvlock":true},"facing=west,in_wall=true,open=true":{"model":"block/spruce_fence_gate_wall_open","uvlock":true,"y":90},"facing=north,in_wall=true,open=true":{"model":"block/spruce_fence_gate_wall_open","uvlock":true,"y":180},"facing=east,in_wall=true,open=true":{"model":"block/spruce_fence_gate_wall_open","uvlock":true,"y":270}}},"spruce_leaves":{"variants":{"":{"model":"block/spruce_leaves"}}},"spruce_log":{"variants":{"axis=y":{"model":"block/spruce_log"},"axis=z":{"model":"block/spruce_log","x":90},"axis=x":{"model":"block/spruce_log","x":90,"y":90}}},"spruce_planks":{"variants":{"":{"model":"block/spruce_planks"}}},"spruce_pressure_plate":{"variants":{"powered=false":{"model":"block/spruce_pressure_plate"},"powered=true":{"model":"block/spruce_pressure_plate_down"}}},"spruce_sapling":{"variants":{"":{"model":"block/spruce_sapling"}}},"spruce_sign":{"variants":{"":{"model":"block/spruce_sign"}}},"spruce_slab":{"variants":{"type=bottom":{"model":"block/spruce_slab"},"type=top":{"model":"block/spruce_slab_top"},"type=double":{"model":"block/spruce_planks"}}},"spruce_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/spruce_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/spruce_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/spruce_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/spruce_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/spruce_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/spruce_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/spruce_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/spruce_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/spruce_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/spruce_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/spruce_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/spruce_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/spruce_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/spruce_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/spruce_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/spruce_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/spruce_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/spruce_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/spruce_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/spruce_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/spruce_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/spruce_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/spruce_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/spruce_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/spruce_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/spruce_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/spruce_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/spruce_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/spruce_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/spruce_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/spruce_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/spruce_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/spruce_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/spruce_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/spruce_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/spruce_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/spruce_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/spruce_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/spruce_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/spruce_stairs_inner","x":180,"y":270,"uvlock":true}}},"spruce_trapdoor":{"variants":{"facing=north,half=bottom,open=false":{"model":"block/spruce_trapdoor_bottom"},"facing=south,half=bottom,open=false":{"model":"block/spruce_trapdoor_bottom","y":180},"facing=east,half=bottom,open=false":{"model":"block/spruce_trapdoor_bottom","y":90},"facing=west,half=bottom,open=false":{"model":"block/spruce_trapdoor_bottom","y":270},"facing=north,half=top,open=false":{"model":"block/spruce_trapdoor_top"},"facing=south,half=top,open=false":{"model":"block/spruce_trapdoor_top","y":180},"facing=east,half=top,open=false":{"model":"block/spruce_trapdoor_top","y":90},"facing=west,half=top,open=false":{"model":"block/spruce_trapdoor_top","y":270},"facing=north,half=bottom,open=true":{"model":"block/spruce_trapdoor_open"},"facing=south,half=bottom,open=true":{"model":"block/spruce_trapdoor_open","y":180},"facing=east,half=bottom,open=true":{"model":"block/spruce_trapdoor_open","y":90},"facing=west,half=bottom,open=true":{"model":"block/spruce_trapdoor_open","y":270},"facing=north,half=top,open=true":{"model":"block/spruce_trapdoor_open","x":180,"y":180},"facing=south,half=top,open=true":{"model":"block/spruce_trapdoor_open","x":180,"y":0},"facing=east,half=top,open=true":{"model":"block/spruce_trapdoor_open","x":180,"y":270},"facing=west,half=top,open=true":{"model":"block/spruce_trapdoor_open","x":180,"y":90}}},"spruce_wall_sign":{"variants":{"":{"model":"block/spruce_sign"}}},"spruce_wood":{"variants":{"axis=y":{"model":"block/spruce_wood"},"axis=z":{"model":"block/spruce_wood","x":90},"axis=x":{"model":"block/spruce_wood","x":90,"y":90}}},"sticky_piston":{"variants":{"extended=false,facing=down":{"model":"block/sticky_piston","x":90},"extended=false,facing=up":{"model":"block/sticky_piston","x":270},"extended=false,facing=north":{"model":"block/sticky_piston"},"extended=false,facing=south":{"model":"block/sticky_piston","y":180},"extended=false,facing=west":{"model":"block/sticky_piston","y":270},"extended=false,facing=east":{"model":"block/sticky_piston","y":90},"extended=true,facing=down":{"model":"block/piston_base","x":90},"extended=true,facing=up":{"model":"block/piston_base","x":270},"extended=true,facing=north":{"model":"block/piston_base"},"extended=true,facing=south":{"model":"block/piston_base","y":180},"extended=true,facing=west":{"model":"block/piston_base","y":270},"extended=true,facing=east":{"model":"block/piston_base","y":90}}},"stone":{"variants":{"":[{"model":"block/stone"},{"model":"block/stone_mirrored"},{"model":"block/stone","y":180},{"model":"block/stone_mirrored","y":180}]}},"stonecutter":{"variants":{"facing=north":{"model":"block/stonecutter"},"facing=south":{"model":"block/stonecutter","y":180},"facing=west":{"model":"block/stonecutter","y":270},"facing=east":{"model":"block/stonecutter","y":90}}},"stone_bricks":{"variants":{"":{"model":"block/stone_bricks"}}},"stone_brick_slab":{"variants":{"type=bottom":{"model":"block/stone_brick_slab"},"type=top":{"model":"block/stone_brick_slab_top"},"type=double":{"model":"block/stone_bricks"}}},"stone_brick_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/stone_brick_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/stone_brick_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/stone_brick_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/stone_brick_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/stone_brick_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/stone_brick_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/stone_brick_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/stone_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/stone_brick_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/stone_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/stone_brick_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/stone_brick_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/stone_brick_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/stone_brick_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/stone_brick_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/stone_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/stone_brick_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/stone_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/stone_brick_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/stone_brick_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/stone_brick_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/stone_brick_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/stone_brick_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/stone_brick_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/stone_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/stone_brick_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/stone_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/stone_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/stone_brick_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/stone_brick_stairs_inner","x":180,"y":270,"uvlock":true}}},"stone_brick_wall":{"multipart":[{"when":{"up":"true"},"apply":{"model":"block/stone_brick_wall_post"}},{"when":{"north":"true"},"apply":{"model":"block/stone_brick_wall_side","uvlock":true}},{"when":{"east":"true"},"apply":{"model":"block/stone_brick_wall_side","y":90,"uvlock":true}},{"when":{"south":"true"},"apply":{"model":"block/stone_brick_wall_side","y":180,"uvlock":true}},{"when":{"west":"true"},"apply":{"model":"block/stone_brick_wall_side","y":270,"uvlock":true}}]},"stone_button":{"variants":{"face=floor,facing=east,powered=false":{"model":"block/stone_button","y":90},"face=floor,facing=west,powered=false":{"model":"block/stone_button","y":270},"face=floor,facing=south,powered=false":{"model":"block/stone_button","y":180},"face=floor,facing=north,powered=false":{"model":"block/stone_button"},"face=wall,facing=east,powered=false":{"model":"block/stone_button","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=false":{"model":"block/stone_button","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=false":{"model":"block/stone_button","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=false":{"model":"block/stone_button","uvlock":true,"x":90},"face=ceiling,facing=east,powered=false":{"model":"block/stone_button","x":180,"y":270},"face=ceiling,facing=west,powered=false":{"model":"block/stone_button","x":180,"y":90},"face=ceiling,facing=south,powered=false":{"model":"block/stone_button","x":180},"face=ceiling,facing=north,powered=false":{"model":"block/stone_button","x":180,"y":180},"face=floor,facing=east,powered=true":{"model":"block/stone_button_pressed","y":90},"face=floor,facing=west,powered=true":{"model":"block/stone_button_pressed","y":270},"face=floor,facing=south,powered=true":{"model":"block/stone_button_pressed","y":180},"face=floor,facing=north,powered=true":{"model":"block/stone_button_pressed"},"face=wall,facing=east,powered=true":{"model":"block/stone_button_pressed","uvlock":true,"x":90,"y":90},"face=wall,facing=west,powered=true":{"model":"block/stone_button_pressed","uvlock":true,"x":90,"y":270},"face=wall,facing=south,powered=true":{"model":"block/stone_button_pressed","uvlock":true,"x":90,"y":180},"face=wall,facing=north,powered=true":{"model":"block/stone_button_pressed","uvlock":true,"x":90},"face=ceiling,facing=east,powered=true":{"model":"block/stone_button_pressed","x":180,"y":270},"face=ceiling,facing=west,powered=true":{"model":"block/stone_button_pressed","x":180,"y":90},"face=ceiling,facing=south,powered=true":{"model":"block/stone_button_pressed","x":180},"face=ceiling,facing=north,powered=true":{"model":"block/stone_button_pressed","x":180,"y":180}}},"stone_pressure_plate":{"variants":{"powered=false":{"model":"block/stone_pressure_plate"},"powered=true":{"model":"block/stone_pressure_plate_down"}}},"stone_slab":{"variants":{"type=bottom":{"model":"block/stone_slab"},"type=top":{"model":"block/stone_slab_top"},"type=double":{"model":"block/stone"}}},"stone_stairs":{"variants":{"facing=east,half=bottom,shape=straight":{"model":"block/stone_stairs"},"facing=west,half=bottom,shape=straight":{"model":"block/stone_stairs","y":180,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"block/stone_stairs","y":90,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"block/stone_stairs","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"block/stone_stairs_outer"},"facing=west,half=bottom,shape=outer_right":{"model":"block/stone_stairs_outer","y":180,"uvlock":true},"facing=south,half=bottom,shape=outer_right":{"model":"block/stone_stairs_outer","y":90,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"block/stone_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_left":{"model":"block/stone_stairs_outer","y":270,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"block/stone_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"block/stone_stairs_outer"},"facing=north,half=bottom,shape=outer_left":{"model":"block/stone_stairs_outer","y":180,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"block/stone_stairs_inner"},"facing=west,half=bottom,shape=inner_right":{"model":"block/stone_stairs_inner","y":180,"uvlock":true},"facing=south,half=bottom,shape=inner_right":{"model":"block/stone_stairs_inner","y":90,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"block/stone_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_left":{"model":"block/stone_stairs_inner","y":270,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"block/stone_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"block/stone_stairs_inner"},"facing=north,half=bottom,shape=inner_left":{"model":"block/stone_stairs_inner","y":180,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"block/stone_stairs","x":180,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"block/stone_stairs","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"block/stone_stairs","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"block/stone_stairs","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"block/stone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"block/stone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"block/stone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"block/stone_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"block/stone_stairs_outer","x":180,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"block/stone_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"block/stone_stairs_outer","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"block/stone_stairs_outer","x":180,"y":270,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"block/stone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"block/stone_stairs_inner","x":180,"y":270,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"block/stone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"block/stone_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_left":{"model":"block/stone_stairs_inner","x":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"block/stone_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"block/stone_stairs_inner","x":180,"y":90,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"block/stone_stairs_inner","x":180,"y":270,"uvlock":true}}},"stripped_acacia_log":{"variants":{"axis=y":{"model":"block/stripped_acacia_log"},"axis=z":{"model":"block/stripped_acacia_log","x":90},"axis=x":{"model":"block/stripped_acacia_log","x":90,"y":90}}},"stripped_acacia_wood":{"variants":{"axis=y":{"model":"block/stripped_acacia_wood"},"axis=z":{"model":"block/stripped_acacia_wood","x":90},"axis=x":{"model":"block/stripped_acacia_wood","x":90,"y":90}}},"stripped_birch_log":{"variants":{"axis=y":{"model":"block/stripped_birch_log"},"axis=z":{"model":"block/stripped_birch_log","x":90},"axis=x":{"model":"block/stripped_birch_log","x":90,"y":90}}},"stripped_birch_wood":{"variants":{"axis=y":{"model":"block/stripped_birch_wood"},"axis=z":{"model":"block/stripped_birch_wood","x":90},"axis=x":{"model":"block/stripped_birch_wood","x":90,"y":90}}},"stripped_dark_oak_log":{"variants":{"axis=y":{"model":"block/stripped_dark_oak_log"},"axis=z":{"model":"block/stripped_dark_oak_log","x":90},"axis=x":{"model":"block/stripped_dark_oak_log","x":90,"y":90}}},"stripped_dark_oak_wood":{"variants":{"axis=y":{"model":"block/stripped_dark_oak_wood"},"axis=z":{"model":"block/stripped_dark_oak_wood","x":90},"axis=x":{"model":"block/stripped_dark_oak_wood","x":90,"y":90}}},"stripped_jungle_log":{"variants":{"axis=y":{"model":"block/stripped_jungle_log"},"axis=z":{"model":"block/stripped_jungle_log","x":90},"axis=x":{"model":"block/stripped_jungle_log","x":90,"y":90}}},"stripped_jungle_wood":{"variants":{"axis=y":{"model":"block/stripped_jungle_wood"},"axis=z":{"model":"block/stripped_jungle_wood","x":90},"axis=x":{"model":"block/stripped_jungle_wood","x":90,"y":90}}},"stripped_oak_log":{"variants":{"axis=y":{"model":"block/stripped_oak_log"},"axis=z":{"model":"block/stripped_oak_log","x":90},"axis=x":{"model":"block/stripped_oak_log","x":90,"y":90}}},"stripped_oak_wood":{"variants":{"axis=y":{"model":"block/stripped_oak_wood"},"axis=z":{"model":"block/stripped_oak_wood","x":90},"axis=x":{"model":"block/stripped_oak_wood","x":90,"y":90}}},"stripped_spruce_log":{"variants":{"axis=y":{"model":"block/stripped_spruce_log"},"axis=z":{"model":"block/stripped_spruce_log","x":90},"axis=x":{"model":"block/stripped_spruce_log","x":90,"y":90}}},"stripped_spruce_wood":{"variants":{"axis=y":{"model":"block/stripped_spruce_wood"},"axis=z":{"model":"block/stripped_spruce_wood","x":90},"axis=x":{"model":"block/stripped_spruce_wood","x":90,"y":90}}},"structure_block":{"variants":{"mode=save":{"model":"block/structure_block_save"},"mode=load":{"model":"block/structure_block_load"},"mode=corner":{"model":"block/structure_block_corner"},"mode=data":{"model":"block/structure_block_data"}}},"structure_void":{"variants":{"":{"model":"block/structure_void"}}},"sugar_cane":{"variants":{"":{"model":"block/sugar_cane"}}},"sunflower":{"variants":{"half=lower":{"model":"block/sunflower_bottom"},"half=upper":{"model":"block/sunflower_top"}}},"sweet_berry_bush":{"variants":{"age=0":{"model":"block/sweet_berry_bush_stage0"},"age=1":{"model":"block/sweet_berry_bush_stage1"},"age=2":{"model":"block/sweet_berry_bush_stage2"},"age=3":{"model":"block/sweet_berry_bush_stage3"}}},"tall_grass":{"variants":{"half=lower":{"model":"block/tall_grass_bottom"},"half=upper":{"model":"block/tall_grass_top"}}},"tall_seagrass":{"variants":{"half=lower":{"model":"block/tall_seagrass_bottom"},"half=upper":{"model":"block/tall_seagrass_top"}}},"terracotta":{"variants":{"":{"model":"block/terracotta"}}},"tnt":{"variants":{"":{"model":"block/tnt"}}},"torch":{"variants":{"":{"model":"block/torch"}}},"trapped_chest":{"variants":{"":{"model":"block/chest"}}},"tripwire":{"variants":{"attached=false,east=false,north=false,south=false,west=false":{"model":"block/tripwire_ns"},"attached=false,east=false,north=true,south=false,west=false":{"model":"block/tripwire_n"},"attached=false,east=false,north=false,south=true,west=false":{"model":"block/tripwire_n","y":180},"attached=false,east=true,north=false,south=false,west=false":{"model":"block/tripwire_n","y":90},"attached=false,east=false,north=false,south=false,west=true":{"model":"block/tripwire_n","y":270},"attached=false,east=true,north=true,south=false,west=false":{"model":"block/tripwire_ne"},"attached=false,east=true,north=false,south=true,west=false":{"model":"block/tripwire_ne","y":90},"attached=false,east=false,north=false,south=true,west=true":{"model":"block/tripwire_ne","y":180},"attached=false,east=false,north=true,south=false,west=true":{"model":"block/tripwire_ne","y":270},"attached=false,east=false,north=true,south=true,west=false":{"model":"block/tripwire_ns"},"attached=false,east=true,north=false,south=false,west=true":{"model":"block/tripwire_ns","y":90},"attached=false,east=true,north=true,south=true,west=false":{"model":"block/tripwire_nse"},"attached=false,east=true,north=false,south=true,west=true":{"model":"block/tripwire_nse","y":90},"attached=false,east=false,north=true,south=true,west=true":{"model":"block/tripwire_nse","y":180},"attached=false,east=true,north=true,south=false,west=true":{"model":"block/tripwire_nse","y":270},"attached=false,east=true,north=true,south=true,west=true":{"model":"block/tripwire_nsew"},"attached=true,east=false,north=false,south=false,west=false":{"model":"block/tripwire_attached_ns"},"attached=true,east=false,north=true,south=false,west=false":{"model":"block/tripwire_attached_n"},"attached=true,east=false,north=false,south=true,west=false":{"model":"block/tripwire_attached_n","y":180},"attached=true,east=true,north=false,south=false,west=false":{"model":"block/tripwire_attached_n","y":90},"attached=true,east=false,north=false,south=false,west=true":{"model":"block/tripwire_attached_n","y":270},"attached=true,east=true,north=true,south=false,west=false":{"model":"block/tripwire_attached_ne"},"attached=true,east=true,north=false,south=true,west=false":{"model":"block/tripwire_attached_ne","y":90},"attached=true,east=false,north=false,south=true,west=true":{"model":"block/tripwire_attached_ne","y":180},"attached=true,east=false,north=true,south=false,west=true":{"model":"block/tripwire_attached_ne","y":270},"attached=true,east=false,north=true,south=true,west=false":{"model":"block/tripwire_attached_ns"},"attached=true,east=true,north=false,south=false,west=true":{"model":"block/tripwire_attached_ns","y":90},"attached=true,east=true,north=true,south=true,west=false":{"model":"block/tripwire_attached_nse"},"attached=true,east=true,north=false,south=true,west=true":{"model":"block/tripwire_attached_nse","y":90},"attached=true,east=false,north=true,south=true,west=true":{"model":"block/tripwire_attached_nse","y":180},"attached=true,east=true,north=true,south=false,west=true":{"model":"block/tripwire_attached_nse","y":270},"attached=true,east=true,north=true,south=true,west=true":{"model":"block/tripwire_attached_nsew"}}},"tripwire_hook":{"variants":{"attached=false,facing=north,powered=false":{"model":"block/tripwire_hook"},"attached=false,facing=south,powered=false":{"model":"block/tripwire_hook","y":180},"attached=false,facing=west,powered=false":{"model":"block/tripwire_hook","y":270},"attached=false,facing=east,powered=false":{"model":"block/tripwire_hook","y":90},"attached=true,facing=north,powered=false":{"model":"block/tripwire_hook_attached"},"attached=true,facing=south,powered=false":{"model":"block/tripwire_hook_attached","y":180},"attached=true,facing=west,powered=false":{"model":"block/tripwire_hook_attached","y":270},"attached=true,facing=east,powered=false":{"model":"block/tripwire_hook_attached","y":90},"attached=false,facing=north,powered=true":{"model":"block/tripwire_hook_on"},"attached=false,facing=south,powered=true":{"model":"block/tripwire_hook_on","y":180},"attached=false,facing=west,powered=true":{"model":"block/tripwire_hook_on","y":270},"attached=false,facing=east,powered=true":{"model":"block/tripwire_hook_on","y":90},"attached=true,facing=north,powered=true":{"model":"block/tripwire_hook_attached_on"},"attached=true,facing=south,powered=true":{"model":"block/tripwire_hook_attached_on","y":180},"attached=true,facing=west,powered=true":{"model":"block/tripwire_hook_attached_on","y":270},"attached=true,facing=east,powered=true":{"model":"block/tripwire_hook_attached_on","y":90}}},"tube_coral":{"variants":{"":{"model":"block/tube_coral"}}},"tube_coral_block":{"variants":{"":{"model":"block/tube_coral_block"}}},"tube_coral_fan":{"variants":{"":{"model":"block/tube_coral_fan"}}},"tube_coral_wall_fan":{"variants":{"facing=east":{"model":"block/tube_coral_wall_fan","y":90},"facing=south":{"model":"block/tube_coral_wall_fan","y":180},"facing=west":{"model":"block/tube_coral_wall_fan","y":270},"facing=north":{"model":"block/tube_coral_wall_fan","y":0}}},"turtle_egg":{"variants":{"eggs=1,hatch=0":[{"model":"block/turtle_egg"},{"model":"block/turtle_egg","y":90},{"model":"block/turtle_egg","y":180},{"model":"block/turtle_egg","y":270}],"eggs=1,hatch=1":[{"model":"block/slightly_cracked_turtle_egg"},{"model":"block/slightly_cracked_turtle_egg","y":90},{"model":"block/slightly_cracked_turtle_egg","y":180},{"model":"block/slightly_cracked_turtle_egg","y":270}],"eggs=1,hatch=2":[{"model":"block/very_cracked_turtle_egg"},{"model":"block/very_cracked_turtle_egg","y":90},{"model":"block/very_cracked_turtle_egg","y":180},{"model":"block/very_cracked_turtle_egg","y":270}],"eggs=2,hatch=0":[{"model":"block/two_turtle_eggs"},{"model":"block/two_turtle_eggs","y":90},{"model":"block/two_turtle_eggs","y":180},{"model":"block/two_turtle_eggs","y":270}],"eggs=2,hatch=1":[{"model":"block/two_slightly_cracked_turtle_eggs"},{"model":"block/two_slightly_cracked_turtle_eggs","y":90},{"model":"block/two_slightly_cracked_turtle_eggs","y":180},{"model":"block/two_slightly_cracked_turtle_eggs","y":270}],"eggs=2,hatch=2":[{"model":"block/two_very_cracked_turtle_eggs"},{"model":"block/two_very_cracked_turtle_eggs","y":90},{"model":"block/two_very_cracked_turtle_eggs","y":180},{"model":"block/two_very_cracked_turtle_eggs","y":270}],"eggs=3,hatch=0":[{"model":"block/three_turtle_eggs"},{"model":"block/three_turtle_eggs","y":90},{"model":"block/three_turtle_eggs","y":180},{"model":"block/three_turtle_eggs","y":270}],"eggs=3,hatch=1":[{"model":"block/three_slightly_cracked_turtle_eggs"},{"model":"block/three_slightly_cracked_turtle_eggs","y":90},{"model":"block/three_slightly_cracked_turtle_eggs","y":180},{"model":"block/three_slightly_cracked_turtle_eggs","y":270}],"eggs=3,hatch=2":[{"model":"block/three_very_cracked_turtle_eggs"},{"model":"block/three_very_cracked_turtle_eggs","y":90},{"model":"block/three_very_cracked_turtle_eggs","y":180},{"model":"block/three_very_cracked_turtle_eggs","y":270}],"eggs=4,hatch=0":[{"model":"block/four_turtle_eggs"},{"model":"block/four_turtle_eggs","y":90},{"model":"block/four_turtle_eggs","y":180},{"model":"block/four_turtle_eggs","y":270}],"eggs=4,hatch=1":[{"model":"block/four_slightly_cracked_turtle_eggs"},{"model":"block/four_slightly_cracked_turtle_eggs","y":90},{"model":"block/four_slightly_cracked_turtle_eggs","y":180},{"model":"block/four_slightly_cracked_turtle_eggs","y":270}],"eggs=4,hatch=2":[{"model":"block/four_very_cracked_turtle_eggs"},{"model":"block/four_very_cracked_turtle_eggs","y":90},{"model":"block/four_very_cracked_turtle_eggs","y":180},{"model":"block/four_very_cracked_turtle_eggs","y":270}]}},"vine":{"variants":{"east=false,north=false,south=false,up=false,west=false":{"model":"block/vine_1"},"east=false,north=false,south=true,up=false,west=false":{"model":"block/vine_1"},"east=false,north=false,south=false,up=false,west=true":{"model":"block/vine_1","y":90},"east=false,north=true,south=false,up=false,west=false":{"model":"block/vine_1","y":180},"east=true,north=false,south=false,up=false,west=false":{"model":"block/vine_1","y":270},"east=true,north=true,south=false,up=false,west=false":{"model":"block/vine_2"},"east=true,north=false,south=true,up=false,west=false":{"model":"block/vine_2","y":90},"east=false,north=false,south=true,up=false,west=true":{"model":"block/vine_2","y":180},"east=false,north=true,south=false,up=false,west=true":{"model":"block/vine_2","y":270},"east=true,north=false,south=false,up=false,west=true":{"model":"block/vine_2_opposite"},"east=false,north=true,south=true,up=false,west=false":{"model":"block/vine_2_opposite","y":90},"east=true,north=true,south=true,up=false,west=false":{"model":"block/vine_3"},"east=true,north=false,south=true,up=false,west=true":{"model":"block/vine_3","y":90},"east=false,north=true,south=true,up=false,west=true":{"model":"block/vine_3","y":180},"east=true,north=true,south=false,up=false,west=true":{"model":"block/vine_3","y":270},"east=true,north=true,south=true,up=false,west=true":{"model":"block/vine_4"},"east=false,north=false,south=false,up=true,west=false":{"model":"block/vine_u"},"east=false,north=false,south=true,up=true,west=false":{"model":"block/vine_1u"},"east=false,north=false,south=false,up=true,west=true":{"model":"block/vine_1u","y":90},"east=false,north=true,south=false,up=true,west=false":{"model":"block/vine_1u","y":180},"east=true,north=false,south=false,up=true,west=false":{"model":"block/vine_1u","y":270},"east=true,north=true,south=false,up=true,west=false":{"model":"block/vine_2u"},"east=true,north=false,south=true,up=true,west=false":{"model":"block/vine_2u","y":90},"east=false,north=false,south=true,up=true,west=true":{"model":"block/vine_2u","y":180},"east=false,north=true,south=false,up=true,west=true":{"model":"block/vine_2u","y":270},"east=true,north=false,south=false,up=true,west=true":{"model":"block/vine_2u_opposite"},"east=false,north=true,south=true,up=true,west=false":{"model":"block/vine_2u_opposite","y":90},"east=true,north=true,south=true,up=true,west=false":{"model":"block/vine_3u"},"east=true,north=false,south=true,up=true,west=true":{"model":"block/vine_3u","y":90},"east=false,north=true,south=true,up=true,west=true":{"model":"block/vine_3u","y":180},"east=true,north=true,south=false,up=true,west=true":{"model":"block/vine_3u","y":270},"east=true,north=true,south=true,up=true,west=true":{"model":"block/vine_4u"}}},"void_air":{"variants":{"":{"model":"block/air"}}},"wall_torch":{"variants":{"facing=east":{"model":"block/wall_torch"},"facing=south":{"model":"block/wall_torch","y":90},"facing=west":{"model":"block/wall_torch","y":180},"facing=north":{"model":"block/wall_torch","y":270}}},"water":{"variants":{"":{"model":"block/water"}}},"wet_sponge":{"variants":{"":{"model":"block/wet_sponge"}}},"wheat":{"variants":{"age=0":{"model":"block/wheat_stage0"},"age=1":{"model":"block/wheat_stage1"},"age=2":{"model":"block/wheat_stage2"},"age=3":{"model":"block/wheat_stage3"},"age=4":{"model":"block/wheat_stage4"},"age=5":{"model":"block/wheat_stage5"},"age=6":{"model":"block/wheat_stage6"},"age=7":{"model":"block/wheat_stage7"}}},"white_banner":{"variants":{"":{"model":"block/banner"}}},"white_bed":{"variants":{"":{"model":"block/bed"}}},"white_carpet":{"variants":{"":{"model":"block/white_carpet"}}},"white_concrete":{"variants":{"":{"model":"block/white_concrete"}}},"white_concrete_powder":{"variants":{"":[{"model":"block/white_concrete_powder"},{"model":"block/white_concrete_powder","y":90},{"model":"block/white_concrete_powder","y":180},{"model":"block/white_concrete_powder","y":270}]}},"white_glazed_terracotta":{"variants":{"facing=south":{"model":"block/white_glazed_terracotta"},"facing=west":{"model":"block/white_glazed_terracotta","y":90},"facing=north":{"model":"block/white_glazed_terracotta","y":180},"facing=east":{"model":"block/white_glazed_terracotta","y":270}}},"white_shulker_box":{"variants":{"":{"model":"block/white_shulker_box"}}},"white_stained_glass":{"variants":{"":{"model":"block/white_stained_glass"}}},"white_stained_glass_pane":{"multipart":[{"apply":{"model":"block/white_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/white_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/white_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/white_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/white_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/white_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/white_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/white_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/white_stained_glass_pane_noside","y":270}}]},"white_terracotta":{"variants":{"":{"model":"block/white_terracotta"}}},"white_tulip":{"variants":{"":{"model":"block/white_tulip"}}},"white_wall_banner":{"variants":{"":{"model":"block/banner"}}},"white_wool":{"variants":{"":{"model":"block/white_wool"}}},"wither_rose":{"variants":{"":{"model":"block/wither_rose"}}},"wither_skeleton_skull":{"variants":{"":{"model":"block/soul_sand"}}},"wither_skeleton_wall_skull":{"variants":{"":{"model":"block/soul_sand"}}},"yellow_banner":{"variants":{"":{"model":"block/banner"}}},"yellow_bed":{"variants":{"":{"model":"block/bed"}}},"yellow_carpet":{"variants":{"":{"model":"block/yellow_carpet"}}},"yellow_concrete":{"variants":{"":{"model":"block/yellow_concrete"}}},"yellow_concrete_powder":{"variants":{"":[{"model":"block/yellow_concrete_powder"},{"model":"block/yellow_concrete_powder","y":90},{"model":"block/yellow_concrete_powder","y":180},{"model":"block/yellow_concrete_powder","y":270}]}},"yellow_glazed_terracotta":{"variants":{"facing=south":{"model":"block/yellow_glazed_terracotta"},"facing=west":{"model":"block/yellow_glazed_terracotta","y":90},"facing=north":{"model":"block/yellow_glazed_terracotta","y":180},"facing=east":{"model":"block/yellow_glazed_terracotta","y":270}}},"yellow_shulker_box":{"variants":{"":{"model":"block/yellow_shulker_box"}}},"yellow_stained_glass":{"variants":{"":{"model":"block/yellow_stained_glass"}}},"yellow_stained_glass_pane":{"multipart":[{"apply":{"model":"block/yellow_stained_glass_pane_post"}},{"when":{"north":true},"apply":{"model":"block/yellow_stained_glass_pane_side"}},{"when":{"east":true},"apply":{"model":"block/yellow_stained_glass_pane_side","y":90}},{"when":{"south":true},"apply":{"model":"block/yellow_stained_glass_pane_side_alt"}},{"when":{"west":true},"apply":{"model":"block/yellow_stained_glass_pane_side_alt","y":90}},{"when":{"north":false},"apply":{"model":"block/yellow_stained_glass_pane_noside"}},{"when":{"east":false},"apply":{"model":"block/yellow_stained_glass_pane_noside_alt"}},{"when":{"south":false},"apply":{"model":"block/yellow_stained_glass_pane_noside_alt","y":90}},{"when":{"west":false},"apply":{"model":"block/yellow_stained_glass_pane_noside","y":270}}]},"yellow_terracotta":{"variants":{"":{"model":"block/yellow_terracotta"}}},"yellow_wall_banner":{"variants":{"":{"model":"block/banner"}}},"yellow_wool":{"variants":{"":{"model":"block/yellow_wool"}}},"zombie_head":{"variants":{"":{"model":"block/skull"}}},"zombie_wall_head":{"variants":{"":{"model":"block/skull"}}}},"blockModels":{"acacia_button":{"parent":"block/button","textures":{"texture":"block/acacia_planks"}},"acacia_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/acacia_planks"}},"acacia_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/acacia_planks"}},"acacia_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/acacia_door_bottom","top":"block/acacia_door_top"}},"acacia_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/acacia_door_bottom","top":"block/acacia_door_top"}},"acacia_door_top":{"parent":"block/door_top","textures":{"bottom":"block/acacia_door_bottom","top":"block/acacia_door_top"}},"acacia_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/acacia_door_bottom","top":"block/acacia_door_top"}},"acacia_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/acacia_planks"}},"acacia_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/acacia_planks"}},"acacia_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/acacia_planks"}},"acacia_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/acacia_planks"}},"acacia_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/acacia_planks"}},"acacia_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/acacia_planks"}},"acacia_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/acacia_planks"}},"acacia_leaves":{"parent":"block/leaves","textures":{"all":"block/acacia_leaves"}},"acacia_log":{"parent":"block/cube_column","textures":{"end":"block/acacia_log_top","side":"block/acacia_log"}},"acacia_planks":{"parent":"block/cube_all","textures":{"all":"block/acacia_planks"}},"acacia_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/acacia_planks"}},"acacia_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/acacia_planks"}},"acacia_sapling":{"parent":"block/cross","textures":{"cross":"block/acacia_sapling"}},"acacia_sign":{"textures":{"particle":"block/acacia_planks"}},"acacia_slab":{"parent":"block/slab","textures":{"bottom":"block/acacia_planks","top":"block/acacia_planks","side":"block/acacia_planks"}},"acacia_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/acacia_planks","top":"block/acacia_planks","side":"block/acacia_planks"}},"acacia_stairs":{"parent":"block/stairs","textures":{"bottom":"block/acacia_planks","top":"block/acacia_planks","side":"block/acacia_planks"}},"acacia_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/acacia_planks","top":"block/acacia_planks","side":"block/acacia_planks"}},"acacia_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/acacia_planks","top":"block/acacia_planks","side":"block/acacia_planks"}},"acacia_trapdoor_bottom":{"parent":"block/template_orientable_trapdoor_bottom","textures":{"texture":"block/acacia_trapdoor"}},"acacia_trapdoor_open":{"parent":"block/template_orientable_trapdoor_open","textures":{"texture":"block/acacia_trapdoor"}},"acacia_trapdoor_top":{"parent":"block/template_orientable_trapdoor_top","textures":{"texture":"block/acacia_trapdoor"}},"acacia_wood":{"parent":"block/cube_column","textures":{"end":"block/acacia_log","side":"block/acacia_log"}},"activator_rail":{"parent":"block/rail_flat","textures":{"rail":"block/activator_rail"}},"activator_rail_on":{"parent":"block/rail_flat","textures":{"rail":"block/activator_rail_on"}},"activator_rail_on_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/activator_rail_on"}},"activator_rail_on_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/activator_rail_on"}},"activator_rail_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/activator_rail"}},"activator_rail_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/activator_rail"}},"air":{},"allium":{"parent":"block/cross","textures":{"particle":"block/allium","cross":"block/allium"}},"andesite":{"parent":"block/cube_all","textures":{"all":"block/andesite"}},"andesite_slab":{"parent":"block/slab","textures":{"bottom":"block/andesite","top":"block/andesite","side":"block/andesite"}},"andesite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/andesite","top":"block/andesite","side":"block/andesite"}},"andesite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/andesite","top":"block/andesite","side":"block/andesite"}},"andesite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/andesite","top":"block/andesite","side":"block/andesite"}},"andesite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/andesite","top":"block/andesite","side":"block/andesite"}},"andesite_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/andesite"}},"andesite_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/andesite"}},"andesite_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/andesite"}},"anvil":{"parent":"block/block","textures":{"particle":"block/anvil","body":"block/anvil","top":"block/anvil_top"},"display":{"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"elements":[{"__comment":"Anvil base","from":[2,0,2],"to":[14,4,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#body","rotation":180,"cullface":"down"},"up":{"uv":[2,2,14,14],"texture":"#body","rotation":180},"north":{"uv":[2,12,14,16],"texture":"#body"},"south":{"uv":[2,12,14,16],"texture":"#body"},"west":{"uv":[0,2,4,14],"texture":"#body","rotation":90},"east":{"uv":[4,2,0,14],"texture":"#body","rotation":270}}},{"__comment":"Lower narrow portion","from":[4,4,3],"to":[12,5,13],"faces":{"up":{"uv":[4,3,12,13],"texture":"#body","rotation":180},"north":{"uv":[4,11,12,12],"texture":"#body"},"south":{"uv":[4,11,12,12],"texture":"#body"},"west":{"uv":[4,3,5,13],"texture":"#body","rotation":90},"east":{"uv":[5,3,4,13],"texture":"#body","rotation":270}}},{"__comment":"Wider section beneath top portion","from":[6,5,4],"to":[10,10,12],"faces":{"north":{"uv":[6,6,10,11],"texture":"#body"},"south":{"uv":[6,6,10,11],"texture":"#body"},"west":{"uv":[5,4,10,12],"texture":"#body","rotation":90},"east":{"uv":[10,4,5,12],"texture":"#body","rotation":270}}},{"__comment":"Anvil top","from":[3,10,0],"to":[13,16,16],"faces":{"down":{"uv":[3,0,13,16],"texture":"#body","rotation":180},"up":{"uv":[3,0,13,16],"texture":"#top","rotation":180},"north":{"uv":[3,0,13,6],"texture":"#body"},"south":{"uv":[3,0,13,6],"texture":"#body"},"west":{"uv":[10,0,16,16],"texture":"#body","rotation":90},"east":{"uv":[16,0,10,16],"texture":"#body","rotation":270}}}]},"attached_melon_stem":{"parent":"block/stem_fruit","textures":{"stem":"block/melon_stem","upperstem":"block/attached_melon_stem"}},"attached_pumpkin_stem":{"parent":"block/stem_fruit","textures":{"stem":"block/pumpkin_stem","upperstem":"block/attached_pumpkin_stem"}},"azure_bluet":{"parent":"block/cross","textures":{"cross":"block/azure_bluet"}},"bamboo1_age0":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[0,0,2,16],"texture":"#all"},"south":{"uv":[0,0,2,16],"texture":"#all"},"west":{"uv":[0,0,2,16],"texture":"#all"},"east":{"uv":[0,0,2,16],"texture":"#all"}}}]},"bamboo1_age1":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[0,0,3,16],"texture":"#all"},"south":{"uv":[0,0,3,16],"texture":"#all"},"west":{"uv":[0,0,3,16],"texture":"#all"},"east":{"uv":[0,0,3,16],"texture":"#all"}}}]},"bamboo2_age0":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[3,0,5,16],"texture":"#all"},"south":{"uv":[3,0,5,16],"texture":"#all"},"west":{"uv":[3,0,5,16],"texture":"#all"},"east":{"uv":[3,0,5,16],"texture":"#all"}}}]},"bamboo2_age1":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[3,0,6,16],"texture":"#all"},"south":{"uv":[3,0,6,16],"texture":"#all"},"west":{"uv":[3,0,6,16],"texture":"#all"},"east":{"uv":[3,0,6,16],"texture":"#all"}}}]},"bamboo3_age0":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[6,0,8,16],"texture":"#all"},"south":{"uv":[6,0,8,16],"texture":"#all"},"west":{"uv":[6,0,8,16],"texture":"#all"},"east":{"uv":[6,0,8,16],"texture":"#all"}}}]},"bamboo3_age1":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[6,0,9,16],"texture":"#all"},"south":{"uv":[6,0,9,16],"texture":"#all"},"west":{"uv":[6,0,9,16],"texture":"#all"},"east":{"uv":[6,0,9,16],"texture":"#all"}}}]},"bamboo4_age0":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[9,0,11,16],"texture":"#all"},"south":{"uv":[9,0,11,16],"texture":"#all"},"west":{"uv":[9,0,11,16],"texture":"#all"},"east":{"uv":[9,0,11,16],"texture":"#all"}}}]},"bamboo4_age1":{"textures":{"all":"block/bamboo_stalk","particle":"block/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[9,0,12,16],"texture":"#all"},"south":{"uv":[9,0,12,16],"texture":"#all"},"west":{"uv":[9,0,12,16],"texture":"#all"},"east":{"uv":[9,0,12,16],"texture":"#all"}}}]},"bamboo_large_leaves":{"ambientocclusion":false,"textures":{"texture":"block/bamboo_large_leaves","particle":"block/bamboo_large_leaves"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}}]},"bamboo_sapling":{"parent":"block/tinted_cross","textures":{"cross":"block/bamboo_stage0"}},"bamboo_small_leaves":{"ambientocclusion":false,"textures":{"texture":"block/bamboo_small_leaves","particle":"block/bamboo_small_leaves"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}}]},"banner":{"textures":{"particle":"block/oak_planks"}},"barrel":{"parent":"block/cube_bottom_top","textures":{"top":"block/barrel_top","side":"block/barrel_side","bottom":"block/barrel_bottom"}},"barrel_open":{"parent":"block/cube_bottom_top","textures":{"top":"block/barrel_top_open","side":"block/barrel_side","bottom":"block/barrel_bottom"}},"barrier":{"textures":{"particle":"item/barrier"}},"beacon":{"parent":"block/block","ambientocclusion":false,"textures":{"particle":"block/glass","glass":"block/glass","obsidian":"block/obsidian","beacon":"block/beacon"},"elements":[{"__comment":"Glass shell","from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#glass"},"up":{"uv":[0,0,16,16],"texture":"#glass"},"north":{"uv":[0,0,16,16],"texture":"#glass"},"south":{"uv":[0,0,16,16],"texture":"#glass"},"west":{"uv":[0,0,16,16],"texture":"#glass"},"east":{"uv":[0,0,16,16],"texture":"#glass"}}},{"__comment":"Obsidian base","from":[2,0.1,2],"to":[14,3,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#obsidian"},"up":{"uv":[2,2,14,14],"texture":"#obsidian"},"north":{"uv":[2,13,14,16],"texture":"#obsidian"},"south":{"uv":[2,13,14,16],"texture":"#obsidian"},"west":{"uv":[2,13,14,16],"texture":"#obsidian"},"east":{"uv":[2,13,14,16],"texture":"#obsidian"}}},{"__comment":"Inner beacon texture","from":[3,3,3],"to":[13,14,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#beacon"},"up":{"uv":[3,3,13,13],"texture":"#beacon"},"north":{"uv":[3,2,13,13],"texture":"#beacon"},"south":{"uv":[3,2,13,13],"texture":"#beacon"},"west":{"uv":[3,2,13,13],"texture":"#beacon"},"east":{"uv":[3,2,13,13],"texture":"#beacon"}}}]},"bed":{"textures":{"particle":"block/oak_planks"}},"bedrock":{"parent":"block/cube_all","textures":{"all":"block/bedrock"}},"bedrock_mirrored":{"parent":"block/cube_mirrored_all","textures":{"all":"block/bedrock"}},"beehive":{"parent":"block/orientable_with_bottom","textures":{"particle":"block/beehive_side","bottom":"block/beehive_end","top":"block/beehive_end","front":"block/beehive_front","side":"block/beehive_side"}},"beehive_honey":{"parent":"block/orientable_with_bottom","textures":{"particle":"block/beehive_side","bottom":"block/beehive_end","top":"block/beehive_end","front":"block/beehive_front_honey","side":"block/beehive_side"}},"beetroots_stage0":{"parent":"block/crop","textures":{"crop":"block/beetroots_stage0"}},"beetroots_stage1":{"parent":"block/crop","textures":{"crop":"block/beetroots_stage1"}},"beetroots_stage2":{"parent":"block/crop","textures":{"crop":"block/beetroots_stage2"}},"beetroots_stage3":{"parent":"block/crop","textures":{"crop":"block/beetroots_stage3"}},"bee_nest":{"parent":"block/orientable_with_bottom","textures":{"particle":"block/bee_nest_side","bottom":"block/bee_nest_bottom","top":"block/bee_nest_top","front":"block/bee_nest_front","side":"block/bee_nest_side"}},"bee_nest_honey":{"parent":"block/orientable_with_bottom","textures":{"particle":"block/bee_nest_side","bottom":"block/bee_nest_bottom","top":"block/bee_nest_top","front":"block/bee_nest_front_honey","side":"block/bee_nest_side"}},"bell_between_walls":{"textures":{"particle":"block/bell_bottom","bar":"block/dark_oak_planks"},"elements":[{"from":[0,13,7],"to":[16,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"east":{"uv":[5,4,7,6],"texture":"#bar","cullface":"east"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"west":{"uv":[5,4,7,6],"texture":"#bar","cullface":"west"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}}]},"bell_ceiling":{"textures":{"particle":"block/bell_bottom","bar":"block/dark_oak_planks"},"elements":[{"from":[7,13,7],"to":[9,16,9],"faces":{"north":{"uv":[7,2,9,5],"texture":"#bar"},"east":{"uv":[1,2,3,5],"texture":"#bar"},"south":{"uv":[6,2,8,5],"texture":"#bar"},"west":{"uv":[4,2,6,5],"texture":"#bar"},"up":{"uv":[1,3,3,5],"texture":"#bar","cullface":"up"}}}]},"bell_floor":{"textures":{"particle":"block/bell_bottom","bar":"block/dark_oak_planks","post":"block/stone"},"elements":[{"from":[2,13,7],"to":[14,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}},{"from":[14,0,6],"to":[16,16,10],"faces":{"north":{"uv":[0,1,2,16],"texture":"#post"},"east":{"uv":[0,1,4,16],"texture":"#post"},"south":{"uv":[0,1,2,16],"texture":"#post"},"west":{"uv":[0,1,4,16],"texture":"#post"},"up":{"uv":[0,0,2,4],"texture":"#post","cullface":"up"},"down":{"uv":[0,0,2,4],"texture":"#post","cullface":"down"}}},{"from":[0,0,6],"to":[2,16,10],"faces":{"north":{"uv":[0,1,2,16],"texture":"#post"},"east":{"uv":[0,1,4,16],"texture":"#post"},"south":{"uv":[0,1,2,16],"texture":"#post"},"west":{"uv":[0,1,4,16],"texture":"#post"},"up":{"uv":[0,0,2,4],"texture":"#post","cullface":"up"},"down":{"uv":[0,0,2,4],"texture":"#post","cullface":"down"}}}]},"bell_wall":{"textures":{"particle":"block/bell_bottom","bar":"block/dark_oak_planks"},"elements":[{"from":[3,13,7],"to":[16,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"east":{"uv":[5,4,7,6],"texture":"#bar","cullface":"east"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"west":{"uv":[5,4,7,6],"texture":"#bar"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}}]},"birch_button":{"parent":"block/button","textures":{"texture":"block/birch_planks"}},"birch_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/birch_planks"}},"birch_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/birch_planks"}},"birch_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/birch_door_bottom","top":"block/birch_door_top"}},"birch_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/birch_door_bottom","top":"block/birch_door_top"}},"birch_door_top":{"parent":"block/door_top","textures":{"bottom":"block/birch_door_bottom","top":"block/birch_door_top"}},"birch_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/birch_door_bottom","top":"block/birch_door_top"}},"birch_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/birch_planks"}},"birch_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/birch_planks"}},"birch_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/birch_planks"}},"birch_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/birch_planks"}},"birch_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/birch_planks"}},"birch_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/birch_planks"}},"birch_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/birch_planks"}},"birch_leaves":{"parent":"block/leaves","textures":{"all":"block/birch_leaves"}},"birch_log":{"parent":"block/cube_column","textures":{"end":"block/birch_log_top","side":"block/birch_log"}},"birch_planks":{"parent":"block/cube_all","textures":{"all":"block/birch_planks"}},"birch_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/birch_planks"}},"birch_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/birch_planks"}},"birch_sapling":{"parent":"block/cross","textures":{"cross":"block/birch_sapling"}},"birch_sign":{"textures":{"particle":"block/birch_planks"}},"birch_slab":{"parent":"block/slab","textures":{"bottom":"block/birch_planks","top":"block/birch_planks","side":"block/birch_planks"}},"birch_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/birch_planks","top":"block/birch_planks","side":"block/birch_planks"}},"birch_stairs":{"parent":"block/stairs","textures":{"bottom":"block/birch_planks","top":"block/birch_planks","side":"block/birch_planks"}},"birch_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/birch_planks","top":"block/birch_planks","side":"block/birch_planks"}},"birch_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/birch_planks","top":"block/birch_planks","side":"block/birch_planks"}},"birch_trapdoor_bottom":{"parent":"block/template_orientable_trapdoor_bottom","textures":{"texture":"block/birch_trapdoor"}},"birch_trapdoor_open":{"parent":"block/template_orientable_trapdoor_open","textures":{"texture":"block/birch_trapdoor"}},"birch_trapdoor_top":{"parent":"block/template_orientable_trapdoor_top","textures":{"texture":"block/birch_trapdoor"}},"birch_wood":{"parent":"block/cube_column","textures":{"end":"block/birch_log","side":"block/birch_log"}},"black_carpet":{"parent":"block/carpet","textures":{"particle":"block/black_wool","wool":"block/black_wool"}},"black_concrete":{"parent":"block/cube_all","textures":{"all":"block/black_concrete"}},"black_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/black_concrete_powder"}},"black_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/black_glazed_terracotta","pattern":"block/black_glazed_terracotta"}},"black_shulker_box":{"textures":{"particle":"block/black_shulker_box"}},"black_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/black_stained_glass"}},"black_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/black_stained_glass"}},"black_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/black_stained_glass"}},"black_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/black_stained_glass_pane_top","pane":"block/black_stained_glass"}},"black_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/black_stained_glass_pane_top","pane":"block/black_stained_glass"}},"black_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/black_stained_glass_pane_top","pane":"block/black_stained_glass"}},"black_terracotta":{"parent":"block/cube_all","textures":{"all":"block/black_terracotta"}},"black_wool":{"parent":"block/cube_all","textures":{"all":"block/black_wool"}},"blast_furnace":{"parent":"block/orientable","textures":{"top":"block/blast_furnace_top","front":"block/blast_furnace_front","side":"block/blast_furnace_side"}},"blast_furnace_on":{"parent":"block/orientable","textures":{"top":"block/blast_furnace_top","front":"block/blast_furnace_front_on","side":"block/blast_furnace_side"}},"block":{"gui_light":"side","display":{"gui":{"rotation":[30,225,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"ground":{"rotation":[0,0,0],"translation":[0,3,0],"scale":[0.25,0.25,0.25]},"fixed":{"rotation":[0,0,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]},"thirdperson_righthand":{"rotation":[75,45,0],"translation":[0,2.5,0],"scale":[0.375,0.375,0.375]},"firstperson_righthand":{"rotation":[0,45,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]},"firstperson_lefthand":{"rotation":[0,225,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}}},"blue_carpet":{"parent":"block/carpet","textures":{"particle":"block/blue_wool","wool":"block/blue_wool"}},"blue_concrete":{"parent":"block/cube_all","textures":{"all":"block/blue_concrete"}},"blue_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/blue_concrete_powder"}},"blue_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/blue_glazed_terracotta","pattern":"block/blue_glazed_terracotta"}},"blue_ice":{"parent":"block/cube_all","textures":{"all":"block/blue_ice"}},"blue_orchid":{"parent":"block/cross","textures":{"cross":"block/blue_orchid"}},"blue_shulker_box":{"textures":{"particle":"block/blue_shulker_box"}},"blue_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/blue_stained_glass"}},"blue_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/blue_stained_glass"}},"blue_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/blue_stained_glass"}},"blue_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/blue_stained_glass_pane_top","pane":"block/blue_stained_glass"}},"blue_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/blue_stained_glass_pane_top","pane":"block/blue_stained_glass"}},"blue_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/blue_stained_glass_pane_top","pane":"block/blue_stained_glass"}},"blue_terracotta":{"parent":"block/cube_all","textures":{"all":"block/blue_terracotta"}},"blue_wool":{"parent":"block/cube_all","textures":{"all":"block/blue_wool"}},"bone_block":{"parent":"block/cube_column","textures":{"end":"block/bone_block_top","side":"block/bone_block_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#end","cullface":"down"},"up":{"texture":"#end","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"east"}}}]},"bookshelf":{"parent":"block/cube_column","textures":{"end":"block/oak_planks","side":"block/bookshelf"}},"brain_coral":{"parent":"block/cross","textures":{"cross":"block/brain_coral"}},"brain_coral_block":{"parent":"block/cube_all","textures":{"all":"block/brain_coral_block"}},"brain_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/brain_coral_fan"}},"brain_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/brain_coral_fan"}},"brewing_stand":{"textures":{"particle":"block/brewing_stand","base":"block/brewing_stand_base","stand":"block/brewing_stand"},"elements":[{"from":[7,0,7],"to":[9,14,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#stand"},"up":{"uv":[7,7,9,9],"texture":"#stand"},"north":{"uv":[7,2,9,16],"texture":"#stand"},"south":{"uv":[7,2,9,16],"texture":"#stand"},"west":{"uv":[7,2,9,16],"texture":"#stand"},"east":{"uv":[7,2,9,16],"texture":"#stand"}}},{"from":[9,0,5],"to":[15,2,11],"faces":{"down":{"uv":[9,5,15,11],"texture":"#base","cullface":"down"},"up":{"uv":[9,5,15,11],"texture":"#base"},"north":{"uv":[9,14,15,16],"texture":"#base"},"south":{"uv":[9,14,15,16],"texture":"#base"},"west":{"uv":[5,14,11,16],"texture":"#base"},"east":{"uv":[5,14,11,16],"texture":"#base"}}},{"from":[2,0,1],"to":[8,2,7],"faces":{"down":{"uv":[2,1,8,7],"texture":"#base","cullface":"down"},"up":{"uv":[2,1,8,7],"texture":"#base"},"north":{"uv":[2,14,8,16],"texture":"#base"},"south":{"uv":[2,14,8,16],"texture":"#base"},"west":{"uv":[1,14,7,16],"texture":"#base"},"east":{"uv":[1,14,7,16],"texture":"#base"}}},{"from":[2,0,9],"to":[8,2,15],"faces":{"down":{"uv":[2,9,8,15],"texture":"#base","cullface":"down"},"up":{"uv":[2,9,8,15],"texture":"#base"},"north":{"uv":[2,14,8,16],"texture":"#base"},"south":{"uv":[2,14,8,16],"texture":"#base"},"west":{"uv":[9,14,15,16],"texture":"#base"},"east":{"uv":[9,14,15,16],"texture":"#base"}}}]},"brewing_stand_bottle0":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[8,0,8],"to":[16,16,8],"faces":{"north":{"uv":[0,0,8,16],"texture":"#stand"},"south":{"uv":[8,0,0,16],"texture":"#stand"}}}]},"brewing_stand_bottle1":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[-0.41,0,8],"to":[7.59,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":-45},"faces":{"north":{"uv":[8,0,0,16],"texture":"#stand"},"south":{"uv":[0,0,8,16],"texture":"#stand"}}}]},"brewing_stand_bottle2":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[-0.41,0,8],"to":[7.59,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"faces":{"north":{"uv":[8,0,0,16],"texture":"#stand"},"south":{"uv":[0,0,8,16],"texture":"#stand"}}}]},"brewing_stand_empty0":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[8,0,8],"to":[16,16,8],"faces":{"north":{"uv":[16,0,8,16],"texture":"#stand"},"south":{"uv":[8,0,16,16],"texture":"#stand"}}}]},"brewing_stand_empty1":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[0,0,8],"to":[8,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":-45},"faces":{"north":{"uv":[8,0,16,16],"texture":"#stand"},"south":{"uv":[16,0,8,16],"texture":"#stand"}}}]},"brewing_stand_empty2":{"textures":{"particle":"block/brewing_stand","stand":"block/brewing_stand"},"elements":[{"from":[0,0,8],"to":[8,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"faces":{"north":{"uv":[8,0,16,16],"texture":"#stand"},"south":{"uv":[16,0,8,16],"texture":"#stand"}}}]},"bricks":{"parent":"block/cube_all","textures":{"all":"block/bricks"}},"brick_slab":{"parent":"block/slab","textures":{"bottom":"block/bricks","top":"block/bricks","side":"block/bricks"}},"brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/bricks","top":"block/bricks","side":"block/bricks"}},"brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/bricks","top":"block/bricks","side":"block/bricks"}},"brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/bricks","top":"block/bricks","side":"block/bricks"}},"brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/bricks","top":"block/bricks","side":"block/bricks"}},"brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/bricks"}},"brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/bricks"}},"brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/bricks"}},"brown_carpet":{"parent":"block/carpet","textures":{"particle":"block/brown_wool","wool":"block/brown_wool"}},"brown_concrete":{"parent":"block/cube_all","textures":{"all":"block/brown_concrete"}},"brown_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/brown_concrete_powder"}},"brown_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/brown_glazed_terracotta","pattern":"block/brown_glazed_terracotta"}},"brown_mushroom":{"parent":"block/cross","textures":{"cross":"block/brown_mushroom"}},"brown_mushroom_block":{"textures":{"texture":"block/brown_mushroom_block","particle":"block/brown_mushroom_block"},"elements":[{"from":[0,0,0],"to":[16,16,0],"faces":{"north":{"texture":"#texture","cullface":"north"}}}]},"brown_mushroom_block_inventory":{"parent":"block/cube_all","textures":{"all":"block/brown_mushroom_block"}},"brown_shulker_box":{"textures":{"particle":"block/brown_shulker_box"}},"brown_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/brown_stained_glass"}},"brown_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/brown_stained_glass"}},"brown_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/brown_stained_glass"}},"brown_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/brown_stained_glass_pane_top","pane":"block/brown_stained_glass"}},"brown_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/brown_stained_glass_pane_top","pane":"block/brown_stained_glass"}},"brown_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/brown_stained_glass_pane_top","pane":"block/brown_stained_glass"}},"brown_terracotta":{"parent":"block/cube_all","textures":{"all":"block/brown_terracotta"}},"brown_wool":{"parent":"block/cube_all","textures":{"all":"block/brown_wool"}},"bubble_coral":{"parent":"block/cross","textures":{"cross":"block/bubble_coral"}},"bubble_coral_block":{"parent":"block/cube_all","textures":{"all":"block/bubble_coral_block"}},"bubble_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/bubble_coral_fan"}},"bubble_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/bubble_coral_fan"}},"button":{"textures":{"particle":"#texture"},"elements":[{"from":[5,0,6],"to":[11,2,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture","cullface":"down"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,14,11,16],"texture":"#texture"},"south":{"uv":[5,14,11,16],"texture":"#texture"},"west":{"uv":[6,14,10,16],"texture":"#texture"},"east":{"uv":[6,14,10,16],"texture":"#texture"}}}]},"button_inventory":{"parent":"block/block","textures":{"particle":"#texture"},"elements":[{"from":[5,6,6],"to":[11,10,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,12,11,16],"texture":"#texture"},"south":{"uv":[5,12,11,16],"texture":"#texture"},"west":{"uv":[6,12,10,16],"texture":"#texture"},"east":{"uv":[6,12,10,16],"texture":"#texture"}}}]},"button_pressed":{"textures":{"particle":"#texture"},"elements":[{"from":[5,0,6],"to":[11,1,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture","cullface":"down"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,14,11,15],"texture":"#texture"},"south":{"uv":[5,14,11,15],"texture":"#texture"},"west":{"uv":[6,14,10,15],"texture":"#texture"},"east":{"uv":[6,14,10,15],"texture":"#texture"}}}]},"cactus":{"parent":"block/block","ambientocclusion":false,"textures":{"particle":"block/cactus_side","bottom":"block/cactus_bottom","top":"block/cactus_top","side":"block/cactus_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up"}}},{"from":[0,0,1],"to":[16,16,15],"faces":{"north":{"uv":[0,0,16,16],"texture":"#side"},"south":{"uv":[0,0,16,16],"texture":"#side"}}},{"from":[1,0,0],"to":[15,16,16],"faces":{"west":{"uv":[0,0,16,16],"texture":"#side"},"east":{"uv":[0,0,16,16],"texture":"#side"}}}]},"cake":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side"},"elements":[{"from":[1,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"cake_slice1":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[3,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice2":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[5,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice3":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[7,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice4":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[9,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice5":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[11,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice6":{"textures":{"particle":"block/cake_side","bottom":"block/cake_bottom","top":"block/cake_top","side":"block/cake_side","inside":"block/cake_inner"},"elements":[{"from":[13,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"campfire":{"parent":"block/block","display":{"head":{"translation":[0,10.5,0]}},"textures":{"particle":"block/campfire_log","log":"block/campfire_log","litlog":"block/campfire_log_lit","fire":"block/campfire_fire"},"elements":[{"from":[1,0,0],"to":[5,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,1,16,5],"texture":"#litlog"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,0,0,4],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,11],"to":[16,7,15],"faces":{"north":{"uv":[16,0,0,4],"texture":"#litlog"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[0,0,16,4],"texture":"#litlog"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,4,16,8],"texture":"#litlog"}}},{"from":[11,0,0],"to":[15,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,0,16,4],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,1,0,5],"texture":"#litlog"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,1],"to":[16,7,5],"faces":{"north":{"uv":[0,0,16,4],"texture":"#litlog"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[16,0,0,4],"texture":"#litlog"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,4,16,8],"texture":"#litlog"}}},{"from":[5,0,0],"to":[11,1,16],"faces":{"north":{"uv":[0,15,6,16],"texture":"#log","cullface":"north"},"south":{"uv":[10,15,16,16],"texture":"#log","cullface":"south"},"up":{"uv":[0,8,16,14],"rotation":90,"texture":"#litlog"},"down":{"uv":[0,8,16,14],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0.8,1,8],"to":[15.2,17,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#fire"},"south":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[8,1,0.8],"to":[8,17,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#fire"},"east":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"campfire_off":{"parent":"block/block","display":{"head":{"rotation":[0,0,0],"translation":[0,10.5,0],"scale":[1,1,1]}},"textures":{"particle":"block/campfire_log","log":"block/campfire_log"},"elements":[{"from":[1,0,0],"to":[5,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,1,16,5],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,0,0,4],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,11],"to":[16,7,15],"faces":{"north":{"uv":[16,0,0,4],"texture":"#log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[0,0,16,4],"texture":"#log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,0,16,4],"texture":"#log"}}},{"from":[11,0,0],"to":[15,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,0,16,4],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,1,0,5],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,1],"to":[16,7,5],"faces":{"north":{"uv":[0,0,16,4],"texture":"#log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[16,0,0,4],"texture":"#log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,0,16,4],"texture":"#log"}}},{"from":[5,0,0],"to":[11,1,16],"faces":{"north":{"uv":[0,15,6,16],"texture":"#log","cullface":"north"},"south":{"uv":[10,15,16,16],"texture":"#log","cullface":"south"},"up":{"uv":[0,8,16,14],"rotation":90,"texture":"#log"},"down":{"uv":[0,8,16,14],"rotation":90,"texture":"#log","cullface":"down"}}}]},"carpet":{"parent":"block/thin_block","elements":[{"from":[0,0,0],"to":[16,1,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#wool","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#wool"},"north":{"uv":[0,15,16,16],"texture":"#wool","cullface":"north"},"south":{"uv":[0,15,16,16],"texture":"#wool","cullface":"south"},"west":{"uv":[0,15,16,16],"texture":"#wool","cullface":"west"},"east":{"uv":[0,15,16,16],"texture":"#wool","cullface":"east"}}}]},"carrots_stage0":{"parent":"block/crop","textures":{"crop":"block/carrots_stage0"}},"carrots_stage1":{"parent":"block/crop","textures":{"crop":"block/carrots_stage1"}},"carrots_stage2":{"parent":"block/crop","textures":{"crop":"block/carrots_stage2"}},"carrots_stage3":{"parent":"block/crop","textures":{"crop":"block/carrots_stage3"}},"cartography_table":{"parent":"block/cube","textures":{"particle":"block/cartography_table_side3","down":"block/dark_oak_planks","up":"block/cartography_table_top","north":"block/cartography_table_side3","east":"block/cartography_table_side3","south":"block/cartography_table_side1","west":"block/cartography_table_side2"}},"carved_pumpkin":{"parent":"block/orientable","textures":{"top":"block/pumpkin_top","front":"block/carved_pumpkin","side":"block/pumpkin_side"}},"cauldron":{"ambientocclusion":false,"textures":{"particle":"block/cauldron_side","top":"block/cauldron_top","bottom":"block/cauldron_bottom","side":"block/cauldron_side","inside":"block/cauldron_inner"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}}]},"cauldron_level1":{"ambientocclusion":false,"textures":{"particle":"block/cauldron_side","top":"block/cauldron_top","bottom":"block/cauldron_bottom","side":"block/cauldron_side","inside":"block/cauldron_inner","water":"block/water_still"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,9,14],"faces":{"up":{"texture":"#water","tintindex":0,"cullface":"up"}}}]},"cauldron_level2":{"ambientocclusion":false,"textures":{"particle":"block/cauldron_side","top":"block/cauldron_top","bottom":"block/cauldron_bottom","side":"block/cauldron_side","inside":"block/cauldron_inner","water":"block/water_still"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,12,14],"faces":{"up":{"texture":"#water","tintindex":0,"cullface":"up"}}}]},"cauldron_level3":{"ambientocclusion":false,"textures":{"particle":"block/cauldron_side","top":"block/cauldron_top","bottom":"block/cauldron_bottom","side":"block/cauldron_side","inside":"block/cauldron_inner","water":"block/water_still"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,15,14],"faces":{"up":{"texture":"#water","tintindex":0,"cullface":"up"}}}]},"chain_command_block":{"parent":"block/cube_directional","textures":{"particle":"block/chain_command_block_back","down":"block/chain_command_block_side","up":"block/chain_command_block_side","north":"block/chain_command_block_front","east":"block/chain_command_block_side","south":"block/chain_command_block_back","west":"block/chain_command_block_side"}},"chain_command_block_conditional":{"parent":"block/cube_directional","textures":{"particle":"block/chain_command_block_back","down":"block/chain_command_block_conditional","up":"block/chain_command_block_conditional","north":"block/chain_command_block_front","east":"block/chain_command_block_conditional","south":"block/chain_command_block_back","west":"block/chain_command_block_conditional"}},"chest":{"textures":{"particle":"block/oak_planks"}},"chipped_anvil":{"parent":"block/anvil","textures":{"top":"block/chipped_anvil_top"}},"chiseled_quartz_block":{"parent":"block/cube_column","textures":{"side":"block/chiseled_quartz_block","end":"block/chiseled_quartz_block_top"}},"chiseled_red_sandstone":{"parent":"block/cube_column","textures":{"end":"block/red_sandstone_top","side":"block/chiseled_red_sandstone"}},"chiseled_sandstone":{"parent":"block/cube_column","textures":{"end":"block/sandstone_top","side":"block/chiseled_sandstone"}},"chiseled_stone_bricks":{"parent":"block/cube_all","textures":{"all":"block/chiseled_stone_bricks"}},"chorus_flower":{"parent":"block/block","textures":{"texture":"block/chorus_flower","bottom":"block/chorus_plant","particle":"block/chorus_flower"},"elements":[{"from":[2,14,2],"to":[14,16,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#texture"},"north":{"uv":[2,0,14,2],"texture":"#bottom"},"south":{"uv":[2,0,14,2],"texture":"#bottom"},"west":{"uv":[2,0,14,2],"texture":"#bottom"},"east":{"uv":[2,0,14,2],"texture":"#bottom"}}},{"from":[0,2,2],"to":[2,14,14],"faces":{"down":{"uv":[16,14,14,2],"texture":"#bottom"},"up":{"uv":[0,2,2,14],"texture":"#bottom"},"north":{"uv":[14,2,16,14],"texture":"#bottom"},"south":{"uv":[0,2,2,14],"texture":"#bottom"},"west":{"uv":[2,2,14,14],"texture":"#texture"}}},{"from":[2,2,0],"to":[14,14,2],"faces":{"down":{"uv":[14,2,2,0],"texture":"#bottom"},"up":{"uv":[2,0,14,2],"texture":"#bottom"},"north":{"uv":[2,2,14,14],"texture":"#texture"},"west":{"uv":[0,2,2,14],"texture":"#bottom"},"east":{"uv":[14,2,16,14],"texture":"#bottom"}}},{"from":[2,2,14],"to":[14,14,16],"faces":{"down":{"uv":[14,16,2,14],"texture":"#bottom"},"up":{"uv":[2,14,14,16],"texture":"#bottom"},"south":{"uv":[2,2,14,14],"texture":"#texture"},"west":{"uv":[14,2,16,14],"texture":"#bottom"},"east":{"uv":[0,2,2,14],"texture":"#bottom"}}},{"from":[14,2,2],"to":[16,14,14],"faces":{"down":{"uv":[2,14,0,2],"texture":"#bottom"},"up":{"uv":[14,2,16,14],"texture":"#bottom"},"north":{"uv":[0,2,2,14],"texture":"#bottom"},"south":{"uv":[14,2,16,14],"texture":"#bottom"},"east":{"uv":[2,2,14,14],"texture":"#texture"}}},{"from":[2,0,2],"to":[14,14,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#bottom"},"down":{"uv":[14,14,2,2],"texture":"#bottom"},"north":{"uv":[2,2,14,16],"texture":"#bottom"},"south":{"uv":[2,2,14,16],"texture":"#bottom"},"west":{"uv":[2,2,14,16],"texture":"#bottom"},"east":{"uv":[2,2,14,16],"texture":"#bottom"}}}]},"chorus_flower_dead":{"parent":"block/chorus_flower","textures":{"texture":"block/chorus_flower_dead","bottom":"block/chorus_plant","particle":"block/chorus_flower_dead"}},"chorus_plant":{"parent":"block/block","ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[2,14,2],"to":[14,16,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#texture","cullface":"up"},"north":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"south":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"west":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"east":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"}}},{"from":[0,2,2],"to":[2,14,14],"faces":{"down":{"uv":[16,14,14,2],"texture":"#texture","cullface":"west"},"up":{"uv":[0,2,2,14],"texture":"#texture","cullface":"west"},"north":{"uv":[14,2,16,14],"texture":"#texture","cullface":"west"},"south":{"uv":[0,2,2,14],"texture":"#texture","cullface":"west"},"west":{"uv":[2,2,14,14],"texture":"#texture","cullface":"west"}}},{"from":[2,2,0],"to":[14,14,2],"faces":{"down":{"uv":[14,2,2,0],"texture":"#texture","cullface":"north"},"up":{"uv":[2,0,14,2],"texture":"#texture","cullface":"north"},"north":{"uv":[2,2,14,14],"texture":"#texture","cullface":"north"},"west":{"uv":[0,2,2,14],"texture":"#texture","cullface":"north"},"east":{"uv":[14,2,16,14],"texture":"#texture","cullface":"north"}}},{"from":[2,2,14],"to":[14,14,16],"faces":{"down":{"uv":[14,16,2,14],"texture":"#texture","cullface":"south"},"up":{"uv":[2,14,14,16],"texture":"#texture","cullface":"south"},"south":{"uv":[2,2,14,14],"texture":"#texture","cullface":"south"},"west":{"uv":[14,2,16,14],"texture":"#texture","cullface":"south"},"east":{"uv":[0,2,2,14],"texture":"#texture","cullface":"south"}}},{"from":[14,2,2],"to":[16,14,14],"faces":{"down":{"uv":[2,14,0,2],"texture":"#texture","cullface":"east"},"up":{"uv":[14,2,16,14],"texture":"#texture","cullface":"east"},"north":{"uv":[0,2,2,14],"texture":"#texture","cullface":"east"},"south":{"uv":[14,2,16,14],"texture":"#texture","cullface":"east"},"east":{"uv":[2,2,14,14],"texture":"#texture","cullface":"east"}}},{"from":[2,0,2],"to":[14,2,14],"faces":{"down":{"uv":[14,14,2,2],"texture":"#texture","cullface":"down"},"north":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"south":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"west":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"east":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"}}},{"from":[2,2,2],"to":[14,14,14],"faces":{"down":{"uv":[14,14,2,2],"texture":"#inside"},"up":{"uv":[2,2,14,14],"texture":"#inside"},"north":{"uv":[2,2,14,14],"texture":"#inside"},"south":{"uv":[2,2,14,14],"texture":"#inside"},"west":{"uv":[2,2,14,14],"texture":"#inside"},"east":{"uv":[2,2,14,14],"texture":"#inside"}}}]},"chorus_plant_noside":{"ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}}]},"chorus_plant_noside1":{"ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[4,4,3],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_noside2":{"ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[5,5,2],"to":[11,11,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_noside3":{"ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[4,4,3],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_side":{"ambientocclusion":false,"textures":{"texture":"block/chorus_plant","inside":"block/chorus_plant","particle":"block/chorus_plant"},"elements":[{"from":[4,4,0],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture","cullface":"north"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"clay":{"parent":"block/cube_all","textures":{"all":"block/clay"}},"coal_block":{"parent":"block/cube_all","textures":{"all":"block/coal_block"}},"coal_ore":{"parent":"block/cube_all","textures":{"all":"block/coal_ore"}},"coarse_dirt":{"parent":"block/cube_all","textures":{"all":"block/coarse_dirt"}},"cobblestone":{"parent":"block/cube_all","textures":{"all":"block/cobblestone"}},"cobblestone_slab":{"parent":"block/slab","textures":{"bottom":"block/cobblestone","top":"block/cobblestone","side":"block/cobblestone"}},"cobblestone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/cobblestone","top":"block/cobblestone","side":"block/cobblestone"}},"cobblestone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/cobblestone","top":"block/cobblestone","side":"block/cobblestone"}},"cobblestone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/cobblestone","top":"block/cobblestone","side":"block/cobblestone"}},"cobblestone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/cobblestone","top":"block/cobblestone","side":"block/cobblestone"}},"cobblestone_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/cobblestone"}},"cobblestone_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/cobblestone"}},"cobblestone_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/cobblestone"}},"cobweb":{"parent":"block/cross","textures":{"cross":"block/cobweb"}},"cocoa_stage0":{"ambientocclusion":false,"textures":{"particle":"block/cocoa_stage0","cocoa":"block/cocoa_stage0"},"elements":[{"from":[6,7,11],"to":[10,12,15],"faces":{"down":{"uv":[0,0,4,4],"texture":"#cocoa"},"up":{"uv":[0,0,4,4],"texture":"#cocoa"},"north":{"uv":[11,4,15,9],"texture":"#cocoa"},"south":{"uv":[11,4,15,9],"texture":"#cocoa"},"west":{"uv":[11,4,15,9],"texture":"#cocoa"},"east":{"uv":[11,4,15,9],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"cocoa_stage1":{"ambientocclusion":false,"textures":{"particle":"block/cocoa_stage1","cocoa":"block/cocoa_stage1"},"elements":[{"from":[5,5,9],"to":[11,12,15],"faces":{"down":{"uv":[0,0,6,6],"texture":"#cocoa"},"up":{"uv":[0,0,6,6],"texture":"#cocoa"},"north":{"uv":[9,4,15,11],"texture":"#cocoa"},"south":{"uv":[9,4,15,11],"texture":"#cocoa"},"west":{"uv":[9,4,15,11],"texture":"#cocoa"},"east":{"uv":[9,4,15,11],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"cocoa_stage2":{"ambientocclusion":false,"textures":{"particle":"block/cocoa_stage2","cocoa":"block/cocoa_stage2"},"elements":[{"from":[4,3,7],"to":[12,12,15],"faces":{"down":{"uv":[0,0,7,7],"texture":"#cocoa"},"up":{"uv":[0,0,7,7],"texture":"#cocoa"},"north":{"uv":[7,4,15,13],"texture":"#cocoa"},"south":{"uv":[7,4,15,13],"texture":"#cocoa"},"west":{"uv":[7,4,15,13],"texture":"#cocoa"},"east":{"uv":[7,4,15,13],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"command_block":{"parent":"block/cube_directional","textures":{"particle":"block/command_block_back","down":"block/command_block_side","up":"block/command_block_side","north":"block/command_block_front","east":"block/command_block_side","south":"block/command_block_back","west":"block/command_block_side"}},"command_block_conditional":{"parent":"block/cube_directional","textures":{"particle":"block/command_block_back","down":"block/command_block_conditional","up":"block/command_block_conditional","north":"block/command_block_front","east":"block/command_block_conditional","south":"block/command_block_back","west":"block/command_block_conditional"}},"comparator":{"ambientocclusion":false,"textures":{"particle":"block/comparator","slab":"block/smooth_stone","top":"block/comparator","unlit":"block/redstone_torch_off","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,2,11],"to":[6,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[10,2,11],"to":[12,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,4,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,8],"texture":"#unlit"},"south":{"uv":[7,6,9,8],"texture":"#unlit"},"west":{"uv":[7,6,9,8],"texture":"#unlit"},"east":{"uv":[7,6,9,8],"texture":"#unlit"}}}]},"comparator_on":{"ambientocclusion":false,"textures":{"particle":"block/comparator_on","slab":"block/smooth_stone","top":"block/comparator_on","unlit":"block/redstone_torch_off","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,7,11],"to":[6,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[4,2,10],"to":[6,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[3,2,11],"to":[7,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[10,7,11],"to":[12,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[10,2,10],"to":[12,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[9,2,11],"to":[13,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,2,2],"to":[9,4,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,8],"texture":"#unlit"},"south":{"uv":[7,6,9,8],"texture":"#unlit"},"west":{"uv":[7,6,9,8],"texture":"#unlit"},"east":{"uv":[7,6,9,8],"texture":"#unlit"}}}]},"comparator_on_subtract":{"ambientocclusion":false,"textures":{"particle":"block/comparator_on","slab":"block/smooth_stone","top":"block/comparator_on","unlit":"block/redstone_torch_off","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,7,11],"to":[6,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[4,2,10],"to":[6,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[3,2,11],"to":[7,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[10,7,11],"to":[12,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[10,2,10],"to":[12,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[9,2,11],"to":[13,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,5,2],"to":[9,5,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,6,5],"faces":{"west":{"uv":[6,5,10,9],"texture":"#lit"},"east":{"uv":[6,5,10,9],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,6,4],"faces":{"north":{"uv":[6,5,10,9],"texture":"#lit"},"south":{"uv":[6,5,10,9],"texture":"#lit"}}}]},"comparator_subtract":{"ambientocclusion":false,"textures":{"particle":"block/comparator","slab":"block/smooth_stone","top":"block/comparator","unlit":"block/redstone_torch_off","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,2,11],"to":[6,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[10,2,11],"to":[12,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,5,2],"to":[9,5,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,6,5],"faces":{"west":{"uv":[6,5,10,9],"texture":"#lit"},"east":{"uv":[6,5,10,9],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,6,4],"faces":{"north":{"uv":[6,5,10,9],"texture":"#lit"},"south":{"uv":[6,5,10,9],"texture":"#lit"}}}]},"composter":{"parent":"block/block","textures":{"particle":"block/composter_side","top":"block/composter_top","bottom":"block/composter_bottom","side":"block/composter_side","inside":"block/composter_bottom"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,0,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,0,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,0,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}}]},"composter_contents1":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,3,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents2":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,5,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents3":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,7,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents4":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,9,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents5":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,11,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents6":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,13,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents7":{"textures":{"particle":"block/composter_compost","inside":"block/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,15,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents_ready":{"textures":{"particle":"block/composter_compost","inside":"block/composter_ready"},"elements":[{"from":[2,0,2],"to":[14,15,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"conduit":{"textures":{"particle":"block/conduit"}},"coral_fan":{"ambientocclusion":false,"textures":{"particle":"#fan"},"elements":[{"from":[8,0,0],"to":[24,0,16],"rotation":{"origin":[8,0,0],"axis":"z","angle":22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan","rotation":90},"down":{"uv":[0,16,16,0],"texture":"#fan","rotation":270}}},{"from":[-8,0,0],"to":[8,0,16],"rotation":{"origin":[8,0,0],"axis":"z","angle":-22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan","rotation":270},"down":{"uv":[0,16,16,0],"texture":"#fan","rotation":90}}},{"from":[0,0,8],"to":[16,0,24],"rotation":{"origin":[0,0,8],"axis":"x","angle":-22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[16,16,0,0],"texture":"#fan"},"down":{"uv":[16,0,0,16],"texture":"#fan"}}},{"from":[0,0,-8],"to":[16,0,8],"rotation":{"origin":[0,0,8],"axis":"x","angle":22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[0,16,16,0],"texture":"#fan"}}}]},"coral_wall_fan":{"ambientocclusion":false,"textures":{"particle":"#fan"},"elements":[{"from":[0,8,0],"to":[16,8,16],"rotation":{"origin":[8,8,14],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[16,16,0,0],"texture":"#fan"}}},{"from":[0,8,0],"to":[16,8,16],"rotation":{"origin":[8,8,14],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[16,16,0,0],"texture":"#fan"}}}]},"cornflower":{"parent":"block/cross","textures":{"cross":"block/cornflower"}},"cracked_stone_bricks":{"parent":"block/cube_all","textures":{"all":"block/cracked_stone_bricks"}},"crafting_table":{"parent":"block/cube","textures":{"particle":"block/crafting_table_front","down":"block/oak_planks","up":"block/crafting_table_top","north":"block/crafting_table_front","east":"block/crafting_table_side","south":"block/crafting_table_side","west":"block/crafting_table_front"}},"crop":{"ambientocclusion":false,"textures":{"particle":"#crop"},"elements":[{"from":[4,-1,0],"to":[4,15,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#crop"},"east":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[12,-1,0],"to":[12,15,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#crop"},"east":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[0,-1,4],"to":[16,15,4],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#crop"},"south":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[0,-1,12],"to":[16,15,12],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#crop"},"south":{"uv":[0,0,16,16],"texture":"#crop"}}}]},"cross":{"ambientocclusion":false,"textures":{"particle":"#cross"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#cross"},"south":{"uv":[0,0,16,16],"texture":"#cross"}}},{"from":[8,0,0.8],"to":[8,16,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#cross"},"east":{"uv":[0,0,16,16],"texture":"#cross"}}}]},"cube":{"parent":"block/block","elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west"},"east":{"texture":"#east","cullface":"east"}}}]},"cube_all":{"parent":"block/cube","textures":{"particle":"#all","down":"#all","up":"#all","north":"#all","east":"#all","south":"#all","west":"#all"}},"cube_bottom_top":{"parent":"block/cube","textures":{"particle":"#side","down":"#bottom","up":"#top","north":"#side","east":"#side","south":"#side","west":"#side"}},"cube_column":{"parent":"block/cube","textures":{"particle":"#side","down":"#end","up":"#end","north":"#side","east":"#side","south":"#side","west":"#side"}},"cube_directional":{"parent":"block/block","elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down","rotation":180},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west","rotation":270},"east":{"texture":"#east","cullface":"east","rotation":90}}}]},"cube_mirrored":{"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[16,0,0,16],"texture":"#down","cullface":"down"},"up":{"uv":[16,0,0,16],"texture":"#up","cullface":"up"},"north":{"uv":[16,0,0,16],"texture":"#north","cullface":"north"},"south":{"uv":[16,0,0,16],"texture":"#south","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#west","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#east","cullface":"east"}}}]},"cube_mirrored_all":{"parent":"block/cube_mirrored","textures":{"particle":"#all","down":"#all","up":"#all","north":"#all","east":"#all","south":"#all","west":"#all"}},"cube_top":{"parent":"block/cube","textures":{"particle":"#side","down":"#side","up":"#top","north":"#side","east":"#side","south":"#side","west":"#side"}},"cut_red_sandstone":{"parent":"block/cube_column","textures":{"end":"block/red_sandstone_top","side":"block/cut_red_sandstone"}},"cut_red_sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/cut_red_sandstone"}},"cut_red_sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/cut_red_sandstone"}},"cut_sandstone":{"parent":"block/cube_column","textures":{"end":"block/sandstone_top","side":"block/cut_sandstone"}},"cut_sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/cut_sandstone"}},"cut_sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/cut_sandstone"}},"cyan_carpet":{"parent":"block/carpet","textures":{"particle":"block/cyan_wool","wool":"block/cyan_wool"}},"cyan_concrete":{"parent":"block/cube_all","textures":{"all":"block/cyan_concrete"}},"cyan_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/cyan_concrete_powder"}},"cyan_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/cyan_glazed_terracotta","pattern":"block/cyan_glazed_terracotta"}},"cyan_shulker_box":{"textures":{"particle":"block/cyan_shulker_box"}},"cyan_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/cyan_stained_glass"}},"cyan_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/cyan_stained_glass"}},"cyan_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/cyan_stained_glass"}},"cyan_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/cyan_stained_glass_pane_top","pane":"block/cyan_stained_glass"}},"cyan_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/cyan_stained_glass_pane_top","pane":"block/cyan_stained_glass"}},"cyan_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/cyan_stained_glass_pane_top","pane":"block/cyan_stained_glass"}},"cyan_terracotta":{"parent":"block/cube_all","textures":{"all":"block/cyan_terracotta"}},"cyan_wool":{"parent":"block/cube_all","textures":{"all":"block/cyan_wool"}},"damaged_anvil":{"parent":"block/anvil","textures":{"top":"block/damaged_anvil_top"}},"dandelion":{"parent":"block/cross","textures":{"cross":"block/dandelion"}},"dark_oak_button":{"parent":"block/button","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/dark_oak_door_bottom","top":"block/dark_oak_door_top"}},"dark_oak_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/dark_oak_door_bottom","top":"block/dark_oak_door_top"}},"dark_oak_door_top":{"parent":"block/door_top","textures":{"bottom":"block/dark_oak_door_bottom","top":"block/dark_oak_door_top"}},"dark_oak_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/dark_oak_door_bottom","top":"block/dark_oak_door_top"}},"dark_oak_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_leaves":{"parent":"block/leaves","textures":{"all":"block/dark_oak_leaves"}},"dark_oak_log":{"parent":"block/cube_column","textures":{"end":"block/dark_oak_log_top","side":"block/dark_oak_log"}},"dark_oak_planks":{"parent":"block/cube_all","textures":{"all":"block/dark_oak_planks"}},"dark_oak_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/dark_oak_planks"}},"dark_oak_sapling":{"parent":"block/cross","textures":{"cross":"block/dark_oak_sapling"}},"dark_oak_sign":{"textures":{"particle":"block/dark_oak_planks"}},"dark_oak_slab":{"parent":"block/slab","textures":{"bottom":"block/dark_oak_planks","top":"block/dark_oak_planks","side":"block/dark_oak_planks"}},"dark_oak_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/dark_oak_planks","top":"block/dark_oak_planks","side":"block/dark_oak_planks"}},"dark_oak_stairs":{"parent":"block/stairs","textures":{"bottom":"block/dark_oak_planks","top":"block/dark_oak_planks","side":"block/dark_oak_planks"}},"dark_oak_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/dark_oak_planks","top":"block/dark_oak_planks","side":"block/dark_oak_planks"}},"dark_oak_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/dark_oak_planks","top":"block/dark_oak_planks","side":"block/dark_oak_planks"}},"dark_oak_trapdoor_bottom":{"parent":"block/template_trapdoor_bottom","textures":{"texture":"block/dark_oak_trapdoor"}},"dark_oak_trapdoor_open":{"parent":"block/template_trapdoor_open","textures":{"texture":"block/dark_oak_trapdoor"}},"dark_oak_trapdoor_top":{"parent":"block/template_trapdoor_top","textures":{"texture":"block/dark_oak_trapdoor"}},"dark_oak_wood":{"parent":"block/cube_column","textures":{"end":"block/dark_oak_log","side":"block/dark_oak_log"}},"dark_prismarine":{"parent":"block/cube_all","textures":{"all":"block/dark_prismarine"}},"dark_prismarine_slab":{"parent":"block/slab","textures":{"bottom":"block/dark_prismarine","top":"block/dark_prismarine","side":"block/dark_prismarine"}},"dark_prismarine_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/dark_prismarine","top":"block/dark_prismarine","side":"block/dark_prismarine"}},"dark_prismarine_stairs":{"parent":"block/stairs","textures":{"bottom":"block/dark_prismarine","top":"block/dark_prismarine","side":"block/dark_prismarine"}},"dark_prismarine_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/dark_prismarine","top":"block/dark_prismarine","side":"block/dark_prismarine"}},"dark_prismarine_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/dark_prismarine","top":"block/dark_prismarine","side":"block/dark_prismarine"}},"daylight_detector":{"parent":"block/thin_block","textures":{"particle":"block/daylight_detector_top","top":"block/daylight_detector_top","side":"block/daylight_detector_side"},"elements":[{"from":[0,0,0],"to":[16,6,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#side","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,10,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,10,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,10,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,10,16,16],"texture":"#side","cullface":"east"}}}]},"daylight_detector_inverted":{"textures":{"particle":"block/daylight_detector_inverted_top","top":"block/daylight_detector_inverted_top","side":"block/daylight_detector_side"},"elements":[{"from":[0,0,0],"to":[16,6,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#side","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,10,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,10,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,10,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,10,16,16],"texture":"#side","cullface":"east"}}}]},"dead_brain_coral":{"parent":"block/cross","textures":{"cross":"block/dead_brain_coral"}},"dead_brain_coral_block":{"parent":"block/cube_all","textures":{"all":"block/dead_brain_coral_block"}},"dead_brain_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/dead_brain_coral_fan"}},"dead_brain_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/dead_brain_coral_fan"}},"dead_bubble_coral":{"parent":"block/cross","textures":{"cross":"block/dead_bubble_coral"}},"dead_bubble_coral_block":{"parent":"block/cube_all","textures":{"all":"block/dead_bubble_coral_block"}},"dead_bubble_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/dead_bubble_coral_fan"}},"dead_bubble_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/dead_bubble_coral_fan"}},"dead_bush":{"parent":"block/cross","textures":{"cross":"block/dead_bush"}},"dead_fire_coral":{"parent":"block/cross","textures":{"cross":"block/dead_fire_coral"}},"dead_fire_coral_block":{"parent":"block/cube_all","textures":{"all":"block/dead_fire_coral_block"}},"dead_fire_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/dead_fire_coral_fan"}},"dead_fire_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/dead_fire_coral_fan"}},"dead_horn_coral":{"parent":"block/cross","textures":{"cross":"block/dead_horn_coral"}},"dead_horn_coral_block":{"parent":"block/cube_all","textures":{"all":"block/dead_horn_coral_block"}},"dead_horn_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/dead_horn_coral_fan"}},"dead_horn_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/dead_horn_coral_fan"}},"dead_sea_pickle":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[6,0,6],"to":[10,6,10],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,6],"to":[10,5.95,10],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"dead_tube_coral":{"parent":"block/cross","textures":{"cross":"block/dead_tube_coral"}},"dead_tube_coral_block":{"parent":"block/cube_all","textures":{"all":"block/dead_tube_coral_block"}},"dead_tube_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/dead_tube_coral_fan"}},"dead_tube_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/dead_tube_coral_fan"}},"detector_rail":{"parent":"block/rail_flat","textures":{"rail":"block/detector_rail"}},"detector_rail_on":{"parent":"block/rail_flat","textures":{"rail":"block/detector_rail_on"}},"detector_rail_on_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/detector_rail_on"}},"detector_rail_on_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/detector_rail_on"}},"detector_rail_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/detector_rail"}},"detector_rail_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/detector_rail"}},"diamond_block":{"parent":"block/cube_all","textures":{"all":"block/diamond_block"}},"diamond_ore":{"parent":"block/cube_all","textures":{"all":"block/diamond_ore"}},"diorite":{"parent":"block/cube_all","textures":{"all":"block/diorite"}},"diorite_slab":{"parent":"block/slab","textures":{"bottom":"block/diorite","top":"block/diorite","side":"block/diorite"}},"diorite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/diorite","top":"block/diorite","side":"block/diorite"}},"diorite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/diorite","top":"block/diorite","side":"block/diorite"}},"diorite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/diorite","top":"block/diorite","side":"block/diorite"}},"diorite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/diorite","top":"block/diorite","side":"block/diorite"}},"diorite_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/diorite"}},"diorite_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/diorite"}},"diorite_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/diorite"}},"dirt":{"parent":"block/cube_all","textures":{"all":"block/dirt"}},"dispenser":{"parent":"block/orientable","textures":{"top":"block/furnace_top","front":"block/dispenser_front","side":"block/furnace_side"}},"dispenser_vertical":{"parent":"block/orientable_vertical","textures":{"front":"block/dispenser_front_vertical","side":"block/furnace_top"}},"door_bottom":{"ambientocclusion":false,"textures":{"particle":"#bottom"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"down":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"down"},"north":{"uv":[3,0,0,16],"texture":"#bottom","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#bottom"}}}]},"door_bottom_rh":{"ambientocclusion":false,"textures":{"particle":"#bottom"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"down":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"down"},"north":{"uv":[3,0,0,16],"texture":"#bottom","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#bottom","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#bottom"}}}]},"door_top":{"ambientocclusion":false,"textures":{"particle":"#top"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"up":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"up"},"north":{"uv":[3,0,0,16],"texture":"#top","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#top","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#top","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#top"}}}]},"door_top_rh":{"ambientocclusion":false,"textures":{"particle":"#top"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"up":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"up"},"north":{"uv":[3,0,0,16],"texture":"#top","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#top","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#top","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#top"}}}]},"dragon_egg":{"parent":"block/block","ambientocclusion":false,"textures":{"particle":"block/dragon_egg","all":"block/dragon_egg"},"elements":[{"from":[6,15,6],"to":[10,16,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#all"},"up":{"uv":[6,6,10,10],"texture":"#all"},"north":{"uv":[6,15,10,16],"texture":"#all"},"south":{"uv":[6,15,10,16],"texture":"#all"},"west":{"uv":[6,15,10,16],"texture":"#all"},"east":{"uv":[6,15,10,16],"texture":"#all"}}},{"from":[5,14,5],"to":[11,15,11],"faces":{"down":{"uv":[5,5,11,11],"texture":"#all"},"up":{"uv":[5,5,11,11],"texture":"#all"},"north":{"uv":[5,14,11,15],"texture":"#all"},"south":{"uv":[5,14,11,15],"texture":"#all"},"west":{"uv":[5,14,11,15],"texture":"#all"},"east":{"uv":[5,14,11,15],"texture":"#all"}}},{"from":[5,13,5],"to":[11,14,11],"faces":{"down":{"uv":[4,4,12,12],"texture":"#all"},"up":{"uv":[4,4,12,12],"texture":"#all"},"north":{"uv":[4,13,12,14],"texture":"#all"},"south":{"uv":[4,13,12,14],"texture":"#all"},"west":{"uv":[4,13,12,14],"texture":"#all"},"east":{"uv":[4,13,12,14],"texture":"#all"}}},{"from":[3,11,3],"to":[13,13,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#all"},"up":{"uv":[3,3,13,13],"texture":"#all"},"north":{"uv":[3,11,13,13],"texture":"#all"},"south":{"uv":[3,11,13,13],"texture":"#all"},"west":{"uv":[3,11,13,13],"texture":"#all"},"east":{"uv":[3,11,13,13],"texture":"#all"}}},{"from":[2,8,2],"to":[14,11,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#all"},"up":{"uv":[2,2,14,14],"texture":"#all"},"north":{"uv":[2,8,14,11],"texture":"#all"},"south":{"uv":[2,8,14,11],"texture":"#all"},"west":{"uv":[2,8,14,11],"texture":"#all"},"east":{"uv":[2,8,14,11],"texture":"#all"}}},{"from":[1,3,1],"to":[15,8,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#all"},"up":{"uv":[1,1,15,15],"texture":"#all"},"north":{"uv":[1,3,15,8],"texture":"#all"},"south":{"uv":[1,3,15,8],"texture":"#all"},"west":{"uv":[1,3,15,8],"texture":"#all"},"east":{"uv":[1,3,15,8],"texture":"#all"}}},{"from":[2,1,2],"to":[14,3,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#all"},"up":{"uv":[2,2,14,14],"texture":"#all"},"north":{"uv":[2,1,14,3],"texture":"#all"},"south":{"uv":[2,1,14,3],"texture":"#all"},"west":{"uv":[2,1,14,3],"texture":"#all"},"east":{"uv":[2,1,14,3],"texture":"#all"}}},{"from":[3,0,3],"to":[13,1,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#all"},"up":{"uv":[3,3,13,13],"texture":"#all"},"north":{"uv":[3,0,13,1],"texture":"#all"},"south":{"uv":[3,0,13,1],"texture":"#all"},"west":{"uv":[3,0,13,1],"texture":"#all"},"east":{"uv":[3,0,13,1],"texture":"#all"}}}]},"dried_kelp_block":{"parent":"block/block","textures":{"particle":"block/dried_kelp_side","down":"block/dried_kelp_bottom","up":"block/dried_kelp_top","north":"block/dried_kelp_side","east":"block/dried_kelp_side","south":"block/dried_kelp_side","west":"block/dried_kelp_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"uv":[16,0,0,16],"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#east","cullface":"east"}}}]},"dropper":{"parent":"block/orientable","textures":{"top":"block/furnace_top","front":"block/dropper_front","side":"block/furnace_side"}},"dropper_vertical":{"parent":"block/orientable_vertical","textures":{"front":"block/dropper_front_vertical","side":"block/furnace_top"}},"emerald_block":{"parent":"block/cube_all","textures":{"all":"block/emerald_block"}},"emerald_ore":{"parent":"block/cube_all","textures":{"all":"block/emerald_ore"}},"enchanting_table":{"parent":"block/block","textures":{"particle":"block/enchanting_table_bottom","bottom":"block/enchanting_table_bottom","top":"block/enchanting_table_top","side":"block/enchanting_table_side"},"elements":[{"from":[0,0,0],"to":[16,12,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,4,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,4,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,4,16,16],"texture":"#side","cullface":"east"}}}]},"ender_chest":{"textures":{"particle":"block/obsidian"}},"end_portal":{"textures":{"particle":"block/obsidian"}},"end_portal_frame":{"parent":"block/block","textures":{"particle":"block/end_portal_frame_side","bottom":"block/end_stone","top":"block/end_portal_frame_top","side":"block/end_portal_frame_side"},"elements":[{"from":[0,0,0],"to":[16,13,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,3,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,3,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,3,16,16],"texture":"#side","cullface":"east"}}}]},"end_portal_frame_filled":{"textures":{"particle":"block/end_portal_frame_side","bottom":"block/end_stone","top":"block/end_portal_frame_top","side":"block/end_portal_frame_side","eye":"block/end_portal_frame_eye"},"elements":[{"from":[0,0,0],"to":[16,13,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,3,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,3,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,3,16,16],"texture":"#side","cullface":"east"}}},{"from":[4,13,4],"to":[12,16,12],"faces":{"up":{"uv":[4,4,12,12],"texture":"#eye","cullface":"up"},"north":{"uv":[4,0,12,3],"texture":"#eye"},"south":{"uv":[4,0,12,3],"texture":"#eye"},"west":{"uv":[4,0,12,3],"texture":"#eye"},"east":{"uv":[4,0,12,3],"texture":"#eye"}}}]},"end_rod":{"parent":"block/block","display":{"head":{"rotation":[-60,0,0],"translation":[0,5,-9],"scale":[1,1,1]},"thirdperson_righthand":{"rotation":[0,0,0],"translation":[0,0,0],"scale":[0.375,0.375,0.375]}},"ambientocclusion":false,"textures":{"end_rod":"block/end_rod","particle":"block/end_rod"},"elements":[{"from":[6,0,6],"to":[10,1,10],"faces":{"down":{"uv":[6,6,2,2],"texture":"#end_rod","cullface":"down"},"up":{"uv":[2,2,6,6],"texture":"#end_rod"},"north":{"uv":[2,6,6,7],"texture":"#end_rod"},"south":{"uv":[2,6,6,7],"texture":"#end_rod"},"west":{"uv":[2,6,6,7],"texture":"#end_rod"},"east":{"uv":[2,6,6,7],"texture":"#end_rod"}}},{"from":[7,1,7],"to":[9,16,9],"faces":{"up":{"uv":[2,0,4,2],"texture":"#end_rod","cullface":"up"},"north":{"uv":[0,0,2,15],"texture":"#end_rod"},"south":{"uv":[0,0,2,15],"texture":"#end_rod"},"west":{"uv":[0,0,2,15],"texture":"#end_rod"},"east":{"uv":[0,0,2,15],"texture":"#end_rod"}}}]},"end_stone":{"parent":"block/cube_all","textures":{"all":"block/end_stone"}},"end_stone_bricks":{"parent":"block/cube_all","textures":{"all":"block/end_stone_bricks"}},"end_stone_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/end_stone_bricks","top":"block/end_stone_bricks","side":"block/end_stone_bricks"}},"end_stone_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/end_stone_bricks","top":"block/end_stone_bricks","side":"block/end_stone_bricks"}},"end_stone_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/end_stone_bricks","top":"block/end_stone_bricks","side":"block/end_stone_bricks"}},"end_stone_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/end_stone_bricks","top":"block/end_stone_bricks","side":"block/end_stone_bricks"}},"end_stone_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/end_stone_bricks","top":"block/end_stone_bricks","side":"block/end_stone_bricks"}},"end_stone_brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/end_stone_bricks"}},"end_stone_brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/end_stone_bricks"}},"end_stone_brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/end_stone_bricks"}},"farmland":{"parent":"block/template_farmland","textures":{"particle":"block/dirt","dirt":"block/dirt","top":"block/farmland"}},"farmland_moist":{"parent":"block/template_farmland","textures":{"particle":"block/dirt","dirt":"block/dirt","top":"block/farmland_moist"}},"fence_inventory":{"parent":"block/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"from":[6,0,0],"to":[10,16,4],"faces":{"down":{"uv":[6,0,10,4],"texture":"#texture","cullface":"down"},"up":{"uv":[6,0,10,4],"texture":"#texture"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[0,0,4,16],"texture":"#texture"},"east":{"uv":[0,0,4,16],"texture":"#texture"}},"__comment":"Left post"},{"from":[6,0,12],"to":[10,16,16],"faces":{"down":{"uv":[6,12,10,16],"texture":"#texture","cullface":"down"},"up":{"uv":[6,12,10,16],"texture":"#texture"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[12,0,16,16],"texture":"#texture"},"east":{"uv":[12,0,16,16],"texture":"#texture"}},"__comment":"Right post"},{"from":[7,13,-2],"to":[9,15,18],"faces":{"down":{"uv":[7,0,9,16],"texture":"#texture"},"up":{"uv":[7,0,9,16],"texture":"#texture"},"north":{"uv":[7,1,9,3],"texture":"#texture"},"south":{"uv":[7,1,9,3],"texture":"#texture"},"west":{"uv":[0,1,16,3],"texture":"#texture"},"east":{"uv":[0,1,16,3],"texture":"#texture"}},"__comment":"Top bar"},{"from":[7,5,-2],"to":[9,7,18],"faces":{"down":{"uv":[7,0,9,16],"texture":"#texture"},"up":{"uv":[7,0,9,16],"texture":"#texture"},"north":{"uv":[7,9,9,11],"texture":"#texture"},"south":{"uv":[7,9,9,11],"texture":"#texture"},"west":{"uv":[0,9,16,11],"texture":"#texture"},"east":{"uv":[0,9,16,11],"texture":"#texture"}},"__comment":"Lower bar"}]},"fence_post":{"textures":{"particle":"#texture"},"elements":[{"from":[6,0,6],"to":[10,16,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#texture","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#texture","cullface":"up"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[6,0,10,16],"texture":"#texture"},"east":{"uv":[6,0,10,16],"texture":"#texture"}},"__comment":"Center post"}]},"fence_side":{"textures":{"particle":"#texture"},"elements":[{"from":[7,12,0],"to":[9,15,9],"faces":{"down":{"uv":[7,0,9,9],"texture":"#texture"},"up":{"uv":[7,0,9,9],"texture":"#texture"},"north":{"uv":[7,1,9,4],"texture":"#texture","cullface":"north"},"west":{"uv":[0,1,9,4],"texture":"#texture"},"east":{"uv":[0,1,9,4],"texture":"#texture"}},"__comment":"top bar"},{"from":[7,6,0],"to":[9,9,9],"faces":{"down":{"uv":[7,0,9,9],"texture":"#texture"},"up":{"uv":[7,0,9,9],"texture":"#texture"},"north":{"uv":[7,7,9,10],"texture":"#texture","cullface":"north"},"west":{"uv":[0,7,9,10],"texture":"#texture"},"east":{"uv":[0,7,9,10],"texture":"#texture"}},"__comment":"lower bar"}]},"fern":{"parent":"block/tinted_cross","textures":{"cross":"block/fern"}},"fire_coral":{"parent":"block/cross","textures":{"cross":"block/fire_coral"}},"fire_coral_block":{"parent":"block/cube_all","textures":{"all":"block/fire_coral_block"}},"fire_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/fire_coral_fan"}},"fire_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/fire_coral_fan"}},"fire_floor":{"ambientocclusion":false,"elements":[{"from":[0,0,8.8],"to":[16,22.4,8.8],"rotation":{"origin":[8,8,8],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[0,0,7.2],"to":[16,22.4,7.2],"rotation":{"origin":[8,8,8],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[8.8,0,0],"to":[8.8,22.4,16],"rotation":{"origin":[8,8,8],"axis":"z","angle":-22.5,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[7.2,0,0],"to":[7.2,22.4,16],"rotation":{"origin":[8,8,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"east":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"fire_floor0":{"parent":"block/fire_floor","textures":{"particle":"block/fire_0","fire":"block/fire_0"}},"fire_floor1":{"parent":"block/fire_floor","textures":{"particle":"block/fire_1","fire":"block/fire_1"}},"fire_side":{"ambientocclusion":false,"elements":[{"from":[0,0,0.01],"to":[16,22.4,0.01],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#fire"},"north":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"fire_side0":{"parent":"block/fire_side","textures":{"particle":"block/fire_0","fire":"block/fire_0"}},"fire_side1":{"parent":"block/fire_side","textures":{"particle":"block/fire_1","fire":"block/fire_1"}},"fire_side_alt":{"ambientocclusion":false,"elements":[{"from":[0,0,0.01],"to":[16,22.4,0.01],"shade":false,"faces":{"south":{"uv":[16,0,0,16],"texture":"#fire"},"north":{"uv":[16,0,0,16],"texture":"#fire"}}}]},"fire_side_alt0":{"parent":"block/fire_side_alt","textures":{"particle":"block/fire_0","fire":"block/fire_0"}},"fire_side_alt1":{"parent":"block/fire_side_alt","textures":{"particle":"block/fire_1","fire":"block/fire_1"}},"fire_up":{"ambientocclusion":false,"elements":[{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[16,16,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":270}}},{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[0,16,8],"axis":"z","angle":-22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":90}}}]},"fire_up0":{"parent":"block/fire_up","textures":{"particle":"block/fire_0","fire":"block/fire_0"}},"fire_up1":{"parent":"block/fire_up","textures":{"particle":"block/fire_1","fire":"block/fire_1"}},"fire_up_alt":{"ambientocclusion":false,"elements":[{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[8,16,16],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":180}}},{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[8,16,0],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"fire_up_alt0":{"parent":"block/fire_up_alt","textures":{"particle":"block/fire_0","fire":"block/fire_0"}},"fire_up_alt1":{"parent":"block/fire_up_alt","textures":{"particle":"block/fire_1","fire":"block/fire_1"}},"fletching_table":{"parent":"block/cube","textures":{"particle":"block/fletching_table_front","down":"block/birch_planks","up":"block/fletching_table_top","north":"block/fletching_table_front","east":"block/fletching_table_side","south":"block/fletching_table_front","west":"block/fletching_table_side"}},"flower_pot":{"ambientocclusion":false,"textures":{"particle":"block/flower_pot","flowerpot":"block/flower_pot","dirt":"block/dirt"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}}]},"flower_pot_cross":{"ambientocclusion":false,"textures":{"particle":"block/flower_pot","flowerpot":"block/flower_pot","dirt":"block/dirt"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[2.6,4,8],"to":[13.4,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#plant"},"south":{"uv":[0,0,16,16],"texture":"#plant"}}},{"from":[8,4,2.6],"to":[8,16,13.4],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#plant"},"east":{"uv":[0,0,16,16],"texture":"#plant"}}}]},"four_dead_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[2,0,2],"to":[6,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[2,5.95,2],"to":[6,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,10],"to":[13,4,14],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[9,3.95,10],"to":[13,3.95,14],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,2],"to":[13,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[9,5.95,2],"to":[13,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,8],"to":[6,7,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,12],"texture":"#all"},"south":{"uv":[0,5,4,12],"texture":"#all"},"west":{"uv":[8,5,12,12],"texture":"#all"},"east":{"uv":[12,5,16,12],"texture":"#all"}}},{"from":[2,6.95,8],"to":[6,6.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"four_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[2,0,2],"to":[6,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[2,5.95,2],"to":[6,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,10],"to":[13,4,14],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[9,3.95,10],"to":[13,3.95,14],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,2],"to":[13,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[9,5.95,2],"to":[13,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,8],"to":[6,7,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,12],"texture":"#all"},"south":{"uv":[0,5,4,12],"texture":"#all"},"west":{"uv":[8,5,12,12],"texture":"#all"},"east":{"uv":[12,5,16,12],"texture":"#all"}}},{"from":[2,6.95,8],"to":[6,6.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[3.5,5.2,4],"to":[4.5,8.7,4],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,5.2,3.5],"to":[4,8.7,4.5],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10.5,3.2,12],"to":[11.5,6.7,12],"rotation":{"origin":[11,8,12],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[11,3.2,11.5],"to":[11,6.7,12.5],"rotation":{"origin":[11,8,12],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10.5,5.2,4],"to":[11.5,8.7,4],"rotation":{"origin":[11,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[11,5.2,3.5],"to":[11,8.7,4.5],"rotation":{"origin":[11,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[3.5,6.2,10],"to":[4.5,9.7,10],"rotation":{"origin":[4,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,6.2,9.5],"to":[4,9.7,10.5],"rotation":{"origin":[4,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"four_slightly_cracked_turtle_eggs":{"parent":"block/four_turtle_eggs","textures":{"particle":"block/turtle_egg_slightly_cracked","all":"block/turtle_egg_slightly_cracked"}},"four_turtle_eggs":{"parent":"block/block","textures":{"particle":"block/turtle_egg","all":"block/turtle_egg"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}},{"from":[11,0,7],"to":[14,4,10],"faces":{"down":{"uv":[5,0,8,3],"texture":"#all","cullface":"down"},"up":{"uv":[5,0,8,3],"texture":"#all"},"north":{"uv":[8,3,11,7],"texture":"#all"},"south":{"uv":[8,3,11,7],"texture":"#all"},"west":{"uv":[8,3,11,7],"texture":"#all"},"east":{"uv":[8,3,11,7],"texture":"#all"}}},{"from":[6,0,9],"to":[10,4,13],"faces":{"down":{"uv":[0,11,4,15],"texture":"#all"},"up":{"uv":[0,11,4,15],"texture":"#all"},"north":{"uv":[4,11,8,15],"texture":"#all"},"south":{"uv":[4,11,8,15],"texture":"#all"},"west":{"uv":[4,11,8,15],"texture":"#all"},"east":{"uv":[4,11,8,15],"texture":"#all"}}}]},"four_very_cracked_turtle_eggs":{"parent":"block/four_turtle_eggs","textures":{"all":"block/turtle_egg_very_cracked"}},"frosted_ice_0":{"parent":"block/cube_all","textures":{"all":"block/frosted_ice_0"}},"frosted_ice_1":{"parent":"block/cube_all","textures":{"all":"block/frosted_ice_1"}},"frosted_ice_2":{"parent":"block/cube_all","textures":{"all":"block/frosted_ice_2"}},"frosted_ice_3":{"parent":"block/cube_all","textures":{"all":"block/frosted_ice_3"}},"furnace":{"parent":"block/orientable","textures":{"top":"block/furnace_top","front":"block/furnace_front","side":"block/furnace_side"}},"furnace_on":{"parent":"block/orientable","textures":{"top":"block/furnace_top","front":"block/furnace_front_on","side":"block/furnace_side"}},"glass":{"parent":"block/cube_all","textures":{"all":"block/glass"}},"glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/glass"}},"glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/glass"}},"glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/glass_pane_top","pane":"block/glass"}},"glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/glass_pane_top","pane":"block/glass"}},"glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/glass_pane_top","pane":"block/glass"}},"glowstone":{"parent":"block/cube_all","textures":{"all":"block/glowstone"}},"gold_block":{"parent":"block/cube_all","textures":{"all":"block/gold_block"}},"gold_ore":{"parent":"block/cube_all","textures":{"all":"block/gold_ore"}},"granite":{"parent":"block/cube_all","textures":{"all":"block/granite"}},"granite_slab":{"parent":"block/slab","textures":{"bottom":"block/granite","top":"block/granite","side":"block/granite"}},"granite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/granite","top":"block/granite","side":"block/granite"}},"granite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/granite","top":"block/granite","side":"block/granite"}},"granite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/granite","top":"block/granite","side":"block/granite"}},"granite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/granite","top":"block/granite","side":"block/granite"}},"granite_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/granite"}},"granite_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/granite"}},"granite_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/granite"}},"grass":{"parent":"block/tinted_cross","textures":{"cross":"block/grass"}},"grass_block":{"parent":"block/block","textures":{"particle":"block/dirt","bottom":"block/dirt","top":"block/grass_block_top","side":"block/grass_block_side","overlay":"block/grass_block_side_overlay"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up","tintindex":0},"north":{"uv":[0,0,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","cullface":"east"}}},{"from":[0,0,0],"to":[16,16,16],"faces":{"north":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"east"}}}]},"grass_block_snow":{"parent":"block/cube_bottom_top","textures":{"particle":"block/dirt","bottom":"block/dirt","top":"block/grass_block_top","side":"block/grass_block_snow"}},"grass_path":{"parent":"block/block","textures":{"particle":"block/dirt","top":"block/grass_path_top","side":"block/grass_path_side","bottom":"block/dirt"},"elements":[{"from":[0,0,0],"to":[16,15,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,1,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,1,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,1,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,1,16,16],"texture":"#side","cullface":"east"}}}]},"gravel":{"parent":"block/cube_all","textures":{"all":"block/gravel"}},"gray_carpet":{"parent":"block/carpet","textures":{"particle":"block/gray_wool","wool":"block/gray_wool"}},"gray_concrete":{"parent":"block/cube_all","textures":{"all":"block/gray_concrete"}},"gray_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/gray_concrete_powder"}},"gray_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/gray_glazed_terracotta","pattern":"block/gray_glazed_terracotta"}},"gray_shulker_box":{"textures":{"particle":"block/gray_shulker_box"}},"gray_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/gray_stained_glass"}},"gray_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/gray_stained_glass"}},"gray_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/gray_stained_glass"}},"gray_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/gray_stained_glass_pane_top","pane":"block/gray_stained_glass"}},"gray_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/gray_stained_glass_pane_top","pane":"block/gray_stained_glass"}},"gray_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/gray_stained_glass_pane_top","pane":"block/gray_stained_glass"}},"gray_terracotta":{"parent":"block/cube_all","textures":{"all":"block/gray_terracotta"}},"gray_wool":{"parent":"block/cube_all","textures":{"all":"block/gray_wool"}},"green_carpet":{"parent":"block/carpet","textures":{"particle":"block/green_wool","wool":"block/green_wool"}},"green_concrete":{"parent":"block/cube_all","textures":{"all":"block/green_concrete"}},"green_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/green_concrete_powder"}},"green_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/green_glazed_terracotta","pattern":"block/green_glazed_terracotta"}},"green_shulker_box":{"textures":{"particle":"block/green_shulker_box"}},"green_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/green_stained_glass"}},"green_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/green_stained_glass"}},"green_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/green_stained_glass"}},"green_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/green_stained_glass_pane_top","pane":"block/green_stained_glass"}},"green_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/green_stained_glass_pane_top","pane":"block/green_stained_glass"}},"green_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/green_stained_glass_pane_top","pane":"block/green_stained_glass"}},"green_terracotta":{"parent":"block/cube_all","textures":{"all":"block/green_terracotta"}},"green_wool":{"parent":"block/cube_all","textures":{"all":"block/green_wool"}},"grindstone":{"parent":"block/block","textures":{"pivot":"block/grindstone_pivot","round":"block/grindstone_round","side":"block/grindstone_side","particle":"block/grindstone_side","leg":"block/dark_oak_log"},"elements":[{"from":[12,0,6],"to":[14,7,10],"faces":{"north":{"uv":[2,9,4,16],"texture":"#leg"},"east":{"uv":[10,16,6,9],"texture":"#leg"},"south":{"uv":[12,9,14,16],"texture":"#leg"},"west":{"uv":[6,9,10,16],"texture":"#leg"},"down":{"uv":[12,6,14,10],"texture":"#leg","cullface":"down"}}},{"from":[2,0,6],"to":[4,7,10],"faces":{"north":{"uv":[12,9,14,16],"texture":"#leg"},"east":{"uv":[10,16,6,9],"texture":"#leg"},"south":{"uv":[2,9,4,16],"texture":"#leg"},"west":{"uv":[6,9,10,16],"texture":"#leg"},"down":{"uv":[2,6,4,10],"texture":"#leg","cullface":"down"}}},{"from":[12,7,5],"to":[14,13,11],"faces":{"north":{"uv":[6,0,8,6],"texture":"#pivot"},"east":{"uv":[0,0,6,6],"texture":"#pivot"},"south":{"uv":[6,0,8,6],"texture":"#pivot"},"up":{"uv":[8,0,10,6],"texture":"#pivot"},"down":{"uv":[8,0,10,6],"texture":"#pivot"}}},{"from":[2,7,5],"to":[4,13,11],"faces":{"north":{"uv":[6,0,8,6],"texture":"#pivot"},"south":{"uv":[6,0,8,6],"texture":"#pivot"},"west":{"uv":[0,0,6,6],"texture":"#pivot"},"up":{"uv":[8,0,10,6],"texture":"#pivot"},"down":{"uv":[8,0,10,6],"texture":"#pivot"}}},{"from":[4,4,2],"to":[12,16,14],"faces":{"north":{"uv":[0,0,8,12],"texture":"#round"},"east":{"uv":[0,0,12,12],"texture":"#side"},"south":{"uv":[0,0,8,12],"texture":"#round"},"west":{"uv":[0,0,12,12],"texture":"#side"},"up":{"uv":[0,0,8,12],"texture":"#round","cullface":"up"},"down":{"uv":[0,0,8,12],"texture":"#round"}}}]},"hanging_lantern":{"parent":"block/block","textures":{"particle":"block/lantern","all":"block/lantern"},"elements":[{"from":[5,1,5],"to":[11,8,11],"faces":{"down":{"uv":[0,9,6,15],"texture":"#all"},"up":{"uv":[0,9,6,15],"texture":"#all"},"north":{"uv":[0,2,6,9],"texture":"#all"},"south":{"uv":[0,2,6,9],"texture":"#all"},"west":{"uv":[0,2,6,9],"texture":"#all"},"east":{"uv":[0,2,6,9],"texture":"#all"}}},{"from":[6,8,6],"to":[10,10,10],"faces":{"down":{"uv":[1,10,5,14],"texture":"#all"},"up":{"uv":[1,10,5,14],"texture":"#all"},"north":{"uv":[1,0,5,2],"texture":"#all"},"south":{"uv":[1,0,5,2],"texture":"#all"},"west":{"uv":[1,0,5,2],"texture":"#all"},"east":{"uv":[1,0,5,2],"texture":"#all"}}},{"from":[6.5,11,8],"to":[9.5,15,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"north":{"uv":[11,1,14,5],"texture":"#all"},"south":{"uv":[11,1,14,5],"texture":"#all"}}},{"from":[8,10,6.5],"to":[8,16,9.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"west":{"uv":[11,6,14,12],"texture":"#all"},"east":{"uv":[11,6,14,12],"texture":"#all"}}}]},"hay_block":{"parent":"block/cube_column","textures":{"end":"block/hay_block_top","side":"block/hay_block_side"}},"heavy_weighted_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/iron_block"}},"heavy_weighted_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/iron_block"}},"honeycomb_block":{"parent":"block/cube_all","textures":{"all":"block/honeycomb_block"}},"honey_block":{"parent":"block/block","textures":{"particle":"block/honey_block_top","down":"block/honey_block_bottom","up":"block/honey_block_top","side":"block/honey_block_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#down","cullface":"up"},"north":{"texture":"#down","cullface":"north"},"south":{"texture":"#down","cullface":"south"},"west":{"texture":"#down","cullface":"west"},"east":{"texture":"#down","cullface":"east"}}},{"from":[1,1,1],"to":[15,15,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#down"},"up":{"uv":[1,1,15,15],"texture":"#up"},"north":{"uv":[1,1,15,15],"texture":"#side"},"south":{"uv":[1,1,15,15],"texture":"#side"},"west":{"uv":[1,1,15,15],"texture":"#side"},"east":{"uv":[1,1,15,15],"texture":"#side"}}}]},"hopper":{"ambientocclusion":false,"textures":{"particle":"block/hopper_outside","top":"block/hopper_top","side":"block/hopper_outside","inside":"block/hopper_inside"},"elements":[{"from":[0,10,0],"to":[16,11,16],"faces":{"down":{"texture":"#side"},"up":{"texture":"#inside","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"east"}}},{"from":[0,11,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,11,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,11,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,11,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}},{"from":[4,4,4],"to":[12,10,12],"faces":{"down":{"texture":"#side"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"texture":"#side","cullface":"down"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"hopper_side":{"ambientocclusion":false,"textures":{"particle":"block/hopper_outside","top":"block/hopper_top","side":"block/hopper_outside","inside":"block/hopper_inside"},"elements":[{"from":[0,10,0],"to":[16,11,16],"faces":{"down":{"texture":"#side"},"up":{"texture":"#inside","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"east"}}},{"from":[0,11,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,11,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,11,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,11,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}},{"from":[4,4,4],"to":[12,10,12],"faces":{"down":{"texture":"#side"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}},{"from":[6,4,0],"to":[10,8,4],"faces":{"down":{"texture":"#side"},"up":{"texture":"#side"},"north":{"texture":"#side","cullface":"north"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"horn_coral":{"parent":"block/cross","textures":{"cross":"block/horn_coral"}},"horn_coral_block":{"parent":"block/cube_all","textures":{"all":"block/horn_coral_block"}},"horn_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/horn_coral_fan"}},"horn_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/horn_coral_fan"}},"ice":{"parent":"block/cube_all","textures":{"all":"block/ice"}},"inner_stairs":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,0],"to":[16,16,16],"faces":{"up":{"uv":[8,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side","cullface":"north"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}},{"from":[0,8,8],"to":[8,16,16],"faces":{"up":{"uv":[0,8,8,16],"texture":"#top","cullface":"up"},"north":{"uv":[8,0,16,8],"texture":"#side"},"south":{"uv":[0,0,8,8],"texture":"#side","cullface":"south"},"west":{"uv":[8,0,16,8],"texture":"#side","cullface":"west"}}}]},"iron_bars_cap":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","bars":"block/iron_bars","edge":"block/iron_bars"},"elements":[{"from":[8,0,8],"to":[8,16,9],"faces":{"west":{"uv":[8,0,7,16],"texture":"#bars"},"east":{"uv":[7,0,8,16],"texture":"#bars"}}},{"from":[7,0,9],"to":[9,16,9],"faces":{"north":{"uv":[9,0,7,16],"texture":"#bars"},"south":{"uv":[7,0,9,16],"texture":"#bars"}}}]},"iron_bars_cap_alt":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","bars":"block/iron_bars","edge":"block/iron_bars"},"elements":[{"from":[8,0,7],"to":[8,16,8],"faces":{"west":{"uv":[8,0,9,16],"texture":"#bars"},"east":{"uv":[9,0,8,16],"texture":"#bars"}}},{"from":[7,0,7],"to":[9,16,7],"faces":{"north":{"uv":[7,0,9,16],"texture":"#bars"},"south":{"uv":[9,0,7,16],"texture":"#bars"}}}]},"iron_bars_post":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","bars":"block/iron_bars"},"elements":[{"from":[8,0,7],"to":[8,16,9],"faces":{"west":{"uv":[7,0,9,16],"texture":"#bars"},"east":{"uv":[9,0,7,16],"texture":"#bars"}}},{"from":[7,0,8],"to":[9,16,8],"faces":{"north":{"uv":[7,0,9,16],"texture":"#bars"},"south":{"uv":[9,0,7,16],"texture":"#bars"}}}]},"iron_bars_post_ends":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","edge":"block/iron_bars"},"elements":[{"from":[7,0.001,7],"to":[9,0.001,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}},{"from":[7,15.999,7],"to":[9,15.999,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}}]},"iron_bars_side":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","bars":"block/iron_bars","edge":"block/iron_bars"},"elements":[{"from":[8,0,0],"to":[8,16,8],"faces":{"west":{"uv":[16,0,8,16],"texture":"#bars"},"east":{"uv":[8,0,16,16],"texture":"#bars"}}},{"from":[7,0,0],"to":[9,16,7],"faces":{"north":{"uv":[7,0,9,16],"texture":"#edge","cullface":"north"}}},{"from":[7,0.001,0],"to":[9,0.001,7],"faces":{"down":{"uv":[9,0,7,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"}}},{"from":[7,15.999,0],"to":[9,15.999,7],"faces":{"down":{"uv":[9,0,7,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"}}}]},"iron_bars_side_alt":{"ambientocclusion":false,"textures":{"particle":"block/iron_bars","bars":"block/iron_bars","edge":"block/iron_bars"},"elements":[{"from":[8,0,8],"to":[8,16,16],"faces":{"west":{"uv":[8,0,0,16],"texture":"#bars"},"east":{"uv":[0,0,8,16],"texture":"#bars"}}},{"from":[7,0,9],"to":[9,16,16],"faces":{"south":{"uv":[7,0,9,16],"texture":"#edge","cullface":"south"},"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}},{"from":[7,0.001,9],"to":[9,0.001,16],"faces":{"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}},{"from":[7,15.999,9],"to":[9,15.999,16],"faces":{"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}}]},"iron_block":{"parent":"block/cube_all","textures":{"all":"block/iron_block"}},"iron_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/iron_door_bottom","top":"block/iron_door_top"}},"iron_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/iron_door_bottom","top":"block/iron_door_top"}},"iron_door_top":{"parent":"block/door_top","textures":{"bottom":"block/iron_door_bottom","top":"block/iron_door_top"}},"iron_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/iron_door_bottom","top":"block/iron_door_top"}},"iron_ore":{"parent":"block/cube_all","textures":{"all":"block/iron_ore"}},"iron_trapdoor_bottom":{"parent":"block/template_trapdoor_bottom","textures":{"texture":"block/iron_trapdoor"}},"iron_trapdoor_open":{"parent":"block/template_trapdoor_open","textures":{"texture":"block/iron_trapdoor"}},"iron_trapdoor_top":{"parent":"block/template_trapdoor_top","textures":{"texture":"block/iron_trapdoor"}},"item_frame":{"textures":{"particle":"block/birch_planks","wood":"block/birch_planks","back":"block/item_frame"},"elements":[{"from":[3,3,15.5],"to":[13,13,16],"faces":{"north":{"uv":[3,3,13,13],"texture":"#back"},"south":{"uv":[3,3,13,13],"texture":"#back"}}},{"from":[2,2,15],"to":[14,3,16],"faces":{"down":{"uv":[2,0,14,1],"texture":"#wood"},"up":{"uv":[2,15,14,16],"texture":"#wood"},"north":{"uv":[2,13,14,14],"texture":"#wood"},"south":{"uv":[2,13,14,14],"texture":"#wood"},"west":{"uv":[15,13,16,14],"texture":"#wood"},"east":{"uv":[0,13,1,14],"texture":"#wood"}}},{"from":[2,13,15],"to":[14,14,16],"faces":{"down":{"uv":[2,0,14,1],"texture":"#wood"},"up":{"uv":[2,15,14,16],"texture":"#wood"},"north":{"uv":[2,2,14,3],"texture":"#wood"},"south":{"uv":[2,2,14,3],"texture":"#wood"},"west":{"uv":[15,2,16,3],"texture":"#wood"},"east":{"uv":[0,2,1,3],"texture":"#wood"}}},{"from":[2,3,15],"to":[3,13,16],"faces":{"north":{"uv":[13,3,14,13],"texture":"#wood"},"south":{"uv":[2,3,3,13],"texture":"#wood"},"west":{"uv":[15,3,16,13],"texture":"#wood"},"east":{"uv":[0,3,1,13],"texture":"#wood"}}},{"from":[13,3,15],"to":[14,13,16],"faces":{"north":{"uv":[2,3,3,13],"texture":"#wood"},"south":{"uv":[13,3,14,13],"texture":"#wood"},"west":{"uv":[15,3,16,13],"texture":"#wood"},"east":{"uv":[0,3,1,13],"texture":"#wood"}}}]},"item_frame_map":{"textures":{"particle":"block/birch_planks","wood":"block/birch_planks","back":"block/item_frame"},"elements":[{"from":[1,1,15.001],"to":[15,15,16],"faces":{"north":{"uv":[1,1,15,15],"texture":"#back"},"south":{"uv":[1,1,15,15],"texture":"#back"}}},{"from":[0,0,15.001],"to":[16,1,16],"faces":{"down":{"uv":[0,0,16,1],"texture":"#wood"},"up":{"uv":[0,15,16,16],"texture":"#wood"},"north":{"uv":[0,15,16,16],"texture":"#wood"},"south":{"uv":[0,15,16,16],"texture":"#wood"},"west":{"uv":[15,15,16,16],"texture":"#wood"},"east":{"uv":[0,15,1,16],"texture":"#wood"}}},{"from":[0,15,15.001],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,1],"texture":"#wood"},"up":{"uv":[0,15,16,16],"texture":"#wood"},"north":{"uv":[0,0,16,1],"texture":"#wood"},"south":{"uv":[0,0,16,1],"texture":"#wood"},"west":{"uv":[15,0,16,1],"texture":"#wood"},"east":{"uv":[0,0,1,1],"texture":"#wood"}}},{"from":[0,1,15.001],"to":[1,15,16],"faces":{"north":{"uv":[15,1,16,15],"texture":"#wood"},"south":{"uv":[0,1,1,15],"texture":"#wood"},"west":{"uv":[15,1,16,15],"texture":"#wood"},"east":{"uv":[0,1,1,15],"texture":"#wood"}}},{"from":[15,1,15.001],"to":[16,15,16],"faces":{"north":{"uv":[0,1,1,15],"texture":"#wood"},"south":{"uv":[15,1,16,15],"texture":"#wood"},"west":{"uv":[15,1,16,15],"texture":"#wood"},"east":{"uv":[0,1,1,15],"texture":"#wood"}}}]},"jack_o_lantern":{"parent":"block/orientable","textures":{"top":"block/pumpkin_top","front":"block/jack_o_lantern","side":"block/pumpkin_side"}},"jigsaw":{"parent":"block/cube","textures":{"particle":"block/jigsaw_top","down":"block/jigsaw_bottom","up":"block/jigsaw_top","north":"block/jigsaw_side","east":"block/jigsaw_side","south":"block/jigsaw_side","west":"block/jigsaw_side"}},"jukebox":{"parent":"block/cube_top","textures":{"top":"block/jukebox_top","side":"block/jukebox_side"}},"jungle_button":{"parent":"block/button","textures":{"texture":"block/jungle_planks"}},"jungle_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/jungle_planks"}},"jungle_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/jungle_planks"}},"jungle_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/jungle_door_bottom","top":"block/jungle_door_top"}},"jungle_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/jungle_door_bottom","top":"block/jungle_door_top"}},"jungle_door_top":{"parent":"block/door_top","textures":{"bottom":"block/jungle_door_bottom","top":"block/jungle_door_top"}},"jungle_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/jungle_door_bottom","top":"block/jungle_door_top"}},"jungle_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/jungle_planks"}},"jungle_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/jungle_planks"}},"jungle_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/jungle_planks"}},"jungle_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/jungle_planks"}},"jungle_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/jungle_planks"}},"jungle_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/jungle_planks"}},"jungle_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/jungle_planks"}},"jungle_leaves":{"parent":"block/leaves","textures":{"all":"block/jungle_leaves"}},"jungle_log":{"parent":"block/cube_column","textures":{"end":"block/jungle_log_top","side":"block/jungle_log"}},"jungle_planks":{"parent":"block/cube_all","textures":{"all":"block/jungle_planks"}},"jungle_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/jungle_planks"}},"jungle_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/jungle_planks"}},"jungle_sapling":{"parent":"block/cross","textures":{"cross":"block/jungle_sapling"}},"jungle_sign":{"textures":{"particle":"block/jungle_planks"}},"jungle_slab":{"parent":"block/slab","textures":{"bottom":"block/jungle_planks","top":"block/jungle_planks","side":"block/jungle_planks"}},"jungle_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/jungle_planks","top":"block/jungle_planks","side":"block/jungle_planks"}},"jungle_stairs":{"parent":"block/stairs","textures":{"bottom":"block/jungle_planks","top":"block/jungle_planks","side":"block/jungle_planks"}},"jungle_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/jungle_planks","top":"block/jungle_planks","side":"block/jungle_planks"}},"jungle_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/jungle_planks","top":"block/jungle_planks","side":"block/jungle_planks"}},"jungle_trapdoor_bottom":{"parent":"block/template_orientable_trapdoor_bottom","textures":{"texture":"block/jungle_trapdoor"}},"jungle_trapdoor_open":{"parent":"block/template_orientable_trapdoor_open","textures":{"texture":"block/jungle_trapdoor"}},"jungle_trapdoor_top":{"parent":"block/template_orientable_trapdoor_top","textures":{"texture":"block/jungle_trapdoor"}},"jungle_wood":{"parent":"block/cube_column","textures":{"end":"block/jungle_log","side":"block/jungle_log"}},"kelp":{"parent":"block/tinted_cross","textures":{"particle":"block/kelp","cross":"block/kelp"}},"kelp_plant":{"parent":"block/tinted_cross","textures":{"cross":"block/kelp_plant"}},"ladder":{"ambientocclusion":false,"textures":{"particle":"block/ladder","texture":"block/ladder"},"elements":[{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture"},"south":{"uv":[0,0,16,16],"texture":"#texture"}}}]},"lantern":{"parent":"block/block","textures":{"particle":"block/lantern","all":"block/lantern"},"elements":[{"from":[5,0,5],"to":[11,7,11],"faces":{"down":{"uv":[0,9,6,15],"texture":"#all","cullface":"down"},"up":{"uv":[0,9,6,15],"texture":"#all"},"north":{"uv":[0,2,6,9],"texture":"#all"},"south":{"uv":[0,2,6,9],"texture":"#all"},"west":{"uv":[0,2,6,9],"texture":"#all"},"east":{"uv":[0,2,6,9],"texture":"#all"}}},{"from":[6,7,6],"to":[10,9,10],"faces":{"up":{"uv":[1,10,5,14],"texture":"#all"},"north":{"uv":[1,0,5,2],"texture":"#all"},"south":{"uv":[1,0,5,2],"texture":"#all"},"west":{"uv":[1,0,5,2],"texture":"#all"},"east":{"uv":[1,0,5,2],"texture":"#all"}}},{"from":[6.5,9,8],"to":[9.5,11,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"north":{"uv":[11,1,14,3],"texture":"#all"},"south":{"uv":[11,1,14,3],"texture":"#all"}}},{"from":[8,9,6.5],"to":[8,11,9.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"west":{"uv":[11,10,14,12],"texture":"#all"},"east":{"uv":[11,10,14,12],"texture":"#all"}}}]},"lapis_block":{"parent":"block/cube_all","textures":{"all":"block/lapis_block"}},"lapis_ore":{"parent":"block/cube_all","textures":{"all":"block/lapis_ore"}},"large_fern_bottom":{"parent":"block/tinted_cross","textures":{"cross":"block/large_fern_bottom"}},"large_fern_top":{"parent":"block/tinted_cross","textures":{"cross":"block/large_fern_top"}},"lava":{"textures":{"particle":"block/lava_still"}},"leaves":{"parent":"block/block","textures":{"particle":"#all"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"east"}}}]},"lectern":{"parent":"block/block","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"particle":"block/lectern_sides","bottom":"block/oak_planks","base":"block/lectern_base","front":"block/lectern_front","sides":"block/lectern_sides","top":"block/lectern_top"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"north":{"uv":[0,14,16,16],"texture":"#base","cullface":"north"},"east":{"uv":[0,6,16,8],"texture":"#base","cullface":"east"},"south":{"uv":[0,6,16,8],"texture":"#base","cullface":"south"},"west":{"uv":[0,6,16,8],"texture":"#base","cullface":"west"},"up":{"uv":[0,0,16,16],"rotation":180,"texture":"#base"},"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"}}},{"from":[4,2,4],"to":[12,15,12],"faces":{"north":{"uv":[0,0,8,13],"texture":"#front"},"east":{"uv":[2,16,15,8],"rotation":90,"texture":"#sides"},"south":{"uv":[8,3,16,16],"texture":"#front"},"west":{"uv":[2,8,15,16],"rotation":90,"texture":"#sides"}}},{"from":[0.01,12,3],"to":[15.99,16,16],"rotation":{"angle":-22.5,"axis":"x","origin":[8,8,8]},"faces":{"north":{"uv":[0,0,16,4],"texture":"#sides"},"east":{"uv":[0,4,13,8],"texture":"#sides"},"south":{"uv":[0,4,16,8],"texture":"#sides"},"west":{"uv":[0,4,13,8],"texture":"#sides"},"up":{"uv":[0,1,16,14],"rotation":180,"texture":"#top"},"down":{"uv":[0,0,16,13],"texture":"#bottom"}}}]},"lever":{"ambientocclusion":false,"textures":{"particle":"block/cobblestone","base":"block/cobblestone","lever":"block/lever"},"elements":[{"from":[5,0,4],"to":[11,3,12],"faces":{"down":{"uv":[5,4,11,12],"texture":"#base","cullface":"down"},"up":{"uv":[5,4,11,12],"texture":"#base"},"north":{"uv":[5,0,11,3],"texture":"#base"},"south":{"uv":[5,0,11,3],"texture":"#base"},"west":{"uv":[4,0,12,3],"texture":"#base"},"east":{"uv":[4,0,12,3],"texture":"#base"}}},{"from":[7,1,7],"to":[9,11,9],"rotation":{"origin":[8,1,8],"axis":"x","angle":-45},"faces":{"up":{"uv":[7,6,9,8],"texture":"#lever"},"north":{"uv":[7,6,9,16],"texture":"#lever"},"south":{"uv":[7,6,9,16],"texture":"#lever"},"west":{"uv":[7,6,9,16],"texture":"#lever"},"east":{"uv":[7,6,9,16],"texture":"#lever"}}}]},"lever_on":{"ambientocclusion":false,"textures":{"particle":"block/cobblestone","base":"block/cobblestone","lever":"block/lever"},"elements":[{"from":[5,0,4],"to":[11,3,12],"faces":{"down":{"uv":[5,4,11,12],"texture":"#base","cullface":"down"},"up":{"uv":[5,4,11,12],"texture":"#base"},"north":{"uv":[5,0,11,3],"texture":"#base"},"south":{"uv":[5,0,11,3],"texture":"#base"},"west":{"uv":[4,0,12,3],"texture":"#base"},"east":{"uv":[4,0,12,3],"texture":"#base"}}},{"from":[7,1,7],"to":[9,11,9],"rotation":{"origin":[8,1,8],"axis":"x","angle":45},"faces":{"up":{"uv":[7,6,9,8],"texture":"#lever"},"north":{"uv":[7,6,9,16],"texture":"#lever"},"south":{"uv":[7,6,9,16],"texture":"#lever"},"west":{"uv":[7,6,9,16],"texture":"#lever"},"east":{"uv":[7,6,9,16],"texture":"#lever"}}}]},"light_blue_carpet":{"parent":"block/carpet","textures":{"particle":"block/light_blue_wool","wool":"block/light_blue_wool"}},"light_blue_concrete":{"parent":"block/cube_all","textures":{"all":"block/light_blue_concrete"}},"light_blue_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/light_blue_concrete_powder"}},"light_blue_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/light_blue_glazed_terracotta","pattern":"block/light_blue_glazed_terracotta"}},"light_blue_shulker_box":{"textures":{"particle":"block/light_blue_shulker_box"}},"light_blue_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/light_blue_stained_glass"}},"light_blue_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/light_blue_stained_glass"}},"light_blue_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/light_blue_stained_glass"}},"light_blue_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/light_blue_stained_glass_pane_top","pane":"block/light_blue_stained_glass"}},"light_blue_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/light_blue_stained_glass_pane_top","pane":"block/light_blue_stained_glass"}},"light_blue_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/light_blue_stained_glass_pane_top","pane":"block/light_blue_stained_glass"}},"light_blue_terracotta":{"parent":"block/cube_all","textures":{"all":"block/light_blue_terracotta"}},"light_blue_wool":{"parent":"block/cube_all","textures":{"all":"block/light_blue_wool"}},"light_gray_carpet":{"parent":"block/carpet","textures":{"particle":"block/light_gray_wool","wool":"block/light_gray_wool"}},"light_gray_concrete":{"parent":"block/cube_all","textures":{"all":"block/light_gray_concrete"}},"light_gray_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/light_gray_concrete_powder"}},"light_gray_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/light_gray_glazed_terracotta","pattern":"block/light_gray_glazed_terracotta"}},"light_gray_shulker_box":{"textures":{"particle":"block/light_gray_shulker_box"}},"light_gray_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/light_gray_stained_glass"}},"light_gray_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/light_gray_stained_glass"}},"light_gray_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/light_gray_stained_glass"}},"light_gray_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/light_gray_stained_glass_pane_top","pane":"block/light_gray_stained_glass"}},"light_gray_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/light_gray_stained_glass_pane_top","pane":"block/light_gray_stained_glass"}},"light_gray_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/light_gray_stained_glass_pane_top","pane":"block/light_gray_stained_glass"}},"light_gray_terracotta":{"parent":"block/cube_all","textures":{"all":"block/light_gray_terracotta"}},"light_gray_wool":{"parent":"block/cube_all","textures":{"all":"block/light_gray_wool"}},"light_weighted_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/gold_block"}},"light_weighted_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/gold_block"}},"lilac_bottom":{"parent":"block/cross","textures":{"cross":"block/lilac_bottom"}},"lilac_top":{"parent":"block/cross","textures":{"cross":"block/lilac_top"}},"lily_of_the_valley":{"parent":"block/cross","textures":{"cross":"block/lily_of_the_valley"}},"lily_pad":{"ambientocclusion":false,"textures":{"particle":"block/lily_pad","texture":"block/lily_pad"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,16],"faces":{"down":{"uv":[16,16,0,0],"texture":"#texture","tintindex":0},"up":{"uv":[16,0,0,16],"texture":"#texture","tintindex":0}}}]},"lime_carpet":{"parent":"block/carpet","textures":{"particle":"block/lime_wool","wool":"block/lime_wool"}},"lime_concrete":{"parent":"block/cube_all","textures":{"all":"block/lime_concrete"}},"lime_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/lime_concrete_powder"}},"lime_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/lime_glazed_terracotta","pattern":"block/lime_glazed_terracotta"}},"lime_shulker_box":{"textures":{"particle":"block/lime_shulker_box"}},"lime_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/lime_stained_glass"}},"lime_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/lime_stained_glass"}},"lime_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/lime_stained_glass"}},"lime_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/lime_stained_glass_pane_top","pane":"block/lime_stained_glass"}},"lime_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/lime_stained_glass_pane_top","pane":"block/lime_stained_glass"}},"lime_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/lime_stained_glass_pane_top","pane":"block/lime_stained_glass"}},"lime_terracotta":{"parent":"block/cube_all","textures":{"all":"block/lime_terracotta"}},"lime_wool":{"parent":"block/cube_all","textures":{"all":"block/lime_wool"}},"loom":{"parent":"block/orientable","textures":{"top":"block/loom_top","bottom":"block/loom_bottom","front":"block/loom_front","side":"block/loom_side"}},"magenta_carpet":{"parent":"block/carpet","textures":{"particle":"block/magenta_wool","wool":"block/magenta_wool"}},"magenta_concrete":{"parent":"block/cube_all","textures":{"all":"block/magenta_concrete"}},"magenta_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/magenta_concrete_powder"}},"magenta_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/magenta_glazed_terracotta","pattern":"block/magenta_glazed_terracotta"}},"magenta_shulker_box":{"textures":{"particle":"block/magenta_shulker_box"}},"magenta_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/magenta_stained_glass"}},"magenta_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/magenta_stained_glass"}},"magenta_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/magenta_stained_glass"}},"magenta_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/magenta_stained_glass_pane_top","pane":"block/magenta_stained_glass"}},"magenta_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/magenta_stained_glass_pane_top","pane":"block/magenta_stained_glass"}},"magenta_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/magenta_stained_glass_pane_top","pane":"block/magenta_stained_glass"}},"magenta_terracotta":{"parent":"block/cube_all","textures":{"all":"block/magenta_terracotta"}},"magenta_wool":{"parent":"block/cube_all","textures":{"all":"block/magenta_wool"}},"magma_block":{"parent":"block/cube_all","textures":{"all":"block/magma"}},"melon":{"parent":"block/cube_column","textures":{"end":"block/melon_top","side":"block/melon_side"}},"melon_stem_stage0":{"parent":"block/stem_growth0","textures":{"stem":"block/melon_stem"}},"melon_stem_stage1":{"parent":"block/stem_growth1","textures":{"stem":"block/melon_stem"}},"melon_stem_stage2":{"parent":"block/stem_growth2","textures":{"stem":"block/melon_stem"}},"melon_stem_stage3":{"parent":"block/stem_growth3","textures":{"stem":"block/melon_stem"}},"melon_stem_stage4":{"parent":"block/stem_growth4","textures":{"stem":"block/melon_stem"}},"melon_stem_stage5":{"parent":"block/stem_growth5","textures":{"stem":"block/melon_stem"}},"melon_stem_stage6":{"parent":"block/stem_growth6","textures":{"stem":"block/melon_stem"}},"melon_stem_stage7":{"parent":"block/stem_growth7","textures":{"stem":"block/melon_stem"}},"mossy_cobblestone":{"parent":"block/cube_all","textures":{"all":"block/mossy_cobblestone"}},"mossy_cobblestone_slab":{"parent":"block/slab","textures":{"bottom":"block/mossy_cobblestone","top":"block/mossy_cobblestone","side":"block/mossy_cobblestone"}},"mossy_cobblestone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/mossy_cobblestone","top":"block/mossy_cobblestone","side":"block/mossy_cobblestone"}},"mossy_cobblestone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/mossy_cobblestone","top":"block/mossy_cobblestone","side":"block/mossy_cobblestone"}},"mossy_cobblestone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/mossy_cobblestone","top":"block/mossy_cobblestone","side":"block/mossy_cobblestone"}},"mossy_cobblestone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/mossy_cobblestone","top":"block/mossy_cobblestone","side":"block/mossy_cobblestone"}},"mossy_cobblestone_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/mossy_cobblestone"}},"mossy_cobblestone_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/mossy_cobblestone"}},"mossy_cobblestone_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/mossy_cobblestone"}},"mossy_stone_bricks":{"parent":"block/cube_all","textures":{"all":"block/mossy_stone_bricks"}},"mossy_stone_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/mossy_stone_bricks","top":"block/mossy_stone_bricks","side":"block/mossy_stone_bricks"}},"mossy_stone_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/mossy_stone_bricks","top":"block/mossy_stone_bricks","side":"block/mossy_stone_bricks"}},"mossy_stone_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/mossy_stone_bricks","top":"block/mossy_stone_bricks","side":"block/mossy_stone_bricks"}},"mossy_stone_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/mossy_stone_bricks","top":"block/mossy_stone_bricks","side":"block/mossy_stone_bricks"}},"mossy_stone_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/mossy_stone_bricks","top":"block/mossy_stone_bricks","side":"block/mossy_stone_bricks"}},"mossy_stone_brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/mossy_stone_bricks"}},"mossy_stone_brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/mossy_stone_bricks"}},"mossy_stone_brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/mossy_stone_bricks"}},"moving_piston":{"textures":{"particle":"block/piston_side"}},"mushroom_block_inside":{"ambientocclusion":false,"textures":{"texture":"block/mushroom_block_inside","particle":"block/mushroom_block_inside"},"elements":[{"from":[0,0,0],"to":[16,16,0],"faces":{"north":{"texture":"#texture","cullface":"north"}}}]},"mushroom_stem":{"textures":{"texture":"block/mushroom_stem","particle":"block/mushroom_stem"},"elements":[{"from":[0,0,0],"to":[16,16,0],"faces":{"north":{"texture":"#texture","cullface":"north"}}}]},"mushroom_stem_inventory":{"parent":"block/cube_all","textures":{"all":"block/mushroom_stem"}},"mycelium":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/dirt","top":"block/mycelium_top","side":"block/mycelium_side"}},"netherrack":{"parent":"block/cube_all","textures":{"all":"block/netherrack"}},"nether_bricks":{"parent":"block/cube_all","textures":{"all":"block/nether_bricks"}},"nether_brick_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/nether_bricks"}},"nether_brick_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/nether_bricks"}},"nether_brick_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/nether_bricks"}},"nether_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/nether_bricks","top":"block/nether_bricks","side":"block/nether_bricks"}},"nether_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/nether_bricks","top":"block/nether_bricks","side":"block/nether_bricks"}},"nether_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/nether_bricks","top":"block/nether_bricks","side":"block/nether_bricks"}},"nether_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/nether_bricks","top":"block/nether_bricks","side":"block/nether_bricks"}},"nether_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/nether_bricks","top":"block/nether_bricks","side":"block/nether_bricks"}},"nether_brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/nether_bricks"}},"nether_brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/nether_bricks"}},"nether_brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/nether_bricks"}},"nether_portal_ew":{"textures":{"particle":"block/nether_portal","portal":"block/nether_portal"},"elements":[{"from":[6,0,0],"to":[10,16,16],"faces":{"east":{"uv":[0,0,16,16],"texture":"#portal"},"west":{"uv":[0,0,16,16],"texture":"#portal"}}}]},"nether_portal_ns":{"textures":{"particle":"block/nether_portal","portal":"block/nether_portal"},"elements":[{"from":[0,0,6],"to":[16,16,10],"faces":{"north":{"uv":[0,0,16,16],"texture":"#portal"},"south":{"uv":[0,0,16,16],"texture":"#portal"}}}]},"nether_quartz_ore":{"parent":"block/cube_all","textures":{"all":"block/nether_quartz_ore"}},"nether_wart_block":{"parent":"block/cube_all","textures":{"all":"block/nether_wart_block"}},"nether_wart_stage0":{"parent":"block/crop","textures":{"crop":"block/nether_wart_stage0"}},"nether_wart_stage1":{"parent":"block/crop","textures":{"crop":"block/nether_wart_stage1"}},"nether_wart_stage2":{"parent":"block/crop","textures":{"crop":"block/nether_wart_stage2"}},"note_block":{"parent":"block/cube_all","textures":{"all":"block/note_block"}},"oak_button":{"parent":"block/button","textures":{"texture":"block/oak_planks"}},"oak_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/oak_planks"}},"oak_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/oak_planks"}},"oak_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/oak_door_bottom","top":"block/oak_door_top"}},"oak_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/oak_door_bottom","top":"block/oak_door_top"}},"oak_door_top":{"parent":"block/door_top","textures":{"bottom":"block/oak_door_bottom","top":"block/oak_door_top"}},"oak_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/oak_door_bottom","top":"block/oak_door_top"}},"oak_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/oak_planks"}},"oak_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/oak_planks"}},"oak_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/oak_planks"}},"oak_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/oak_planks"}},"oak_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/oak_planks"}},"oak_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/oak_planks"}},"oak_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/oak_planks"}},"oak_leaves":{"parent":"block/leaves","textures":{"all":"block/oak_leaves"}},"oak_log":{"parent":"block/cube_column","textures":{"end":"block/oak_log_top","side":"block/oak_log"}},"oak_planks":{"parent":"block/cube_all","textures":{"all":"block/oak_planks"}},"oak_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/oak_planks"}},"oak_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/oak_planks"}},"oak_sapling":{"parent":"block/cross","textures":{"cross":"block/oak_sapling"}},"oak_sign":{"textures":{"particle":"block/oak_planks"}},"oak_slab":{"parent":"block/slab","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"oak_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"oak_stairs":{"parent":"block/stairs","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"oak_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"oak_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"oak_trapdoor_bottom":{"parent":"block/template_trapdoor_bottom","textures":{"texture":"block/oak_trapdoor"}},"oak_trapdoor_open":{"parent":"block/template_trapdoor_open","textures":{"texture":"block/oak_trapdoor"}},"oak_trapdoor_top":{"parent":"block/template_trapdoor_top","textures":{"texture":"block/oak_trapdoor"}},"oak_wood":{"parent":"block/cube_column","textures":{"end":"block/oak_log","side":"block/oak_log"}},"observer":{"parent":"block/block","textures":{"bottom":"block/observer_back","side":"block/observer_side","top":"block/observer_top","front":"block/observer_front","particle":"block/observer_front"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#top","cullface":"down"},"up":{"uv":[0,16,16,0],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#front","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","cullface":"east"}}}]},"observer_on":{"parent":"block/observer","textures":{"bottom":"block/observer_back_on"}},"obsidian":{"parent":"block/cube_all","textures":{"all":"block/obsidian"}},"orange_carpet":{"parent":"block/carpet","textures":{"particle":"block/orange_wool","wool":"block/orange_wool"}},"orange_concrete":{"parent":"block/cube_all","textures":{"all":"block/orange_concrete"}},"orange_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/orange_concrete_powder"}},"orange_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/orange_glazed_terracotta","pattern":"block/orange_glazed_terracotta"}},"orange_shulker_box":{"textures":{"particle":"block/orange_shulker_box"}},"orange_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/orange_stained_glass"}},"orange_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/orange_stained_glass"}},"orange_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/orange_stained_glass"}},"orange_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/orange_stained_glass_pane_top","pane":"block/orange_stained_glass"}},"orange_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/orange_stained_glass_pane_top","pane":"block/orange_stained_glass"}},"orange_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/orange_stained_glass_pane_top","pane":"block/orange_stained_glass"}},"orange_terracotta":{"parent":"block/cube_all","textures":{"all":"block/orange_terracotta"}},"orange_tulip":{"parent":"block/cross","textures":{"cross":"block/orange_tulip"}},"orange_wool":{"parent":"block/cube_all","textures":{"all":"block/orange_wool"}},"orientable":{"parent":"block/orientable_with_bottom","textures":{"bottom":"#top"}},"orientable_vertical":{"parent":"block/cube","textures":{"particle":"#side","down":"#side","up":"#front","north":"#side","east":"#side","south":"#side","west":"#side"}},"orientable_with_bottom":{"parent":"block/cube","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"particle":"#front","down":"#bottom","up":"#top","north":"#front","east":"#side","south":"#side","west":"#side"}},"outer_stairs":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,8],"to":[16,16,16],"faces":{"up":{"uv":[8,8,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[8,0,16,8],"texture":"#side"},"east":{"uv":[0,0,8,8],"texture":"#side","cullface":"east"}}}]},"oxeye_daisy":{"parent":"block/cross","textures":{"cross":"block/oxeye_daisy"}},"packed_ice":{"parent":"block/cube_all","textures":{"all":"block/packed_ice"}},"peony_bottom":{"parent":"block/cross","textures":{"cross":"block/peony_bottom"}},"peony_top":{"parent":"block/cross","textures":{"cross":"block/peony_top"}},"petrified_oak_slab":{"parent":"block/slab","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"petrified_oak_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/oak_planks","top":"block/oak_planks","side":"block/oak_planks"}},"pink_carpet":{"parent":"block/carpet","textures":{"particle":"block/pink_wool","wool":"block/pink_wool"}},"pink_concrete":{"parent":"block/cube_all","textures":{"all":"block/pink_concrete"}},"pink_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/pink_concrete_powder"}},"pink_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/pink_glazed_terracotta","pattern":"block/pink_glazed_terracotta"}},"pink_shulker_box":{"textures":{"particle":"block/pink_shulker_box"}},"pink_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/pink_stained_glass"}},"pink_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/pink_stained_glass"}},"pink_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/pink_stained_glass"}},"pink_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/pink_stained_glass_pane_top","pane":"block/pink_stained_glass"}},"pink_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/pink_stained_glass_pane_top","pane":"block/pink_stained_glass"}},"pink_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/pink_stained_glass_pane_top","pane":"block/pink_stained_glass"}},"pink_terracotta":{"parent":"block/cube_all","textures":{"all":"block/pink_terracotta"}},"pink_tulip":{"parent":"block/cross","textures":{"cross":"block/pink_tulip"}},"pink_wool":{"parent":"block/cube_all","textures":{"all":"block/pink_wool"}},"piston":{"parent":"block/template_piston","textures":{"bottom":"block/piston_bottom","side":"block/piston_side","platform":"block/piston_top"}},"piston_base":{"parent":"block/piston_extended","textures":{"bottom":"block/piston_bottom","side":"block/piston_side","inside":"block/piston_inner"}},"piston_extended":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,4],"to":[16,16,16],"faces":{"down":{"uv":[0,4,16,16],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,4,16,16],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#inside"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#side","cullface":"west","rotation":270},"east":{"uv":[0,4,16,16],"texture":"#side","cullface":"east","rotation":90}}}]},"piston_head":{"parent":"block/template_piston_head","textures":{"unsticky":"block/piston_top","side":"block/piston_side","platform":"block/piston_top"}},"piston_head_short":{"parent":"block/template_piston_head_short","textures":{"unsticky":"block/piston_top","side":"block/piston_side","platform":"block/piston_top"}},"piston_head_short_sticky":{"parent":"block/template_piston_head_short","textures":{"unsticky":"block/piston_top","side":"block/piston_side","platform":"block/piston_top_sticky"}},"piston_head_sticky":{"parent":"block/template_piston_head","textures":{"unsticky":"block/piston_top","side":"block/piston_side","platform":"block/piston_top_sticky"}},"piston_inventory":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/piston_bottom","side":"block/piston_side","top":"block/piston_top"}},"podzol":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/dirt","top":"block/podzol_top","side":"block/podzol_side"}},"polished_andesite":{"parent":"block/cube_all","textures":{"all":"block/polished_andesite"}},"polished_andesite_slab":{"parent":"block/slab","textures":{"bottom":"block/polished_andesite","top":"block/polished_andesite","side":"block/polished_andesite"}},"polished_andesite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/polished_andesite","top":"block/polished_andesite","side":"block/polished_andesite"}},"polished_andesite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/polished_andesite","top":"block/polished_andesite","side":"block/polished_andesite"}},"polished_andesite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/polished_andesite","top":"block/polished_andesite","side":"block/polished_andesite"}},"polished_andesite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/polished_andesite","top":"block/polished_andesite","side":"block/polished_andesite"}},"polished_diorite":{"parent":"block/cube_all","textures":{"all":"block/polished_diorite"}},"polished_diorite_slab":{"parent":"block/slab","textures":{"bottom":"block/polished_diorite","top":"block/polished_diorite","side":"block/polished_diorite"}},"polished_diorite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/polished_diorite","top":"block/polished_diorite","side":"block/polished_diorite"}},"polished_diorite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/polished_diorite","top":"block/polished_diorite","side":"block/polished_diorite"}},"polished_diorite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/polished_diorite","top":"block/polished_diorite","side":"block/polished_diorite"}},"polished_diorite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/polished_diorite","top":"block/polished_diorite","side":"block/polished_diorite"}},"polished_granite":{"parent":"block/cube_all","textures":{"all":"block/polished_granite"}},"polished_granite_slab":{"parent":"block/slab","textures":{"bottom":"block/polished_granite","top":"block/polished_granite","side":"block/polished_granite"}},"polished_granite_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/polished_granite","top":"block/polished_granite","side":"block/polished_granite"}},"polished_granite_stairs":{"parent":"block/stairs","textures":{"bottom":"block/polished_granite","top":"block/polished_granite","side":"block/polished_granite"}},"polished_granite_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/polished_granite","top":"block/polished_granite","side":"block/polished_granite"}},"polished_granite_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/polished_granite","top":"block/polished_granite","side":"block/polished_granite"}},"poppy":{"parent":"block/cross","textures":{"cross":"block/poppy"}},"potatoes_stage0":{"parent":"block/crop","textures":{"crop":"block/potatoes_stage0"}},"potatoes_stage1":{"parent":"block/crop","textures":{"crop":"block/potatoes_stage1"}},"potatoes_stage2":{"parent":"block/crop","textures":{"crop":"block/potatoes_stage2"}},"potatoes_stage3":{"parent":"block/crop","textures":{"crop":"block/potatoes_stage3"}},"potted_acacia_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/acacia_sapling"}},"potted_allium":{"parent":"block/flower_pot_cross","textures":{"plant":"block/allium"}},"potted_azure_bluet":{"parent":"block/flower_pot_cross","textures":{"plant":"block/azure_bluet"}},"potted_bamboo":{"ambientocclusion":false,"textures":{"particle":"block/flower_pot","flowerpot":"block/flower_pot","dirt":"block/dirt","bamboo":"block/bamboo_stalk","leaf":"block/bamboo_singleleaf"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#bamboo","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#bamboo","cullface":"up"},"north":{"uv":[6,0,8,16],"texture":"#bamboo"},"south":{"uv":[6,0,8,16],"texture":"#bamboo"},"west":{"uv":[6,0,8,16],"texture":"#bamboo"},"east":{"uv":[6,0,8,16],"texture":"#bamboo"}}},{"from":[0,2,8],"to":[16,18,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#leaf"},"south":{"uv":[16,0,0,16],"texture":"#leaf"}}}]},"potted_birch_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/birch_sapling"}},"potted_blue_orchid":{"parent":"block/flower_pot_cross","textures":{"plant":"block/blue_orchid"}},"potted_brown_mushroom":{"parent":"block/flower_pot_cross","textures":{"plant":"block/brown_mushroom"}},"potted_cactus":{"ambientocclusion":false,"textures":{"particle":"block/flower_pot","flowerpot":"block/flower_pot","dirt":"block/dirt","cactus":"block/cactus_side"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[6,4,6],"to":[10,8,10],"faces":{"north":{"uv":[6,8,10,12],"texture":"#cactus"},"south":{"uv":[6,8,10,12],"texture":"#cactus"},"west":{"uv":[6,8,10,12],"texture":"#cactus"},"east":{"uv":[6,8,10,12],"texture":"#cactus"}}},{"from":[6,8,6],"to":[10,12,10],"faces":{"north":{"uv":[6,4,10,8],"texture":"#cactus"},"south":{"uv":[6,4,10,8],"texture":"#cactus"},"west":{"uv":[6,4,10,8],"texture":"#cactus"},"east":{"uv":[6,4,10,8],"texture":"#cactus"}}},{"from":[6,12,6],"to":[10,16,10],"faces":{"up":{"uv":[6,6,10,10],"texture":"#cactus"},"north":{"uv":[6,0,10,4],"texture":"#cactus"},"south":{"uv":[6,0,10,4],"texture":"#cactus"},"west":{"uv":[6,0,10,4],"texture":"#cactus"},"east":{"uv":[6,0,10,4],"texture":"#cactus"}}}]},"potted_cornflower":{"parent":"block/flower_pot_cross","textures":{"plant":"block/cornflower"}},"potted_dandelion":{"parent":"block/flower_pot_cross","textures":{"plant":"block/dandelion"}},"potted_dark_oak_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/dark_oak_sapling"}},"potted_dead_bush":{"parent":"block/flower_pot_cross","textures":{"plant":"block/dead_bush"}},"potted_fern":{"ambientocclusion":false,"textures":{"particle":"block/flower_pot","flowerpot":"block/flower_pot","dirt":"block/dirt","plant":"block/fern"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[2.6,4,8],"to":[13.4,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0}}},{"from":[8,4,2.6],"to":[8,16,13.4],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0}}}]},"potted_jungle_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/jungle_sapling"}},"potted_lily_of_the_valley":{"parent":"block/flower_pot_cross","textures":{"plant":"block/lily_of_the_valley"}},"potted_oak_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/oak_sapling"}},"potted_orange_tulip":{"parent":"block/flower_pot_cross","textures":{"plant":"block/orange_tulip"}},"potted_oxeye_daisy":{"parent":"block/flower_pot_cross","textures":{"plant":"block/oxeye_daisy"}},"potted_pink_tulip":{"parent":"block/flower_pot_cross","textures":{"plant":"block/pink_tulip"}},"potted_poppy":{"parent":"block/flower_pot_cross","textures":{"plant":"block/poppy"}},"potted_red_mushroom":{"parent":"block/flower_pot_cross","textures":{"plant":"block/red_mushroom"}},"potted_red_tulip":{"parent":"block/flower_pot_cross","textures":{"plant":"block/red_tulip"}},"potted_spruce_sapling":{"parent":"block/flower_pot_cross","textures":{"plant":"block/spruce_sapling"}},"potted_white_tulip":{"parent":"block/flower_pot_cross","textures":{"plant":"block/white_tulip"}},"potted_wither_rose":{"parent":"block/flower_pot_cross","textures":{"plant":"block/wither_rose"}},"powered_rail":{"parent":"block/rail_flat","textures":{"rail":"block/powered_rail"}},"powered_rail_on":{"parent":"block/rail_flat","textures":{"rail":"block/powered_rail_on"}},"powered_rail_on_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/powered_rail_on"}},"powered_rail_on_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/powered_rail_on"}},"powered_rail_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/powered_rail"}},"powered_rail_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/powered_rail"}},"pressure_plate_down":{"textures":{"particle":"#texture"},"elements":[{"from":[1,0,1],"to":[15,0.5,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#texture","cullface":"down"},"up":{"uv":[1,1,15,15],"texture":"#texture"},"north":{"uv":[1,15,15,15.5],"texture":"#texture"},"south":{"uv":[1,15,15,15.5],"texture":"#texture"},"west":{"uv":[1,15,15,15.5],"texture":"#texture"},"east":{"uv":[1,15,15,15.5],"texture":"#texture"}}}]},"pressure_plate_up":{"parent":"block/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[1,0,1],"to":[15,1,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#texture","cullface":"down"},"up":{"uv":[1,1,15,15],"texture":"#texture"},"north":{"uv":[1,15,15,16],"texture":"#texture"},"south":{"uv":[1,15,15,16],"texture":"#texture"},"west":{"uv":[1,15,15,16],"texture":"#texture"},"east":{"uv":[1,15,15,16],"texture":"#texture"}}}]},"prismarine":{"parent":"block/cube_all","textures":{"all":"block/prismarine"}},"prismarine_bricks":{"parent":"block/cube_all","textures":{"all":"block/prismarine_bricks"}},"prismarine_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/prismarine_bricks","top":"block/prismarine_bricks","side":"block/prismarine_bricks"}},"prismarine_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/prismarine_bricks","top":"block/prismarine_bricks","side":"block/prismarine_bricks"}},"prismarine_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/prismarine_bricks","top":"block/prismarine_bricks","side":"block/prismarine_bricks"}},"prismarine_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/prismarine_bricks","top":"block/prismarine_bricks","side":"block/prismarine_bricks"}},"prismarine_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/prismarine_bricks","top":"block/prismarine_bricks","side":"block/prismarine_bricks"}},"prismarine_slab":{"parent":"block/slab","textures":{"bottom":"block/prismarine","top":"block/prismarine","side":"block/prismarine"}},"prismarine_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/prismarine","top":"block/prismarine","side":"block/prismarine"}},"prismarine_stairs":{"parent":"block/stairs","textures":{"bottom":"block/prismarine","top":"block/prismarine","side":"block/prismarine"}},"prismarine_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/prismarine","top":"block/prismarine","side":"block/prismarine"}},"prismarine_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/prismarine","top":"block/prismarine","side":"block/prismarine"}},"prismarine_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/prismarine"}},"prismarine_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/prismarine"}},"prismarine_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/prismarine"}},"pumpkin":{"parent":"block/cube_column","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"end":"block/pumpkin_top","side":"block/pumpkin_side"}},"pumpkin_stem_stage0":{"parent":"block/stem_growth0","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage1":{"parent":"block/stem_growth1","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage2":{"parent":"block/stem_growth2","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage3":{"parent":"block/stem_growth3","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage4":{"parent":"block/stem_growth4","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage5":{"parent":"block/stem_growth5","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage6":{"parent":"block/stem_growth6","textures":{"stem":"block/pumpkin_stem"}},"pumpkin_stem_stage7":{"parent":"block/stem_growth7","textures":{"stem":"block/pumpkin_stem"}},"purple_carpet":{"parent":"block/carpet","textures":{"particle":"block/purple_wool","wool":"block/purple_wool"}},"purple_concrete":{"parent":"block/cube_all","textures":{"all":"block/purple_concrete"}},"purple_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/purple_concrete_powder"}},"purple_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/purple_glazed_terracotta","pattern":"block/purple_glazed_terracotta"}},"purple_shulker_box":{"textures":{"particle":"block/purple_shulker_box"}},"purple_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/purple_stained_glass"}},"purple_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/purple_stained_glass"}},"purple_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/purple_stained_glass"}},"purple_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/purple_stained_glass_pane_top","pane":"block/purple_stained_glass"}},"purple_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/purple_stained_glass_pane_top","pane":"block/purple_stained_glass"}},"purple_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/purple_stained_glass_pane_top","pane":"block/purple_stained_glass"}},"purple_terracotta":{"parent":"block/cube_all","textures":{"all":"block/purple_terracotta"}},"purple_wool":{"parent":"block/cube_all","textures":{"all":"block/purple_wool"}},"purpur_block":{"parent":"block/cube_all","textures":{"all":"block/purpur_block"}},"purpur_pillar":{"parent":"block/cube_column","textures":{"end":"block/purpur_pillar_top","side":"block/purpur_pillar"}},"purpur_slab":{"parent":"block/slab","textures":{"bottom":"block/purpur_block","top":"block/purpur_block","side":"block/purpur_block"}},"purpur_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/purpur_block","top":"block/purpur_block","side":"block/purpur_block"}},"purpur_stairs":{"parent":"block/stairs","textures":{"bottom":"block/purpur_block","top":"block/purpur_block","side":"block/purpur_block"}},"purpur_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/purpur_block","top":"block/purpur_block","side":"block/purpur_block"}},"purpur_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/purpur_block","top":"block/purpur_block","side":"block/purpur_block"}},"quartz_block":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/quartz_block_top","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"quartz_pillar":{"parent":"block/cube_column","textures":{"end":"block/quartz_pillar_top","side":"block/quartz_pillar"}},"quartz_slab":{"parent":"block/slab","textures":{"bottom":"block/quartz_block_top","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"quartz_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/quartz_block_top","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"quartz_stairs":{"parent":"block/stairs","textures":{"bottom":"block/quartz_block_top","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"quartz_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"quartz_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_top","side":"block/quartz_block_side"}},"rail":{"parent":"block/rail_flat","textures":{"rail":"block/rail"}},"rail_corner":{"parent":"block/rail_curved","textures":{"rail":"block/rail_corner"}},"rail_curved":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,1,0],"to":[16,1,16],"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"rail_flat":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,1,0],"to":[16,1,16],"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"rail_raised_ne":{"parent":"block/template_rail_raised_ne","textures":{"rail":"block/rail"}},"rail_raised_sw":{"parent":"block/template_rail_raised_sw","textures":{"rail":"block/rail"}},"redstone_block":{"parent":"block/cube_all","textures":{"all":"block/redstone_block"}},"redstone_dust_dot":{"ambientocclusion":false,"textures":{"particle":"block/redstone_dust_dot","line":"block/redstone_dust_dot","overlay":"block/redstone_dust_overlay"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#line","tintindex":0}}},{"from":[0,0.25,0],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#overlay"}}}]},"redstone_dust_side":{"ambientocclusion":false,"textures":{"particle":"block/redstone_dust_dot","overlay":"block/redstone_dust_overlay"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,8],"shade":false,"faces":{"up":{"uv":[0,0,16,8],"texture":"#line","tintindex":0}}},{"from":[0,0.25,0],"to":[16,0.25,8],"shade":false,"faces":{"up":{"uv":[0,0,16,8],"texture":"#overlay"}}}]},"redstone_dust_side0":{"parent":"block/redstone_dust_side","textures":{"line":"block/redstone_dust_line0"}},"redstone_dust_side1":{"parent":"block/redstone_dust_side","textures":{"line":"block/redstone_dust_line1"}},"redstone_dust_side_alt":{"ambientocclusion":false,"textures":{"particle":"block/redstone_dust_dot","overlay":"block/redstone_dust_overlay"},"elements":[{"from":[0,0.25,8],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,8,16,16],"texture":"#line","tintindex":0}}},{"from":[0,0.25,8],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,8,16,16],"texture":"#overlay"}}}]},"redstone_dust_side_alt0":{"parent":"block/redstone_dust_side_alt","textures":{"line":"block/redstone_dust_line0"}},"redstone_dust_side_alt1":{"parent":"block/redstone_dust_side_alt","textures":{"line":"block/redstone_dust_line1"}},"redstone_dust_up":{"ambientocclusion":false,"textures":{"particle":"block/redstone_dust_dot","line":"block/redstone_dust_line0","overlay":"block/redstone_dust_overlay"},"elements":[{"from":[0,0,0.25],"to":[16,16,0.25],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#line","tintindex":0}}},{"from":[0,0,0.25],"to":[16,16,0.25],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#overlay"}}}]},"redstone_lamp":{"parent":"block/cube_all","textures":{"all":"block/redstone_lamp"}},"redstone_lamp_on":{"parent":"block/cube_all","textures":{"all":"block/redstone_lamp_on"}},"redstone_ore":{"parent":"block/cube_all","textures":{"all":"block/redstone_ore"}},"redstone_ore_on":{"parent":"block/cube_all","textures":{"all":"block/redstone_ore"}},"redstone_torch":{"parent":"block/template_torch","textures":{"torch":"block/redstone_torch"}},"redstone_torch_off":{"parent":"block/template_torch","textures":{"torch":"block/redstone_torch_off"}},"redstone_wall_torch":{"parent":"block/torch_wall","textures":{"torch":"block/redstone_torch"}},"redstone_wall_torch_off":{"parent":"block/torch_wall","textures":{"torch":"block/redstone_torch_off"}},"red_carpet":{"parent":"block/carpet","textures":{"particle":"block/red_wool","wool":"block/red_wool"}},"red_concrete":{"parent":"block/cube_all","textures":{"all":"block/red_concrete"}},"red_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/red_concrete_powder"}},"red_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/red_glazed_terracotta","pattern":"block/red_glazed_terracotta"}},"red_mushroom":{"parent":"block/cross","textures":{"cross":"block/red_mushroom"}},"red_mushroom_block":{"textures":{"texture":"block/red_mushroom_block","particle":"block/red_mushroom_block"},"elements":[{"from":[0,0,0],"to":[16,16,0],"faces":{"north":{"texture":"#texture","cullface":"north"}}}]},"red_mushroom_block_inventory":{"parent":"block/cube_all","textures":{"all":"block/red_mushroom_block"}},"red_nether_bricks":{"parent":"block/cube_all","textures":{"all":"block/red_nether_bricks"}},"red_nether_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/red_nether_bricks","top":"block/red_nether_bricks","side":"block/red_nether_bricks"}},"red_nether_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/red_nether_bricks","top":"block/red_nether_bricks","side":"block/red_nether_bricks"}},"red_nether_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/red_nether_bricks","top":"block/red_nether_bricks","side":"block/red_nether_bricks"}},"red_nether_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/red_nether_bricks","top":"block/red_nether_bricks","side":"block/red_nether_bricks"}},"red_nether_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/red_nether_bricks","top":"block/red_nether_bricks","side":"block/red_nether_bricks"}},"red_nether_brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/red_nether_bricks"}},"red_nether_brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/red_nether_bricks"}},"red_nether_brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/red_nether_bricks"}},"red_sand":{"parent":"block/cube_all","textures":{"all":"block/red_sand"}},"red_sandstone":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/red_sandstone_bottom","top":"block/red_sandstone_top","side":"block/red_sandstone"}},"red_sandstone_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/red_sandstone"}},"red_sandstone_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/red_sandstone"}},"red_sandstone_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/red_sandstone"}},"red_shulker_box":{"textures":{"particle":"block/red_shulker_box"}},"red_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/red_stained_glass"}},"red_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/red_stained_glass"}},"red_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/red_stained_glass"}},"red_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/red_stained_glass_pane_top","pane":"block/red_stained_glass"}},"red_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/red_stained_glass_pane_top","pane":"block/red_stained_glass"}},"red_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/red_stained_glass_pane_top","pane":"block/red_stained_glass"}},"red_terracotta":{"parent":"block/cube_all","textures":{"all":"block/red_terracotta"}},"red_tulip":{"parent":"block/cross","textures":{"cross":"block/red_tulip"}},"red_wool":{"parent":"block/cube_all","textures":{"all":"block/red_wool"}},"repeater_1tick":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,6],"to":[9,7,8],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_1tick_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","lock":"block/bedrock","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,6],"to":[14,4,8],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_1tick_on":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,6],"to":[9,7,8],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,5],"to":[9,8,9],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,6],"to":[10,8,8],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_1tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch","lock":"block/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,6],"to":[14,4,8],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_2tick":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,8],"to":[9,7,10],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_2tick_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","lock":"block/bedrock","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,8],"to":[14,4,10],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_2tick_on":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,8],"to":[9,7,10],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,7],"to":[9,8,11],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,8],"to":[10,8,10],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_2tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch","lock":"block/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,8],"to":[14,4,10],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_3tick":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,10],"to":[9,7,12],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_3tick_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","lock":"block/bedrock","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,10],"to":[14,4,12],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_3tick_on":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,10],"to":[9,7,12],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,9],"to":[9,8,13],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,10],"to":[10,8,12],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_3tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch","lock":"block/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,10],"to":[14,4,12],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_4tick":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,12],"to":[9,7,14],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_4tick_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater","slab":"block/smooth_stone","top":"block/repeater","lock":"block/bedrock","unlit":"block/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,12],"to":[14,4,14],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_4tick_on":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,12],"to":[9,7,14],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,11],"to":[9,8,15],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,12],"to":[10,8,14],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_4tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block/repeater_on","slab":"block/smooth_stone","top":"block/repeater_on","lit":"block/redstone_torch","lock":"block/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,12],"to":[14,4,14],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeating_command_block":{"parent":"block/cube_directional","textures":{"particle":"block/repeating_command_block_back","down":"block/repeating_command_block_side","up":"block/repeating_command_block_side","north":"block/repeating_command_block_front","east":"block/repeating_command_block_side","south":"block/repeating_command_block_back","west":"block/repeating_command_block_side"}},"repeating_command_block_conditional":{"parent":"block/cube_directional","textures":{"particle":"block/repeating_command_block_back","down":"block/repeating_command_block_conditional","up":"block/repeating_command_block_conditional","north":"block/repeating_command_block_front","east":"block/repeating_command_block_conditional","south":"block/repeating_command_block_back","west":"block/repeating_command_block_conditional"}},"rose_bush_bottom":{"parent":"block/cross","textures":{"cross":"block/rose_bush_bottom"}},"rose_bush_top":{"parent":"block/cross","textures":{"cross":"block/rose_bush_top"}},"sand":{"parent":"block/cube_all","textures":{"all":"block/sand"}},"sandstone":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/sandstone_bottom","top":"block/sandstone_top","side":"block/sandstone"}},"sandstone_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/sandstone"}},"sandstone_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/sandstone"}},"sandstone_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/sandstone"}},"scaffolding_stable":{"parent":"block/block","textures":{"particle":"block/scaffolding_top","top":"block/scaffolding_top","side":"block/scaffolding_side","bottom":"block/scaffolding_bottom"},"elements":[{"from":[0,15.99,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#top","uv":[0,16,16,0]}}},{"from":[0,0,0],"to":[2,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[2,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,14],"to":[16,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,0],"to":[16,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,14,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom"}}},{"from":[2,14,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","cullface":"south"},"down":{"texture":"#bottom"}}},{"from":[14,14,2],"to":[16,16,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom"}}},{"from":[0,14,2],"to":[2,16,14],"faces":{"east":{"texture":"#side"},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom"}}}]},"scaffolding_unstable":{"parent":"block/block","textures":{"particle":"block/scaffolding_top","top":"block/scaffolding_top","side":"block/scaffolding_side","bottom":"block/scaffolding_bottom"},"elements":[{"from":[0,15.99,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#top","uv":[0,16,16,0]}}},{"from":[0,0,0],"to":[2,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[2,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,14],"to":[16,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,0],"to":[16,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,14,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom"}}},{"from":[2,14,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","cullface":"south"},"down":{"texture":"#bottom"}}},{"from":[14,14,2],"to":[16,16,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom"}}},{"from":[0,14,2],"to":[2,16,14],"faces":{"east":{"texture":"#side"},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom"}}},{"from":[0,1.99,0],"to":[16,2,16],"faces":{"up":{"texture":"#top"},"down":{"uv":[0,16,16,0],"texture":"#top"}}},{"from":[2,0,0],"to":[14,2,2],"faces":{"north":{"texture":"#side","uv":[2,0,14,2],"cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[2,0,14],"to":[14,2,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","uv":[2,0,14,2],"cullface":"south"},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[14,0,2],"to":[16,2,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[0,0,2],"to":[2,2,14],"faces":{"east":{"texture":"#side","uv":[2,0,14,2]},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom","cullface":"bottom"}}}]},"seagrass":{"parent":"block/block","ambientocclusion":false,"textures":{"seagrass":"block/seagrass","particle":"block/seagrass"},"elements":[{"from":[0,0,4],"to":[16,16,4],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0}}},{"from":[12,0,0],"to":[12,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0}}},{"from":[4,0,0],"to":[4,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0}}},{"from":[0,0,12],"to":[16,16,12],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#seagrass","tintindex":0}}}]},"sea_lantern":{"parent":"block/cube_all","textures":{"all":"block/sea_lantern"}},"sea_pickle":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[6,0,6],"to":[10,6,10],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,6],"to":[10,5.95,10],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[7.5,5.2,8],"to":[8.5,8.7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[8,5.2,7.5],"to":[8,8.7,8.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"shulker_box":{"textures":{"particle":"block/shulker_box"}},"skull":{"textures":{"particle":"block/soul_sand"}},"slab":{"parent":"block/block","textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}}]},"slab_top":{"textures":{"particle":"#side"},"elements":[{"from":[0,8,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,16,8],"texture":"#side","cullface":"north"},"south":{"uv":[0,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}}]},"slightly_cracked_turtle_egg":{"parent":"block/turtle_egg","textures":{"particle":"block/turtle_egg_slightly_cracked","all":"block/turtle_egg_slightly_cracked"}},"slime_block":{"parent":"block/block","textures":{"particle":"block/slime_block","texture":"block/slime_block"},"elements":[{"from":[3,3,3],"to":[13,13,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#texture"},"up":{"uv":[3,3,13,13],"texture":"#texture"},"north":{"uv":[3,3,13,13],"texture":"#texture"},"south":{"uv":[3,3,13,13],"texture":"#texture"},"west":{"uv":[3,3,13,13],"texture":"#texture"},"east":{"uv":[3,3,13,13],"texture":"#texture"}}},{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#texture","cullface":"east"}}}]},"smithing_table":{"parent":"block/cube","textures":{"particle":"block/smithing_table_front","down":"block/smithing_table_bottom","up":"block/smithing_table_top","north":"block/smithing_table_front","east":"block/smithing_table_side","south":"block/smithing_table_front","west":"block/smithing_table_side"}},"smoker":{"parent":"block/orientable_with_bottom","textures":{"bottom":"block/smoker_bottom","top":"block/smoker_top","front":"block/smoker_front","side":"block/smoker_side"}},"smoker_on":{"parent":"block/cube","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"particle":"block/smoker_front_on","down":"block/smoker_bottom","up":"block/smoker_top","north":"block/smoker_front_on","east":"block/smoker_side","south":"block/smoker_side","west":"block/smoker_side"}},"smooth_quartz":{"parent":"block/cube_all","textures":{"all":"block/quartz_block_bottom"}},"smooth_quartz_slab":{"parent":"block/slab","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_bottom","side":"block/quartz_block_bottom"}},"smooth_quartz_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_bottom","side":"block/quartz_block_bottom"}},"smooth_quartz_stairs":{"parent":"block/stairs","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_bottom","side":"block/quartz_block_bottom"}},"smooth_quartz_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_bottom","side":"block/quartz_block_bottom"}},"smooth_quartz_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/quartz_block_bottom","top":"block/quartz_block_bottom","side":"block/quartz_block_bottom"}},"smooth_red_sandstone":{"parent":"block/cube_all","textures":{"all":"block/red_sandstone_top"}},"smooth_red_sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/red_sandstone_top"}},"smooth_red_sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/red_sandstone_top"}},"smooth_red_sandstone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/red_sandstone_top"}},"smooth_red_sandstone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/red_sandstone_top"}},"smooth_red_sandstone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/red_sandstone_top","top":"block/red_sandstone_top","side":"block/red_sandstone_top"}},"smooth_sandstone":{"parent":"block/cube_all","textures":{"all":"block/sandstone_top"}},"smooth_sandstone_slab":{"parent":"block/slab","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/sandstone_top"}},"smooth_sandstone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/sandstone_top"}},"smooth_sandstone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/sandstone_top"}},"smooth_sandstone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/sandstone_top"}},"smooth_sandstone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/sandstone_top","top":"block/sandstone_top","side":"block/sandstone_top"}},"smooth_stone":{"parent":"block/cube_all","textures":{"all":"block/smooth_stone"}},"smooth_stone_slab":{"parent":"block/slab","textures":{"bottom":"block/smooth_stone","top":"block/smooth_stone","side":"block/smooth_stone_slab_side"}},"smooth_stone_slab_double":{"parent":"block/cube_column","textures":{"end":"block/smooth_stone","side":"block/smooth_stone_slab_side"}},"smooth_stone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/smooth_stone","top":"block/smooth_stone","side":"block/smooth_stone_slab_side"}},"snow_block":{"parent":"block/cube_all","textures":{"all":"block/snow"}},"snow_height10":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,10,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,6,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,6,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,6,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,6,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height12":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,12,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,4,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,4,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,4,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height14":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,14,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,2,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,2,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,2,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,2,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height2":{"parent":"block/thin_block","textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,14,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height4":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,4,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,12,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,12,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,12,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,12,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height6":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,6,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,10,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,10,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,10,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,10,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height8":{"textures":{"particle":"block/snow","texture":"block/snow"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,8,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#texture","cullface":"east"}}}]},"soul_sand":{"parent":"block/cube_all","textures":{"all":"block/soul_sand"}},"spawner":{"parent":"block/cube_all","textures":{"all":"block/spawner"}},"sponge":{"parent":"block/cube_all","textures":{"all":"block/sponge"}},"spruce_button":{"parent":"block/button","textures":{"texture":"block/spruce_planks"}},"spruce_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/spruce_planks"}},"spruce_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/spruce_planks"}},"spruce_door_bottom":{"parent":"block/door_bottom","textures":{"bottom":"block/spruce_door_bottom","top":"block/spruce_door_top"}},"spruce_door_bottom_hinge":{"parent":"block/door_bottom_rh","textures":{"bottom":"block/spruce_door_bottom","top":"block/spruce_door_top"}},"spruce_door_top":{"parent":"block/door_top","textures":{"bottom":"block/spruce_door_bottom","top":"block/spruce_door_top"}},"spruce_door_top_hinge":{"parent":"block/door_top_rh","textures":{"bottom":"block/spruce_door_bottom","top":"block/spruce_door_top"}},"spruce_fence_gate":{"parent":"block/template_fence_gate","textures":{"texture":"block/spruce_planks"}},"spruce_fence_gate_open":{"parent":"block/template_fence_gate_open","textures":{"texture":"block/spruce_planks"}},"spruce_fence_gate_wall":{"parent":"block/template_fence_gate_wall","textures":{"texture":"block/spruce_planks"}},"spruce_fence_gate_wall_open":{"parent":"block/template_fence_gate_wall_open","textures":{"texture":"block/spruce_planks"}},"spruce_fence_inventory":{"parent":"block/fence_inventory","textures":{"texture":"block/spruce_planks"}},"spruce_fence_post":{"parent":"block/fence_post","textures":{"texture":"block/spruce_planks"}},"spruce_fence_side":{"parent":"block/fence_side","textures":{"texture":"block/spruce_planks"}},"spruce_leaves":{"parent":"block/leaves","textures":{"all":"block/spruce_leaves"}},"spruce_log":{"parent":"block/cube_column","textures":{"end":"block/spruce_log_top","side":"block/spruce_log"}},"spruce_planks":{"parent":"block/cube_all","textures":{"all":"block/spruce_planks"}},"spruce_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/spruce_planks"}},"spruce_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/spruce_planks"}},"spruce_sapling":{"parent":"block/cross","textures":{"cross":"block/spruce_sapling"}},"spruce_sign":{"textures":{"particle":"block/spruce_planks"}},"spruce_slab":{"parent":"block/slab","textures":{"bottom":"block/spruce_planks","top":"block/spruce_planks","side":"block/spruce_planks"}},"spruce_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/spruce_planks","top":"block/spruce_planks","side":"block/spruce_planks"}},"spruce_stairs":{"parent":"block/stairs","textures":{"bottom":"block/spruce_planks","top":"block/spruce_planks","side":"block/spruce_planks"}},"spruce_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/spruce_planks","top":"block/spruce_planks","side":"block/spruce_planks"}},"spruce_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/spruce_planks","top":"block/spruce_planks","side":"block/spruce_planks"}},"spruce_trapdoor_bottom":{"parent":"block/template_orientable_trapdoor_bottom","textures":{"texture":"block/spruce_trapdoor"}},"spruce_trapdoor_open":{"parent":"block/template_orientable_trapdoor_open","textures":{"texture":"block/spruce_trapdoor"}},"spruce_trapdoor_top":{"parent":"block/template_orientable_trapdoor_top","textures":{"texture":"block/spruce_trapdoor"}},"spruce_wood":{"parent":"block/cube_column","textures":{"end":"block/spruce_log","side":"block/spruce_log"}},"stairs":{"parent":"block/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"head":{"rotation":[0,-90,0],"translation":[0,0,0],"scale":[1,1,1]},"thirdperson_lefthand":{"rotation":[75,-135,0],"translation":[0,2.5,0],"scale":[0.375,0.375,0.375]}},"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,0],"to":[16,16,16],"faces":{"up":{"uv":[8,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side","cullface":"north"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}}]},"stem_fruit":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,7,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[0,0,8],"to":[9,16,8],"faces":{"north":{"uv":[9,0,0,16],"texture":"#upperstem","tintindex":0},"south":{"uv":[0,0,9,16],"texture":"#upperstem","tintindex":0}}}]},"stem_growth0":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,1,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,2],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,2],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,1,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,2],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,2],"texture":"#stem","tintindex":0}}}]},"stem_growth1":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,3,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,4],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,4],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,3,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,4],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,4],"texture":"#stem","tintindex":0}}}]},"stem_growth2":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,5,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,6],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,6],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,5,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,6],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,6],"texture":"#stem","tintindex":0}}}]},"stem_growth3":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,7,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}}]},"stem_growth4":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,9,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,10],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,10],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,9,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,10],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,10],"texture":"#stem","tintindex":0}}}]},"stem_growth5":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,11,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,12],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,12],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,11,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,12],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,12],"texture":"#stem","tintindex":0}}}]},"stem_growth6":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,13,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,14],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,14],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,13,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,14],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,14],"texture":"#stem","tintindex":0}}}]},"stem_growth7":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,15,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,16],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,15,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,16],"texture":"#stem","tintindex":0}}}]},"sticky_piston":{"parent":"block/template_piston","textures":{"bottom":"block/piston_bottom","side":"block/piston_side","platform":"block/piston_top_sticky"}},"sticky_piston_inventory":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/piston_bottom","side":"block/piston_side","top":"block/piston_top_sticky"}},"stone":{"parent":"block/cube_all","textures":{"all":"block/stone"}},"stonecutter":{"parent":"block/block","textures":{"particle":"block/stonecutter_bottom","bottom":"block/stonecutter_bottom","top":"block/stonecutter_top","side":"block/stonecutter_side","saw":"block/stonecutter_saw"},"elements":[{"from":[0,0,0],"to":[16,9,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,7,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,7,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,7,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,7,16,16],"texture":"#side","cullface":"east"}}},{"from":[1,9,8],"to":[15,16,8],"faces":{"north":{"uv":[1,9,15,16],"texture":"#saw","tintindex":0},"south":{"uv":[1,9,15,16],"texture":"#saw","tintindex":0}}}]},"stone_bricks":{"parent":"block/cube_all","textures":{"all":"block/stone_bricks"}},"stone_brick_slab":{"parent":"block/slab","textures":{"bottom":"block/stone_bricks","top":"block/stone_bricks","side":"block/stone_bricks"}},"stone_brick_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/stone_bricks","top":"block/stone_bricks","side":"block/stone_bricks"}},"stone_brick_stairs":{"parent":"block/stairs","textures":{"bottom":"block/stone_bricks","top":"block/stone_bricks","side":"block/stone_bricks"}},"stone_brick_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/stone_bricks","top":"block/stone_bricks","side":"block/stone_bricks"}},"stone_brick_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/stone_bricks","top":"block/stone_bricks","side":"block/stone_bricks"}},"stone_brick_wall_inventory":{"parent":"block/wall_inventory","textures":{"wall":"block/stone_bricks"}},"stone_brick_wall_post":{"parent":"block/template_wall_post","textures":{"wall":"block/stone_bricks"}},"stone_brick_wall_side":{"parent":"block/template_wall_side","textures":{"wall":"block/stone_bricks"}},"stone_button":{"parent":"block/button","textures":{"texture":"block/stone"}},"stone_button_inventory":{"parent":"block/button_inventory","textures":{"texture":"block/stone"}},"stone_button_pressed":{"parent":"block/button_pressed","textures":{"texture":"block/stone"}},"stone_mirrored":{"parent":"block/cube_mirrored_all","textures":{"all":"block/stone"}},"stone_pressure_plate":{"parent":"block/pressure_plate_up","textures":{"texture":"block/stone"}},"stone_pressure_plate_down":{"parent":"block/pressure_plate_down","textures":{"texture":"block/stone"}},"stone_slab":{"parent":"block/slab","textures":{"bottom":"block/stone","top":"block/stone","side":"block/stone"}},"stone_slab_top":{"parent":"block/slab_top","textures":{"bottom":"block/stone","top":"block/stone","side":"block/stone"}},"stone_stairs":{"parent":"block/stairs","textures":{"bottom":"block/stone","top":"block/stone","side":"block/stone"}},"stone_stairs_inner":{"parent":"block/inner_stairs","textures":{"bottom":"block/stone","top":"block/stone","side":"block/stone"}},"stone_stairs_outer":{"parent":"block/outer_stairs","textures":{"bottom":"block/stone","top":"block/stone","side":"block/stone"}},"stripped_acacia_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_acacia_log_top","side":"block/stripped_acacia_log"}},"stripped_acacia_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_acacia_log","side":"block/stripped_acacia_log"}},"stripped_birch_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_birch_log_top","side":"block/stripped_birch_log"}},"stripped_birch_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_birch_log","side":"block/stripped_birch_log"}},"stripped_dark_oak_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_dark_oak_log_top","side":"block/stripped_dark_oak_log"}},"stripped_dark_oak_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_dark_oak_log","side":"block/stripped_dark_oak_log"}},"stripped_jungle_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_jungle_log_top","side":"block/stripped_jungle_log"}},"stripped_jungle_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_jungle_log","side":"block/stripped_jungle_log"}},"stripped_oak_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_oak_log_top","side":"block/stripped_oak_log"}},"stripped_oak_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_oak_log","side":"block/stripped_oak_log"}},"stripped_spruce_log":{"parent":"block/cube_column","textures":{"end":"block/stripped_spruce_log_top","side":"block/stripped_spruce_log"}},"stripped_spruce_wood":{"parent":"block/cube_column","textures":{"end":"block/stripped_spruce_log","side":"block/stripped_spruce_log"}},"structure_block":{"parent":"block/cube_all","textures":{"all":"block/structure_block"}},"structure_block_corner":{"parent":"block/cube_all","textures":{"all":"block/structure_block_corner"}},"structure_block_data":{"parent":"block/cube_all","textures":{"all":"block/structure_block_data"}},"structure_block_load":{"parent":"block/cube_all","textures":{"all":"block/structure_block_load"}},"structure_block_save":{"parent":"block/cube_all","textures":{"all":"block/structure_block_save"}},"structure_void":{"textures":{"particle":"item/structure_void"}},"sugar_cane":{"parent":"block/tinted_cross","textures":{"cross":"block/sugar_cane"}},"sunflower_bottom":{"parent":"block/cross","textures":{"cross":"block/sunflower_bottom"}},"sunflower_top":{"ambientocclusion":false,"textures":{"particle":"block/sunflower_front","cross":"block/sunflower_top","back":"block/sunflower_back","front":"block/sunflower_front"},"elements":[{"from":[0.8,0,8],"to":[15.2,8,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,8,16,16],"texture":"#cross"},"south":{"uv":[0,8,16,16],"texture":"#cross"}}},{"from":[8,0,0.8],"to":[8,8,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,8,16,16],"texture":"#cross"},"east":{"uv":[0,8,16,16],"texture":"#cross"}}},{"from":[9.6,-1,1],"to":[9.6,15,15],"rotation":{"origin":[8,8,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#back"},"east":{"uv":[0,0,16,16],"texture":"#front"}}}]},"sweet_berry_bush_stage0":{"parent":"block/cross","textures":{"cross":"block/sweet_berry_bush_stage0"}},"sweet_berry_bush_stage1":{"parent":"block/cross","textures":{"cross":"block/sweet_berry_bush_stage1"}},"sweet_berry_bush_stage2":{"parent":"block/cross","textures":{"cross":"block/sweet_berry_bush_stage2"}},"sweet_berry_bush_stage3":{"parent":"block/cross","textures":{"cross":"block/sweet_berry_bush_stage3"}},"tall_grass_bottom":{"parent":"block/tinted_cross","textures":{"cross":"block/tall_grass_bottom"}},"tall_grass_top":{"parent":"block/tinted_cross","textures":{"cross":"block/tall_grass_top"}},"tall_seagrass_bottom":{"parent":"block/seagrass","textures":{"seagrass":"block/tall_seagrass_bottom","particle":"block/tall_seagrass_bottom"}},"tall_seagrass_top":{"parent":"block/seagrass","textures":{"seagrass":"block/tall_seagrass_top","particle":"block/tall_seagrass_top"}},"template_farmland":{"parent":"block/block","elements":[{"from":[0,0,0],"to":[16,15,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#dirt","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"north"},"south":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"south"},"west":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"west"},"east":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"east"}}}]},"template_fence_gate":{"parent":"block/block","display":{"gui":{"rotation":[30,45,0],"translation":[0,-1,0],"scale":[0.8,0.8,0.8]},"head":{"rotation":[0,0,0],"translation":[0,-3,-6],"scale":[1,1,1]}},"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,5,7],"to":[2,16,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,5,7],"to":[16,16,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[6,6,7],"to":[8,15,9],"faces":{"down":{"uv":[6,7,8,9],"texture":"#texture"},"up":{"uv":[6,7,8,9],"texture":"#texture"},"north":{"uv":[6,1,8,10],"texture":"#texture"},"south":{"uv":[6,1,8,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[8,6,7],"to":[10,15,9],"faces":{"down":{"uv":[8,7,10,9],"texture":"#texture"},"up":{"uv":[8,7,10,9],"texture":"#texture"},"north":{"uv":[8,1,10,10],"texture":"#texture"},"south":{"uv":[8,1,10,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[2,6,7],"to":[6,9,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,7,6,10],"texture":"#texture"},"south":{"uv":[2,7,6,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[2,12,7],"to":[6,15,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,1,6,4],"texture":"#texture"},"south":{"uv":[2,1,6,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of right-hand gate door","from":[10,6,7],"to":[14,9,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,7,14,10],"texture":"#texture"},"south":{"uv":[10,7,14,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of right-hand gate door","from":[10,12,7],"to":[14,15,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,1,14,4],"texture":"#texture"},"south":{"uv":[10,1,14,4],"texture":"#texture"}}}]},"template_fence_gate_open":{"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,5,7],"to":[2,16,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,5,7],"to":[16,16,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[0,6,13],"to":[2,15,15],"faces":{"down":{"uv":[0,13,2,15],"texture":"#texture"},"up":{"uv":[0,13,2,15],"texture":"#texture"},"north":{"uv":[0,1,2,10],"texture":"#texture"},"south":{"uv":[0,1,2,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[14,6,13],"to":[16,15,15],"faces":{"down":{"uv":[14,13,16,15],"texture":"#texture"},"up":{"uv":[14,13,16,15],"texture":"#texture"},"north":{"uv":[14,1,16,10],"texture":"#texture"},"south":{"uv":[14,1,16,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[0,6,9],"to":[2,9,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[0,12,9],"to":[2,15,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[14,6,9],"to":[16,9,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[14,12,9],"to":[16,15,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}}]},"template_fence_gate_wall":{"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,2,7],"to":[2,13,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,2,7],"to":[16,13,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[6,3,7],"to":[8,12,9],"faces":{"down":{"uv":[6,7,8,9],"texture":"#texture"},"up":{"uv":[6,7,8,9],"texture":"#texture"},"north":{"uv":[6,1,8,10],"texture":"#texture"},"south":{"uv":[6,1,8,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[8,3,7],"to":[10,12,9],"faces":{"down":{"uv":[8,7,10,9],"texture":"#texture"},"up":{"uv":[8,7,10,9],"texture":"#texture"},"north":{"uv":[8,1,10,10],"texture":"#texture"},"south":{"uv":[8,1,10,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[2,3,7],"to":[6,6,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,7,6,10],"texture":"#texture"},"south":{"uv":[2,7,6,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[2,9,7],"to":[6,12,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,1,6,4],"texture":"#texture"},"south":{"uv":[2,1,6,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of right-hand gate door","from":[10,3,7],"to":[14,6,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,7,14,10],"texture":"#texture"},"south":{"uv":[10,7,14,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of right-hand gate door","from":[10,9,7],"to":[14,12,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,1,14,4],"texture":"#texture"},"south":{"uv":[10,1,14,4],"texture":"#texture"}}}]},"template_fence_gate_wall_open":{"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,2,7],"to":[2,13,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,2,7],"to":[16,13,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[0,3,13],"to":[2,12,15],"faces":{"down":{"uv":[0,13,2,15],"texture":"#texture"},"up":{"uv":[0,13,2,15],"texture":"#texture"},"north":{"uv":[0,1,2,10],"texture":"#texture"},"south":{"uv":[0,1,2,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[14,3,13],"to":[16,12,15],"faces":{"down":{"uv":[14,13,16,15],"texture":"#texture"},"up":{"uv":[14,13,16,15],"texture":"#texture"},"north":{"uv":[14,1,16,10],"texture":"#texture"},"south":{"uv":[14,1,16,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[0,3,9],"to":[2,6,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[0,9,9],"to":[2,12,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[14,3,9],"to":[16,6,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[14,9,9],"to":[16,12,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}}]},"template_glass_pane_noside":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"north":{"uv":[9,0,7,16],"texture":"#pane"}}}]},"template_glass_pane_noside_alt":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"east":{"uv":[7,0,9,16],"texture":"#pane"}}}]},"template_glass_pane_post":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}}]},"template_glass_pane_side":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,0],"to":[9,16,7],"faces":{"down":{"uv":[7,0,9,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"},"north":{"uv":[7,0,9,16],"texture":"#edge","cullface":"north"},"west":{"uv":[16,0,9,16],"texture":"#pane"},"east":{"uv":[9,0,16,16],"texture":"#pane"}}}]},"template_glass_pane_side_alt":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,9],"to":[9,16,16],"faces":{"down":{"uv":[7,0,9,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"},"south":{"uv":[7,0,9,16],"texture":"#edge","cullface":"south"},"west":{"uv":[7,0,0,16],"texture":"#pane"},"east":{"uv":[0,0,7,16],"texture":"#pane"}}}]},"template_glazed_terracotta":{"parent":"block/cube","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"north","rotation":90},"south":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"south","rotation":270},"west":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"west","rotation":0},"east":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"east","rotation":180}}}]},"template_orientable_trapdoor_bottom":{"parent":"block/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[0,0,0],"to":[16,3,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,16,16,0],"texture":"#texture"},"north":{"uv":[0,0,16,3],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,3],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,3],"texture":"#texture","cullface":"east"}}}]},"template_orientable_trapdoor_open":{"textures":{"particle":"#texture"},"elements":[{"from":[0,0,13],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,3],"texture":"#texture","cullface":"down"},"up":{"uv":[0,3,16,0],"texture":"#texture","cullface":"up"},"north":{"uv":[0,16,16,0],"texture":"#texture"},"south":{"uv":[0,16,16,0],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"rotation":90,"texture":"#texture","cullface":"west"},"east":{"uv":[0,3,16,0],"rotation":90,"texture":"#texture","cullface":"east"}}}]},"template_orientable_trapdoor_top":{"textures":{"particle":"#texture"},"elements":[{"from":[0,13,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture"},"up":{"uv":[0,16,16,0],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,3],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,3],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,3],"texture":"#texture","cullface":"east"}}}]},"template_piston":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#side","rotation":180,"cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","rotation":90,"cullface":"east"}}}]},"template_piston_head":{"textures":{"particle":"#platform"},"elements":[{"from":[0,0,0],"to":[16,16,4],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,0,16,4],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#unsticky"},"west":{"uv":[0,0,16,4],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,4],"texture":"#side","rotation":90,"cullface":"east"}}},{"from":[6,6,4],"to":[10,10,20],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","rotation":90},"up":{"uv":[0,0,16,4],"texture":"#side","rotation":270},"west":{"uv":[16,4,0,0],"texture":"#side"},"east":{"uv":[0,0,16,4],"texture":"#side"}}}]},"template_piston_head_short":{"textures":{"particle":"#platform"},"elements":[{"from":[0,0,0],"to":[16,16,4],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,0,16,4],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#unsticky"},"west":{"uv":[0,0,16,4],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,4],"texture":"#side","rotation":90,"cullface":"east"}}},{"from":[6,6,4],"to":[10,10,16],"faces":{"down":{"uv":[4,0,16,4],"texture":"#side","rotation":90},"up":{"uv":[4,0,16,4],"texture":"#side","rotation":270},"west":{"uv":[16,4,4,0],"texture":"#side"},"east":{"uv":[4,0,16,4],"texture":"#side"}}}]},"template_rail_raised_ne":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,9,0],"to":[16,9,16],"rotation":{"origin":[8,9,8],"axis":"x","angle":45,"rescale":true},"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"template_rail_raised_sw":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,9,0],"to":[16,9,16],"rotation":{"origin":[8,9,8],"axis":"x","angle":-45,"rescale":true},"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"template_torch":{"ambientocclusion":false,"textures":{"particle":"#torch"},"elements":[{"from":[7,0,7],"to":[9,10,9],"shade":false,"faces":{"down":{"uv":[7,13,9,15],"texture":"#torch"},"up":{"uv":[7,6,9,8],"texture":"#torch"}}},{"from":[7,0,0],"to":[9,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#torch"},"east":{"uv":[0,0,16,16],"texture":"#torch"}}},{"from":[0,0,7],"to":[16,16,9],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#torch"},"south":{"uv":[0,0,16,16],"texture":"#torch"}}}]},"template_trapdoor_bottom":{"parent":"block/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[0,0,0],"to":[16,3,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,16,16,13],"texture":"#texture","cullface":"north"},"south":{"uv":[0,16,16,13],"texture":"#texture","cullface":"south"},"west":{"uv":[0,16,16,13],"texture":"#texture","cullface":"west"},"east":{"uv":[0,16,16,13],"texture":"#texture","cullface":"east"}}}]},"template_trapdoor_open":{"textures":{"particle":"#texture"},"elements":[{"from":[0,0,13],"to":[16,16,16],"faces":{"down":{"uv":[0,13,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,16,16,13],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#texture"},"south":{"uv":[0,0,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[16,0,13,16],"texture":"#texture","cullface":"west"},"east":{"uv":[13,0,16,16],"texture":"#texture","cullface":"east"}}}]},"template_trapdoor_top":{"textures":{"particle":"#texture"},"elements":[{"from":[0,13,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture"},"up":{"uv":[0,0,16,16],"texture":"#texture","cullface":"up"},"north":{"uv":[0,16,16,13],"texture":"#texture","cullface":"north"},"south":{"uv":[0,16,16,13],"texture":"#texture","cullface":"south"},"west":{"uv":[0,16,16,13],"texture":"#texture","cullface":"west"},"east":{"uv":[0,16,16,13],"texture":"#texture","cullface":"east"}}}]},"template_wall_post":{"textures":{"particle":"#wall"},"elements":[{"from":[4,0,4],"to":[12,16,12],"faces":{"down":{"texture":"#wall","cullface":"down"},"up":{"texture":"#wall","cullface":"up"},"north":{"texture":"#wall"},"south":{"texture":"#wall"},"west":{"texture":"#wall"},"east":{"texture":"#wall"}},"__comment":"Center post"}]},"template_wall_side":{"textures":{"particle":"#wall"},"elements":[{"from":[5,0,0],"to":[11,14,8],"faces":{"down":{"texture":"#wall","cullface":"down"},"up":{"texture":"#wall"},"north":{"texture":"#wall","cullface":"north"},"west":{"texture":"#wall"},"east":{"texture":"#wall"}},"__comment":"wall"}]},"terracotta":{"parent":"block/cube_all","textures":{"all":"block/terracotta"}},"thin_block":{"parent":"block/block","display":{"thirdperson_righthand":{"rotation":[75,45,0],"translation":[0,2.5,2],"scale":[0.375,0.375,0.375]},"firstperson_righthand":{"rotation":[0,45,0],"translation":[0,4.2,0],"scale":[0.4,0.4,0.4]},"firstperson_lefthand":{"rotation":[0,225,0],"translation":[0,4.2,0],"scale":[0.4,0.4,0.4]}}},"three_dead_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[6,0,9],"to":[10,6,13],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,9],"to":[10,5.95,13],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,2],"to":[6,4,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[2,3.95,2],"to":[6,3.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,4],"to":[12,6,8],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[8,5.95,4],"to":[12,5.95,8],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"three_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[6,0,9],"to":[10,6,13],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,9],"to":[10,5.95,13],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,2],"to":[6,4,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[2,3.95,2],"to":[6,3.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,4],"to":[12,6,8],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[8,5.95,4],"to":[12,5.95,8],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[7.5,5.2,11],"to":[8.5,8.7,11],"rotation":{"origin":[8,8,11],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[8,5.2,10.5],"to":[8,8.7,11.5],"rotation":{"origin":[8,8,11],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[3.5,3.2,4],"to":[4.5,6.7,4],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,3.2,3.5],"to":[4,6.7,4.5],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[9.5,5.2,6],"to":[10.5,8.7,6],"rotation":{"origin":[10,8,6],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10,5.2,5.5],"to":[10,8.7,6.5],"rotation":{"origin":[10,8,6],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"three_slightly_cracked_turtle_eggs":{"parent":"block/three_turtle_eggs","textures":{"all":"block/turtle_egg_slightly_cracked"}},"three_turtle_eggs":{"parent":"block/block","textures":{"particle":"block/turtle_egg","all":"block/turtle_egg"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}},{"from":[11,0,7],"to":[14,4,10],"faces":{"down":{"uv":[5,0,8,3],"texture":"#all","cullface":"down"},"up":{"uv":[5,0,8,3],"texture":"#all"},"north":{"uv":[8,3,11,7],"texture":"#all"},"south":{"uv":[8,3,11,7],"texture":"#all"},"west":{"uv":[8,3,11,7],"texture":"#all"},"east":{"uv":[8,3,11,7],"texture":"#all"}}}]},"three_very_cracked_turtle_eggs":{"parent":"block/three_turtle_eggs","textures":{"all":"block/turtle_egg_very_cracked"}},"tinted_cross":{"ambientocclusion":false,"textures":{"particle":"#cross"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0}}}]},"tnt":{"parent":"block/cube_bottom_top","textures":{"bottom":"block/tnt_bottom","top":"block/tnt_top","side":"block/tnt_side"}},"torch":{"parent":"block/template_torch","textures":{"torch":"block/torch"}},"torch_wall":{"ambientocclusion":false,"textures":{"particle":"#torch"},"elements":[{"from":[-1,3.5,7],"to":[1,13.5,9],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"down":{"uv":[7,13,9,15],"texture":"#torch"},"up":{"uv":[7,6,9,8],"texture":"#torch"}}},{"from":[-1,3.5,0],"to":[1,19.5,16],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#torch"},"east":{"uv":[0,0,16,16],"texture":"#torch"}}},{"from":[-8,3.5,7],"to":[8,19.5,9],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#torch"},"south":{"uv":[0,0,16,16],"texture":"#torch"}}}]},"tripwire_attached_n":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}}]},"tripwire_attached_ne":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_attached_ns":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}}]},"tripwire_attached_nse":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_attached_nsew":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[0,1.5,7.75],"to":[4,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[4,1.5,7.75],"to":[8,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_hook":{"textures":{"particle":"block/oak_planks","hook":"block/tripwire_hook","wood":"block/oak_planks"},"elements":[{"from":[6.2,3.8,7.9],"to":[9.8,4.6,11.5],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,3.8,10.3],"to":[8.6,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,3.8,9.1],"to":[8.6,4.6,9.1],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,3.8,9.1],"to":[7.4,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,3.8,9.1],"to":[8.6,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":45},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_attached":{"textures":{"particle":"block/oak_planks","hook":"block/tripwire_hook","wood":"block/oak_planks","tripwire":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,6.7],"rotation":{"origin":[8,0,0],"axis":"x","angle":-22.5,"rescale":true},"faces":{"down":{"uv":[0,8,16,6],"texture":"#tripwire","rotation":90},"up":{"uv":[0,6,16,8],"texture":"#tripwire","rotation":90}}},{"from":[6.2,4.2,6.7],"to":[9.8,5,10.3],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,4.2,9.1],"to":[8.6,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[8.6,5,7.9],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[7.4,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,4.2,7.9],"to":[8.6,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_attached_on":{"textures":{"particle":"block/oak_planks","hook":"block/tripwire_hook","wood":"block/oak_planks","tripwire":"block/tripwire"},"elements":[{"from":[7.75,0.5,0],"to":[8.25,0.5,6.7],"rotation":{"origin":[8,0,0],"axis":"x","angle":-22.5,"rescale":true},"faces":{"down":{"uv":[0,8,16,6],"texture":"#tripwire","rotation":90},"up":{"uv":[0,6,16,8],"texture":"#tripwire","rotation":90}}},{"from":[6.2,3.4,6.7],"to":[9.8,4.2,10.3],"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,3.4,9.1],"to":[8.6,4.2,9.1],"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,3.4,7.9],"to":[8.6,4.2,7.9],"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,3.4,7.9],"to":[7.4,4.2,9.1],"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,3.4,7.9],"to":[8.6,4.2,9.1],"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":-22.5},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_on":{"textures":{"particle":"block/oak_planks","hook":"block/tripwire_hook","wood":"block/oak_planks"},"elements":[{"from":[6.2,4.2,6.7],"to":[9.8,5,10.3],"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,4.2,9.1],"to":[8.6,5,9.1],"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[8.6,5,7.9],"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[7.4,5,9.1],"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,4.2,7.9],"to":[8.6,5,9.1],"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":-22.5},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_n":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}}]},"tripwire_ne":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tripwire_ns":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}}]},"tripwire_nse":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tripwire_nsew":{"ambientocclusion":false,"textures":{"particle":"block/tripwire","texture":"block/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[0,1.5,7.75],"to":[4,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[4,1.5,7.75],"to":[8,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tube_coral":{"parent":"block/cross","textures":{"cross":"block/tube_coral"}},"tube_coral_block":{"parent":"block/cube_all","textures":{"all":"block/tube_coral_block"}},"tube_coral_fan":{"parent":"block/coral_fan","textures":{"fan":"block/tube_coral_fan"}},"tube_coral_wall_fan":{"parent":"block/coral_wall_fan","textures":{"fan":"block/tube_coral_fan"}},"turtle_egg":{"parent":"block/block","textures":{"particle":"block/turtle_egg","all":"block/turtle_egg"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}}]},"two_dead_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[3,0,3],"to":[7,6,7],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[3,5.95,3],"to":[7,5.95,7],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,8],"to":[12,4,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[8,3.95,8],"to":[12,3.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"two_sea_pickles":{"parent":"block/block","textures":{"particle":"block/sea_pickle","all":"block/sea_pickle"},"elements":[{"from":[3,0,3],"to":[7,6,7],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[3,5.95,3],"to":[7,5.95,7],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,8],"to":[12,4,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[8,3.95,8],"to":[12,3.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[4.5,5.2,5],"to":[5.5,8.7,5],"rotation":{"origin":[5,5.6,5],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[5,5.2,4.5],"to":[5,8.7,5.5],"rotation":{"origin":[5,5.6,5],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[9.5,3.2,10],"to":[10.5,6.7,10],"rotation":{"origin":[10,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10,3.2,9.5],"to":[10,6.7,10.5],"rotation":{"origin":[10,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"two_slightly_cracked_turtle_eggs":{"parent":"block/two_turtle_eggs","textures":{"all":"block/turtle_egg_slightly_cracked"}},"two_turtle_eggs":{"parent":"block/block","textures":{"particle":"block/turtle_egg","all":"block/turtle_egg"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}}]},"two_very_cracked_turtle_eggs":{"parent":"block/two_turtle_eggs","textures":{"particle":"block/turtle_egg_very_cracked","all":"block/turtle_egg_very_cracked"}},"very_cracked_turtle_egg":{"parent":"block/turtle_egg","textures":{"particle":"block/turtle_egg_very_cracked","all":"block/turtle_egg_very_cracked"}},"vine_1":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_1u":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2u":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2u_opposite":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2_opposite":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_3":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_3u":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_4":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_4u":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_u":{"ambientocclusion":false,"textures":{"particle":"block/vine","vine":"block/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"wall_inventory":{"parent":"block/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"ambientocclusion":false,"textures":{"particle":"#wall"},"elements":[{"from":[4,0,4],"to":[12,16,12],"faces":{"down":{"uv":[4,4,12,12],"texture":"#wall","cullface":"down"},"up":{"uv":[4,4,12,12],"texture":"#wall"},"north":{"uv":[4,0,12,16],"texture":"#wall"},"south":{"uv":[4,0,12,16],"texture":"#wall"},"west":{"uv":[4,0,12,16],"texture":"#wall"},"east":{"uv":[4,0,12,16],"texture":"#wall"}},"__comment":"Center post"},{"from":[5,0,0],"to":[11,13,16],"faces":{"down":{"uv":[5,0,11,16],"texture":"#wall","cullface":"down"},"up":{"uv":[5,0,11,16],"texture":"#wall"},"north":{"uv":[5,3,11,16],"texture":"#wall","cullface":"north"},"south":{"uv":[5,3,11,16],"texture":"#wall","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#wall"},"east":{"uv":[0,3,16,16],"texture":"#wall"}},"__comment":"Full wall"}]},"wall_torch":{"parent":"block/torch_wall","textures":{"torch":"block/torch"}},"water":{"textures":{"particle":"block/water_still"}},"wet_sponge":{"parent":"block/cube_all","textures":{"all":"block/wet_sponge"}},"wheat_stage0":{"parent":"block/crop","textures":{"crop":"block/wheat_stage0"}},"wheat_stage1":{"parent":"block/crop","textures":{"crop":"block/wheat_stage1"}},"wheat_stage2":{"parent":"block/crop","textures":{"crop":"block/wheat_stage2"}},"wheat_stage3":{"parent":"block/crop","textures":{"crop":"block/wheat_stage3"}},"wheat_stage4":{"parent":"block/crop","textures":{"crop":"block/wheat_stage4"}},"wheat_stage5":{"parent":"block/crop","textures":{"crop":"block/wheat_stage5"}},"wheat_stage6":{"parent":"block/crop","textures":{"crop":"block/wheat_stage6"}},"wheat_stage7":{"parent":"block/crop","textures":{"crop":"block/wheat_stage7"}},"white_carpet":{"parent":"block/carpet","textures":{"particle":"block/white_wool","wool":"block/white_wool"}},"white_concrete":{"parent":"block/cube_all","textures":{"all":"block/white_concrete"}},"white_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/white_concrete_powder"}},"white_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/white_glazed_terracotta","pattern":"block/white_glazed_terracotta"}},"white_shulker_box":{"textures":{"particle":"block/white_shulker_box"}},"white_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/white_stained_glass"}},"white_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/white_stained_glass"}},"white_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/white_stained_glass"}},"white_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/white_stained_glass_pane_top","pane":"block/white_stained_glass"}},"white_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/white_stained_glass_pane_top","pane":"block/white_stained_glass"}},"white_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/white_stained_glass_pane_top","pane":"block/white_stained_glass"}},"white_terracotta":{"parent":"block/cube_all","textures":{"all":"block/white_terracotta"}},"white_tulip":{"parent":"block/cross","textures":{"cross":"block/white_tulip"}},"white_wool":{"parent":"block/cube_all","textures":{"all":"block/white_wool"}},"wither_rose":{"parent":"block/cross","textures":{"cross":"block/wither_rose"}},"yellow_carpet":{"parent":"block/carpet","textures":{"particle":"block/yellow_wool","wool":"block/yellow_wool"}},"yellow_concrete":{"parent":"block/cube_all","textures":{"all":"block/yellow_concrete"}},"yellow_concrete_powder":{"parent":"block/cube_all","textures":{"all":"block/yellow_concrete_powder"}},"yellow_glazed_terracotta":{"parent":"block/template_glazed_terracotta","textures":{"particle":"block/yellow_glazed_terracotta","pattern":"block/yellow_glazed_terracotta"}},"yellow_shulker_box":{"textures":{"particle":"block/yellow_shulker_box"}},"yellow_stained_glass":{"parent":"block/cube_all","textures":{"all":"block/yellow_stained_glass"}},"yellow_stained_glass_pane_noside":{"parent":"block/template_glass_pane_noside","textures":{"pane":"block/yellow_stained_glass"}},"yellow_stained_glass_pane_noside_alt":{"parent":"block/template_glass_pane_noside_alt","textures":{"pane":"block/yellow_stained_glass"}},"yellow_stained_glass_pane_post":{"parent":"block/template_glass_pane_post","textures":{"edge":"block/yellow_stained_glass_pane_top","pane":"block/yellow_stained_glass"}},"yellow_stained_glass_pane_side":{"parent":"block/template_glass_pane_side","textures":{"edge":"block/yellow_stained_glass_pane_top","pane":"block/yellow_stained_glass"}},"yellow_stained_glass_pane_side_alt":{"parent":"block/template_glass_pane_side_alt","textures":{"edge":"block/yellow_stained_glass_pane_top","pane":"block/yellow_stained_glass"}},"yellow_terracotta":{"parent":"block/cube_all","textures":{"all":"block/yellow_terracotta"}},"yellow_wool":{"parent":"block/cube_all","textures":{"all":"block/yellow_wool"}}},"tinted_textures":{"block/grass_block_top":[0,1,0],"block/grass":[0,1,0],"block/water_still":[0,0,1]}}
\ No newline at end of file
diff --git a/util/blockModelCombinder.py b/util/blockModelCombinder.py
new file mode 100644
index 000000000..51c99f4b9
--- /dev/null
+++ b/util/blockModelCombinder.py
@@ -0,0 +1,172 @@
+"""
+* Codename Minosoft
+* Copyright (C) 2020 Lukas Eisenhauer
+*
+* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License along with this program. If not, see .
+*
+* This software is not affiliated with Mojang AB, the original developer of Minecraft.
+"""
+# Codename Minosoft
+# Copyright (C) 2020 Moritz Zwerger
+#
+# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with this program. If not, see .
+#
+# This software is not affiliated with Mojang AB, the original developer of Minecraft.
+
+# The blockModels are contained in the minecraft.jar file. Extract the assets/minecraft folder and place this file in the same folder
+
+import \
+ json
+import \
+ os
+
+blockStates = {}
+blockModels = {}
+
+modName = "minecraft"
+
+blockStatesDir = modName + "/blockstates/"
+blockModelsDir = modName + "/models/block/"
+
+print(
+ "loading blockstates...")
+for blockStateFile in os.listdir(
+ blockStatesDir):
+ with open(
+ blockStatesDir + blockStateFile,
+ "r") as file:
+ data = json.load(
+ file)
+ blockStates[
+ blockStateFile.split(
+ ".")[
+ 0]] = data
+
+print(
+ "counting models...")
+blockModelList = []
+for block in blockStates:
+ if "variants" in \
+ blockStates[
+ block]:
+ for variant in \
+ blockStates[
+ block][
+ "variants"]:
+ if type(
+ blockStates[
+ block][
+ "variants"][
+ variant]) == type(
+ {}):
+ if not \
+ blockStates[
+ block][
+ "variants"][
+ variant][
+ "model"] in blockModelList:
+ blockModelList.append(
+ blockStates[
+ block][
+ "variants"][
+ variant][
+ "model"])
+ elif type(
+ blockStates[
+ block][
+ "variants"][
+ variant]) == type(
+ []):
+ for subVariant in variant:
+ if not subVariant in blockModelList:
+ blockModelList.append(
+ subVariant)
+
+ elif "multipart" in \
+ blockStates[
+ block]:
+ for part in \
+ blockStates[
+ block][
+ "multipart"]:
+ if type(
+ part[
+ "apply"]) == type(
+ {}):
+ if not \
+ part[
+ "apply"][
+ "model"] in blockModelList:
+ blockModelList.append(
+ part[
+ "apply"][
+ "model"])
+ else:
+ for subPart in \
+ part[
+ "apply"]:
+ if not \
+ subPart[
+ "model"] in blockModelList:
+ blockModelList.append(
+ subPart[
+ "model"])
+
+ else:
+ print(
+ "FAILDED TO GET BLOCK MODELS FOR BLOCK " + block)
+
+print(
+ "loading models...")
+for blockModelFile in os.listdir(
+ blockModelsDir):
+ with open(
+ blockModelsDir + blockModelFile,
+ "r") as file:
+ data = json.load(
+ file)
+ blockModels[
+ blockModelFile.split(
+ ".")[
+ 0]] = data
+
+print(
+ "combining files...")
+finalJson = {
+ "blockStates": blockStates,
+ "blockModels": blockModels,
+ "tinted_textures": {
+ "block/grass_block_top": [
+ 0,
+ 1,
+ 0],
+ "block/grass": [
+ 0,
+ 1,
+ 0],
+ "block/water_still": [
+ 0,
+ 0,
+ 1]
+ }
+}
+
+print(
+ "saving...")
+with open(
+ "blockModels.json",
+ "w+") as file:
+ json.dump(
+ finalJson,
+ file)
+
+print(
+ "finished succesfully")