From dec110c16e0df3fdcac94f8d66daded2cdf859b2 Mon Sep 17 00:00:00 2001 From: GearShocky Date: Sun, 15 May 2022 01:01:33 +0600 Subject: [PATCH] Added storage cable texture; Changed the color of matter in all item and block textures; Added gravitation field limiter and gravitational field sensor textures; Updated Portable gravitation stabilizer texture; Added plasma ball projectile texture (Dbot, this, placeholder at least); Added Storage power supplier model and texture, however it is not loaded (Dbot pls fix i forgor); --- .../block/storage_cable_connection.json | 20 ++ .../models/block/storage_cable_core.json | 22 ++ .../models/block/storage_power_supplier.json | 318 ++++++++++++++++++ .../item/gravitation_field_limiter.json | 6 + .../models/item/gravitation_field_sensor.json | 6 + .../item/portable_gravitation_stabilizer.json | 6 + .../models/item/storage_cable.json | 22 ++ .../block/gravitational_stabilizer.png | Bin 506 -> 506 bytes .../block/gravitational_stabilizer_idle.png | Bin 479 -> 479 bytes .../textures/block/matter_bottler.png | Bin 536 -> 536 bytes .../textures/block/matter_decomposer.png | Bin 486 -> 486 bytes .../textures/block/matter_replicator.png | Bin 523 -> 523 bytes .../block/matter_replicator_halted.png | Bin 509 -> 509 bytes .../block/matter_replicator_offline.png | Bin 490 -> 490 bytes .../textures/block/matterybank_core.png | Bin 268 -> 268 bytes .../textures/block/storage_cable.png | Bin 0 -> 199 bytes .../textures/block/storage_power_supplier.png | Bin 0 -> 457 bytes .../item/gravitation_field_limiter.png | Bin 0 -> 240 bytes .../item/gravitation_field_sensor.png | Bin 0 -> 266 bytes .../item/matter_capacitor_creative.png | Bin 487 -> 497 bytes .../textures/item/matter_capacitor_parts.png | Bin 0 -> 260 bytes .../textures/item/matter_capacitor_tier0.png | Bin 238 -> 238 bytes .../textures/item/matter_capacitor_tier1.png | Bin 252 -> 252 bytes .../textures/item/matter_capacitor_tier2.png | Bin 252 -> 252 bytes .../textures/item/matter_capacitor_tier3.png | Bin 252 -> 252 bytes .../textures/item/matter_capacitor_tier4.png | Bin 252 -> 252 bytes .../textures/item/matter_io_port.png | Bin 0 -> 258 bytes .../textures/item/matter_transform_matrix.png | Bin 0 -> 280 bytes .../textures/item/pattern_drive_creative.png | Bin 257 -> 257 bytes .../textures/item/pattern_drive_tier0.png | Bin 248 -> 248 bytes .../textures/item/pattern_drive_tier1.png | Bin 261 -> 261 bytes .../textures/item/pattern_drive_tier2.png | Bin 261 -> 261 bytes .../textures/item/pattern_drive_tier3.png | Bin 261 -> 261 bytes .../textures/item/pattern_drive_tier4.png | Bin 261 -> 261 bytes .../item/portable_gravitation_stabilizer.png | Bin 0 -> 267 bytes .../textures/misc/plasma_ball.png | Bin 0 -> 377 bytes .../armor/gravitation_stabilizer_layer_1.png | Bin 542 -> 556 bytes 37 files changed, 400 insertions(+) create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_connection.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_core.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/storage_power_supplier.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_limiter.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_sensor.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/portable_gravitation_stabilizer.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/storage_cable.json create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/storage_cable.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/storage_power_supplier.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/gravitation_field_limiter.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/gravitation_field_sensor.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/matter_capacitor_parts.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/matter_io_port.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/matter_transform_matrix.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/item/portable_gravitation_stabilizer.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/misc/plasma_ball.png diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_connection.json b/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_connection.json new file mode 100644 index 000000000..21034ce5a --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_connection.json @@ -0,0 +1,20 @@ +{ + "parent": "block/block", + "texture_size": [16, 16], + "textures": { + "connection": "overdrive_that_matters:block/storage_cable", + "particle": "overdrive_that_matters:block/storage_cable" + }, + "elements": [ + { + "from": [ 5, 5, 11 ], + "to": [ 11, 11, 16 ], + "faces": { + "down": {"uv": [6, 0, 11, 6],"rotation": 90, "texture": "#connection" }, + "up": {"uv": [6, 0, 11, 6],"rotation": 90, "texture": "#connection" }, + "west": {"uv": [6, 0, 11, 6], "texture": "#connection" }, + "east": {"uv": [6, 0, 11, 6], "texture": "#connection" } + } + } + ] +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_core.json b/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_core.json new file mode 100644 index 000000000..82ce8a212 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/storage_cable_core.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "texture_size": [16, 16], + "textures": { + "core": "overdrive_that_matters:block/storage_cable", + "particle": "overdrive_that_matters:block/storage_cable" + }, + "elements": [ + { + "from": [ 5, 5, 5 ], + "to": [ 11, 11, 11 ], + "faces": { + "down": {"uv": [0, 0, 6, 6], "texture": "#core" }, + "up": {"uv": [0, 0, 6, 6], "texture": "#core" }, + "north": {"uv": [0, 0, 6, 6], "texture": "#core" }, + "south": {"uv": [0, 0, 6, 6], "texture": "#core" }, + "west": {"uv": [0, 0, 6, 6], "texture": "#core" }, + "east": {"uv": [0, 0, 6, 6], "texture": "#core" } + } + } + ] +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/storage_power_supplier.json b/src/main/resources/assets/overdrive_that_matters/models/block/storage_power_supplier.json new file mode 100644 index 000000000..b2ffb4bc1 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/storage_power_supplier.json @@ -0,0 +1,318 @@ +{ + "textures": { + "0": "overdrive_that_matters:block/storage_power_supplier", + "particle": "overdrive_that_matters:block/storage_power_supplier" + }, + "elements": [ + { + "name": "base", + "from": [8, 0, 0], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [8, 3, 12, 3.75], "texture": "#0"}, + "east": {"uv": [0, 3, 8, 3.75], "texture": "#0"}, + "south": {"uv": [8, 3, 12, 3.75], "texture": "#0"}, + "west": {"uv": [0, 3, 8, 3.75], "texture": "#0"}, + "up": {"uv": [0, 1, 8, 3], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 3.75, 8, 5.75], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "base", + "from": [8, 13, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [11, 5.75, 15, 6.5], "texture": "#0"}, + "east": {"uv": [3, 5.75, 11, 6.5], "texture": "#0"}, + "south": {"uv": [11, 5.75, 15, 6.5], "texture": "#0"}, + "west": {"uv": [3, 5.75, 11, 6.5], "texture": "#0"}, + "up": {"uv": [3, 6.5, 11, 8.5], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 1, 8, 3], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [0, 0, 6], + "to": [8, 14, 15], + "faces": { + "north": {"uv": [0, 8.5, 4, 12], "texture": "#0"}, + "east": {"uv": [4, 8.5, 8.5, 12], "texture": "#0"}, + "south": {"uv": [0, 8.5, 4, 12], "texture": "#0"}, + "west": {"uv": [4, 8.5, 8.5, 12], "texture": "#0"}, + "up": {"uv": [8.5, 12, 13, 14], "rotation": 90, "texture": "#0"}, + "down": {"uv": [4, 12, 8.5, 14], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [2, 8, 4], + "to": [6, 12, 5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [4, 12, 10.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 1], "texture": "#0"}, + "east": {"uv": [8, 0, 8.5, 1], "texture": "#0"}, + "south": {"uv": [6, 0, 8, 1], "texture": "#0"}, + "west": {"uv": [8, 0, 8.5, 1], "texture": "#0"}, + "up": {"uv": [8, 0, 8.5, 1], "rotation": 90, "texture": "#0"}, + "down": {"uv": [8, 0, 8.5, 1], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [3, 8, 4], + "to": [5, 13, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, + "faces": { + "north": {"uv": [9.5, 1.5, 10.5, 2.75], "texture": "#0"}, + "east": {"uv": [8.5, 1.5, 9.5, 2.75], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1.25], "texture": "#missing"}, + "west": {"uv": [9.5, 1.5, 8.5, 2.75], "texture": "#0"}, + "up": {"uv": [9.5, 1, 10.5, 1.5], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#missing"} + } + }, + { + "from": [2, 0, 3], + "to": [6, 8, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, + "faces": { + "north": {"uv": [12, 0.75, 14, 2.75], "texture": "#0"}, + "east": {"uv": [10.5, 0.75, 12, 2.75], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "west": {"uv": [12, 0.75, 10.5, 2.75], "texture": "#0"}, + "up": {"uv": [12, 0.75, 14, 0], "texture": "#0"}, + "down": {"uv": [10, 0, 12, 0.75], "texture": "#0"} + } + }, + { + "from": [1, 14, 7.5], + "to": [8, 15, 9.5], + "faces": { + "north": {"uv": [8.5, 9, 12, 9.25], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#missing"}, + "south": {"uv": [8.5, 9.25, 12, 9], "texture": "#0"}, + "west": {"uv": [12, 8.5, 12.5, 9], "rotation": 90, "texture": "#0"}, + "up": {"uv": [8.5, 8.5, 12, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 3.5, 0.5], "texture": "#missing"} + } + }, + { + "from": [1, 14, 11.5], + "to": [8, 15, 13.5], + "faces": { + "north": {"uv": [8.5, 9, 12, 9.25], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#missing"}, + "south": {"uv": [8.5, 9.25, 12, 9], "texture": "#0"}, + "west": {"uv": [12, 8.5, 12.5, 9], "rotation": 90, "texture": "#0"}, + "up": {"uv": [8.5, 8.5, 12, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 3.5, 0.5], "texture": "#missing"} + } + }, + { + "name": "coil", + "from": [9, 3, 9], + "to": [15, 4, 15], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 5, 9], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 7, 9], + "to": [15, 8, 15], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 9, 9], + "to": [15, 10, 15], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coilbase", + "from": [10, 3, 10], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "east": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "south": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "west": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 1], "texture": "#missing"} + } + }, + { + "name": "coil", + "from": [9, 11, 9], + "to": [15, 12, 15], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 3, 1], + "to": [15, 4, 7], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 5, 1], + "to": [15, 6, 7], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 7, 1], + "to": [15, 8, 7], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coil", + "from": [9, 9, 1], + "to": [15, 10, 7], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + }, + { + "name": "coilbase", + "from": [10, 3, 2], + "to": [14, 13, 6], + "faces": { + "north": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "east": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "south": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "west": {"uv": [14, 0, 16, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 1], "texture": "#missing"} + } + }, + { + "name": "coil", + "from": [9, 11, 1], + "to": [15, 12, 7], + "faces": { + "north": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "east": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "south": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "west": {"uv": [0, 7.25, 3, 7.5], "texture": "#0"}, + "up": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"}, + "down": {"uv": [0, 5.75, 3, 7.25], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + { + "name": "coilwhole", + "origin": [0, 0, 0], + "color": 0, + "children": [8, 9, 10, 11, 12, 13] + }, + { + "name": "coilwhole", + "origin": [0, 0, 0], + "color": 0, + "children": [14, 15, 16, 17, 18, 19] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_limiter.json b/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_limiter.json new file mode 100644 index 000000000..c674d8e8b --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_limiter.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "overdrive_that_matters:item/component/gravitation_field_limiter" + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_sensor.json b/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_sensor.json new file mode 100644 index 000000000..35a0ccad0 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/gravitation_field_sensor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "overdrive_that_matters:item/component/gravitation_field_sensor" + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/portable_gravitation_stabilizer.json b/src/main/resources/assets/overdrive_that_matters/models/item/portable_gravitation_stabilizer.json new file mode 100644 index 000000000..d619fb98c --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/portable_gravitation_stabilizer.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "overdrive_that_matters:item/portable_gravitation_stabilizer" + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/storage_cable.json b/src/main/resources/assets/overdrive_that_matters/models/item/storage_cable.json new file mode 100644 index 000000000..e0355ccb3 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/storage_cable.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "texture_size": [16, 16], + "textures": { + "core": "overdrive_that_matters:block/storage_cable", + "particle": "overdrive_that_matters:block/storage_cable" + }, + "elements": [ + { + "from": [ 6, 6, 6 ], + "to": [ 10, 10, 10 ], + "faces": { + "down": {"uv": [0, 0, 4, 4], "texture": "#core" }, + "up": {"uv": [0, 0, 4, 4], "texture": "#core" }, + "north": {"uv": [0, 0, 4, 4], "texture": "#core" }, + "south": {"uv": [0, 0, 4, 4], "texture": "#core" }, + "west": {"uv": [0, 0, 4, 4], "texture": "#core" }, + "east": {"uv": [0, 0, 4, 4], "texture": "#core" } + } + } + ] +} diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/gravitational_stabilizer.png b/src/main/resources/assets/overdrive_that_matters/textures/block/gravitational_stabilizer.png index 5bdf6589e791eab617e42591f5b90d93dc54d401..dfc827e8561c7f94bdc40f721739e81d9b4d855c 100644 GIT binary patch delta 50 zcmeyx{EK-)gk;N-=QXpg)l=2!iH;Q9Xs0}!11dahz(p$gYQ1_r)^j5{V~zuh=L Gnh^khNf*%o delta 50 zcmeyx{EK-)grrCGf5)KbxlR4C`BncPc>ce^00heH4tWy`Rk#i@Fz_8>6xHx**f>9$ F5db2U6Da@y diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/gravitational_stabilizer_idle.png b/src/main/resources/assets/overdrive_that_matters/textures/block/gravitational_stabilizer_idle.png index 0379b79122b767e7f99caf501725a305f3f306ae..14c3ec6e99d7d1ad81665905940bca692ce0d77f 100644 GIT binary patch delta 44 zcmV+{0Mq~91K$IXSQC7j)`XrOtJLfr0M;W7f4!&W)>c839e74_g2L delta 41 zcmV+^0M`GQ1egSnY7j_U|3OmcU2l2-001|%s@0KtCknv;01m+cxRGn^v8!zXNeU20 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer.png index e15ef38d400bd9c351bad9bef973cbf590324f35..cf80807288528d579224318669f2c86c4e5c197b 100644 GIT binary patch delta 50 zcmV-20L}mA1LgyePZ@-y=X{#h78VwPny77pkN^Mw0000Z{B#kKXdw!~000ia0czHX I39*w?0YKsv2LJ#7 delta 50 zcmV-20L}mA1LgyePZ>yC|3Omc78VwPny77pkN^Mw0002a4*Ca?Xdw#0000ib0l1NC I?Xi1LS_EnG9}TFa8>vH4YMYHAD&41txFSrhY=xehWg@Ev5_F){n?#@Pjo0Bms( ASO5S3 delta 44 zcmeBX>1LS_E$kTd+#~vbY<`uRni>NGgQ0`G{KPzEu0sqAe1{lCHM|-&&MsgC05k9n ABLDyZ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_halted.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_halted.png index 16c5d5d38281d7e8e11c849f5f235712b0db2d36..228d97add5cab7d6c3f6197ebf1faa40671bbdf7 100644 GIT binary patch delta 38 wcmV+>0NMZj1N{S#VGV?&=X{#h0001cn@wktZX*i8000ib0l1NC?XjC;0X~2a(EtDd delta 38 ucmey%{Fiw`BCkjEf5)Kb3=9l)ERHuP<|%U>VqoAq#3-ua)v$4P5+eW=vkfc& diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_offline.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_offline.png index c32e3b45859708127c3885084944c20f67b34d80..80819b285d22befa5edd95ac6afc8c19089736c9 100644 GIT binary patch delta 38 wcmV+>0NMZQ1L^~iTMdMy=X{#h0000dE-7b`Xdw#0000ib0l1NC?XiS3A?Ay6~xTFa)3YHDf>3=BO|$Lc3$C~_TOVBkBzn02j_bK>Mm04MkkhX4Qo delta 40 wcmeBS>S3A?A>bJF+#~wGnwlB|1H*C6$ij&kid+X782An{?wFYUcH-np01g!nPyhe` diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/storage_cable.png b/src/main/resources/assets/overdrive_that_matters/textures/block/storage_cable.png new file mode 100644 index 0000000000000000000000000000000000000000..70af311858fadd4cb99fc07287c546218ac4778c GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufG}g$wN6f;V2r1WV~B-+vWcnb-}4QuEPsD6raoj(VBWK5 zkAz*_9}ckx&!4B?*p@5ptTsXS{M;iC|>M%$%Fg?j&W8A=a pVwPi05W~?%3of^V2@E_u49C_hUesDNF#u=}gQu&X%Q~loCIH)rJV^im literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/storage_power_supplier.png b/src/main/resources/assets/overdrive_that_matters/textures/block/storage_power_supplier.png new file mode 100644 index 0000000000000000000000000000000000000000..453dce8561ba4f88ac3c6449c004d9a624dec349 GIT binary patch literal 457 zcmV;)0XF`LP)Px#1ZP1_K>z@;j|==^1poj5Bv4FLMgQ0U|KLd$78bPt0RI30U|?W>e}4b~05vr= zU2l4Af{%fksPmmLc>n+a32;bRa{vGi!vFvd!vV){sAK>D0WL{IK~y-)#gaX40x=MU z%@J}1SC&#HN5~aSmQWM=G~U`$gatKuGEW-3e0uKNS%G|s0G|-oz`(%z`g$=jv4VmEH8nL;Q`43u&w-Mb6>r}HDUOmLzu^B6z;Lg5 zZzNERv%n*=n1O+BKL|5gum-CD1${kT978mMYx_Ng4k&Q2B>EWr|6e%a?ENS%G}T0G|+7F)^{gz`*+YdTniOH8r)Z3=IDn806&SOifJ_5)y!_gguwm0x9m2 zAiv=MaKPZ@&-e)_%vsef|J8Rr86Z^IAsr7>(T^p_|! uy`quW@bN+F!CYU6vj^su~8J!+Crx| z=x7}D2?S?{uEkjd5u8O7baGNbeSo?MF0P8;1LzPpEybWvtX2~gX_HF4-!V6B>c8R- zPR_YEIp= zbK7A>bef;%HSR*pgXRYCQn5L}cOHOf!1Tfq-4!jeZJS)zrB_emtR#~BzSV>MjVxy# zfd7fCb`2uY%<>tV5(nM~Q;6fqGdn*p$PgpYe|FT&g90NmeLBi$# cXnzRN2hoPki$6sTX8-^I07*qoM6N<$f|}dPsQ>@~ delta 424 zcmV;Z0ayO<1Lp&fNq@lr01m+cxRGn^0004eNklTMlD%!?IB?eIN~*!yK!0FBDbp@8`&ZoTu2lAO zV%xS630Rhj|4h4MhLK1%ZOh?B3894+EGPmb;~N#^j?RmbVT}sVRtk@_yUxRlvn8r4 z*r4fePmvDggI7#04)?Ix0uul;N#UKEAU#U^b|k~ zJ+CIsX7ii9w0~N(cm=h_3R?jDm!@g@`Fx&m482Gs zegM36FKHlN!F%t9IS>hq&Xwiqp(6EqouxM(v-EB^$M?w@oE$9CQvf##-g_N~lj(&s z4#{yGvG2;P!nsNS%G}%0G|-oz`#H;F|qpkdNnn*mL<lFz(Fo4%zs=WRz~QW!ar}S%#+YR@GQMvp za=Pvl!?I6x(&ASQ9~c=TG|#YA&8fVk8nBM7TlObI1MiKAJLDv@7h8MnO)T%e%4XUB pNq$eXnM7%d-E=|zea|<1;J(GdyhyZLOUczgW$zYb{Hj7ZenjnwqMqsWC7xlp6jootUb?b%=q1?+~M?hF8PH{&)bW CJrIKc delta 46 zcmaFI_>OUcznEjtbC2l%1qB7Brlx9YY77hvyD!8wO-xnbI?TYpcbM^b{)&`|{qX>n C?-4Qp diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/matter_capacitor_tier1.png b/src/main/resources/assets/overdrive_that_matters/textures/item/matter_capacitor_tier1.png index 3bbf060f769397a48bc9474c093baf8d7178010e..bdf4bf7576862ec78493fd2ab64853d48fddf08b 100644 GIT binary patch delta 49 zcmeyv_=j;qkYvrQYb{Hj7ZeouO*1exHC0nnV_;xt(q#EMFAx2RRuZD@! FQvu-N5m^8L delta 49 zcmeyv_=j;qkfdYKbC2l%1qB6u(+o^aP1V%Y7#J9WHrr`T%vRz$%)r2RnDKc2ij;}d FQvt$}5q6n{ D!+;RM diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/matter_capacitor_tier4.png b/src/main/resources/assets/overdrive_that_matters/textures/item/matter_capacitor_tier4.png index a0738fbdd6f3b5d92a32f4276b45a07913131d96..a5bc3cc06fac65b91ffb2e68ca176c03275c6b7b 100644 GIT binary patch delta 49 zcmV-10M7sX0sH}wQW<=j)`XAx2RRuZD@! FQvu+}5$FH_ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/matter_io_port.png b/src/main/resources/assets/overdrive_that_matters/textures/item/matter_io_port.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a5954c3cd98632aabbe70d5c3f50a8af79ebe7 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}%0G|-oz`(%z`uc)`0x>Z$H8nL;Q`4GR*IJf52g>(+p8gj|ah3%61^NS%G}H0G|-oz`(%z`uc=~1Tir&H8nL;Q`43u&ueB~D<~)cDv^?WE(xT#N`m}? z|HA;orZYO{fufuR9+AZi41D`Rn9+hYSOqAU>*?Ycq7fY1f1B@s0*CWcr9=P!e~2=O z-t;NK(kUqH@0Kjb>z5b0oZbCG>W4PdiPY^!Zs-c$zjRA2<(9&tMy4+=G83#FC#au0 znSa#y;_~xdT8vMZF{C{+?>r#gqB0#K2@DJjLb6lLCT1vd9b#bMJH#le;ngs4avlI< CPY$O5 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/pattern_drive_tier0.png b/src/main/resources/assets/overdrive_that_matters/textures/item/pattern_drive_tier0.png index d3bedeca05f970da5577a5ae8bfa0cab14301fc1..300d77ad652f350f64fb1cb27539a49a15d93ef1 100644 GIT binary patch delta 46 zcmeyt_=9nRzgWwX=QXpgnVOmw6ci*RBrq^ASpWAGnwYA{1qt^`!fNm CViEfQ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/pattern_drive_tier1.png b/src/main/resources/assets/overdrive_that_matters/textures/item/pattern_drive_tier1.png index 30b6f040baf2a18fdd5e540e3e026d7b5966ec68..3a2c184d0a664e99295e5af341db745de90b56a2 100644 GIT binary patch delta 49 zcmZo=YGs-bB-yg$dCjbArlzI^1qBHS34YTI7#JA%)^=-8%vRz$1Y{m!6xHx*m^eKT E0Kg0o@c;k- delta 49 zcmZo=YGs-bBv3T5q|&x delta 49 zcmZo=YGs-bBu~d5lsL9 delta 49 zcmZo=YGs-bBNS%G}@0G|-oz`#H;F|qpkdK(XaZEfwjyU#SvTJiq|!~X}KrlzK``Bk}1{Xn&w zPBlLTQoJQWe!>5d0E6udr8b}hXMsm#F#`kNArNL1)$nQn3Wj*PIEH8h=bpMK)S$rO z63FGk`|p2swD96t?+#ndnfT|jy+E!Z_cz95HG|DNxaYAh-N3QBNqvQomw-cVY(LB5 uu-&RNO20I%ZrRP?@$P;9j(`Ko--QpBb6nlo&~OZBK7*&LpUXO@geCwDWL~uZ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/misc/plasma_ball.png b/src/main/resources/assets/overdrive_that_matters/textures/misc/plasma_ball.png new file mode 100644 index 0000000000000000000000000000000000000000..4948d25de22bc148ea5d4dc0d4ad727ac6dbf884 GIT binary patch literal 377 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4Sb$1jv*HQOD7w09WoGUi(krRHRTbj$kBze zwvL5GU*z=U7P=RFlcg`O-I5zuTSsq_RclOzVG-aKgbV!r>sWLy#T?{eMkb;uhQ1w9Q87CyZ zTssY}mretw!yu(`8i{F~r>v}AMcTr0XAuH$w{oWeDRzT9 z@V!tT43vLX0o^kGGr&Q&?p5eC5N#DSXQI}gZ$OA_zz-*!2Bd?5Z1_yGK`z022~T_s eJ_aeJ7W56!sA^d_&BjW<8tpajQI5}t)kZXeH$8}ymfd#!cKp5}9O*{tO zkHQZKcm^4Ke>QXSDM+7Ro3)+7ksyQ5ulbb@P;VE=BRAUwK?On9h&BNz*UbW|LJ3i< zn+FK{?=T5syb&=;x zi(^4R!@)t(eGl0;>+-?1jl~O3e%!Xav>`zR_eXgBf9n`x&QokHE)gP*Jhvd0#~)ag}rnQJ&@Pfi{owpnxhi0e?Bs*Hga${IL$`lJTDb z4tO`;g+YPVRsp#t>e}-KgqBV6k_|=y)rmmgcuTh+w_rVm9dE%~kWxyYh@`S(9i%GP Q000002uVdwM6N<$g1fe~0{{R3