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 00000000..219fe154 --- /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 00000000..711a1d24 --- /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 00000000..a94243d4 --- /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 00000000..11f88666 --- /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 00000000..145378f1 --- /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 00000000..fb9b88c1 --- /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 00000000..55600bd2 --- /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 00000000..cc46a15a --- /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 00000000..88794ac4 --- /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 00000000..61544942 --- /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 00000000..f3dc997f --- /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 00000000..88479598 --- /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 00000000..4a63aa34 --- /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 00000000..4e3626e3 --- /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 00000000..037c4321 --- /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 00000000..d2fe26a9 --- /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 00000000..8dadb7bd --- /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 00000000..446a4427 --- /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 00000000..485da4a8 --- /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 00000000..82661c88 --- /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!ia0vp^0wB!73?$#)eFPF8m<8IHaVcXsOCt=&Ks(s{Q}}-^N_C8>ovh$=lt9_uH1luRsoG zfk$L90|VbO5N2$@voaqj80qQa7{YNqIYA^OCI<~L#%-IoP=pshC279WS7Lr z33D(+>KR^sWSjO1Xo+fxYeY#(Vo9o1a#1RfVlXl=G}bjR)-^N=F|e>QHnuXf&^0i% zGBCL2dU8LChTQy=%(P0l1_P52BV#KAATrT4Fav7%dX;-UP=gf6hT#0PlJdl&REB`W j%)AmkKi3e2GGjecJwpS7FGUN1su(<7{an^LB{Ts5s1$j( 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 zcmV;80doF{P)N2bPDNB8 zb~7$DE-^7j^FlWO009X}L_t(IPi>Rij>0euMDzduiS`B9Re?UVK_w^CshzS&BRr1B zmpCoA`MK4)9(cd&Ha8zX_%!`>U#*My^M1r)mrN8WKF_btr^l^vi8D9@Jpl$)m-c_X zUxq|keEt17gf3W25EE>UK-Jgn^3WK-F|t>WKouQiE<4%N2bZe?^J zG%heMGmPe!Pyhe{1xZ9fR5(vvlCciLFbqWVMTkxnAi;vD7#NTcO&1stOo;y<>^B^3$$@uCi0VDp$phZ z&ilTU0pj9phcODbqf=JD(LBjp|<%a-PjJPq9uh+XNu0EN~;QpIpRJ`al*TyKXy l>QK73H$d3D@G|7k)jN9!7H!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5TIcEF7-HeSbaFIb zvx0!@&5oD-H;yfvb?wW?lSvUArxT}Nu|6xY_WG(Xk5vr#)XNoS6_Yc@O1TaS?83{1OW1pdkFvl literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/interface.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/interface.png new file mode 100644 index 0000000000000000000000000000000000000000..dccd04a41793bb1775960db6df4e14451bb1115b GIT binary patch literal 430 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF8m<8IHaVcXsOCt=&Ks(s{Q}}-^N_C8>ovh$=lt9_uH1luRsoG zfk$L90|VbO5N2$@voaqj80qQa7{YNqIYA^OCI<~L#%-IoP=pshC279WS7Lr z33D(+>KR^sWSjO1Xo+fxYeY#(Vo9o1a#1RfVlXl=G}bjR)-^N=F|e>QHnuXf&^0i% zGBCL2dU8LChTQy=%(P0l1_P52BV#KAATrT4Fav7%dX;-UP=gf6hT#0PlJdl&REB`W j%)AmkKi3e2GGjecJwpS7FGUN1su(<7{an^LB{Ts5s1$j( 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*P}mauW~ z4*j-&<2)^i+0v_$Qx9)w>v~ha!i(pe2|&l_TRY8Ht+i(Xn#bVj>gTe~DWM4f%JW2x 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 zcmV;t0YmN2bPDNB8 zb~7$DE-^7j^FlWO00B5jL_t(IPhHYklEOd?1JK<6B9O3#C2WW5spl#6g!ypUZcDNp z80L9y$K$ab4u^I=pPPQa-}id6*;Jjm3_nd%Tb88_9xsv4{w# z)2WN=VN1X!%7$vB?RHxN=0c66j)N}ne!q*j+wFP|NsgEqw*t8Y?)Q5WfC9*d^bxQ` zopU2Tyk4)`XdqJsaBrN5{{lXsWrIPidyD|EE$egQ4(3ZBLt%&n5Szk#1k4_fN1ZmX z;N_Sr!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5vhj3r46*P}mS8+uQTi?>GGa|9^49B!*pSzoZ@94;)}% YcqVN5`>;pdETB0Ip00i_>zopr08U;=82|tP 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*P}mSAm` z{gayTga1%~UM9nmkNFVdQ&MBb@04R(`mjD0& 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5O7L`X46*RPI(Z}K z0RtYEz4NwRvbYuWkoz#}A3rW}&q9GC_eB}|SH1FdDM`z_*mjPc$;v{*vTgP2-!JvH zF@CaopyKpgY(_v@%2r$H3mpM!CFlMhxmqB7;o!lB$KU%`{$g6cIkTTp;@3H#T@0SC KelF{r5}E+@Mp`=n literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back2.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_back2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e146a87d058dae8ee54ec322a74a243ebe929fa GIT binary patch literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5%JFn@46*RPI@yt{ z!GMS5^WJ}2=TGXdt`;~pMOV&dg@J;h@fP;QtDYT|NKShu_V&V02M1<$Rrejc?wwb6 znSc2v+lj{wlR4%_JA6?#UX)+^|8B!Hj#Q^~PK(ZBtJ@8Ich+xVF)1*3^W*RNkk1SU XC+F6u6_(Ed+RNbS>gTe~DWM4fK^R{2 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_front.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/p2p_tunnel_front.png new file mode 100644 index 0000000000000000000000000000000000000000..08c32b198e4e01289a47dd1d49223ff96b63d13c GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5O7e7Z46*P}Ucj}Z z@bR(#Z*On^Z*Cs)|Neyw4dTsL8m=^baoB2XaKL1J#KtBK9%GhOa~m0#-MoBxGK}-Y zWCmk^;v9xF1`qy_j4KQR5^QV%b0%o`of1h``^3o1%<%NKv&ez@8H<3nF?hQAxvX!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*P}mauW~ z4*j-&<2)^i+0v_$Qx9)w>v~ha!i(pe2|&l_TRY8Ht+i(Xn#bVj>gTe~DWM4f%JW2x literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/items/part/quartz_fiber.png b/src/main/resources/assets/appliedenergistics2/textures/items/part/quartz_fiber.png new file mode 100644 index 0000000000000000000000000000000000000000..f67d555e3d4fa5874629225ff5d854c6e5976e47 GIT binary patch literal 468 zcmV;_0W1EAP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00009 za7bBm000iA000iA0f*eFZvX%Q8gxZibW?9;ba!ELWdKlNX>N2bPDNB8b~7$DE-^7j z^FlWO00AUPL_t(IPn}a;Z-Ous<^TVm?P1xL4IXp@1OX8dDxU&Yw#B%ZJ)N~xt7I{O zo#f`8-sYS%r>$}eEiG}PN}Vkw?+se5gb3d)eB*hzK}lxVq;nzk#t*{{7Pclufu#;N zn42#`v};lj-yCjGB?~EvJ>#|kPn*^WHfw?^36O?UtmY<`&RFy$ut8h{8JiPNho#=b z9X+C88Ht-}i%7cfX)d{|A2Zm~l$pK%Il!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5TIT8E7-HeScCsT^ zvw?tXv0&lljFl@gR+P;={6xXhFHiEXvhoV$Yg@Y63(wg6vskf8sejo;?c{Jdi`Dk> zks%fp?S3j3^P6!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*P}mauW~ z4*j-&<2)^i+0v_$Qx9)w>v~ha!i(pe2|&l_TRY8Ht+i(Xn#bVj>gTe~DWM4f%JW2x 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*P}mauW~ z4*j-&<2)^i+0v_$Qx9)w>v~ha!i(pe2|&l_TRY8Ht+i(Xn#bVj>gTe~DWM4f%JW2x 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 zcmV;)0XF`LP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGirT_pArU8fCsc!%P02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qRNAp5A0003vNkl8a-_^@RCw*=|d+92hQ_OS|9i?eTcD>-F07&*!t(pU@)B>-8!k!tHkJ;(FK;u!*vv8tMIhmw>rYBdOz{3v9RBBF^*Nb4YT;%(xZE zC2%+#ngA3)Hl&Y$CF-0T@nIat+GrqC1#oYii2njUpk;$Wtb2?Aur2Fz;tu9ZAVXn@ z1Q46Tdj!n(`+c1@u;h#gur7yao;nNU-EQ|MkY8a92qB^8%m)vy3wVr++!lh`HlcTx z|H)>vsaY35lyko!uv>*X4hV3~MgNFMwy2STB9a_oGmcAum9=_ouLZmzsN*2tssx1X zHUI+(0QT1c!I-J*1VMo6`eq=+2q5H)-+pR8sSfABe>UI$00000NkvXXu0mjf^P9ls literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/export_sides.png b/src/main/resources/assets/appliedenergistics2/textures/parts/export_sides.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1f6f9f359d80e876a2f8d33e9d2fca3d980139 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5GWB$E46*RPd&ZEF z!GMQpgXduey^4`?kvw0v=wE+Z$4(xS1F-ZR8ciKP3t6Z=Sgy PWDSF-tDnm{r-UW|s);|Y 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5GWB$E46*RPd&ZEF z!GMQpgXduey^4`?kvw0v=wE+Z$4(xS1F-ZR8ciKP3t6Z=Sgy PWDSF-tDnm{r-UW|s);|Y 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`SX?46*RPd&ZED z!GOal@O}MDGpRN;v4U^CpOSS-cv9+hD&DWr%&7qqmVOHFpKyFT$nwdrFG1c1#MySz e!Eu}W5mq!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5vhZ|q46*Qkd)ASQ zL4k+);Gh4Oxl$*Jt=)dd>i7nM-rH3ts$J|$T<mdKI;Vst07*$j@Bjb+ 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5lJ#_P46*P}mPmVG qFW@lKg3&O`?H~ucvXP=8(5BP^{*MZe!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R53iWhx46*RPdS;{G z0Rs-_K(}PZZ3|M_&BEU}&D9Vx?|UDYTzG$%^yIHO!P0ZtS8)lmU2zj0KWubJpVf>@xgS)7+U46*K1mEnx6;^>bP0l+XkKpixU1 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_off.png b/src/main/resources/assets/appliedenergistics2/textures/parts/monitor_sides_status_off.png new file mode 100644 index 0000000000000000000000000000000000000000..49af0cfebaeac218ada0eaa0456dff9b64eb88d3 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5XG(24#Ln>}1B^==Y=WOVA;E02wglPj8n}JZ5+N|9Ti6)A? e?92>IJPb1%S;e!Z-Lipt7(8A5T-G@yGywqC7$e01 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5O7L`X46*QE+hfSZ zV90a$*MI-#QOyUMUtAK_Xl9KxE*4(nD(k&LtW@V<)Rm1a*@4G}5CS&OJLBc!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5GWB$E46*RPd&ZEF z!GMQpgXduey^4`?kvw0v=wE+Z$4(xS1F-ZR8ciKP3t6Z=Sgy PWDSF-tDnm{r-UW|s);|Y 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5^73?X46*Qkd)APP zL4n8l;=TWuyqvf*r{?7CTPk5EaX&Nm#kmtR1NRm-E;e3V^_a;$-RN%MrGjJo6J7_r6#MG?l^A)z4*}Q$iB}rl?NA literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_dark.png b/src/main/resources/assets/appliedenergistics2/textures/parts/pattern_terminal_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..cd0841936e34e97be31b1a760c17ef1bf5c106fb GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R53iWhx46*RPd&-gP zfCG=y#hw3`M)MT@m~gAiHh=Phbod6jA6&Z5Q2d{> z*39L;fj`~PFAp*DpFPRzS?1=<56jY@N4#d6&~sn0LQm{H&;kZeS3j3^P6)Tea 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`$v`46*QEdeV`L zL4oIp!~g#;z4Vp5`IhOOS@?3*Dt!sw9=Eo*ZC9+n|CKnHkzisV1r%X(V_rOQ;dI@v h=W6ZUfFk#=-nzlfsP*QK+&Z9<44$rjF6*2UngA8WNzniR 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5it%)D46*P}mauW~ z4*j-&<2)^i+0v_$Qx9)w>v~ha!iBad>VdUlIjWEpR zWnjH_U{^vxC8NAr27{r*YQ`OtjLdj~xUZT$XlP_)2)?RiC%LSt6lf2Fr>mdKI;Vst E0GQ@XPXGV_ 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5GWB$E46*RPd&ZEF z!GMQpgXduey^4`?kvw0v=wE+Z$4(xS1F-ZR8ciKP3t6Z=Sgy PWDSF-tDnm{r-UW|s);|Y 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5vh#Ft46*RPduk)& z0Rx`H2LJz;>`n-ld3(_7+~R$$HP2&jp0k;1`w|8HJ+pb!-OA=a(`L#iorv48K&N>H P&?E*=S3j3^P6!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5((-h146*P}mS}rm zFW@j!f?>Xlgg^)b%aIk5tjt_1gnEC72wbrdVPs}zICeq);ROegg+N^lp00i_>zopr E09_(Cd;kCd literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_medium.png b/src/main/resources/assets/appliedenergistics2/textures/parts/storage_monitor_medium.png new file mode 100644 index 0000000000000000000000000000000000000000..8affc2651889fe6e1c426dad9276ee29dd4fd495 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5lJ#_P46*P}mPmVG qFW@lKg3&O`?H~ucvXP=8(5BP^{*MZe!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)fel(rIsj|=o#o4_dJ^(092#p>Eak-;h!v#_P}01 z;qnQF`7&P_43}NL#(J26r$*tB&+#;FyPb->5)up=_WBop*IM%ebuoCl`njxgN@xNA DvBo+` 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5a`AL=46*RPdsmdKI;Vst0QL|~0ssI2 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5vh#Ft46*P}mPmVG zFCviCoUw*s4HpN;Mn{ueh8t1}2aX@(UhwLKc|#Jz){Yu+hpQ9w8ICe!U1Zn=bOSRp ZL#gTd!2j(lZGk2+c)I$ztaD0e0szhNLK*-7 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!ia0vp^0wB!61|;P_|4#%`Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8X6a5n0T@z_$#98Qbry z%m)femAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8Ob}|R5lJRtL46*P}mSAOO q_{YpR#ZykgG$BI5;06OTGef~F`G