From f0ee7939a2ef5fd93b6bd24df3ff331e066f8339 Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Sat, 27 Aug 2016 12:23:08 +0200 Subject: [PATCH] Implemented item models for all cable bus parts (except facades). --- .../models/item/part/export_bus.json | 46 ++++++++++++++ .../models/item/part/formation_plane.json | 6 ++ .../part/identity_annihilation_plane.json | 6 ++ .../models/item/part/import_bus.json | 46 ++++++++++++++ .../models/item/part/interface.json | 46 ++++++++++++++ .../models/item/part/interface_terminal.json | 9 +++ .../models/item/part/inverted_toggle_bus.json | 6 ++ .../models/item/part/level_emitter.json | 20 ++++++ .../models/item/part/p2p_tunnel.json | 30 +++++++++ .../models/item/part/p2p_tunnel_items.json | 6 ++ .../models/item/part/p2p_tunnel_light.json | 6 ++ .../models/item/part/p2p_tunnel_liquids.json | 6 ++ .../models/item/part/p2p_tunnel_me.json | 6 ++ .../models/item/part/p2p_tunnel_redstone.json | 6 ++ .../models/item/part/pattern_terminal.json | 9 +++ .../models/item/part/quartz_fiber.json | 20 ++++++ .../models/item/part/storage_bus.json | 46 ++++++++++++++ .../models/item/part/storage_monitor.json | 9 +++ .../models/item/part/terminal.json | 9 +++ .../models/item/part/toggle_bus.json | 58 ++++++++++++++++++ .../textures/items/part/export_bus.png | Bin 0 -> 430 bytes .../textures/items/part/formation_plane.png | Bin 0 -> 397 bytes .../part/identity_annihilation_plane.png | Bin 0 -> 391 bytes .../textures/items/part/import_bus.png | Bin 0 -> 350 bytes .../textures/items/part/interface.png | Bin 0 -> 430 bytes .../items/part/interface_terminal.png | Bin 0 -> 244 bytes .../items/part/inverted_toggle_bus.png | Bin 0 -> 444 bytes .../textures/items/part/level_emitter_off.png | Bin 0 -> 236 bytes .../textures/items/part/level_emitter_on.png | Bin 0 -> 244 bytes .../textures/items/part/p2p_tunnel_back.png | Bin 0 -> 272 bytes .../textures/items/part/p2p_tunnel_back2.png | Bin 0 -> 284 bytes .../textures/items/part/p2p_tunnel_front.png | Bin 0 -> 274 bytes .../textures/items/part/pattern_terminal.png | Bin 0 -> 244 bytes .../textures/items/part/quartz_fiber.png | Bin 0 -> 468 bytes .../textures/items/part/storage_bus.png | Bin 0 -> 342 bytes .../textures/items/part/storage_monitor.png | Bin 0 -> 244 bytes .../textures/items/part/terminal.png | Bin 0 -> 244 bytes .../textures/items/part/toggle_bus.png | Bin 0 -> 457 bytes .../textures/parts/export_sides.png | Bin 0 -> 229 bytes .../textures/parts/import_sides.png | Bin 0 -> 229 bytes .../parts/interface_terminal_bright.png | Bin 0 -> 246 bytes .../parts/interface_terminal_dark.png | Bin 0 -> 232 bytes .../parts/interface_terminal_medium.png | Bin 0 -> 205 bytes .../textures/parts/monitor_sides_status.png | Bin 0 -> 261 bytes .../parts/monitor_sides_status_off.png | Bin 0 -> 134 bytes .../parts/monitor_sides_status_on.png | Bin 0 -> 272 bytes .../textures/parts/p2p_tunnel_sides.png | Bin 0 -> 229 bytes .../parts/pattern_terminal_bright.png | Bin 0 -> 250 bytes .../textures/parts/pattern_terminal_dark.png | Bin 0 -> 261 bytes .../parts/pattern_terminal_medium.png | Bin 0 -> 247 bytes .../textures/parts/storage_bus_back.png | Bin 0 -> 268 bytes .../textures/parts/storage_bus_sides.png | Bin 0 -> 229 bytes .../textures/parts/storage_monitor_bright.png | Bin 0 -> 238 bytes .../textures/parts/storage_monitor_dark.png | Bin 0 -> 218 bytes .../textures/parts/storage_monitor_medium.png | Bin 0 -> 205 bytes .../parts/storage_monitor_medium_locked.png | Bin 0 -> 216 bytes .../textures/parts/terminal_bright.png | Bin 0 -> 244 bytes .../textures/parts/terminal_dark.png | Bin 0 -> 238 bytes .../textures/parts/terminal_medium.png | Bin 0 -> 204 bytes 59 files changed, 396 insertions(+) create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/export_bus.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/formation_plane.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/identity_annihilation_plane.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/import_bus.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/interface.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/interface_terminal.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/inverted_toggle_bus.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/level_emitter.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_items.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_light.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_liquids.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_me.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_redstone.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/pattern_terminal.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/quartz_fiber.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/storage_bus.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/storage_monitor.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/terminal.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/part/toggle_bus.json create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/export_bus.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/formation_plane.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/identity_annihilation_plane.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/import_bus.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/interface.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/interface_terminal.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/inverted_toggle_bus.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_off.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_on.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back2.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_front.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/pattern_terminal.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/quartz_fiber.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/storage_bus.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/storage_monitor.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/terminal.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/items/part/toggle_bus.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/export_sides.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/import_sides.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_bright.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_dark.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_medium.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_off.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_on.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/p2p_tunnel_sides.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_bright.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_dark.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_medium.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_back.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_sides.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_bright.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_dark.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_medium.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_medium_locked.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/terminal_bright.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/terminal_dark.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/parts/terminal_medium.png diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/export_bus.json b/src/main/resources/assets/appliedenergistics2/models/item/part/export_bus.json new file mode 100644 index 000000000..219fe154b --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/export_bus.json @@ -0,0 +1,46 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "sides": "appliedenergistics2:parts/export_sides", + "back": "appliedenergistics2:parts/monitor_back", + "front": "appliedenergistics2:items/part/export_bus" + }, + "elements": [ + { + "from": [ 4, 4, 8 ], + "to": [ 12, 12, 10 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 5, 5, 7 ], + "to": [ 11, 11, 8 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 6, 6, 6 ], + "to": [ 10, 10, 7 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/formation_plane.json b/src/main/resources/assets/appliedenergistics2/models/item/part/formation_plane.json new file mode 100644 index 000000000..711a1d241 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/formation_plane.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/annihilation_plane", + "textures": { + "plane": "appliedenergistics2:items/part/formation_plane" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/identity_annihilation_plane.json b/src/main/resources/assets/appliedenergistics2/models/item/part/identity_annihilation_plane.json new file mode 100644 index 000000000..a94243d4e --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/identity_annihilation_plane.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/annihilation_plane", + "textures": { + "plane": "appliedenergistics2:items/part/identity_annihilation_plane" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/import_bus.json b/src/main/resources/assets/appliedenergistics2/models/item/part/import_bus.json new file mode 100644 index 000000000..11f886665 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/import_bus.json @@ -0,0 +1,46 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "sides": "appliedenergistics2:parts/import_sides", + "back": "appliedenergistics2:parts/monitor_back", + "front": "appliedenergistics2:items/part/import_bus" + }, + "elements": [ + { + "from": [ 3, 3, 8 ], + "to": [ 13, 13, 9 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 4, 4, 9 ], + "to": [ 12, 12, 10 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 5, 5, 10 ], + "to": [ 11, 11, 11 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/interface.json b/src/main/resources/assets/appliedenergistics2/models/item/part/interface.json new file mode 100644 index 000000000..145378f1d --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/interface.json @@ -0,0 +1,46 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "sides": "appliedenergistics2:parts/monitor_sides", + "back": "appliedenergistics2:parts/monitor_back", + "front": "appliedenergistics2:items/part/interface" + }, + "elements": [ + { + "from": [ 2, 2, 7 ], + "to": [ 14, 14, 9 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 5, 5, 10 ], + "to": [ 11, 11, 11 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 5, 5, 9 ], + "to": [ 11, 11, 10 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/interface_terminal.json b/src/main/resources/assets/appliedenergistics2/models/item/part/interface_terminal.json new file mode 100644 index 000000000..fb9b88c14 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/interface_terminal.json @@ -0,0 +1,9 @@ +{ + "parent": "appliedenergistics2:item/part/display", + "textures": { + "front": "appliedenergistics2:items/part/interface_terminal", + "front_bright": "appliedenergistics2:parts/interface_terminal_bright", + "front_medium": "appliedenergistics2:parts/interface_terminal_medium", + "front_dark": "appliedenergistics2:parts/interface_terminal_dark" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/inverted_toggle_bus.json b/src/main/resources/assets/appliedenergistics2/models/item/part/inverted_toggle_bus.json new file mode 100644 index 000000000..55600bd21 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/inverted_toggle_bus.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/toggle_bus", + "textures": { + "bus": "appliedenergistics2:items/part/inverted_toggle_bus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/level_emitter.json b/src/main/resources/assets/appliedenergistics2/models/item/part/level_emitter.json new file mode 100644 index 000000000..cc46a15af --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/level_emitter.json @@ -0,0 +1,20 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "emitter": "appliedenergistics2:items/part/level_emitter_off" + }, + "elements": [ + { + "from": [ 7, 6, 7 ], + "to": [ 9, 10, 9 ], + "faces": { + "north": { "texture": "#emitter", "uv": [7, 7, 9, 11] }, + "south": { "texture": "#emitter", "uv": [7, 7, 9, 11] }, + "east": { "texture": "#emitter", "uv": [7, 7, 9, 11] }, + "west": { "texture": "#emitter", "uv": [7, 7, 9, 11] }, + "up": { "texture": "#emitter", "uv": [7, 7, 9, 9] }, + "down": { "texture": "#emitter", "uv": [7, 9, 9, 11] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel.json new file mode 100644 index 000000000..88794ac4a --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel.json @@ -0,0 +1,30 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "sides": "appliedenergistics2:parts/p2p_tunnel_sides", + "back": "appliedenergistics2:items/part/p2p_tunnel_back", + "front": "appliedenergistics2:items/part/p2p_tunnel_front", + "type": "appliedenergistics2:blocks/quartz_block" + }, + "elements": [ + { + "from": [ 2, 2, 7 ], + "to": [ 14, 14, 9 ], + "faces": { + "north": { "texture": "#type" } + } + }, + { + "from": [ 2, 2, 7 ], + "to": [ 14, 14, 9 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_items.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_items.json new file mode 100644 index 000000000..615449421 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_items.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/p2p_tunnel", + "textures": { + "type": "blocks/hopper_outside" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_light.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_light.json new file mode 100644 index 000000000..f3dc997f6 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_light.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/p2p_tunnel", + "textures": { + "type": "blocks/quartz_block_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_liquids.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_liquids.json new file mode 100644 index 000000000..88479598c --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_liquids.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/p2p_tunnel", + "textures": { + "type": "blocks/lapis_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_me.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_me.json new file mode 100644 index 000000000..4a63aa342 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_me.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/p2p_tunnel", + "textures": { + "type": "appliedenergistics2:blocks/quartz_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_redstone.json b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_redstone.json new file mode 100644 index 000000000..4e3626e34 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/p2p_tunnel_redstone.json @@ -0,0 +1,6 @@ +{ + "parent": "appliedenergistics2:item/part/p2p_tunnel", + "textures": { + "type": "blocks/redstone_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/pattern_terminal.json b/src/main/resources/assets/appliedenergistics2/models/item/part/pattern_terminal.json new file mode 100644 index 000000000..037c43216 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/pattern_terminal.json @@ -0,0 +1,9 @@ +{ + "parent": "appliedenergistics2:item/part/display", + "textures": { + "front": "appliedenergistics2:items/part/pattern_terminal", + "front_bright": "appliedenergistics2:parts/pattern_terminal_bright", + "front_medium": "appliedenergistics2:parts/pattern_terminal_medium", + "front_dark": "appliedenergistics2:parts/pattern_terminal_dark" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/quartz_fiber.json b/src/main/resources/assets/appliedenergistics2/models/item/part/quartz_fiber.json new file mode 100644 index 000000000..d2fe26a9c --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/quartz_fiber.json @@ -0,0 +1,20 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "cable": "appliedenergistics2:items/part/quartz_fiber" + }, + "elements": [ + { + "from": [ 6, 6, 5 ], + "to": [ 10, 10, 11 ], + "faces": { + "north": { "texture": "#cable" }, + "south": { "texture": "#cable" }, + "east": { "texture": "#cable" }, + "west": { "texture": "#cable" }, + "up": { "texture": "#cable" }, + "down": { "texture": "#cable" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/storage_bus.json b/src/main/resources/assets/appliedenergistics2/models/item/part/storage_bus.json new file mode 100644 index 000000000..8dadb7bd4 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/storage_bus.json @@ -0,0 +1,46 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "sides": "appliedenergistics2:parts/storage_bus_sides", + "back": "appliedenergistics2:parts/storage_bus_back", + "front": "appliedenergistics2:items/part/storage_bus" + }, + "elements": [ + { + "from": [ 3, 3, 6 ], + "to": [ 13, 13, 7 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 2, 2, 7 ], + "to": [ 14, 14, 8 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + }, + { + "from": [ 5, 5, 8 ], + "to": [ 11, 11, 10 ], + "faces": { + "north": { "texture": "#front" }, + "south": { "texture": "#back" }, + "east": { "texture": "#sides" }, + "west": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "down": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/storage_monitor.json b/src/main/resources/assets/appliedenergistics2/models/item/part/storage_monitor.json new file mode 100644 index 000000000..446a44275 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/storage_monitor.json @@ -0,0 +1,9 @@ +{ + "parent": "appliedenergistics2:item/part/display", + "textures": { + "front": "appliedenergistics2:items/part/storage_monitor", + "front_bright": "appliedenergistics2:parts/storage_monitor_bright", + "front_medium": "appliedenergistics2:parts/storage_monitor_medium", + "front_dark": "appliedenergistics2:parts/storage_monitor_dark" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/terminal.json b/src/main/resources/assets/appliedenergistics2/models/item/part/terminal.json new file mode 100644 index 000000000..485da4a8d --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/terminal.json @@ -0,0 +1,9 @@ +{ + "parent": "appliedenergistics2:item/part/display", + "textures": { + "front": "appliedenergistics2:items/part/terminal", + "front_bright": "appliedenergistics2:parts/terminal_bright", + "front_medium": "appliedenergistics2:parts/terminal_medium", + "front_dark": "appliedenergistics2:parts/terminal_dark" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/part/toggle_bus.json b/src/main/resources/assets/appliedenergistics2/models/item/part/toggle_bus.json new file mode 100644 index 000000000..82661c880 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/part/toggle_bus.json @@ -0,0 +1,58 @@ +{ + "parent": "appliedenergistics2:item/part/part", + "textures": { + "bus": "appliedenergistics2:items/part/toggle_bus", + "status": "appliedenergistics2:parts/monitor_sides_status", + "lights": "appliedenergistics2:parts/monitor_sides_status_off" + }, + "elements": [ + { + "from": [ 6, 6, 10 ], + "to": [ 10, 10, 12 ], + "faces": { + "north": { "texture": "#bus" }, + "south": { "texture": "#bus" }, + "east": { "texture": "#bus" }, + "west": { "texture": "#bus" }, + "up": { "texture": "#bus" }, + "down": { "texture": "#bus" } + } + }, + { + "from": [ 6, 6, 7 ], + "to": [ 10, 10, 9 ], + "faces": { + "north": { "texture": "#bus" }, + "south": { "texture": "#bus" }, + "east": { "texture": "#bus" }, + "west": { "texture": "#bus" }, + "up": { "texture": "#bus" }, + "down": { "texture": "#bus" } + } + }, + { + "from": [ 6, 6, 9 ], + "to": [ 10, 10, 10 ], + "faces": { + "north": { "texture": "#status" }, + "south": { "texture": "#status" }, + "east": { "texture": "#status" }, + "west": { "texture": "#status" }, + "up": { "texture": "#status" }, + "down": { "texture": "#status" } + } + }, + { + "from": [ 6, 6, 9 ], + "to": [ 10, 10, 10 ], + "faces": { + "north": { "texture": "#lights" }, + "south": { "texture": "#lights" }, + "east": { "texture": "#lights" }, + "west": { "texture": "#lights" }, + "up": { "texture": "#lights" }, + "down": { "texture": "#lights" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/export_bus.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/export_bus.png new file mode 100644 index 0000000000000000000000000000000000000000..dccd04a41793bb1775960db6df4e14451bb1115b GIT binary patch literal 430 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdp969eo`c7&i8E|4C$JU|>*4 z_6YK2V5m}KU}$JzVEDzrz|io5fuYoZf#FpG1B2BJ1_tqhIlBUF7#J9|0(?STwbkT} z^;FFb)iqRP8yXr+_0?9aSYf8G>fqpzl9HmODr=#yYNV_7|Nnm*bIooB1_s6?Z+92o zZ(9<-GB7Z37I;J!GcfQi17XJYJ1g@U7#JcwT^vI=t|upmgaieJ1O=r96f!cqw@olH zC`b=D`GTRzOr1@Tzopr0H_ps Aw*UYD literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/formation_plane.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/formation_plane.png new file mode 100644 index 0000000000000000000000000000000000000000..35a66ca667bd3148389a75d9684b9d7cc841a3f9 GIT binary patch literal 397 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr z;4JWnEM{QfI|Ravq8eTe3=9lXC9V-A!TD(=<%vb93;~Imc_n&&t|1C##(JiDhKBB+ zoy-{+7&$#%978Ppb0^>KJ7mD)^7;S&&Tp(YLL2S2II5~&UO9J@hq6uI@#z-2+kfu7 zx=XHN|7$aIdHWwGe@o-ncK`TXcO+@LkBEld`Ss_PA75M8X>7r4%g7cw{agLs_%@fw zn!kT7Tl6A)1cY*FMeJgTe~DWM4fgLb61 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/identity_annihilation_plane.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/identity_annihilation_plane.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5fbee482d2fe37ee5f11275f3e0346079126ba GIT binary patch literal 391 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4kiW$h6xih%orFLSkfJR9T^xl_H+M9WMyDr z;4JWnEM{QfI|#yzJ0@noWnf^CC~=J_3C>R|DNig)Whh9@%q!8$OD$0_(KFC9?s+yn zfPsOL)zif>#KJ#z(nh{R20SjGT|4|l6%ID7kdT-l;43a6;M4J6zVe%Do`coO=Ra!7 z<}S&um*1r$Gwt!p{qM!ae^h=}klA(e$16=n71qyNJ_gq}&%ds}l39jH`$6-^Ld(A0 z{!?13?(9>YnknSm>m)Pr_Ve4fmN9u*o|NJ=w&r@bh$`7Afw62-lc`-aE4 ze@p*VbxbKTx~hBC?n9WA72`o0p-u(S&3Zwe*I7DlDlGZe(^$Iwd4cwY7jbH_)`=_E zB>IJ1SDWmgW7!iMZso0&;r;C6>tD)G<&;iOd)8;edsna{_T^rN)@zPIM+wz2cst!p6csux@uj`E|$;0z`)??>gTe~DWM4fH=mkb literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/import_bus.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/import_bus.png new file mode 100644 index 0000000000000000000000000000000000000000..f0efb7c6a829602e5aafce2b88ff169a42e24b9f GIT binary patch literal 350 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#P-h zx;Tbd_%EFt&DX3T;Ci#;W&e$1%Vu5s^6_L+1jp&b=~t}JO02!U>dRvl13vX~g;~X= z9wOw^tr7{T=3 z_Gz>NrvbZgf_)pO*!zUl51w;8KHR{W(z2iRjp&6l3z()Q^maDvJtUu$D#fr*d&Pad`TN#we97CqLR(B^`gIuw1_lOCS3j3^P6*4 z_6YK2V5m}KU}$JzVEDzrz|io5fuYoZf#FpG1B2BJ1_tqhIlBUF7#J9|0(?STwbkT} z^;FFb)iqRP8yXr+_0?9aSYf8G>fqpzl9HmODr=#yYNV_7|Nnm*bIooB1_s6?Z+92o zZ(9<-GB7Z37I;J!GcfQi17XJYJ1g@U7#JcwT^vI=t|upmgaieJ1O=r96f!cqw@olH zC`b=D`GTRzOr1@Tzopr0H_ps Aw*UYD literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/interface_terminal.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/interface_terminal.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c2a4c1edaa8f868bb93b8996ca72dde1ea2609 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#LhU zT^vI!{F5bY9K1un?cX?0OJcV4s^rwe8``?w)UPmOVeoXA$-)@6_3#0PfCR^xEC*MJ qXQVQ$ThhbZe8p)iuSG%v1B1S`(|pxhdlm);1_n=8KbLh*2~7aX^F)mR literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/inverted_toggle_bus.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/inverted_toggle_bus.png new file mode 100644 index 0000000000000000000000000000000000000000..15a033b307c1aac8d9082a1d3394c406d464746c GIT binary patch literal 444 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr z;4JWnEM{QfTL!|6?RQq@GcYhnmAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8O zb~0yRV6^abaSXBWkG&K*>5u~t^MyPAl_qRxQ_X3Az4E!{*Os3JH}kwV$w)k_%sc*g zqby&0nce)^b^GssuiAVwWbRHLd*9&bX-j$K^rw5K=v-y042L@jdfaa8B%C5tx0bn&pgKzx!OX z4NrPFHt4ly%(LQt^8E8p^$GEbyc~)PpPympU&me1(|t#*>6Y2T@@fB1KL5NjQruxm z@qWb((XCc|90g}x|95z7TQRXwX_8E$ai4d?)U8!H>sj|Gu6V3)e-%s1TQde`E{1Q{ vnGVia`I^PC;nlA+g(DmaPkQdxW!eXr3D>PKdohWDfq}u()z4*}Q$iB}KFzkG literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_off.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_off.png new file mode 100644 index 0000000000000000000000000000000000000000..cb07b34deaaaad8504948b0aa8555134d9aeb4ae GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#M6k zT^vI!{F5bE56iU}8vOarkfbragyGT}&rU||ur)vKU%23~kMZ{QeD(Vc|NsAAoG^)D jSK2RW2loR97#N-jTmC-mQ8$Z$fq}u()z4*}Q$iB}PF_eE literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_on.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/level_emitter_on.png new file mode 100644 index 0000000000000000000000000000000000000000..747af2a9bd8d3b43e6bb7f547b3b1bb9136b75b7 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#LhU zT^vI!{F5bEn`Qr`Cj8((6rh*Mu;k-^UWIq+mjyO3{$I}gvHn!d#(6Pk6*eRt?fTEl r%lkx{p~RL=jWghE!$BSi35L%Mt~U}Tgt8bI7#KWV{an^LB{Ts5D2zsz literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back.png new file mode 100644 index 0000000000000000000000000000000000000000..51430e6aa563b48ac41a5fd1a22852bf003d0213 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#I>f zT^vI!{I5>l$a%nkhh^`)ZI>)=1wG_G%=*WVOWdSexzP?^l#LhV*Z#lTFpVSCDV@`zv)Jl(L*JeCTUbmA i4Bq_sdp_hd!@5^!V}|YAt)Z(^3>)V@c{cCf zvpFWq*A{W>>J~2Ynyah&o;PZ33&(xkn#Ywp96i%+EGbs}a*Y2luh=#<*T$uM<}+sN zJ8j7h61Xpu7of_m*=7598>9d1Yn*1;OM{9s8Tr_OslT_LWz~5A*&w`{7^ljmO{0!=}XVQervz UZN@S`1_lNOPgg&ebxsLQ08$aTlmGw# literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/storage_bus.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/storage_bus.png new file mode 100644 index 0000000000000000000000000000000000000000..efa98de8840a1abcc777bc4c2dd737bbe00bb2d1 GIT binary patch literal 342 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Nm$ zx;Tbd_^+Mp$kl8h;94wLcsXO`ii{OyGY>yeu=LB5{Hv_ILiyU3ZuY`6HvcSEtWxS< zc2PSyT+U*(y?kVdMaBEc4H0{9H_171YB-(N%NqnbmNv*?TCUKhh(p@=y)`;=+6zDa-OG7 q=RkT4L&f<8_pYC|z5K$0aq1ztu#GDxTwq{eVDNPHb6Mw<&;$Tw4s?G2 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/storage_monitor.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/storage_monitor.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c2a4c1edaa8f868bb93b8996ca72dde1ea2609 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#LhU zT^vI!{F5bY9K1un?cX?0OJcV4s^rwe8``?w)UPmOVeoXA$-)@6_3#0PfCR^xEC*MJ qXQVQ$ThhbZe8p)iuSG%v1B1S`(|pxhdlm);1_n=8KbLh*2~7aX^F)mR literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/terminal.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/terminal.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c2a4c1edaa8f868bb93b8996ca72dde1ea2609 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#LhU zT^vI!{F5bY9K1un?cX?0OJcV4s^rwe8``?w)UPmOVeoXA$-)@6_3#0PfCR^xEC*MJ qXQVQ$ThhbZe8p)iuSG%v1B1S`(|pxhdlm);1_n=8KbLh*2~7aX^F)mR literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/toggle_bus.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/toggle_bus.png new file mode 100644 index 0000000000000000000000000000000000000000..2615c94f006c3a2bb337786fdc71761e20c14f55 GIT binary patch literal 457 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s77>k44ofy`glX=O&z`&C3 z=)hob9)j&V9a9>``>&%ns2L zss$D@vlv7i%$D>wsJ@yb{V`GI_^k|uVAg{CIUWC*>=vXpJFcnjVc4Miy7&>_Gj9dw z#10mL*@voG&V2h_JJ)Q(lOB!@dhHqWthk@t&HJuCAwH3pLvi8rGwl59xGQ?P?}#nv6e(^dhD;lI Z1@TWwLi?L%?gv@J;OXk;vd$@?2>_~zKdt}( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/import_sides.png b/src/main/resources/assets/appliedenergistics2/textures/parts/import_sides.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1f6f9f359d80e876a2f8d33e9d2fca3d980139 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#K`F zT^vI!{O_JIWMnYlVcOt%m_e`NW59DC7XR(a`RC3oxyZila)f|~*W>nv6e(^dhD;lI Z1@TWwLi?L%?gv@J;OXk;vd$@?2>_~zKdt}( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_bright.png b/src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_bright.png new file mode 100644 index 0000000000000000000000000000000000000000..20181d2e586358167e269998e599aabf0d9559b5 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Q3< zT^vI!{O_JIbP0l+XkKNl8WU literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_medium.png b/src/main/resources/assets/appliedenergistics2/textures/parts/interface_terminal_medium.png new file mode 100644 index 0000000000000000000000000000000000000000..8affc2651889fe6e1c426dad9276ee29dd4fd495 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#L(d zT^vI!{F5cp9@q;w%(P%M%yK)(!LDqiXlTH|kXpe1QQ@(?1p@;EgQu&X%Q~loCIFG` BGHd_< literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status.png b/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status.png new file mode 100644 index 0000000000000000000000000000000000000000..142f38511c2f61f1c9ec3acfbebd6bf52ec420f1 GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Ko5 zT^vI!{I8zbD0skt!#U6`nQ_~KRCcrQH%@akgv|Ti$0Zlu-z7cyYfiBAT=rF5!faRE z#954lLG*J*xms2G`x`nAw76$2=4N`=$H|{(JaZG%Q-e|yQz{EjrrIztFlczXIEGZ*N=i7u|IgXb@4yiUMG4aeE;a+9F11;^ k8xlR literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_on.png b/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_on.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ac516475da2c9d48542b31c16f9ebf46e89111 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#I>f zT^vI!{MYsvaxob49RBs+|9MpNf#w&Ngf*I3BaMrN*SN}hZxAchIT&?iBTIJRaUq0& n&GXK9xjSfr$f~x@{mOXL&f-(cg^*4L1_lOCS3j3^P6nv6e(^dhD;lI Z1@TWwLi?L%?gv@J;OXk;vd$@?2>_~zKdt}( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_bright.png b/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_bright.png new file mode 100644 index 0000000000000000000000000000000000000000..8545578a908973aba3fe363c72fc57ebee424667 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#O@f zT^vI!{NJ86ajD2zL#LU3Gg^i1i7gs%Ia!+^r ydW^NtudMf7&%9IpQg@@)-fykH%3tbEls9o`wseG6A+pK1O7An5uG z?*9jut}_(>=d3kzxo_Z4_w&m`jQnR$@_LrJIrGD^^yd+;*(UVdSFF$zd(XhYz~JfX K=d#Wzp$P!%+g7ju literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_medium.png b/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_medium.png new file mode 100644 index 0000000000000000000000000000000000000000..a4616154e20f1523d11a4ccafbf5fb808aa2008e GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Q3= zT^vI!{Fk0|+gRh4rU~n7)VL* u_OQ7zFP^w?y6)F=wf1fXQWE#C-nzlfsP*QK+&TsZ1_n=8KbLh*2~7YM#Yxcs literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_back.png b/src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_back.png new file mode 100644 index 0000000000000000000000000000000000000000..f225dcf4be7ed02289b753871b62cb4ff19f5052 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Lza zT^vI!{F5bY9K1un?cX?0OJcV4s^rwe8``?w)UPmOVenkCWQjnlW7fi30t{&md3kzq zK2sQZd3hrYb9ot9uN~NxP*BMzua?1JD6yJx$0Q>&o*?e4W)B(~85x4FYS~FHYbs@6 PU|{fc^>bP0l+XkKnC47R literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_sides.png b/src/main/resources/assets/appliedenergistics2/textures/parts/storage_bus_sides.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1f6f9f359d80e876a2f8d33e9d2fca3d980139 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#K`F zT^vI!{O_JIWMnYlVcOt%m_e`NW59DC7XR(a`RC3oxyZila)f|~*W>nv6e(^dhD;lI Z1@TWwLi?L%?gv@J;OXk;vd$@?2>_~zKdt}( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_bright.png b/src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_bright.png new file mode 100644 index 0000000000000000000000000000000000000000..69144831ac84f9ed6c53ff60c74e5e42163707e5 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Qq4 zT^vI!{O_LH$auhj=di*5|0TNi5FC!rk!oYH5g(NF8*9xKDA0h%*Y(yBDnHi2X#y!ub2QV-&XnDFg zhFJI~OQb!p7f`r-f?>YQR|dmnm#?uNX5gt&IOKCYjoWUgBCmu5gND8S#ox8oybKHs N44$rjF6*2UngFrJI!FKj literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_bright.png b/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_bright.png new file mode 100644 index 0000000000000000000000000000000000000000..64a4f970c9a2f355ee8bbad0073ef3da9ed67a4c GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#LhU zT^vI!{O_Jt6k;&oVLJHd|K(icW``#o@3oEu&bR7Ud)MK&&s{cWN}AlIz86obuN-vC je5UvoA^6YjD(gzi{f^&_4ozlYU|{fc^>bP0l+XkK_7F`1 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_dark.png b/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..bd779cbbd8f4cb7888b3ded5303f7b223db242e9 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#Qq4 zT^vI!{F5cp9@vWrBsFKOVOYb(!LiZNB$wfal){1I$G8`~I$_?B#IUuaM%>}*#C(RM k3|SW$b|o+{Ff%ihnywH0-@ek8fq{X+)78&qol`;+0L}428UO$Q literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_medium.png b/src/main/resources/assets/appliedenergistics2/textures/parts/terminal_medium.png new file mode 100644 index 0000000000000000000000000000000000000000..aa70c6203c04ed413c79be063ac2f81dc1c08242 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr zP)PO&@?~JCQe$9fXklRZ#lXPO@PdJ%)PRBERRRNp)eHs(@q#(K0&N%=7&r?&B8wRq z_?Ce%WBZ+z`3wvUQYEetCBgY=CFO}lsSE*$nRz98ey$-3WyX4@dWMGXpPkGZ7#L(c zT^vI!{F5bEnHl~uGfwf8lQ2z)kTAHxz|720FiZa7-mh;17#J8BJYD@<);T3K0RUL! BGd2JK literal 0 HcmV?d00001