From c0d7fcc7d65f25cb943e3cb67264b3ca41e33bfa Mon Sep 17 00:00:00 2001 From: 17146 <1714673995@qq.com> Date: Thu, 22 May 2025 02:15:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E5=8C=96svd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/superbwarfare/models/item/svd.json | 28 ++ .../superbwarfare/models/item/svd_base.json | 0 .../superbwarfare/models/item/svd_icon.json | 6 + .../datagen/ModItemModelProvider.java | 1 + .../assets/superbwarfare/models/item/sks.json | 27 -- .../superbwarfare/models/item/sks_base.json | 6 - .../superbwarfare/models/item/sks_icon.json | 6 - .../assets/superbwarfare/models/item/svd.json | 27 -- .../superbwarfare/models/item/svd3d.json | 404 ------------------ .../superbwarfare/models/item/svd_icon.json | 6 - .../assets/superbwarfare/models/lod/svd.json | 404 ++++++++++++++++++ .../superbwarfare/textures/item/lod/svd.png | Bin 0 -> 356 bytes .../item/{svdicon.png => svd_icon.png} | Bin 13 files changed, 439 insertions(+), 476 deletions(-) create mode 100644 src/generated/resources/assets/superbwarfare/models/item/svd.json rename src/{main => generated}/resources/assets/superbwarfare/models/item/svd_base.json (100%) create mode 100644 src/generated/resources/assets/superbwarfare/models/item/svd_icon.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/sks.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/sks_base.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/sks_icon.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/svd.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/svd3d.json delete mode 100644 src/main/resources/assets/superbwarfare/models/item/svd_icon.json create mode 100644 src/main/resources/assets/superbwarfare/models/lod/svd.json create mode 100644 src/main/resources/assets/superbwarfare/textures/item/lod/svd.png rename src/main/resources/assets/superbwarfare/textures/item/{svdicon.png => svd_icon.png} (100%) diff --git a/src/generated/resources/assets/superbwarfare/models/item/svd.json b/src/generated/resources/assets/superbwarfare/models/item/svd.json new file mode 100644 index 000000000..f9b4d4bd0 --- /dev/null +++ b/src/generated/resources/assets/superbwarfare/models/item/svd.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:item/generated", + "base": { + "parent": "superbwarfare:item/svd_base" + }, + "gui_light": "front", + "loader": "forge:separate_transforms", + "perspectives": { + "fixed": { + "parent": "superbwarfare:lod/svd" + }, + "ground": { + "parent": "superbwarfare:lod/svd" + }, + "gui": { + "parent": "superbwarfare:item/svd_icon" + }, + "head": { + "parent": "superbwarfare:lod/svd" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:lod/svd" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:lod/svd" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd_base.json b/src/generated/resources/assets/superbwarfare/models/item/svd_base.json similarity index 100% rename from src/main/resources/assets/superbwarfare/models/item/svd_base.json rename to src/generated/resources/assets/superbwarfare/models/item/svd_base.json diff --git a/src/generated/resources/assets/superbwarfare/models/item/svd_icon.json b/src/generated/resources/assets/superbwarfare/models/item/svd_icon.json new file mode 100644 index 000000000..1dced265e --- /dev/null +++ b/src/generated/resources/assets/superbwarfare/models/item/svd_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "superbwarfare:item/svd_icon" + } +} \ No newline at end of file diff --git a/src/main/java/com/atsuishio/superbwarfare/datagen/ModItemModelProvider.java b/src/main/java/com/atsuishio/superbwarfare/datagen/ModItemModelProvider.java index 931f6c2bd..edb81059c 100644 --- a/src/main/java/com/atsuishio/superbwarfare/datagen/ModItemModelProvider.java +++ b/src/main/java/com/atsuishio/superbwarfare/datagen/ModItemModelProvider.java @@ -59,6 +59,7 @@ public class ModItemModelProvider extends ItemModelProvider { gunItem(ModItems.SECONDARY_CATACLYSM); gunItem(ModItems.SENTINEL); gunItem(ModItems.SKS); + gunItem(ModItems.SVD); simpleItem(ModItems.EMPTY_PERK, "perk/"); diff --git a/src/main/resources/assets/superbwarfare/models/item/sks.json b/src/main/resources/assets/superbwarfare/models/item/sks.json deleted file mode 100644 index e744cb0dd..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/sks.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "loader": "neoforge:separate_transforms", - "gui_light": "front", - "base": { - "parent": "superbwarfare:item/sks_base" - }, - "perspectives": { - "gui": { - "parent": "superbwarfare:item/sks_icon" - }, - "thirdperson_righthand": { - "parent": "superbwarfare:item/sks3d" - }, - "thirdperson_lefthand": { - "parent": "superbwarfare:item/sks3d" - }, - "ground": { - "parent": "superbwarfare:item/sks3d" - }, - "fixed": { - "parent": "superbwarfare:item/sks3d" - }, - "head": { - "parent": "superbwarfare:item/sks3d" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks_base.json b/src/main/resources/assets/superbwarfare/models/item/sks_base.json deleted file mode 100644 index e46fcb904..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/sks_base.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "superbwarfare:displaysettings/sks.item", - "textures": { - "layer0": "superbwarfare:item/sks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks_icon.json b/src/main/resources/assets/superbwarfare/models/item/sks_icon.json deleted file mode 100644 index 883d22611..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/sks_icon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "superbwarfare:item/sks_icon" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd.json b/src/main/resources/assets/superbwarfare/models/item/svd.json deleted file mode 100644 index 49458e317..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/svd.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "loader": "neoforge:separate_transforms", - "gui_light": "front", - "base": { - "parent": "superbwarfare:item/svd_base" - }, - "perspectives": { - "gui": { - "parent": "superbwarfare:item/svd_icon" - }, - "thirdperson_righthand": { - "parent": "superbwarfare:item/svd3d" - }, - "thirdperson_lefthand": { - "parent": "superbwarfare:item/svd3d" - }, - "ground": { - "parent": "superbwarfare:item/svd3d" - }, - "fixed": { - "parent": "superbwarfare:item/svd3d" - }, - "head": { - "parent": "superbwarfare:item/svd3d" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd3d.json b/src/main/resources/assets/superbwarfare/models/item/svd3d.json deleted file mode 100644 index 48646383a..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/svd3d.json +++ /dev/null @@ -1,404 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "superbwarfare:item/ak473d", - "particle": "superbwarfare:item/ak473d" - }, - "elements": [ - { - "from": [7.7, 2.74237, -7.20836], - "to": [8.3, 3.34237, -5.70836], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 3.04237, -6.83336]}, - "faces": { - "north": {"uv": [7, 4.5, 7.5, 5], "texture": "#0"}, - "east": {"uv": [9, 8.5, 10, 9], "texture": "#0"}, - "south": {"uv": [8, 6.5, 8.5, 7], "texture": "#0"}, - "west": {"uv": [9, 9, 10, 9.5], "texture": "#0"}, - "up": {"uv": [10, 1, 9.5, 0], "texture": "#0"}, - "down": {"uv": [10, 1, 9.5, 2], "texture": "#0"} - } - }, - { - "from": [7.5, 2.25, -4], - "to": [8.5, 4.25, 6.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [2, 9.5, 2.5, 10.5], "texture": "#0"}, - "east": {"uv": [0, 4, 3, 5], "texture": "#0"}, - "south": {"uv": [9.5, 2, 10, 3], "texture": "#0"}, - "west": {"uv": [4, 2, 7, 3], "texture": "#0"}, - "up": {"uv": [2.5, 9.5, 2, 6.5], "texture": "#0"}, - "down": {"uv": [3, 6.5, 2.5, 9.5], "texture": "#0"} - } - }, - { - "from": [7.5, 2, 6.5], - "to": [8.5, 4.25, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [2.5, 9.5, 3, 10.5], "texture": "#0"}, - "east": {"uv": [0, 2, 4, 3], "texture": "#0"}, - "south": {"uv": [9.5, 3, 10, 4], "texture": "#0"}, - "west": {"uv": [0, 3, 4, 4], "texture": "#0"}, - "up": {"uv": [4, 8, 3.5, 4], "texture": "#0"}, - "down": {"uv": [6.5, 5, 6, 9], "texture": "#0"} - } - }, - { - "from": [7.4, 2.7, 18.75], - "to": [8.6, 3.35, 22.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [2.5, 9.5, 3, 10.5], "texture": "#0"}, - "east": {"uv": [0, 2, 4, 3], "texture": "#0"}, - "south": {"uv": [9.5, 3, 10, 4], "texture": "#0"}, - "west": {"uv": [0, 3, 4, 4], "texture": "#0"}, - "up": {"uv": [4, 8, 3.5, 4], "texture": "#0"}, - "down": {"uv": [6.5, 5, 6, 9], "texture": "#0"} - } - }, - { - "from": [7.5, 4.25, 6.5], - "to": [8.5, 4.5, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [8.5, 4, 9, 4.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 2], "texture": "#0"}, - "south": {"uv": [10, 5.5, 10.5, 6], "texture": "#0"}, - "west": {"uv": [8, 6, 9.5, 6.5], "texture": "#0"}, - "up": {"uv": [8, 9.5, 7.5, 8], "texture": "#0"}, - "down": {"uv": [8.5, 8, 8, 9.5], "texture": "#0"} - } - }, - { - "from": [7.5, 5, 6.55], - "to": [8.5, 6, 14.55], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [8.5, 4, 9, 4.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 2], "texture": "#0"}, - "south": {"uv": [10, 5.5, 10.5, 6], "texture": "#0"}, - "west": {"uv": [8, 6, 9.5, 6.5], "texture": "#0"}, - "up": {"uv": [8, 9.5, 7.5, 8], "texture": "#0"}, - "down": {"uv": [8.5, 8, 8, 9.5], "texture": "#0"} - } - }, - { - "from": [7.3, 2.6, 9.05], - "to": [7.5, 6, 9.95], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [8.5, 4, 9, 4.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 2], "texture": "#0"}, - "south": {"uv": [10, 5.5, 10.5, 6], "texture": "#0"}, - "west": {"uv": [8, 6, 9.5, 6.5], "texture": "#0"}, - "up": {"uv": [8, 9.5, 7.5, 8], "texture": "#0"}, - "down": {"uv": [8.5, 8, 8, 9.5], "texture": "#0"} - } - }, - { - "from": [7.3, 2.6, 11.3], - "to": [7.5, 6, 12.2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [8.5, 4, 9, 4.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 2], "texture": "#0"}, - "south": {"uv": [10, 5.5, 10.5, 6], "texture": "#0"}, - "west": {"uv": [8, 6, 9.5, 6.5], "texture": "#0"}, - "up": {"uv": [8, 9.5, 7.5, 8], "texture": "#0"}, - "down": {"uv": [8.5, 8, 8, 9.5], "texture": "#0"} - } - }, - { - "from": [7.7, -0.65, 6.7], - "to": [8.3, 2.75, 9.7], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [5, 9.5, 5.5, 10.5], "texture": "#0"}, - "east": {"uv": [4.5, 6.5, 6, 7.5], "texture": "#0"}, - "south": {"uv": [5.5, 9.5, 6, 10.5], "texture": "#0"}, - "west": {"uv": [6.5, 6, 8, 7], "texture": "#0"}, - "up": {"uv": [0.5, 10, 0, 8.5], "texture": "#0"}, - "down": {"uv": [1, 8.5, 0.5, 10], "texture": "#0"} - } - }, - { - "from": [7.50391, -1, 13.1], - "to": [8.49609, 2.5, 14.6], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0.5, 13.75]}, - "faces": { - "north": {"uv": [5, 7.5, 5.5, 9.5], "texture": "#0"}, - "east": {"uv": [0, 6.5, 1, 8.5], "texture": "#0"}, - "south": {"uv": [5.5, 7.5, 6, 9.5], "texture": "#0"}, - "west": {"uv": [6.5, 0, 7.5, 2], "texture": "#0"}, - "up": {"uv": [7, 10.5, 6.5, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7, 10.5], "texture": "#0"} - } - }, - { - "from": [7.5, -1, 12.85], - "to": [8.5, -0.25, 13.1], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0.5, 13.75]}, - "faces": { - "north": {"uv": [10, 7, 10.5, 7.5], "texture": "#0"}, - "east": {"uv": [10, 7.5, 10.5, 8], "texture": "#0"}, - "south": {"uv": [10, 8.5, 10.5, 9], "texture": "#0"}, - "west": {"uv": [10, 9, 10.5, 9.5], "texture": "#0"}, - "up": {"uv": [10.5, 10, 10, 9.5], "texture": "#0"}, - "down": {"uv": [10.5, 10, 10, 10.5], "texture": "#0"} - } - }, - { - "from": [7.75, 0.76924, 10.74672], - "to": [8.25, 0.86924, 12.99672], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 0.76924, 13.74672]}, - "faces": { - "north": {"uv": [10.5, 0, 11, 0.5], "texture": "#0"}, - "east": {"uv": [9.5, 4, 10.5, 4.5], "texture": "#0"}, - "south": {"uv": [10.5, 0.5, 11, 1], "texture": "#0"}, - "west": {"uv": [9.5, 6, 10.5, 6.5], "texture": "#0"}, - "up": {"uv": [10, 8, 9.5, 7], "texture": "#0"}, - "down": {"uv": [8, 9.5, 7.5, 10.5], "texture": "#0"} - } - }, - { - "from": [7.75, 0.76924, 10.14672], - "to": [8.25, 2.11924, 10.74672], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 0.76924, 13.74672]}, - "faces": { - "north": {"uv": [10.5, 1, 11, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 1.5, 11, 2], "texture": "#0"}, - "south": {"uv": [2, 10.5, 2.5, 11], "texture": "#0"}, - "west": {"uv": [10.5, 2, 11, 2.5], "texture": "#0"}, - "up": {"uv": [3, 11, 2.5, 10.5], "texture": "#0"}, - "down": {"uv": [11, 2.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [7.75, 1.06924, 11.54672], - "to": [8.25, 2.11924, 11.89672], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.59424, 11.82172]}, - "faces": { - "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#0"}, - "east": {"uv": [10.5, 3, 11, 3.5], "texture": "#0"}, - "south": {"uv": [3.5, 10.5, 4, 11], "texture": "#0"}, - "west": {"uv": [10.5, 3.5, 11, 4], "texture": "#0"}, - "up": {"uv": [4.5, 11, 4, 10.5], "texture": "#0"}, - "down": {"uv": [11, 4, 10.5, 4.5], "texture": "#0"} - } - }, - { - "from": [7.5, 2, 3.75], - "to": [8.5, 2.25, 6.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, - "faces": { - "north": {"uv": [10.5, 4.5, 11, 5], "texture": "#0"}, - "east": {"uv": [8.5, 4.5, 10, 5], "texture": "#0"}, - "south": {"uv": [5, 10.5, 5.5, 11], "texture": "#0"}, - "west": {"uv": [9, 6.5, 10.5, 7], "texture": "#0"}, - "up": {"uv": [6.5, 10.5, 6, 9], "texture": "#0"}, - "down": {"uv": [9.5, 7, 9, 8.5], "texture": "#0"} - } - }, - { - "from": [7.5, -0.37392, 12.58471], - "to": [8.5, 1.62608, 14.08471], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 0.62608, 16.70971]}, - "faces": { - "north": {"uv": [8, 9.5, 8.5, 10.5], "texture": "#0"}, - "east": {"uv": [7.5, 7, 8.5, 8], "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 9, 10.5], "texture": "#0"}, - "west": {"uv": [8, 0, 9, 1], "texture": "#0"}, - "up": {"uv": [9.5, 10.5, 9, 9.5], "texture": "#0"}, - "down": {"uv": [10, 9.5, 9.5, 10.5], "texture": "#0"} - } - }, - { - "from": [7.49609, 0.77044, 14.21513], - "to": [8.50391, 2.12044, 15.71513], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.12044, 18.34013]}, - "faces": { - "north": {"uv": [0, 10, 0.5, 11], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 10.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, - "up": {"uv": [3.5, 9, 3, 4], "texture": "#0"}, - "down": {"uv": [4.5, 3, 4, 8], "texture": "#0"} - } - }, - { - "from": [7.49609, -1.11164, 13.00506], - "to": [8.50391, 0.23836, 13.80506], - "rotation": {"angle": 45, "axis": "x", "origin": [8, -0.76164, 16.93006]}, - "faces": { - "north": {"uv": [0, 10, 0.5, 11], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 10.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, - "up": {"uv": [3.5, 9, 3, 4], "texture": "#0"}, - "down": {"uv": [4.5, 3, 4, 8], "texture": "#0"} - } - }, - { - "from": [7.50391, -0.56054, 14.35932], - "to": [8.51173, -0.06054, 19.10932], - "rotation": {"angle": 0, "axis": "x", "origin": [8.00782, 0.43946, 20.23432]}, - "faces": { - "north": {"uv": [0, 10, 0.5, 11], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 10.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, - "up": {"uv": [3.5, 9, 3, 4], "texture": "#0"}, - "down": {"uv": [4.5, 3, 4, 8], "texture": "#0"} - } - }, - { - "from": [7.50391, -2.84686, 18.85346], - "to": [8.51173, -2.34686, 20.85346], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8.00782, -1.84686, 24.72846]}, - "faces": { - "north": {"uv": [0, 10, 0.5, 11], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 10.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, - "up": {"uv": [3.5, 9, 3, 4], "texture": "#0"}, - "down": {"uv": [4.5, 3, 4, 8], "texture": "#0"} - } - }, - { - "from": [7.50391, -1.32591, 20.75708], - "to": [8.51173, -0.82591, 23.45708], - "rotation": {"angle": 0, "axis": "x", "origin": [8.00782, -1.07591, 21.95708]}, - "faces": { - "north": {"uv": [0, 10, 0.5, 11], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 10.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, - "up": {"uv": [3.5, 9, 3, 4], "texture": "#0"}, - "down": {"uv": [4.5, 3, 4, 8], "texture": "#0"} - } - }, - { - "from": [7.5, 1.93141, 15.64906], - "to": [8.5, 3.08141, 22.39906], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, - "faces": { - "north": {"uv": [0.5, 10, 1, 11], "texture": "#0"}, - "east": {"uv": [4.5, 3, 7, 4], "texture": "#0"}, - "south": {"uv": [1, 10, 1.5, 11], "texture": "#0"}, - "west": {"uv": [4.5, 4, 7, 5], "texture": "#0"}, - "up": {"uv": [7.5, 4.5, 7, 2], "texture": "#0"}, - "down": {"uv": [7, 7, 6.5, 9.5], "texture": "#0"} - } - }, - { - "from": [7.5, -0.91859, 22.39906], - "to": [8.5, 3.08141, 23.38343], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, - "faces": { - "north": {"uv": [8, 1, 8.5, 3], "texture": "#0"}, - "east": {"uv": [8, 3, 8.5, 5], "texture": "#0"}, - "south": {"uv": [3.5, 8, 4, 10], "texture": "#0"}, - "west": {"uv": [4, 8, 4.5, 10], "texture": "#0"}, - "up": {"uv": [11, 5.5, 10.5, 5], "texture": "#0"}, - "down": {"uv": [6, 10.5, 5.5, 11], "texture": "#0"} - } - }, - { - "from": [7.7, -0.61859, 19.64906], - "to": [8.3, 1.98141, 20.63343], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, - "faces": { - "north": {"uv": [8, 1, 8.5, 3], "texture": "#0"}, - "east": {"uv": [8, 3, 8.5, 5], "texture": "#0"}, - "south": {"uv": [3.5, 8, 4, 10], "texture": "#0"}, - "west": {"uv": [4, 8, 4.5, 10], "texture": "#0"}, - "up": {"uv": [11, 5.5, 10.5, 5], "texture": "#0"}, - "down": {"uv": [6, 10.5, 5.5, 11], "texture": "#0"} - } - }, - { - "from": [7.5, -1.50219, 23.3764], - "to": [8.5, 3.08141, 24.14906], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, - "faces": { - "north": {"uv": [7, 7, 7.5, 9.5], "texture": "#0"}, - "east": {"uv": [7.5, 0, 8, 2.5], "texture": "#0"}, - "south": {"uv": [7.5, 2.5, 8, 5], "texture": "#0"}, - "west": {"uv": [4.5, 7.5, 5, 10], "texture": "#0"}, - "up": {"uv": [11, 6, 10.5, 5.5], "texture": "#0"}, - "down": {"uv": [6.5, 10.5, 6, 11], "texture": "#0"} - } - }, - { - "from": [7.7, 2.45, -16], - "to": [8.3, 3.05, -4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 1.75]}, - "faces": { - "north": {"uv": [10.5, 6, 11, 6.5], "texture": "#0"}, - "east": {"uv": [6.5, 5, 10, 5.5], "texture": "#0"}, - "south": {"uv": [6.5, 10.5, 7, 11], "texture": "#0"}, - "west": {"uv": [6.5, 5.5, 10, 6], "texture": "#0"}, - "up": {"uv": [1.5, 10, 1, 6.5], "texture": "#0"}, - "down": {"uv": [2, 6.5, 1.5, 10], "texture": "#0"} - } - }, - { - "from": [7.9, 3.05, -15.75], - "to": [8.1, 4.85, -15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 1.75]}, - "faces": { - "north": {"uv": [10, 1, 10.5, 2], "texture": "#0"}, - "east": {"uv": [1.5, 10, 2, 11], "texture": "#0"}, - "south": {"uv": [10, 2, 10.5, 3], "texture": "#0"}, - "west": {"uv": [10, 3, 10.5, 4], "texture": "#0"}, - "up": {"uv": [11, 7, 10.5, 6.5], "texture": "#0"}, - "down": {"uv": [7.5, 10.5, 7, 11], "texture": "#0"} - } - }, - { - "from": [7.7, 3.45, -6.25], - "to": [8.3, 4.05, -4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 2.75]}, - "faces": { - "north": {"uv": [10.5, 7, 11, 7.5], "texture": "#0"}, - "east": {"uv": [9.5, 8, 10.5, 8.5], "texture": "#0"}, - "south": {"uv": [7.5, 10.5, 8, 11], "texture": "#0"}, - "west": {"uv": [3.5, 10, 4.5, 10.5], "texture": "#0"}, - "up": {"uv": [5, 11, 4.5, 10], "texture": "#0"}, - "down": {"uv": [10.5, 4.5, 10, 5.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [-1.5, 4.25, -2.75], - "scale": [0.7, 0.7, 0.7] - }, - "thirdperson_lefthand": { - "translation": [-1.5, 4.25, -2.75], - "scale": [0.7, 0.7, 0.7] - }, - "ground": { - "translation": [0, 9, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, 18.75, 0] - }, - "fixed": { - "rotation": [90, -45, 90], - "translation": [-2.5, 4.25, 0], - "scale": [0.75, 0.75, 0.75] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 3.25, 7.75], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd_icon.json b/src/main/resources/assets/superbwarfare/models/item/svd_icon.json deleted file mode 100644 index 7c72c5c63..000000000 --- a/src/main/resources/assets/superbwarfare/models/item/svd_icon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "superbwarfare:item/svdicon" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/lod/svd.json b/src/main/resources/assets/superbwarfare/models/lod/svd.json new file mode 100644 index 000000000..a436dc3e1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/lod/svd.json @@ -0,0 +1,404 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "2": "superbwarfare:item/lod/svd", + "particle": "superbwarfare:item/lod/svd" + }, + "elements": [ + { + "from": [7.7, 2.74237, -7.20836], + "to": [8.3, 3.34237, -5.70836], + "rotation": {"angle": -45, "axis": "x", "origin": [8, 3.04237, -6.83336]}, + "faces": { + "north": {"uv": [5.5, 3.5, 6, 4], "texture": "#2"}, + "east": {"uv": [8, 6.5, 9, 7], "texture": "#2"}, + "south": {"uv": [9, 8, 9.5, 8.5], "texture": "#2"}, + "west": {"uv": [8, 7, 9, 7.5], "texture": "#2"}, + "up": {"uv": [8, 9, 7.5, 8], "texture": "#2"}, + "down": {"uv": [8.5, 7.5, 8, 8.5], "texture": "#2"} + } + }, + { + "from": [7.5, 2.25, -4], + "to": [8.5, 4.25, 6.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [2.5, 8.5, 3, 9.5], "texture": "#2"}, + "east": {"uv": [0, 0, 5.5, 1], "texture": "#2"}, + "south": {"uv": [3, 8.5, 3.5, 9.5], "texture": "#2"}, + "west": {"uv": [0, 1, 5.5, 2], "texture": "#2"}, + "up": {"uv": [1.5, 10, 1, 4.5], "texture": "#2"}, + "down": {"uv": [2, 4.5, 1.5, 10], "texture": "#2"} + } + }, + { + "from": [7.5, 2, 6.5], + "to": [8.5, 4.25, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9.5], "texture": "#2"}, + "east": {"uv": [0, 2, 4, 3], "texture": "#2"}, + "south": {"uv": [8.5, 3.5, 9, 4.5], "texture": "#2"}, + "west": {"uv": [0, 3, 4, 4], "texture": "#2"}, + "up": {"uv": [4, 8.5, 3.5, 4.5], "texture": "#2"}, + "down": {"uv": [4.5, 4.5, 4, 8.5], "texture": "#2"} + } + }, + { + "from": [7.4, 2.7, 18.75], + "to": [8.6, 3.35, 22.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9.5], "texture": "#2"}, + "east": {"uv": [0, 2, 4, 3], "texture": "#2"}, + "south": {"uv": [8.5, 3.5, 9, 4.5], "texture": "#2"}, + "west": {"uv": [0, 3, 4, 4], "texture": "#2"}, + "up": {"uv": [3.5, 4.5, 4, 8.5], "texture": "#2"}, + "down": {"uv": [4, 4.5, 4.5, 8.5], "texture": "#2"} + } + }, + { + "from": [7.5, 4.25, 6.5], + "to": [8.5, 4.5, 9.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [9, 8.5, 9.5, 9], "texture": "#2"}, + "east": {"uv": [7.5, 0, 9, 0.5], "texture": "#2"}, + "south": {"uv": [9, 9, 9.5, 9.5], "texture": "#2"}, + "west": {"uv": [7.5, 0.5, 9, 1], "texture": "#2"}, + "up": {"uv": [8, 5, 7.5, 3.5], "texture": "#2"}, + "down": {"uv": [5, 7.5, 4.5, 9], "texture": "#2"} + } + }, + { + "from": [7.5, 5, 6.55], + "to": [8.5, 6, 14.55], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [9, 8.5, 9.5, 9], "texture": "#2"}, + "east": {"uv": [7.5, 0, 9, 0.5], "texture": "#2"}, + "south": {"uv": [9, 9, 9.5, 9.5], "texture": "#2"}, + "west": {"uv": [7.5, 0.5, 9, 1], "texture": "#2"}, + "up": {"uv": [7.5, 3.5, 8, 5], "texture": "#2"}, + "down": {"uv": [4.5, 7.5, 5, 9], "texture": "#2"} + } + }, + { + "from": [7.3, 2.6, 9.05], + "to": [7.5, 6, 9.95], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [9, 8.5, 9.5, 9], "texture": "#2"}, + "east": {"uv": [7.5, 0, 9, 0.5], "texture": "#2"}, + "south": {"uv": [9, 9, 9.5, 9.5], "texture": "#2"}, + "west": {"uv": [7.5, 0.5, 9, 1], "texture": "#2"}, + "up": {"uv": [7.5, 3.5, 8, 5], "texture": "#2"}, + "down": {"uv": [4.5, 7.5, 5, 9], "texture": "#2"} + } + }, + { + "from": [7.3, 2.6, 11.3], + "to": [7.5, 6, 12.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [9, 8.5, 9.5, 9], "texture": "#2"}, + "east": {"uv": [7.5, 0, 9, 0.5], "texture": "#2"}, + "south": {"uv": [9, 9, 9.5, 9.5], "texture": "#2"}, + "west": {"uv": [7.5, 0.5, 9, 1], "texture": "#2"}, + "up": {"uv": [7.5, 3.5, 8, 5], "texture": "#2"}, + "down": {"uv": [4.5, 7.5, 5, 9], "texture": "#2"} + } + }, + { + "from": [7.7, -0.65, 6.7], + "to": [8.3, 2.75, 9.7], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [5, 7.5, 5.5, 9], "texture": "#2"}, + "east": {"uv": [4, 2.5, 5.5, 4], "texture": "#2"}, + "south": {"uv": [7.5, 5, 8, 6.5], "texture": "#2"}, + "west": {"uv": [2, 4.5, 3.5, 6], "texture": "#2"}, + "up": {"uv": [8, 8, 7.5, 6.5], "texture": "#2"}, + "down": {"uv": [8.5, 3.5, 8, 5], "texture": "#2"} + } + }, + { + "from": [7.50391, -1, 13.1], + "to": [8.49609, 2.5, 14.6], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0.5, 13.75]}, + "faces": { + "north": {"uv": [6.5, 0, 7, 2], "texture": "#2"}, + "east": {"uv": [4.5, 4.5, 5.5, 6.5], "texture": "#2"}, + "south": {"uv": [6.5, 3.5, 7, 5.5], "texture": "#2"}, + "west": {"uv": [5.5, 0, 6.5, 2], "texture": "#2"}, + "up": {"uv": [4.5, 9.5, 4, 8.5], "texture": "#2"}, + "down": {"uv": [9, 4.5, 8.5, 5.5], "texture": "#2"} + } + }, + { + "from": [7.5, -1, 12.85], + "to": [8.5, -0.25, 13.1], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0.5, 13.75]}, + "faces": { + "north": {"uv": [9.5, 0, 10, 0.5], "texture": "#2"}, + "east": {"uv": [9.5, 0.5, 10, 1], "texture": "#2"}, + "south": {"uv": [9.5, 1, 10, 1.5], "texture": "#2"}, + "west": {"uv": [9.5, 1.5, 10, 2], "texture": "#2"}, + "up": {"uv": [2.5, 10, 2, 9.5], "texture": "#2"}, + "down": {"uv": [3, 9.5, 2.5, 10], "texture": "#2"} + } + }, + { + "from": [7.75, 0.76924, 10.74672], + "to": [8.25, 0.86924, 12.99672], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 0.76924, 13.74672]}, + "faces": { + "north": {"uv": [3, 9.5, 3.5, 10], "texture": "#2"}, + "east": {"uv": [8.5, 5.5, 9.5, 6], "texture": "#2"}, + "south": {"uv": [9.5, 3, 10, 3.5], "texture": "#2"}, + "west": {"uv": [6, 8.5, 7, 9], "texture": "#2"}, + "up": {"uv": [7.5, 9.5, 7, 8.5], "texture": "#2"}, + "down": {"uv": [9, 7.5, 8.5, 8.5], "texture": "#2"} + } + }, + { + "from": [7.75, 0.76924, 10.14672], + "to": [8.25, 2.11924, 10.74672], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 0.76924, 13.74672]}, + "faces": { + "north": {"uv": [3.5, 9.5, 4, 10], "texture": "#2"}, + "east": {"uv": [9.5, 3.5, 10, 4], "texture": "#2"}, + "south": {"uv": [4, 9.5, 4.5, 10], "texture": "#2"}, + "west": {"uv": [9.5, 4, 10, 4.5], "texture": "#2"}, + "up": {"uv": [10, 5, 9.5, 4.5], "texture": "#2"}, + "down": {"uv": [6, 9.5, 5.5, 10], "texture": "#2"} + } + }, + { + "from": [7.75, 1.06924, 11.54672], + "to": [8.25, 2.11924, 11.89672], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.59424, 11.82172]}, + "faces": { + "north": {"uv": [9.5, 5.5, 10, 6], "texture": "#2"}, + "east": {"uv": [9.5, 6, 10, 6.5], "texture": "#2"}, + "south": {"uv": [7, 9.5, 7.5, 10], "texture": "#2"}, + "west": {"uv": [9.5, 7, 10, 7.5], "texture": "#2"}, + "up": {"uv": [10, 8, 9.5, 7.5], "texture": "#2"}, + "down": {"uv": [8.5, 9.5, 8, 10], "texture": "#2"} + } + }, + { + "from": [7.5, 2, 3.75], + "to": [8.5, 2.25, 6.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 7.75]}, + "faces": { + "north": {"uv": [9.5, 8, 10, 8.5], "texture": "#2"}, + "east": {"uv": [7.5, 1, 9, 1.5], "texture": "#2"}, + "south": {"uv": [8.5, 9.5, 9, 10], "texture": "#2"}, + "west": {"uv": [7.5, 1.5, 9, 2], "texture": "#2"}, + "up": {"uv": [8.5, 6.5, 8, 5], "texture": "#2"}, + "down": {"uv": [6, 8, 5.5, 9.5], "texture": "#2"} + } + }, + { + "from": [7.5, -0.37392, 12.58471], + "to": [8.5, 1.62608, 14.08471], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 0.62608, 16.70971]}, + "faces": { + "north": {"uv": [8, 8.5, 8.5, 9.5], "texture": "#2"}, + "east": {"uv": [4.5, 6.5, 5.5, 7.5], "texture": "#2"}, + "south": {"uv": [8.5, 8.5, 9, 9.5], "texture": "#2"}, + "west": {"uv": [6.5, 5.5, 7.5, 6.5], "texture": "#2"}, + "up": {"uv": [9.5, 1, 9, 0], "texture": "#2"}, + "down": {"uv": [9.5, 1, 9, 2], "texture": "#2"} + } + }, + { + "from": [7.49609, 0.77044, 14.21513], + "to": [8.50391, 2.12044, 15.71513], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.12044, 18.34013]}, + "faces": { + "north": {"uv": [9.5, 8.5, 10, 9], "texture": "#2"}, + "east": {"uv": [8.5, 6, 9.5, 6.5], "texture": "#2"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#2"}, + "west": {"uv": [9, 2.5, 10, 3], "texture": "#2"}, + "up": {"uv": [9.5, 4, 9, 3], "texture": "#2"}, + "down": {"uv": [9.5, 4, 9, 5], "texture": "#2"} + } + }, + { + "from": [7.49609, -1.11164, 13.00506], + "to": [8.50391, 0.23836, 13.80506], + "rotation": {"angle": 45, "axis": "x", "origin": [8, -0.76164, 16.93006]}, + "faces": { + "north": {"uv": [9.5, 8.5, 10, 9], "texture": "#2"}, + "east": {"uv": [8.5, 6, 9.5, 6.5], "texture": "#2"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#2"}, + "west": {"uv": [9, 2.5, 10, 3], "texture": "#2"}, + "up": {"uv": [9, 3, 9.5, 4], "texture": "#2"}, + "down": {"uv": [9, 4, 9.5, 5], "texture": "#2"} + } + }, + { + "from": [7.50391, -0.56054, 14.35932], + "to": [8.51173, -0.06054, 19.10932], + "rotation": {"angle": 0, "axis": "x", "origin": [8.00782, 0.43946, 20.23432]}, + "faces": { + "north": {"uv": [9.5, 8.5, 10, 9], "texture": "#2"}, + "east": {"uv": [8.5, 6, 9.5, 6.5], "texture": "#2"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#2"}, + "west": {"uv": [9, 2.5, 10, 3], "texture": "#2"}, + "up": {"uv": [9, 3, 9.5, 4], "texture": "#2"}, + "down": {"uv": [9, 4, 9.5, 5], "texture": "#2"} + } + }, + { + "from": [7.50391, -2.84686, 18.85346], + "to": [8.51173, -2.34686, 20.85346], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8.00782, -1.84686, 24.72846]}, + "faces": { + "north": {"uv": [9.5, 8.5, 10, 9], "texture": "#2"}, + "east": {"uv": [8.5, 6, 9.5, 6.5], "texture": "#2"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#2"}, + "west": {"uv": [9, 2.5, 10, 3], "texture": "#2"}, + "up": {"uv": [9, 3, 9.5, 4], "texture": "#2"}, + "down": {"uv": [9, 4, 9.5, 5], "texture": "#2"} + } + }, + { + "from": [7.50391, -1.32591, 20.75708], + "to": [8.51173, -0.82591, 23.45708], + "rotation": {"angle": 0, "axis": "x", "origin": [8.00782, -1.07591, 21.95708]}, + "faces": { + "north": {"uv": [9.5, 8.5, 10, 9], "texture": "#2"}, + "east": {"uv": [8.5, 6, 9.5, 6.5], "texture": "#2"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#2"}, + "west": {"uv": [9, 2.5, 10, 3], "texture": "#2"}, + "up": {"uv": [9, 3, 9.5, 4], "texture": "#2"}, + "down": {"uv": [9, 4, 9.5, 5], "texture": "#2"} + } + }, + { + "from": [7.5, 1.93141, 15.64906], + "to": [8.5, 3.08141, 22.39906], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, + "faces": { + "north": {"uv": [9.5, 9, 10, 9.5], "texture": "#2"}, + "east": {"uv": [5.5, 2.5, 9, 3], "texture": "#2"}, + "south": {"uv": [9.5, 9.5, 10, 10], "texture": "#2"}, + "west": {"uv": [5.5, 3, 9, 3.5], "texture": "#2"}, + "up": {"uv": [6, 8, 5.5, 4.5], "texture": "#2"}, + "down": {"uv": [2.5, 6, 2, 9.5], "texture": "#2"} + } + }, + { + "from": [7.5, -0.91859, 22.39906], + "to": [8.5, 3.08141, 23.38343], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, + "faces": { + "north": {"uv": [6.5, 6.5, 7, 8.5], "texture": "#2"}, + "east": {"uv": [7, 0, 7.5, 2], "texture": "#2"}, + "south": {"uv": [7, 3.5, 7.5, 5.5], "texture": "#2"}, + "west": {"uv": [7, 6.5, 7.5, 8.5], "texture": "#2"}, + "up": {"uv": [10.5, 0.5, 10, 0], "texture": "#2"}, + "down": {"uv": [10.5, 0.5, 10, 1], "texture": "#2"} + } + }, + { + "from": [7.7, -0.61859, 19.64906], + "to": [8.3, 1.98141, 20.63343], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, + "faces": { + "north": {"uv": [6.5, 6.5, 7, 8.5], "texture": "#2"}, + "east": {"uv": [7, 0, 7.5, 2], "texture": "#2"}, + "south": {"uv": [7, 3.5, 7.5, 5.5], "texture": "#2"}, + "west": {"uv": [7, 6.5, 7.5, 8.5], "texture": "#2"}, + "up": {"uv": [10, 0, 10.5, 0.5], "texture": "#2"}, + "down": {"uv": [10, 0.5, 10.5, 1], "texture": "#2"} + } + }, + { + "from": [7.5, -1.50219, 23.3764], + "to": [8.5, 3.08141, 24.14906], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.53141, 21.27406]}, + "faces": { + "north": {"uv": [2.5, 6, 3, 8.5], "texture": "#2"}, + "east": {"uv": [3, 6, 3.5, 8.5], "texture": "#2"}, + "south": {"uv": [6, 3.5, 6.5, 6], "texture": "#2"}, + "west": {"uv": [6, 6, 6.5, 8.5], "texture": "#2"}, + "up": {"uv": [1.5, 10.5, 1, 10], "texture": "#2"}, + "down": {"uv": [10.5, 1, 10, 1.5], "texture": "#2"} + } + }, + { + "from": [7.7, 2.45, -16], + "to": [8.3, 3.05, -4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 1.75]}, + "faces": { + "north": {"uv": [1.5, 10, 2, 10.5], "texture": "#2"}, + "east": {"uv": [0, 4, 6, 4.5], "texture": "#2"}, + "south": {"uv": [10, 1.5, 10.5, 2], "texture": "#2"}, + "west": {"uv": [4, 2, 10, 2.5], "texture": "#2"}, + "up": {"uv": [0.5, 10.5, 0, 4.5], "texture": "#2"}, + "down": {"uv": [1, 4.5, 0.5, 10.5], "texture": "#2"} + } + }, + { + "from": [7.9, 3.05, -15.75], + "to": [8.1, 4.85, -15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 1.75]}, + "faces": { + "north": {"uv": [4.5, 9, 5, 10], "texture": "#2"}, + "east": {"uv": [5, 9, 5.5, 10], "texture": "#2"}, + "south": {"uv": [6, 9, 6.5, 10], "texture": "#2"}, + "west": {"uv": [6.5, 9, 7, 10], "texture": "#2"}, + "up": {"uv": [2.5, 10.5, 2, 10], "texture": "#2"}, + "down": {"uv": [10.5, 2, 10, 2.5], "texture": "#2"} + } + }, + { + "from": [7.7, 3.45, -6.25], + "to": [8.3, 4.05, -4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 2.75]}, + "faces": { + "north": {"uv": [2.5, 10, 3, 10.5], "texture": "#2"}, + "east": {"uv": [9, 5, 10, 5.5], "texture": "#2"}, + "south": {"uv": [10, 2.5, 10.5, 3], "texture": "#2"}, + "west": {"uv": [9, 6.5, 10, 7], "texture": "#2"}, + "up": {"uv": [9.5, 8, 9, 7], "texture": "#2"}, + "down": {"uv": [8, 9, 7.5, 10], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [-1.5, 4.25, -2.75], + "scale": [0.7, 0.7, 0.7] + }, + "thirdperson_lefthand": { + "translation": [-1.5, 4.25, -2.75], + "scale": [0.7, 0.7, 0.7] + }, + "ground": { + "translation": [0, 9, 0], + "scale": [0.7, 0.7, 0.7] + }, + "head": { + "translation": [0, 18.75, 0] + }, + "fixed": { + "rotation": [90, -45, 90], + "translation": [-2.5, 4.25, 0], + "scale": [0.75, 0.75, 0.75] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 3.25, 7.75], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/textures/item/lod/svd.png b/src/main/resources/assets/superbwarfare/textures/item/lod/svd.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2d2d674641853f8285f251bfc73d08b717620b GIT binary patch literal 356 zcmV-q0h|7bP)Px$9!W$&R9J=Wmc0#wFc5_wh=L{(6o9ftmIxDMom5#T6OfVxSOZ)nQW`3fCOBur z&*39d3V)Rm#&_@8cgDM%jxShJ)U6(;NrHp_1OS|`H;=o9ZyS6o0?EgD7V2?PD}X$6 z+1vrTEgXWX+s#gBl=@k400=k%9``$;=aKm$-0s&1zf zkvk9Y_&KCU534aqHgt`58q8;s~*xaY?Lw*x526reM`3$1s_cy&q5&E&n`SX zxDppw4)luq%Z3J&s0RRlsSn_zc&S`D>x?E~_0@)m5}>MSMXX`*4CGm8?6dh3GJlbA z5cdHolMeJsr_@s2fP95zjPIQcH9F10000