diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/quantum_link.json b/src/main/resources/assets/appliedenergistics2/blockstates/quantum_link.json new file mode 100644 index 00000000..7a7e69e1 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/quantum_link.json @@ -0,0 +1,5 @@ +{ + "variants": { + "normal": { "model": "appliedenergistics2:qnb/link" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/quantum_ring.json b/src/main/resources/assets/appliedenergistics2/blockstates/quantum_ring.json new file mode 100644 index 00000000..5ad43b59 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/quantum_ring.json @@ -0,0 +1,5 @@ +{ + "variants": { + "normal": { "model": "appliedenergistics2:qnb/ring" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/qnb/link.json b/src/main/resources/assets/appliedenergistics2/models/block/qnb/link.json new file mode 100644 index 00000000..bb866ada --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/qnb/link.json @@ -0,0 +1,21 @@ +{ + "parent": "block/block", + "textures": { + "particle": "appliedenergistics2:blocks/quantum_link", + "sides": "appliedenergistics2:blocks/quantum_link" + }, + "elements": [ + { + "from": [ 2, 2, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "down": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "north": { "texture": "#sides" }, + "east": { "texture": "#sides" }, + "south": { "texture": "#sides" }, + "west": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/qnb/ring.json b/src/main/resources/assets/appliedenergistics2/models/block/qnb/ring.json new file mode 100644 index 00000000..16e51a0a --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/qnb/ring.json @@ -0,0 +1,21 @@ +{ + "parent": "block/block", + "textures": { + "particle": "appliedenergistics2:blocks/quantum_ring", + "sides": "appliedenergistics2:blocks/quantum_ring" + }, + "elements": [ + { + "from": [ 2, 2, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "down": { "texture": "#sides" }, + "up": { "texture": "#sides" }, + "north": { "texture": "#sides" }, + "east": { "texture": "#sides" }, + "south": { "texture": "#sides" }, + "west": { "texture": "#sides" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_link.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_link.png new file mode 100644 index 00000000..ed25eb27 Binary files /dev/null and b/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_link.png differ diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_ring.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_ring.png new file mode 100644 index 00000000..fd023976 Binary files /dev/null and b/src/main/resources/assets/appliedenergistics2/textures/blocks/quantum_ring.png differ