Added block models to all basic drawers

This commit is contained in:
Ridanis 2021-12-19 00:21:27 +01:00
parent e93c909e08
commit c67ee44d4a
70 changed files with 746 additions and 6 deletions

View File

@ -0,0 +1,19 @@
{
"variants": {
"subfacing=north": {
"model": "functionalstorage:block/dark_oak_wood_x_1"
},
"subfacing=south": {
"model": "functionalstorage:block/dark_oak_wood_x_1",
"y": 180
},
"subfacing=west": {
"model": "functionalstorage:block/dark_oak_wood_x_1",
"y": 270
},
"subfacing=east": {
"model": "functionalstorage:block/dark_oak_wood_x_1",
"y": 90
}
}
}

View File

@ -0,0 +1,19 @@
{
"variants": {
"subfacing=north": {
"model": "functionalstorage:block/dark_oak_wood_x_2"
},
"subfacing=south": {
"model": "functionalstorage:block/dark_oak_wood_x_2",
"y": 180
},
"subfacing=west": {
"model": "functionalstorage:block/dark_oak_wood_x_2",
"y": 270
},
"subfacing=east": {
"model": "functionalstorage:block/dark_oak_wood_x_2",
"y": 90
}
}
}

View File

@ -0,0 +1,19 @@
{
"variants": {
"subfacing=north": {
"model": "functionalstorage:block/dark_oak_wood_x_4"
},
"subfacing=south": {
"model": "functionalstorage:block/dark_oak_wood_x_4",
"y": 180
},
"subfacing=west": {
"model": "functionalstorage:block/dark_oak_wood_x_4",
"y": 270
},
"subfacing=east": {
"model": "functionalstorage:block/dark_oak_wood_x_4",
"y": 90
}
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "functionalstorage:block/dark_oak_wood_x_1"
}

View File

@ -0,0 +1,3 @@
{
"parent": "functionalstorage:block/dark_oak_wood_x_2"
}

View File

@ -0,0 +1,3 @@
{
"parent": "functionalstorage:block/dark_oak_wood_x_4"
}

View File

@ -0,0 +1,33 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_nbt",
"source": "block_entity",
"ops": [
{
"source": "handler",
"target": "BlockEntityTag.handler",
"op": "replace"
}
]
}
],
"name": "functionalstorage:dark_oak_wood_x_1"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@ -0,0 +1,33 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_nbt",
"source": "block_entity",
"ops": [
{
"source": "handler",
"target": "BlockEntityTag.handler",
"op": "replace"
}
]
}
],
"name": "functionalstorage:dark_oak_wood_x_2"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@ -0,0 +1,33 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_nbt",
"source": "block_entity",
"ops": [
{
"source": "handler",
"target": "BlockEntityTag.handler",
"op": "replace"
}
]
}
],
"name": "functionalstorage:dark_oak_wood_x_4"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@ -55,6 +55,7 @@ public class FunctionalStorage extends ModuleController {
protected void initModules() { protected void initModules() {
addWood(Blocks.OAK_WOOD); addWood(Blocks.OAK_WOOD);
addWood(Blocks.SPRUCE_WOOD); addWood(Blocks.SPRUCE_WOOD);
addWood(Blocks.DARK_OAK_WOOD);
addWood(Blocks.BIRCH_WOOD); addWood(Blocks.BIRCH_WOOD);
addWood(Blocks.JUNGLE_WOOD); addWood(Blocks.JUNGLE_WOOD);
addWood(Blocks.ACACIA_WOOD); addWood(Blocks.ACACIA_WOOD);

View File

@ -57,9 +57,9 @@ public class DrawerBlock extends RotatableBlock<DrawerTile> {
for (VoxelShape voxelShape : CACHED_SHAPES.get(FunctionalStorage.DrawerType.X_1).get(direction)) { for (VoxelShape voxelShape : CACHED_SHAPES.get(FunctionalStorage.DrawerType.X_1).get(direction)) {
AABB bounding = voxelShape.toAabbs().get(0); AABB bounding = voxelShape.toAabbs().get(0);
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_2, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_2, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ ,bounding.maxX, 8/16D, bounding.maxZ)); put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ ,bounding.maxX, 7/16D, bounding.maxZ));
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_2, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_2, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(bounding.minX, 8/16D, bounding.minZ ,bounding.maxX, bounding.maxY, bounding.maxZ)); put(direction, Shapes.box(bounding.minX, 9/16D, bounding.minZ ,bounding.maxX, bounding.maxY, bounding.maxZ));
} }
} }
for (Direction direction : CACHED_SHAPES.get(FunctionalStorage.DrawerType.X_2).keySet()) { for (Direction direction : CACHED_SHAPES.get(FunctionalStorage.DrawerType.X_2).keySet()) {
@ -67,14 +67,14 @@ public class DrawerBlock extends RotatableBlock<DrawerTile> {
AABB bounding = voxelShape.toAabbs().get(0); AABB bounding = voxelShape.toAabbs().get(0);
if (direction == Direction.NORTH || direction == Direction.SOUTH) { if (direction == Direction.NORTH || direction == Direction.SOUTH) {
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ , 8/16D, bounding.maxY, bounding.maxZ)); put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ , 7/16D, bounding.maxY, bounding.maxZ));
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(8/16D, bounding.minY, bounding.minZ ,bounding.maxX, bounding.maxY, bounding.maxZ)); put(direction, Shapes.box(9/16D, bounding.minY, bounding.minZ ,bounding.maxX, bounding.maxY, bounding.maxZ));
} else { } else {
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(bounding.minX, bounding.minY, 8/16D,bounding.maxX, bounding.maxY, bounding.maxZ)); put(direction, Shapes.box(bounding.minX, bounding.minY, 7/16D,bounding.maxX, bounding.maxY, bounding.maxZ));
CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()). CACHED_SHAPES.computeIfAbsent(FunctionalStorage.DrawerType.X_4, type1 -> MultimapBuilder.hashKeys().arrayListValues().build()).
put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ , bounding.maxX, bounding.maxY, 8/16D)); put(direction, Shapes.box(bounding.minX, bounding.minY, bounding.minZ , bounding.maxX, bounding.maxY, 9/16D));
} }
} }
} }

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/acacia_front_1",
"front": "functionalstorage:blocks/acacia_front_1",
"side": "functionalstorage:blocks/acacia_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/acacia_front_2",
"front": "functionalstorage:blocks/acacia_front_2",
"side": "functionalstorage:blocks/acacia_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/acacia_front_4",
"front": "functionalstorage:blocks/acacia_front_4",
"side": "functionalstorage:blocks/acacia_side"
}
}

