1
0

1 Commits

Author SHA1 Message Date
frost-zx 29859d0596 feat: 尝试注册自定义命令 2022-09-04 22:28:06 +08:00
174 changed files with 70187 additions and 85285 deletions
File diff suppressed because it is too large Load Diff
-651
View File
@@ -1,651 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"definitions": {
"typePrimitive": {
"type": "object",
"required": [
"type",
"name"
],
"properties": {
"type": {
"const": "type:primitive",
"description": "A primitive type"
},
"name": {
"type": "string"
}
}
},
"typeClass": {
"type": "object",
"required": [
"type",
"name"
],
"properties": {
"type": {
"const": "type:class",
"description": "A class type"
},
"name": {
"type": "string",
"$ref": "probe.class-definitions.json#/definitions/typeClassname"
}
}
},
"typeVariable": {
"type": "object",
"required": [
"type",
"name"
],
"properties": {
"type": {
"const": "type:variable",
"description": "A variable type"
},
"name": {
"type": "string"
}
}
},
"typeParameterized": {
"type": "object",
"required": [
"type",
"base",
"params"
],
"properties": {
"type": {
"const": "type:parameterized"
},
"base": {
"$ref": "#/definitions/propertyType"
},
"params": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"typeIntersection": {
"type": "object",
"required": [
"type",
"types"
],
"properties": {
"type": {
"const": "type:intersection"
},
"types": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"typeUnion": {
"type": "object",
"required": [
"type",
"types"
],
"properties": {
"type": {
"const": "type:union"
},
"types": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"typeArray": {
"type": "object",
"required": [
"type",
"component"
],
"properties": {
"type": {
"const": "type:array"
},
"component": {
"$ref": "#/definitions/propertyType"
}
}
},
"typeObject": {
"type": "object",
"required": [
"type",
"members"
],
"properties": {
"type": {
"const": "type:object"
},
"members": {
"type": "array",
"items": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"anyOf": [
{
"$ref": "#/definitions/propertyObjectKey"
}
]
},
"value": {
"$ref": "#/definitions/propertyType"
}
}
}
}
}
},
"propertyObjectKey": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/propertyType"
},
{
"type": "object",
"required": [
"optional"
],
"properties": {
"optional": {
"type": "boolean",
"default": true
},
"key": {
"$ref": "#/definitions/propertyObjectKey"
}
},
"additionalProperties": false
}
]
},
"typeJSArray": {
"type": "object",
"required": [
"type",
"types"
],
"properties": {
"type": {
"const": "type:jsArray"
},
"types": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"propertyType": {
"properties": {
"type": {
"type": "string",
"enum": [
"type:primitive",
"type:class",
"type:variable",
"type:parameterized",
"type:union",
"type:intersection",
"type:array",
"type:object",
"type:jsArray"
]
},
"properties": {
"type": "array",
"items": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "property:underscored"
},
"underscored": {
"type": "boolean"
}
}
}
}
},
"anyOf": [
{
"$ref": "#/definitions/typePrimitive"
},
{
"$ref": "#/definitions/typeClass"
},
{
"$ref": "#/definitions/typeVariable"
},
{
"$ref": "#/definitions/typeParameterized"
},
{
"$ref": "#/definitions/typeUnion"
},
{
"$ref": "#/definitions/typeIntersection"
},
{
"$ref": "#/definitions/typeArray"
},
{
"$ref": "#/definitions/typeObject"
},
{
"$ref": "#/definitions/typeJSArray"
}
]
},
"propertyComment": {
"type": "object",
"required": [
"type",
"lines"
],
"properties": {
"type": {
"const": "property:comment"
},
"lines": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"propertyHide": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "property:hide"
}
}
},
"propertyAssign": {
"type": "object",
"required": [
"type",
"assign"
],
"properties": {
"type": {
"const": "property:assign"
},
"shield": {
"type": "boolean"
},
"assign": {
"$ref": "#/definitions/propertyType"
}
}
},
"propertyMod": {
"type": "object",
"required": [
"type",
"mod"
],
"properties": {
"type": {
"const": "property:mod"
},
"mod": {
"type": "string"
}
}
},
"propertyModify": {
"type": "object",
"required": [
"type",
"index"
],
"properties": {
"type": {
"const": "property:modify"
},
"index": {
"type": "integer"
},
"newType": {
"$ref": "#/definitions/propertyType"
},
"name": {
"type": "string"
}
}
},
"propertyReturns": {
"type": "object",
"required": [
"type",
"returns"
],
"properties": {
"type": {
"const": "property:returns"
},
"returns": {
"$ref": "#/definitions/propertyType"
}
}
},
"propertyClass": {
"properties": {
"type": {
"type": "string",
"enum": [
"property:comment",
"property:hide",
"property:assign",
"property:mod"
]
}
},
"anyOf": [
{
"$ref": "#/definitions/propertyComment"
},
{
"$ref": "#/definitions/propertyHide"
},
{
"$ref": "#/definitions/propertyAssign"
},
{
"$ref": "#/definitions/propertyMod"
}
]
},
"propertyMethod": {
"properties": {
"type": {
"type": "string",
"enum": [
"property:comment",
"property:hide",
"property:mod",
"property:modify",
"property:returns"
]
}
},
"anyOf": [
{
"$ref": "#/definitions/propertyComment"
},
{
"$ref": "#/definitions/propertyHide"
},
{
"$ref": "#/definitions/propertyMod"
},
{
"$ref": "#/definitions/propertyModify"
},
{
"$ref": "#/definitions/propertyReturns"
}
]
},
"propertyField": {
"properties": {
"type": {
"type": "string",
"enum": [
"property:comment",
"property:hide",
"property:mod"
]
}
},
"anyOf": [
{
"$ref": "#/definitions/propertyComment"
},
{
"$ref": "#/definitions/propertyHide"
},
{
"$ref": "#/definitions/propertyMod"
}
]
},
"propertyConstructor": {
"properties": {
"type": {
"type": "string",
"enum": [
"property:comment",
"property:hide",
"property:mod",
"property:modify"
]
}
},
"anyOf": [
{
"$ref": "#/definitions/propertyComment"
},
{
"$ref": "#/definitions/propertyHide"
},
{
"$ref": "#/definitions/propertyMod"
},
{
"$ref": "#/definitions/propertyModify"
}
]
}
},
"properties": {
"properties": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/propertyMod"
}
]
}
},
"classes": {
"type": "array",
"items": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"const": "document:class"
},
"className": {
"type": "string",
"description": "The class name",
"$ref": "probe.class-definitions.json#/definitions/typeClassname"
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyClass"
}
},
"methods": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name",
"returns"
],
"properties": {
"type": {
"const": "document:method"
},
"name": {
"type": "string"
},
"static": {
"type": "boolean"
},
"abstract": {
"type": "boolean"
},
"params": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name",
"paramType"
],
"properties": {
"type": {
"const": "property:param"
},
"name": {
"type": "string"
},
"paramType": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"returns": {
"$ref": "#/definitions/propertyType"
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyMethod"
}
}
}
}
},
"interfaces": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyType"
}
},
"constructors": {
"type": "array",
"items": {
"required": [
"type"
],
"type": "object",
"properties": {
"type": {
"const": "document:constructor"
},
"params": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name",
"paramType"
],
"properties": {
"type": {
"const": "property:param"
},
"name": {
"type": "string"
},
"paramType": {
"$ref": "#/definitions/propertyType"
}
}
}
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyConstructor"
}
}
}
}
},
"fields": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name",
"fieldType"
],
"properties": {
"type": {
"const": "document:field"
},
"name": {
"type": "string"
},
"fieldType": {
"$ref": "#/definitions/propertyType"
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/propertyField"
}
},
"final": {
"type": "boolean"
},
"static": {
"type": "boolean"
}
}
}
}
}
}
}
}
}
-10
View File
@@ -1,10 +0,0 @@
{
"json.schemas": [
{
"fileMatch": [
"/probe/docs/*.json"
],
"url": "./.vscode/probe.doc-schema.json"
}
]
}
+1 -28
View File
@@ -1,34 +1,7 @@
# wheat-server-kubejs # wheat-server-kubejs
## 相关链接 ## Links
- [KubeJS - Official Website](https://kubejs.com/) - [KubeJS - Official Website](https://kubejs.com/)
- [KubeJS - Mods - Modrinth](https://modrinth.com/mod/kubejs) - [KubeJS - Mods - Modrinth](https://modrinth.com/mod/kubejs)
- [KubeJS Additions](https://www.curseforge.com/minecraft/mc-mods/kubejs-additions)
- [Prunoideae / ProbeJS](https://github.com/Prunoideae/ProbeJS) - [Prunoideae / ProbeJS](https://github.com/Prunoideae/ProbeJS)
## 注意事项
- 暂不支持解构赋值(2022-08-28
- 暂不支持设置函数参数默认值(2022-08-28)
- 暂不支持 try catch2022-08-28
## 参考资料
### Wiki
- [自定义方块](https://mods.latvian.dev/books/kubejs/page/custom-blocks)
- [tintindex | 森罗万象](https://sqwatermark.com/resguide/vanilla/model/tintindex.html)
### 代码
- [KubeJS-Mods / KubeJS](https://github.com/KubeJS-Mods/KubeJS)
- [BlockBuilder.java](https://github.com/KubeJS-Mods/KubeJS/blob/1.18/main/common/src/main/java/dev/latvian/mods/kubejs/block/BlockBuilder.java)
- [BasicBlockJS.java](https://github.com/KubeJS-Mods/KubeJS/blob/1.18/main/common/src/main/java/dev/latvian/mods/kubejs/block/custom/BasicBlockJS.java)
- [WoodenButtonBlockBuilder.java](https://github.com/KubeJS-Mods/KubeJS/blob/1.18/main/common/src/main/java/dev/latvian/mods/kubejs/block/custom/WoodenButtonBlockBuilder.java)
- [Cardinally Orientable Blocks and Shuffle Asset Generation](https://github.com/KubeJS-Mods/KubeJS/pull/459)
- [Basic BlockState Support and Misc Delegate Methods](https://github.com/KubeJS-Mods/KubeJS/pull/464)
### 颜色列表
- [Railcraft/EnumColor.java](https://github.com/Railcraft/Railcraft/blob/mc-1.12.2/src/main/java/mods/railcraft/common/plugins/color/EnumColor.java)
+1 -23
View File
@@ -1,25 +1,3 @@
// priority: 100 // priority: 100
const JSON_ASSETS = global.JSON_ASSETS; console.info(`${global.LOG_PREFIX} 加载客户端内容`);
const LOG_PREFIX = global.LOG_PREFIX;
console.info(`${LOG_PREFIX} 加载客户端内容`);
// 生成客户端资源
// event.add(new ResourceLocation(`<命名空间>:<资源相对路径>`), `JSON`);
// event.add(new ResourceLocation(`minecraft:models/block/stone`), {});
onEvent('client.generate_assets', (event) => {
if (!Array.isArray(JSON_ASSETS)) {
return;
}
console.info(`${LOG_PREFIX} 生成客户端资源 - 开始`);
JSON_ASSETS.forEach((item) => {
event.add(new ResourceLocation(item.PATH), item.DATA);
});
console.info(`${LOG_PREFIX} 生成客户端资源 - 完成`);
});
Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

+2 -9
View File
@@ -1,13 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"lib": [ "lib": ["ES5", "ES2015"],
"ES5", "typeRoots": ["./probe/generated", "./probe/user"]
"ES2015"
],
"typeRoots": [
"./probe/generated",
"./probe/user"
],
"target": "ES2015"
} }
} }
+86 -1080
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+66152 -66114
View File
File diff suppressed because one or more lines are too long
+2381 -2395
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,4 +1,4 @@
/// <reference path="./globals.d.ts" /> /// <reference path="./globals.d.ts" />
const Vec3d: typeof Vec3 const Vec3d: typeof Vec3
const Text: typeof Component
const Direction: typeof Facing const Direction: typeof Facing
const Text: typeof Component
-4
View File
@@ -1,4 +0,0 @@
interface String {
readonly namespace: string,
readonly path: string
}
+9 -9
View File
@@ -1,6 +1,6 @@
/// <reference path="./globals.d.ts" /> /// <reference path="./globals.d.ts" />
declare namespace Registry { declare namespace Registry {
class SoundEvent extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Sound_event extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.SoundEventBuilder; create(id: string, type: "basic"): Internal.SoundEventBuilder;
create(id: string): Internal.SoundEventBuilder; create(id: string): Internal.SoundEventBuilder;
} }
@@ -42,19 +42,19 @@ declare namespace Registry {
create(id: string, type: "basic"): Internal.EnchantmentBuilder; create(id: string, type: "basic"): Internal.EnchantmentBuilder;
create(id: string): Internal.EnchantmentBuilder; create(id: string): Internal.EnchantmentBuilder;
} }
class MobEffect extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Mob_effect extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.BasicMobEffect$Builder; create(id: string, type: "basic"): Internal.BasicMobEffect$Builder;
create(id: string): Internal.BasicMobEffect$Builder; create(id: string): Internal.BasicMobEffect$Builder;
} }
class EntityType extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Entity_type extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
} }
class BlockEntityType extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Block_entity_type extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
} }
class Potion extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Potion extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.PotionBuilder; create(id: string, type: "basic"): Internal.PotionBuilder;
create(id: string): Internal.PotionBuilder; create(id: string): Internal.PotionBuilder;
} }
class ParticleType extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Particle_type extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.ParticleTypeBuilder; create(id: string, type: "basic"): Internal.ParticleTypeBuilder;
create(id: string): Internal.ParticleTypeBuilder; create(id: string): Internal.ParticleTypeBuilder;
} }
@@ -62,19 +62,19 @@ declare namespace Registry {
create(id: string, type: "basic"): Internal.MotiveBuilder; create(id: string, type: "basic"): Internal.MotiveBuilder;
create(id: string): Internal.MotiveBuilder; create(id: string): Internal.MotiveBuilder;
} }
class CustomStat extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Custom_stat extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.CustomStatBuilder; create(id: string, type: "basic"): Internal.CustomStatBuilder;
create(id: string): Internal.CustomStatBuilder; create(id: string): Internal.CustomStatBuilder;
} }
class PointOfInterestType extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Point_of_interest_type extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.PoiTypeBuilder; create(id: string, type: "basic"): Internal.PoiTypeBuilder;
create(id: string): Internal.PoiTypeBuilder; create(id: string): Internal.PoiTypeBuilder;
} }
class VillagerType extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Villager_type extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.VillagerTypeBuilder; create(id: string, type: "basic"): Internal.VillagerTypeBuilder;
create(id: string): Internal.VillagerTypeBuilder; create(id: string): Internal.VillagerTypeBuilder;
} }
class VillagerProfession extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> { class Villager_profession extends Internal.RegistryObjectBuilderTypes$RegistryEventJS<any> {
create(id: string, type: "basic"): Internal.VillagerProfessionBuilder; create(id: string, type: "basic"): Internal.VillagerProfessionBuilder;
create(id: string): Internal.VillagerProfessionBuilder; create(id: string): Internal.VillagerProfessionBuilder;
} }
-73
View File
@@ -1,51 +1,3 @@
/** 方块构造器 */
type B_Builder = Internal.BlockBuilder;
/** 方块碰撞箱类型 */
type B_BoxType = 'custom' | 'full' | 'half';
/** 方块材质类型 */
type B_Material = Internal.MaterialJS_;
/**
* 方块渲染类型
* - `cutout`: required for blocks with texture like glass
* - `translucent`: required for blocks like stained glass
*/
type B_RenderType = 'solid' | 'cutout' | 'cutout_mipped' | 'translucent';
/** 配置选项 */
type SetBlockPropsOpts = {
/** 碰撞箱配置(自定义) */
boxConfig: number[];
/** 碰撞箱类型(内置) */
boxType: B_BoxType;
/** 开启碰撞箱,默认:true */
collision: boolean;
/** 方块显示名称 */
displayName: string;
/** 默认:8 */
hardness: number;
/** 是否为完整方块,默认:true */
isSolid: boolean;
/** 范围:0 ~ 1 */
lightLevel: number;
/** 默认:stone */
material: B_Material;
/** 模型文件路径 */
modelPath: string;
/** 默认:solid */
renderType: B_RenderType;
/** 默认:16 */
resistance: number;
/** fullBlock(未使用)*/
isFull: boolean;
/** opaque(未使用)*/
isOpaque: boolean;
/** transparent(未使用)*/
transparent: boolean;
};
declare const global: { declare const global: {
/** /**
@@ -55,25 +7,6 @@ declare const global: {
*/ */
defaults<TValue>(v: TValue, d: TValue): TValue; defaults<TValue>(v: TValue, d: TValue): TValue;
/**
* @desc 设置方块基础属性
* @param block 方块
* @param opts 配置选项
*/
setBlockProps(block: B_Builder, opts: SetBlockPropsOpts): boolean;
/**
* @desc 设置方块水平旋转属性
* @param block 方块
* @param type 旋转类型
* @param model 模型路径
*/
setHorizontalFacing(
block: B_Builder,
type: 'revert' | 'same',
model: string
): boolean;
/** /**
* @desc 写入 JSON 文件 * @desc 写入 JSON 文件
* @param path 文件路径,相对于 `.minecraft` * @param path 文件路径,相对于 `.minecraft`
@@ -91,12 +24,6 @@ declare const global: {
}; };
}; };
/** 需要在 `client.generate_assets` 生成的 JSON 文件 */
JSON_ASSETS: Array<{
PATH: string;
DATA: Internal.JsonElement;
}>;
/** 日志前缀 */ /** 日志前缀 */
LOG_PREFIX: string; LOG_PREFIX: string;
-19
View File
@@ -1,19 +0,0 @@
// priority: 0
// 玩家切换世界时设置为冒险模式(KubeJS Additions
onEvent('player.change_dimension', (event) => {
const evServer = event.getServer();
const evPlayer = event.getPlayer();
const player = evServer ? evServer.getPlayer(evPlayer) : null;
if (!player) {
console.error('自动切换游戏模式失败:找不到玩家');
return;
}
if (player.isCreativeMode()) {
player.setGameMode('adventure');
}
});
+10 -106
View File
@@ -1,119 +1,24 @@
// priority: 100 // priority: 100
// 注意事项:
// - 暂不支持解构赋值(2022-08-28
// - 暂不支持设置函数参数默认值(2022-08-28)
// - 暂不支持 try catch2022-08-28
// 自定义方块:
// https://mods.latvian.dev/books/kubejs/page/custom-blocks
global.defaults = function (v, d) { global.defaults = function (v, d) {
(typeof d === 'undefined') && (d = null); (typeof d === 'undefined') && (d = null);
return ((typeof v === 'undefined' || v === null) ? d : v); return ((typeof v === 'undefined' || v === null) ? d : v);
}; };
global.setBlockProps = function (block, opts) {
if (!block) {
console.error(`${LOG_PREFIX} 设置方块属性失败:缺少“block”参数`);
return false;
}
if (!opts) {
opts = {};
}
const boxConfig = defaults(opts.boxConfig, null);
const boxType = defaults(opts.boxType, '');
const collision = defaults(opts.collision, true);
const displayName = defaults(opts.displayName, '');
const hardness = defaults(opts.hardness, 8);
const isSolid = defaults(opts.isSolid, true);
const lightLevel = defaults(opts.lightLevel, 0);
const material = defaults(opts.material, 'stone');
const modelPath = defaults(opts.modelPath, '');
const renderType = defaults(opts.renderType, 'solid');
const resistance = defaults(opts.resistance, 16);
if (boxConfig) {
block.box.apply(block, boxConfig);
} else if (boxType === 'full') {
block.box(0, 0, 0, 16, 16, 16, true);
} else if (boxType === 'half') {
block.box(0, 0, 0, 16, 8, 16, true);
}
if (!collision) {
block.noCollision();
}
if (displayName) {
block.displayName(displayName);
}
if (!isSolid) {
block.notSolid();
}
if (modelPath) {
block.model(modelPath);
}
block.hardness(hardness);
block.lightLevel(lightLevel);
block.material(material);
block.renderType(renderType);
block.resistance(resistance);
return true;
};
global.setHorizontalFacing = function (block, type, model) {
const prop = BlockProperties.HORIZONTAL_FACING;
// 设置模型旋转
block.blockstateJson = {
'variants': {
'facing=north': { model: model, y: 0 },
'facing=east': { model: model, y: 90 },
'facing=south': { model: model, y: 180 },
'facing=west': { model: model, y: 270 }
}
};
// 添加属性
block.property(prop);
// 处理默认状态
block.defaultState((ev) => {
ev.set(prop, 'north');
});
// 处理放置状态
switch (type) {
// 与玩家朝向相反
case 'revert':
block.placementState((ev) => {
const d = ev.getHorizontalDirection().getOpposite().toString();
ev.set(prop, d);
});
break;
// 与玩家朝向相同
case 'same':
block.placementState((ev) => {
const d = ev.getHorizontalDirection().toString();
ev.set(prop, d);
});
break;
// 其他
default:
console.error(`${LOG_PREFIX} 设置旋转属性失败:参数“type”错误`);
return false;
}
return true;
};
global.writeJSON = function (path, data) { global.writeJSON = function (path, data) {
JsonIO.write(path, data); JsonIO.write(path, data);
}; };
// 参考:
// https://github.com/Railcraft/Railcraft/blob/mc-1.12.2/src/main/java/mods/railcraft/common/plugins/color/EnumColor.java
global.COLORS = { global.COLORS = {
WHITE: { WHITE: {
CODE: 'white', CODE: 'white',
@@ -213,7 +118,6 @@ global.COLORS = {
}, },
}; };
global.JSON_ASSETS = [];
global.LOG_PREFIX = '[KubeJS]'; global.LOG_PREFIX = '[KubeJS]';
console.info(`${global.LOG_PREFIX} 启动`); console.info(`${global.LOG_PREFIX} 启动`);
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,5 @@
{
"block.minecraft.ancient_debris": "White Reinforced Concrete",
"block.minecraft.raw_copper_block": "Gray Reinforced Concrete",
"block.minecraft.raw_iron_block": "Light Gray Reinforced Concrete"
}
@@ -0,0 +1,5 @@
{
"block.minecraft.ancient_debris": "白色强化混凝土",
"block.minecraft.raw_copper_block": "灰色强化混凝土",
"block.minecraft.raw_iron_block": "淡灰色强化混凝土"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

@@ -1,54 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"ambientocclusion": false,
"textures": {
"0": "wheat_plus:block/common/color_normal",
"particle": "wheat_plus:block/common/color_normal"
},
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.25, 0.25, 0.25]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.25, 0.25, 0.25]
},
"firstperson_righthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}
@@ -1,218 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [15, 0, 0],
"to": [16, 16, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 1, 16], "texture": "#0"},
"up": {"uv": [15, 0, 16, 1], "texture": "#0", "cullface": "up"},
"down": {"uv": [15, 15, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [14, 0, 1],
"to": [16, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 2, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 0, 16, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [14, 1, 16, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [14, 14, 16, 15], "texture": "#0", "cullface": "down"}
}
},
{
"from": [13, 0, 2],
"to": [16, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [13, 0, 16, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [13, 2, 16, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [13, 13, 16, 14], "texture": "#0", "cullface": "down"}
}
},
{
"from": [12, 0, 3],
"to": [16, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [12, 3, 16, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [12, 12, 16, 13], "texture": "#0", "cullface": "down"}
}
},
{
"from": [11, 0, 4],
"to": [16, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 5, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [11, 0, 16, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [11, 4, 16, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [11, 11, 16, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [10, 0, 5],
"to": [16, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 6, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [10, 0, 16, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [10, 5, 16, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [10, 10, 16, 11], "texture": "#0", "cullface": "down"}
}
},
{
"from": [9, 0, 6],
"to": [16, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [9, 6, 16, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [9, 9, 16, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [8, 0, 7],
"to": [16, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0"},
"west": {"uv": [7, 0, 8, 16], "texture": "#0"},
"up": {"uv": [8, 7, 16, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [8, 8, 16, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 8],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [7, 0, 16, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 8, 16, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 16, 8], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 9],
"to": [16, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 10, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [6, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [6, 9, 16, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 6, 16, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [5, 0, 10],
"to": [16, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 11, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [5, 0, 16, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [5, 10, 16, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [5, 5, 16, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 11],
"to": [16, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 12, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [4, 0, 16, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [4, 11, 16, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 4, 16, 5], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 12],
"to": [16, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 13, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [3, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 16, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 3, 16, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 13],
"to": [16, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 14, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [2, 0, 16, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [2, 13, 16, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 2, 16, 3], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 14],
"to": [16, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 15, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [1, 0, 16, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [1, 14, 16, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 1, 16, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 0, 15],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 15, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 1], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,218 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [15, 0, 0],
"to": [16, 8, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 1, 16], "texture": "#0"},
"up": {"uv": [15, 0, 16, 1], "texture": "#0"},
"down": {"uv": [15, 15, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [14, 0, 1],
"to": [16, 8, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 2, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 0, 16, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [14, 1, 16, 2], "texture": "#0"},
"down": {"uv": [14, 14, 16, 15], "texture": "#0", "cullface": "down"}
}
},
{
"from": [13, 0, 2],
"to": [16, 8, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [13, 0, 16, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [13, 2, 16, 3], "texture": "#0"},
"down": {"uv": [13, 13, 16, 14], "texture": "#0", "cullface": "down"}
}
},
{
"from": [12, 0, 3],
"to": [16, 8, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [12, 3, 16, 4], "texture": "#0"},
"down": {"uv": [12, 12, 16, 13], "texture": "#0", "cullface": "down"}
}
},
{
"from": [11, 0, 4],
"to": [16, 8, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 5, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [11, 0, 16, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [11, 4, 16, 5], "texture": "#0"},
"down": {"uv": [11, 11, 16, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [10, 0, 5],
"to": [16, 8, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 6, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [10, 0, 16, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [10, 5, 16, 6], "texture": "#0"},
"down": {"uv": [10, 10, 16, 11], "texture": "#0", "cullface": "down"}
}
},
{
"from": [9, 0, 6],
"to": [16, 8, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [9, 6, 16, 7], "texture": "#0"},
"down": {"uv": [9, 9, 16, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [8, 0, 7],
"to": [16, 8, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0"},
"west": {"uv": [7, 0, 8, 16], "texture": "#0"},
"up": {"uv": [8, 7, 16, 8], "texture": "#0"},
"down": {"uv": [8, 8, 16, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 8],
"to": [16, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [7, 0, 16, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 8, 16, 9], "texture": "#0"},
"down": {"uv": [7, 7, 16, 8], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 9],
"to": [16, 8, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 10, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [6, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [6, 9, 16, 10], "texture": "#0"},
"down": {"uv": [6, 6, 16, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [5, 0, 10],
"to": [16, 8, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 11, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [5, 0, 16, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [5, 10, 16, 11], "texture": "#0"},
"down": {"uv": [5, 5, 16, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 11],
"to": [16, 8, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 12, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [4, 0, 16, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [4, 11, 16, 12], "texture": "#0"},
"down": {"uv": [4, 4, 16, 5], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 12],
"to": [16, 8, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 13, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [3, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 16, 13], "texture": "#0"},
"down": {"uv": [3, 3, 16, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 13],
"to": [16, 8, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 14, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [2, 0, 16, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [2, 13, 16, 14], "texture": "#0"},
"down": {"uv": [2, 2, 16, 3], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 14],
"to": [16, 8, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 15, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [1, 0, 16, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [1, 14, 16, 15], "texture": "#0"},
"down": {"uv": [1, 1, 16, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 0, 15],
"to": [16, 8, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 15, 16, 16], "texture": "#0"},
"down": {"uv": [0, 0, 16, 1], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,218 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [15, 8, 0],
"to": [16, 16, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 1, 16], "texture": "#0"},
"up": {"uv": [15, 0, 16, 1], "texture": "#0", "cullface": "up"},
"down": {"uv": [15, 15, 16, 16], "texture": "#0"}
}
},
{
"from": [14, 8, 1],
"to": [16, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 2, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 0, 16, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [14, 1, 16, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [14, 14, 16, 15], "texture": "#0"}
}
},
{
"from": [13, 8, 2],
"to": [16, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [13, 0, 16, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [13, 2, 16, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [13, 13, 16, 14], "texture": "#0"}
}
},
{
"from": [12, 8, 3],
"to": [16, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [12, 3, 16, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [12, 12, 16, 13], "texture": "#0"}
}
},
{
"from": [11, 8, 4],
"to": [16, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 5, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [11, 0, 16, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [11, 4, 16, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [11, 11, 16, 12], "texture": "#0"}
}
},
{
"from": [10, 8, 5],
"to": [16, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 6, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [10, 0, 16, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [10, 5, 16, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [10, 10, 16, 11], "texture": "#0"}
}
},
{
"from": [9, 8, 6],
"to": [16, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [9, 6, 16, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [9, 9, 16, 10], "texture": "#0"}
}
},
{
"from": [8, 8, 7],
"to": [16, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0"},
"west": {"uv": [7, 0, 8, 16], "texture": "#0"},
"up": {"uv": [8, 7, 16, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [8, 8, 16, 9], "texture": "#0"}
}
},
{
"from": [7, 8, 8],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [7, 0, 16, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 8, 16, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 16, 8], "texture": "#0"}
}
},
{
"from": [6, 8, 9],
"to": [16, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 10, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [6, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [6, 9, 16, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 6, 16, 7], "texture": "#0"}
}
},
{
"from": [5, 8, 10],
"to": [16, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 11, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [5, 0, 16, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [5, 10, 16, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [5, 5, 16, 6], "texture": "#0"}
}
},
{
"from": [4, 8, 11],
"to": [16, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 12, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [4, 0, 16, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [4, 11, 16, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 4, 16, 5], "texture": "#0"}
}
},
{
"from": [3, 8, 12],
"to": [16, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 13, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [3, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 16, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 3, 16, 4], "texture": "#0"}
}
},
{
"from": [2, 8, 13],
"to": [16, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 14, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [2, 0, 16, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [2, 13, 16, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 2, 16, 3], "texture": "#0"}
}
},
{
"from": [1, 8, 14],
"to": [16, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 15, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [1, 0, 16, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [1, 14, 16, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 1, 16, 2], "texture": "#0"}
}
},
{
"from": [0, 8, 15],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 15, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 1], "texture": "#0"}
}
}
]
}
@@ -1,114 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [15, 0, 8],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [15, 8, 16, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [15, 7, 16, 8], "texture": "#0", "cullface": "down"}
}
},
{
"from": [14, 0, 9],
"to": [16, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 2, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [14, 9, 16, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [14, 6, 16, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [13, 0, 10],
"to": [16, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 3, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [13, 0, 16, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [13, 10, 16, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [13, 5, 16, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [12, 0, 11],
"to": [16, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [12, 11, 16, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [12, 4, 16, 5], "texture": "#0", "cullface": "down"}
}
},
{
"from": [11, 0, 12],
"to": [16, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 5, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [11, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [11, 12, 16, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [11, 3, 16, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [10, 0, 13],
"to": [16, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 6, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [10, 0, 16, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [10, 13, 16, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [10, 2, 16, 3], "texture": "#0", "cullface": "down"}
}
},
{
"from": [9, 0, 14],
"to": [16, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [9, 14, 16, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [9, 1, 16, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [8, 0, 15],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#0"},
"up": {"uv": [8, 15, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [8, 0, 16, 1], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,114 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [0, 0, 7],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 9, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [7, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 0],
"to": [16, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [9, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [7, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 7, 16], "texture": "#0"},
"up": {"uv": [7, 0, 16, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 9, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 1],
"to": [7, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 10, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0"},
"south": {"uv": [6, 0, 7, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [6, 1, 7, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 14, 7, 15], "texture": "#0", "cullface": "down"}
}
},
{
"from": [5, 0, 2],
"to": [7, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 11, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0"},
"south": {"uv": [5, 0, 7, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [5, 2, 7, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [5, 13, 7, 14], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 3],
"to": [7, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 12, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0"},
"south": {"uv": [4, 0, 7, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [4, 3, 7, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 12, 7, 13], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 4],
"to": [7, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 13, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0"},
"south": {"uv": [3, 0, 7, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [3, 4, 7, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 11, 7, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 5],
"to": [7, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 14, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0"},
"south": {"uv": [2, 0, 7, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [2, 5, 7, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 10, 7, 11], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 6],
"to": [7, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 15, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0"},
"south": {"uv": [1, 0, 7, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [1, 6, 7, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 9, 7, 10], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [0, 0, 12],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,73 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [0, 0, 12],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 16, 12],
"to": [16, 24, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 16], "texture": "#0"},
"east": {"uv": [0, 8, 4, 16], "texture": "#0"},
"south": {"uv": [0, 8, 16, 16], "texture": "#0"},
"west": {"uv": [12, 8, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -3, 0],
"scale": [0.5, 0.5, 0.5]
},
"head": {
"rotation": [90, 0, 90],
"translation": [4, 14, 0]
},
"fixed": {
"translation": [0, -2, -3],
"scale": [0.5, 0.5, 0.5]
}
}
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/cyan_terracotta",
"particle": "block/cyan_terracotta"
},
"elements": [
{
"from": [0, 0, 12],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#1"},
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,73 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/cyan_terracotta",
"particle": "block/cyan_terracotta"
},
"elements": [
{
"from": [0, 0, 12],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#1"},
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "down"}
}
},
{
"from": [0, 16, 12],
"to": [16, 24, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 16], "texture": "#1"},
"east": {"uv": [0, 8, 4, 16], "texture": "#1"},
"south": {"uv": [0, 8, 16, 16], "texture": "#1"},
"west": {"uv": [12, 8, 16, 16], "texture": "#1"},
"up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"},
"down": {"uv": [0, 0, 16, 4], "texture": "#1"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -3, 0],
"scale": [0.5, 0.5, 0.5]
},
"head": {
"rotation": [90, 0, 90],
"translation": [4, 14, 0]
},
"fixed": {
"translation": [0, -2, -3],
"scale": [0.5, 0.5, 0.5]
}
}
}
@@ -1,166 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"4": "block/gray_concrete",
"particle": "block/gray_concrete"
},
"elements": [
{
"from": [15, 13, 0],
"to": [16, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4"},
"up": {"uv": [15, 0, 16, 16], "texture": "#4"},
"down": {"uv": [15, 0, 16, 16], "texture": "#4"}
}
},
{
"from": [12, 13, 0],
"to": [13, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4"},
"south": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4"},
"up": {"uv": [12, 0, 13, 16], "texture": "#4"},
"down": {"uv": [12, 0, 13, 16], "texture": "#4"}
}
},
{
"from": [9, 13, 0],
"to": [10, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4"},
"south": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4"},
"up": {"uv": [9, 0, 10, 16], "texture": "#4"},
"down": {"uv": [9, 0, 10, 16], "texture": "#4"}
}
},
{
"from": [6, 13, 0],
"to": [7, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4"},
"south": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4"},
"up": {"uv": [6, 0, 7, 16], "texture": "#4"},
"down": {"uv": [6, 0, 7, 16], "texture": "#4"}
}
},
{
"from": [3, 13, 0],
"to": [4, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4"},
"south": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4"},
"up": {"uv": [3, 0, 4, 16], "texture": "#4"},
"down": {"uv": [3, 0, 4, 16], "texture": "#4"}
}
},
{
"from": [0, 13, 0],
"to": [1, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [0, 1, 16, 3], "texture": "#4"},
"south": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 0, 1, 16], "texture": "#4"},
"down": {"uv": [0, 0, 1, 16], "texture": "#4"}
}
},
{
"from": [0, 13, 15],
"to": [16, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4"},
"east": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "south"},
"west": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 15, 16, 16], "texture": "#4"},
"down": {"uv": [0, 0, 16, 1], "texture": "#4"}
}
},
{
"from": [0, 13, 12],
"to": [16, 15, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4"},
"east": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4"},
"west": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 12, 16, 13], "texture": "#4"},
"down": {"uv": [0, 3, 16, 4], "texture": "#4"}
}
},
{
"from": [0, 13, 9],
"to": [16, 15, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4"},
"east": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4"},
"west": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 9, 16, 10], "texture": "#4"},
"down": {"uv": [0, 6, 16, 7], "texture": "#4"}
}
},
{
"from": [0, 13, 6],
"to": [16, 15, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4"},
"east": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4"},
"west": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 6, 16, 7], "texture": "#4"},
"down": {"uv": [0, 9, 16, 10], "texture": "#4"}
}
},
{
"from": [0, 13, 3],
"to": [16, 15, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4"},
"east": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4"},
"west": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 3, 16, 4], "texture": "#4"},
"down": {"uv": [0, 12, 16, 13], "texture": "#4"}
}
},
{
"from": [0, 13, 0],
"to": [16, 15, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "north"},
"east": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 1, 16, 3], "texture": "#4"},
"west": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 0, 16, 1], "texture": "#4"},
"down": {"uv": [0, 15, 16, 16], "texture": "#4"}
}
}
]
}
@@ -1,445 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/white_concrete",
"2": "block/black_concrete",
"particle": "block/white_concrete"
},
"elements": [
{
"from": [14, 12, 0],
"to": [16, 14, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 2, 2, 4], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 2, 16, 4], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [14, 2, 16, 4], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 2, 16, 4], "rotation": 90, "texture": "#1"},
"up": {"uv": [14, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [14, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [12, 10, 0],
"to": [16, 12, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 4, 4, 6], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 4, 16, 6], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [12, 4, 16, 6], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 4, 16, 6], "rotation": 90, "texture": "#1"},
"up": {"uv": [12, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [12, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [10, 8, 0],
"to": [16, 10, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 6, 6, 8], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 6, 16, 8], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [10, 6, 16, 8], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 6, 16, 8], "rotation": 90, "texture": "#1"},
"up": {"uv": [10, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [10, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [8, 6, 0],
"to": [16, 8, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 8, 10], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 8, 16, 10], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [8, 8, 16, 10], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 8, 16, 10], "rotation": 90, "texture": "#1"},
"up": {"uv": [8, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [8, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [6, 4, 0],
"to": [16, 6, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 10, 10, 12], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 10, 16, 12], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [6, 10, 16, 12], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 10, 16, 12], "rotation": 90, "texture": "#1"},
"up": {"uv": [6, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [6, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [4, 2, 0],
"to": [16, 4, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 12, 12, 14], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 12, 16, 14], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [4, 12, 16, 14], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 12, 16, 14], "rotation": 90, "texture": "#1"},
"up": {"uv": [4, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [4, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [2, 0, 0],
"to": [16, 2, 16],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 14, 14, 16], "rotation": 180, "texture": "#1", "cullface": "north"},
"east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#1", "cullface": "east"},
"south": {"uv": [2, 14, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#1"},
"up": {"uv": [2, 0, 16, 16], "rotation": 180, "texture": "#1"},
"down": {"uv": [2, 0, 16, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [0, 0, 7],
"to": [1, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 0, 16, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [0, 0, 1, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [4, 4, 7],
"to": [5, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 0, 12, 12], "texture": "#2"},
"east": {"uv": [7, 0, 9, 12], "texture": "#2"},
"south": {"uv": [4, 0, 5, 12], "texture": "#2"},
"west": {"uv": [7, 0, 9, 12], "texture": "#2"},
"up": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [4, 7, 5, 9], "texture": "#2"}
}
},
{
"from": [8, 8, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 8, 8], "texture": "#2"},
"east": {"uv": [7, 0, 9, 8], "texture": "#2"},
"south": {"uv": [8, 0, 9, 8], "texture": "#2"},
"west": {"uv": [7, 0, 9, 8], "texture": "#2"},
"up": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [8, 7, 9, 9], "texture": "#2"}
}
},
{
"from": [12, 12, 7],
"to": [13, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 4, 4], "texture": "#2"},
"east": {"uv": [7, 0, 9, 4], "texture": "#2"},
"south": {"uv": [12, 0, 13, 4], "texture": "#2"},
"west": {"uv": [7, 0, 9, 4], "texture": "#2"},
"up": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [12, 7, 13, 9], "texture": "#2"}
}
},
{
"from": [15, 14, 7],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 2], "texture": "#2"},
"east": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "east"},
"south": {"uv": [15, 0, 16, 2], "texture": "#2"},
"west": {"uv": [7, 0, 9, 2], "texture": "#2"},
"up": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [15, 7, 16, 9], "texture": "#2"}
}
},
{
"from": [1, 0, 7],
"to": [2, 3, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 13, 15, 16], "texture": "#2"},
"east": {"uv": [7, 13, 9, 16], "texture": "#2"},
"south": {"uv": [1, 13, 2, 16], "texture": "#2"},
"west": {"uv": [7, 13, 9, 16], "texture": "#2"},
"up": {"uv": [1, 7, 2, 9], "texture": "#2"},
"down": {"uv": [1, 7, 2, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [3, 2, 7],
"to": [4, 5, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 11, 13, 14], "texture": "#2"},
"east": {"uv": [7, 11, 9, 14], "texture": "#2"},
"south": {"uv": [3, 11, 4, 14], "texture": "#2"},
"west": {"uv": [7, 11, 9, 14], "texture": "#2"},
"up": {"uv": [3, 7, 4, 9], "texture": "#2"},
"down": {"uv": [3, 7, 4, 9], "texture": "#2"}
}
},
{
"from": [5, 4, 7],
"to": [6, 7, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 9, 11, 12], "texture": "#2"},
"east": {"uv": [7, 9, 9, 12], "texture": "#2"},
"south": {"uv": [5, 9, 6, 12], "texture": "#2"},
"west": {"uv": [7, 9, 9, 12], "texture": "#2"},
"up": {"uv": [5, 7, 6, 9], "texture": "#2"},
"down": {"uv": [5, 7, 6, 9], "texture": "#2"}
}
},
{
"from": [7, 6, 7],
"to": [8, 9, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 7, 9, 10], "texture": "#2"},
"east": {"uv": [7, 7, 9, 10], "texture": "#2"},
"south": {"uv": [7, 7, 8, 10], "texture": "#2"},
"west": {"uv": [7, 7, 9, 10], "texture": "#2"},
"up": {"uv": [7, 7, 8, 9], "texture": "#2"},
"down": {"uv": [7, 7, 8, 9], "texture": "#2"}
}
},
{
"from": [9, 8, 7],
"to": [10, 11, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 5, 7, 8], "texture": "#2"},
"east": {"uv": [7, 5, 9, 8], "texture": "#2"},
"south": {"uv": [9, 5, 10, 8], "texture": "#2"},
"west": {"uv": [7, 5, 9, 8], "texture": "#2"},
"up": {"uv": [9, 7, 10, 9], "texture": "#2"},
"down": {"uv": [9, 7, 10, 9], "texture": "#2"}
}
},
{
"from": [11, 10, 7],
"to": [12, 13, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 3, 5, 6], "texture": "#2"},
"east": {"uv": [7, 3, 9, 6], "texture": "#2"},
"south": {"uv": [11, 3, 12, 6], "texture": "#2"},
"west": {"uv": [7, 3, 9, 6], "texture": "#2"},
"up": {"uv": [11, 7, 12, 9], "texture": "#2"},
"down": {"uv": [11, 7, 12, 9], "texture": "#2"}
}
},
{
"from": [13, 12, 7],
"to": [14, 15, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 1, 3, 4], "texture": "#2"},
"east": {"uv": [7, 1, 9, 4], "texture": "#2"},
"south": {"uv": [13, 1, 14, 4], "texture": "#2"},
"west": {"uv": [7, 1, 9, 4], "texture": "#2"},
"up": {"uv": [13, 7, 14, 9], "texture": "#2"},
"down": {"uv": [13, 7, 14, 9], "texture": "#2"}
}
},
{
"from": [2, 2, 7],
"to": [3, 3, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 13, 14, 14], "texture": "#2"},
"east": {"uv": [7, 13, 9, 14], "texture": "#2"},
"south": {"uv": [2, 13, 3, 14], "texture": "#2"},
"west": {"uv": [7, 13, 9, 14], "texture": "#2"},
"up": {"uv": [2, 7, 3, 9], "texture": "#2"},
"down": {"uv": [2, 7, 3, 9], "texture": "#2"}
}
},
{
"from": [6, 6, 7],
"to": [7, 7, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 10, 10], "texture": "#2"},
"east": {"uv": [7, 9, 9, 10], "texture": "#2"},
"south": {"uv": [6, 9, 7, 10], "texture": "#2"},
"west": {"uv": [7, 9, 9, 10], "texture": "#2"},
"up": {"uv": [6, 7, 7, 9], "texture": "#2"},
"down": {"uv": [6, 7, 7, 9], "texture": "#2"}
}
},
{
"from": [10, 10, 7],
"to": [11, 11, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 5, 6, 6], "texture": "#2"},
"east": {"uv": [7, 5, 9, 6], "texture": "#2"},
"south": {"uv": [10, 5, 11, 6], "texture": "#2"},
"west": {"uv": [7, 5, 9, 6], "texture": "#2"},
"up": {"uv": [10, 7, 11, 9], "texture": "#2"},
"down": {"uv": [10, 7, 11, 9], "texture": "#2"}
}
},
{
"from": [14, 14, 7],
"to": [15, 15, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 1, 2, 2], "texture": "#2"},
"east": {"uv": [7, 1, 9, 2], "texture": "#2"},
"south": {"uv": [14, 1, 15, 2], "texture": "#2"},
"west": {"uv": [7, 1, 9, 2], "texture": "#2"},
"up": {"uv": [14, 7, 15, 9], "texture": "#2"},
"down": {"uv": [14, 7, 15, 9], "texture": "#2"}
}
},
{
"from": [0, 16, 7],
"to": [1, 32, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 0, 16, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [0, 0, 1, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2"},
"up": {"uv": [0, 7, 1, 9], "texture": "#2"},
"down": {"uv": [0, 7, 1, 9], "texture": "#2"}
}
},
{
"from": [4, 16, 7],
"to": [5, 32, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 0, 12, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [4, 0, 5, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2"},
"up": {"uv": [4, 7, 5, 9], "texture": "#2"},
"down": {"uv": [4, 7, 5, 9], "texture": "#2"}
}
},
{
"from": [8, 16, 7],
"to": [9, 32, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 8, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [8, 0, 9, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2"},
"up": {"uv": [8, 7, 9, 9], "texture": "#2"},
"down": {"uv": [8, 7, 9, 9], "texture": "#2"}
}
},
{
"from": [12, 16, 7],
"to": [13, 32, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 4, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [12, 0, 13, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2"},
"up": {"uv": [12, 7, 13, 9], "texture": "#2"},
"down": {"uv": [12, 7, 13, 9], "texture": "#2"}
}
},
{
"from": [15, 16, 7],
"to": [16, 32, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#2"},
"east": {"uv": [7, 0, 9, 16], "texture": "#2"},
"south": {"uv": [15, 0, 16, 16], "texture": "#2"},
"west": {"uv": [7, 0, 9, 16], "texture": "#2"},
"up": {"uv": [15, 7, 16, 9], "texture": "#2"},
"down": {"uv": [15, 7, 16, 9], "texture": "#2"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -2.5, 0],
"scale": [0.4, 0.4, 0.4]
},
"head": {
"rotation": [90, 0, 90],
"translation": [4, 14, 0]
},
"fixed": {
"translation": [0, -4, 0],
"scale": [0.5, 0.5, 0.5]
}
},
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [7, 8, 9, 10, 11]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
}
]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [23, 24, 25, 26, 27]
}
]
}
@@ -1,379 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"2": "block/black_concrete",
"particle": "block/white_concrete"
},
"elements": [
{
"from": [0, 18, 7],
"to": [16, 19, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 13, 16, 14], "texture": "#2"},
"east": {"uv": [7, 13, 9, 14], "texture": "#2"},
"south": {"uv": [0, 13, 16, 14], "texture": "#2"},
"west": {"uv": [7, 13, 9, 14], "texture": "#2"},
"up": {"uv": [0, 7, 16, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [0, 7, 16, 9], "texture": "#2"}
}
},
{
"from": [0, 16, 7],
"to": [1, 22, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 10, 16, 16], "texture": "#2"},
"east": {"uv": [7, 10, 9, 16], "texture": "#2"},
"south": {"uv": [0, 10, 1, 16], "texture": "#2"},
"west": {"uv": [7, 10, 9, 16], "texture": "#2"},
"up": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [0, 7, 1, 9], "texture": "#2"}
}
},
{
"from": [4, 16, 7],
"to": [5, 22, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 10, 12, 16], "texture": "#2"},
"east": {"uv": [7, 10, 9, 16], "texture": "#2"},
"south": {"uv": [4, 10, 5, 16], "texture": "#2"},
"west": {"uv": [7, 10, 9, 16], "texture": "#2"},
"up": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [4, 7, 5, 9], "texture": "#2"}
}
},
{
"from": [8, 16, 7],
"to": [9, 22, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 10, 8, 16], "texture": "#2"},
"east": {"uv": [7, 10, 9, 16], "texture": "#2"},
"south": {"uv": [8, 10, 9, 16], "texture": "#2"},
"west": {"uv": [7, 10, 9, 16], "texture": "#2"},
"up": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [8, 7, 9, 9], "texture": "#2"}
}
},
{
"from": [12, 16, 7],
"to": [13, 22, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 10, 4, 16], "texture": "#2"},
"east": {"uv": [7, 10, 9, 16], "texture": "#2"},
"south": {"uv": [12, 10, 13, 16], "texture": "#2"},
"west": {"uv": [7, 10, 9, 16], "texture": "#2"},
"up": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [12, 7, 13, 9], "texture": "#2"}
}
},
{
"from": [15, 16, 7],
"to": [16, 22, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 10, 1, 16], "texture": "#2"},
"east": {"uv": [7, 10, 9, 16], "texture": "#2"},
"south": {"uv": [15, 10, 16, 16], "texture": "#2"},
"west": {"uv": [7, 10, 9, 16], "texture": "#2"},
"up": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [15, 7, 16, 9], "texture": "#2"}
}
},
{
"from": [0, 14, 7],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 2], "texture": "#2"},
"east": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 2], "texture": "#2"},
"west": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#2", "cullface": "up"},
"down": {"uv": [0, 7, 16, 9], "texture": "#2"}
}
},
{
"from": [0, 0, 7],
"to": [1, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 2, 16, 16], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"south": {"uv": [0, 2, 1, 16], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 7, 1, 9], "texture": "#2"},
"down": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [4, 0, 7],
"to": [5, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 2, 12, 16], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"south": {"uv": [4, 2, 5, 16], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"up": {"uv": [4, 7, 5, 9], "texture": "#2"},
"down": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [8, 0, 7],
"to": [9, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 2, 8, 16], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"south": {"uv": [8, 2, 9, 16], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"up": {"uv": [8, 7, 9, 9], "texture": "#2"},
"down": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [12, 0, 7],
"to": [13, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 2, 4, 16], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"south": {"uv": [12, 2, 13, 16], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"up": {"uv": [12, 7, 13, 9], "texture": "#2"},
"down": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [15, 0, 7],
"to": [16, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 2, 1, 16], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2", "cullface": "east"},
"south": {"uv": [15, 2, 16, 16], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"},
"up": {"uv": [15, 7, 16, 9], "texture": "#2"},
"down": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [1, 13, 7],
"to": [2, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 2, 15, 3], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"},
"south": {"uv": [1, 2, 2, 3], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"},
"up": {"uv": [1, 7, 2, 9], "texture": "#2"},
"down": {"uv": [1, 7, 2, 9], "texture": "#2"}
}
},
{
"from": [3, 11, 7],
"to": [4, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 2, 13, 5], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 5], "rotation": 180, "texture": "#2"},
"south": {"uv": [3, 2, 4, 5], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 5], "rotation": 180, "texture": "#2"},
"up": {"uv": [3, 7, 4, 9], "texture": "#2"},
"down": {"uv": [3, 7, 4, 9], "texture": "#2"}
}
},
{
"from": [5, 9, 7],
"to": [6, 12, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 4, 11, 7], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 4, 9, 7], "rotation": 180, "texture": "#2"},
"south": {"uv": [5, 4, 6, 7], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 4, 9, 7], "rotation": 180, "texture": "#2"},
"up": {"uv": [5, 7, 6, 9], "texture": "#2"},
"down": {"uv": [5, 7, 6, 9], "texture": "#2"}
}
},
{
"from": [7, 7, 7],
"to": [8, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 6, 9, 9], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 6, 9, 9], "rotation": 180, "texture": "#2"},
"south": {"uv": [7, 6, 8, 9], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 6, 9, 9], "rotation": 180, "texture": "#2"},
"up": {"uv": [7, 7, 8, 9], "texture": "#2"},
"down": {"uv": [7, 7, 8, 9], "texture": "#2"}
}
},
{
"from": [9, 5, 7],
"to": [10, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 8, 7, 11], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 8, 9, 11], "rotation": 180, "texture": "#2"},
"south": {"uv": [9, 8, 10, 11], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 8, 9, 11], "rotation": 180, "texture": "#2"},
"up": {"uv": [9, 7, 10, 9], "texture": "#2"},
"down": {"uv": [9, 7, 10, 9], "texture": "#2"}
}
},
{
"from": [11, 3, 7],
"to": [12, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 10, 5, 13], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 10, 9, 13], "rotation": 180, "texture": "#2"},
"south": {"uv": [11, 10, 12, 13], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 10, 9, 13], "rotation": 180, "texture": "#2"},
"up": {"uv": [11, 7, 12, 9], "texture": "#2"},
"down": {"uv": [11, 7, 12, 9], "texture": "#2"}
}
},
{
"from": [13, 1, 7],
"to": [14, 4, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 12, 3, 15], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 12, 9, 15], "rotation": 180, "texture": "#2"},
"south": {"uv": [13, 12, 14, 15], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 12, 9, 15], "rotation": 180, "texture": "#2"},
"up": {"uv": [13, 7, 14, 9], "texture": "#2"},
"down": {"uv": [13, 7, 14, 9], "texture": "#2"}
}
},
{
"from": [2, 13, 7],
"to": [3, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 2, 14, 3], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"},
"south": {"uv": [2, 2, 3, 3], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"},
"up": {"uv": [2, 7, 3, 9], "texture": "#2"},
"down": {"uv": [2, 7, 3, 9], "texture": "#2"}
}
},
{
"from": [6, 9, 7],
"to": [7, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 6, 9, 7], "rotation": 180, "texture": "#2"},
"south": {"uv": [6, 6, 7, 7], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 6, 9, 7], "rotation": 180, "texture": "#2"},
"up": {"uv": [6, 7, 7, 9], "texture": "#2"},
"down": {"uv": [6, 7, 7, 9], "texture": "#2"}
}
},
{
"from": [10, 5, 7],
"to": [11, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 10, 6, 11], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 10, 9, 11], "rotation": 180, "texture": "#2"},
"south": {"uv": [10, 10, 11, 11], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 10, 9, 11], "rotation": 180, "texture": "#2"},
"up": {"uv": [10, 7, 11, 9], "texture": "#2"},
"down": {"uv": [10, 7, 11, 9], "texture": "#2"}
}
},
{
"from": [14, 1, 7],
"to": [15, 2, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 14, 2, 15], "rotation": 180, "texture": "#2"},
"east": {"uv": [7, 14, 9, 15], "rotation": 180, "texture": "#2"},
"south": {"uv": [14, 14, 15, 15], "rotation": 180, "texture": "#2"},
"west": {"uv": [7, 14, 9, 15], "rotation": 180, "texture": "#2"},
"up": {"uv": [14, 7, 15, 9], "texture": "#2"},
"down": {"uv": [14, 7, 15, 9], "texture": "#2"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -1.5, 0],
"scale": [0.5, 0.5, 0.5]
},
"head": {
"rotation": [90, 0, 90],
"translation": [3, 8, 0]
},
"fixed": {
"translation": [0, -1.5, 0],
"scale": [0.5, 0.5, 0.5]
}
},
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [
{
"name": "group",
"origin": [15, 16, 7],
"color": 0,
"children": [6]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [7, 8, 9, 10, 11]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
}
]
}
]
}
@@ -1,82 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"particle": "block/white_concrete",
"tex": "block/white_concrete"
},
"elements": [
{
"from": [1, 0, 7],
"to": [3, 16, 8],
"faces": {
"north": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [1, 7, 3, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [1, 8, 3, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [5, 0, 7],
"to": [7, 16, 8],
"faces": {
"north": {"uv": [9, 0, 11, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [5, 0, 7, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [5, 7, 7, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [5, 8, 7, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [9, 0, 7],
"to": [11, 16, 8],
"faces": {
"north": {"uv": [5, 0, 7, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [9, 0, 11, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [9, 7, 11, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [9, 8, 11, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [13, 0, 7],
"to": [15, 16, 8],
"faces": {
"north": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [13, 7, 15, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [13, 8, 15, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [0, 3, 8],
"to": [16, 6, 9],
"faces": {
"north": {"uv": [0, 10, 16, 13], "texture": "#tex"},
"east": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "east"},
"south": {"uv": [0, 10, 16, 13], "texture": "#tex"},
"west": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "west"},
"up": {"uv": [0, 8, 16, 9], "texture": "#tex"},
"down": {"uv": [0, 7, 16, 8], "texture": "#tex"}
}
},
{
"from": [0, 9, 8],
"to": [16, 12, 9],
"faces": {
"north": {"uv": [0, 4, 16, 7], "texture": "#tex"},
"east": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "east"},
"south": {"uv": [0, 4, 16, 7], "texture": "#tex"},
"west": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "west"},
"up": {"uv": [0, 8, 16, 9], "texture": "#tex"},
"down": {"uv": [0, 7, 16, 8], "texture": "#tex"}
}
}
]
}
@@ -1,94 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"particle": "block/white_concrete",
"tex": "block/white_concrete"
},
"elements": [
{
"from": [13, 0, 7],
"to": [15, 16, 8],
"faces": {
"north": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [13, 7, 15, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [13, 8, 15, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [8, 0, 1],
"to": [9, 16, 3],
"faces": {
"north": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"east": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"south": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"west": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"up": {"uv": [8, 1, 9, 3], "texture": "#tex", "cullface": "up"},
"down": {"uv": [8, 13, 9, 15], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [10, 3, 8],
"to": [16, 6, 9],
"faces": {
"north": {"uv": [0, 10, 6, 13], "texture": "#tex"},
"east": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "east"},
"south": {"uv": [10, 10, 16, 13], "texture": "#tex"},
"west": {"uv": [8, 10, 9, 13], "texture": "#tex"},
"up": {"uv": [10, 8, 16, 9], "texture": "#tex"},
"down": {"uv": [10, 7, 16, 8], "texture": "#tex"}
}
},
{
"from": [10, 9, 8],
"to": [16, 12, 9],
"faces": {
"north": {"uv": [0, 4, 6, 7], "texture": "#tex"},
"east": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "east"},
"south": {"uv": [10, 4, 16, 7], "texture": "#tex"},
"west": {"uv": [8, 4, 9, 7], "texture": "#tex"},
"up": {"uv": [10, 8, 16, 9], "texture": "#tex"},
"down": {"uv": [10, 7, 16, 8], "texture": "#tex"}
}
},
{
"from": [7, 3, 0],
"to": [8, 6, 6],
"faces": {
"north": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "north"},
"east": {"uv": [10, 10, 16, 13], "texture": "#tex"},
"south": {"uv": [7, 10, 8, 13], "texture": "#tex"},
"west": {"uv": [0, 10, 6, 13], "texture": "#tex"},
"up": {"uv": [7, 0, 8, 6], "texture": "#tex"},
"down": {"uv": [7, 10, 8, 16], "texture": "#tex"}
}
},
{
"from": [7, 9, 0],
"to": [8, 12, 6],
"faces": {
"north": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "north"},
"east": {"uv": [10, 4, 16, 7], "texture": "#tex"},
"south": {"uv": [7, 4, 8, 7], "texture": "#tex"},
"west": {"uv": [0, 4, 6, 7], "texture": "#tex"},
"up": {"uv": [7, 0, 8, 6], "texture": "#tex"},
"down": {"uv": [7, 10, 8, 16], "texture": "#tex"}
}
},
{
"from": [6, 0, 6],
"to": [10, 16, 10],
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"east": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"south": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"west": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"up": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "up"},
"down": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "down"}
}
}
]
}
@@ -1,94 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"particle": "block/white_concrete",
"tex": "block/white_concrete"
},
"elements": [
{
"from": [1, 0, 7],
"to": [3, 16, 8],
"faces": {
"north": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"east": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"south": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"west": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"up": {"uv": [1, 7, 3, 8], "texture": "#tex", "cullface": "up"},
"down": {"uv": [1, 8, 3, 9], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [8, 0, 13],
"to": [9, 16, 15],
"faces": {
"north": {"uv": [7, 0, 8, 16], "texture": "#tex"},
"east": {"uv": [1, 0, 3, 16], "texture": "#tex"},
"south": {"uv": [8, 0, 9, 16], "texture": "#tex"},
"west": {"uv": [13, 0, 15, 16], "texture": "#tex"},
"up": {"uv": [8, 13, 9, 15], "texture": "#tex", "cullface": "up"},
"down": {"uv": [8, 1, 9, 3], "texture": "#tex", "cullface": "down"}
}
},
{
"from": [0, 3, 8],
"to": [6, 6, 9],
"faces": {
"north": {"uv": [10, 10, 16, 13], "texture": "#tex"},
"east": {"uv": [7, 10, 8, 13], "texture": "#tex"},
"south": {"uv": [0, 10, 6, 13], "texture": "#tex"},
"west": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "west"},
"up": {"uv": [0, 8, 6, 9], "texture": "#tex"},
"down": {"uv": [0, 7, 6, 8], "texture": "#tex"}
}
},
{
"from": [0, 9, 8],
"to": [6, 12, 9],
"faces": {
"north": {"uv": [10, 4, 16, 7], "texture": "#tex"},
"east": {"uv": [7, 4, 8, 7], "texture": "#tex"},
"south": {"uv": [0, 4, 6, 7], "texture": "#tex"},
"west": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "west"},
"up": {"uv": [0, 8, 6, 9], "texture": "#tex"},
"down": {"uv": [0, 7, 6, 8], "texture": "#tex"}
}
},
{
"from": [7, 3, 10],
"to": [8, 6, 16],
"faces": {
"north": {"uv": [8, 10, 9, 13], "texture": "#tex"},
"east": {"uv": [0, 10, 6, 13], "texture": "#tex"},
"south": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "south"},
"west": {"uv": [10, 10, 16, 13], "texture": "#tex"},
"up": {"uv": [7, 10, 8, 16], "texture": "#tex"},
"down": {"uv": [7, 0, 8, 6], "texture": "#tex"}
}
},
{
"from": [7, 9, 10],
"to": [8, 12, 16],
"faces": {
"north": {"uv": [8, 4, 9, 7], "texture": "#tex"},
"east": {"uv": [0, 4, 6, 7], "texture": "#tex"},
"south": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "south"},
"west": {"uv": [10, 4, 16, 7], "texture": "#tex"},
"up": {"uv": [7, 10, 8, 16], "texture": "#tex"},
"down": {"uv": [7, 0, 8, 6], "texture": "#tex"}
}
},
{
"from": [6, 0, 6],
"to": [10, 16, 10],
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"east": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"south": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"west": {"uv": [6, 0, 10, 16], "texture": "#tex"},
"up": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "up"},
"down": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "down"}
}
}
]
}
@@ -1,428 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/red_concrete",
"2": "block/polished_diorite",
"particle": "block/polished_diorite"
},
"elements": [
{
"from": [15, 0, 15],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#2"},
"east": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#2"},
"up": {"uv": [15, 15, 16, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [15, 0, 16, 1], "texture": "#2", "cullface": "down"}
}
},
{
"from": [14, 0, 14],
"to": [15, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 2, 16], "texture": "#2"},
"east": {"uv": [0, 0, 2, 16], "texture": "#2"},
"south": {"uv": [14, 0, 15, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [14, 0, 16, 16], "texture": "#2"},
"up": {"uv": [14, 14, 15, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [14, 0, 15, 2], "texture": "#2", "cullface": "down"}
}
},
{
"from": [13, 0, 13],
"to": [14, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 3, 16], "texture": "#2"},
"east": {"uv": [0, 0, 3, 16], "texture": "#2"},
"south": {"uv": [13, 0, 14, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [13, 0, 16, 16], "texture": "#2"},
"up": {"uv": [13, 13, 14, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [13, 0, 14, 3], "texture": "#2", "cullface": "down"}
}
},
{
"from": [12, 0, 12],
"to": [13, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 4, 16], "texture": "#2"},
"east": {"uv": [0, 0, 4, 16], "texture": "#2"},
"south": {"uv": [12, 0, 13, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [12, 0, 16, 16], "texture": "#2"},
"up": {"uv": [12, 12, 13, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [12, 0, 13, 4], "texture": "#2", "cullface": "down"}
}
},
{
"from": [11, 0, 11],
"to": [12, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 5, 16], "texture": "#2"},
"east": {"uv": [0, 0, 5, 16], "texture": "#2"},
"south": {"uv": [11, 0, 12, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [11, 0, 16, 16], "texture": "#2"},
"up": {"uv": [11, 11, 12, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [11, 0, 12, 5], "texture": "#2", "cullface": "down"}
}
},
{
"from": [10, 0, 10],
"to": [11, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 0, 6, 16], "texture": "#2"},
"east": {"uv": [0, 0, 6, 16], "texture": "#2"},
"south": {"uv": [10, 0, 11, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [10, 0, 16, 16], "texture": "#2"},
"up": {"uv": [10, 10, 11, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [10, 0, 11, 6], "texture": "#2", "cullface": "down"}
}
},
{
"from": [9, 0, 9],
"to": [10, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 7, 16], "texture": "#2"},
"east": {"uv": [0, 0, 7, 16], "texture": "#2"},
"south": {"uv": [9, 0, 10, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [9, 0, 16, 16], "texture": "#2"},
"up": {"uv": [9, 9, 10, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [9, 0, 10, 7], "texture": "#2", "cullface": "down"}
}
},
{
"from": [8, 0, 8],
"to": [9, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 8, 16], "texture": "#2"},
"east": {"uv": [0, 0, 8, 16], "texture": "#2"},
"south": {"uv": [8, 0, 9, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [8, 0, 16, 16], "texture": "#2"},
"up": {"uv": [8, 8, 9, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [8, 0, 9, 8], "texture": "#2", "cullface": "down"}
}
},
{
"from": [7, 0, 7],
"to": [8, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 0, 9, 16], "texture": "#2"},
"east": {"uv": [0, 0, 9, 16], "texture": "#2"},
"south": {"uv": [7, 0, 8, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [7, 0, 16, 16], "texture": "#2"},
"up": {"uv": [7, 7, 8, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [7, 0, 8, 9], "texture": "#2", "cullface": "down"}
}
},
{
"from": [6, 0, 6],
"to": [7, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 10, 16], "texture": "#2"},
"east": {"uv": [0, 0, 10, 16], "texture": "#2"},
"south": {"uv": [6, 0, 7, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [6, 0, 16, 16], "texture": "#2"},
"up": {"uv": [6, 6, 7, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [6, 0, 7, 10], "texture": "#2", "cullface": "down"}
}
},
{
"from": [5, 0, 5],
"to": [6, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 0, 11, 16], "texture": "#2"},
"east": {"uv": [0, 0, 11, 16], "texture": "#2"},
"south": {"uv": [5, 0, 6, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [5, 0, 16, 16], "texture": "#2"},
"up": {"uv": [5, 5, 6, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [5, 0, 6, 11], "texture": "#2", "cullface": "down"}
}
},
{
"from": [4, 0, 4],
"to": [5, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 0, 12, 16], "texture": "#2"},
"east": {"uv": [0, 0, 12, 16], "texture": "#2"},
"south": {"uv": [4, 0, 5, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [4, 0, 16, 16], "texture": "#2"},
"up": {"uv": [4, 4, 5, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [4, 0, 5, 12], "texture": "#2", "cullface": "down"}
}
},
{
"from": [3, 0, 3],
"to": [4, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 13, 16], "texture": "#2"},
"east": {"uv": [0, 0, 13, 16], "texture": "#2"},
"south": {"uv": [3, 0, 4, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [3, 0, 16, 16], "texture": "#2"},
"up": {"uv": [3, 3, 4, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [3, 0, 4, 13], "texture": "#2", "cullface": "down"}
}
},
{
"from": [2, 0, 2],
"to": [3, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 0, 14, 16], "texture": "#2"},
"east": {"uv": [0, 0, 14, 16], "texture": "#2"},
"south": {"uv": [2, 0, 3, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [2, 0, 16, 16], "texture": "#2"},
"up": {"uv": [2, 2, 3, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [2, 0, 3, 14], "texture": "#2", "cullface": "down"}
}
},
{
"from": [1, 0, 1],
"to": [2, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 0, 15, 16], "texture": "#2"},
"east": {"uv": [0, 0, 15, 16], "texture": "#2"},
"south": {"uv": [1, 0, 2, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [1, 0, 16, 16], "texture": "#2"},
"up": {"uv": [1, 1, 2, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [1, 0, 2, 15], "texture": "#2", "cullface": "down"}
}
},
{
"from": [0, 0, 0],
"to": [1, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 0, 16, 16], "texture": "#2", "cullface": "north"},
"east": {"uv": [0, 0, 16, 16], "texture": "#2"},
"south": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "up"},
"down": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "down"}
}
},
{
"from": [15, 0, 0],
"to": [16, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [1, 0, 16, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [15, 0, 16, 16], "texture": "#1"},
"west": {"uv": [0, 0, 15, 16], "texture": "#1"},
"up": {"uv": [15, 0, 16, 15], "texture": "#1", "cullface": "up"},
"down": {"uv": [15, 1, 16, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [14, 0, 0],
"to": [15, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 2, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [2, 0, 16, 16], "texture": "#1"},
"south": {"uv": [14, 0, 15, 16], "texture": "#1"},
"west": {"uv": [0, 0, 14, 16], "texture": "#1"},
"up": {"uv": [14, 0, 15, 14], "texture": "#1", "cullface": "up"},
"down": {"uv": [14, 2, 15, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [13, 0, 0],
"to": [14, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 3, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [3, 0, 16, 16], "texture": "#1"},
"south": {"uv": [13, 0, 14, 16], "texture": "#1"},
"west": {"uv": [0, 0, 13, 16], "texture": "#1"},
"up": {"uv": [13, 0, 14, 13], "texture": "#1", "cullface": "up"},
"down": {"uv": [13, 3, 14, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [12, 0, 0],
"to": [13, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [4, 0, 16, 16], "texture": "#1"},
"south": {"uv": [12, 0, 13, 16], "texture": "#1"},
"west": {"uv": [0, 0, 12, 16], "texture": "#1"},
"up": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "up"},
"down": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [11, 0, 0],
"to": [12, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 5, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [5, 0, 16, 16], "texture": "#1"},
"south": {"uv": [11, 0, 12, 16], "texture": "#1"},
"west": {"uv": [0, 0, 11, 16], "texture": "#1"},
"up": {"uv": [11, 0, 12, 11], "texture": "#1", "cullface": "up"},
"down": {"uv": [11, 5, 12, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [10, 0, 0],
"to": [11, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 0, 6, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [6, 0, 16, 16], "texture": "#1"},
"south": {"uv": [10, 0, 11, 16], "texture": "#1"},
"west": {"uv": [0, 0, 10, 16], "texture": "#1"},
"up": {"uv": [10, 0, 11, 10], "texture": "#1", "cullface": "up"},
"down": {"uv": [10, 6, 11, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [9, 0, 0],
"to": [10, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 7, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [7, 0, 16, 16], "texture": "#1"},
"south": {"uv": [9, 0, 10, 16], "texture": "#1"},
"west": {"uv": [0, 0, 9, 16], "texture": "#1"},
"up": {"uv": [9, 0, 10, 9], "texture": "#1", "cullface": "up"},
"down": {"uv": [9, 7, 10, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [8, 0, 0],
"to": [9, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 8, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [8, 0, 16, 16], "texture": "#1"},
"south": {"uv": [8, 0, 9, 16], "texture": "#1"},
"west": {"uv": [0, 0, 8, 16], "texture": "#1"},
"up": {"uv": [8, 0, 9, 8], "texture": "#1", "cullface": "up"},
"down": {"uv": [8, 8, 9, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [7, 0, 0],
"to": [8, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 0, 9, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [9, 0, 16, 16], "texture": "#1"},
"south": {"uv": [7, 0, 8, 16], "texture": "#1"},
"west": {"uv": [0, 0, 7, 16], "texture": "#1"},
"up": {"uv": [7, 0, 8, 7], "texture": "#1", "cullface": "up"},
"down": {"uv": [7, 9, 8, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [6, 0, 0],
"to": [7, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 10, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [10, 0, 16, 16], "texture": "#1"},
"south": {"uv": [6, 0, 7, 16], "texture": "#1"},
"west": {"uv": [0, 0, 6, 16], "texture": "#1"},
"up": {"uv": [6, 0, 7, 6], "texture": "#1", "cullface": "up"},
"down": {"uv": [6, 10, 7, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [5, 0, 0],
"to": [6, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 0, 11, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [11, 0, 16, 16], "texture": "#1"},
"south": {"uv": [5, 0, 6, 16], "texture": "#1"},
"west": {"uv": [0, 0, 5, 16], "texture": "#1"},
"up": {"uv": [5, 0, 6, 5], "texture": "#1", "cullface": "up"},
"down": {"uv": [5, 11, 6, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [4, 0, 0],
"to": [5, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 0, 12, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [12, 0, 16, 16], "texture": "#1"},
"south": {"uv": [4, 0, 5, 16], "texture": "#1"},
"west": {"uv": [0, 0, 4, 16], "texture": "#1"},
"up": {"uv": [4, 0, 5, 4], "texture": "#1", "cullface": "up"},
"down": {"uv": [4, 12, 5, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [3, 0, 0],
"to": [4, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [13, 0, 16, 16], "texture": "#1"},
"south": {"uv": [3, 0, 4, 16], "texture": "#1"},
"west": {"uv": [0, 0, 3, 16], "texture": "#1"},
"up": {"uv": [3, 0, 4, 3], "texture": "#1", "cullface": "up"},
"down": {"uv": [3, 13, 4, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [2, 0, 0],
"to": [3, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 0, 14, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [14, 0, 16, 16], "texture": "#1"},
"south": {"uv": [2, 0, 3, 16], "texture": "#1"},
"west": {"uv": [0, 0, 2, 16], "texture": "#1"},
"up": {"uv": [2, 0, 3, 2], "texture": "#1", "cullface": "up"},
"down": {"uv": [2, 14, 3, 16], "texture": "#1", "cullface": "down"}
}
},
{
"from": [1, 0, 0],
"to": [2, 16, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 0, 15, 16], "texture": "#1", "cullface": "north"},
"east": {"uv": [15, 0, 16, 16], "texture": "#1"},
"south": {"uv": [1, 0, 2, 16], "texture": "#1"},
"west": {"uv": [0, 0, 1, 16], "texture": "#1"},
"up": {"uv": [1, 0, 2, 1], "texture": "#1", "cullface": "up"},
"down": {"uv": [1, 15, 2, 16], "texture": "#1", "cullface": "down"}
}
}
],
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
}
]
}
@@ -1,49 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [6, 0, 7],
"to": [10, 16, 9],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#0"},
"east": {"uv": [7, 0, 9, 16], "texture": "#0"},
"south": {"uv": [6, 0, 10, 16], "texture": "#0"},
"west": {"uv": [7, 0, 9, 16], "texture": "#0"},
"up": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 9],
"to": [9, 16, 10],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 6],
"to": [9, 16, 7],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,25 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 8, 14],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 8], "texture": "#2"},
"east": {"uv": [0, 0, 2, 8], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"},
"west": {"uv": [14, 0, 16, 8], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 14, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 2], "texture": "#1"}
}
}
]
}
@@ -1,38 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 8, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "north"},
"east": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"},
"west": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [0, 0, 4],
"to": [16, 8, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 16], "texture": "#2"},
"east": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 8, 16, 16], "texture": "#2"},
"west": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 4, 16, 12], "texture": "#3"},
"down": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,51 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 8, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "north"},
"east": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"},
"west": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"}
}
},
{
"from": [0, 0, 4],
"to": [16, 8, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 16], "texture": "#2"},
"east": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 8, 16, 16], "texture": "#2"},
"west": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 4, 16, 12], "texture": "#3"},
"down": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "down"}
}
},
{
"from": [4, 0, 0],
"to": [12, 8, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "north"},
"east": {"uv": [12, 8, 16, 16], "texture": "#2"},
"south": {"uv": [4, 8, 12, 16], "texture": "#2"},
"west": {"uv": [0, 8, 4, 16], "texture": "#2"},
"up": {"uv": [4, 0, 12, 4], "texture": "#3"},
"down": {"uv": [4, 12, 12, 16], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,25 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 8, 8],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 8], "texture": "#2"},
"east": {"uv": [0, 0, 8, 8], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"},
"west": {"uv": [8, 0, 16, 8], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 8, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 8], "texture": "#1"}
}
}
]
}
@@ -1,192 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [1, 0, 6],
"to": [15, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 5],
"to": [14, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 10],
"to": [14, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 11],
"to": [14, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 4],
"to": [14, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 3],
"to": [13, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 13, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0"},
"south": {"uv": [3, 0, 13, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 12],
"to": [13, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 13, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0"},
"south": {"uv": [3, 0, 13, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 2],
"to": [12, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 13],
"to": [12, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 1],
"to": [10, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0"},
"south": {"uv": [6, 0, 10, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 14],
"to": [10, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0"},
"south": {"uv": [6, 0, 10, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 7],
"to": [15, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [8, 0, 9, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [7, 0, 8, 16], "texture": "#0"},
"up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 8],
"to": [15, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 9],
"to": [15, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,388 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [1, 0, 6],
"to": [15, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [9, 0, 10, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [6, 0, 7, 16], "texture": "#0"},
"up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 5],
"to": [14, 16, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [10, 0, 11, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [5, 0, 6, 16], "texture": "#0"},
"up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 10],
"to": [14, 16, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [5, 0, 6, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [10, 0, 11, 16], "texture": "#0"},
"up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 11],
"to": [14, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [4, 0, 5, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [11, 0, 12, 16], "texture": "#0"},
"up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 0, 4],
"to": [14, 16, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 0, 14, 16], "texture": "#0"},
"east": {"uv": [11, 0, 12, 16], "texture": "#0"},
"south": {"uv": [2, 0, 14, 16], "texture": "#0"},
"west": {"uv": [4, 0, 5, 16], "texture": "#0"},
"up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 3],
"to": [13, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 13, 16], "texture": "#0"},
"east": {"uv": [12, 0, 13, 16], "texture": "#0"},
"south": {"uv": [3, 0, 13, 16], "texture": "#0"},
"west": {"uv": [3, 0, 4, 16], "texture": "#0"},
"up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "down"}
}
},
{
"from": [3, 0, 12],
"to": [13, 16, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 0, 13, 16], "texture": "#0"},
"east": {"uv": [3, 0, 4, 16], "texture": "#0"},
"south": {"uv": [3, 0, 13, 16], "texture": "#0"},
"west": {"uv": [12, 0, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 2],
"to": [12, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [13, 0, 14, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [2, 0, 3, 16], "texture": "#0"},
"up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 13],
"to": [12, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [2, 0, 3, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [13, 0, 14, 16], "texture": "#0"},
"up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 1],
"to": [10, 16, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#0"},
"east": {"uv": [14, 0, 15, 16], "texture": "#0"},
"south": {"uv": [6, 0, 10, 16], "texture": "#0"},
"west": {"uv": [1, 0, 2, 16], "texture": "#0"},
"up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 14],
"to": [10, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 0, 10, 16], "texture": "#0"},
"east": {"uv": [1, 0, 2, 16], "texture": "#0"},
"south": {"uv": [6, 0, 10, 16], "texture": "#0"},
"west": {"uv": [14, 0, 15, 16], "texture": "#0"},
"up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 7],
"to": [15, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [8, 0, 9, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [7, 0, 8, 16], "texture": "#0"},
"up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 8],
"to": [15, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [7, 0, 8, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [8, 0, 9, 16], "texture": "#0"},
"up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 0, 9],
"to": [15, 16, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 16], "texture": "#0"},
"east": {"uv": [6, 0, 7, 16], "texture": "#0"},
"south": {"uv": [1, 0, 15, 16], "texture": "#0"},
"west": {"uv": [9, 0, 10, 16], "texture": "#0"},
"up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [1, 16, 6],
"to": [15, 24, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 8, 15, 16], "texture": "#0"},
"east": {"uv": [9, 8, 10, 16], "texture": "#0"},
"south": {"uv": [1, 8, 15, 16], "texture": "#0"},
"west": {"uv": [6, 8, 7, 16], "texture": "#0"},
"up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 9, 15, 10], "texture": "#0"}
}
},
{
"from": [2, 16, 5],
"to": [14, 24, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 8, 14, 16], "texture": "#0"},
"east": {"uv": [10, 8, 11, 16], "texture": "#0"},
"south": {"uv": [2, 8, 14, 16], "texture": "#0"},
"west": {"uv": [5, 8, 6, 16], "texture": "#0"},
"up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 10, 14, 11], "texture": "#0"}
}
},
{
"from": [2, 16, 10],
"to": [14, 24, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 8, 14, 16], "texture": "#0"},
"east": {"uv": [5, 8, 6, 16], "texture": "#0"},
"south": {"uv": [2, 8, 14, 16], "texture": "#0"},
"west": {"uv": [10, 8, 11, 16], "texture": "#0"},
"up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 5, 14, 6], "texture": "#0"}
}
},
{
"from": [2, 16, 11],
"to": [14, 24, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 8, 14, 16], "texture": "#0"},
"east": {"uv": [4, 8, 5, 16], "texture": "#0"},
"south": {"uv": [2, 8, 14, 16], "texture": "#0"},
"west": {"uv": [11, 8, 12, 16], "texture": "#0"},
"up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 4, 14, 5], "texture": "#0"}
}
},
{
"from": [2, 16, 4],
"to": [14, 24, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 8, 14, 16], "texture": "#0"},
"east": {"uv": [11, 8, 12, 16], "texture": "#0"},
"south": {"uv": [2, 8, 14, 16], "texture": "#0"},
"west": {"uv": [4, 8, 5, 16], "texture": "#0"},
"up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"},
"down": {"uv": [2, 11, 14, 12], "texture": "#0"}
}
},
{
"from": [3, 16, 3],
"to": [13, 24, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 8, 13, 16], "texture": "#0"},
"east": {"uv": [12, 8, 13, 16], "texture": "#0"},
"south": {"uv": [3, 8, 13, 16], "texture": "#0"},
"west": {"uv": [3, 8, 4, 16], "texture": "#0"},
"up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 12, 13, 13], "texture": "#0"}
}
},
{
"from": [3, 16, 12],
"to": [13, 24, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 8, 13, 16], "texture": "#0"},
"east": {"uv": [3, 8, 4, 16], "texture": "#0"},
"south": {"uv": [3, 8, 13, 16], "texture": "#0"},
"west": {"uv": [12, 8, 13, 16], "texture": "#0"},
"up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"},
"down": {"uv": [3, 3, 13, 4], "texture": "#0"}
}
},
{
"from": [4, 16, 2],
"to": [12, 24, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 16], "texture": "#0"},
"east": {"uv": [13, 8, 14, 16], "texture": "#0"},
"south": {"uv": [4, 8, 12, 16], "texture": "#0"},
"west": {"uv": [2, 8, 3, 16], "texture": "#0"},
"up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 13, 12, 14], "texture": "#0"}
}
},
{
"from": [4, 16, 13],
"to": [12, 24, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 16], "texture": "#0"},
"east": {"uv": [2, 8, 3, 16], "texture": "#0"},
"south": {"uv": [4, 8, 12, 16], "texture": "#0"},
"west": {"uv": [13, 8, 14, 16], "texture": "#0"},
"up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 2, 12, 3], "texture": "#0"}
}
},
{
"from": [6, 16, 1],
"to": [10, 24, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 8, 10, 16], "texture": "#0"},
"east": {"uv": [14, 8, 15, 16], "texture": "#0"},
"south": {"uv": [6, 8, 10, 16], "texture": "#0"},
"west": {"uv": [1, 8, 2, 16], "texture": "#0"},
"up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 14, 10, 15], "texture": "#0"}
}
},
{
"from": [6, 16, 14],
"to": [10, 24, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 8, 10, 16], "texture": "#0"},
"east": {"uv": [1, 8, 2, 16], "texture": "#0"},
"south": {"uv": [6, 8, 10, 16], "texture": "#0"},
"west": {"uv": [14, 8, 15, 16], "texture": "#0"},
"up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [6, 1, 10, 2], "texture": "#0"}
}
},
{
"from": [1, 16, 7],
"to": [15, 24, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 8, 15, 16], "texture": "#0"},
"east": {"uv": [8, 8, 9, 16], "texture": "#0"},
"south": {"uv": [1, 8, 15, 16], "texture": "#0"},
"west": {"uv": [7, 8, 8, 16], "texture": "#0"},
"up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 8, 15, 9], "texture": "#0"}
}
},
{
"from": [1, 16, 8],
"to": [15, 24, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 8, 15, 16], "texture": "#0"},
"east": {"uv": [7, 8, 8, 16], "texture": "#0"},
"south": {"uv": [1, 8, 15, 16], "texture": "#0"},
"west": {"uv": [8, 8, 9, 16], "texture": "#0"},
"up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 7, 15, 8], "texture": "#0"}
}
},
{
"from": [1, 16, 9],
"to": [15, 24, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 8, 15, 16], "texture": "#0"},
"east": {"uv": [6, 8, 7, 16], "texture": "#0"},
"south": {"uv": [1, 8, 15, 16], "texture": "#0"},
"west": {"uv": [9, 8, 10, 16], "texture": "#0"},
"up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"},
"down": {"uv": [1, 6, 15, 7], "texture": "#0"}
}
}
],
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27]
}
]
}
@@ -1,266 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [-4, 0, 16],
"to": [0, 16, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 4], "texture": "#0"},
"down": {"uv": [12, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [-4, 0, -4],
"to": [0, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [12, 12, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [4, 0, -8],
"to": [12, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 8, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [8, 0, 16, 16], "texture": "#0"},
"up": {"uv": [4, 8, 12, 16], "texture": "#0"},
"down": {"uv": [4, 0, 12, 8], "texture": "#0"}
}
},
{
"from": [12, 0, -7],
"to": [16, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 7, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 16, 16], "texture": "#0"},
"up": {"uv": [12, 9, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 0, -7],
"to": [4, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 7, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [9, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 9, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 7], "texture": "#0"}
}
},
{
"from": [0, 0, 16],
"to": [4, 16, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [9, 0, 16, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 7, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 7], "texture": "#0"},
"down": {"uv": [0, 9, 4, 16], "texture": "#0"}
}
},
{
"from": [12, 0, 16],
"to": [16, 16, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [9, 0, 16, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 7, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 7], "texture": "#0"},
"down": {"uv": [12, 9, 16, 16], "texture": "#0"}
}
},
{
"from": [-8, 0, 4],
"to": [0, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [4, 0, 12, 16], "texture": "#0"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0"},
"west": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [8, 4, 16, 12], "texture": "#0"},
"down": {"uv": [8, 4, 16, 12], "texture": "#0"}
}
},
{
"from": [16, 0, 4],
"to": [24, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 0, 16, 16], "texture": "#0"},
"east": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 8, 16], "texture": "#0"},
"west": {"uv": [4, 0, 12, 16], "texture": "#0"},
"up": {"uv": [0, 4, 8, 12], "texture": "#0"},
"down": {"uv": [0, 4, 8, 12], "texture": "#0"}
}
},
{
"from": [4, 0, 16],
"to": [12, 16, 24],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [8, 0, 16, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 8, 16], "texture": "#0"},
"up": {"uv": [4, 0, 12, 8], "texture": "#0"},
"down": {"uv": [4, 8, 12, 16], "texture": "#0"}
}
},
{
"from": [16, 0, -4],
"to": [20, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 4], "texture": "#0"}
}
},
{
"from": [16, 0, 0],
"to": [23, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 7, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 7, 4], "texture": "#0"},
"down": {"uv": [0, 12, 7, 16], "texture": "#0"}
}
},
{
"from": [16, 0, 12],
"to": [23, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 7, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 7, 16], "texture": "#0"},
"down": {"uv": [0, 0, 7, 4], "texture": "#0"}
}
},
{
"from": [-7, 0, 12],
"to": [0, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [9, 12, 16, 16], "texture": "#0"},
"down": {"uv": [9, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [-7, 0, 0],
"to": [0, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [9, 0, 16, 4], "texture": "#0"},
"down": {"uv": [9, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [16, 0, 16],
"to": [20, 16, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 4], "texture": "#0"},
"down": {"uv": [0, 12, 4, 16], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.2, 0.2, 0.2]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.2, 0.2, 0.2]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.2, 0.2, 0.2]
},
"firstperson_lefthand": {
"rotation": [0, 45, 0],
"scale": [0.2, 0.2, 0.2]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"head": {
"translation": [0, 10, 0],
"scale": [0.5, 0.5, 0.5]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}
@@ -1,503 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [-4, 0, 16],
"to": [0, 16, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 4], "texture": "#0"},
"down": {"uv": [12, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [-4, 0, -4],
"to": [0, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [12, 12, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [4, 0, -8],
"to": [12, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 8, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0"},
"west": {"uv": [8, 0, 16, 16], "texture": "#0"},
"up": {"uv": [4, 8, 12, 16], "texture": "#0"},
"down": {"uv": [4, 0, 12, 8], "texture": "#0"}
}
},
{
"from": [12, 0, -7],
"to": [16, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 7, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0"},
"west": {"uv": [9, 0, 16, 16], "texture": "#0"},
"up": {"uv": [12, 9, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 0, -7],
"to": [4, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 7, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [9, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 9, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 7], "texture": "#0"}
}
},
{
"from": [0, 0, 16],
"to": [4, 16, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [9, 0, 16, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 7, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 7], "texture": "#0"},
"down": {"uv": [0, 9, 4, 16], "texture": "#0"}
}
},
{
"from": [12, 0, 16],
"to": [16, 16, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 16], "texture": "#0"},
"east": {"uv": [9, 0, 16, 16], "texture": "#0"},
"south": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 7, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 7], "texture": "#0"},
"down": {"uv": [12, 9, 16, 16], "texture": "#0"}
}
},
{
"from": [-8, 0, 4],
"to": [0, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 16], "texture": "#0"},
"east": {"uv": [4, 0, 12, 16], "texture": "#0"},
"south": {"uv": [8, 0, 16, 16], "texture": "#0"},
"west": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [8, 4, 16, 12], "texture": "#0"},
"down": {"uv": [8, 4, 16, 12], "texture": "#0"}
}
},
{
"from": [16, 0, 4],
"to": [24, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 0, 16, 16], "texture": "#0"},
"east": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 8, 16], "texture": "#0"},
"west": {"uv": [4, 0, 12, 16], "texture": "#0"},
"up": {"uv": [0, 4, 8, 12], "texture": "#0"},
"down": {"uv": [0, 4, 8, 12], "texture": "#0"}
}
},
{
"from": [4, 0, 16],
"to": [12, 16, 24],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 16], "texture": "#0"},
"east": {"uv": [8, 0, 16, 16], "texture": "#0"},
"south": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 8, 16], "texture": "#0"},
"up": {"uv": [4, 0, 12, 8], "texture": "#0"},
"down": {"uv": [4, 8, 12, 16], "texture": "#0"}
}
},
{
"from": [16, 0, -4],
"to": [20, 16, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 4], "texture": "#0"}
}
},
{
"from": [16, 0, 0],
"to": [23, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 7, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 7, 4], "texture": "#0"},
"down": {"uv": [0, 12, 7, 16], "texture": "#0"}
}
},
{
"from": [16, 0, 12],
"to": [23, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 7, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 7, 16], "texture": "#0"},
"down": {"uv": [0, 0, 7, 4], "texture": "#0"}
}
},
{
"from": [-7, 0, 12],
"to": [0, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [0, 0, 4, 16], "texture": "#0"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [9, 12, 16, 16], "texture": "#0"},
"down": {"uv": [9, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [-7, 0, 0],
"to": [0, 16, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [9, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [9, 0, 16, 4], "texture": "#0"},
"down": {"uv": [9, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [16, 0, 16],
"to": [20, 16, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 0, 16, 16], "texture": "#0"},
"east": {"uv": [12, 0, 16, 16], "texture": "#0"},
"south": {"uv": [0, 0, 4, 16], "texture": "#0"},
"west": {"uv": [0, 0, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 4], "texture": "#0"},
"down": {"uv": [0, 12, 4, 16], "texture": "#0"}
}
},
{
"from": [-4, 16, 16],
"to": [0, 24, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 4, 16], "texture": "#0"},
"east": {"uv": [12, 8, 16, 16], "texture": "#0"},
"south": {"uv": [12, 8, 16, 16], "texture": "#0"},
"west": {"uv": [0, 8, 4, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 4], "texture": "#0"},
"down": {"uv": [12, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [0, 16, 0],
"to": [16, 24, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 16], "texture": "#0"},
"east": {"uv": [0, 8, 16, 16], "texture": "#0"},
"south": {"uv": [0, 8, 16, 16], "texture": "#0"},
"west": {"uv": [0, 8, 16, 16], "texture": "#0"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
}
},
{
"from": [-4, 16, -4],
"to": [0, 24, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 4, 16], "texture": "#0"},
"east": {"uv": [0, 8, 4, 16], "texture": "#0"},
"south": {"uv": [12, 8, 16, 16], "texture": "#0"},
"west": {"uv": [12, 8, 16, 16], "texture": "#0"},
"up": {"uv": [12, 12, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [4, 16, -8],
"to": [12, 24, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 16], "texture": "#0"},
"east": {"uv": [0, 8, 8, 16], "texture": "#0"},
"south": {"uv": [4, 8, 12, 16], "texture": "#0"},
"west": {"uv": [8, 8, 16, 16], "texture": "#0"},
"up": {"uv": [4, 8, 12, 16], "texture": "#0"},
"down": {"uv": [4, 0, 12, 8], "texture": "#0"}
}
},
{
"from": [12, 16, -7],
"to": [16, 24, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 4, 16], "texture": "#0"},
"east": {"uv": [0, 8, 7, 16], "texture": "#0"},
"south": {"uv": [12, 8, 16, 16], "texture": "#0"},
"west": {"uv": [9, 8, 16, 16], "texture": "#0"},
"up": {"uv": [12, 9, 16, 16], "texture": "#0"},
"down": {"uv": [12, 0, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 16, -7],
"to": [4, 24, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 8, 16, 16], "texture": "#0"},
"east": {"uv": [0, 8, 7, 16], "texture": "#0"},
"south": {"uv": [0, 8, 4, 16], "texture": "#0"},
"west": {"uv": [9, 8, 16, 16], "texture": "#0"},
"up": {"uv": [0, 9, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 7], "texture": "#0"}
}
},
{
"from": [0, 16, 16],
"to": [4, 24, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 8, 16, 16], "texture": "#0"},
"east": {"uv": [9, 8, 16, 16], "texture": "#0"},
"south": {"uv": [0, 8, 4, 16], "texture": "#0"},
"west": {"uv": [0, 8, 7, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 7], "texture": "#0"},
"down": {"uv": [0, 9, 4, 16], "texture": "#0"}
}
},
{
"from": [12, 16, 16],
"to": [16, 24, 23],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 4, 16], "texture": "#0"},
"east": {"uv": [9, 8, 16, 16], "texture": "#0"},
"south": {"uv": [12, 8, 16, 16], "texture": "#0"},
"west": {"uv": [0, 8, 7, 16], "texture": "#0"},
"up": {"uv": [12, 0, 16, 7], "texture": "#0"},
"down": {"uv": [12, 9, 16, 16], "texture": "#0"}
}
},
{
"from": [-8, 16, 4],
"to": [0, 24, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 8, 16], "texture": "#0"},
"east": {"uv": [4, 8, 12, 16], "texture": "#0"},
"south": {"uv": [8, 8, 16, 16], "texture": "#0"},
"west": {"uv": [4, 8, 12, 16], "texture": "#0"},
"up": {"uv": [8, 4, 16, 12], "texture": "#0"},
"down": {"uv": [8, 4, 16, 12], "texture": "#0"}
}
},
{
"from": [16, 16, 4],
"to": [24, 24, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 8, 16, 16], "texture": "#0"},
"east": {"uv": [4, 8, 12, 16], "texture": "#0"},
"south": {"uv": [0, 8, 8, 16], "texture": "#0"},
"west": {"uv": [4, 8, 12, 16], "texture": "#0"},
"up": {"uv": [0, 4, 8, 12], "texture": "#0"},
"down": {"uv": [0, 4, 8, 12], "texture": "#0"}
}
},
{
"from": [4, 16, 16],
"to": [12, 24, 24],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 16], "texture": "#0"},
"east": {"uv": [8, 8, 16, 16], "texture": "#0"},
"south": {"uv": [4, 8, 12, 16], "texture": "#0"},
"west": {"uv": [0, 8, 8, 16], "texture": "#0"},
"up": {"uv": [4, 0, 12, 8], "texture": "#0"},
"down": {"uv": [4, 8, 12, 16], "texture": "#0"}
}
},
{
"from": [16, 16, -4],
"to": [20, 24, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 8, 16, 16], "texture": "#0"},
"east": {"uv": [0, 8, 4, 16], "texture": "#0"},
"south": {"uv": [0, 8, 4, 16], "texture": "#0"},
"west": {"uv": [12, 8, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 4, 16], "texture": "#0"},
"down": {"uv": [0, 0, 4, 4], "texture": "#0"}
}
},
{
"from": [16, 16, 0],
"to": [23, 24, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 8, 16, 16], "texture": "#0"},
"east": {"uv": [12, 8, 16, 16], "texture": "#0"},
"south": {"uv": [0, 8, 7, 16], "texture": "#0"},
"west": {"uv": [0, 8, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 7, 4], "texture": "#0"},
"down": {"uv": [0, 12, 7, 16], "texture": "#0"}
}
},
{
"from": [16, 16, 12],
"to": [23, 24, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 8, 16, 16], "texture": "#0"},
"east": {"uv": [0, 8, 4, 16], "texture": "#0"},
"south": {"uv": [0, 8, 7, 16], "texture": "#0"},
"west": {"uv": [12, 8, 16, 16], "texture": "#0"},
"up": {"uv": [0, 12, 7, 16], "texture": "#0"},
"down": {"uv": [0, 0, 7, 4], "texture": "#0"}
}
},
{
"from": [-7, 16, 12],
"to": [0, 24, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 7, 16], "texture": "#0"},
"east": {"uv": [0, 8, 4, 16], "texture": "#0"},
"south": {"uv": [9, 8, 16, 16], "texture": "#0"},
"west": {"uv": [12, 8, 16, 16], "texture": "#0"},
"up": {"uv": [9, 12, 16, 16], "texture": "#0"},
"down": {"uv": [9, 0, 16, 4], "texture": "#0"}
}
},
{
"from": [-7, 16, 0],
"to": [0, 24, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 7, 16], "texture": "#0"},
"east": {"uv": [12, 8, 16, 16], "texture": "#0"},
"south": {"uv": [9, 8, 16, 16], "texture": "#0"},
"west": {"uv": [0, 8, 4, 16], "texture": "#0"},
"up": {"uv": [9, 0, 16, 4], "texture": "#0"},
"down": {"uv": [9, 12, 16, 16], "texture": "#0"}
}
},
{
"from": [16, 16, 16],
"to": [20, 24, 20],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 8, 16, 16], "texture": "#0"},
"east": {"uv": [12, 8, 16, 16], "texture": "#0"},
"south": {"uv": [0, 8, 4, 16], "texture": "#0"},
"west": {"uv": [0, 8, 4, 16], "texture": "#0"},
"up": {"uv": [0, 0, 4, 4], "texture": "#0"},
"down": {"uv": [0, 12, 4, 16], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.2, 0.2, 0.2]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.2, 0.2, 0.2]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.2, 0.2, 0.2]
},
"firstperson_lefthand": {
"rotation": [0, 45, 0],
"scale": [0.2, 0.2, 0.2]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -1.5, 0],
"scale": [0.4, 0.4, 0.4]
},
"head": {
"translation": [0, 10, 0],
"scale": [0.5, 0.5, 0.5]
},
"fixed": {
"translation": [0, -2, 0],
"scale": [0.5, 0.5, 0.5]
}
},
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33]
}
]
}
@@ -1,25 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"2": "block/quartz_block_bottom",
"3": "block/quartz_block_side",
"4": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 0, 8],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
"east": {"uv": [0, 0, 8, 16], "texture": "#3", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#3", "cullface": "south"},
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"},
"up": {"uv": [0, 8, 16, 16], "rotation": 270, "texture": "#4", "cullface": "up"},
"down": {"uv": [0, 0, 16, 8], "rotation": 90, "texture": "#2", "cullface": "down"}
}
}
]
}
@@ -1,49 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 6, 7],
"to": [16, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 6, 16, 10], "texture": "#0"},
"east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 6, 16, 10], "texture": "#0"},
"west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
},
{
"from": [0, 7, 9],
"to": [16, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 9, 16, 10], "texture": "#0"},
"down": {"uv": [0, 6, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [16, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 6, 16, 7], "texture": "#0"},
"down": {"uv": [0, 9, 16, 10], "texture": "#0"}
}
}
]
}
@@ -1,88 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 6, 7],
"to": [16, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 6, 16, 10], "texture": "#0"},
"east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 6, 16, 10], "texture": "#0"},
"west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
},
{
"from": [0, 7, 9],
"to": [16, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 9, 16, 10], "texture": "#0"},
"down": {"uv": [0, 6, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [16, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 6, 16, 7], "texture": "#0"},
"down": {"uv": [0, 9, 16, 10], "texture": "#0"}
}
},
{
"from": [6, 0, 7],
"to": [10, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 10, 10, 16], "texture": "#0"},
"east": {"uv": [7, 10, 9, 16], "texture": "#0"},
"south": {"uv": [6, 10, 10, 16], "texture": "#0"},
"west": {"uv": [7, 10, 9, 16], "texture": "#0"},
"up": {"uv": [6, 7, 10, 9], "texture": "#0"},
"down": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 6],
"to": [9, 7, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 9, 9, 16], "texture": "#0"},
"east": {"uv": [9, 9, 10, 16], "texture": "#0"},
"south": {"uv": [7, 9, 9, 16], "texture": "#0"},
"west": {"uv": [6, 9, 7, 16], "texture": "#0"},
"up": {"uv": [7, 6, 9, 7], "texture": "#0"},
"down": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 9],
"to": [9, 7, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 9, 9, 16], "texture": "#0"},
"east": {"uv": [6, 9, 7, 16], "texture": "#0"},
"south": {"uv": [7, 9, 9, 16], "texture": "#0"},
"west": {"uv": [9, 9, 10, 16], "texture": "#0"},
"up": {"uv": [7, 9, 9, 10], "texture": "#0"},
"down": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,166 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 9, 7],
"to": [8, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 6, 16, 7], "texture": "#0"},
"east": {"uv": [7, 6, 9, 7], "texture": "#0"},
"south": {"uv": [0, 6, 8, 7], "texture": "#0"},
"west": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 8, 9], "texture": "#0"},
"down": {"uv": [0, 7, 8, 9], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [7, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 10, 9], "texture": "#0"},
"south": {"uv": [0, 7, 7, 9], "texture": "#0"},
"west": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 6, 7, 10], "texture": "#0"},
"down": {"uv": [0, 6, 7, 10], "texture": "#0"}
}
},
{
"from": [0, 6, 7],
"to": [6, 7, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 9, 16, 10], "texture": "#0"},
"east": {"uv": [7, 9, 9, 10], "texture": "#0"},
"south": {"uv": [0, 9, 6, 10], "texture": "#0"},
"west": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 6, 9], "texture": "#0"},
"down": {"uv": [0, 7, 6, 9], "texture": "#0"}
}
},
{
"from": [6, 6, 6],
"to": [7, 7, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 10, 10], "texture": "#0"},
"east": {"uv": [6, 9, 10, 10], "texture": "#0"},
"south": {"uv": [6, 9, 7, 10], "texture": "#0"},
"west": {"uv": [6, 9, 10, 10], "texture": "#0"},
"up": {"uv": [6, 6, 7, 10], "texture": "#0"},
"down": {"uv": [6, 6, 7, 10], "texture": "#0"}
}
},
{
"from": [5, 5, 7],
"to": [6, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 10, 11, 11], "texture": "#0"},
"east": {"uv": [7, 10, 9, 11], "texture": "#0"},
"south": {"uv": [5, 10, 6, 11], "texture": "#0"},
"west": {"uv": [7, 10, 9, 11], "texture": "#0"},
"up": {"uv": [5, 7, 6, 9], "texture": "#0"},
"down": {"uv": [5, 7, 6, 9], "texture": "#0"}
}
},
{
"from": [9, 0, 7],
"to": [10, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 8, 7, 16], "texture": "#0"},
"east": {"uv": [7, 8, 9, 16], "texture": "#0"},
"south": {"uv": [9, 8, 10, 16], "texture": "#0"},
"west": {"uv": [7, 8, 9, 16], "texture": "#0"},
"up": {"uv": [9, 7, 10, 9], "texture": "#0"},
"down": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 0, 6],
"to": [9, 7, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 9, 9, 16], "texture": "#0"},
"east": {"uv": [6, 9, 10, 16], "texture": "#0"},
"south": {"uv": [7, 9, 9, 16], "texture": "#0"},
"west": {"uv": [6, 9, 10, 16], "texture": "#0"},
"up": {"uv": [7, 6, 9, 10], "texture": "#0"},
"down": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "down"}
}
},
{
"from": [6, 0, 7],
"to": [7, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 10, 10, 16], "texture": "#0"},
"east": {"uv": [7, 10, 9, 16], "texture": "#0"},
"south": {"uv": [6, 10, 7, 16], "texture": "#0"},
"west": {"uv": [7, 10, 9, 16], "texture": "#0"},
"up": {"uv": [6, 7, 7, 9], "texture": "#0"},
"down": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, 7, 6],
"to": [8, 8, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 8, 9, 9], "texture": "#0"},
"east": {"uv": [6, 8, 10, 9], "texture": "#0"},
"south": {"uv": [7, 8, 8, 9], "texture": "#0"},
"west": {"uv": [6, 8, 10, 9], "texture": "#0"},
"up": {"uv": [7, 6, 8, 10], "texture": "#0"},
"down": {"uv": [7, 6, 8, 10], "texture": "#0"}
}
},
{
"from": [8, 7, 6],
"to": [9, 8, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 8, 8, 9], "texture": "#0"},
"east": {"uv": [6, 8, 10, 9], "texture": "#0"},
"south": {"uv": [8, 8, 9, 9], "texture": "#0"},
"west": {"uv": [6, 8, 10, 9], "texture": "#0"},
"up": {"uv": [8, 6, 9, 10], "texture": "#0"},
"down": {"uv": [8, 6, 9, 10], "texture": "#0"}
}
},
{
"from": [7, 8, 6],
"to": [8, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 7, 9, 8], "texture": "#0"},
"east": {"uv": [6, 7, 10, 8], "texture": "#0"},
"south": {"uv": [7, 7, 8, 8], "texture": "#0"},
"west": {"uv": [6, 7, 10, 8], "texture": "#0"},
"up": {"uv": [7, 6, 8, 10], "texture": "#0"},
"down": {"uv": [7, 6, 8, 10], "texture": "#0"}
}
},
{
"from": [8, 8, 7],
"to": [9, 9, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 7, 8, 8], "texture": "#0"},
"east": {"uv": [7, 7, 9, 8], "texture": "#0"},
"south": {"uv": [8, 7, 9, 8], "texture": "#0"},
"west": {"uv": [7, 7, 9, 8], "texture": "#0"},
"up": {"uv": [8, 7, 9, 9], "texture": "#0"},
"down": {"uv": [8, 7, 9, 9], "texture": "#0"}
}
}
]
}
@@ -1,264 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 6, 0],
"to": [9, 10, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [9, 6, 16, 10], "texture": "#0"},
"south": {"uv": [7, 6, 9, 10], "texture": "#0"},
"west": {"uv": [0, 6, 7, 10], "texture": "#0"},
"up": {"uv": [7, 0, 9, 7], "texture": "#0"},
"down": {"uv": [7, 9, 9, 16], "texture": "#0"}
}
},
{
"from": [6, 7, 0],
"to": [7, 9, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [10, 7, 16, 9], "texture": "#0"},
"south": {"uv": [6, 7, 7, 9], "texture": "#0"},
"west": {"uv": [0, 7, 6, 9], "texture": "#0"},
"up": {"uv": [6, 0, 7, 6], "texture": "#0"},
"down": {"uv": [6, 10, 7, 16], "texture": "#0"}
}
},
{
"from": [9, 7, 0],
"to": [10, 9, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [8, 7, 16, 9], "texture": "#0"},
"south": {"uv": [9, 7, 10, 9], "texture": "#0"},
"west": {"uv": [0, 7, 8, 9], "texture": "#0"},
"up": {"uv": [9, 0, 10, 8], "texture": "#0"},
"down": {"uv": [9, 8, 10, 16], "texture": "#0"}
}
},
{
"from": [0, 6, 7],
"to": [7, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 16, 10], "texture": "#0"},
"east": {"uv": [7, 6, 9, 10], "texture": "#0"},
"south": {"uv": [0, 6, 7, 10], "texture": "#0"},
"west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 7, 9], "texture": "#0"},
"down": {"uv": [0, 7, 7, 9], "texture": "#0"}
}
},
{
"from": [0, 7, 9],
"to": [8, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0"},
"south": {"uv": [0, 7, 8, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 9, 8, 10], "texture": "#0"},
"down": {"uv": [0, 6, 8, 7], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [6, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 7, 16, 9], "texture": "#0"},
"east": {"uv": [9, 7, 10, 9], "texture": "#0"},
"south": {"uv": [0, 7, 6, 9], "texture": "#0"},
"west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 6, 6, 7], "texture": "#0"},
"down": {"uv": [0, 9, 6, 10], "texture": "#0"}
}
},
{
"from": [5, 7, 5],
"to": [6, 9, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 7, 11, 9], "texture": "#0"},
"east": {"uv": [10, 7, 11, 9], "texture": "#0"},
"south": {"uv": [5, 7, 6, 9], "texture": "#0"},
"west": {"uv": [5, 7, 6, 9], "texture": "#0"},
"up": {"uv": [5, 5, 6, 6], "texture": "#0"},
"down": {"uv": [5, 10, 6, 11], "texture": "#0"}
}
},
{
"from": [5, 7, 4],
"to": [6, 9, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 7, 11, 9], "texture": "#0"},
"east": {"uv": [11, 7, 12, 9], "texture": "#0"},
"south": {"uv": [5, 7, 6, 9], "texture": "#0"},
"west": {"uv": [4, 7, 5, 9], "texture": "#0"},
"up": {"uv": [5, 4, 6, 5], "texture": "#0"},
"down": {"uv": [5, 11, 6, 12], "texture": "#0"}
}
},
{
"from": [4, 7, 5],
"to": [5, 9, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 7, 12, 9], "texture": "#0"},
"east": {"uv": [10, 7, 11, 9], "texture": "#0"},
"south": {"uv": [4, 7, 5, 9], "texture": "#0"},
"west": {"uv": [5, 7, 6, 9], "texture": "#0"},
"up": {"uv": [4, 5, 5, 6], "texture": "#0"},
"down": {"uv": [4, 10, 5, 11], "texture": "#0"}
}
},
{
"from": [6, 7, 6],
"to": [9, 9, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 7, 10, 9], "texture": "#0"},
"east": {"uv": [7, 7, 10, 9], "texture": "#0"},
"south": {"uv": [6, 7, 9, 9], "texture": "#0"},
"west": {"uv": [6, 7, 9, 9], "texture": "#0"},
"up": {"uv": [6, 6, 9, 9], "texture": "#0"},
"down": {"uv": [6, 7, 9, 10], "texture": "#0"}
}
},
{
"from": [7, 9, 7],
"to": [8, 10, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 6, 9, 7], "texture": "#0"},
"east": {"uv": [8, 6, 9, 7], "texture": "#0"},
"south": {"uv": [7, 6, 8, 7], "texture": "#0"},
"west": {"uv": [7, 6, 8, 7], "texture": "#0"},
"up": {"uv": [7, 7, 8, 8], "texture": "#0"},
"down": {"uv": [7, 8, 8, 9], "texture": "#0"}
}
},
{
"from": [6, 9, 6],
"to": [7, 10, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 10, 7], "texture": "#0"},
"east": {"uv": [9, 6, 10, 7], "texture": "#0"},
"south": {"uv": [6, 6, 7, 7], "texture": "#0"},
"west": {"uv": [6, 6, 7, 7], "texture": "#0"},
"up": {"uv": [6, 6, 7, 7], "texture": "#0"},
"down": {"uv": [6, 9, 7, 10], "texture": "#0"}
}
},
{
"from": [5, 9, 6],
"to": [6, 10, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 6, 11, 7], "texture": "#0"},
"east": {"uv": [9, 6, 10, 7], "texture": "#0"},
"south": {"uv": [5, 6, 6, 7], "texture": "#0"},
"west": {"uv": [6, 6, 7, 7], "texture": "#0"},
"up": {"uv": [5, 6, 6, 7], "texture": "#0"},
"down": {"uv": [5, 9, 6, 10], "texture": "#0"}
}
},
{
"from": [6, 9, 5],
"to": [7, 10, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 10, 7], "texture": "#0"},
"east": {"uv": [10, 6, 11, 7], "texture": "#0"},
"south": {"uv": [6, 6, 7, 7], "texture": "#0"},
"west": {"uv": [5, 6, 6, 7], "texture": "#0"},
"up": {"uv": [6, 5, 7, 6], "texture": "#0"},
"down": {"uv": [6, 10, 7, 11], "texture": "#0"}
}
},
{
"from": [6, 6, 6],
"to": [7, 7, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 10, 10], "texture": "#0"},
"east": {"uv": [9, 9, 10, 10], "texture": "#0"},
"south": {"uv": [6, 9, 7, 10], "texture": "#0"},
"west": {"uv": [6, 9, 7, 10], "texture": "#0"},
"up": {"uv": [6, 6, 7, 7], "texture": "#0"},
"down": {"uv": [6, 9, 7, 10], "texture": "#0"}
}
},
{
"from": [5, 6, 6],
"to": [6, 7, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 9, 11, 10], "texture": "#0"},
"east": {"uv": [9, 9, 10, 10], "texture": "#0"},
"south": {"uv": [5, 9, 6, 10], "texture": "#0"},
"west": {"uv": [6, 9, 7, 10], "texture": "#0"},
"up": {"uv": [5, 6, 6, 7], "texture": "#0"},
"down": {"uv": [5, 9, 6, 10], "texture": "#0"}
}
},
{
"from": [6, 6, 5],
"to": [7, 7, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 10, 10], "texture": "#0"},
"east": {"uv": [10, 9, 11, 10], "texture": "#0"},
"south": {"uv": [6, 9, 7, 10], "texture": "#0"},
"west": {"uv": [5, 9, 6, 10], "texture": "#0"},
"up": {"uv": [6, 5, 7, 6], "texture": "#0"},
"down": {"uv": [6, 10, 7, 11], "texture": "#0"}
}
},
{
"from": [7, 6, 7],
"to": [8, 7, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 9, 9, 10], "texture": "#0"},
"east": {"uv": [8, 9, 9, 10], "texture": "#0"},
"south": {"uv": [7, 9, 8, 10], "texture": "#0"},
"west": {"uv": [7, 9, 8, 10], "texture": "#0"},
"up": {"uv": [7, 7, 8, 8], "texture": "#0"},
"down": {"uv": [7, 8, 8, 9], "texture": "#0"}
}
}
],
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [3, 4, 5]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
}
]
}
@@ -1,492 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [9, 7, 0],
"to": [10, 9, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 7, 4, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 7, 16, 9], "texture": "#0"},
"south": {"uv": [12, 7, 13, 9], "texture": "#0"},
"west": {"uv": [0, 7, 4, 9], "texture": "#0"},
"up": {"uv": [12, 0, 13, 4], "texture": "#0"},
"down": {"uv": [12, 12, 13, 16], "texture": "#0"}
}
},
{
"from": [7, 6, 0],
"to": [9, 10, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 6, 6, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 6, 16, 10], "texture": "#0"},
"south": {"uv": [10, 6, 12, 10], "texture": "#0"},
"west": {"uv": [0, 6, 4, 10], "texture": "#0"},
"up": {"uv": [10, 0, 12, 4], "texture": "#0"},
"down": {"uv": [10, 12, 12, 16], "texture": "#0"}
}
},
{
"from": [6, 7, 0],
"to": [7, 9, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 7, 16, 9], "texture": "#0"},
"south": {"uv": [9, 7, 10, 9], "texture": "#0"},
"west": {"uv": [0, 7, 4, 9], "texture": "#0"},
"up": {"uv": [9, 0, 10, 4], "texture": "#0"},
"down": {"uv": [9, 12, 10, 16], "texture": "#0"}
}
},
{
"from": [5, 7, 4],
"to": [10, 9, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 7, 8, 9], "texture": "#0"},
"east": {"uv": [11, 7, 12, 9], "texture": "#0"},
"south": {"uv": [8, 7, 13, 9], "texture": "#0"},
"west": {"uv": [4, 7, 5, 9], "texture": "#0"},
"up": {"uv": [8, 4, 13, 5], "texture": "#0"},
"down": {"uv": [8, 11, 13, 12], "texture": "#0"}
}
},
{
"from": [4, 7, 5],
"to": [9, 9, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 7, 9, 9], "texture": "#0"},
"east": {"uv": [10, 7, 11, 9], "texture": "#0"},
"south": {"uv": [7, 7, 12, 9], "texture": "#0"},
"west": {"uv": [5, 7, 6, 9], "texture": "#0"},
"up": {"uv": [7, 5, 12, 6], "texture": "#0"},
"down": {"uv": [7, 10, 12, 11], "texture": "#0"}
}
},
{
"from": [3, 7, 6],
"to": [8, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 7, 10, 9], "texture": "#0"},
"east": {"uv": [9, 7, 10, 9], "texture": "#0"},
"south": {"uv": [6, 7, 11, 9], "texture": "#0"},
"west": {"uv": [6, 7, 7, 9], "texture": "#0"},
"up": {"uv": [6, 6, 11, 7], "texture": "#0"},
"down": {"uv": [6, 9, 11, 10], "texture": "#0"}
}
},
{
"from": [2, 7, 7],
"to": [7, 9, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 7, 11, 9], "texture": "#0"},
"east": {"uv": [8, 7, 9, 9], "texture": "#0"},
"south": {"uv": [5, 7, 10, 9], "texture": "#0"},
"west": {"uv": [7, 7, 8, 9], "texture": "#0"},
"up": {"uv": [5, 7, 10, 8], "texture": "#0"},
"down": {"uv": [5, 8, 10, 9], "texture": "#0"}
}
},
{
"from": [1, 7, 8],
"to": [6, 9, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 7, 12, 9], "texture": "#0"},
"east": {"uv": [7, 7, 8, 9], "texture": "#0"},
"south": {"uv": [4, 7, 9, 9], "texture": "#0"},
"west": {"uv": [8, 7, 9, 9], "texture": "#0"},
"up": {"uv": [4, 8, 9, 9], "texture": "#0"},
"down": {"uv": [4, 7, 9, 8], "texture": "#0"}
}
},
{
"from": [0, 7, 9],
"to": [5, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 7, 13, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0"},
"south": {"uv": [3, 7, 8, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [3, 9, 8, 10], "texture": "#0"},
"down": {"uv": [3, 6, 8, 7], "texture": "#0"}
}
},
{
"from": [-1, 7, 10],
"to": [4, 9, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 7, 14, 9], "texture": "#0"},
"east": {"uv": [5, 7, 6, 9], "texture": "#0"},
"south": {"uv": [2, 7, 7, 9], "texture": "#0"},
"west": {"uv": [10, 7, 11, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [2, 10, 7, 11], "texture": "#0"},
"down": {"uv": [2, 5, 7, 6], "texture": "#0"}
}
},
{
"from": [6, 9, 4],
"to": [9, 10, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 6, 7, 7], "texture": "#0"},
"east": {"uv": [11, 6, 12, 7], "texture": "#0"},
"south": {"uv": [9, 6, 12, 7], "texture": "#0"},
"west": {"uv": [4, 6, 5, 7], "texture": "#0"},
"up": {"uv": [9, 4, 12, 5], "texture": "#0"},
"down": {"uv": [9, 11, 12, 12], "texture": "#0"}
}
},
{
"from": [5, 9, 5],
"to": [8, 10, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 6, 8, 7], "texture": "#0"},
"east": {"uv": [10, 6, 11, 7], "texture": "#0"},
"south": {"uv": [8, 6, 11, 7], "texture": "#0"},
"west": {"uv": [5, 6, 6, 7], "texture": "#0"},
"up": {"uv": [8, 5, 11, 6], "texture": "#0"},
"down": {"uv": [8, 10, 11, 11], "texture": "#0"}
}
},
{
"from": [4, 9, 6],
"to": [7, 10, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 6, 9, 7], "texture": "#0"},
"east": {"uv": [9, 6, 10, 7], "texture": "#0"},
"south": {"uv": [7, 6, 10, 7], "texture": "#0"},
"west": {"uv": [6, 6, 7, 7], "texture": "#0"},
"up": {"uv": [7, 6, 10, 7], "texture": "#0"},
"down": {"uv": [7, 9, 10, 10], "texture": "#0"}
}
},
{
"from": [3, 9, 7],
"to": [6, 10, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 6, 10, 7], "texture": "#0"},
"east": {"uv": [8, 6, 9, 7], "texture": "#0"},
"south": {"uv": [6, 6, 9, 7], "texture": "#0"},
"west": {"uv": [7, 6, 8, 7], "texture": "#0"},
"up": {"uv": [6, 7, 9, 8], "texture": "#0"},
"down": {"uv": [6, 8, 9, 9], "texture": "#0"}
}
},
{
"from": [2, 9, 8],
"to": [5, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 6, 11, 7], "texture": "#0"},
"east": {"uv": [7, 6, 8, 7], "texture": "#0"},
"south": {"uv": [5, 6, 8, 7], "texture": "#0"},
"west": {"uv": [8, 6, 9, 7], "texture": "#0"},
"up": {"uv": [5, 8, 8, 9], "texture": "#0"},
"down": {"uv": [5, 7, 8, 8], "texture": "#0"}
}
},
{
"from": [1, 9, 9],
"to": [4, 10, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 12, 7], "texture": "#0"},
"east": {"uv": [6, 6, 7, 7], "texture": "#0"},
"south": {"uv": [4, 6, 7, 7], "texture": "#0"},
"west": {"uv": [9, 6, 10, 7], "texture": "#0"},
"up": {"uv": [4, 9, 7, 10], "texture": "#0"},
"down": {"uv": [4, 6, 7, 7], "texture": "#0"}
}
},
{
"from": [0, 9, 10],
"to": [3, 10, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 6, 13, 7], "texture": "#0"},
"east": {"uv": [5, 6, 6, 7], "texture": "#0"},
"south": {"uv": [3, 6, 6, 7], "texture": "#0"},
"west": {"uv": [10, 6, 11, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [3, 10, 6, 11], "texture": "#0"},
"down": {"uv": [3, 5, 6, 6], "texture": "#0"}
}
},
{
"from": [6, 6, 4],
"to": [9, 7, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 9, 7, 10], "texture": "#0"},
"east": {"uv": [11, 9, 12, 10], "texture": "#0"},
"south": {"uv": [9, 9, 12, 10], "texture": "#0"},
"west": {"uv": [4, 9, 5, 10], "texture": "#0"},
"up": {"uv": [9, 4, 12, 5], "texture": "#0"},
"down": {"uv": [9, 11, 12, 12], "texture": "#0"}
}
},
{
"from": [5, 6, 5],
"to": [8, 7, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 9, 8, 10], "texture": "#0"},
"east": {"uv": [10, 9, 11, 10], "texture": "#0"},
"south": {"uv": [8, 9, 11, 10], "texture": "#0"},
"west": {"uv": [5, 9, 6, 10], "texture": "#0"},
"up": {"uv": [8, 5, 11, 6], "texture": "#0"},
"down": {"uv": [8, 10, 11, 11], "texture": "#0"}
}
},
{
"from": [4, 6, 6],
"to": [7, 7, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 9, 9, 10], "texture": "#0"},
"east": {"uv": [9, 9, 10, 10], "texture": "#0"},
"south": {"uv": [7, 9, 10, 10], "texture": "#0"},
"west": {"uv": [6, 9, 7, 10], "texture": "#0"},
"up": {"uv": [7, 6, 10, 7], "texture": "#0"},
"down": {"uv": [7, 9, 10, 10], "texture": "#0"}
}
},
{
"from": [3, 6, 7],
"to": [6, 7, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 9, 10, 10], "texture": "#0"},
"east": {"uv": [8, 9, 9, 10], "texture": "#0"},
"south": {"uv": [6, 9, 9, 10], "texture": "#0"},
"west": {"uv": [7, 9, 8, 10], "texture": "#0"},
"up": {"uv": [6, 7, 9, 8], "texture": "#0"},
"down": {"uv": [6, 8, 9, 9], "texture": "#0"}
}
},
{
"from": [2, 6, 8],
"to": [5, 7, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 9, 11, 10], "texture": "#0"},
"east": {"uv": [7, 9, 8, 10], "texture": "#0"},
"south": {"uv": [5, 9, 8, 10], "texture": "#0"},
"west": {"uv": [8, 9, 9, 10], "texture": "#0"},
"up": {"uv": [5, 8, 8, 9], "texture": "#0"},
"down": {"uv": [5, 7, 8, 8], "texture": "#0"}
}
},
{
"from": [1, 6, 9],
"to": [4, 7, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 12, 10], "texture": "#0"},
"east": {"uv": [6, 9, 7, 10], "texture": "#0"},
"south": {"uv": [4, 9, 7, 10], "texture": "#0"},
"west": {"uv": [9, 9, 10, 10], "texture": "#0"},
"up": {"uv": [4, 9, 7, 10], "texture": "#0"},
"down": {"uv": [4, 6, 7, 7], "texture": "#0"}
}
},
{
"from": [0, 6, 10],
"to": [3, 7, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 9, 13, 10], "texture": "#0"},
"east": {"uv": [5, 9, 6, 10], "texture": "#0"},
"south": {"uv": [3, 9, 6, 10], "texture": "#0"},
"west": {"uv": [10, 9, 11, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [3, 10, 6, 11], "texture": "#0"},
"down": {"uv": [3, 5, 6, 6], "texture": "#0"}
}
},
{
"from": [-1, 6, 11],
"to": [2, 7, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 9, 14, 10], "texture": "#0"},
"east": {"uv": [4, 9, 5, 10], "texture": "#0"},
"south": {"uv": [2, 9, 5, 10], "texture": "#0"},
"west": {"uv": [11, 9, 12, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [2, 11, 5, 12], "texture": "#0"},
"down": {"uv": [2, 4, 5, 5], "texture": "#0"}
}
},
{
"from": [-2, 7, 11],
"to": [3, 9, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 7, 15, 9], "texture": "#0"},
"east": {"uv": [4, 7, 5, 9], "texture": "#0"},
"south": {"uv": [1, 7, 6, 9], "texture": "#0"},
"west": {"uv": [11, 7, 12, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 11, 6, 12], "texture": "#0"},
"down": {"uv": [1, 4, 6, 5], "texture": "#0"}
}
},
{
"from": [-1, 9, 11],
"to": [2, 10, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 6, 14, 7], "texture": "#0"},
"east": {"uv": [4, 6, 5, 7], "texture": "#0"},
"south": {"uv": [2, 6, 5, 7], "texture": "#0"},
"west": {"uv": [11, 6, 12, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [2, 11, 5, 12], "texture": "#0"},
"down": {"uv": [2, 4, 5, 5], "texture": "#0"}
}
},
{
"from": [-2, 6, 12],
"to": [1, 7, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 9, 15, 10], "texture": "#0"},
"east": {"uv": [3, 9, 4, 10], "texture": "#0"},
"south": {"uv": [1, 9, 4, 10], "texture": "#0"},
"west": {"uv": [12, 9, 13, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 12, 4, 13], "texture": "#0"},
"down": {"uv": [1, 3, 4, 4], "texture": "#0"}
}
},
{
"from": [-3, 7, 12],
"to": [2, 9, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 7, 16, 9], "texture": "#0"},
"east": {"uv": [3, 7, 4, 9], "texture": "#0"},
"south": {"uv": [0, 7, 5, 9], "texture": "#0"},
"west": {"uv": [12, 7, 13, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 12, 5, 13], "texture": "#0"},
"down": {"uv": [0, 3, 5, 4], "texture": "#0"}
}
},
{
"from": [-2, 9, 12],
"to": [1, 10, 13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 6, 15, 7], "texture": "#0"},
"east": {"uv": [3, 6, 4, 7], "texture": "#0"},
"south": {"uv": [1, 6, 4, 7], "texture": "#0"},
"west": {"uv": [12, 6, 13, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 12, 4, 13], "texture": "#0"},
"down": {"uv": [1, 3, 4, 4], "texture": "#0"}
}
},
{
"from": [-3, 6, 13],
"to": [0, 7, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 9, 16, 10], "texture": "#0"},
"east": {"uv": [2, 9, 3, 10], "texture": "#0"},
"south": {"uv": [0, 9, 3, 10], "texture": "#0"},
"west": {"uv": [13, 9, 14, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 13, 3, 14], "texture": "#0"},
"down": {"uv": [0, 2, 3, 3], "texture": "#0"}
}
},
{
"from": [-3, 7, 13],
"to": [1, 9, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 7, 16, 9], "texture": "#0"},
"east": {"uv": [2, 7, 3, 9], "texture": "#0"},
"south": {"uv": [0, 7, 4, 9], "texture": "#0"},
"west": {"uv": [13, 7, 14, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 13, 4, 14], "texture": "#0"},
"down": {"uv": [0, 2, 4, 3], "texture": "#0"}
}
},
{
"from": [-3, 9, 13],
"to": [0, 10, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 6, 16, 7], "texture": "#0"},
"east": {"uv": [2, 6, 3, 7], "texture": "#0"},
"south": {"uv": [0, 6, 3, 7], "texture": "#0"},
"west": {"uv": [13, 6, 14, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 13, 3, 14], "texture": "#0"},
"down": {"uv": [0, 2, 3, 3], "texture": "#0"}
}
},
{
"from": [-2, 9, 14],
"to": [-1, 10, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 6, 15, 7], "texture": "#0"},
"east": {"uv": [1, 6, 2, 7], "texture": "#0"},
"south": {"uv": [1, 6, 2, 7], "texture": "#0"},
"west": {"uv": [14, 6, 15, 7], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 14, 2, 15], "texture": "#0"},
"down": {"uv": [1, 1, 2, 2], "texture": "#0"}
}
},
{
"from": [-2, 6, 14],
"to": [-1, 7, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 9, 15, 10], "texture": "#0"},
"east": {"uv": [1, 9, 2, 10], "texture": "#0"},
"south": {"uv": [1, 9, 2, 10], "texture": "#0"},
"west": {"uv": [14, 9, 15, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 14, 2, 15], "texture": "#0"},
"down": {"uv": [1, 1, 2, 2], "texture": "#0"}
}
},
{
"from": [-2, 7, 14],
"to": [0, 9, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 7, 15, 9], "texture": "#0"},
"east": {"uv": [1, 7, 2, 9], "texture": "#0"},
"south": {"uv": [1, 7, 3, 9], "texture": "#0"},
"west": {"uv": [14, 7, 15, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [1, 14, 3, 15], "texture": "#0"},
"down": {"uv": [1, 1, 3, 2], "texture": "#0"}
}
}
],
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
}
]
}
@@ -1,492 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 7, 9],
"to": [4, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 7, 16, 9], "texture": "#0"},
"east": {"uv": [3, 7, 4, 9], "texture": "#0"},
"south": {"uv": [0, 7, 4, 9], "texture": "#0"},
"west": {"uv": [12, 7, 13, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 12, 4, 13], "texture": "#0"},
"down": {"uv": [0, 3, 4, 4], "texture": "#0"}
}
},
{
"from": [0, 6, 7],
"to": [4, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 6, 16, 10], "texture": "#0"},
"east": {"uv": [4, 6, 6, 10], "texture": "#0"},
"south": {"uv": [0, 6, 4, 10], "texture": "#0"},
"west": {"uv": [10, 6, 12, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 10, 4, 12], "texture": "#0"},
"down": {"uv": [0, 4, 4, 6], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [4, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0"},
"south": {"uv": [0, 7, 4, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 9, 4, 10], "texture": "#0"},
"down": {"uv": [0, 6, 4, 7], "texture": "#0"}
}
},
{
"from": [4, 7, 5],
"to": [5, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 7, 12, 9], "texture": "#0"},
"east": {"uv": [3, 7, 8, 9], "texture": "#0"},
"south": {"uv": [4, 7, 5, 9], "texture": "#0"},
"west": {"uv": [8, 7, 13, 9], "texture": "#0"},
"up": {"uv": [4, 8, 5, 13], "texture": "#0"},
"down": {"uv": [4, 3, 5, 8], "texture": "#0"}
}
},
{
"from": [5, 7, 4],
"to": [6, 9, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 7, 11, 9], "texture": "#0"},
"east": {"uv": [4, 7, 9, 9], "texture": "#0"},
"south": {"uv": [5, 7, 6, 9], "texture": "#0"},
"west": {"uv": [7, 7, 12, 9], "texture": "#0"},
"up": {"uv": [5, 7, 6, 12], "texture": "#0"},
"down": {"uv": [5, 4, 6, 9], "texture": "#0"}
}
},
{
"from": [6, 7, 3],
"to": [7, 9, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 7, 10, 9], "texture": "#0"},
"east": {"uv": [5, 7, 10, 9], "texture": "#0"},
"south": {"uv": [6, 7, 7, 9], "texture": "#0"},
"west": {"uv": [6, 7, 11, 9], "texture": "#0"},
"up": {"uv": [6, 6, 7, 11], "texture": "#0"},
"down": {"uv": [6, 5, 7, 10], "texture": "#0"}
}
},
{
"from": [7, 7, 2],
"to": [8, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 7, 9, 9], "texture": "#0"},
"east": {"uv": [6, 7, 11, 9], "texture": "#0"},
"south": {"uv": [7, 7, 8, 9], "texture": "#0"},
"west": {"uv": [5, 7, 10, 9], "texture": "#0"},
"up": {"uv": [7, 5, 8, 10], "texture": "#0"},
"down": {"uv": [7, 6, 8, 11], "texture": "#0"}
}
},
{
"from": [8, 7, 1],
"to": [9, 9, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 7, 8, 9], "texture": "#0"},
"east": {"uv": [7, 7, 12, 9], "texture": "#0"},
"south": {"uv": [8, 7, 9, 9], "texture": "#0"},
"west": {"uv": [4, 7, 9, 9], "texture": "#0"},
"up": {"uv": [8, 4, 9, 9], "texture": "#0"},
"down": {"uv": [8, 7, 9, 12], "texture": "#0"}
}
},
{
"from": [9, 7, 0],
"to": [10, 9, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [8, 7, 13, 9], "texture": "#0"},
"south": {"uv": [9, 7, 10, 9], "texture": "#0"},
"west": {"uv": [3, 7, 8, 9], "texture": "#0"},
"up": {"uv": [9, 3, 10, 8], "texture": "#0"},
"down": {"uv": [9, 8, 10, 13], "texture": "#0"}
}
},
{
"from": [10, 7, -1],
"to": [11, 9, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 7, 6, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [9, 7, 14, 9], "texture": "#0"},
"south": {"uv": [10, 7, 11, 9], "texture": "#0"},
"west": {"uv": [2, 7, 7, 9], "texture": "#0"},
"up": {"uv": [10, 2, 11, 7], "texture": "#0"},
"down": {"uv": [10, 9, 11, 14], "texture": "#0"}
}
},
{
"from": [4, 6, 6],
"to": [5, 7, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 9, 12, 10], "texture": "#0"},
"east": {"uv": [4, 9, 7, 10], "texture": "#0"},
"south": {"uv": [4, 9, 5, 10], "texture": "#0"},
"west": {"uv": [9, 9, 12, 10], "texture": "#0"},
"up": {"uv": [4, 9, 5, 12], "texture": "#0"},
"down": {"uv": [4, 4, 5, 7], "texture": "#0"}
}
},
{
"from": [5, 6, 5],
"to": [6, 7, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 9, 11, 10], "texture": "#0"},
"east": {"uv": [5, 9, 8, 10], "texture": "#0"},
"south": {"uv": [5, 9, 6, 10], "texture": "#0"},
"west": {"uv": [8, 9, 11, 10], "texture": "#0"},
"up": {"uv": [5, 8, 6, 11], "texture": "#0"},
"down": {"uv": [5, 5, 6, 8], "texture": "#0"}
}
},
{
"from": [6, 6, 4],
"to": [7, 7, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 9, 10, 10], "texture": "#0"},
"east": {"uv": [6, 9, 9, 10], "texture": "#0"},
"south": {"uv": [6, 9, 7, 10], "texture": "#0"},
"west": {"uv": [7, 9, 10, 10], "texture": "#0"},
"up": {"uv": [6, 7, 7, 10], "texture": "#0"},
"down": {"uv": [6, 6, 7, 9], "texture": "#0"}
}
},
{
"from": [7, 6, 3],
"to": [8, 7, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 9, 9, 10], "texture": "#0"},
"east": {"uv": [7, 9, 10, 10], "texture": "#0"},
"south": {"uv": [7, 9, 8, 10], "texture": "#0"},
"west": {"uv": [6, 9, 9, 10], "texture": "#0"},
"up": {"uv": [7, 6, 8, 9], "texture": "#0"},
"down": {"uv": [7, 7, 8, 10], "texture": "#0"}
}
},
{
"from": [8, 6, 2],
"to": [9, 7, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 9, 8, 10], "texture": "#0"},
"east": {"uv": [8, 9, 11, 10], "texture": "#0"},
"south": {"uv": [8, 9, 9, 10], "texture": "#0"},
"west": {"uv": [5, 9, 8, 10], "texture": "#0"},
"up": {"uv": [8, 5, 9, 8], "texture": "#0"},
"down": {"uv": [8, 8, 9, 11], "texture": "#0"}
}
},
{
"from": [9, 6, 1],
"to": [10, 7, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 9, 7, 10], "texture": "#0"},
"east": {"uv": [9, 9, 12, 10], "texture": "#0"},
"south": {"uv": [9, 9, 10, 10], "texture": "#0"},
"west": {"uv": [4, 9, 7, 10], "texture": "#0"},
"up": {"uv": [9, 4, 10, 7], "texture": "#0"},
"down": {"uv": [9, 9, 10, 12], "texture": "#0"}
}
},
{
"from": [10, 6, 0],
"to": [11, 7, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 9, 6, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [10, 9, 13, 10], "texture": "#0"},
"south": {"uv": [10, 9, 11, 10], "texture": "#0"},
"west": {"uv": [3, 9, 6, 10], "texture": "#0"},
"up": {"uv": [10, 3, 11, 6], "texture": "#0"},
"down": {"uv": [10, 10, 11, 13], "texture": "#0"}
}
},
{
"from": [4, 9, 6],
"to": [5, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11, 6, 12, 7], "texture": "#0"},
"east": {"uv": [4, 6, 7, 7], "texture": "#0"},
"south": {"uv": [4, 6, 5, 7], "texture": "#0"},
"west": {"uv": [9, 6, 12, 7], "texture": "#0"},
"up": {"uv": [4, 9, 5, 12], "texture": "#0"},
"down": {"uv": [4, 4, 5, 7], "texture": "#0"}
}
},
{
"from": [5, 9, 5],
"to": [6, 10, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 6, 11, 7], "texture": "#0"},
"east": {"uv": [5, 6, 8, 7], "texture": "#0"},
"south": {"uv": [5, 6, 6, 7], "texture": "#0"},
"west": {"uv": [8, 6, 11, 7], "texture": "#0"},
"up": {"uv": [5, 8, 6, 11], "texture": "#0"},
"down": {"uv": [5, 5, 6, 8], "texture": "#0"}
}
},
{
"from": [6, 9, 4],
"to": [7, 10, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 6, 10, 7], "texture": "#0"},
"east": {"uv": [6, 6, 9, 7], "texture": "#0"},
"south": {"uv": [6, 6, 7, 7], "texture": "#0"},
"west": {"uv": [7, 6, 10, 7], "texture": "#0"},
"up": {"uv": [6, 7, 7, 10], "texture": "#0"},
"down": {"uv": [6, 6, 7, 9], "texture": "#0"}
}
},
{
"from": [7, 9, 3],
"to": [8, 10, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 6, 9, 7], "texture": "#0"},
"east": {"uv": [7, 6, 10, 7], "texture": "#0"},
"south": {"uv": [7, 6, 8, 7], "texture": "#0"},
"west": {"uv": [6, 6, 9, 7], "texture": "#0"},
"up": {"uv": [7, 6, 8, 9], "texture": "#0"},
"down": {"uv": [7, 7, 8, 10], "texture": "#0"}
}
},
{
"from": [8, 9, 2],
"to": [9, 10, 5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 6, 8, 7], "texture": "#0"},
"east": {"uv": [8, 6, 11, 7], "texture": "#0"},
"south": {"uv": [8, 6, 9, 7], "texture": "#0"},
"west": {"uv": [5, 6, 8, 7], "texture": "#0"},
"up": {"uv": [8, 5, 9, 8], "texture": "#0"},
"down": {"uv": [8, 8, 9, 11], "texture": "#0"}
}
},
{
"from": [9, 9, 1],
"to": [10, 10, 4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6, 6, 7, 7], "texture": "#0"},
"east": {"uv": [9, 6, 12, 7], "texture": "#0"},
"south": {"uv": [9, 6, 10, 7], "texture": "#0"},
"west": {"uv": [4, 6, 7, 7], "texture": "#0"},
"up": {"uv": [9, 4, 10, 7], "texture": "#0"},
"down": {"uv": [9, 9, 10, 12], "texture": "#0"}
}
},
{
"from": [10, 9, 0],
"to": [11, 10, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [5, 6, 6, 7], "texture": "#0", "cullface": "north"},
"east": {"uv": [10, 6, 13, 7], "texture": "#0"},
"south": {"uv": [10, 6, 11, 7], "texture": "#0"},
"west": {"uv": [3, 6, 6, 7], "texture": "#0"},
"up": {"uv": [10, 3, 11, 6], "texture": "#0"},
"down": {"uv": [10, 10, 11, 13], "texture": "#0"}
}
},
{
"from": [11, 9, -1],
"to": [12, 10, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 6, 5, 7], "texture": "#0", "cullface": "north"},
"east": {"uv": [11, 6, 14, 7], "texture": "#0"},
"south": {"uv": [11, 6, 12, 7], "texture": "#0"},
"west": {"uv": [2, 6, 5, 7], "texture": "#0"},
"up": {"uv": [11, 2, 12, 5], "texture": "#0"},
"down": {"uv": [11, 11, 12, 14], "texture": "#0"}
}
},
{
"from": [11, 7, -2],
"to": [12, 9, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 7, 5, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [10, 7, 15, 9], "texture": "#0"},
"south": {"uv": [11, 7, 12, 9], "texture": "#0"},
"west": {"uv": [1, 7, 6, 9], "texture": "#0"},
"up": {"uv": [11, 1, 12, 6], "texture": "#0"},
"down": {"uv": [11, 10, 12, 15], "texture": "#0"}
}
},
{
"from": [11, 6, -1],
"to": [12, 7, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 9, 5, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [11, 9, 14, 10], "texture": "#0"},
"south": {"uv": [11, 9, 12, 10], "texture": "#0"},
"west": {"uv": [2, 9, 5, 10], "texture": "#0"},
"up": {"uv": [11, 2, 12, 5], "texture": "#0"},
"down": {"uv": [11, 11, 12, 14], "texture": "#0"}
}
},
{
"from": [12, 9, -2],
"to": [13, 10, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 6, 4, 7], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 6, 15, 7], "texture": "#0"},
"south": {"uv": [12, 6, 13, 7], "texture": "#0"},
"west": {"uv": [1, 6, 4, 7], "texture": "#0"},
"up": {"uv": [12, 1, 13, 4], "texture": "#0"},
"down": {"uv": [12, 12, 13, 15], "texture": "#0"}
}
},
{
"from": [12, 7, -3],
"to": [13, 9, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 7, 4, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [11, 7, 16, 9], "texture": "#0"},
"south": {"uv": [12, 7, 13, 9], "texture": "#0"},
"west": {"uv": [0, 7, 5, 9], "texture": "#0"},
"up": {"uv": [12, 0, 13, 5], "texture": "#0"},
"down": {"uv": [12, 11, 13, 16], "texture": "#0"}
}
},
{
"from": [12, 6, -2],
"to": [13, 7, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 9, 4, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 9, 15, 10], "texture": "#0"},
"south": {"uv": [12, 9, 13, 10], "texture": "#0"},
"west": {"uv": [1, 9, 4, 10], "texture": "#0"},
"up": {"uv": [12, 1, 13, 4], "texture": "#0"},
"down": {"uv": [12, 12, 13, 15], "texture": "#0"}
}
},
{
"from": [13, 9, -3],
"to": [14, 10, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 6, 3, 7], "texture": "#0", "cullface": "north"},
"east": {"uv": [13, 6, 16, 7], "texture": "#0"},
"south": {"uv": [13, 6, 14, 7], "texture": "#0"},
"west": {"uv": [0, 6, 3, 7], "texture": "#0"},
"up": {"uv": [13, 0, 14, 3], "texture": "#0"},
"down": {"uv": [13, 13, 14, 16], "texture": "#0"}
}
},
{
"from": [13, 7, -3],
"to": [14, 9, 1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 7, 3, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [12, 7, 16, 9], "texture": "#0"},
"south": {"uv": [13, 7, 14, 9], "texture": "#0"},
"west": {"uv": [0, 7, 4, 9], "texture": "#0"},
"up": {"uv": [13, 0, 14, 4], "texture": "#0"},
"down": {"uv": [13, 12, 14, 16], "texture": "#0"}
}
},
{
"from": [13, 6, -3],
"to": [14, 7, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 9, 3, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [13, 9, 16, 10], "texture": "#0"},
"south": {"uv": [13, 9, 14, 10], "texture": "#0"},
"west": {"uv": [0, 9, 3, 10], "texture": "#0"},
"up": {"uv": [13, 0, 14, 3], "texture": "#0"},
"down": {"uv": [13, 13, 14, 16], "texture": "#0"}
}
},
{
"from": [14, 6, -2],
"to": [15, 7, -1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 9, 2, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [14, 9, 15, 10], "texture": "#0"},
"south": {"uv": [14, 9, 15, 10], "texture": "#0"},
"west": {"uv": [1, 9, 2, 10], "texture": "#0"},
"up": {"uv": [14, 1, 15, 2], "texture": "#0"},
"down": {"uv": [14, 14, 15, 15], "texture": "#0"}
}
},
{
"from": [14, 9, -2],
"to": [15, 10, -1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 6, 2, 7], "texture": "#0", "cullface": "north"},
"east": {"uv": [14, 6, 15, 7], "texture": "#0"},
"south": {"uv": [14, 6, 15, 7], "texture": "#0"},
"west": {"uv": [1, 6, 2, 7], "texture": "#0"},
"up": {"uv": [14, 1, 15, 2], "texture": "#0"},
"down": {"uv": [14, 14, 15, 15], "texture": "#0"}
}
},
{
"from": [14, 7, -2],
"to": [15, 9, 0],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 7, 2, 9], "texture": "#0", "cullface": "north"},
"east": {"uv": [13, 7, 15, 9], "texture": "#0"},
"south": {"uv": [14, 7, 15, 9], "texture": "#0"},
"west": {"uv": [1, 7, 3, 9], "texture": "#0"},
"up": {"uv": [14, 1, 15, 3], "texture": "#0"},
"down": {"uv": [14, 13, 15, 15], "texture": "#0"}
}
}
],
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
}
]
}
File diff suppressed because it is too large Load Diff
@@ -1,65 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"0": "block/iron_block",
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 6, 7],
"to": [16, 10, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 6, 16, 10], "texture": "#0"},
"east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 6, 16, 10], "texture": "#0"},
"west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
},
{
"from": [0, 7, 9],
"to": [16, 9, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 9, 16, 10], "texture": "#0"},
"down": {"uv": [0, 6, 16, 7], "texture": "#0"}
}
},
{
"from": [0, 7, 6],
"to": [16, 9, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 7, 16, 9], "texture": "#0"},
"east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 7, 16, 9], "texture": "#0"},
"west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 6, 16, 7], "texture": "#0"},
"down": {"uv": [0, 9, 16, 10], "texture": "#0"}
}
},
{
"from": [0, 0, 1],
"to": [16, 2, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 14, 16, 16], "texture": "#2"},
"east": {"uv": [0, 14, 15, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 14, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [1, 14, 16, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 1, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 15], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,49 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 9, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [7, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 14, 7],
"to": [7, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 2], "texture": "#0"},
"east": {"uv": [7, 0, 9, 2], "texture": "#0"},
"south": {"uv": [0, 0, 7, 2], "texture": "#0"},
"west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 7, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 7, 7, 9], "texture": "#0"}
}
},
{
"from": [7, 14, 0],
"to": [9, 16, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "north"},
"east": {"uv": [9, 0, 16, 2], "texture": "#0"},
"south": {"uv": [7, 0, 9, 2], "texture": "#0"},
"west": {"uv": [0, 0, 7, 2], "texture": "#0"},
"up": {"uv": [7, 0, 9, 7], "rotation": 90, "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 9, 9, 16], "rotation": 270, "texture": "#0"}
}
}
]
}
@@ -1,49 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 8, 9, 16], "texture": "#0"},
"east": {"uv": [7, 8, 9, 16], "texture": "#0"},
"south": {"uv": [7, 8, 9, 16], "texture": "#0"},
"west": {"uv": [7, 8, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 6, 7],
"to": [7, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 8, 16, 10], "texture": "#0"},
"east": {"uv": [7, 8, 9, 10], "texture": "#0"},
"south": {"uv": [0, 8, 7, 10], "texture": "#0"},
"west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 7, 9], "texture": "#0"},
"down": {"uv": [0, 7, 7, 9], "texture": "#0"}
}
},
{
"from": [7, 6, 0],
"to": [9, 8, 7],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "north"},
"east": {"uv": [9, 8, 16, 10], "texture": "#0"},
"south": {"uv": [7, 8, 9, 10], "texture": "#0"},
"west": {"uv": [0, 8, 7, 10], "texture": "#0"},
"up": {"uv": [7, 0, 9, 7], "rotation": 90, "texture": "#0"},
"down": {"uv": [7, 9, 9, 16], "rotation": 270, "texture": "#0"}
}
}
]
}
@@ -1,36 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 14, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 2, 9, 16], "texture": "#0"},
"east": {"uv": [7, 2, 9, 16], "texture": "#0"},
"south": {"uv": [7, 2, 9, 16], "texture": "#0"},
"west": {"uv": [7, 2, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 14, 7],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 2], "texture": "#0"},
"east": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 2], "texture": "#0"},
"west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
}
]
}
@@ -1,36 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 6, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 10, 9, 16], "texture": "#0"},
"east": {"uv": [7, 10, 9, 16], "texture": "#0"},
"south": {"uv": [7, 10, 9, 16], "texture": "#0"},
"west": {"uv": [7, 10, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 6, 7],
"to": [16, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 10], "texture": "#0"},
"east": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 8, 16, 10], "texture": "#0"},
"west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
}
]
}
@@ -1,36 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 9, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [7, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 14, 7],
"to": [7, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 0, 16, 2], "texture": "#0"},
"east": {"uv": [7, 0, 9, 2], "texture": "#0"},
"south": {"uv": [0, 0, 7, 2], "texture": "#0"},
"west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 7, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 7, 7, 9], "texture": "#0"}
}
}
]
}
@@ -1,36 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 8, 9, 16], "texture": "#0"},
"east": {"uv": [7, 8, 9, 16], "texture": "#0"},
"south": {"uv": [7, 8, 9, 16], "texture": "#0"},
"west": {"uv": [7, 8, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 6, 7],
"to": [7, 8, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9, 8, 16, 10], "texture": "#0"},
"east": {"uv": [7, 8, 9, 10], "texture": "#0"},
"south": {"uv": [0, 8, 7, 10], "texture": "#0"},
"west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 7, 9], "texture": "#0"},
"down": {"uv": [0, 7, 7, 9], "texture": "#0"}
}
}
]
}
@@ -1,62 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [3, 12, 7],
"to": [15, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [0, 14, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 16, 2], "texture": "#0"},
"east": {"uv": [7, 0, 9, 2], "texture": "#0"},
"south": {"uv": [0, 0, 9, 2], "texture": "#0"},
"west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 9, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 7, 9, 9], "texture": "#0"}
}
},
{
"from": [7, 0, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 9, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [7, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, -8, 7],
"to": [9, 0, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 8], "texture": "#0"},
"east": {"uv": [7, 0, 9, 8], "texture": "#0"},
"south": {"uv": [7, 0, 9, 8], "texture": "#0"},
"west": {"uv": [7, 0, 9, 8], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,62 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [3, 12, 7],
"to": [15, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [-8, 12, 7],
"to": [4, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [7, 0, 7],
"to": [9, 15, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 1, 9, 16], "texture": "#0"},
"east": {"uv": [7, 1, 9, 16], "texture": "#0"},
"south": {"uv": [7, 1, 9, 16], "texture": "#0"},
"west": {"uv": [7, 1, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, -8, 7],
"to": [9, 0, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 8], "texture": "#0"},
"east": {"uv": [7, 0, 9, 8], "texture": "#0"},
"south": {"uv": [7, 0, 9, 8], "texture": "#0"},
"west": {"uv": [7, 0, 9, 8], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,75 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [3, 12, 7],
"to": [15, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [14, 12, 7],
"to": [26, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [-8, 12, 7],
"to": [4, 14, 9],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 2, 13, 4], "texture": "#0"},
"east": {"uv": [7, 2, 9, 4], "texture": "#0"},
"south": {"uv": [3, 2, 15, 4], "texture": "#0"},
"west": {"uv": [7, 2, 9, 4], "texture": "#0"},
"up": {"uv": [3, 7, 15, 9], "texture": "#0"},
"down": {"uv": [3, 7, 15, 9], "texture": "#0"}
}
},
{
"from": [7, 0, 7],
"to": [9, 15, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 1, 9, 16], "texture": "#0"},
"east": {"uv": [7, 1, 9, 16], "texture": "#0"},
"south": {"uv": [7, 1, 9, 16], "texture": "#0"},
"west": {"uv": [7, 1, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
},
{
"from": [7, -8, 7],
"to": [9, 0, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 8], "texture": "#0"},
"east": {"uv": [7, 0, 9, 8], "texture": "#0"},
"south": {"uv": [7, 0, 9, 8], "texture": "#0"},
"west": {"uv": [7, 0, 9, 8], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [7, 0, 7],
"to": [9, 16, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "texture": "#0"},
"east": {"uv": [7, 0, 9, 16], "texture": "#0"},
"south": {"uv": [7, 0, 9, 16], "texture": "#0"},
"west": {"uv": [7, 0, 9, 16], "texture": "#0"},
"up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 14, 7],
"to": [16, 16, 9],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 2], "texture": "#0"},
"east": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 2], "texture": "#0"},
"west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
}
]
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "block/iron_block",
"particle": "block/iron_block"
},
"elements": [
{
"from": [0, 6, 7],
"to": [16, 8, 9],
"rotation": {"angle": 0, "axis": "z", "origin": [8, 0, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 10], "texture": "#0"},
"east": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 8, 16, 10], "texture": "#0"},
"west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 7, 16, 9], "texture": "#0"},
"down": {"uv": [0, 7, 16, 9], "texture": "#0"}
}
}
]
}
@@ -1,39 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"0": "wheat_plus:block/brick/brick_d",
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "wheat_plus:block/brick/brick_d"
},
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [8, 0, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 8, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 16, 8], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 8, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 0, 8],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#2"},
"east": {"uv": [0, 0, 8, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [8, 0, 16, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 8, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 8], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,39 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"4": "block/cyan_terracotta",
"particle": "block/cyan_terracotta"
},
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#4", "cullface": "north"},
"east": {"uv": [8, 0, 16, 16], "texture": "#4", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#4"},
"west": {"uv": [0, 0, 8, 16], "texture": "#4", "cullface": "west"},
"up": {"uv": [0, 0, 16, 8], "texture": "#4", "cullface": "up"},
"down": {"uv": [0, 8, 16, 16], "texture": "#4", "cullface": "down"}
}
},
{
"from": [0, 0, 8],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#2"},
"east": {"uv": [0, 0, 8, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [8, 0, 16, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 8, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 8], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,25 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 0, 3],
"to": [16, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#2"},
"east": {"uv": [2, 0, 13, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [3, 0, 14, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 3, 16, 14], "texture": "#3"},
"down": {"uv": [0, 2, 16, 13], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,25 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"1": "block/quartz_block_bottom",
"2": "block/quartz_block_side",
"3": "block/quartz_block_top",
"particle": "block/quartz_block_side"
},
"elements": [
{
"from": [0, 0, 3],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#2"},
"east": {"uv": [0, 0, 13, 16], "texture": "#2", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"},
"west": {"uv": [3, 0, 16, 16], "texture": "#2", "cullface": "west"},
"up": {"uv": [0, 3, 16, 16], "texture": "#3", "cullface": "up"},
"down": {"uv": [0, 0, 16, 13], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,267 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"black": "block/black_concrete",
"particle": "block/yellow_concrete",
"yellow": "block/yellow_concrete"
},
"elements": [
{
"name": "A",
"from": [7, 12, 5],
"to": [9, 16, 6],
"faces": {
"north": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"east": {"uv": [10, 0, 11, 4], "texture": "#yellow"},
"south": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"west": {"uv": [5, 0, 6, 4], "texture": "#yellow"},
"up": {"uv": [7, 5, 9, 6], "texture": "#yellow", "cullface": "up"}
}
},
{
"name": "B",
"from": [6, 12, 6],
"to": [10, 16, 7],
"faces": {
"north": {"uv": [6, 0, 10, 4], "texture": "#yellow"},
"east": {"uv": [9, 0, 10, 4], "texture": "#yellow"},
"south": {"uv": [6, 0, 10, 4], "texture": "#yellow"},
"west": {"uv": [6, 0, 7, 4], "texture": "#yellow"},
"up": {"uv": [6, 6, 10, 7], "texture": "#yellow", "cullface": "up"}
}
},
{
"name": "C",
"from": [5, 12, 7],
"to": [11, 16, 9],
"faces": {
"north": {"uv": [5, 0, 11, 4], "texture": "#yellow"},
"east": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"south": {"uv": [5, 0, 11, 4], "texture": "#yellow"},
"west": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"up": {"uv": [5, 7, 11, 9], "texture": "#yellow", "cullface": "up"}
}
},
{
"name": "D",
"from": [6, 12, 9],
"to": [10, 16, 10],
"faces": {
"north": {"uv": [6, 0, 10, 4], "texture": "#yellow"},
"east": {"uv": [6, 0, 7, 4], "texture": "#yellow"},
"south": {"uv": [6, 0, 10, 4], "texture": "#yellow"},
"west": {"uv": [9, 0, 10, 4], "texture": "#yellow"},
"up": {"uv": [6, 9, 10, 10], "texture": "#yellow", "cullface": "up"}
}
},
{
"name": "E",
"from": [7, 12, 10],
"to": [9, 16, 11],
"faces": {
"north": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"east": {"uv": [5, 0, 6, 4], "texture": "#yellow"},
"south": {"uv": [7, 0, 9, 4], "texture": "#yellow"},
"west": {"uv": [10, 0, 11, 4], "texture": "#yellow"},
"up": {"uv": [7, 10, 9, 11], "texture": "#yellow", "cullface": "up"}
}
},
{
"name": "A",
"from": [7, 8, 5],
"to": [9, 12, 6],
"faces": {
"north": {"uv": [7, 4, 9, 8], "texture": "#black"},
"east": {"uv": [10, 4, 11, 8], "texture": "#black"},
"south": {"uv": [7, 4, 9, 8], "texture": "#black"},
"west": {"uv": [5, 4, 6, 8], "texture": "#black"}
}
},
{
"name": "B",
"from": [6, 8, 6],
"to": [10, 12, 7],
"faces": {
"north": {"uv": [6, 4, 10, 8], "texture": "#black"},
"east": {"uv": [9, 4, 10, 8], "texture": "#black"},
"south": {"uv": [6, 4, 10, 8], "texture": "#black"},
"west": {"uv": [6, 4, 7, 8], "texture": "#black"}
}
},
{
"name": "C",
"from": [5, 8, 7],
"to": [11, 12, 9],
"faces": {
"north": {"uv": [5, 4, 11, 8], "texture": "#black"},
"east": {"uv": [7, 4, 9, 8], "texture": "#black"},
"south": {"uv": [5, 4, 11, 8], "texture": "#black"},
"west": {"uv": [7, 4, 9, 8], "texture": "#black"}
}
},
{
"name": "D",
"from": [6, 8, 9],
"to": [10, 12, 10],
"faces": {
"north": {"uv": [6, 4, 10, 8], "texture": "#black"},
"east": {"uv": [6, 4, 7, 8], "texture": "#black"},
"south": {"uv": [6, 4, 10, 8], "texture": "#black"},
"west": {"uv": [9, 4, 10, 8], "texture": "#black"}
}
},
{
"name": "E",
"from": [7, 8, 10],
"to": [9, 12, 11],
"faces": {
"north": {"uv": [7, 4, 9, 8], "texture": "#black"},
"east": {"uv": [5, 4, 6, 8], "texture": "#black"},
"south": {"uv": [7, 4, 9, 8], "texture": "#black"},
"west": {"uv": [10, 4, 11, 8], "texture": "#black"}
}
},
{
"name": "A",
"from": [7, 4, 5],
"to": [9, 8, 6],
"faces": {
"north": {"uv": [7, 8, 9, 12], "texture": "#yellow"},
"east": {"uv": [10, 8, 11, 12], "texture": "#yellow"},
"south": {"uv": [7, 8, 9, 12], "texture": "#yellow"},
"west": {"uv": [5, 8, 6, 12], "texture": "#yellow"}
}
},
{
"name": "B",
"from": [6, 4, 6],
"to": [10, 8, 7],
"faces": {
"north": {"uv": [6, 8, 10, 12], "texture": "#yellow"},
"east": {"uv": [9, 8, 10, 12], "texture": "#yellow"},
"south": {"uv": [6, 8, 10, 12], "texture": "#yellow"},
"west": {"uv": [6, 8, 7, 12], "texture": "#yellow"}
}
},
{
"name": "C",
"from": [5, 4, 7],
"to": [11, 8, 9],
"faces": {
"north": {"uv": [5, 8, 11, 12], "texture": "#yellow"},
"east": {"uv": [7, 8, 9, 12], "texture": "#yellow"},
"south": {"uv": [5, 8, 11, 12], "texture": "#yellow"},
"west": {"uv": [7, 8, 9, 12], "texture": "#yellow"}
}
},
{
"name": "D",
"from": [6, 4, 9],
"to": [10, 8, 10],
"faces": {
"north": {"uv": [6, 8, 10, 12], "texture": "#yellow"},
"east": {"uv": [6, 8, 7, 12], "texture": "#yellow"},
"south": {"uv": [6, 8, 10, 12], "texture": "#yellow"},
"west": {"uv": [9, 8, 10, 12], "texture": "#yellow"}
}
},
{
"name": "E",
"from": [7, 4, 10],
"to": [9, 8, 11],
"faces": {
"north": {"uv": [7, 8, 9, 12], "texture": "#yellow"},
"east": {"uv": [5, 8, 6, 12], "texture": "#yellow"},
"south": {"uv": [7, 8, 9, 12], "texture": "#yellow"},
"west": {"uv": [10, 8, 11, 12], "texture": "#yellow"}
}
},
{
"name": "A",
"from": [7, 0, 5],
"to": [9, 4, 6],
"faces": {
"north": {"uv": [7, 12, 9, 16], "texture": "#black"},
"east": {"uv": [10, 12, 11, 16], "texture": "#black"},
"south": {"uv": [7, 12, 9, 16], "texture": "#black"},
"west": {"uv": [5, 12, 6, 16], "texture": "#black"},
"down": {"uv": [7, 10, 9, 11], "texture": "#black", "cullface": "down"}
}
},
{
"name": "B",
"from": [6, 0, 6],
"to": [10, 4, 7],
"faces": {
"north": {"uv": [6, 12, 10, 16], "texture": "#black"},
"east": {"uv": [9, 12, 10, 16], "texture": "#black"},
"south": {"uv": [6, 12, 10, 16], "texture": "#black"},
"west": {"uv": [6, 12, 7, 16], "texture": "#black"},
"down": {"uv": [6, 9, 10, 10], "texture": "#black", "cullface": "down"}
}
},
{
"name": "C",
"from": [5, 0, 7],
"to": [11, 4, 9],
"faces": {
"north": {"uv": [5, 12, 11, 16], "texture": "#black"},
"east": {"uv": [7, 12, 9, 16], "texture": "#black"},
"south": {"uv": [5, 12, 11, 16], "texture": "#black"},
"west": {"uv": [7, 12, 9, 16], "texture": "#black"},
"down": {"uv": [5, 7, 11, 9], "texture": "#black", "cullface": "down"}
}
},
{
"name": "D",
"from": [6, 0, 9],
"to": [10, 4, 10],
"faces": {
"north": {"uv": [6, 12, 10, 16], "texture": "#black"},
"east": {"uv": [6, 12, 7, 16], "texture": "#black"},
"south": {"uv": [6, 12, 10, 16], "texture": "#black"},
"west": {"uv": [9, 12, 10, 16], "texture": "#black"},
"down": {"uv": [6, 6, 10, 7], "texture": "#black", "cullface": "down"}
}
},
{
"name": "E",
"from": [7, 0, 10],
"to": [9, 4, 11],
"faces": {
"north": {"uv": [7, 12, 9, 16], "texture": "#black"},
"east": {"uv": [5, 12, 6, 16], "texture": "#black"},
"south": {"uv": [7, 12, 9, 16], "texture": "#black"},
"west": {"uv": [10, 12, 11, 16], "texture": "#black"},
"down": {"uv": [7, 5, 9, 6], "texture": "#black", "cullface": "down"}
}
}
],
"groups": [
{
"name": "L4",
"origin": [0, 0, 0],
"color": 0,
"children": [0, 1, 2, 3, 4]
},
{
"name": "L3",
"origin": [0, 0, 0],
"color": 0,
"children": [5, 6, 7, 8, 9]
},
{
"name": "L2",
"origin": [0, 0, 0],
"color": 0,
"children": [10, 11, 12, 13, 14]
},
{
"name": "L1",
"origin": [0, 0, 0],
"color": 0,
"children": [15, 16, 17, 18, 19]
}
]
}
@@ -1,129 +0,0 @@
{
"credit": "Created by HuJiao & Frost-ZX using Blockbench.",
"ambientocclusion": false,
"texture_size": [128, 128],
"textures": {
"0": "wheat_plus:block/common/station_sign_a",
"particle": "wheat_plus:block/common/station_sign_a"
},
"elements": [
{
"name": "pole",
"from": [23, -14, 7],
"to": [25, 30, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [1, 1, 1]},
"faces": {
"north": {"uv": [3.75, 0, 4, 5.5], "texture": "#0"},
"east": {"uv": [4, 0, 4.25, 5.5], "texture": "#0"},
"south": {"uv": [4.25, 0, 4.5, 5.5], "texture": "#0"},
"west": {"uv": [4.5, 0, 4.75, 5.5], "texture": "#0"},
"up": {"uv": [3.75, 5.25, 3.5, 5], "texture": "#0"},
"down": {"uv": [5.5, 2.25, 5.25, 2.5], "texture": "#0"}
}
},
{
"name": "base",
"from": [22, -16, 6],
"to": [26, -14, 10],
"faces": {
"north": {"uv": [5.25, 1.25, 5.75, 1.5], "texture": "#0"},
"east": {"uv": [5.25, 1.5, 5.75, 1.75], "texture": "#0"},
"south": {"uv": [5.25, 1.75, 5.75, 2], "texture": "#0"},
"west": {"uv": [5.25, 2, 5.75, 2.25], "texture": "#0"},
"up": {"uv": [2.5, 5.5, 2, 5], "texture": "#0"},
"down": {"uv": [3, 5, 2.5, 5.5], "texture": "#0"}
}
},
{
"name": "pole",
"from": [-9, -14, 7],
"to": [-7, 30, 9],
"rotation": {"angle": 0, "axis": "y", "origin": [1, 1, 1]},
"faces": {
"north": {"uv": [4.75, 0, 5, 5.5], "texture": "#0"},
"east": {"uv": [0, 5, 0.25, 10.5], "texture": "#0"},
"south": {"uv": [5, 0, 5.25, 5.5], "texture": "#0"},
"west": {"uv": [0.25, 5, 0.5, 10.5], "texture": "#0"},
"up": {"uv": [5.5, 2.75, 5.25, 2.5], "texture": "#0"},
"down": {"uv": [5.5, 2.75, 5.25, 3], "texture": "#0"}
}
},
{
"name": "base",
"from": [-10, -16, 6],
"to": [-6, -14, 10],
"faces": {
"north": {"uv": [3, 5, 3.5, 5.25], "texture": "#0"},
"east": {"uv": [5.25, 0.5, 5.75, 0.75], "texture": "#0"},
"south": {"uv": [5.25, 0.75, 5.75, 1], "texture": "#0"},
"west": {"uv": [5.25, 1, 5.75, 1.25], "texture": "#0"},
"up": {"uv": [1.5, 5.5, 1, 5], "texture": "#0"},
"down": {"uv": [2, 5, 1.5, 5.5], "texture": "#0"}
}
},
{
"name": "center",
"from": [-7, 8, 7],
"to": [23, 28, 9],
"faces": {
"north": {"uv": [0, 0, 3.75, 2.5], "texture": "#0"},
"east": {"uv": [0.5, 5, 0.75, 7.5], "texture": "#0"},
"south": {"uv": [0, 2.5, 3.75, 5], "texture": "#0"},
"west": {"uv": [0.75, 5, 1, 7.5], "texture": "#0"},
"up": {"uv": [9, 0.25, 5.25, 0], "texture": "#0"},
"down": {"uv": [9, 0.25, 5.25, 0.5], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"translation": [-6, 2, 0],
"scale": [0.4, 0.4, 0.4]
},
"thirdperson_lefthand": {
"translation": [-6, 2, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_righthand": {
"rotation": [0, -90, 25],
"translation": [1, 3, 1],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_lefthand": {
"rotation": [0, -90, 25],
"translation": [1, 3, 1],
"scale": [0.5, 0.5, 0.5]
},
"ground": {
"translation": [0, 8, 0],
"scale": [0.5, 0.5, 0.5]
},
"gui": {
"rotation": [30, 225, 0],
"scale": [0.25, 0.25, 0.25]
},
"head": {
"translation": [0, 6.5, 0],
"scale": [0.5, 0.5, 0.5]
},
"fixed": {
"translation": [0, 0, -1],
"scale": [0.4, 0.4, 0.4]
}
},
"groups": [
{
"name": "left",
"origin": [1, 1, 1],
"color": 0,
"children": [0, 1]
},
{
"name": "right",
"origin": [1, 1, 1],
"color": 0,
"children": [2, 3]
},
4
]
}
@@ -1,136 +0,0 @@
{
"credit": "Created by HuJiao & Frost-ZX using Blockbench.",
"ambientocclusion": false,
"textures": {
"particle": "wheat_plus:block/common/ticket_machine_a",
"texture": "wheat_plus:block/common/ticket_machine_a"
},
"elements": [
{
"name": "Top",
"from": [3, 16, 12.5],
"to": [13, 29.4, 16],
"faces": {
"north": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"east": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"south": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"west": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"up": {"uv": [0, 6, 8, 7.8], "texture": "#texture"},
"down": {"uv": [8, 0, 12, 4], "texture": "#texture"}
}
},
{
"name": "Screen",
"from": [3, 19.5, 4],
"to": [13, 29.5, 7],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 8, 8], "texture": "#texture"},
"east": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"south": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"west": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"up": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"down": {"uv": [8, 0, 12, 4], "texture": "#texture"}
}
},
{
"name": "Middle",
"from": [3, 12.95, 13.3],
"to": [13, 18.95, 17.3],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 6, 8, 7.8], "texture": "#texture"},
"east": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"south": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"west": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"up": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"down": {"uv": [8, 0, 12, 4], "texture": "#texture"}
}
},
{
"name": "Card Reader",
"from": [3, 16, 9.3],
"to": [13, 16.1, 13.3],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 8, 16, 8.2], "rotation": 180, "texture": "#texture"},
"east": {"uv": [0, 8, 0.2, 14.2], "rotation": 180, "texture": "#texture"},
"south": {"uv": [0, 8, 16, 8.2], "rotation": 180, "texture": "#texture"},
"west": {"uv": [0, 8, 0.2, 14.2], "rotation": 180, "texture": "#texture"},
"up": {"uv": [0, 8, 16, 14.2], "rotation": 180, "texture": "#texture"}
}
},
{
"name": "Middle",
"from": [3, 12, 9.2],
"to": [13, 16, 17.2],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"east": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"south": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"west": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"up": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"down": {"uv": [8, 0, 12, 4], "texture": "#texture"}
}
},
{
"name": "Ticket",
"from": [3.5, 12, 5.95],
"to": [12.5, 14.5, 6.05],
"faces": {
"north": {"uv": [8, 6.1, 15, 8], "texture": "#texture"}
}
},
{
"name": "Bottom",
"from": [3, 0, 6],
"to": [13, 16, 16],
"faces": {
"north": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"east": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"south": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"west": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"up": {"uv": [8, 0, 12, 4], "texture": "#texture"},
"down": {"uv": [8, 0, 12, 4], "texture": "#texture"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 90, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 90, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [0, -3, 0],
"scale": [0.4, 0.4, 0.4]
},
"head": {
"rotation": [90, 0, -90],
"translation": [-5, 15, 0]
},
"fixed": {
"translation": [0, -3, -3],
"scale": [0.5, 0.5, 0.5]
}
}
}
@@ -1,88 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/birch_planks",
"particle": "block/birch_planks"
},
"elements": [
{
"from": [4, 8, 10],
"to": [12, 16, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 0, 12, 8], "texture": "#0"},
"east": {"uv": [4, 0, 6, 8], "texture": "#0"},
"south": {"uv": [4, 0, 12, 8], "texture": "#0"},
"west": {"uv": [10, 0, 12, 8], "texture": "#0"},
"up": {"uv": [4, 10, 12, 12], "texture": "#0", "cullface": "up"},
"down": {"uv": [4, 4, 12, 6], "texture": "#0"}
}
},
{
"from": [4, 6, 4],
"to": [12, 8, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 8, 12, 10], "texture": "#0"},
"east": {"uv": [4, 8, 12, 10], "texture": "#0"},
"south": {"uv": [4, 8, 12, 10], "texture": "#0"},
"west": {"uv": [4, 8, 12, 10], "texture": "#0"},
"up": {"uv": [4, 4, 12, 12], "texture": "#0"},
"down": {"uv": [4, 4, 12, 12], "texture": "#0"}
}
},
{
"from": [4, 0, 10],
"to": [6, 6, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 10, 12, 16], "texture": "#0"},
"east": {"uv": [4, 10, 6, 16], "texture": "#0"},
"south": {"uv": [4, 10, 6, 16], "texture": "#0"},
"west": {"uv": [10, 10, 12, 16], "texture": "#0"},
"up": {"uv": [4, 10, 6, 12], "texture": "#0"},
"down": {"uv": [4, 4, 6, 6], "texture": "#0", "cullface": "down"}
}
},
{
"from": [4, 0, 4],
"to": [6, 6, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10, 10, 12, 16], "texture": "#0"},
"east": {"uv": [10, 10, 12, 16], "texture": "#0"},
"south": {"uv": [4, 10, 6, 16], "texture": "#0"},
"west": {"uv": [4, 10, 6, 16], "texture": "#0"},
"up": {"uv": [4, 4, 6, 6], "texture": "#0"},
"down": {"uv": [4, 10, 6, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [10, 0, 4],
"to": [12, 6, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 10, 6, 16], "texture": "#0"},
"east": {"uv": [10, 10, 12, 16], "texture": "#0"},
"south": {"uv": [10, 10, 12, 16], "texture": "#0"},
"west": {"uv": [4, 10, 6, 16], "texture": "#0"},
"up": {"uv": [10, 4, 12, 6], "texture": "#0"},
"down": {"uv": [10, 10, 12, 12], "texture": "#0", "cullface": "down"}
}
},
{
"from": [10, 0, 10],
"to": [12, 6, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 10, 6, 16], "texture": "#0"},
"east": {"uv": [4, 10, 6, 16], "texture": "#0"},
"south": {"uv": [10, 10, 12, 16], "texture": "#0"},
"west": {"uv": [10, 10, 12, 16], "texture": "#0"},
"up": {"uv": [10, 10, 12, 12], "texture": "#0"},
"down": {"uv": [10, 4, 12, 6], "texture": "#0", "cullface": "down"}
}
}
]
}
@@ -1,127 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/birch_planks",
"particle": "block/birch_planks"
},
"elements": [
{
"from": [0, 14, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 2], "texture": "#0", "cullface": "north"},
"east": {"uv": [0, 0, 16, 2], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 2], "texture": "#0", "cullface": "south"},
"west": {"uv": [0, 0, 16, 2], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
}
},
{
"from": [14, 0, 14],
"to": [16, 14, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 2, 2, 16], "texture": "#0"},
"east": {"uv": [0, 2, 2, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 2, 16, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [14, 2, 16, 16], "texture": "#0"},
"up": {"uv": [14, 14, 16, 16], "texture": "#0"},
"down": {"uv": [14, 0, 16, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 0, 14],
"to": [2, 14, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 2, 16, 16], "texture": "#0"},
"east": {"uv": [0, 2, 2, 16], "texture": "#0"},
"south": {"uv": [0, 2, 2, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [14, 2, 16, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 14, 2, 16], "texture": "#0"},
"down": {"uv": [0, 0, 2, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [0, 0, 0],
"to": [2, 14, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 2, 16, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [14, 2, 16, 16], "texture": "#0"},
"south": {"uv": [0, 2, 2, 16], "texture": "#0"},
"west": {"uv": [0, 2, 2, 16], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
"down": {"uv": [0, 14, 2, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [14, 0, 0],
"to": [16, 14, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 2, 2, 16], "texture": "#0", "cullface": "north"},
"east": {"uv": [14, 2, 16, 16], "texture": "#0", "cullface": "east"},
"south": {"uv": [14, 2, 16, 16], "texture": "#0"},
"west": {"uv": [0, 2, 2, 16], "texture": "#0"},
"up": {"uv": [14, 0, 16, 2], "texture": "#0"},
"down": {"uv": [14, 14, 16, 16], "texture": "#0", "cullface": "down"}
}
},
{
"from": [2, 11, 14.5],
"to": [14, 12, 15.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 4, 14, 5], "texture": "#0"},
"east": {"uv": [0.5, 4, 1.5, 5], "texture": "#0"},
"south": {"uv": [2, 4, 14, 5], "texture": "#0"},
"west": {"uv": [14.5, 4, 15.5, 5], "texture": "#0"},
"up": {"uv": [2, 14.5, 14, 15.5], "texture": "#0"},
"down": {"uv": [2, 0.5, 14, 1.5], "texture": "#0"}
}
},
{
"from": [0.5, 11, 2],
"to": [1.5, 12, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14.5, 4, 15.5, 5], "texture": "#0"},
"east": {"uv": [2, 4, 14, 5], "texture": "#0"},
"south": {"uv": [0.5, 4, 1.5, 5], "texture": "#0"},
"west": {"uv": [2, 4, 14, 5], "texture": "#0"},
"up": {"uv": [0.5, 2, 1.5, 14], "texture": "#0"},
"down": {"uv": [0.5, 2, 1.5, 14], "texture": "#0"}
}
},
{
"from": [2, 11, 0.5],
"to": [14, 12, 1.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 4, 14, 5], "texture": "#0"},
"east": {"uv": [14.5, 4, 15.5, 5], "texture": "#0"},
"south": {"uv": [2, 4, 14, 5], "texture": "#0"},
"west": {"uv": [0.5, 4, 1.5, 5], "texture": "#0"},
"up": {"uv": [2, 0.5, 14, 1.5], "texture": "#0"},
"down": {"uv": [2, 14.5, 14, 15.5], "texture": "#0"}
}
},
{
"from": [14.5, 11, 2],
"to": [15.5, 12, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0.5, 4, 1.5, 5], "texture": "#0"},
"east": {"uv": [2, 4, 14, 5], "texture": "#0"},
"south": {"uv": [14.5, 4, 15.5, 5], "texture": "#0"},
"west": {"uv": [2, 4, 14, 5], "texture": "#0"},
"up": {"uv": [14.5, 2, 15.5, 14], "texture": "#0"},
"down": {"uv": [14.5, 2, 15.5, 14], "texture": "#0"}
}
}
]
}
@@ -1,23 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"1": "block/black_concrete",
"particle": "block/black_concrete"
},
"elements": [
{
"from": [0, 0, 15],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#1"},
"east": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 15, 16, 16], "rotation": 270, "texture": "#1", "cullface": "up"},
"down": {"uv": [0, 0, 16, 1], "rotation": 90, "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,133 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/light_gray_concrete",
"1": "block/gray_concrete",
"particle": "block/light_gray_concrete"
},
"elements": [
{
"from": [7, 9.25, -0.75],
"to": [9, 11.975, 1.25],
"rotation": {"angle": 45, "axis": "x", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [7, 4.025, 9, 6.75], "texture": "#0"},
"east": {"uv": [14, 4.025, 16, 6.75], "texture": "#0"},
"south": {"uv": [7, 4.025, 9, 6.75], "texture": "#0"},
"west": {"uv": [0, 4.025, 2, 6.75], "texture": "#0"},
"up": {"uv": [7, 0, 9, 2], "texture": "#0"},
"down": {"uv": [7, 14, 9, 16], "texture": "#0"}
}
},
{
"from": [6.75, 4.5, 5.75],
"to": [9.25, 5, 8.25],
"faces": {
"north": {"uv": [6.75, 11, 9.25, 11.5], "texture": "#0"},
"east": {"uv": [7.75, 11, 10.25, 11.5], "texture": "#0"},
"south": {"uv": [6.75, 11, 9.25, 11.5], "texture": "#0"},
"west": {"uv": [5.75, 11, 8.25, 11.5], "texture": "#0"},
"up": {"uv": [6.75, 5.75, 9.25, 8.25], "texture": "#0"},
"down": {"uv": [6.75, 7.75, 9.25, 10.25], "texture": "#0"}
}
},
{
"from": [7, 5, 6],
"to": [9, 7.06, 8],
"faces": {
"north": {"uv": [7, 8.94, 9, 11], "texture": "#0"},
"east": {"uv": [8, 8.94, 10, 11], "texture": "#0"},
"south": {"uv": [7, 8.94, 9, 11], "texture": "#0"},
"west": {"uv": [6, 8.94, 8, 11], "texture": "#0"},
"up": {"uv": [7, 6, 9, 8], "texture": "#0"},
"down": {"uv": [7, 8, 9, 10], "texture": "#0"}
}
},
{
"from": [7, 7, 7.95],
"to": [9, 9, 12.214],
"faces": {
"north": {"uv": [7, 7, 9, 9], "texture": "#0"},
"east": {"uv": [3.786, 7, 8.05, 9], "texture": "#0"},
"south": {"uv": [7, 7, 9, 9], "texture": "#0"},
"west": {"uv": [7.95, 7, 12.214, 9], "texture": "#0"},
"up": {"uv": [7, 7.95, 9, 12.214], "texture": "#0"},
"down": {"uv": [7, 3.786, 9, 8.05], "texture": "#0"}
}
},
{
"from": [7, -7.625, 13],
"to": [9, -2.275, 15],
"rotation": {"angle": -45, "axis": "x", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [7, 10.65, 9, 16], "texture": "#0"},
"east": {"uv": [1, 10.65, 3, 16], "texture": "#0"},
"south": {"uv": [7, 10.65, 9, 16], "texture": "#0"},
"west": {"uv": [13, 10.65, 15, 16], "texture": "#0"},
"up": {"uv": [7, 13, 9, 15], "texture": "#0"},
"down": {"uv": [7, 1, 9, 3], "texture": "#0"}
}
},
{
"from": [7, 0, 14],
"to": [9, 5.2, 16],
"faces": {
"north": {"uv": [7, 10.8, 9, 16], "texture": "#0"},
"east": {"uv": [0, 10.8, 2, 16], "texture": "#0"},
"south": {"uv": [7, 10.8, 9, 16], "texture": "#0", "cullface": "south"},
"west": {"uv": [14, 10.8, 16, 16], "texture": "#0"},
"up": {"uv": [7, 14, 9, 16], "texture": "#0"},
"down": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "down"}
}
},
{
"from": [12.5, 1, 14.75],
"to": [15.5, 2, 15.25],
"faces": {
"north": {"uv": [0.5, 14, 3.5, 15], "texture": "#0"},
"east": {"uv": [0.75, 14, 1.25, 15], "texture": "#0"},
"south": {"uv": [12.5, 14, 15.5, 15], "texture": "#0"},
"west": {"uv": [14.75, 14, 15.25, 15], "texture": "#0"},
"up": {"uv": [12.5, 14.75, 15.5, 15.25], "texture": "#0"},
"down": {"uv": [12.5, 0.75, 15.5, 1.25], "texture": "#0"}
}
},
{
"from": [12, 0, 14],
"to": [14, 1, 16],
"faces": {
"north": {"uv": [2, 15, 4, 16], "texture": "#1"},
"east": {"uv": [0, 15, 2, 16], "texture": "#1"},
"south": {"uv": [12, 15, 14, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [14, 15, 16, 16], "texture": "#1"},
"up": {"uv": [12, 14, 14, 16], "texture": "#1"},
"down": {"uv": [12, 0, 14, 2], "texture": "#1", "cullface": "down"}
}
},
{
"from": [0.5, 1, 14.75],
"to": [3.5, 2, 15.25],
"faces": {
"north": {"uv": [12.5, 14, 15.5, 15], "texture": "#0"},
"east": {"uv": [0.75, 14, 1.25, 15], "texture": "#0"},
"south": {"uv": [0.5, 14, 3.5, 15], "texture": "#0"},
"west": {"uv": [14.75, 14, 15.25, 15], "texture": "#0"},
"up": {"uv": [0.5, 14.75, 3.5, 15.25], "texture": "#0"},
"down": {"uv": [0.5, 0.75, 3.5, 1.25], "texture": "#0"}
}
},
{
"from": [1.9, 0, 14],
"to": [3.9, 1, 16],
"faces": {
"north": {"uv": [12.1, 15, 14.1, 16], "texture": "#1"},
"east": {"uv": [0, 15, 2, 16], "texture": "#1"},
"south": {"uv": [1.9, 15, 3.9, 16], "texture": "#1", "cullface": "south"},
"west": {"uv": [14, 15, 16, 16], "texture": "#1"},
"up": {"uv": [1.9, 14, 3.9, 16], "texture": "#1"},
"down": {"uv": [1.9, 0, 3.9, 2], "texture": "#1", "cullface": "down"}
}
}
]
}
@@ -1,36 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"stone": "block/polished_andesite",
"particle": "block/birch_planks",
"planks": "block/birch_planks"
},
"elements": [
{
"from": [0, 0, 2],
"to": [16, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 4, 16, 16], "texture": "#planks"},
"east": {"uv": [0, 4, 14, 16], "texture": "#planks", "cullface": "east"},
"south": {"uv": [0, 4, 16, 16], "texture": "#planks", "cullface": "south"},
"west": {"uv": [2, 4, 16, 16], "texture": "#planks", "cullface": "west"},
"down": {"uv": [0, 0, 16, 14], "texture": "#planks", "cullface": "down"}
}
},
{
"from": [0, 12, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 4], "texture": "#stone", "cullface": "north"},
"east": {"uv": [0, 0, 16, 4], "texture": "#stone", "cullface": "east"},
"south": {"uv": [0, 0, 16, 4], "texture": "#stone", "cullface": "south"},
"west": {"uv": [0, 0, 16, 4], "texture": "#stone", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#stone", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#stone"}
}
}
]
}
@@ -1,109 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "block/block",
"textures": {
"iron": "block/quartz_block_top",
"particle": "block/birch_planks",
"planks": "block/birch_planks"
},
"elements": [
{
"from": [0, 0, 2],
"to": [16, 12, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 4, 16, 16], "texture": "#planks"},
"east": {"uv": [13, 4, 14, 16], "texture": "#planks", "cullface": "east"},
"south": {"uv": [0, 4, 16, 16], "texture": "#iron"},
"west": {"uv": [2, 4, 3, 16], "texture": "#planks", "cullface": "west"},
"down": {"uv": [0, 13, 16, 14], "rotation": 90, "texture": "#planks", "cullface": "down"}
}
},
{
"from": [0, 0, 14],
"to": [16, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 4, 16, 16], "texture": "#iron"},
"east": {"uv": [0, 4, 2, 16], "texture": "#planks", "cullface": "east"},
"south": {"uv": [0, 4, 16, 16], "texture": "#planks", "cullface": "south"},
"west": {"uv": [14, 4, 16, 16], "texture": "#planks", "cullface": "west"},
"down": {"uv": [0, 0, 16, 2], "rotation": 90, "texture": "#planks", "cullface": "down"}
}
},
{
"from": [0, 0, 3],
"to": [2, 12, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"east": {"uv": [2, 4, 13, 16], "texture": "#iron"},
"west": {"uv": [3, 4, 14, 16], "texture": "#planks", "cullface": "west"},
"down": {"uv": [0, 2, 2, 13], "rotation": 90, "texture": "#planks", "cullface": "down"}
}
},
{
"from": [14, 0, 3],
"to": [16, 12, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"east": {"uv": [2, 4, 13, 16], "texture": "#planks", "cullface": "east"},
"west": {"uv": [3, 4, 14, 16], "texture": "#iron"},
"down": {"uv": [14, 2, 16, 13], "rotation": 90, "texture": "#planks", "cullface": "down"}
}
},
{
"from": [0, 12, 3],
"to": [2, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"east": {"uv": [2, 0, 13, 4], "texture": "#iron"},
"west": {"uv": [3, 0, 14, 4], "texture": "#iron", "cullface": "west"},
"up": {"uv": [0, 3, 2, 14], "rotation": 270, "texture": "#iron", "cullface": "up"}
}
},
{
"from": [0, 12, 14],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 4], "texture": "#iron"},
"east": {"uv": [0, 0, 2, 4], "texture": "#iron", "cullface": "east"},
"south": {"uv": [0, 0, 16, 4], "texture": "#iron", "cullface": "south"},
"west": {"uv": [14, 0, 16, 4], "texture": "#iron", "cullface": "west"},
"up": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#iron", "cullface": "up"}
}
},
{
"from": [14, 12, 3],
"to": [16, 16, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"east": {"uv": [2, 0, 13, 4], "texture": "#iron", "cullface": "east"},
"west": {"uv": [3, 0, 14, 4], "texture": "#iron"},
"up": {"uv": [14, 3, 16, 14], "rotation": 270, "texture": "#iron", "cullface": "up"}
}
},
{
"from": [0, 12, 0],
"to": [16, 16, 3],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 4], "texture": "#iron", "cullface": "north"},
"east": {"uv": [13, 0, 16, 4], "texture": "#iron", "cullface": "east"},
"south": {"uv": [0, 0, 16, 4], "texture": "#iron"},
"west": {"uv": [0, 0, 3, 4], "texture": "#iron", "cullface": "west"},
"up": {"uv": [0, 0, 16, 3], "rotation": 270, "texture": "#iron", "cullface": "up"},
"down": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#iron"}
}
},
{
"from": [2, 0, 2],
"to": [14, 7, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"up": {"uv": [2, 2, 14, 14], "rotation": 270, "texture": "#iron"},
"down": {"uv": [2, 2, 14, 14], "rotation": 90, "texture": "#planks", "cullface": "down"}
}
}
]
}
@@ -1,151 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/gray_concrete",
"1": "block/black_concrete",
"2": "block/white_concrete",
"particle": "block/gray_concrete"
},
"elements": [
{
"from": [0, 15, 14],
"to": [16, 16, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#0"},
"east": {"uv": [1, 0, 2, 1], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#0"},
"west": {"uv": [14, 0, 15, 1], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 14, 16, 15], "texture": "#0", "cullface": "up"},
"down": {"uv": [0, 1, 16, 2], "texture": "#0"}
}
},
{
"from": [0, 5, 14],
"to": [1, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 1, 16, 11], "texture": "#0"},
"east": {"uv": [1, 1, 2, 11], "texture": "#0"},
"south": {"uv": [0, 1, 1, 11], "texture": "#0"},
"west": {"uv": [14, 1, 15, 11], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 14, 1, 15], "texture": "#0"},
"down": {"uv": [0, 1, 1, 2], "texture": "#0"}
}
},
{
"from": [0, 4, 14],
"to": [16, 5, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 11, 16, 12], "texture": "#0"},
"east": {"uv": [1, 11, 2, 12], "texture": "#0", "cullface": "east"},
"south": {"uv": [0, 11, 16, 12], "texture": "#0"},
"west": {"uv": [14, 11, 15, 12], "texture": "#0", "cullface": "west"},
"up": {"uv": [0, 14, 16, 15], "texture": "#0"},
"down": {"uv": [0, 1, 16, 2], "texture": "#0"}
}
},
{
"from": [15, 5, 14],
"to": [16, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 1, 1, 11], "texture": "#0"},
"east": {"uv": [1, 1, 2, 11], "texture": "#0", "cullface": "east"},
"south": {"uv": [15, 1, 16, 11], "texture": "#0"},
"west": {"uv": [14, 1, 15, 11], "texture": "#0"},
"up": {"uv": [15, 14, 16, 15], "texture": "#0"},
"down": {"uv": [15, 1, 16, 2], "texture": "#0"}
}
},
{
"from": [1, 5, 14.25],
"to": [15, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 1, 15, 11], "texture": "#0"},
"east": {"uv": [1, 1, 1.75, 11], "texture": "#0"},
"south": {"uv": [1, 1, 15, 11], "texture": "#0"},
"west": {"uv": [14.25, 1, 15, 11], "texture": "#0"},
"up": {"uv": [1, 14.25, 15, 15], "texture": "#0"},
"down": {"uv": [1, 1, 15, 1.75], "texture": "#0"}
}
},
{
"from": [1, 5, 14],
"to": [15, 15, 14.25],
"shade": false,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 1, 15, 11], "texture": "#1"},
"east": {"uv": [1.75, 1, 2, 11], "texture": "#1"},
"south": {"uv": [1, 1, 15, 11], "texture": "#1"},
"west": {"uv": [14, 1, 14.25, 11], "texture": "#1"},
"up": {"uv": [1, 14, 15, 14.25], "texture": "#1"},
"down": {"uv": [1, 1.75, 15, 2], "texture": "#1"}
}
},
{
"from": [0.75, 4.75, 15],
"to": [15.25, 15.25, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0.75, 0.75, 15.25, 11.25], "texture": "#0"},
"east": {"uv": [0, 0.75, 1, 11.25], "texture": "#0"},
"south": {"uv": [0.75, 0.75, 15.25, 11.25], "texture": "#0", "cullface": "south"},
"west": {"uv": [15, 0.75, 16, 11.25], "texture": "#0"},
"up": {"uv": [0.75, 15, 15.25, 16], "texture": "#0"},
"down": {"uv": [0.75, 0, 15.25, 1], "texture": "#0"}
}
},
{
"from": [7, 3.75, 13.75],
"to": [9, 4.25, 14.25],
"shade": false,
"light_emission": 10,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7, 11.75, 9, 12.25], "texture": "#2"},
"east": {"uv": [1.75, 11.75, 2.25, 12.25], "texture": "#2"},
"south": {"uv": [7, 11.75, 9, 12.25], "texture": "#2"},
"west": {"uv": [13.75, 11.75, 14.25, 12.25], "texture": "#2"},
"up": {"uv": [7, 13.75, 9, 14.25], "texture": "#2"},
"down": {"uv": [7, 1.75, 9, 2.25], "texture": "#2"}
}
}
],
"gui_light": "front",
"display": {
"thirdperson_righthand": {
"rotation": [70, 0, 0],
"translation": [0, 4, 0],
"scale": [0.5, 0.5, 0.5]
},
"thirdperson_lefthand": {
"rotation": [70, 0, 0],
"translation": [0, 4, 0],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_righthand": {
"translation": [0, 4, 0],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_lefthand": {
"translation": [0, 4, 0],
"scale": [0.5, 0.5, 0.5]
},
"gui": {
"rotation": [0, 180, 0],
"translation": [0, -1, 0],
"scale": [0.8, 0.8, 0.8]
},
"head": {
"translation": [0, -2, -15]
},
"fixed": {
"translation": [0, -2, -7]
}
}
}
@@ -1,304 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/black_concrete",
"1": "block/gray_concrete",
"2": "block/white_concrete",
"3": "block/red_concrete",
"4": "block/yellow_concrete",
"particle": "block/gray_concrete"
},
"elements": [
{
"from": [4, 4, 12],
"to": [12, 12, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4, 4, 12, 12], "texture": "#1"},
"east": {"uv": [0, 4, 4, 12], "texture": "#1"},
"south": {"uv": [4, 4, 12, 12], "texture": "#1", "cullface": "south"},
"west": {"uv": [12, 4, 16, 12], "texture": "#1"},
"up": {"uv": [4, 12, 12, 16], "texture": "#1"},
"down": {"uv": [4, 0, 12, 4], "texture": "#1"}
}
},
{
"from": [2, 0, 6.25],
"to": [14, 15, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 1, 14, 16], "texture": "#1"},
"east": {"uv": [4, 1, 9.75, 16], "texture": "#1"},
"south": {"uv": [2, 1, 14, 16], "texture": "#1"},
"west": {"uv": [6.25, 1, 12, 16], "texture": "#1"},
"up": {"uv": [2, 6.25, 14, 12], "texture": "#1"},
"down": {"uv": [2, 4, 14, 9.75], "texture": "#1", "cullface": "down"}
}
},
{
"from": [2, 3, 0],
"to": [14, 15, 1],
"shade": false,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2, 1, 14, 13], "texture": "#0", "cullface": "north"},
"east": {"uv": [15, 1, 16, 13], "texture": "#0"},
"south": {"uv": [2, 1, 14, 13], "texture": "#0"},
"west": {"uv": [0, 1, 1, 13], "texture": "#0"},
"up": {"uv": [2, 0, 14, 1], "texture": "#0"},
"down": {"uv": [2, 15, 14, 16], "texture": "#0"}
}
},
{
"from": [1, 3, 0.25],
"to": [2, 15, 6.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 1, 15, 13], "texture": "#1"},
"east": {"uv": [9.75, 1, 15.75, 13], "texture": "#1"},
"south": {"uv": [1, 1, 2, 13], "texture": "#1"},
"west": {"uv": [0.25, 1, 6.25, 13], "texture": "#1"},
"up": {"uv": [1, 0.25, 2, 6.25], "texture": "#1"},
"down": {"uv": [1, 9.75, 2, 15.75], "texture": "#1"}
}
},
{
"from": [1, 15, 0.25],
"to": [15, 16, 6.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 0, 15, 1], "texture": "#1"},
"east": {"uv": [9.75, 0, 15.75, 1], "texture": "#1"},
"south": {"uv": [1, 0, 15, 1], "texture": "#1"},
"west": {"uv": [0.25, 0, 6.25, 1], "texture": "#1"},
"up": {"uv": [1, 0.25, 15, 6.25], "texture": "#1", "cullface": "up"},
"down": {"uv": [1, 9.75, 15, 15.75], "texture": "#1"}
}
},
{
"from": [14, 3, 0.25],
"to": [15, 15, 6.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 1, 2, 13], "texture": "#1"},
"east": {"uv": [9.75, 1, 15.75, 13], "texture": "#1"},
"south": {"uv": [14, 1, 15, 13], "texture": "#1"},
"west": {"uv": [0.25, 1, 6.25, 13], "texture": "#1"},
"up": {"uv": [14, 0.25, 15, 6.25], "texture": "#1"},
"down": {"uv": [14, 9.75, 15, 15.75], "texture": "#1"}
}
},
{
"from": [0, 1.5, 0.25],
"to": [5.5, 2.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10.5, 13.5, 16, 14.5], "texture": "#1"},
"east": {"uv": [14.75, 13.5, 15.75, 14.5], "texture": "#1"},
"south": {"uv": [0, 13.5, 5.5, 14.5], "texture": "#1"},
"west": {"uv": [0.25, 13.5, 1.25, 14.5], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 0.25, 5.5, 1.25], "texture": "#1"},
"down": {"uv": [0, 14.75, 5.5, 15.75], "texture": "#0"}
}
},
{
"from": [10.5, 1.5, 0.25],
"to": [16, 2.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 13.5, 5.5, 14.5], "texture": "#1"},
"east": {"uv": [14.75, 13.5, 15.75, 14.5], "texture": "#1", "cullface": "east"},
"south": {"uv": [10.5, 13.5, 16, 14.5], "texture": "#1"},
"west": {"uv": [0.25, 13.5, 1.25, 14.5], "texture": "#1"},
"up": {"uv": [10.5, 0.25, 16, 1.25], "texture": "#1"},
"down": {"uv": [10.5, 14.75, 16, 15.75], "texture": "#0"}
}
},
{
"from": [13, 1, 0],
"to": [15, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1, 14.5, 3, 15], "texture": "#0", "cullface": "north"},
"east": {"uv": [14.75, 14.5, 16, 15], "texture": "#0"},
"south": {"uv": [13, 14.5, 15, 15], "texture": "#0"},
"west": {"uv": [0, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [13, 0, 15, 1.25], "texture": "#0"},
"down": {"uv": [13, 14.75, 15, 16], "texture": "#0"}
}
},
{
"from": [3, 1, 0.75],
"to": [3.5, 1.5, 1.25],
"shade": false,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12.5, 14.5, 13, 15], "texture": "#3"},
"east": {"uv": [14.75, 14.5, 15.25, 15], "texture": "#0"},
"south": {"uv": [3, 14.5, 3.5, 15], "texture": "#0"},
"west": {"uv": [0.75, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [3, 0.75, 3.5, 1.25], "texture": "#0"},
"down": {"uv": [3, 14.75, 3.5, 15.25], "texture": "#0"}
}
},
{
"from": [2, 1, 0.75],
"to": [2.5, 1.5, 1.25],
"shade": false,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13.5, 14.5, 14, 15], "texture": "#2"},
"east": {"uv": [14.75, 14.5, 15.25, 15], "texture": "#0"},
"south": {"uv": [2, 14.5, 2.5, 15], "texture": "#0"},
"west": {"uv": [0.75, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [2, 0.75, 2.5, 1.25], "texture": "#0"},
"down": {"uv": [2, 14.75, 2.5, 15.25], "texture": "#0"}
}
},
{
"from": [1, 1, 0.75],
"to": [1.5, 1.5, 1.25],
"shade": false,
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14.5, 14.5, 15, 15], "texture": "#4"},
"east": {"uv": [14.75, 14.5, 15.25, 15], "texture": "#0"},
"south": {"uv": [1, 14.5, 1.5, 15], "texture": "#0"},
"west": {"uv": [0.75, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [1, 0.75, 1.5, 1.25], "texture": "#0"},
"down": {"uv": [1, 14.75, 1.5, 15.25], "texture": "#0"}
}
},
{
"from": [2.5, 1, 0.5],
"to": [3, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13, 14.5, 13.5, 15], "texture": "#0"},
"east": {"uv": [14.75, 14.5, 15.5, 15], "texture": "#0"},
"south": {"uv": [2.5, 14.5, 3, 15], "texture": "#0"},
"west": {"uv": [0.5, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [2.5, 0.5, 3, 1.25], "texture": "#0"},
"down": {"uv": [2.5, 14.75, 3, 15.5], "texture": "#0"}
}
},
{
"from": [3.5, 1, 0.25],
"to": [13, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3, 14.5, 12.5, 15], "texture": "#1"},
"east": {"uv": [14.75, 14.5, 15.75, 15], "texture": "#1"},
"south": {"uv": [3.5, 14.5, 13, 15], "texture": "#1"},
"west": {"uv": [0.25, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [3.5, 0.25, 13, 1.25], "texture": "#1"},
"down": {"uv": [3.5, 14.75, 13, 15.75], "texture": "#1"}
}
},
{
"from": [0, 1, 0.25],
"to": [1, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [15, 14.5, 16, 15], "texture": "#1"},
"east": {"uv": [14.75, 14.5, 15.75, 15], "texture": "#0"},
"south": {"uv": [0, 14.5, 1, 15], "texture": "#1"},
"west": {"uv": [0.25, 14.5, 1.25, 15], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 0.25, 1, 1.25], "texture": "#1"},
"down": {"uv": [0, 14.75, 1, 15.75], "texture": "#1"}
}
},
{
"from": [1.5, 1, 0.5],
"to": [2, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [14, 14.5, 14.5, 15], "texture": "#0"},
"east": {"uv": [14.75, 14.5, 15.5, 15], "texture": "#0"},
"south": {"uv": [1.5, 14.5, 2, 15], "texture": "#0"},
"west": {"uv": [0.5, 14.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [1.5, 0.5, 2, 1.25], "texture": "#0"},
"down": {"uv": [1.5, 14.75, 2, 15.5], "texture": "#0"}
}
},
{
"from": [15, 1, 0.25],
"to": [16, 1.5, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 14.5, 1, 15], "texture": "#1"},
"east": {"uv": [14.75, 14.5, 15.75, 15], "texture": "#1", "cullface": "east"},
"south": {"uv": [15, 14.5, 16, 15], "texture": "#1"},
"west": {"uv": [0.25, 14.5, 1.25, 15], "texture": "#1"},
"up": {"uv": [15, 0.25, 16, 1.25], "texture": "#1"},
"down": {"uv": [15, 14.75, 16, 15.75], "texture": "#1"}
}
},
{
"from": [0, 0, 0.25],
"to": [16, 1, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 15, 16, 16], "texture": "#1"},
"east": {"uv": [14.75, 15, 15.75, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 15, 16, 16], "texture": "#1"},
"west": {"uv": [0.25, 15, 1.25, 16], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 0.25, 16, 1.25], "texture": "#0"},
"down": {"uv": [0, 14.75, 16, 15.75], "texture": "#1", "cullface": "down"}
}
},
{
"from": [0, 2.5, 0.25],
"to": [16, 3, 1.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 13, 16, 13.5], "texture": "#1"},
"east": {"uv": [14.75, 13, 15.75, 13.5], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 13, 16, 13.5], "texture": "#1"},
"west": {"uv": [0.25, 13, 1.25, 13.5], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 0.25, 16, 1.25], "texture": "#1"},
"down": {"uv": [0, 14.75, 16, 15.75], "texture": "#0"}
}
},
{
"from": [0, 0, 1.25],
"to": [16, 3, 6.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0, 13, 16, 16], "texture": "#0"},
"east": {"uv": [9.75, 13, 14.75, 16], "texture": "#1", "cullface": "east"},
"south": {"uv": [0, 13, 16, 16], "texture": "#1"},
"west": {"uv": [1.25, 13, 6.25, 16], "texture": "#1", "cullface": "west"},
"up": {"uv": [0, 1.25, 16, 6.25], "texture": "#1"},
"down": {"uv": [0, 9.75, 16, 14.75], "texture": "#1", "cullface": "down"}
}
}
],
"gui_light": "front",
"display": {
"thirdperson_righthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"thirdperson_lefthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_righthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_lefthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"gui": {
"rotation": [0, 180, 0],
"scale": [0.8, 0.8, 0.8]
},
"head": {
"translation": [0, 14, 0]
}
}
}
@@ -1,344 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "block/black_concrete",
"1": "block/gray_concrete",
"2": "block/dark_oak_planks",
"3": "block/light_gray_concrete",
"particle": "block/dark_oak_planks"
},
"elements": [
{
"from": [11.25, 0, 3.25],
"to": [12.75, 1, 4.75],
"faces": {
"north": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"east": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"south": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"west": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"up": {"uv": [11.25, 3.25, 12.75, 4.75], "texture": "#2"},
"down": {"uv": [11.25, 11.25, 12.75, 12.75], "texture": "#2", "cullface": "down"}
}
},
{
"from": [3.25, 0, 3.25],
"to": [4.75, 1, 4.75],
"faces": {
"north": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"east": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"south": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"west": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"up": {"uv": [3.25, 3.25, 4.75, 4.75], "texture": "#2"},
"down": {"uv": [3.25, 11.25, 4.75, 12.75], "texture": "#2", "cullface": "down"}
}
},
{
"from": [3.25, 0, 11.25],
"to": [4.75, 1, 12.75],
"faces": {
"north": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"east": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"south": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"west": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"up": {"uv": [3.25, 11.25, 4.75, 12.75], "texture": "#2"},
"down": {"uv": [3.25, 3.25, 4.75, 4.75], "texture": "#2", "cullface": "down"}
}
},
{
"from": [5, 6, 3.25],
"to": [11, 12, 4.25],
"shade": false,
"faces": {
"north": {"uv": [5, 4, 11, 10], "texture": "#0"},
"east": {"uv": [11.75, 4, 12.75, 10], "texture": "#0"},
"south": {"uv": [5, 4, 11, 10], "texture": "#0"},
"west": {"uv": [3.25, 4, 4.25, 10], "texture": "#0"},
"up": {"uv": [5, 3.25, 11, 4.25], "texture": "#0"},
"down": {"uv": [5, 11.75, 11, 12.75], "texture": "#0"}
}
},
{
"from": [11.25, 0, 11.25],
"to": [12.75, 1, 12.75],
"faces": {
"north": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"east": {"uv": [3.25, 15, 4.75, 16], "texture": "#2"},
"south": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"west": {"uv": [11.25, 15, 12.75, 16], "texture": "#2"},
"up": {"uv": [11.25, 11.25, 12.75, 12.75], "texture": "#2"},
"down": {"uv": [11.25, 3.25, 12.75, 4.75], "texture": "#2", "cullface": "down"}
}
},
{
"from": [11, -4, 3.5],
"to": [12, -0.05, 4.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [4, 12.05, 5, 16], "texture": "#1"},
"east": {"uv": [11.5, 12.05, 12.5, 16], "texture": "#1"},
"south": {"uv": [11, 12.05, 12, 16], "texture": "#1"},
"west": {"uv": [3.5, 12.05, 4.5, 16], "texture": "#1"},
"up": {"uv": [11, 3.5, 12, 4.5], "texture": "#1"},
"down": {"uv": [11, 11.5, 12, 12.5], "texture": "#1"}
}
},
{
"from": [2.8, 2.1, 3.5],
"to": [3.8, 6.2, 4.5],
"rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [12.2, 9.8, 13.2, 13.9], "texture": "#1"},
"east": {"uv": [11.5, 9.8, 12.5, 13.9], "texture": "#1"},
"south": {"uv": [2.8, 9.8, 3.8, 13.9], "texture": "#1"},
"west": {"uv": [3.5, 9.8, 4.5, 13.9], "texture": "#1"},
"up": {"uv": [2.8, 3.5, 3.8, 4.5], "texture": "#1"},
"down": {"uv": [2.8, 11.5, 3.8, 12.5], "texture": "#1"}
}
},
{
"from": [5, 4, 3],
"to": [11, 6, 13],
"faces": {
"north": {"uv": [5, 10, 11, 12], "texture": "#2"},
"east": {"uv": [3, 10, 13, 12], "texture": "#2"},
"south": {"uv": [5, 10, 11, 12], "texture": "#2"},
"west": {"uv": [3, 10, 13, 12], "texture": "#2"},
"up": {"uv": [5, 3, 11, 13], "texture": "#2"},
"down": {"uv": [5, 3, 11, 13], "texture": "#2"}
}
},
{
"from": [2.8, 2.1, 11.5],
"to": [3.8, 6.2, 12.5],
"rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [12.2, 9.8, 13.2, 13.9], "texture": "#1"},
"east": {"uv": [3.5, 9.8, 4.5, 13.9], "texture": "#1"},
"south": {"uv": [2.8, 9.8, 3.8, 13.9], "texture": "#1"},
"west": {"uv": [11.5, 9.8, 12.5, 13.9], "texture": "#1"},
"up": {"uv": [2.8, 11.5, 3.8, 12.5], "texture": "#1"},
"down": {"uv": [2.8, 3.5, 3.8, 4.5], "texture": "#1"}
}
},
{
"from": [11, -4, 11.5],
"to": [12, -0.05, 12.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]},
"faces": {
"north": {"uv": [4, 12.05, 5, 16], "texture": "#1"},
"east": {"uv": [3.5, 12.05, 4.5, 16], "texture": "#1"},
"south": {"uv": [11, 12.05, 12, 16], "texture": "#1"},
"west": {"uv": [11.5, 12.05, 12.5, 16], "texture": "#1"},
"up": {"uv": [11, 11.5, 12, 12.5], "texture": "#1"},
"down": {"uv": [11, 3.5, 12, 4.5], "texture": "#1"}
}
},
{
"from": [4.175, 5.2, 13],
"to": [11.85, 12.2, 13.05],
"faces": {
"north": {"uv": [4.15, 3.8, 11.825, 10.8], "texture": "#1"},
"east": {"uv": [2.95, 3.8, 3, 10.8], "texture": "#1"},
"south": {"uv": [4.175, 3.8, 11.85, 10.8], "texture": "#1"},
"west": {"uv": [13, 3.8, 13.05, 10.8], "texture": "#1"},
"up": {"uv": [4.175, 13, 11.85, 13.05], "texture": "#1"},
"down": {"uv": [4.175, 2.95, 11.85, 3], "texture": "#1"}
}
},
{
"from": [6, 4.95, 2.45],
"to": [6.25, 5.7, 2.7],
"faces": {
"north": {"uv": [9.75, 10.3, 10, 11.05], "texture": "#3"},
"east": {"uv": [13.3, 10.3, 13.55, 11.05], "texture": "#3"},
"south": {"uv": [6, 10.3, 6.25, 11.05], "texture": "#3"},
"west": {"uv": [2.45, 10.3, 2.7, 11.05], "texture": "#3"},
"up": {"uv": [6, 2.45, 6.25, 2.7], "texture": "#3"},
"down": {"uv": [6, 13.3, 6.25, 13.55], "texture": "#3"}
}
},
{
"from": [5.75, 4.7, 2.7],
"to": [6.5, 5.45, 2.95],
"faces": {
"north": {"uv": [9.5, 10.55, 10.25, 11.3], "texture": "#3"},
"east": {"uv": [13.05, 10.55, 13.3, 11.3], "texture": "#3"},
"south": {"uv": [5.75, 10.55, 6.5, 11.3], "texture": "#3"},
"west": {"uv": [2.7, 10.55, 2.95, 11.3], "texture": "#3"},
"up": {"uv": [5.75, 2.7, 6.5, 2.95], "texture": "#3"},
"down": {"uv": [5.75, 13.05, 6.5, 13.3], "texture": "#3"}
}
},
{
"from": [7.25, 4.95, 2.45],
"to": [7.5, 5.7, 2.7],
"faces": {
"north": {"uv": [8.5, 10.3, 8.75, 11.05], "texture": "#3"},
"east": {"uv": [13.3, 10.3, 13.55, 11.05], "texture": "#3"},
"south": {"uv": [7.25, 10.3, 7.5, 11.05], "texture": "#3"},
"west": {"uv": [2.45, 10.3, 2.7, 11.05], "texture": "#3"},
"up": {"uv": [7.25, 2.45, 7.5, 2.7], "texture": "#3"},
"down": {"uv": [7.25, 13.3, 7.5, 13.55], "texture": "#3"}
}
},
{
"from": [7, 4.7, 2.7],
"to": [7.75, 5.45, 2.95],
"faces": {
"north": {"uv": [8.25, 10.55, 9, 11.3], "texture": "#3"},
"east": {"uv": [13.05, 10.55, 13.3, 11.3], "texture": "#3"},
"south": {"uv": [7, 10.55, 7.75, 11.3], "texture": "#3"},
"west": {"uv": [2.7, 10.55, 2.95, 11.3], "texture": "#3"},
"up": {"uv": [7, 2.7, 7.75, 2.95], "texture": "#3"},
"down": {"uv": [7, 13.05, 7.75, 13.3], "texture": "#3"}
}
},
{
"from": [5.275, 4.2, 2.95],
"to": [10.85, 5.85, 3],
"faces": {
"north": {"uv": [5.15, 10.15, 10.725, 11.8], "texture": "#1"},
"east": {"uv": [13, 10.15, 13.05, 11.8], "texture": "#1"},
"south": {"uv": [5.275, 10.15, 10.85, 11.8], "texture": "#1"},
"west": {"uv": [2.95, 10.15, 3, 11.8], "texture": "#1"},
"up": {"uv": [5.275, 2.95, 10.85, 3], "texture": "#1"},
"down": {"uv": [5.275, 13, 10.85, 13.05], "texture": "#1"}
}
},
{
"from": [3.65, 5.2, 2.75],
"to": [4.6, 12.25, 2.9],
"faces": {
"north": {"uv": [11.4, 3.75, 12.35, 10.8], "texture": "#1"},
"east": {"uv": [13.1, 3.75, 13.25, 10.8], "texture": "#1"},
"south": {"uv": [3.65, 3.75, 4.6, 10.8], "texture": "#1"},
"west": {"uv": [2.75, 3.75, 2.9, 10.8], "texture": "#1"},
"up": {"uv": [3.65, 2.75, 4.6, 2.9], "texture": "#1"},
"down": {"uv": [3.65, 13.1, 4.6, 13.25], "texture": "#1"}
}
},
{
"from": [11.5, 5.2, 2.75],
"to": [12.45, 12.25, 2.9],
"faces": {
"north": {"uv": [3.55, 3.75, 4.5, 10.8], "texture": "#1"},
"east": {"uv": [13.1, 3.75, 13.25, 10.8], "texture": "#1"},
"south": {"uv": [11.5, 3.75, 12.45, 10.8], "texture": "#1"},
"west": {"uv": [2.75, 3.75, 2.9, 10.8], "texture": "#1"},
"up": {"uv": [11.5, 2.75, 12.45, 2.9], "texture": "#1"},
"down": {"uv": [11.5, 13.1, 12.45, 13.25], "texture": "#1"}
}
},
{
"from": [3.25, 4.2, 2.85],
"to": [5, 13.25, 3],
"faces": {
"north": {"uv": [11, 2.75, 12.75, 11.8], "texture": "#3"},
"east": {"uv": [13, 2.75, 13.15, 11.8], "texture": "#3"},
"south": {"uv": [3.25, 2.75, 5, 11.8], "texture": "#3"},
"west": {"uv": [2.85, 2.75, 3, 11.8], "texture": "#3"},
"up": {"uv": [3.25, 2.85, 5, 3], "texture": "#3"},
"down": {"uv": [3.25, 13, 5, 13.15], "texture": "#3"}
}
},
{
"from": [5.275, 12.2, 2.95],
"to": [10.85, 13.1, 3],
"faces": {
"north": {"uv": [5.15, 2.9, 10.725, 3.8], "texture": "#3"},
"east": {"uv": [13, 2.9, 13.05, 3.8], "texture": "#3"},
"south": {"uv": [5.275, 2.9, 10.85, 3.8], "texture": "#3"},
"west": {"uv": [2.95, 2.9, 3, 3.8], "texture": "#3"},
"up": {"uv": [5.275, 2.95, 10.85, 3], "texture": "#3"},
"down": {"uv": [5.275, 13, 10.85, 13.05], "texture": "#3"}
}
},
{
"from": [11.1, 4.2, 2.85],
"to": [12.85, 13.25, 3],
"faces": {
"north": {"uv": [3.15, 2.75, 4.9, 11.8], "texture": "#3"},
"east": {"uv": [13, 2.75, 13.15, 11.8], "texture": "#3"},
"south": {"uv": [11.1, 2.75, 12.85, 11.8], "texture": "#3"},
"west": {"uv": [2.85, 2.75, 3, 11.8], "texture": "#3"},
"up": {"uv": [11.1, 2.85, 12.85, 3], "texture": "#3"},
"down": {"uv": [11.1, 13, 12.85, 13.15], "texture": "#3"}
}
},
{
"from": [5, 6, 12],
"to": [11.1, 12, 13],
"faces": {
"north": {"uv": [4.9, 4, 11, 10], "texture": "#2"},
"east": {"uv": [3, 4, 4, 10], "texture": "#2"},
"south": {"uv": [5, 4, 11.1, 10], "texture": "#2"},
"west": {"uv": [12, 4, 13, 10], "texture": "#2"},
"up": {"uv": [5, 12, 11.1, 13], "texture": "#2"},
"down": {"uv": [5, 3, 11.1, 4], "texture": "#2"}
}
},
{
"from": [3, 4, 3],
"to": [5.1, 13.4, 13],
"faces": {
"north": {"uv": [10.9, 2.6, 13, 12], "texture": "#2"},
"east": {"uv": [3, 2.6, 13, 12], "texture": "#2"},
"south": {"uv": [3, 2.6, 5.1, 12], "texture": "#2"},
"west": {"uv": [3, 2.6, 13, 12], "texture": "#2"},
"up": {"uv": [3, 3, 5.1, 13], "texture": "#2"},
"down": {"uv": [3, 3, 5.1, 13], "texture": "#2"}
}
},
{
"from": [5.1, 12, 3],
"to": [11, 13.4, 13],
"faces": {
"north": {"uv": [5, 2.6, 10.9, 4], "texture": "#2"},
"east": {"uv": [3, 2.6, 13, 4], "texture": "#2"},
"south": {"uv": [5.1, 2.6, 11, 4], "texture": "#2"},
"west": {"uv": [3, 2.6, 13, 4], "texture": "#2"},
"up": {"uv": [5.1, 3, 11, 13], "texture": "#2"},
"down": {"uv": [5.1, 3, 11, 13], "texture": "#2"}
}
},
{
"from": [11, 4, 3],
"to": [13, 13.4, 13],
"faces": {
"north": {"uv": [3, 2.6, 5, 12], "texture": "#2"},
"east": {"uv": [3, 2.6, 13, 12], "texture": "#2"},
"south": {"uv": [11, 2.6, 13, 12], "texture": "#2"},
"west": {"uv": [3, 2.6, 13, 12], "texture": "#2"},
"up": {"uv": [11, 3, 13, 13], "texture": "#2"},
"down": {"uv": [11, 3, 13, 13], "texture": "#2"}
}
}
],
"gui_light": "front",
"display": {
"thirdperson_righthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"thirdperson_lefthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_righthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_lefthand": {
"translation": [0, 3.5, 2],
"scale": [0.5, 0.5, 0.5]
},
"gui": {
"rotation": [0, 180, 0],
"scale": [0.8, 0.8, 0.8]
},
"head": {
"translation": [0, 14, 0]
}
}
}
@@ -1,6 +1,7 @@
{ {
"credit": "Create by Frost-ZX using Blockbench.", "credit": "Create by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off", "parent": "block/block",
"ambientocclusion": false,
"elements": [ "elements": [
{ {
"name": "core", "name": "core",
@@ -1,53 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"particle": "block/gray_concrete",
"base": "block/gray_concrete",
"core": "wheat_plus:block/lamp_common/white_core",
"glow": "wheat_plus:block/lamp_common/white_glow"
},
"elements": [
{
"name": "core",
"from": [3, 1.5, 3],
"to": [13, 3.5, 13],
"shade": false,
"faces": {
"north": {"uv": [3, 13, 13, 15], "texture": "#core"},
"east": {"uv": [3, 13, 13, 15], "texture": "#core"},
"south": {"uv": [3, 13, 13, 15], "texture": "#core"},
"west": {"uv": [3, 13, 13, 15], "texture": "#core"},
"up": {"uv": [3, 3, 13, 13], "texture": "#core"},
"down": {"uv": [3, 3, 13, 13], "texture": "#core"}
}
},
{
"name": "glow",
"from": [2, 1.5, 2],
"to": [14, 4.5, 14],
"shade": false,
"faces": {
"north": {"uv": [2, 12, 14, 15], "texture": "#glow"},
"east": {"uv": [2, 12, 14, 15], "texture": "#glow"},
"south": {"uv": [2, 12, 14, 15], "texture": "#glow"},
"west": {"uv": [2, 12, 14, 15], "texture": "#glow"},
"up": {"uv": [2, 2, 14, 14], "texture": "#glow"},
"down": {"uv": [2, 2, 14, 14], "texture": "#glow"}
}
},
{
"name": "base",
"from": [1, 0, 1],
"to": [15, 1.5, 15],
"faces": {
"north": {"uv": [1, 15, 15, 16], "texture": "#base"},
"east": {"uv": [1, 15, 15, 16], "texture": "#base"},
"south": {"uv": [1, 15, 15, 16], "texture": "#base"},
"west": {"uv": [1, 15, 15, 16], "texture": "#base"},
"up": {"uv": [1, 1, 15, 15], "texture": "#base"},
"down": {"uv": [1, 1, 15, 15], "texture": "#base"}
}
}
]
}
@@ -1,53 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"particle": "block/gray_concrete",
"base": "block/gray_concrete",
"core": "wheat_plus:block/lamp_common/white_core",
"glow": "wheat_plus:block/lamp_common/white_glow"
},
"elements": [
{
"name": "core",
"from": [4.5, 1, 4.5],
"to": [11.5, 3, 11.5],
"shade": false,
"faces": {
"north": {"uv": [4.5, 13, 11.5, 15], "texture": "#core"},
"east": {"uv": [4.5, 13, 11.5, 15], "texture": "#core"},
"south": {"uv": [4.5, 13, 11.5, 15], "texture": "#core"},
"west": {"uv": [4.5, 13, 11.5, 15], "texture": "#core"},
"up": {"uv": [4.5, 4.5, 11.5, 11.5], "texture": "#core"},
"down": {"uv": [4.5, 4.5, 11.5, 11.5], "texture": "#core"}
}
},
{
"name": "glow",
"from": [4, 1, 4],
"to": [12, 3.5, 12],
"shade": false,
"faces": {
"north": {"uv": [4, 12.5, 12, 15], "texture": "#glow"},
"east": {"uv": [4, 12.5, 12, 15], "texture": "#glow"},
"south": {"uv": [4, 12.5, 12, 15], "texture": "#glow"},
"west": {"uv": [4, 12.5, 12, 15], "texture": "#glow"},
"up": {"uv": [4, 4, 12, 12], "texture": "#glow"},
"down": {"uv": [4, 4, 12, 12], "texture": "#glow"}
}
},
{
"name": "base",
"from": [3.5, 0, 3.5],
"to": [12.5, 1, 12.5],
"faces": {
"north": {"uv": [3.5, 15, 12.5, 16], "texture": "#base"},
"east": {"uv": [3.5, 15, 12.5, 16], "texture": "#base"},
"south": {"uv": [3.5, 15, 12.5, 16], "texture": "#base"},
"west": {"uv": [3.5, 15, 12.5, 16], "texture": "#base"},
"up": {"uv": [3.5, 3.5, 12.5, 12.5], "texture": "#base"},
"down": {"uv": [3.5, 3.5, 12.5, 12.5], "texture": "#base"}
}
}
]
}
@@ -1,53 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"particle": "block/gray_concrete",
"base": "block/gray_concrete",
"core": "wheat_plus:block/lamp_common/white_core",
"glow": "wheat_plus:block/lamp_common/white_glow"
},
"elements": [
{
"name": "core",
"from": [7, 0.5, 7],
"to": [9, 1, 9],
"shade": false,
"faces": {
"north": {"uv": [7, 15, 9, 15.5], "texture": "#core"},
"east": {"uv": [7, 15, 9, 15.5], "texture": "#core"},
"south": {"uv": [7, 15, 9, 15.5], "texture": "#core"},
"west": {"uv": [7, 15, 9, 15.5], "texture": "#core"},
"up": {"uv": [7, 7, 9, 9], "texture": "#core"},
"down": {"uv": [7, 7, 9, 9], "texture": "#core"}
}
},
{
"name": "glow",
"from": [6.75, 0.25, 6.75],
"to": [9.25, 1.25, 9.25],
"shade": false,
"faces": {
"north": {"uv": [6.75, 14.75, 9.25, 15.75], "texture": "#glow"},
"east": {"uv": [6.75, 14.75, 9.25, 15.75], "texture": "#glow"},
"south": {"uv": [6.75, 14.75, 9.25, 15.75], "texture": "#glow"},
"west": {"uv": [6.75, 14.75, 9.25, 15.75], "texture": "#glow"},
"up": {"uv": [6.75, 6.75, 9.25, 9.25], "texture": "#glow"},
"down": {"uv": [6.75, 6.75, 9.25, 9.25], "texture": "#glow"}
}
},
{
"name": "base",
"from": [6.5, 0, 6.5],
"to": [9.5, 0.5, 9.5],
"faces": {
"north": {"uv": [6.5, 15.5, 9.5, 16], "texture": "#base"},
"east": {"uv": [6.5, 15.5, 9.5, 16], "texture": "#base"},
"south": {"uv": [6.5, 15.5, 9.5, 16], "texture": "#base"},
"west": {"uv": [6.5, 15.5, 9.5, 16], "texture": "#base"},
"up": {"uv": [6.5, 6.5, 9.5, 9.5], "texture": "#base"},
"down": {"uv": [6.5, 6.5, 9.5, 9.5], "texture": "#base"}
}
}
]
}
@@ -1,53 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off",
"textures": {
"particle": "block/gray_concrete",
"base": "block/gray_concrete",
"core": "wheat_plus:block/lamp_common/white_core",
"glow": "wheat_plus:block/lamp_common/white_glow"
},
"elements": [
{
"name": "core",
"from": [3, 1, 7],
"to": [13, 2, 9],
"shade": false,
"faces": {
"north": {"uv": [3, 14, 13, 15], "texture": "#core"},
"east": {"uv": [7, 14, 9, 15], "texture": "#core"},
"south": {"uv": [3, 14, 13, 15], "texture": "#core"},
"west": {"uv": [7, 14, 9, 15], "texture": "#core"},
"up": {"uv": [3, 7, 13, 9], "texture": "#core"},
"down": {"uv": [3, 7, 13, 9], "texture": "#core"}
}
},
{
"name": "glow",
"from": [2.5, 1, 6.5],
"to": [13.5, 2.5, 9.5],
"shade": false,
"faces": {
"north": {"uv": [2.5, 13.5, 13.5, 15], "texture": "#glow"},
"east": {"uv": [6.5, 13.5, 9.5, 15], "texture": "#glow"},
"south": {"uv": [2.5, 13.5, 13.5, 15], "texture": "#glow"},
"west": {"uv": [6.5, 13.5, 9.5, 15], "texture": "#glow"},
"up": {"uv": [2.5, 6.5, 13.5, 9.5], "texture": "#glow"},
"down": {"uv": [2.5, 6.5, 13.5, 9.5], "texture": "#glow"}
}
},
{
"name": "base",
"from": [2, 0, 6],
"to": [14, 1, 10],
"faces": {
"north": {"uv": [2, 15, 14, 16], "texture": "#base"},
"east": {"uv": [6, 15, 10, 16], "texture": "#base"},
"south": {"uv": [2, 15, 14, 16], "texture": "#base"},
"west": {"uv": [6, 15, 10, 16], "texture": "#base"},
"up": {"uv": [2, 6, 14, 10], "texture": "#base"},
"down": {"uv": [2, 6, 14, 10], "texture": "#base"}
}
}
]
}
@@ -1,110 +0,0 @@
{
"credit": "Created by Frost-ZX using Blockbench.",
"textures": {
"particle": "#main"
},
"ambientocclusion": false,
"elements": [
{
"name": "Side_N",
"from": [0.5, 0, -6],
"to": [15.5, 16, -2],
"shade": false,
"faces": {
"north": {"uv": [0.75, 3, 3.75, 6], "texture": "#main"},
"south": {"uv": [5.75, 2.75, 8.75, 4.75], "texture": "#main"},
"up": {"uv": [5.75, 0, 10.25, 0.75], "texture": "#main"}
}
},
{
"name": "Side_S",
"from": [0.5, 0, 18],
"to": [15.5, 16, 22],
"shade": false,
"faces": {
"north": {"uv": [5.75, 2.75, 8.75, 4.75], "texture": "#main"},
"south": {"uv": [0.75, 9, 3.75, 12], "texture": "#main"},
"up": {"uv": [5.75, 0, 10.25, 0.75], "texture": "#main"}
}
},
{
"name": "Side_W",
"from": [-3.5, 0, -6],
"to": [0.5, 16, 22],
"shade": false,
"faces": {
"north": {"uv": [3.75, 3, 4.5, 6], "texture": "#main"},
"east": {"uv": [5.75, 0.75, 9.25, 4.5], "rotation": 90, "texture": "#main"},
"south": {"uv": [0, 9, 0.75, 12], "texture": "#main"},
"west": {"uv": [0, 0, 5, 3], "texture": "#main"},
"up": {"uv": [5, 0, 5.75, 5.25], "texture": "#main"}
}
},
{
"name": "Side_E",
"from": [15.5, 0, -6],
"to": [19.5, 16, 22],
"shade": false,
"faces": {
"north": {"uv": [0, 3, 0.75, 6], "texture": "#main"},
"east": {"uv": [0, 6, 5, 9], "texture": "#main"},
"south": {"uv": [3.75, 9, 4.5, 12], "texture": "#main"},
"west": {"uv": [5.75, 0.75, 9.25, 4.5], "rotation": 90, "texture": "#main"},
"up": {"uv": [5, 0, 5.75, 5.25], "texture": "#main"}
}
},
{
"name": "Bottom",
"from": [0.5, 2.5, -2],
"to": [15.5, 4.5, 18],
"shade": false,
"faces": {
"north": {"uv": [5.75, 0.75, 8.75, 1.25], "rotation": 180, "texture": "#main"},
"east": {"uv": [5.75, 0.75, 6.25, 4.5], "rotation": 90, "texture": "#main"},
"south": {"uv": [5.75, 0.75, 8.75, 1.25], "texture": "#main"},
"west": {"uv": [5.75, 0.75, 6.25, 4.5], "rotation": 90, "texture": "#main"},
"up": {"uv": [5.75, 0.75, 8.75, 4.5], "texture": "#main"},
"down": {"uv": [5.75, 0.75, 8.75, 4.5], "texture": "#main"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [90, 90, 0],
"translation": [0, 0, -1.5],
"scale": [0.25, 0.25, 0.25]
},
"thirdperson_lefthand": {
"rotation": [90, 90, 0],
"translation": [0, 0, -1.5],
"scale": [0.25, 0.25, 0.25]
},
"firstperson_righthand": {
"rotation": [0, 16, 0],
"translation": [5, 1, -4],
"scale": [0.2, 0.2, 0.2]
},
"firstperson_lefthand": {
"rotation": [0, 16, 0],
"translation": [5, 1, -4],
"scale": [0.2, 0.2, 0.2]
},
"ground": {
"translation": [0, 5, 0]
},
"gui": {
"rotation": [20, 40, 0],
"scale": [0.4, 0.4, 0.4]
},
"head": {
"rotation": [0, 90, 0],
"translation": [0, 10, 0],
"scale": [0.4, 0.4, 0.4]
},
"fixed": {
"rotation": [0, 90, 0],
"translation": [0, 0, -9],
"scale": [0.8, 0.8, 0.8]
}
}
}
@@ -1,6 +1,6 @@
{ {
"credit": "Created by Frost-ZX using Blockbench.", "credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off", "parent": "block/block",
"textures": { "textures": {
"particle": "wheat_plus:block/road/base", "particle": "wheat_plus:block/road/base",
"texture": "wheat_plus:block/road/base", "texture": "wheat_plus:block/road/base",
@@ -1,6 +1,6 @@
{ {
"credit": "Created by Frost-ZX using Blockbench.", "credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off", "parent": "block/block",
"textures": { "textures": {
"particle": "wheat_plus:block/road/base", "particle": "wheat_plus:block/road/base",
"texture": "wheat_plus:block/road/base", "texture": "wheat_plus:block/road/base",
@@ -1,6 +1,6 @@
{ {
"credit": "Created by Frost-ZX using Blockbench.", "credit": "Created by Frost-ZX using Blockbench.",
"parent": "wheat_plus:block/base/normal_ao_off", "parent": "block/block",
"textures": { "textures": {
"particle": "wheat_plus:block/road/base", "particle": "wheat_plus:block/road/base",
"texture": "wheat_plus:block/road/base", "texture": "wheat_plus:block/road/base",

Some files were not shown because too many files have changed in this diff Show More