diff --git a/src/data/java/gripe/_90/megacells/datagen/MEGAModelProvider.java b/src/data/java/gripe/_90/megacells/datagen/MEGAModelProvider.java index f66cb8e3..3a039f57 100644 --- a/src/data/java/gripe/_90/megacells/datagen/MEGAModelProvider.java +++ b/src/data/java/gripe/_90/megacells/datagen/MEGAModelProvider.java @@ -2,6 +2,7 @@ import java.util.ArrayList; +import net.minecraft.core.Direction; import net.minecraft.data.PackOutput; import net.minecraft.data.models.blockstates.PropertyDispatch; import net.minecraft.data.models.blockstates.Variant; @@ -75,6 +76,9 @@ protected void registerStatesAndModels() { MEGAItems.getItemPortables().forEach(cell -> portable(cell, itemPortableHousing)); MEGAItems.getFluidPortables().forEach(cell -> portable(cell, fluidPortableHousing)); + MEGAItems.getAllCells().forEach(this::driveCell); + driveCell(MEGAItems.BULK_ITEM_CELL, 0); + var craftingPattern = AppEng.makeId("item/" + AEItems.CRAFTING_PATTERN.id().getPath()); existing.trackGenerated(craftingPattern, ModelProvider.TEXTURE); @@ -233,6 +237,39 @@ private void portable(ItemDefinition portable, ResourceLocation housing) { .texture("layer3", MEGACells.makeId("item/cell/portable/portable_cell_side" + tierSuffix)); } + private void driveCell(MEGAItems.CellDefinition cell) { + driveCell( + cell.tier().namePrefix() + "_" + cell.keyType() + "_cell", + "mega_" + cell.keyType() + "_cell", + (cell.tier().index() - 6) * 2); + } + + private void driveCell(ItemDefinition cell, int offset) { + driveCell(cell.id().getPath(), "misc_cell", offset); + } + + private void driveCell(String cell, String texture, int offset) { + var texturePrefix = "block/drive/cells/"; + models().getBuilder(texturePrefix + cell) + .ao(false) + .texture("cell", texturePrefix + texture) + .texture("particle", texturePrefix + texture) + .element() + .to(6, 2, 2) + .face(Direction.NORTH) + .uvs(0, offset, 6, offset + 2) + .end() + .face(Direction.UP) + .uvs(6, offset, 0, offset + 2) + .end() + .face(Direction.DOWN) + .uvs(6, offset, 0, offset + 2) + .end() + .faces((dir, builder) -> + builder.texture("#cell").cullface(Direction.NORTH).end()) + .end(); + } + /* private void portable(ItemDefinition portable) { var id = portable.id().getPath(); diff --git a/src/generated/resources/.cache/cc4b70e39bb0fb6efac7e3196e5bd714468e6114 b/src/generated/resources/.cache/cc4b70e39bb0fb6efac7e3196e5bd714468e6114 index 35dc46b2..470e515d 100644 --- a/src/generated/resources/.cache/cc4b70e39bb0fb6efac7e3196e5bd714468e6114 +++ b/src/generated/resources/.cache/cc4b70e39bb0fb6efac7e3196e5bd714468e6114 @@ -1,4 +1,4 @@ -// 1.21 2024-07-13T20:28:57.674621144 Block States / Models +// 1.21 2024-07-14T15:32:59.680212145 Block States / Models 8d69a3c391bcb75b5aac370510d15fa9c367b200 assets/megacells/blockstates/16m_crafting_storage.json 6b8ebbdecbd556e59c1c0d9abb4222d5de046e9a assets/megacells/blockstates/1m_crafting_storage.json c716f5bd44bda4274f6e5f2c2f2b09f6223a8de7 assets/megacells/blockstates/256m_crafting_storage.json @@ -28,6 +28,17 @@ bb279ec5c0a166e1b7f0d11ab67408f29e7b37d8 assets/megacells/models/block/crafting/ bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f assets/megacells/models/block/crafting/monitor_formed.json 75fdc6d6aad6a4d9403b71994b38f1ec774ce7d1 assets/megacells/models/block/crafting/unit.json bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f assets/megacells/models/block/crafting/unit_formed.json +ac19152e615ec413b01f03ea64b9c97202c69b93 assets/megacells/models/block/drive/cells/16m_fluid_cell.json +c162baa8189635e58888371831e5be75effe7f15 assets/megacells/models/block/drive/cells/16m_item_cell.json +4e95d9b0ba21cfe132def34adb29b7a6bea6dc31 assets/megacells/models/block/drive/cells/1m_fluid_cell.json +f760556eae133ae2dbea5045f640357a46e846f4 assets/megacells/models/block/drive/cells/1m_item_cell.json +46f51bb7d95664321c22cc3285af668fbae2568f assets/megacells/models/block/drive/cells/256m_fluid_cell.json +edea8ebddb6bdb2463fdebd36e60b8df5d451316 assets/megacells/models/block/drive/cells/256m_item_cell.json +e1930c2351da19d57397450fb8d485184e58e349 assets/megacells/models/block/drive/cells/4m_fluid_cell.json +721100216b33d4ee9476a16e0afd6193e28c7424 assets/megacells/models/block/drive/cells/4m_item_cell.json +1f0566b718fcf79a27c65f53848249f803224c49 assets/megacells/models/block/drive/cells/64m_fluid_cell.json +7d68f252b72cf9bfce7fbd0d19c87338baca97d5 assets/megacells/models/block/drive/cells/64m_item_cell.json +9923abfaabaf29512ab6ffc57e6631201612cd02 assets/megacells/models/block/drive/cells/bulk_item_cell.json 5e974aa730bec68d50d47c26f432bddefb0eea5a assets/megacells/models/block/mega_energy_cell_0.json cc3cd206c9efe98482b647fe8f4a30894b858384 assets/megacells/models/block/mega_energy_cell_1.json 485c5bd0670da5d8016e61f0e503ba9f035215f5 assets/megacells/models/block/mega_energy_cell_2.json diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json new file mode 100644 index 00000000..6557c06e --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 4.0, + 6.0, + 6.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 4.0, + 6.0, + 6.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_fluid_cell", + "particle": "megacells:block/drive/cells/mega_fluid_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json new file mode 100644 index 00000000..79e67819 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 4.0, + 6.0, + 6.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 4.0, + 6.0, + 6.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 4.0, + 0.0, + 6.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_item_cell", + "particle": "megacells:block/drive/cells/mega_item_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json new file mode 100644 index 00000000..c76e294a --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 0.0, + 6.0, + 2.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 0.0, + 6.0, + 2.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_fluid_cell", + "particle": "megacells:block/drive/cells/mega_fluid_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json new file mode 100644 index 00000000..93127805 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 0.0, + 6.0, + 2.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 0.0, + 6.0, + 2.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_item_cell", + "particle": "megacells:block/drive/cells/mega_item_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json new file mode 100644 index 00000000..10f909e9 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 8.0, + 6.0, + 10.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 8.0, + 6.0, + 10.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_fluid_cell", + "particle": "megacells:block/drive/cells/mega_fluid_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json new file mode 100644 index 00000000..cfd85e33 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 8.0, + 6.0, + 10.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 8.0, + 6.0, + 10.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 8.0, + 0.0, + 10.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_item_cell", + "particle": "megacells:block/drive/cells/mega_item_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json new file mode 100644 index 00000000..8bdd08b5 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 2.0, + 6.0, + 4.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 2.0, + 6.0, + 4.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_fluid_cell", + "particle": "megacells:block/drive/cells/mega_fluid_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json new file mode 100644 index 00000000..cb8612b9 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 2.0, + 6.0, + 4.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 2.0, + 6.0, + 4.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 2.0, + 0.0, + 4.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_item_cell", + "particle": "megacells:block/drive/cells/mega_item_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json new file mode 100644 index 00000000..df5e3707 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 6.0, + 6.0, + 8.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 6.0, + 6.0, + 8.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_fluid_cell", + "particle": "megacells:block/drive/cells/mega_fluid_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json new file mode 100644 index 00000000..54acd7de --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json @@ -0,0 +1,97 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 6.0, + 6.0, + 8.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + }, + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 6.0, + 6.0, + 8.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 6.0, + 0.0, + 8.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/mega_item_cell", + "particle": "megacells:block/drive/cells/mega_item_cell" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json b/src/generated/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json new file mode 100644 index 00000000..12d3e544 --- /dev/null +++ b/src/generated/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json @@ -0,0 +1,53 @@ +{ + "ambientocclusion": false, + "elements": [ + { + "faces": { + "down": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + }, + "north": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 0.0, + 0.0, + 6.0, + 2.0 + ] + }, + "up": { + "cullface": "north", + "texture": "#cell", + "uv": [ + 6.0, + 0.0, + 0.0, + 2.0 + ] + } + }, + "from": [ + 0, + 0, + 0 + ], + "to": [ + 6, + 2, + 2 + ] + } + ], + "textures": { + "cell": "megacells:block/drive/cells/misc_cell", + "particle": "megacells:block/drive/cells/misc_cell" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/16m_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/16m_chemical_cell.json deleted file mode 100644 index 33fe1151..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/16m_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_chemical_cell", - "cell": "megacells:block/drive/cells/mega_chemical_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 4, 6, 6], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json deleted file mode 100644 index b5e0b61d..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/16m_fluid_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_fluid_cell", - "cell": "megacells:block/drive/cells/mega_fluid_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 4, 6, 6], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json deleted file mode 100644 index c2691863..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/16m_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_item_cell", - "cell": "megacells:block/drive/cells/mega_item_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 4, 6, 6], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/16m_mana_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/16m_mana_cell.json deleted file mode 100644 index 89dffda0..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/16m_mana_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_mana_cell", - "cell": "megacells:block/drive/cells/mega_mana_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 4, 6, 6], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/16m_source_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/16m_source_cell.json deleted file mode 100644 index 4de42300..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/16m_source_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_source_cell", - "cell": "megacells:block/drive/cells/mega_source_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 4, 6, 6], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 4, 0, 6], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/1m_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/1m_chemical_cell.json deleted file mode 100644 index 6682c136..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/1m_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_chemical_cell", - "cell": "megacells:block/drive/cells/mega_chemical_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json deleted file mode 100644 index d54f820f..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/1m_fluid_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_fluid_cell", - "cell": "megacells:block/drive/cells/mega_fluid_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json deleted file mode 100644 index 9d4c8c13..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/1m_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_item_cell", - "cell": "megacells:block/drive/cells/mega_item_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/1m_mana_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/1m_mana_cell.json deleted file mode 100644 index 2b2cad87..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/1m_mana_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_mana_cell", - "cell": "megacells:block/drive/cells/mega_mana_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/1m_source_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/1m_source_cell.json deleted file mode 100644 index 0c79ec3f..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/1m_source_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_source_cell", - "cell": "megacells:block/drive/cells/mega_source_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/256m_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/256m_chemical_cell.json deleted file mode 100644 index c26d31cc..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/256m_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_chemical_cell", - "cell": "megacells:block/drive/cells/mega_chemical_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 8, 6, 10], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json deleted file mode 100644 index 6acc9723..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/256m_fluid_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_fluid_cell", - "cell": "megacells:block/drive/cells/mega_fluid_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 8, 6, 10], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json deleted file mode 100644 index eca53815..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/256m_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_item_cell", - "cell": "megacells:block/drive/cells/mega_item_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 8, 6, 10], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/256m_mana_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/256m_mana_cell.json deleted file mode 100644 index 1a5a91eb..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/256m_mana_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_mana_cell", - "cell": "megacells:block/drive/cells/mega_mana_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 8, 6, 10], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/256m_source_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/256m_source_cell.json deleted file mode 100644 index 8309a5b4..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/256m_source_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_source_cell", - "cell": "megacells:block/drive/cells/mega_source_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 8, 6, 10], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 8, 0, 10], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/4m_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/4m_chemical_cell.json deleted file mode 100644 index 12311a57..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/4m_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_chemical_cell", - "cell": "megacells:block/drive/cells/mega_chemical_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json deleted file mode 100644 index cd99dc2b..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/4m_fluid_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_fluid_cell", - "cell": "megacells:block/drive/cells/mega_fluid_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json deleted file mode 100644 index ef25267c..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/4m_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_item_cell", - "cell": "megacells:block/drive/cells/mega_item_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/4m_mana_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/4m_mana_cell.json deleted file mode 100644 index b2001ca4..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/4m_mana_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_mana_cell", - "cell": "megacells:block/drive/cells/mega_mana_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/4m_source_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/4m_source_cell.json deleted file mode 100644 index 639a7c94..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/4m_source_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_source_cell", - "cell": "megacells:block/drive/cells/mega_source_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/64m_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/64m_chemical_cell.json deleted file mode 100644 index a04e194b..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/64m_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_chemical_cell", - "cell": "megacells:block/drive/cells/mega_chemical_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 6, 6, 8], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json deleted file mode 100644 index 09537774..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/64m_fluid_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_fluid_cell", - "cell": "megacells:block/drive/cells/mega_fluid_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 6, 6, 8], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json deleted file mode 100644 index 68fccb8a..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/64m_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_item_cell", - "cell": "megacells:block/drive/cells/mega_item_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 6, 6, 8], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/64m_mana_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/64m_mana_cell.json deleted file mode 100644 index 49ec38f3..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/64m_mana_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_mana_cell", - "cell": "megacells:block/drive/cells/mega_mana_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 6, 6, 8], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/64m_source_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/64m_source_cell.json deleted file mode 100644 index 0300d8fe..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/64m_source_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/mega_source_cell", - "cell": "megacells:block/drive/cells/mega_source_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 6, 6, 8], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 6, 0, 8], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json deleted file mode 100644 index 9479d301..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/bulk_item_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/misc_cell", - "cell": "megacells:block/drive/cells/misc_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 0, 6, 2], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north" } - } - } - ] -} diff --git a/src/main/resources/assets/megacells/models/block/drive/cells/radioactive_chemical_cell.json b/src/main/resources/assets/megacells/models/block/drive/cells/radioactive_chemical_cell.json deleted file mode 100644 index 85eefd28..00000000 --- a/src/main/resources/assets/megacells/models/block/drive/cells/radioactive_chemical_cell.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "particle": "megacells:block/drive/cells/misc_cell", - "cell": "megacells:block/drive/cells/misc_cell" - }, - "elements": [ - { - "name": "Cell Backdrop", - "from": [0, 0, 0], - "to": [6, 2, 2], - "rotation": { "angle": 0, "axis": "y", "origin": [9, 8, 8] }, - "faces": { - "north": { - "uv": [0, 2, 6, 4], - "texture": "#cell", - "cullface": "north" - }, - "up": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" }, - "down": { "uv": [6, 2, 0, 4], "texture": "#cell", "cullface": "north" } - } - } - ] -}