View File

@ -0,0 +1,100 @@
{
"credit": "Made with Blockbench",
"elements": [
{
"from": [1, 1, 0.5],
"to": [15, 15, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 1, 15, 15], "texture": "#front"}
}
},
{
"from": [15, 1, 0],
"to": [16, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side", "cullface": "east"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side"}
}
},
{
"from": [0, 15, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side"}
}
},
{
"from": [0, 1, 0],
"to": [1, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side", "cullface": "west"}
}
},
{
"from": [0, 0, 0],
"to": [16, 1, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "down"}
}
},
{
"from": [0, 1, 15],
"to": [16, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"east": {"uv": [1, 0, 15, 1], "rotation": 90, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 1, 16, 15], "texture": "#side", "cullface": "south"},
"west": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "west"}
}
}
],
"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],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

View File

@ -0,0 +1,120 @@
{
"credit": "Made with Blockbench",
"elements": [
{
"from": [15, 1, 0],
"to": [16, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side", "cullface": "east"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side"}
}
},
{
"from": [1, 9, 0.5],
"to": [15, 15, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 1, 15, 7], "texture": "#front"},
"down": {"uv": [0, 0, 6, 2], "texture": "#side"}
}
},
{
"from": [1, 7, 0],
"to": [15, 9, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 7, 15, 9], "texture": "#front", "cullface": "north"},
"up": {"uv": [15, 7, 1, 9], "texture": "#front"},
"down": {"uv": [1, 9, 15, 7], "rotation": 180, "texture": "#front"}
}
},
{
"from": [1, 1, 0.5],
"to": [15, 7, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 9, 15, 15], "texture": "#front"},
"up": {"uv": [0, 0, 6, 2], "texture": "#side"}
}
},
{
"from": [0, 1, 0],
"to": [1, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side", "cullface": "west"}
}
},
{
"from": [0, 0, 0],
"to": [16, 1, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "down"}
}
},
{
"from": [0, 15, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side"}
}
},
{
"from": [0, 1, 15],
"to": [16, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"east": {"uv": [1, 0, 15, 1], "rotation": 90, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 1, 16, 15], "texture": "#side", "cullface": "south"},
"west": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "west"}
}
}
],
"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],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

View File

