From 1853ddf31b69fe2fa28827203929d08ea4111f0b Mon Sep 17 00:00:00 2001 From: BootyToast Date: Fri, 12 Aug 2016 12:29:51 -0400 Subject: [PATCH] New empowerer, crates, wood casing textures/models. Crates are no longer full blocks. Cleaned up blockstate files. --- .../blockstates/blockAtomicReconstructor.json | 2 - .../blockstates/blockCoalGenerator.json | 6 +- .../blockstates/blockDisplayStand.json | 5 +- .../blockstates/blockEmpowerer.json | 6 +- .../blockstates/blockGiantChest.json | 6 +- .../blockstates/blockGiantChestLarge.json | 6 +- .../blockstates/blockGiantChestMedium.json | 6 +- .../models/block/blockEmpowerer.json | 180 ++++++++++++ .../models/block/blockGiantChest.json | 100 +++++++ .../models/block/blockGiantChestLarge.json | 256 +++++++++++++++++ .../models/block/blockGiantChestMedium.json | 257 ++++++++++++++++++ .../textures/blocks/blockEmpowerer.png | Bin 6352 -> 8014 bytes .../textures/blocks/blockEmpowererSide.png | Bin 3086 -> 3118 bytes .../textures/blocks/blockGiantChestLarge.png | Bin 752 -> 749 bytes .../textures/blocks/blockGiantChestMedium.png | Bin 754 -> 745 bytes .../textures/blocks/blockMiscWoodCasing.png | Bin 652 -> 716 bytes 16 files changed, 803 insertions(+), 27 deletions(-) create mode 100644 src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json create mode 100644 src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json create mode 100644 src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json create mode 100644 src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json b/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json index 0f9979aa1..2519848bd 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json @@ -5,9 +5,7 @@ "textures": { "particle": "actuallyadditions:blocks/blockAtomicReconstructor", "down": "#particle", - "up": "actuallyadditions:blocks/blockAtomicReconstructorTop", "south": "#particle", - "north": "actuallyadditions:blocks/blockAtomicReconstructorFront", "east": "#particle", "west": "#particle" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json index f542c8f97..381ca3f04 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json @@ -3,11 +3,7 @@ "defaults": { "model": "actuallyadditions:blockCoalGenerator", "textures": { - "particle": "actuallyadditions:blocks/blockCoalGenerator", - "side": "actuallyadditions:blocks/blockCoalGeneratorSide", - "bottom": "actuallyadditions:blocks/blockCoalGeneratorBottom", - "top": "actuallyadditions:blocks/blockCoalGeneratorTop", - "north": "actuallyadditions:blocks/blockCoalGenerator" + "particle": "actuallyadditions:blocks/blockCoalGenerator" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json b/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json index 223f7aece..8afed312d 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json @@ -3,10 +3,7 @@ "defaults": { "model": "actuallyadditions:blockDisplayStand", "textures": { - "particle": "actuallyadditions:blocks/blockGiantChestTop", - "bottom": "actuallyadditions:blocks/blockDisplayStand", - "top": "#bottom", - "side": "actuallyadditions:blocks/blockDisplayStandSide" + "particle": "actuallyadditions:blocks/blockGiantChestTop" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json index 43785f7a7..cac6af8eb 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json @@ -1,11 +1,9 @@ { "forge_marker": 1, "defaults": { - "model": "minecraft:half_slab", + "model": "actuallyadditions:blockEmpowerer", "textures": { - "bottom": "actuallyadditions:blocks/blockEmpowerer", - "top": "#bottom", - "side": "actuallyadditions:blocks/blockEmpowererSide" + "particle": "actuallyadditions:blocks/blockEmpowerer" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json index 6f6d45729..956f8157a 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json @@ -1,11 +1,9 @@ { "forge_marker": 1, "defaults": { - "model": "minecraft:cube_bottom_top", + "model": "actuallyadditions:blockGiantChest", "textures": { - "side": "actuallyadditions:blocks/blockGiantChest", - "bottom": "actuallyadditions:blocks/blockGiantChestTop", - "top": "actuallyadditions:blocks/blockGiantChestTop" + "particle": "actuallyadditions:blocks/blockGiantChest" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json index 4fcba9ab0..e3f20ee8c 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json @@ -1,11 +1,9 @@ { "forge_marker": 1, "defaults": { - "model": "minecraft:cube_bottom_top", + "model": "actuallyadditions:blockGiantChestLarge", "textures": { - "side": "actuallyadditions:blocks/blockGiantChestLarge", - "bottom": "actuallyadditions:blocks/blockGiantChestTop", - "top": "actuallyadditions:blocks/blockGiantChestTop" + "particle": "actuallyadditions:blocks/blockGiantChest" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json index 43571a3e3..140305691 100644 --- a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json @@ -1,11 +1,9 @@ { "forge_marker": 1, "defaults": { - "model": "minecraft:cube_bottom_top", + "model": "actuallyadditions:blockGiantChestMedium", "textures": { - "side": "actuallyadditions:blocks/blockGiantChestMedium", - "bottom": "actuallyadditions:blocks/blockGiantChestTop", - "top": "actuallyadditions:blocks/blockGiantChestTop" + "particle": "actuallyadditions:blocks/blockGiantChest" }, "transform": "forge:default-block" }, diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json b/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json new file mode 100644 index 000000000..305ad0bde --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json @@ -0,0 +1,180 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockCoalGeneratorSide", + "1": "actuallyadditions:blocks/blockMiscIronCasing", + "2": "actuallyadditions:blocks/blockAtomicReconstructorTop", + "3": "actuallyadditions:blocks/blockEmpowerer" + }, + "elements": [ + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 16.0, 1.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 15.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 15.0, 16.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 1.0, 2.0 ], + "to": [ 14.0, 2.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] }, + "down": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 4.0 ], + "to": [ 15.0, 2.0, 12.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 1.0, 14.0, 2.0 ] }, + "east": { "texture": "#2", "uv": [ 4.0, 0.0, 12.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 2.0 ] }, + "west": { "texture": "#2", "uv": [ 4.0, 2.0, 12.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 4.0, 1.0, 12.0, 15.0 ], "rotation": 270 }, + "down": { "texture": "#2", "uv": [ 4.0, 1.0, 12.0, 15.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 4.0, 1.0, 1.0 ], + "to": [ 12.0, 2.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 4.0, 0.0, 12.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 2.0 ] }, + "south": { "texture": "#2", "uv": [ 4.0, 1.0, 12.0, 2.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 1.0, 14.0, 2.0 ] }, + "up": { "texture": "#2", "uv": [ 4.0, 1.0, 12.0, 15.0 ], "rotation": 180 }, + "down": { "texture": "#2", "uv": [ 4.0, 1.0, 12.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 2.0, 2.0 ], + "to": [ 14.0, 3.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 2.0, 1.0, 14.0, 2.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 1.0, 14.0, 2.0 ] }, + "south": { "texture": "#1", "uv": [ 2.0, 14.0, 14.0, 15.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 14.0, 12.0, 15.0 ] }, + "up": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] }, + "down": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 3.0, 6.0 ], + "to": [ 10.0, 6.0, 10.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "east": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "south": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "up": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 4.0 ] }, + "down": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 6.0, 0.0 ], + "to": [ 14.0, 7.0, 16.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 2.0 ], + "to": [ 16.0, 7.0, 14.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 2.0, 16.0, 14.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 2.0, 16.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 7.0, 1.0 ], + "to": [ 15.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#3", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#3", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#3", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#3", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#3", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 0.0 ], + "to": [ 16.0, 8.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 15.0 ], + "to": [ 16.0, 8.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 1.0 ], + "to": [ 1.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 7.0, 1.0 ], + "to": [ 16.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json new file mode 100644 index 000000000..01db7ad1a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json @@ -0,0 +1,100 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestTop", + "1": "actuallyadditions:blocks/blockGiantChestLarge" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json new file mode 100644 index 000000000..0ac3e5b3d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json @@ -0,0 +1,256 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestLarge", + "1": "actuallyadditions:blocks/blockGiantChestTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 1.0 ], + "to": [ 1.0, 10.0, 10.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 6.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 6.0 ], + "to": [ 16.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 0.0 ], + "to": [ 15.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 15.0 ], + "to": [ 10.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 6.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 13.0 ], + "to": [ 1.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 1.0 ], + "to": [ 16.0, 10.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 13.0, 8.0, 15.0 ], + "to": [ 15.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.0 ], + "to": [ 3.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 0.0 ], + "to": [ 1.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 15.0 ], + "to": [ 1.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 15.0 ], + "to": [ 16.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 0.0 ], + "to": [ 16.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json new file mode 100644 index 000000000..6378f43d8 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json @@ -0,0 +1,257 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestMedium", + "1": "actuallyadditions:blocks/blockGiantChestMedium", + "2": "actuallyadditions:blocks/blockGiantChestTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 1.0 ], + "to": [ 1.0, 10.0, 10.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 6.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 6.0 ], + "to": [ 16.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 0.0 ], + "to": [ 15.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 15.0 ], + "to": [ 10.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 6.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 13.0 ], + "to": [ 1.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 1.0 ], + "to": [ 16.0, 10.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 13.0, 8.0, 15.0 ], + "to": [ 15.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.0 ], + "to": [ 3.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 0.0 ], + "to": [ 1.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 15.0 ], + "to": [ 1.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 15.0 ], + "to": [ 16.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 0.0 ], + "to": [ 16.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png index 20e335a65516e2ff9714a089798f2d438d595434..23de613c9e64a045703e4fe57e542fceab995029 100644 GIT binary patch delta 5326 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 S&P(50GQhR;H7hi1LjDIPI-bG+ delta 3651 zcmWkxdpwi-AD>3saeI~&p^cMYt#VM*Q8qTwSx!n$I+V*8IgU#dwF{n@OUfmM6y_Gm zebh+DWr?|8l3T*0D8v}H82df__q?9h_w#+;pU?aAd4Jwdw^{Fz`)cyp$n7u~EbrV* zHd}`!4=Qb(u_RukewZJ-5}-LmLkOhfY#2$|fG_vL@^Ws7w})d~tH*vD=Yc?@Z>?*_ zm6#9S8PE6f*bm}%j=r*f%sH3w+=^H2oqn@K+?<(U{4zbJer1{8{kHpk_3+(N&0T$V z1ek7PI#O@#=1tLOnUALkFcM1h#EzFCI$p+?-9b@?ut^j;6QW&xYth9TDbphq;D8A2 z#y~A(1Z*gH5<1Ypqlq3fAd3`Wgv?4p<*lwF>te<(nwq&E=O? zk8is+dfel2t}T`v7`P)B`zF{KI+QTgD8x-qPiuD^HA!G%?_yJ|4Q+Oo%|$%&+yjn{ zX<_s4SpNF+r6RnxtjSQ(R_cK$3x2Ks^;cS~jA6NcjdVWay4*o;yYr9?jN=D~<@RAs5)Mzi z#+H?}xU*Xq&Z}BcS%1Gwo(m1s`a6uj7u>s7JjUSH`Wph0lz}+J=fUy;x^~A48c_Mn z2TxMAd?F&7+0Supes6xVcKfq=;qq;$YhL>&a19lqW{QfEo90$|Ei`lB<}DB%@lN`P zgekIX=c%FKn+l(nmydFsH9du7JfLdjR^5af28ZTs82kxF2ih{Pub0^iG6(TB+RC}_ zZ@?AVrS0%OP;QB;6^X*$-DZLGaBPA4%w=6<%3fTfe4U$P)-{Gd+801A(cdqPy+ntG z91 z*l0CxSaGMUOoTQ_X1`&^)NdVEiIu%#1Wih1i9N7TBeYMZ0eB?7aFLkGNtt2_8~ig2 z#OU|;0GAMVpA%+Z=L^#fd_TfjUSFZY9UH%k$Tbgt(xryfnZI-*0si~Rlh!dY2tG{( zo3FQGzz{gY8YkFwL zj7OP|+4M(xKe1=ao!O2Vy>h16a~kL-WW)z=EcYGAdYu?5f&kZW5dZc2 zcPm{L?=fcldtjEX{iksnf;m*k#i?WF{72v}DA~C9U`QCWRbsW#iTjdBe1YZeSW9pl z43)?mxn8ZO5M?35nn{W23wDl+dz*u`{u3RLmzQ_(!P8V6%4$i}&HUnS2)M^`2WMmJ z5l$jopH<5V_`xF|FXQ`Mr{1L|`VPbW7su;fl$MsZFz*z7YL?`|ZX5NC_22}q;o8WW zfJqAqaM3=hV$rmeVJmt2sOOyr0_SDmwmSldCWD1&^j@YfuA%29QCqQ4s#bXiI zLN{a?qOuaqXWnZ{--9!sFA(q@W*3_Zq80cjl?q?o0a)qWr-p&xXqpHAZ zKuypoK0mezvqc}2W)$4>5q|p^8uVVQnfUu4Aj{>Z{wCkDw(=jvSPrXlg{?$fPy4;6!wbCU7<_Zf3#v(N9%+cs(9i&9wd8j#XlSkV8&A^EcF!+5 z0}?*P2B;jFZ@~*Nww{}OJ0Lnbnt*g`a`_ToRHPTVgb(m%)Ii|zVvTfoBVlL|crKU1lC)Q!cGMM&)L-Mi;|qg|BkpjSyKIS5$iziW5D z&JOmG#b`DtQz)6k_4w$`TXkWN@q)iS!F)v6bY%g8HFHGm5FXNQ8sD6$0i>p;7G26) zBN>VUrc%>N zlMVsv>+8^G^5Rk3?CpJUR6%3UksxUmsZL<%J6g61?KWsTv1aDzPyvLz5kn*35Hore zC)nMOvf7a_bsJ^37b6}S&R^m-Ho_#6(_pB4vpbu^8Xg!J=!Jvny}{0^Ge>Pz@(`dJfU4w!47&MWOrSkM$Wqze{a4(_CFcBjVHv>Qk-zEOT({RvKs^ z;dNkK@#XVbD%X+?a4W0TM@&o{ShQTE1+u^lJ1_`H9#2n1V=%f8&+NwB$wfL31xm); zr`CyeAzVPXS@pfVAqhw|2)fyF|J+P^hgwKd2%yE|wljRGW=oZ829P20J>JoMU`-@y zav|7A-?Yrd7Ho}{9=Mcg9-svxghF9(4+gSooYO(hyatJov%VRhnVBi>>;I8LcMlG+ zbv&Q(SUA_&FgG=yRyzZ`82Sf3rQ*NF`EkMMc`yxtYyVk)HiRHc?ox8agN))uTE6I zdmi_$Gj3($eFJLE)b%C$tkwe8YimAba6|2#_W=j#o3_8MLQxM7bdfg|MoM;+fW-b* z&jnW`wBBnum5|EbE$ zIf0>!3L&Yg>Sl#7wss+UQ^8GY@s)TOjXRM<*gyB_{TT(X{eG(Qzq*93c1`0=sD)0h z%aquEj5XE_BB2a8pxZ;bVCAn((zCr8C;i<1z58oAc+AbQcm^0;%_dUf?#tgxh|}rm#IV-%p09~ z+7HSeIG1K(ZgidUJCL1O~tEC=kKlB|Oz7~e)FxX#l# zdwyqzi5q{uT&vULx8cYuw;GaYf>(@jN?zb|M9S*hpHUs6AEaZO@rPHL7_%g+<>;~d z^lG9_Lbjg=(7n|J&q1u>#BE7e1mM;$dmlbjzUuW`O<4_Fh`3VSZbCPXn&Np8kqt{i zgli3WbcH{=mR$h4)vXg3@jG8;Wev}7S@6oPT)>I$^)l&b$u~dKBk5I>weCJMN&XVJ z+^dhxgFXAkUi_sr&F!_-9iE`P64m!}x6mCaU$~G{Jw4lc3bG*U{4w%x=-%d_3Nhi& q%!mT-(#7BZJ-iv8-pZU%gem@zs?STmk3&C;urpTYEXyp&5&s8-2Q^&) diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowererSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowererSide.png index 67a5ccf15a8b0a4477f4d2846d16f74f6fcc94fd..7a09d61c2af6082b9a706e90397c9d0ba4cb5152 100644 GIT binary patch delta 376 zcmV-;0f+vM7_JzwzzTm^NklVGJ1XB^>yZ z_<+^{lu3X{4Tt1Rw*z5yflVB^fKEE7uGb}I#(U&=r~VuK3kGsH9IWqqhG9TNFf+`I zs;cnbQ%XTq@!qqpD{b4Ns*K~v^?D@$m>DT0M1-#E5E0gO#e08GUDt#V2q9o*hzKDB zcDo(pIO0SE5qVyVF#@2fR8N(rZ`hzK!8e*XBx;p;DMx7%~K zEDIvSG);W`@|_Q#zj3)-$T{P^e<0+X$vJa6{o!;zQA(kdLen&;D$_KPQsQ;|4M2?X z`6D?VkJfb^&N*<#ainP)`o2d*aPCpk8|L|Zrm8AlUS7E0@67Z3NKi@vV87qvy~jDn zvMjW1OG=5luE{ww3a*h*Bipt;Q@r6i=N|ka@OJ=Y WjJu4=t~hJ}0000*dQzzTmkNkl4MzB zUE;f02MDC<0a2lcC6_4_%W!~HZc=1`ZRclaLhqgTAo5Q9C-@f#!hXN+04XJ2HeqI@ zlrS^?+=;5P>rE|$H#dKd<1NCAnyQjg!rfV~ z*OXG2&1S4tD|+v!DvQMefKm#zR$>U@Ztdy&0}o%H0JvVSs44*NPR^N6U%v72^CLND zQcAZ7y?0`alu|ezpE>?GzCI`fRF!F(sI~Ip=OX~qG~w>_-U)}pq3?D(T5H4@5fLtz z3&SuVBGg*RIWtg>fpWq)%?L_t(|+BD0{Zrer_0ML79F3FjpM2k{VyN(m*;W%(&w?H=C z_6v%BYJZ?W)&YWckrXJ>Ch%KuEK0IylJmS>_3RJ+`0^kL^dSjgg0{(Jf5d|r)5Z8y+Xsg9n_)~!u|BU9Mk2It15jwvnHT?AYY;Zd!tN=>%P zhxM2Wtw@=XD1Sg;QDnK%SLfHOW>b~QF(yC~V&!6LZC(sIm-x$M0ssKO011GZBS2zc zU;*&v*Pls>PhW53pMN0$01zMm1N@&705bqEGb98TqICgX4-9|+02B_N6lIo>tP3P~ zRu&<~JNFM8$*e#AdagRtAO8 zrQWzSt|m`*r)QT7YTM4BpBdSEyuaHt%XI)UDia(&oL(Luy$mU$_b>Jzl7C*m+UMXtU)(aIfOK)SAcE91%hl>Glb}f0!5Nj8g>J21Z+hoFrgS=Ap6u0U zO`A!ivCiKf?yh=nyFQnajmxA=fFmg+u=nw1(bP)J@A}C|FKnR2z5D(BKY+*pAtr$! u1^SRkqIcet>TS4P4=M{yVi&@H0|1s6S|M`i$PE(!0000*bt-_q(5+Pjb@qBp_%V5|o_00m=cunuRHzEBAP zj@DzDP4di#u-dvJ%~YvgR%*3q5{!R3yI zw9>%2%2jKrtR_DnPOom3*mb=IH`8Kpu-mrHYU3GdnegZ@E^p3GUwI1P+%LzEQmOlK zj&-Ha&rjE#eQ4GU#Pef&clXfu{j{3Q>OG~i+xbGtWPdiXff?)J-RbK$Cr5==*1M)N zNFkU$QhxvtLg3ps$I;s_-xe_fXY}oMiO8sFR_paP5lkXCqt!CaGu0WlX$R{Z5M9n! z=STHb({@?aB!YbfV0k_9E@LVMw$4AqV@jA0NucD01&?C=pz6C002ovPDHLkV1lez5#r+_zk z?YuyNZd)MeCM^&+Y2dpmOB5whBq;&+reSi9Ldr)S3;~@zC{btI+ zx$UMEKs@*$ka;(XL7{M-TJ4lfyzcv6?~jW&KOICuATUPW-%Tq-1e%#n5AxI+x9M1G z{rgO&SbqNY@bBHU801ac<4z{eUyoOfCI)$$=uSIh2AT3ii&g6xta^7;s-lp?ooufh zV4@_-H0KH9kbfjmoT|sWr@Gn{nKS{20dig&PmPX~Ud00c9{u;vb{2dfAHtHz1_~i~ zqB;a0PQ@e}?>w*dALbjMb4Y-*m*53pjBy5x0SDv!wliS5m(B3}!KOP>=7MlQma(_@*V-S(MaCwHjoDp zLg2fzNq=zW`hFe)a7Oo!3q(d$wXExPB$!05dy~pIOH`xnYSS5Of#_zsygV*%t0oeF z0~KGL9@brG+AbC%q$U!A803Nr7OeHNMO8{ZU3bG=EwsbM*8KM8R|XImbDlUb!NEF0 q0oGWHveRz9>Sg3A3dXtr2LKh`V$U<=AEN*O00{s|MNUMnLSTaMTs~X? delta 665 zcmV;K0%rZ`1@Z-uWq)`{L_t(|+62MdZq!B?0O0v&{;_AqUT3`K;>kv5IpJkGBDH4%jp#1Z<3xzP72czY`{B4gjhCoR0{&H0#B7{3L=t-`uaqU2Q>)&KT zVfp#{^^eO{G0D4r#GOo>yqIq~9SGzq)q{4%Ofu<1s5ZSPuo>NcDT_i(cd{qt1XC$c zsGO#RLYneK$$y*6+oo=dOqd9P08-i*A3B|+qf8k7S8WgfD3C+|8o)!0i*iaxU=QHYvaHS5V`k$Fc$uN|0d0N z033}&8mC$6ykBqoTuGVo!)MF&Lw$8uUsdg*%s4@e6n}qRF7K)~fhiH|=1og%HkH z>$9ijMcr`*IFZS_SIcIIT|Xp@MP)c+fk4hEBhgxaSJkDUtL-q&Wu+ZfkLK?W{}O;m zi1UF0VHB(j$iNzFQ4HEWY(~Ld9inmW{{a9(S`ub9)?G=D00000NkvXXu0mjfKT<;x diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscWoodCasing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscWoodCasing.png index da2fae99f53dbd625a278a1297eb76864ea33593..54dc99a5deedd138f4cd89d8b7b7345df4db833d 100644 GIT binary patch delta 703 zcmV;w0zmzY106Lfe02gnPU&TfM00L4;L_t(|+DypHPZL2L z0O0w}%+AivcKfbkpghuwmPkxU^rR;*o(w4bn;H*#G@LZ?sDFY81O*IjLHgS5K4$0P zfu#B!KiJvYJlNmMmBGk@HPTp22nN7_v_Z3UD8(4=cGl?8kNuagw!VDY^*G~<8ti;K zIujJC0Z%P>j&t+c;;BlL}@b(7HguDCkD|1ti5!%0=V6Yf0 zbsPkQSQ94NT5VkC`1JDRtbg-)o|9qN{WGBqqiVnyV}A%pe=q^7+Vhnxm4Y*t<^Nu* zXsQ#LlZUMZLms6#ptx-QX>7Dn680`kBk{qU!a4;MzLxPOS#9<3C``g&&+$*aK#0a;#>-R@N!$JJu_|F>x*HOi!djn3-5_Ci5;Qssjv zqekm2wnhUGzg(WZYc)pZ_r*17HYy02Fp6cGaL{?02-m6jo<(RFPG?_YxId1NHst=| z+>7n)d^*Ay3+@R{1$Pml4uy8J&OQI;d&BVQvpDC!jt^mHYxDH*I|8r>DQz$yf+1Ii l5# delta 638 zcmV-^0)hR^1&jrd8Gi-<001BJ|6u?C00v@9M??T<0A2t#`I!;W00009a7bBm000XU z000XU0RWnu7ytkO2XskIMF-ym1OY7>5Z$fS0000OX;fHrLvL+uWo~o;00000Oks9o zH8w6VE-^4M-^x3#0005?Nkl?{Nn=;4<~w#vJdR)HZxL~FQ;F>($x$Y4yz zyf%-VtRbNgk}ziM<29Au8jXnw1wG4f8257pn6{^jvVXyTy~|^zXhD|glPz#fiZPPb zf-&m9VFx43Qk5AwXf5alwspF1o4$0ajBTn84?@(>L_FEUB1aMT`!~5`hqqHO&LlT97t@ zSl6AhS$BG$%BqSV*XK!oJmGPu$trBPzie#V&bm#oByP_yEK4WWZRhdvJL}8F7)2ce z)^#UGvF&5NKn3=Udf#@weS75T=|*4r!u$8{P&D?D$5%GS*wB~8|MT4TK_TA0{S74k Y1u#^8Xbqy{-v9sr07*qoM6N<$f>I+BsQ>@~