├── README.md ├── pack.mcmeta └── assets ├── minecraft ├── textures │ └── hats │ │ ├── zombie_arrow_texture.png │ │ ├── zombie_axe_texture.png │ │ ├── zombie_brain_texture.png │ │ ├── zombie_eye_texture.png │ │ ├── zombie_jaw_texture.png │ │ └── zombie_sword_texture.png ├── atlases │ └── blocks.json └── items │ └── flint.json └── zombie_items └── models └── hats ├── zombie_jaw.json ├── zombie_brain.json ├── zombie_eye.json ├── zombie_arrow.json ├── zombie_axe.json └── zombie_sword.json /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "This resource pack zombie cosmetics for 2cml", 4 | "pack_format": 64 5 | } 6 | } -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_arrow_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_arrow_texture.png -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_axe_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_axe_texture.png -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_brain_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_brain_texture.png -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_eye_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_eye_texture.png -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_jaw_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_jaw_texture.png -------------------------------------------------------------------------------- /assets/minecraft/textures/hats/zombie_sword_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cml/zombie-items/main/assets/minecraft/textures/hats/zombie_sword_texture.png -------------------------------------------------------------------------------- /assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources":[ 3 | { 4 | "type":"directory", 5 | "source":"hats", 6 | "prefix":"hats/" 7 | } 8 | 9 | ] 10 | } -------------------------------------------------------------------------------- /assets/minecraft/items/flint.json: -------------------------------------------------------------------------------- 1 | { 2 | "model" : { 3 | "type": "range_dispatch", 4 | "property": "custom_model_data", 5 | "entries": [ 6 | { 7 | "threshold": 761, 8 | "model": { 9 | "type": "model", 10 | "model": "zombie_items:hats/zombie_arrow" 11 | } 12 | }, 13 | { 14 | "threshold": 762, 15 | "model": { 16 | "type": "model", 17 | "model": "zombie_items:hats/zombie_axe" 18 | } 19 | }, 20 | { 21 | "threshold": 763, 22 | "model": { 23 | "type": "model", 24 | "model": "zombie_items:hats/zombie_brain" 25 | } 26 | }, 27 | { 28 | "threshold": 764, 29 | "model": { 30 | "type": "model", 31 | "model": "zombie_items:hats/zombie_eye" 32 | } 33 | }, 34 | { 35 | "threshold": 765, 36 | "model": { 37 | "type": "model", 38 | "model": "zombie_items:hats/zombie_jaw" 39 | } 40 | }, 41 | { 42 | "threshold": 766, 43 | "model": { 44 | "type": "model", 45 | "model": "zombie_items:hats/zombie_sword" 46 | } 47 | } 48 | ], 49 | "fallback": { 50 | "type": "minecraft:model", 51 | "model": "minecraft:item/flint" 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_jaw.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "texture_size": [32, 32], 5 | "textures": { 6 | "0": "hats/zombie_jaw_texture", 7 | "particle": "hats/zombie_jaw_texture" 8 | }, 9 | "elements": [ 10 | { 11 | "from": [2, 1, 0], 12 | "to": [14, 2, 5], 13 | "rotation": {"angle": -30, "axis": "x", "origin": [11, 1.5, 2.5]}, 14 | "faces": { 15 | "north": {"uv": [0, 6, 6, 6.5], "texture": "#0"}, 16 | "east": {"uv": [6, 0.5, 8.5, 1], "texture": "#0"}, 17 | "south": {"uv": [6, 0, 12, 0.5], "texture": "#0"}, 18 | "west": {"uv": [6, 1, 8.5, 1.5], "texture": "#0"}, 19 | "up": {"uv": [6, 2.5, 0, 0], "texture": "#0"}, 20 | "down": {"uv": [6, 2.5, 0, 5], "texture": "#0"} 21 | } 22 | }, 23 | { 24 | "from": [3, 1, 1], 25 | "to": [13, 3, 1], 26 | "rotation": {"angle": -30, "axis": "x", "origin": [11, 1.5, 2.5]}, 27 | "faces": { 28 | "north": {"uv": [0, 5, 5, 6], "texture": "#0"}, 29 | "east": {"uv": [0, 0, 0, 1], "texture": "#0"}, 30 | "south": {"uv": [5, 5, 10, 6], "texture": "#0"}, 31 | "west": {"uv": [0, 0, 0, 1], "texture": "#0"}, 32 | "up": {"uv": [5, 0, 0, 0], "texture": "#0"}, 33 | "down": {"uv": [5, 0, 0, 0], "texture": "#0"} 34 | } 35 | } 36 | ], 37 | "gui_light": "front", 38 | "display": { 39 | "head": { 40 | "rotation": [0, 0, 5.5], 41 | "translation": [-0.25, 0, 2] 42 | } 43 | }, 44 | "groups": [ 45 | { 46 | "name": "Jaw", 47 | "origin": [0, 0, 0], 48 | "color": 0, 49 | "children": [0, 1] 50 | } 51 | ] 52 | } -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_brain.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "textures": { 5 | "0": "hats/zombie_brain_texture", 6 | "particle": "hats/zombie_brain_texture" 7 | }, 8 | "elements": [ 9 | { 10 | "name": "Brain", 11 | "from": [0.5, 9, 8], 12 | "to": [1.5, 14, 13], 13 | "rotation": {"angle": 0, "axis": "y", "origin": [-2, 9, 11]}, 14 | "faces": { 15 | "north": {"uv": [5, 0, 6, 5], "texture": "#0"}, 16 | "east": {"uv": [0, 0, 5, 5], "texture": "#0"}, 17 | "south": {"uv": [5, 5, 6, 10], "texture": "#0"}, 18 | "west": {"uv": [0, 5, 5, 10], "texture": "#0"}, 19 | "up": {"uv": [7, 5, 6, 0], "texture": "#0"}, 20 | "down": {"uv": [7, 5, 6, 10], "texture": "#0"} 21 | } 22 | }, 23 | { 24 | "name": "Brain", 25 | "from": [1.5, 9, 7], 26 | "to": [1.5, 14, 8], 27 | "rotation": {"angle": 0, "axis": "y", "origin": [-1, 9, 11]}, 28 | "faces": { 29 | "north": {"uv": [0, 0, 0, 5], "texture": "#0"}, 30 | "east": {"uv": [7, 0, 8, 5], "texture": "#0"}, 31 | "south": {"uv": [0, 0, 0, 5], "texture": "#0"}, 32 | "west": {"uv": [7, 5, 8, 10], "texture": "#0"}, 33 | "up": {"uv": [0, 1, 0, 0], "texture": "#0"}, 34 | "down": {"uv": [0, 0, 0, 1], "texture": "#0"} 35 | } 36 | }, 37 | { 38 | "name": "Brain", 39 | "from": [1.5, 9, 13], 40 | "to": [1.5, 13, 14], 41 | "rotation": {"angle": 0, "axis": "y", "origin": [-1, 9, 11]}, 42 | "faces": { 43 | "north": {"uv": [0, 0, 0, 5], "texture": "#0"}, 44 | "east": {"uv": [8, 0, 9, 4], "texture": "#0"}, 45 | "south": {"uv": [0, 0, 0, 5], "texture": "#0"}, 46 | "west": {"uv": [8, 4, 9, 8], "texture": "#0"}, 47 | "up": {"uv": [0, 1, 0, 0], "texture": "#0"}, 48 | "down": {"uv": [0, 0, 0, 1], "texture": "#0"} 49 | } 50 | } 51 | ], 52 | "gui_light": "front", 53 | "groups": [ 54 | { 55 | "name": "Brain", 56 | "origin": [0, 10, 11], 57 | "color": 0, 58 | "children": [0, 1, 2] 59 | } 60 | ] 61 | } -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_eye.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "textures": { 5 | "0": "hats/zombie_eye_texture", 6 | "particle": "hats/zombie_eye_texture" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [3, 7, 0], 11 | "to": [7, 11, 0], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [3, 7, 0]}, 13 | "faces": { 14 | "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, 15 | "east": {"uv": [0, 0, 0, 4], "texture": "#0"}, 16 | "south": {"uv": [0, 4, 4, 8], "texture": "#0"}, 17 | "west": {"uv": [0, 0, 0, 4], "texture": "#0"}, 18 | "up": {"uv": [4, 0, 0, 0], "texture": "#0"}, 19 | "down": {"uv": [4, 0, 0, 0], "texture": "#0"} 20 | } 21 | }, 22 | { 23 | "from": [4.5, 8, -1.5], 24 | "to": [5.5, 9, 1.5], 25 | "rotation": {"angle": -30, "axis": "x", "origin": [3, 7, -1]}, 26 | "faces": { 27 | "north": {"uv": [10, 10, 11, 11], "texture": "#0"}, 28 | "east": {"uv": [8, 8, 11, 9], "texture": "#0"}, 29 | "south": {"uv": [11, 8, 12, 9], "texture": "#0"}, 30 | "west": {"uv": [8, 9, 11, 10], "texture": "#0"}, 31 | "up": {"uv": [9, 13, 8, 10], "texture": "#0"}, 32 | "down": {"uv": [10, 10, 9, 13], "texture": "#0"} 33 | } 34 | }, 35 | { 36 | "from": [3, 3.5, -4], 37 | "to": [7, 7.5, 0], 38 | "rotation": {"angle": 32.5, "axis": "x", "origin": [3, 8, 0]}, 39 | "faces": { 40 | "north": {"uv": [4, 0, 8, 4], "texture": "#0"}, 41 | "east": {"uv": [4, 4, 8, 8], "texture": "#0"}, 42 | "south": {"uv": [0, 8, 4, 12], "texture": "#0"}, 43 | "west": {"uv": [8, 0, 12, 4], "texture": "#0"}, 44 | "up": {"uv": [8, 12, 4, 8], "texture": "#0"}, 45 | "down": {"uv": [12, 4, 8, 8], "texture": "#0"} 46 | } 47 | } 48 | ], 49 | "gui_light": "front", 50 | "display": { 51 | "head": { 52 | "translation": [0, -2.25, 1.5] 53 | } 54 | }, 55 | "groups": [ 56 | { 57 | "name": "Eye", 58 | "origin": [8, 8, 8], 59 | "color": 0, 60 | "children": [0, 1, 2] 61 | } 62 | ] 63 | } -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "texture_size": [32, 32], 5 | "textures": { 6 | "0": "hats/zombie_arrow_texture", 7 | "particle": "hats/zombie_arrow_texture" 8 | }, 9 | "elements": [ 10 | { 11 | "from": [-2, 9, 8], 12 | "to": [17, 10, 9], 13 | "rotation": {"angle": 22.5, "axis": "z", "origin": [12, 9, 7]}, 14 | "faces": { 15 | "north": {"uv": [0, 0, 9.5, 0.5], "texture": "#0"}, 16 | "east": {"uv": [4, 4.5, 4.5, 5], "texture": "#0"}, 17 | "south": {"uv": [0, 0.5, 9.5, 1], "texture": "#0"}, 18 | "west": {"uv": [4.5, 4, 5, 4.5], "texture": "#0"}, 19 | "up": {"uv": [9.5, 1.5, 0, 1], "texture": "#0"}, 20 | "down": {"uv": [9.5, 1.5, 0, 2], "texture": "#0"} 21 | } 22 | }, 23 | { 24 | "from": [-1, 8.5, 7.5], 25 | "to": [0, 10.5, 9.5], 26 | "rotation": {"angle": 22.5, "axis": "z", "origin": [12, 9, 7]}, 27 | "faces": { 28 | "north": {"uv": [2.5, 4.5, 3, 5.5], "texture": "#0"}, 29 | "east": {"uv": [1.5, 4.5, 2.5, 5.5], "texture": "#0"}, 30 | "south": {"uv": [3, 4.5, 3.5, 5.5], "texture": "#0"}, 31 | "west": {"uv": [4.5, 2, 5.5, 3], "texture": "#0"}, 32 | "up": {"uv": [5, 4, 4.5, 3], "texture": "#0"}, 33 | "down": {"uv": [4, 4.5, 3.5, 5.5], "texture": "#0"} 34 | } 35 | }, 36 | { 37 | "from": [15.7, 9.3, 8.5], 38 | "to": [18.7, 14.3, 8.5], 39 | "rotation": {"angle": 22.5, "axis": "z", "origin": [17.5, 11.5, 8.5]}, 40 | "faces": { 41 | "north": {"uv": [0, 2, 1.5, 4.5], "texture": "#0"}, 42 | "east": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, 43 | "south": {"uv": [1.5, 2, 3, 4.5], "texture": "#0"}, 44 | "west": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, 45 | "up": {"uv": [1.5, 0, 0, 0], "texture": "#0"}, 46 | "down": {"uv": [1.5, 0, 0, 0], "texture": "#0"} 47 | } 48 | }, 49 | { 50 | "from": [15.7, 11.8, 6], 51 | "to": [18.7, 11.8, 11], 52 | "rotation": {"angle": 22.5, "axis": "z", "origin": [17.5, 11.5, 8.5]}, 53 | "faces": { 54 | "north": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, 55 | "east": {"uv": [0, 0, 2.5, 0], "texture": "#0"}, 56 | "south": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, 57 | "west": {"uv": [0, 0, 2.5, 0], "texture": "#0"}, 58 | "up": {"uv": [4.5, 4.5, 3, 2], "texture": "#0"}, 59 | "down": {"uv": [1.5, 4.5, 0, 7], "texture": "#0"} 60 | } 61 | } 62 | ], 63 | "gui_light": "front", 64 | "display": { 65 | "head": { 66 | "translation": [0, 0, 3.5] 67 | } 68 | }, 69 | "groups": [ 70 | { 71 | "name": "Arrow", 72 | "origin": [0, 0, 0], 73 | "color": 0, 74 | "children": [0, 1, 2, 3] 75 | } 76 | ] 77 | } -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "textures": { 5 | "0": "hats/zombie_axe_texture", 6 | "particle": "hats/zombie_axe_texture" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [6, 0, 8], 11 | "to": [7, 14, 9], 12 | "faces": { 13 | "north": {"uv": [0, 0, 1, 14], "texture": "#0"}, 14 | "east": {"uv": [1, 0, 2, 14], "texture": "#0"}, 15 | "south": {"uv": [2, 0, 3, 14], "texture": "#0"}, 16 | "west": {"uv": [3, 0, 4, 14], "texture": "#0"}, 17 | "up": {"uv": [12, 9, 11, 8], "texture": "#0"}, 18 | "down": {"uv": [10, 11, 9, 12], "texture": "#0"} 19 | } 20 | }, 21 | { 22 | "from": [7, 8, 8], 23 | "to": [8, 13, 9], 24 | "faces": { 25 | "north": {"uv": [6, 8, 7, 13], "texture": "#0"}, 26 | "south": {"uv": [8, 6, 9, 11], "texture": "#0"}, 27 | "up": {"uv": [10, 11, 9, 10], "texture": "#0"}, 28 | "down": {"uv": [12, 0, 11, 1], "texture": "#0"} 29 | } 30 | }, 31 | { 32 | "from": [5, 8, 8], 33 | "to": [6, 13, 9], 34 | "faces": { 35 | "north": {"uv": [7, 8, 8, 13], "texture": "#0"}, 36 | "south": {"uv": [9, 0, 10, 5], "texture": "#0"}, 37 | "west": {"uv": [9, 5, 10, 10], "texture": "#0"}, 38 | "up": {"uv": [12, 2, 11, 1], "texture": "#0"}, 39 | "down": {"uv": [12, 2, 11, 3], "texture": "#0"} 40 | } 41 | }, 42 | { 43 | "from": [8, 6, 8], 44 | "to": [9, 14, 9], 45 | "faces": { 46 | "north": {"uv": [4, 0, 5, 8], "texture": "#0"}, 47 | "east": {"uv": [5, 0, 6, 8], "texture": "#0"}, 48 | "south": {"uv": [6, 0, 7, 8], "texture": "#0"}, 49 | "west": {"uv": [7, 0, 8, 8], "texture": "#0"}, 50 | "up": {"uv": [12, 4, 11, 3], "texture": "#0"}, 51 | "down": {"uv": [12, 4, 11, 5], "texture": "#0"} 52 | } 53 | }, 54 | { 55 | "from": [9, 7, 8], 56 | "to": [10, 13, 9], 57 | "faces": { 58 | "north": {"uv": [8, 0, 9, 6], "texture": "#0"}, 59 | "east": {"uv": [4, 8, 5, 14], "texture": "#0"}, 60 | "south": {"uv": [5, 8, 6, 14], "texture": "#0"}, 61 | "up": {"uv": [12, 6, 11, 5], "texture": "#0"}, 62 | "down": {"uv": [12, 6, 11, 7], "texture": "#0"} 63 | } 64 | }, 65 | { 66 | "from": [10, 8, 8], 67 | "to": [11, 12, 9], 68 | "faces": { 69 | "north": {"uv": [10, 0, 11, 4], "texture": "#0"}, 70 | "east": {"uv": [10, 4, 11, 8], "texture": "#0"}, 71 | "south": {"uv": [10, 8, 11, 12], "texture": "#0"}, 72 | "up": {"uv": [12, 8, 11, 7], "texture": "#0"}, 73 | "down": {"uv": [9, 11, 8, 12], "texture": "#0"} 74 | } 75 | } 76 | ], 77 | "gui_light": "front", 78 | "display": { 79 | "head": { 80 | "rotation": [0, 17.75, -24.25], 81 | "translation": [-9.25, 0.5, 0] 82 | } 83 | }, 84 | "groups": [ 85 | { 86 | "name": "Axe", 87 | "origin": [0, 0, 0], 88 | "color": 0, 89 | "children": [ 90 | { 91 | "name": "Handle", 92 | "origin": [0, 0, 0], 93 | "color": 0, 94 | "children": [0] 95 | }, 96 | { 97 | "name": "Head", 98 | "origin": [0, 0, 0], 99 | "color": 0, 100 | "children": [1, 2, 3, 4, 5] 101 | } 102 | ] 103 | } 104 | ] 105 | } -------------------------------------------------------------------------------- /assets/zombie_items/models/hats/zombie_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.6", 3 | "credit": "Made with Blockbench by Space", 4 | "textures": { 5 | "0": "hats/zombie_sword_texture", 6 | "particle": "hats/zombie_sword_texture" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [7.5, 1, 1], 11 | "to": [8.5, 2, 3], 12 | "faces": { 13 | "north": {"uv": [3, 12, 4, 13], "texture": "#0"}, 14 | "east": {"uv": [10, 10, 12, 11], "texture": "#0"}, 15 | "south": {"uv": [12, 5, 13, 6], "texture": "#0"}, 16 | "west": {"uv": [11, 0, 13, 1], "texture": "#0"}, 17 | "down": {"uv": [5, 11, 4, 13], "texture": "#0"} 18 | } 19 | }, 20 | { 21 | "from": [7.5, 2, 1], 22 | "to": [8.5, 3, 4], 23 | "faces": { 24 | "north": {"uv": [6, 12, 7, 13], "texture": "#0"}, 25 | "east": {"uv": [5, 1, 8, 2], "texture": "#0"}, 26 | "south": {"uv": [12, 10, 13, 11], "texture": "#0"}, 27 | "west": {"uv": [6, 5, 9, 6], "texture": "#0"}, 28 | "up": {"uv": [7, 9, 6, 6], "texture": "#0"}, 29 | "down": {"uv": [1, 7, 0, 10], "texture": "#0"} 30 | } 31 | }, 32 | { 33 | "from": [7.5, 3, 2], 34 | "to": [8.5, 4, 7], 35 | "faces": { 36 | "north": {"uv": [11, 12, 12, 13], "texture": "#0"}, 37 | "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, 38 | "south": {"uv": [12, 11, 13, 12], "texture": "#0"}, 39 | "west": {"uv": [0, 1, 5, 2], "texture": "#0"}, 40 | "up": {"uv": [1, 7, 0, 2], "texture": "#0"}, 41 | "down": {"uv": [2, 2, 1, 7], "texture": "#0"} 42 | } 43 | }, 44 | { 45 | "from": [7.5, 4, 3], 46 | "to": [8.5, 5, 6], 47 | "faces": { 48 | "north": {"uv": [12, 12, 13, 13], "texture": "#0"}, 49 | "east": {"uv": [7, 2, 10, 3], "texture": "#0"}, 50 | "south": {"uv": [0, 13, 1, 14], "texture": "#0"}, 51 | "west": {"uv": [7, 3, 10, 4], "texture": "#0"} 52 | } 53 | }, 54 | { 55 | "from": [7.5, 5, 2], 56 | "to": [8.5, 6, 7], 57 | "faces": { 58 | "north": {"uv": [13, 0, 14, 1], "texture": "#0"}, 59 | "east": {"uv": [2, 2, 7, 3], "texture": "#0"}, 60 | "south": {"uv": [1, 13, 2, 14], "texture": "#0"}, 61 | "west": {"uv": [2, 3, 7, 4], "texture": "#0"}, 62 | "up": {"uv": [3, 9, 2, 4], "texture": "#0"}, 63 | "down": {"uv": [4, 4, 3, 9], "texture": "#0"} 64 | } 65 | }, 66 | { 67 | "from": [7.5, 6, 2], 68 | "to": [8.5, 7, 4], 69 | "faces": { 70 | "north": {"uv": [13, 1, 14, 2], "texture": "#0"}, 71 | "east": {"uv": [11, 1, 13, 2], "texture": "#0"}, 72 | "south": {"uv": [2, 13, 3, 14], "texture": "#0"}, 73 | "west": {"uv": [11, 7, 13, 8], "texture": "#0"}, 74 | "up": {"uv": [6, 13, 5, 11], "texture": "#0"} 75 | } 76 | }, 77 | { 78 | "from": [7.5, 2, 5], 79 | "to": [8.5, 3, 7], 80 | "faces": { 81 | "north": {"uv": [13, 2, 14, 3], "texture": "#0"}, 82 | "east": {"uv": [11, 8, 13, 9], "texture": "#0"}, 83 | "south": {"uv": [3, 13, 4, 14], "texture": "#0"}, 84 | "west": {"uv": [11, 9, 13, 10], "texture": "#0"}, 85 | "down": {"uv": [11, 11, 10, 13], "texture": "#0"} 86 | } 87 | }, 88 | { 89 | "from": [7.5, 6, 5], 90 | "to": [8.5, 7, 8], 91 | "faces": { 92 | "north": {"uv": [11, 11, 12, 12], "texture": "#0"}, 93 | "east": {"uv": [4, 4, 7, 5], "texture": "#0"}, 94 | "south": {"uv": [2, 12, 3, 13], "texture": "#0"}, 95 | "west": {"uv": [5, 0, 8, 1], "texture": "#0"}, 96 | "up": {"uv": [5, 8, 4, 5], "texture": "#0"}, 97 | "down": {"uv": [6, 5, 5, 8], "texture": "#0"} 98 | } 99 | }, 100 | { 101 | "from": [7.5, 7, 6], 102 | "to": [8.5, 8, 9], 103 | "faces": { 104 | "north": {"uv": [13, 3, 14, 4], "texture": "#0"}, 105 | "east": {"uv": [7, 4, 10, 5], "texture": "#0"}, 106 | "south": {"uv": [4, 13, 5, 14], "texture": "#0"}, 107 | "west": {"uv": [7, 6, 10, 7], "texture": "#0"}, 108 | "up": {"uv": [2, 10, 1, 7], "texture": "#0"}, 109 | "down": {"uv": [8, 7, 7, 10], "texture": "#0"} 110 | } 111 | }, 112 | { 113 | "from": [7.5, 8, 7], 114 | "to": [8.5, 9, 10], 115 | "faces": { 116 | "north": {"uv": [13, 4, 14, 5], "texture": "#0"}, 117 | "east": {"uv": [8, 0, 11, 1], "texture": "#0"}, 118 | "south": {"uv": [5, 13, 6, 14], "texture": "#0"}, 119 | "west": {"uv": [8, 1, 11, 2], "texture": "#0"}, 120 | "up": {"uv": [5, 11, 4, 8], "texture": "#0"}, 121 | "down": {"uv": [6, 8, 5, 11], "texture": "#0"} 122 | } 123 | }, 124 | { 125 | "from": [7.5, 9, 8], 126 | "to": [8.5, 10, 11], 127 | "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 1]}, 128 | "faces": { 129 | "north": {"uv": [13, 5, 14, 6], "texture": "#0"}, 130 | "east": {"uv": [8, 7, 11, 8], "texture": "#0"}, 131 | "south": {"uv": [6, 13, 7, 14], "texture": "#0"}, 132 | "west": {"uv": [8, 8, 11, 9], "texture": "#0"}, 133 | "up": {"uv": [3, 12, 2, 9], "texture": "#0"}, 134 | "down": {"uv": [4, 9, 3, 12], "texture": "#0"} 135 | } 136 | }, 137 | { 138 | "from": [7.5, 10, 9], 139 | "to": [8.5, 11, 12], 140 | "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 2]}, 141 | "faces": { 142 | "north": {"uv": [13, 6, 14, 7], "texture": "#0"}, 143 | "east": {"uv": [9, 5, 12, 6], "texture": "#0"}, 144 | "south": {"uv": [7, 13, 8, 14], "texture": "#0"}, 145 | "west": {"uv": [8, 9, 11, 10], "texture": "#0"}, 146 | "up": {"uv": [7, 12, 6, 9], "texture": "#0"}, 147 | "down": {"uv": [1, 10, 0, 13], "texture": "#0"} 148 | } 149 | }, 150 | { 151 | "from": [7.5, 11, 10], 152 | "to": [8.5, 12, 13], 153 | "rotation": {"angle": 0, "axis": "y", "origin": [0, 3, 3]}, 154 | "faces": { 155 | "north": {"uv": [13, 7, 14, 8], "texture": "#0"}, 156 | "east": {"uv": [10, 2, 13, 3], "texture": "#0"}, 157 | "south": {"uv": [8, 13, 9, 14], "texture": "#0"}, 158 | "west": {"uv": [10, 3, 13, 4], "texture": "#0"}, 159 | "up": {"uv": [2, 13, 1, 10], "texture": "#0"}, 160 | "down": {"uv": [8, 10, 7, 13], "texture": "#0"} 161 | } 162 | }, 163 | { 164 | "from": [7.5, 12, 11], 165 | "to": [8.5, 13, 14], 166 | "rotation": {"angle": 0, "axis": "y", "origin": [0, 4, 4]}, 167 | "faces": { 168 | "north": {"uv": [13, 8, 14, 9], "texture": "#0"}, 169 | "east": {"uv": [10, 4, 13, 5], "texture": "#0"}, 170 | "south": {"uv": [9, 13, 10, 14], "texture": "#0"}, 171 | "west": {"uv": [10, 6, 13, 7], "texture": "#0"}, 172 | "up": {"uv": [9, 13, 8, 10], "texture": "#0"}, 173 | "down": {"uv": [10, 10, 9, 13], "texture": "#0"} 174 | } 175 | } 176 | ], 177 | "gui_light": "front", 178 | "display": { 179 | "head": { 180 | "rotation": [21, -26, 12], 181 | "translation": [1.75, 5.25, -6.5] 182 | } 183 | }, 184 | "groups": [ 185 | { 186 | "name": "Sword", 187 | "origin": [0, 0, 0], 188 | "color": 0, 189 | "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] 190 | } 191 | ] 192 | } --------------------------------------------------------------------------------