@ -0,0 +1,162 @@
{
"credit": "Made with Blockbench",
"elements": [
{
"from": [9, 1, 0.5],
"to": [15, 7, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 9, 7, 15], "texture": "#front"},
"west": {"uv": [0, 0, 2, 6], "texture": "#front"},
"up": {"uv": [0, 0, 6, 2], "texture": "#front"}
}
},
{
"from": [1, 1, 0.5],
"to": [7, 7, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [9, 9, 15, 15], "texture": "#front"},
"east": {"uv": [0, 0, 2, 6], "texture": "#front"},
"up": {"uv": [0, 0, 6, 2], "texture": "#front"}
}
},
{
"from": [1, 9, 0.5],
"to": [7, 15, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [9, 1, 15, 7], "texture": "#front"},
"east": {"uv": [0, 0, 2, 6], "texture": "#front"},
"down": {"uv": [0, 0, 6, 2], "texture": "#front"}
}
},
{
"from": [9, 9, 0.5],
"to": [15, 15, 2.5],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 1, 7, 7], "texture": "#front"},
"west": {"uv": [0, 0, 2, 6], "texture": "#front"},
"down": {"uv": [0, 0, 6, 2], "texture": "#front"}
}
},
{
"from": [7, 1, 0],
"to": [9, 15, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [7, 1, 9, 15], "texture": "#front", "cullface": "north"},
"east": {"uv": [9, 1, 7, 15], "texture": "#front"},
"west": {"uv": [9, 1, 7, 15], "texture": "#front"}
}
},
{
"from": [9, 7, 0],
"to": [15, 9, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 7, 7, 9], "texture": "#front", "cullface": "north"},
"up": {"uv": [7, 7, 1, 9], "texture": "#front"},
"down": {"uv": [7, 7, 1, 9], "texture": "#front"}
}
},
{
"from": [1, 7, 0],
"to": [7, 9, 2],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [9, 7, 15, 9], "texture": "#front", "cullface": "north"},
"up": {"uv": [15, 7, 9, 9], "texture": "#front"},
"down": {"uv": [15, 7, 9, 9], "texture": "#front"}
}
},
{
"from": [0, 0, 0],
"to": [16, 1, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "down"}
}
},
{
"from": [0, 1, 0],
"to": [1, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side", "cullface": "west"}
}
},
{
"from": [0, 15, 0],
"to": [16, 16, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "south"},
"west": {"uv": [0, 0, 16, 1], "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#side"}
}
},
{
"from": [15, 1, 0],
"to": [16, 15, 15],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"north": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "north"},
"east": {"uv": [1, 1, 16, 15], "texture": "#side", "cullface": "east"},
"west": {"uv": [0, 1, 15, 15], "texture": "#side"}
}
},
{
"from": [0, 1, 15],
"to": [16, 15, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, -8]},
"faces": {
"east": {"uv": [1, 0, 15, 1], "rotation": 90, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 1, 16, 15], "texture": "#side", "cullface": "south"},
"west": {"uv": [1, 15, 15, 16], "rotation": 90, "texture": "#side", "cullface": "west"}
}
}
],
"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],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/birch_front_1",
"front": "functionalstorage:blocks/birch_front_1",
"side": "functionalstorage:blocks/birch_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/birch_front_2",
"front": "functionalstorage:blocks/birch_front_2",
"side": "functionalstorage:blocks/birch_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/birch_front_4",
"front": "functionalstorage:blocks/birch_front_4",
"side": "functionalstorage:blocks/birch_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/crimson_front_1",
"front": "functionalstorage:blocks/crimson_front_1",
"side": "functionalstorage:blocks/crimson_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/crimson_front_2",
"front": "functionalstorage:blocks/crimson_front_2",
"side": "functionalstorage:blocks/crimson_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/crimson_front_4",
"front": "functionalstorage:blocks/crimson_front_4",
"side": "functionalstorage:blocks/crimson_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/dark_oak_front_1",
"front": "functionalstorage:blocks/dark_oak_front_1",
"side": "functionalstorage:blocks/dark_oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/dark_oak_front_2",
"front": "functionalstorage:blocks/dark_oak_front_2",
"side": "functionalstorage:blocks/dark_oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/dark_oak_front_4",
"front": "functionalstorage:blocks/dark_oak_front_4",
"side": "functionalstorage:blocks/dark_oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/jungle_front_1",
"front": "functionalstorage:blocks/jungle_front_1",
"side": "functionalstorage:blocks/jungle_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/jungle_front_2",
"front": "functionalstorage:blocks/jungle_front_2",
"side": "functionalstorage:blocks/jungle_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/jungle_front_4",
"front": "functionalstorage:blocks/jungle_front_4",
"side": "functionalstorage:blocks/jungle_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/oak_front_1",
"front": "functionalstorage:blocks/oak_front_1",
"side": "functionalstorage:blocks/oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/oak_front_2",
"front": "functionalstorage:blocks/oak_front_2",
"side": "functionalstorage:blocks/oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/oak_front_4",
"front": "functionalstorage:blocks/oak_front_4",
"side": "functionalstorage:blocks/oak_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/spruce_front_1",
"front": "functionalstorage:blocks/spruce_front_1",
"side": "functionalstorage:blocks/spruce_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/spruce_front_2",
"front": "functionalstorage:blocks/spruce_front_2",
"side": "functionalstorage:blocks/spruce_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/spruce_front_4",
"front": "functionalstorage:blocks/spruce_front_4",
"side": "functionalstorage:blocks/spruce_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_1",
"textures": {
"particle": "functionalstorage:blocks/warped_front_1",
"front": "functionalstorage:blocks/warped_front_1",
"side": "functionalstorage:blocks/warped_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_2",
"textures": {
"particle": "functionalstorage:blocks/warped_front_2",
"front": "functionalstorage:blocks/warped_front_2",
"side": "functionalstorage:blocks/warped_side"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "functionalstorage:block/base_x_4",
"textures": {
"particle": "functionalstorage:blocks/warped_front_4",
"front": "functionalstorage:blocks/warped_front_4",
"side": "functionalstorage:blocks/warped_side"
}
}

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB