From 08ce52906ae7de38cc1b160446a573b0233f1a22 Mon Sep 17 00:00:00 2001 From: GearShocky Date: Mon, 18 Oct 2021 15:44:37 +0600 Subject: [PATCH] -New drive rack model. -New energy counter model. -New item monitor model. --- .../blockstates/drive_rack.json | 19 + .../blockstates/energy_counter.json | 82 ++++ .../blockstates/item_monitor.json | 19 + .../models/block/drive_rack.json | 191 ++++++++++ .../models/block/energy_counter_down.json | 360 ++++++++++++++++++ .../models/block/energy_counter_up.json | 360 ++++++++++++++++++ .../models/block/item_monitor.json | 154 ++++++++ .../models/item/drive_rack.json | 3 + .../models/item/energy_counter.json | 3 + .../models/item/item_monitor.json | 3 + .../textures/block/drive_rack.png | Bin 0 -> 381 bytes .../textures/block/energy_counter.png | Bin 0 -> 504 bytes .../textures/block/item_monitor.png | Bin 0 -> 374 bytes 13 files changed, 1194 insertions(+) create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/drive_rack.json create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/energy_counter.json create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/item_monitor.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/drive_rack.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_down.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_up.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/item_monitor.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/drive_rack.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/energy_counter.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/item_monitor.json create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/drive_rack.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/energy_counter.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/item_monitor.png diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/drive_rack.json b/src/main/resources/assets/overdrive_that_matters/blockstates/drive_rack.json new file mode 100644 index 000000000..9e8995d38 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/drive_rack.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=south": { + "model": "overdrive_that_matters:block/drive_rack", + "y": 180 + }, + "facing=west": { + "model": "overdrive_that_matters:block/drive_rack", + "y": 270 + }, + "facing=north": { + "model": "overdrive_that_matters:block/drive_rack" + }, + "facing=east": { + "model": "overdrive_that_matters:block/drive_rack", + "y": 90 + } + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/energy_counter.json b/src/main/resources/assets/overdrive_that_matters/blockstates/energy_counter.json new file mode 100644 index 000000000..5bb27f8bc --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/energy_counter.json @@ -0,0 +1,82 @@ +{ + "multipart": [ + { + "when": { + "if": "north", + "input": "up" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_down" + } + }, + { + "when": { + "if": "south", + "input": "up" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_down", + "y": 180 + } + }, + { + "when": { + "if": "west", + "input": "up" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_down", + "y": 270 + } + }, + { + "when": { + "if": "east", + "input": "up" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_down", + "y": 90 + } + }, + { + "when": { + "if": "north", + "input": "down" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_up" + } + }, + { + "when": { + "if": "south", + "input": "down" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_up", + "y": 180 + } + }, + { + "when": { + "if": "west", + "input": "down" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_up", + "y": 270 + } + }, + { + "when": { + "if": "east", + "input": "down" + }, + "apply": { + "model": "overdrive_that_matters:block/energy_counter_up", + "y": 90 + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/item_monitor.json b/src/main/resources/assets/overdrive_that_matters/blockstates/item_monitor.json new file mode 100644 index 000000000..b1b86db74 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/item_monitor.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=south": { + "model": "overdrive_that_matters:block/item_monitor", + "y": 180 + }, + "facing=west": { + "model": "overdrive_that_matters:block/item_monitor", + "y": 270 + }, + "facing=north": { + "model": "overdrive_that_matters:block/item_monitor" + }, + "facing=east": { + "model": "overdrive_that_matters:block/item_monitor", + "y": 90 + } + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/drive_rack.json b/src/main/resources/assets/overdrive_that_matters/models/block/drive_rack.json new file mode 100644 index 000000000..93b6686b9 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/drive_rack.json @@ -0,0 +1,191 @@ +{ + "parent": "block/block", + "textures": { + "0": "overdrive_that_matters:block/drive_rack", + "particle": "verdrive_that_matters:block/drive_rack" + }, + "elements": [ + { + "name": "frame", + "from": [14, 0, 0], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 8, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "west": {"uv": [0, 0.5, 8, 1], "texture": "#0"}, + "up": {"uv": [0, 0.5, 8, 1], "rotation": 90, "texture": "#0"}, + "down": {"uv": [7, 0, 8, 8], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 0, 0], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "east": {"uv": [0, 0.5, 8, 1], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 8, 8], "texture": "#0"}, + "up": {"uv": [0, 0.5, 8, 1], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 8], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [2, 0, 0], + "to": [14, 2, 2], + "faces": { + "north": {"uv": [1, 7, 7, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "down": {"uv": [1, 7, 7, 8], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [2, 0, 14], + "to": [14, 2, 16], + "faces": { + "north": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [1, 7, 7, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "down": {"uv": [1, 0, 7, 1], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [2, 14, 0], + "to": [14, 16, 2], + "faces": { + "north": {"uv": [1, 0, 7, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [1, 0, 7, 1], "texture": "#0"}, + "down": {"uv": [1, 0.5, 7, 1], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 14, 0], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [7, 0, 8, 1], "texture": "#0"}, + "east": {"uv": [0, 0.5, 8, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 8, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0.5, 8, 1], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [2, 14, 14], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [1, 0.5, 7, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [1, 0, 7, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [1, 7, 7, 8], "texture": "#0"}, + "down": {"uv": [1, 0.5, 7, 1], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [14, 14, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 8, 1], "texture": "#0"}, + "south": {"uv": [7, 0, 8, 1], "texture": "#0"}, + "west": {"uv": [0, 0.5, 8, 1], "texture": "#0"}, + "up": {"uv": [7, 0, 8, 8], "texture": "#0"}, + "down": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [14, 2, 14], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 1, 1, 7], "texture": "#0"}, + "south": {"uv": [7, 1, 8, 7], "texture": "#0"}, + "west": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 2, 14], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "south": {"uv": [0, 1, 1, 7], "texture": "#0"}, + "west": {"uv": [7, 1, 8, 7], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [14, 2, 0], + "to": [16, 14, 2], + "faces": { + "north": {"uv": [0, 1, 1, 7], "texture": "#0"}, + "east": {"uv": [7, 1, 8, 7], "texture": "#0"}, + "south": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 2, 0], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [7, 1, 8, 7], "texture": "#0"}, + "east": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1, 0.5, 7, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 1, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "name": "box", + "from": [1, 1, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [8.5, 0.5, 15.5, 7.5], "texture": "#0"}, + "east": {"uv": [0.5, 8.5, 7.5, 15.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.5, 8.5, 15.5, 15.5], "texture": "#0"}, + "west": {"uv": [0.5, 8.5, 7.5, 15.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [0.5, 8.5, 7.5, 15.5], "texture": "#0"}, + "down": {"uv": [0.5, 8.5, 7.5, 15.5], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "screen", + "from": [2.6, 6, 0.3], + "to": [6.6, 10, 1.3], + "faces": { + "north": {"uv": [1, 1, 3, 3], "texture": "#0"}, + "east": {"uv": [1, 3, 3, 3.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1, 3.5, 3, 5.5], "texture": "#0"}, + "west": {"uv": [1, 3, 3, 3.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1, 3, 3, 3.5], "texture": "#0"}, + "down": {"uv": [1, 3, 3, 3.5], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_down.json b/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_down.json new file mode 100644 index 000000000..d7a1ea62a --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_down.json @@ -0,0 +1,360 @@ +{ + "parent": "block/block", + "textures": { + "texture": "overdrive_that_matters:block/energy_counter", + "particle": "overdrive_that_matters:block/energy_counter" + }, + "elements": [ + { + "name": "frame", + "from": [0, 0, 0], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "up": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"}, + "down": {"uv": [4, 0, 4.5, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [0, 2, 14], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "east": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "south": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "west": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 2, 0], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "east": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "south": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "west": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 14, 0], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "up": {"uv": [4, 0, 4.5, 8], "texture": "#texture"}, + "down": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 0, 0], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "up": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"}, + "down": {"uv": [4, 0, 4.5, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 2, 0], + "to": [16, 14, 2], + "faces": { + "north": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "east": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "south": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "west": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [14, 14, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "up": {"uv": [4, 0, 4.5, 8], "texture": "#texture"}, + "down": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 2, 14], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "east": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "south": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "west": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "screen", + "from": [1, 1, 1], + "to": [15, 15, 8], + "faces": { + "north": {"uv": [0, 8, 3.5, 15], "texture": "#texture"}, + "east": {"uv": [3.5, 8, 5.25, 15], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [5.25, 8, 8.75, 15], "texture": "#texture"}, + "west": {"uv": [3.5, 8, 5.25, 15], "texture": "#texture"}, + "up": {"uv": [8.75, 8, 10.5, 15], "rotation": 90, "texture": "#texture"}, + "down": {"uv": [8.75, 8, 10.5, 15], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "plates", + "from": [2, 2, 9], + "to": [14, 4, 15], + "faces": { + "north": {"uv": [4.5, 3, 7.5, 4], "rotation": 180, "texture": "#texture"}, + "east": {"uv": [5.25, 3, 7, 4], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [4.5, 3, 7.5, 4], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [5.25, 3, 6.75, 4], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [4.5, 4, 7.5, 7], "texture": "#texture"}, + "down": {"uv": [4.5, 0, 7.5, 2.5], "texture": "#texture"} + } + }, + { + "name": "plates", + "from": [2, 12, 9], + "to": [14, 14, 15], + "faces": { + "north": {"uv": [4.5, 3, 7.5, 4], "texture": "#texture"}, + "east": {"uv": [5.25, 3, 6.75, 4], "texture": "#texture"}, + "south": {"uv": [4.5, 3, 7.5, 4], "texture": "#texture"}, + "west": {"uv": [5.25, 3, 6.75, 4], "texture": "#texture"}, + "up": {"uv": [4.5, 0, 7.5, 2.5], "texture": "#texture"}, + "down": {"uv": [4.5, 4, 7.5, 7], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 4, 10], + "to": [7, 5, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 6, 10], + "to": [7, 7, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 8, 10], + "to": [7, 9, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 10, 10], + "to": [7, 11, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coilbase", + "from": [4, 4, 11], + "to": [6, 12, 13], + "faces": { + "north": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "east": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "south": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "west": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "connectors", + "from": [4, 13, 8], + "to": [6, 15, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [1, 6, 2.25, 7], "texture": "#texture"}, + "south": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#texture"}, + "west": {"uv": [2.25, 6, 1, 7], "texture": "#texture"}, + "up": {"uv": [0.5, 3.5, 1, 6], "texture": "#texture"}, + "down": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [10, 13, 8], + "to": [12, 15, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [1, 6, 2.25, 7], "texture": "#texture"}, + "south": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#texture"}, + "west": {"uv": [2.25, 6, 1, 7], "texture": "#texture"}, + "up": {"uv": [0.5, 3.5, 1, 6], "texture": "#texture"}, + "down": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [10, 1, 8], + "to": [12, 3, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [2.25, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [0.5, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [1, 6, 2.25, 7], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"}, + "down": {"uv": [0.5, 3.5, 1, 6], "rotation": 180, "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [4, 1, 8], + "to": [6, 3, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [2.25, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [0.5, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [1, 6, 2.25, 7], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"}, + "down": {"uv": [0.5, 3.5, 1, 6], "rotation": 180, "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 6, 10], + "to": [13, 7, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coilbase", + "from": [10, 4, 11], + "to": [12, 12, 13], + "faces": { + "north": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "east": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "south": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "west": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "coil", + "from": [9, 4, 10], + "to": [13, 5, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 8, 10], + "to": [13, 9, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 10, 10], + "to": [13, 11, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "upperplug", + "from": [5, 14, 5], + "to": [11, 16, 11], + "faces": { + "north": {"uv": [9, 3, 10.5, 4], "texture": "#texture"}, + "east": {"uv": [9, 3, 10.5, 4], "texture": "#texture"}, + "south": {"uv": [9, 3, 10.5, 4], "texture": "#texture"}, + "west": {"uv": [9, 3, 10.5, 4], "texture": "#texture"}, + "up": {"uv": [9, 0, 10.5, 3], "texture": "#texture"}, + "down": {"uv": [10.5, 0, 12, 3], "texture": "#texture"} + } + }, + { + "name": "bottomplug", + "from": [5, 0, 5], + "to": [11, 2, 11], + "faces": { + "north": {"uv": [7.5, 2.5, 9, 3.5], "rotation": 180, "texture": "#texture"}, + "east": {"uv": [7.5, 2.5, 9, 3.5], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [7.5, 2.5, 9, 3.5], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [7.5, 2.5, 9, 3.5], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [10.5, 0, 12, 3], "texture": "#texture"}, + "down": {"uv": [7.5, 0, 9, 3], "texture": "#texture"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_up.json b/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_up.json new file mode 100644 index 000000000..5cba26788 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/energy_counter_up.json @@ -0,0 +1,360 @@ +{ + "parent": "block/block", + "textures": { + "texture": "overdrive_that_matters:block/energy_counter", + "particle": "overdrive_that_matters:block/energy_counter" + }, + "elements": [ + { + "name": "frame", + "from": [0, 0, 0], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "up": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"}, + "down": {"uv": [4, 0, 4.5, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [0, 2, 14], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "east": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "south": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "west": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 2, 0], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "east": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "south": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "west": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 14, 0], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "up": {"uv": [4, 0, 4.5, 8], "texture": "#texture"}, + "down": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 0, 0], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 7, 4, 8], "texture": "#texture"}, + "up": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"}, + "down": {"uv": [4, 0, 4.5, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 2, 0], + "to": [16, 14, 2], + "faces": { + "north": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "east": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "south": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "west": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [14, 14, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "south": {"uv": [4, 0, 4.5, 1], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 1], "texture": "#texture"}, + "up": {"uv": [4, 0, 4.5, 8], "texture": "#texture"}, + "down": {"uv": [3.5, 0, 3.75, 8], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [14, 2, 14], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [3.5, 1, 3.75, 7], "texture": "#texture"}, + "east": {"uv": [0, 1, 0.5, 7], "texture": "#texture"}, + "south": {"uv": [4, 1, 4.5, 7], "texture": "#texture"}, + "west": {"uv": [3.5, 1, 4, 7], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "screen", + "from": [1, 1, 1], + "to": [15, 15, 8], + "faces": { + "north": {"uv": [0, 8, 3.5, 15], "texture": "#texture"}, + "east": {"uv": [3.5, 8, 5.25, 15], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [5.25, 8, 8.75, 15], "texture": "#texture"}, + "west": {"uv": [3.5, 8, 5.25, 15], "texture": "#texture"}, + "up": {"uv": [8.75, 8, 10.5, 15], "rotation": 90, "texture": "#texture"}, + "down": {"uv": [8.75, 8, 10.5, 15], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "plates", + "from": [2, 2, 9], + "to": [14, 4, 15], + "faces": { + "north": {"uv": [4.5, 3, 7.5, 4], "rotation": 180, "texture": "#texture"}, + "east": {"uv": [5.25, 3, 7, 4], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [4.5, 3, 7.5, 4], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [5.25, 3, 6.75, 4], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [4.5, 4, 7.5, 7], "texture": "#texture"}, + "down": {"uv": [4.5, 0, 7.5, 2.5], "texture": "#texture"} + } + }, + { + "name": "plates", + "from": [2, 12, 9], + "to": [14, 14, 15], + "faces": { + "north": {"uv": [4.5, 3, 7.5, 4], "texture": "#texture"}, + "east": {"uv": [5.25, 3, 6.75, 4], "texture": "#texture"}, + "south": {"uv": [4.5, 3, 7.5, 4], "texture": "#texture"}, + "west": {"uv": [5.25, 3, 6.75, 4], "texture": "#texture"}, + "up": {"uv": [4.5, 0, 7.5, 2.5], "texture": "#texture"}, + "down": {"uv": [4.5, 4, 7.5, 7], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 4, 10], + "to": [7, 5, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 6, 10], + "to": [7, 7, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 8, 10], + "to": [7, 9, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [3, 10, 10], + "to": [7, 11, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coilbase", + "from": [4, 4, 11], + "to": [6, 12, 13], + "faces": { + "north": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "east": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "south": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "west": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "connectors", + "from": [4, 13, 8], + "to": [6, 15, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [1, 6, 2.25, 7], "texture": "#texture"}, + "south": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#texture"}, + "west": {"uv": [2.25, 6, 1, 7], "texture": "#texture"}, + "up": {"uv": [0.5, 3.5, 1, 6], "texture": "#texture"}, + "down": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [10, 13, 8], + "to": [12, 15, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [1, 6, 2.25, 7], "texture": "#texture"}, + "south": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#texture"}, + "west": {"uv": [2.25, 6, 1, 7], "texture": "#texture"}, + "up": {"uv": [0.5, 3.5, 1, 6], "texture": "#texture"}, + "down": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [10, 1, 8], + "to": [12, 3, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [2.25, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [0.5, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [1, 6, 2.25, 7], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"}, + "down": {"uv": [0.5, 3.5, 1, 6], "rotation": 180, "texture": "#texture"} + } + }, + { + "name": "connectors", + "from": [4, 1, 8], + "to": [6, 3, 13], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "east": {"uv": [2.25, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [0.5, 6, 1, 7], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [1, 6, 2.25, 7], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [1, 6.5, 2.25, 7], "texture": "#texture"}, + "down": {"uv": [0.5, 3.5, 1, 6], "rotation": 180, "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 6, 10], + "to": [13, 7, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coilbase", + "from": [10, 4, 11], + "to": [12, 12, 13], + "faces": { + "north": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "east": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "south": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "west": {"uv": [1.5, 1, 2, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + } + }, + { + "name": "coil", + "from": [9, 4, 10], + "to": [13, 5, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 8, 10], + "to": [13, 9, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "coil", + "from": [9, 10, 10], + "to": [13, 11, 14], + "faces": { + "north": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "east": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "south": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "west": {"uv": [0.5, 3, 1.5, 3.5], "texture": "#texture"}, + "up": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"}, + "down": {"uv": [0.5, 1, 1.5, 3], "texture": "#texture"} + } + }, + { + "name": "upperplug", + "from": [5, 0, 5], + "to": [11, 2, 11], + "faces": { + "north": {"uv": [9, 3, 10.5, 4], "rotation": 180, "texture": "#texture"}, + "east": {"uv": [9, 3, 10.5, 4], "rotation": 180, "texture": "#texture"}, + "south": {"uv": [9, 3, 10.5, 4], "rotation": 180, "texture": "#texture"}, + "west": {"uv": [9, 3, 10.5, 4], "rotation": 180, "texture": "#texture"}, + "up": {"uv": [10.5, 0, 12, 3], "texture": "#texture"}, + "down": {"uv": [9, 0, 10.5, 3], "texture": "#texture"} + } + }, + { + "name": "bottomplug", + "from": [5, 14, 5], + "to": [11, 16, 11], + "faces": { + "north": {"uv": [7.5, 3, 9, 4], "texture": "#texture"}, + "east": {"uv": [7.5, 3, 9, 4], "texture": "#texture"}, + "south": {"uv": [7.5, 3, 9, 4], "texture": "#texture"}, + "west": {"uv": [7.5, 3, 9, 4], "texture": "#texture"}, + "up": {"uv": [7.5, 0, 9, 3], "texture": "#texture"}, + "down": {"uv": [10.5, 0, 12, 3], "texture": "#texture"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/item_monitor.json b/src/main/resources/assets/overdrive_that_matters/models/block/item_monitor.json new file mode 100644 index 000000000..de99d1df9 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/item_monitor.json @@ -0,0 +1,154 @@ +{ + "parent": "block/block", + "textures": { + "0": "overdrive_that_matters:block/item_monitor", + "particle": "overdrive_that_matters:block/item_monitor" + }, + "elements": [ + { + "name": "screen", + "from": [0, 0, 1], + "to": [16, 16, 7], + "faces": { + "north": {"uv": [0, 0, 8, 8], "texture": "#0"}, + "east": {"uv": [8, 0, 16, 3], "rotation": 90, "texture": "#0"}, + "south": {"uv": [0, 8, 8, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 16, 3], "rotation": 270, "texture": "#0"}, + "up": {"uv": [8, 0, 16, 3], "texture": "#0"}, + "down": {"uv": [8, 0, 16, 3], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 0, 7], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [8, 6, 12.5, 7], "texture": "#0"}, + "south": {"uv": [12.5, 6, 13.5, 7], "texture": "#0"}, + "west": {"uv": [8, 6, 12.5, 7], "rotation": 180, "texture": "#0"}, + "up": {"uv": [8, 7, 12.5, 8], "rotation": 270, "texture": "#0"}, + "down": {"uv": [8, 7, 12.5, 8], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [0, 14, 7], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [8, 7, 12.5, 8], "rotation": 180, "texture": "#0"}, + "south": {"uv": [12.5, 6, 13.5, 7], "texture": "#0"}, + "west": {"uv": [8, 7, 12.5, 8], "rotation": 180, "texture": "#0"}, + "up": {"uv": [8, 6, 12.5, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [8, 6, 12.5, 7], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [14, 14, 7], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [8, 6, 12.5, 7], "texture": "#0"}, + "south": {"uv": [12.5, 6, 13.5, 7], "texture": "#0"}, + "west": {"uv": [8, 6, 12.5, 7], "rotation": 180, "texture": "#0"}, + "up": {"uv": [8, 7, 12.5, 8], "rotation": 270, "texture": "#0"}, + "down": {"uv": [8, 7, 12.5, 8], "rotation": 270, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [14, 0, 7], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [8, 7, 12.5, 8], "texture": "#0"}, + "south": {"uv": [12.5, 6, 13.5, 7], "texture": "#0"}, + "west": {"uv": [8, 7, 12.5, 8], "rotation": 180, "texture": "#0"}, + "up": {"uv": [8, 6, 12.5, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [8, 6, 12.5, 7], "rotation": 90, "texture": "#0"} + } + }, + { + "name": "frame", + "from": [1, 2, 13], + "to": [2, 14, 15], + "faces": { + "north": {"uv": [8, 5.5, 14, 6], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8, 5, 14, 5.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0.5, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [1, 2, 8], + "to": [2, 14, 10], + "faces": { + "north": {"uv": [8, 5.5, 14, 6], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8, 5, 14, 5.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0.5, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [14, 2, 13], + "to": [15, 14, 15], + "faces": { + "north": {"uv": [8, 5.5, 14, 6], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8, 5, 14, 5.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0.5, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [14, 2, 8], + "to": [15, 14, 10], + "faces": { + "north": {"uv": [8, 5.5, 14, 6], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8, 5, 14, 5.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8, 5, 14, 6], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0.5, 1], "texture": "#missing"} + } + }, + { + "name": "can", + "from": [2, 1, 8], + "to": [14, 7, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 11]}, + "faces": { + "north": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "east": {"uv": [8, 11, 11, 14], "texture": "#0"}, + "south": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "west": {"uv": [8, 11, 11, 14], "texture": "#0"}, + "up": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "down": {"uv": [8, 8, 14, 11], "texture": "#0"} + } + }, + { + "name": "can", + "from": [2, 9, 8], + "to": [14, 15, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 11]}, + "faces": { + "north": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "east": {"uv": [8, 11, 11, 14], "texture": "#0"}, + "south": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "west": {"uv": [8, 11, 11, 14], "texture": "#0"}, + "up": {"uv": [8, 8, 14, 11], "texture": "#0"}, + "down": {"uv": [8, 8, 14, 11], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/drive_rack.json b/src/main/resources/assets/overdrive_that_matters/models/item/drive_rack.json new file mode 100644 index 000000000..d222c8a75 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/drive_rack.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/drive_rack" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/energy_counter.json b/src/main/resources/assets/overdrive_that_matters/models/item/energy_counter.json new file mode 100644 index 000000000..ac0b0bac0 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/energy_counter.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/energy_counter_down" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/item_monitor.json b/src/main/resources/assets/overdrive_that_matters/models/item/item_monitor.json new file mode 100644 index 000000000..b00909caa --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/item_monitor.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/item_monitor" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/drive_rack.png b/src/main/resources/assets/overdrive_that_matters/textures/block/drive_rack.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1705f7459714fd9f67268715a453dee28c12b3 GIT binary patch literal 381 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCik70(?STO-)U6oBGAX#1aw`{@-Bu|G;xA1H*p?1~oOcz`(%z`g)*3ZUGHh zAjMM>=PdAuEM{QfI}E~%$MaXD00mEZx;Tbd_|KilDb%bWz%t#L z^Vk3XY2^|;(+#IC^ODU-5ELxrRjPAPX?VTXRyQuDBf96=yUhE|pFd?S*pTb$!O5hq z9r_~d#7#3Do$wj0$}NvoR_g}X9ryp~zTu;H#JnVdXG)fAb%M`yE!Y%HR(z<4?7x2Y zyYA&lm&K9;Pox@c;+!JNNn{1`)dPG&Tun_)bDR1T5)#zZ)MD0K9NQ8uCMH&2U%z&)kKZ(dz`#JDLLjh? zzO@)g@s&PY#sACa~>Uc z70zd|V`Mqdf5ky)7lSinW5d)fLc9O%D`#k|wB!2mTt#s2A+H;A4|wgkU&_xK_Rsl% z7HjdI*Z;DaJf9zs|I1=+Q_=Z0HRN=e9V_SC(r5PkAEkr3vThvGJi@bX?TJGQ#!?^h z=icFA{IlVS%%oKXk|}P?Ec?uS60UN+zIT?h;gd!J}Y~ce9zE z&G2u$EL5W3FfWwRY!OHEnT!|WFZ3Sv&+-sH*X!_I;ppydC#_DIos@W*yH_%Gd7RpV is(yXpx3^2UbWWSQJhgO)KlEG?6a}8HelF{r5}E*4n$Ft* literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/item_monitor.png b/src/main/resources/assets/overdrive_that_matters/textures/block/item_monitor.png new file mode 100644 index 0000000000000000000000000000000000000000..501c1c90be0d68b846061f3abe0de61e41dfc3dc GIT binary patch literal 374 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCil&0(?ST6A}_kO-&053jPDZ1JB&1{`&g*|2G)K#KeF~YM#Ge0HnA|g8YI( z3c!G2(;1!fKvB*DkH}&M2EIce%qXhi)c_Pc?djqeV&T7a(nYCe1rE1`mZ!hhKm5on zrIj0QJ%8${z!OSJd?yN|<%N%|=Tx)vdXP}(-w|+H^Tk^oQ*o|YpIk5ay4>h`qxp+3 zm$B(m_J^Mb1$tsO9NiI=XxrYcH>JIuTX<%}LdJvlh2$9vMYFz&u}G**I5W{)@R((! z#G$gHdzB&+cnU((`wp*2X(|bsAkNkCQT^bj-5W$QKkvH5!m60eaffwB=YlTIPiM+@ zu)cibq#^W9jb~n$Ou?tqe}#^8w4CKV`CL&ojeTt`L()BA`DL#oOMu>D@O1TaS?83{ F1OPxXk(B@d literal 0 HcmV?d00001