first pass
This commit is contained in:
105
assets.js
Normal file
105
assets.js
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
// assets.js
|
||||||
|
const jsonCache = new Map();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolves a namespace:path ID to a file path.
|
||||||
|
* Defaults to the 'minecraft' namespace if none is provided.
|
||||||
|
*/
|
||||||
|
export function resolveResourceLocation(id, type, ext = 'json') {
|
||||||
|
const parts = id.split(':');
|
||||||
|
const namespace = parts.length > 1 ? parts[0] : 'minecraft';
|
||||||
|
const path = parts.length > 1 ? parts[1] : parts[0];
|
||||||
|
return `assets/${namespace}/${type}/${path}.${ext}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchJSON(url) {
|
||||||
|
if (jsonCache.has(url)) return jsonCache.get(url);
|
||||||
|
const res = await fetch(url);
|
||||||
|
if (!res.ok) throw new Error(`Failed to load asset: ${url}`);
|
||||||
|
const data = await res.json();
|
||||||
|
jsonCache.set(url, data);
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function loadBlockstate(id) {
|
||||||
|
const url = resolveResourceLocation(id, 'blockstates');
|
||||||
|
return fetchJSON(url);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function loadModel(id) {
|
||||||
|
const url = resolveResourceLocation(id, 'models');
|
||||||
|
const model = await fetchJSON(url);
|
||||||
|
|
||||||
|
// Recursively resolve and merge parent models
|
||||||
|
if (model.parent) {
|
||||||
|
// Parents sometimes use block/ or item/ prefixes directly
|
||||||
|
const parentId = model.parent.includes(':') ? model.parent : `minecraft:${model.parent}`;
|
||||||
|
const parent = await loadModel(parentId);
|
||||||
|
|
||||||
|
// Merge textures
|
||||||
|
model.textures = { ...parent.textures, ...model.textures };
|
||||||
|
// Inherit elements if child doesn't override them
|
||||||
|
if (!model.elements) model.elements = parent.elements;
|
||||||
|
}
|
||||||
|
return model;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class TextureAtlas {
|
||||||
|
constructor(size = 512) {
|
||||||
|
this.canvas = document.createElement('canvas');
|
||||||
|
this.canvas.width = size;
|
||||||
|
this.canvas.height = size;
|
||||||
|
this.ctx = this.canvas.getContext('2d', { willReadFrequently: true });
|
||||||
|
this.ctx.imageSmoothingEnabled = false;
|
||||||
|
|
||||||
|
// Magenta background for missing textures
|
||||||
|
this.ctx.fillStyle = '#ff00ff';
|
||||||
|
this.ctx.fillRect(0, 0, size, size);
|
||||||
|
|
||||||
|
this.map = new Map();
|
||||||
|
this.cellSize = 16;
|
||||||
|
this.x = 0;
|
||||||
|
this.y = 0;
|
||||||
|
this.rowHeight = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
async load(id) {
|
||||||
|
if (this.map.has(id)) return this.map.get(id);
|
||||||
|
|
||||||
|
const url = resolveResourceLocation(id, 'textures', 'png');
|
||||||
|
|
||||||
|
try {
|
||||||
|
const img = await new Promise((resolve, reject) => {
|
||||||
|
const i = new Image();
|
||||||
|
i.crossOrigin = 'anonymous';
|
||||||
|
i.onload = () => resolve(i);
|
||||||
|
i.onerror = () => reject(new Error(url));
|
||||||
|
i.src = url;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (this.x + this.cellSize > this.canvas.width) {
|
||||||
|
this.x = 0;
|
||||||
|
this.y += this.rowHeight;
|
||||||
|
this.rowHeight = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.ctx.drawImage(img, this.x, this.y, this.cellSize, this.cellSize);
|
||||||
|
|
||||||
|
const uvData = {
|
||||||
|
u: this.x / this.canvas.width,
|
||||||
|
v: this.y / this.canvas.height,
|
||||||
|
du: this.cellSize / this.canvas.width,
|
||||||
|
dv: this.cellSize / this.canvas.height
|
||||||
|
};
|
||||||
|
|
||||||
|
this.map.set(id, uvData);
|
||||||
|
this.x += this.cellSize;
|
||||||
|
this.rowHeight = Math.max(this.rowHeight, this.cellSize);
|
||||||
|
|
||||||
|
return uvData;
|
||||||
|
} catch (e) {
|
||||||
|
console.warn(`Texture missing: ${id}`);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
0
assets/.mcassetsroot
Normal file
0
assets/.mcassetsroot
Normal file
64
assets/minecraft/atlases/armor_trims.json
Normal file
64
assets/minecraft/atlases/armor_trims.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:paletted_permutations",
|
||||||
|
"palette_key": "minecraft:trims/color_palettes/trim_palette",
|
||||||
|
"permutations": {
|
||||||
|
"amethyst": "minecraft:trims/color_palettes/amethyst",
|
||||||
|
"copper": "minecraft:trims/color_palettes/copper",
|
||||||
|
"copper_darker": "minecraft:trims/color_palettes/copper_darker",
|
||||||
|
"diamond": "minecraft:trims/color_palettes/diamond",
|
||||||
|
"diamond_darker": "minecraft:trims/color_palettes/diamond_darker",
|
||||||
|
"emerald": "minecraft:trims/color_palettes/emerald",
|
||||||
|
"gold": "minecraft:trims/color_palettes/gold",
|
||||||
|
"gold_darker": "minecraft:trims/color_palettes/gold_darker",
|
||||||
|
"iron": "minecraft:trims/color_palettes/iron",
|
||||||
|
"iron_darker": "minecraft:trims/color_palettes/iron_darker",
|
||||||
|
"lapis": "minecraft:trims/color_palettes/lapis",
|
||||||
|
"netherite": "minecraft:trims/color_palettes/netherite",
|
||||||
|
"netherite_darker": "minecraft:trims/color_palettes/netherite_darker",
|
||||||
|
"quartz": "minecraft:trims/color_palettes/quartz",
|
||||||
|
"redstone": "minecraft:trims/color_palettes/redstone",
|
||||||
|
"resin": "minecraft:trims/color_palettes/resin"
|
||||||
|
},
|
||||||
|
"textures": [
|
||||||
|
"minecraft:trims/entity/humanoid/sentry",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/sentry",
|
||||||
|
"minecraft:trims/entity/humanoid/dune",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/dune",
|
||||||
|
"minecraft:trims/entity/humanoid/coast",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/coast",
|
||||||
|
"minecraft:trims/entity/humanoid/wild",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/wild",
|
||||||
|
"minecraft:trims/entity/humanoid/ward",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/ward",
|
||||||
|
"minecraft:trims/entity/humanoid/eye",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/eye",
|
||||||
|
"minecraft:trims/entity/humanoid/vex",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/vex",
|
||||||
|
"minecraft:trims/entity/humanoid/tide",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/tide",
|
||||||
|
"minecraft:trims/entity/humanoid/snout",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/snout",
|
||||||
|
"minecraft:trims/entity/humanoid/rib",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/rib",
|
||||||
|
"minecraft:trims/entity/humanoid/spire",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/spire",
|
||||||
|
"minecraft:trims/entity/humanoid/wayfinder",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/wayfinder",
|
||||||
|
"minecraft:trims/entity/humanoid/shaper",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/shaper",
|
||||||
|
"minecraft:trims/entity/humanoid/silence",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/silence",
|
||||||
|
"minecraft:trims/entity/humanoid/raiser",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/raiser",
|
||||||
|
"minecraft:trims/entity/humanoid/host",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/host",
|
||||||
|
"minecraft:trims/entity/humanoid/flow",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/flow",
|
||||||
|
"minecraft:trims/entity/humanoid/bolt",
|
||||||
|
"minecraft:trims/entity/humanoid_leggings/bolt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/banner_patterns.json
Normal file
9
assets/minecraft/atlases/banner_patterns.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/banner/",
|
||||||
|
"source": "entity/banner"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
22
assets/minecraft/atlases/blocks.json
Normal file
22
assets/minecraft/atlases/blocks.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "block/",
|
||||||
|
"source": "block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/conduit/",
|
||||||
|
"source": "entity/conduit"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "minecraft:single",
|
||||||
|
"resource": "minecraft:entity/bell/bell_body"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "minecraft:single",
|
||||||
|
"resource": "minecraft:entity/enchantment/enchanting_table_book"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/celestials.json
Normal file
9
assets/minecraft/atlases/celestials.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "",
|
||||||
|
"source": "environment/celestial"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/chests.json
Normal file
9
assets/minecraft/atlases/chests.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/chest/",
|
||||||
|
"source": "entity/chest"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/decorated_pot.json
Normal file
9
assets/minecraft/atlases/decorated_pot.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/decorated_pot/",
|
||||||
|
"source": "entity/decorated_pot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
14
assets/minecraft/atlases/gui.json
Normal file
14
assets/minecraft/atlases/gui.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "",
|
||||||
|
"source": "gui/sprites"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "mob_effect/",
|
||||||
|
"source": "mob_effect"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
37
assets/minecraft/atlases/items.json
Normal file
37
assets/minecraft/atlases/items.json
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "item/",
|
||||||
|
"source": "item"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "minecraft:paletted_permutations",
|
||||||
|
"palette_key": "minecraft:trims/color_palettes/trim_palette",
|
||||||
|
"permutations": {
|
||||||
|
"amethyst": "minecraft:trims/color_palettes/amethyst",
|
||||||
|
"copper": "minecraft:trims/color_palettes/copper",
|
||||||
|
"copper_darker": "minecraft:trims/color_palettes/copper_darker",
|
||||||
|
"diamond": "minecraft:trims/color_palettes/diamond",
|
||||||
|
"diamond_darker": "minecraft:trims/color_palettes/diamond_darker",
|
||||||
|
"emerald": "minecraft:trims/color_palettes/emerald",
|
||||||
|
"gold": "minecraft:trims/color_palettes/gold",
|
||||||
|
"gold_darker": "minecraft:trims/color_palettes/gold_darker",
|
||||||
|
"iron": "minecraft:trims/color_palettes/iron",
|
||||||
|
"iron_darker": "minecraft:trims/color_palettes/iron_darker",
|
||||||
|
"lapis": "minecraft:trims/color_palettes/lapis",
|
||||||
|
"netherite": "minecraft:trims/color_palettes/netherite",
|
||||||
|
"netherite_darker": "minecraft:trims/color_palettes/netherite_darker",
|
||||||
|
"quartz": "minecraft:trims/color_palettes/quartz",
|
||||||
|
"redstone": "minecraft:trims/color_palettes/redstone",
|
||||||
|
"resin": "minecraft:trims/color_palettes/resin"
|
||||||
|
},
|
||||||
|
"textures": [
|
||||||
|
"minecraft:trims/items/helmet_trim",
|
||||||
|
"minecraft:trims/items/chestplate_trim",
|
||||||
|
"minecraft:trims/items/leggings_trim",
|
||||||
|
"minecraft:trims/items/boots_trim"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/map_decorations.json
Normal file
9
assets/minecraft/atlases/map_decorations.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "",
|
||||||
|
"source": "map/decorations"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/paintings.json
Normal file
9
assets/minecraft/atlases/paintings.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "",
|
||||||
|
"source": "painting"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/particles.json
Normal file
9
assets/minecraft/atlases/particles.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "",
|
||||||
|
"source": "particle"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/shield_patterns.json
Normal file
9
assets/minecraft/atlases/shield_patterns.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/shield/",
|
||||||
|
"source": "entity/shield"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
assets/minecraft/atlases/shulker_boxes.json
Normal file
9
assets/minecraft/atlases/shulker_boxes.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:directory",
|
||||||
|
"prefix": "entity/shulker/",
|
||||||
|
"source": "entity/shulker"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
118
assets/minecraft/blockstates/acacia_button.json
Normal file
118
assets/minecraft/blockstates/acacia_button.json
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"face=ceiling,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button"
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed"
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/acacia_door.json
Normal file
124
assets/minecraft/blockstates/acacia_door.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right_open"
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right_open"
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_bottom_right_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_door_top_right_open",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
48
assets/minecraft/blockstates/acacia_fence.json
Normal file
48
assets/minecraft/blockstates/acacia_fence.json
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_fence_post"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_fence_side",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"north": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"east": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"south": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"west": "true"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
80
assets/minecraft/blockstates/acacia_fence_gate.json
Normal file
80
assets/minecraft/blockstates/acacia_fence_gate.json
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_open",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall_open",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/acacia_hanging_sign.json
Normal file
124
assets/minecraft/blockstates/acacia_hanging_sign.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"attached=false,rotation=0": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_0"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=1": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_1"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=10": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=11": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=12": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=13": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=14": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=15": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=2": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_2"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=3": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_3"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=4": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=5": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=6": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=7": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=8": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=9": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=0": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_0"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=1": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_1"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=10": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=11": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=12": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=13": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=14": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=15": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=2": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_2"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=3": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_3"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=4": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=5": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=6": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=7": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=8": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=9": {
|
||||||
|
"model": "minecraft:block/acacia_hanging_sign_attached_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/acacia_leaves.json
Normal file
7
assets/minecraft/blockstates/acacia_leaves.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/acacia_leaves"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/acacia_log.json
Normal file
16
assets/minecraft/blockstates/acacia_log.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/acacia_log_horizontal",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/acacia_log"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/acacia_log_horizontal",
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/acacia_planks.json
Normal file
7
assets/minecraft/blockstates/acacia_planks.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/acacia_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
assets/minecraft/blockstates/acacia_pressure_plate.json
Normal file
10
assets/minecraft/blockstates/acacia_pressure_plate.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false": {
|
||||||
|
"model": "minecraft:block/acacia_pressure_plate"
|
||||||
|
},
|
||||||
|
"powered=true": {
|
||||||
|
"model": "minecraft:block/acacia_pressure_plate_down"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/acacia_sapling.json
Normal file
7
assets/minecraft/blockstates/acacia_sapling.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/acacia_sapling"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
402
assets/minecraft/blockstates/acacia_shelf.json
Normal file
402
assets/minecraft/blockstates/acacia_shelf.json
Normal file
@@ -0,0 +1,402 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "north"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "east"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "south"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "west"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unpowered"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unpowered",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unpowered",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unpowered",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unconnected"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unconnected",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unconnected",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_unconnected",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_left"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_center"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_center",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_center",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_center",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_right"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/acacia_shelf_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/acacia_sign.json
Normal file
64
assets/minecraft/blockstates/acacia_sign.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"rotation=0": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_0"
|
||||||
|
},
|
||||||
|
"rotation=1": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_1"
|
||||||
|
},
|
||||||
|
"rotation=10": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=11": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=12": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=13": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=14": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=15": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=2": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_2"
|
||||||
|
},
|
||||||
|
"rotation=3": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_3"
|
||||||
|
},
|
||||||
|
"rotation=4": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=5": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=6": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=7": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=8": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=9": {
|
||||||
|
"model": "minecraft:block/acacia_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/acacia_slab.json
Normal file
13
assets/minecraft/blockstates/acacia_slab.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"type=bottom": {
|
||||||
|
"model": "minecraft:block/acacia_slab"
|
||||||
|
},
|
||||||
|
"type=double": {
|
||||||
|
"model": "minecraft:block/acacia_planks"
|
||||||
|
},
|
||||||
|
"type=top": {
|
||||||
|
"model": "minecraft:block/acacia_slab_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
209
assets/minecraft/blockstates/acacia_stairs.json
Normal file
209
assets/minecraft/blockstates/acacia_stairs.json
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs"
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/acacia_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/acacia_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
68
assets/minecraft/blockstates/acacia_trapdoor.json
Normal file
68
assets/minecraft/blockstates/acacia_trapdoor.json
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_bottom",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_top",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_bottom"
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_top"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_bottom",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_top",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_bottom",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_top",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/acacia_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/acacia_wall_hanging_sign.json
Normal file
19
assets/minecraft/blockstates/acacia_wall_hanging_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/acacia_wall_hanging_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/acacia_wall_hanging_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/acacia_wall_hanging_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/acacia_wall_hanging_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/acacia_wall_sign.json
Normal file
19
assets/minecraft/blockstates/acacia_wall_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/acacia_wall_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/acacia_wall_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/acacia_wall_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/acacia_wall_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/acacia_wood.json
Normal file
16
assets/minecraft/blockstates/acacia_wood.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/acacia_wood",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/acacia_wood"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/acacia_wood",
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
46
assets/minecraft/blockstates/activator_rail.json
Normal file
46
assets/minecraft/blockstates/activator_rail.json
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false,shape=ascending_east": {
|
||||||
|
"model": "minecraft:block/activator_rail_raised_ne",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=false,shape=ascending_north": {
|
||||||
|
"model": "minecraft:block/activator_rail_raised_ne"
|
||||||
|
},
|
||||||
|
"powered=false,shape=ascending_south": {
|
||||||
|
"model": "minecraft:block/activator_rail_raised_sw"
|
||||||
|
},
|
||||||
|
"powered=false,shape=ascending_west": {
|
||||||
|
"model": "minecraft:block/activator_rail_raised_sw",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=false,shape=east_west": {
|
||||||
|
"model": "minecraft:block/activator_rail",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=false,shape=north_south": {
|
||||||
|
"model": "minecraft:block/activator_rail"
|
||||||
|
},
|
||||||
|
"powered=true,shape=ascending_east": {
|
||||||
|
"model": "minecraft:block/activator_rail_on_raised_ne",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=true,shape=ascending_north": {
|
||||||
|
"model": "minecraft:block/activator_rail_on_raised_ne"
|
||||||
|
},
|
||||||
|
"powered=true,shape=ascending_south": {
|
||||||
|
"model": "minecraft:block/activator_rail_on_raised_sw"
|
||||||
|
},
|
||||||
|
"powered=true,shape=ascending_west": {
|
||||||
|
"model": "minecraft:block/activator_rail_on_raised_sw",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=true,shape=east_west": {
|
||||||
|
"model": "minecraft:block/activator_rail_on",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"powered=true,shape=north_south": {
|
||||||
|
"model": "minecraft:block/activator_rail_on"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/air.json
Normal file
7
assets/minecraft/blockstates/air.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/air"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/allium.json
Normal file
7
assets/minecraft/blockstates/allium.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/allium"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/amethyst_block.json
Normal file
7
assets/minecraft/blockstates/amethyst_block.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/amethyst_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
30
assets/minecraft/blockstates/amethyst_cluster.json
Normal file
30
assets/minecraft/blockstates/amethyst_cluster.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=down": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster",
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster",
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=up": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/amethyst_cluster",
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/ancient_debris.json
Normal file
7
assets/minecraft/blockstates/ancient_debris.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/ancient_debris"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/andesite.json
Normal file
7
assets/minecraft/blockstates/andesite.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/andesite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/andesite_slab.json
Normal file
13
assets/minecraft/blockstates/andesite_slab.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"type=bottom": {
|
||||||
|
"model": "minecraft:block/andesite_slab"
|
||||||
|
},
|
||||||
|
"type=double": {
|
||||||
|
"model": "minecraft:block/andesite"
|
||||||
|
},
|
||||||
|
"type=top": {
|
||||||
|
"model": "minecraft:block/andesite_slab_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
209
assets/minecraft/blockstates/andesite_stairs.json
Normal file
209
assets/minecraft/blockstates/andesite_stairs.json
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs"
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/andesite_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/andesite_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
90
assets/minecraft/blockstates/andesite_wall.json
Normal file
90
assets/minecraft/blockstates/andesite_wall.json
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_post"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"up": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"north": "low"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"east": "low"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"south": "low"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"west": "low"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side_tall",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"north": "tall"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side_tall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"east": "tall"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side_tall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"south": "tall"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/andesite_wall_side_tall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"west": "tall"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/anvil.json
Normal file
19
assets/minecraft/blockstates/anvil.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/anvil",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/anvil",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/anvil"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/anvil",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/attached_melon_stem.json
Normal file
19
assets/minecraft/blockstates/attached_melon_stem.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/attached_melon_stem",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/attached_melon_stem",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/attached_melon_stem",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/attached_melon_stem"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/attached_pumpkin_stem.json
Normal file
19
assets/minecraft/blockstates/attached_pumpkin_stem.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/attached_pumpkin_stem",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/attached_pumpkin_stem",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/attached_pumpkin_stem",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/attached_pumpkin_stem"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/azalea.json
Normal file
7
assets/minecraft/blockstates/azalea.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/azalea"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/azalea_leaves.json
Normal file
7
assets/minecraft/blockstates/azalea_leaves.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/azalea_leaves"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/azure_bluet.json
Normal file
7
assets/minecraft/blockstates/azure_bluet.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/azure_bluet"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
58
assets/minecraft/blockstates/bamboo.json
Normal file
58
assets/minecraft/blockstates/bamboo.json
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": [
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo1_age0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo2_age0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo3_age0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo4_age0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"when": {
|
||||||
|
"age": "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": [
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo1_age1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo2_age1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo3_age1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bamboo4_age1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"when": {
|
||||||
|
"age": "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_small_leaves"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"leaves": "small"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_large_leaves"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"leaves": "large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/bamboo_block.json
Normal file
13
assets/minecraft/blockstates/bamboo_block.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/bamboo_block_x"
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/bamboo_block_y"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/bamboo_block_z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
118
assets/minecraft/blockstates/bamboo_button.json
Normal file
118
assets/minecraft/blockstates/bamboo_button.json
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"face=ceiling,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button"
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed"
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/bamboo_door.json
Normal file
124
assets/minecraft/blockstates/bamboo_door.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right_open"
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right_open"
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_bottom_right_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_door_top_right_open",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
41
assets/minecraft/blockstates/bamboo_fence.json
Normal file
41
assets/minecraft/blockstates/bamboo_fence.json
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_post"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_side_north"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"north": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_side_east"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"east": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_side_south"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"south": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_side_west"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"west": "true"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/bamboo_fence_gate.json
Normal file
64
assets/minecraft/blockstates/bamboo_fence_gate.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate"
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_open"
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall"
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall_open"
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_fence_gate_wall_open",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/bamboo_hanging_sign.json
Normal file
124
assets/minecraft/blockstates/bamboo_hanging_sign.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"attached=false,rotation=0": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_0"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=1": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_1"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=10": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=11": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=12": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=13": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=14": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=15": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=2": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_2"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=3": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_3"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=4": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=5": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=6": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=7": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=8": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=9": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=0": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_0"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=1": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_1"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=10": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=11": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=12": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=13": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=14": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=15": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=2": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_2"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=3": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_3"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=4": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=5": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=6": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=7": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=8": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=9": {
|
||||||
|
"model": "minecraft:block/bamboo_hanging_sign_attached_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/bamboo_mosaic.json
Normal file
7
assets/minecraft/blockstates/bamboo_mosaic.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/bamboo_mosaic_slab.json
Normal file
13
assets/minecraft/blockstates/bamboo_mosaic_slab.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"type=bottom": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_slab"
|
||||||
|
},
|
||||||
|
"type=double": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic"
|
||||||
|
},
|
||||||
|
"type=top": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_slab_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
209
assets/minecraft/blockstates/bamboo_mosaic_stairs.json
Normal file
209
assets/minecraft/blockstates/bamboo_mosaic_stairs.json
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs"
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_mosaic_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/bamboo_planks.json
Normal file
7
assets/minecraft/blockstates/bamboo_planks.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/bamboo_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
assets/minecraft/blockstates/bamboo_pressure_plate.json
Normal file
10
assets/minecraft/blockstates/bamboo_pressure_plate.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false": {
|
||||||
|
"model": "minecraft:block/bamboo_pressure_plate"
|
||||||
|
},
|
||||||
|
"powered=true": {
|
||||||
|
"model": "minecraft:block/bamboo_pressure_plate_down"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/bamboo_sapling.json
Normal file
7
assets/minecraft/blockstates/bamboo_sapling.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/bamboo_sapling"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
402
assets/minecraft/blockstates/bamboo_shelf.json
Normal file
402
assets/minecraft/blockstates/bamboo_shelf.json
Normal file
@@ -0,0 +1,402 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "north"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "east"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "south"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "west"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unpowered"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unpowered",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unpowered",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unpowered",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unconnected"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unconnected",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unconnected",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_unconnected",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_left"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_center"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_center",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_center",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_center",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_right"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/bamboo_shelf_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/bamboo_sign.json
Normal file
64
assets/minecraft/blockstates/bamboo_sign.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"rotation=0": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_0"
|
||||||
|
},
|
||||||
|
"rotation=1": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_1"
|
||||||
|
},
|
||||||
|
"rotation=10": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=11": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=12": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=13": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=14": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=15": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=2": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_2"
|
||||||
|
},
|
||||||
|
"rotation=3": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_3"
|
||||||
|
},
|
||||||
|
"rotation=4": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=5": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=6": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=7": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=8": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=9": {
|
||||||
|
"model": "minecraft:block/bamboo_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/bamboo_slab.json
Normal file
13
assets/minecraft/blockstates/bamboo_slab.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"type=bottom": {
|
||||||
|
"model": "minecraft:block/bamboo_slab"
|
||||||
|
},
|
||||||
|
"type=double": {
|
||||||
|
"model": "minecraft:block/bamboo_planks"
|
||||||
|
},
|
||||||
|
"type=top": {
|
||||||
|
"model": "minecraft:block/bamboo_slab_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
209
assets/minecraft/blockstates/bamboo_stairs.json
Normal file
209
assets/minecraft/blockstates/bamboo_stairs.json
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs"
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/bamboo_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
68
assets/minecraft/blockstates/bamboo_trapdoor.json
Normal file
68
assets/minecraft/blockstates/bamboo_trapdoor.json
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_bottom",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_top",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_bottom"
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_top"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_bottom",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_top",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_bottom",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_top",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/bamboo_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/bamboo_wall_hanging_sign.json
Normal file
19
assets/minecraft/blockstates/bamboo_wall_hanging_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_hanging_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_hanging_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_hanging_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_hanging_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/bamboo_wall_sign.json
Normal file
19
assets/minecraft/blockstates/bamboo_wall_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/bamboo_wall_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
56
assets/minecraft/blockstates/barrel.json
Normal file
56
assets/minecraft/blockstates/barrel.json
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=down,open=false": {
|
||||||
|
"model": "minecraft:block/barrel",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=down,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,open=false": {
|
||||||
|
"model": "minecraft:block/barrel",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north,open=false": {
|
||||||
|
"model": "minecraft:block/barrel",
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"facing=north,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open",
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"facing=south,open=false": {
|
||||||
|
"model": "minecraft:block/barrel",
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open",
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=up,open=false": {
|
||||||
|
"model": "minecraft:block/barrel"
|
||||||
|
},
|
||||||
|
"facing=up,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open"
|
||||||
|
},
|
||||||
|
"facing=west,open=false": {
|
||||||
|
"model": "minecraft:block/barrel",
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,open=true": {
|
||||||
|
"model": "minecraft:block/barrel_open",
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/barrier.json
Normal file
7
assets/minecraft/blockstates/barrier.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/barrier"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/basalt.json
Normal file
16
assets/minecraft/blockstates/basalt.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/basalt",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/basalt"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/basalt",
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/beacon.json
Normal file
7
assets/minecraft/blockstates/beacon.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/beacon"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
20
assets/minecraft/blockstates/bedrock.json
Normal file
20
assets/minecraft/blockstates/bedrock.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": [
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bedrock"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bedrock_mirrored"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bedrock",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "minecraft:block/bedrock_mirrored",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
94
assets/minecraft/blockstates/bee_nest.json
Normal file
94
assets/minecraft/blockstates/bee_nest.json
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,honey_level=0": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=1": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=2": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=3": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=4": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=5": {
|
||||||
|
"model": "minecraft:block/bee_nest_honey",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=0": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=1": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=2": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=3": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=4": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=5": {
|
||||||
|
"model": "minecraft:block/bee_nest_honey"
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=0": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=1": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=2": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=3": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=4": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=5": {
|
||||||
|
"model": "minecraft:block/bee_nest_honey",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=0": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=1": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=2": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=3": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=4": {
|
||||||
|
"model": "minecraft:block/bee_nest_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=5": {
|
||||||
|
"model": "minecraft:block/bee_nest_honey",
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
94
assets/minecraft/blockstates/beehive.json
Normal file
94
assets/minecraft/blockstates/beehive.json
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,honey_level=0": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=1": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=2": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=3": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=4": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,honey_level=5": {
|
||||||
|
"model": "minecraft:block/beehive_honey",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=0": {
|
||||||
|
"model": "minecraft:block/beehive_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=1": {
|
||||||
|
"model": "minecraft:block/beehive_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=2": {
|
||||||
|
"model": "minecraft:block/beehive_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=3": {
|
||||||
|
"model": "minecraft:block/beehive_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=4": {
|
||||||
|
"model": "minecraft:block/beehive_empty"
|
||||||
|
},
|
||||||
|
"facing=north,honey_level=5": {
|
||||||
|
"model": "minecraft:block/beehive_honey"
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=0": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=1": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=2": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=3": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=4": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,honey_level=5": {
|
||||||
|
"model": "minecraft:block/beehive_honey",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=0": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=1": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=2": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=3": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=4": {
|
||||||
|
"model": "minecraft:block/beehive_empty",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,honey_level=5": {
|
||||||
|
"model": "minecraft:block/beehive_honey",
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/beetroots.json
Normal file
16
assets/minecraft/blockstates/beetroots.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"age=0": {
|
||||||
|
"model": "minecraft:block/beetroots_stage0"
|
||||||
|
},
|
||||||
|
"age=1": {
|
||||||
|
"model": "minecraft:block/beetroots_stage1"
|
||||||
|
},
|
||||||
|
"age=2": {
|
||||||
|
"model": "minecraft:block/beetroots_stage2"
|
||||||
|
},
|
||||||
|
"age=3": {
|
||||||
|
"model": "minecraft:block/beetroots_stage3"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/bell.json
Normal file
64
assets/minecraft/blockstates/bell.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"attachment=ceiling,facing=east": {
|
||||||
|
"model": "minecraft:block/bell_ceiling",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attachment=ceiling,facing=north": {
|
||||||
|
"model": "minecraft:block/bell_ceiling"
|
||||||
|
},
|
||||||
|
"attachment=ceiling,facing=south": {
|
||||||
|
"model": "minecraft:block/bell_ceiling",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attachment=ceiling,facing=west": {
|
||||||
|
"model": "minecraft:block/bell_ceiling",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attachment=double_wall,facing=east": {
|
||||||
|
"model": "minecraft:block/bell_between_walls"
|
||||||
|
},
|
||||||
|
"attachment=double_wall,facing=north": {
|
||||||
|
"model": "minecraft:block/bell_between_walls",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attachment=double_wall,facing=south": {
|
||||||
|
"model": "minecraft:block/bell_between_walls",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attachment=double_wall,facing=west": {
|
||||||
|
"model": "minecraft:block/bell_between_walls",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attachment=floor,facing=east": {
|
||||||
|
"model": "minecraft:block/bell_floor",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attachment=floor,facing=north": {
|
||||||
|
"model": "minecraft:block/bell_floor"
|
||||||
|
},
|
||||||
|
"attachment=floor,facing=south": {
|
||||||
|
"model": "minecraft:block/bell_floor",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attachment=floor,facing=west": {
|
||||||
|
"model": "minecraft:block/bell_floor",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attachment=single_wall,facing=east": {
|
||||||
|
"model": "minecraft:block/bell_wall"
|
||||||
|
},
|
||||||
|
"attachment=single_wall,facing=north": {
|
||||||
|
"model": "minecraft:block/bell_wall",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attachment=single_wall,facing=south": {
|
||||||
|
"model": "minecraft:block/bell_wall",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attachment=single_wall,facing=west": {
|
||||||
|
"model": "minecraft:block/bell_wall",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/big_dripleaf.json
Normal file
64
assets/minecraft/blockstates/big_dripleaf.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,tilt=full": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_full_tilt",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,tilt=none": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,tilt=partial": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_partial_tilt",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,tilt=unstable": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north,tilt=full": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_full_tilt"
|
||||||
|
},
|
||||||
|
"facing=north,tilt=none": {
|
||||||
|
"model": "minecraft:block/big_dripleaf"
|
||||||
|
},
|
||||||
|
"facing=north,tilt=partial": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_partial_tilt"
|
||||||
|
},
|
||||||
|
"facing=north,tilt=unstable": {
|
||||||
|
"model": "minecraft:block/big_dripleaf"
|
||||||
|
},
|
||||||
|
"facing=south,tilt=full": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_full_tilt",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,tilt=none": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,tilt=partial": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_partial_tilt",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,tilt=unstable": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,tilt=full": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_full_tilt",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,tilt=none": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,tilt=partial": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_partial_tilt",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,tilt=unstable": {
|
||||||
|
"model": "minecraft:block/big_dripleaf",
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/big_dripleaf_stem.json
Normal file
19
assets/minecraft/blockstates/big_dripleaf_stem.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_stem",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_stem"
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_stem",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/big_dripleaf_stem",
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
118
assets/minecraft/blockstates/birch_button.json
Normal file
118
assets/minecraft/blockstates/birch_button.json
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"face=ceiling,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=ceiling,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button"
|
||||||
|
},
|
||||||
|
"face=floor,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed"
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=floor,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=east,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=north,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=south,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=false": {
|
||||||
|
"model": "minecraft:block/birch_button",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"face=wall,facing=west,powered=true": {
|
||||||
|
"model": "minecraft:block/birch_button_pressed",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 90,
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/birch_door.json
Normal file
124
assets/minecraft/blockstates/birch_door.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right"
|
||||||
|
},
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right_open"
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right_open"
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_bottom_right_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_left_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": {
|
||||||
|
"model": "minecraft:block/birch_door_top_right_open",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
48
assets/minecraft/blockstates/birch_fence.json
Normal file
48
assets/minecraft/blockstates/birch_fence.json
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_fence_post"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_fence_side",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"north": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"east": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"south": "true"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_fence_side",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"west": "true"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
80
assets/minecraft/blockstates/birch_fence_gate.json
Normal file
80
assets/minecraft/blockstates/birch_fence_gate.json
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_open",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=south,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall_open",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=false,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=false": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,in_wall=true,open=true": {
|
||||||
|
"model": "minecraft:block/birch_fence_gate_wall_open",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
124
assets/minecraft/blockstates/birch_hanging_sign.json
Normal file
124
assets/minecraft/blockstates/birch_hanging_sign.json
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"attached=false,rotation=0": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_0"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=1": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_1"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=10": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=11": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=12": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=13": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=14": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=15": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=false,rotation=2": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_2"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=3": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_3"
|
||||||
|
},
|
||||||
|
"attached=false,rotation=4": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=5": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=6": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=7": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=false,rotation=8": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=false,rotation=9": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=0": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_0"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=1": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_1"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=10": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=11": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=12": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=13": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=14": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=15": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"attached=true,rotation=2": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_2"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=3": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_3"
|
||||||
|
},
|
||||||
|
"attached=true,rotation=4": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=5": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=6": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=7": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"attached=true,rotation=8": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"attached=true,rotation=9": {
|
||||||
|
"model": "minecraft:block/birch_hanging_sign_attached_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/birch_leaves.json
Normal file
7
assets/minecraft/blockstates/birch_leaves.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/birch_leaves"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/birch_log.json
Normal file
16
assets/minecraft/blockstates/birch_log.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/birch_log_horizontal",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/birch_log"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/birch_log_horizontal",
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/birch_planks.json
Normal file
7
assets/minecraft/blockstates/birch_planks.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/birch_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
assets/minecraft/blockstates/birch_pressure_plate.json
Normal file
10
assets/minecraft/blockstates/birch_pressure_plate.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false": {
|
||||||
|
"model": "minecraft:block/birch_pressure_plate"
|
||||||
|
},
|
||||||
|
"powered=true": {
|
||||||
|
"model": "minecraft:block/birch_pressure_plate_down"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/birch_sapling.json
Normal file
7
assets/minecraft/blockstates/birch_sapling.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/birch_sapling"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
402
assets/minecraft/blockstates/birch_shelf.json
Normal file
402
assets/minecraft/blockstates/birch_shelf.json
Normal file
@@ -0,0 +1,402 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "north"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "east"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "south"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"facing": "west"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unpowered"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unpowered",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unpowered",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unpowered",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "false"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unconnected"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unconnected",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unconnected",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_unconnected",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "unconnected"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_left"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_left",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_left",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_left",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_center"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_center",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_center",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_center",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_right"
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "north"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_right",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "east"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_right",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "south"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"apply": {
|
||||||
|
"model": "minecraft:block/birch_shelf_right",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"when": {
|
||||||
|
"AND": [
|
||||||
|
{
|
||||||
|
"facing": "west"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"powered": "true"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"side_chain": "right"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
64
assets/minecraft/blockstates/birch_sign.json
Normal file
64
assets/minecraft/blockstates/birch_sign.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"rotation=0": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_0"
|
||||||
|
},
|
||||||
|
"rotation=1": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_1"
|
||||||
|
},
|
||||||
|
"rotation=10": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_2",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=11": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_3",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=12": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_0",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=13": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_1",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=14": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_2",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=15": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_3",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"rotation=2": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_2"
|
||||||
|
},
|
||||||
|
"rotation=3": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_3"
|
||||||
|
},
|
||||||
|
"rotation=4": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_0",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=5": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_1",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=6": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_2",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=7": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_3",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"rotation=8": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_0",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"rotation=9": {
|
||||||
|
"model": "minecraft:block/birch_sign_rot_1",
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
assets/minecraft/blockstates/birch_slab.json
Normal file
13
assets/minecraft/blockstates/birch_slab.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"type=bottom": {
|
||||||
|
"model": "minecraft:block/birch_slab"
|
||||||
|
},
|
||||||
|
"type=double": {
|
||||||
|
"model": "minecraft:block/birch_planks"
|
||||||
|
},
|
||||||
|
"type=top": {
|
||||||
|
"model": "minecraft:block/birch_slab_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
209
assets/minecraft/blockstates/birch_stairs.json
Normal file
209
assets/minecraft/blockstates/birch_stairs.json
Normal file
@@ -0,0 +1,209 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs"
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=north,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer"
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=inner_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_inner",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_left": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=outer_right": {
|
||||||
|
"model": "minecraft:block/birch_stairs_outer",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,shape=straight": {
|
||||||
|
"model": "minecraft:block/birch_stairs",
|
||||||
|
"uvlock": true,
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
68
assets/minecraft/blockstates/birch_trapdoor.json
Normal file
68
assets/minecraft/blockstates/birch_trapdoor.json
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_bottom",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_top",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_bottom"
|
||||||
|
},
|
||||||
|
"facing=north,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_top"
|
||||||
|
},
|
||||||
|
"facing=north,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_bottom",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_top",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"x": 180
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_bottom",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=bottom,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=false": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_top",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,half=top,open=true": {
|
||||||
|
"model": "minecraft:block/birch_trapdoor_open",
|
||||||
|
"x": 180,
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/birch_wall_hanging_sign.json
Normal file
19
assets/minecraft/blockstates/birch_wall_hanging_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/birch_wall_hanging_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/birch_wall_hanging_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/birch_wall_hanging_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/birch_wall_hanging_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
assets/minecraft/blockstates/birch_wall_sign.json
Normal file
19
assets/minecraft/blockstates/birch_wall_sign.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east": {
|
||||||
|
"model": "minecraft:block/birch_wall_sign",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=north": {
|
||||||
|
"model": "minecraft:block/birch_wall_sign",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south": {
|
||||||
|
"model": "minecraft:block/birch_wall_sign"
|
||||||
|
},
|
||||||
|
"facing=west": {
|
||||||
|
"model": "minecraft:block/birch_wall_sign",
|
||||||
|
"y": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/minecraft/blockstates/birch_wood.json
Normal file
16
assets/minecraft/blockstates/birch_wood.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=x": {
|
||||||
|
"model": "minecraft:block/birch_wood",
|
||||||
|
"x": 90,
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"axis=y": {
|
||||||
|
"model": "minecraft:block/birch_wood"
|
||||||
|
},
|
||||||
|
"axis=z": {
|
||||||
|
"model": "minecraft:block/birch_wood",
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
assets/minecraft/blockstates/black_banner.json
Normal file
7
assets/minecraft/blockstates/black_banner.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "minecraft:block/banner"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
34
assets/minecraft/blockstates/black_bed.json
Normal file
34
assets/minecraft/blockstates/black_bed.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,part=foot": {
|
||||||
|
"model": "minecraft:block/black_bed_foot",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=east,part=head": {
|
||||||
|
"model": "minecraft:block/black_bed_head",
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"facing=north,part=foot": {
|
||||||
|
"model": "minecraft:block/black_bed_foot"
|
||||||
|
},
|
||||||
|
"facing=north,part=head": {
|
||||||
|
"model": "minecraft:block/black_bed_head"
|
||||||
|
},
|
||||||
|
"facing=south,part=foot": {
|
||||||
|
"model": "minecraft:block/black_bed_foot",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=south,part=head": {
|
||||||
|
"model": "minecraft:block/black_bed_head",
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"facing=west,part=foot": {
|
||||||
|
"model": "minecraft:block/black_bed_foot",
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"facing=west,part=head": {
|
||||||
|
"model": "minecraft:block/black_bed_head",
|
||||||
|
"y": 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user