35 Commits
v1.1.3 ... main

Author SHA1 Message Date
de761b713e Update to version 1.2.6 [skip ci] 2025-06-23 22:58:17 +00:00
3adab12808 Remove unnecessary blank lines in gold_nugget.json for cleaner formatting
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 19s
2025-06-23 21:32:36 +02:00
567d624f32 Update to version 1.2.5 [skip ci] 2025-06-23 19:22:22 +00:00
c224f614ad Refactor code structure for improved readability and maintainability
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 56s
2025-06-23 21:21:20 +02:00
21c48a6486 Update to version 1.2.4 [skip ci] 2025-06-23 00:31:43 +00:00
917753f7d1 Fix rebase before committing updates to ensure latest changes are included
Some checks failed
Texture Pack Packaging and Release / package-and-release (push) Failing after 16s
2025-06-23 02:31:24 +02:00
909c0436cf Merge branch 'main' of https://git.devbeni.lol/MineDivinity/pack
Some checks failed
Texture Pack Packaging and Release / package-and-release (push) Failing after 16s
2025-06-23 02:30:07 +02:00
9714851005 Refactor release workflow to streamline version tagging and update latest release handling 2025-06-23 02:30:06 +02:00
d3600f7200 Update to version 1.2.3 [skip ci] 2025-06-23 00:21:32 +00:00
985036e1e7 Remove obsolete MineDivinity-Pack.zip file
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 20s
2025-06-23 02:21:10 +02:00
397a2fd54d Fix GUI font height values for auth, lobby, skyblock, and skypvp 2025-06-23 02:21:02 +02:00
b40cc92331 Update to version 1.2.2 [skip ci] 2025-06-23 00:04:26 +00:00
9656556f83 Remove obsolete MineDivinity-Pack.zip file
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 19s
2025-06-23 02:04:06 +02:00
3afe17a9db Update to version 1.2.1 [skip ci] 2025-06-22 23:59:15 +00:00
2d70e0bd05 Fix font ascent and height values for GUI elements
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 17s
2025-06-23 01:58:57 +02:00
244402e39c Update to version 1.2.0 [skip ci] 2025-06-22 23:50:31 +00:00
d22f9c67c4 Refactor font assets and update texture paths for ranks
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 19s
2025-06-23 01:50:06 +02:00
32caef2d8f Update to version 1.1.9 [skip ci] 2025-06-22 23:27:59 +00:00
1c77e172aa Remove unnecessary files from commit in version update process
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 19s
2025-06-23 01:27:40 +02:00
85e69a5215 Update to version 1.1.8 [skip ci] 2025-06-22 23:26:47 +00:00
e95c3b26cf Update versioning process to include additional files in commit
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 19s
2025-06-23 01:26:27 +02:00
268c5997f0 Update to version 1.1.7 [skip ci] 2025-06-22 23:16:18 +00:00
9d7cc920a9 Merge branch 'main' of https://git.devbeni.lol/MineDivinity/pack
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 18s
2025-06-23 01:15:59 +02:00
44a64b5b7d Update pack.mcmeta with new version formatting 2025-06-23 01:15:58 +02:00
0fefe5958f Update to version 1.1.6 [skip ci] 2025-06-22 23:07:47 +00:00
68103779fd Update pack_format to 71 in pack.mcmeta
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 8s
2025-06-23 01:07:36 +02:00
b39e0bf064 Fix ascent values in font JSON and update pack.mcmeta description format 2025-06-23 01:06:35 +02:00
337368bd1d Update to version 1.1.5 [skip ci] 2025-06-22 22:46:19 +00:00
540711a4c7 Merge branch 'main' of https://git.devbeni.lol/MineDivinity/pack
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 9s
2025-06-23 00:46:10 +02:00
eb499e6f23 Revert pack_format to 9 in pack.mcmeta 2025-06-23 00:42:13 +02:00
3b6ca67de9 Remove Hungarian content from README.md 2025-06-23 00:39:11 +02:00
712e672dd9 Update to version 1.1.4 [skip ci] 2025-06-22 22:36:48 +00:00
7079afd1e2 Merge branch 'main' of https://git.devbeni.lol/MineDivinity/pack
All checks were successful
Texture Pack Packaging and Release / package-and-release (push) Successful in 9s
2025-06-23 00:36:33 +02:00
f54ac0150b Update font bitmap files and standardize ascent and height values for ranks 2025-06-23 00:32:18 +02:00
b5a13f9507 Update to version 1.1.3 [skip ci] 2025-06-22 21:17:27 +00:00
11 changed files with 1205 additions and 112 deletions

View File

@ -53,6 +53,12 @@ jobs:
echo "New version: $NEW_VERSION" >> versions.txt
echo "New version calculated: $NEW_VERSION"
- name: Update pack.mcmeta
run: |
sudo apt-get update && sudo apt-get install -y jq
jq --arg version "v${{ env.VERSION }}" '.pack.description = [{"text": "MineDivinity Pack ", "bold": true, "color": "#FF5555"}, {"text": $version, "bold": true, "color": "#FFAA00"}]' pack/pack.mcmeta > pack/pack.mcmeta.tmp && mv pack/pack.mcmeta.tmp pack/pack.mcmeta
echo "pack.mcmeta updated with version v${{ env.VERSION }}"
- name: Package texture pack
run: |
# Create ZIP with pack directory contents at root level
@ -83,10 +89,10 @@ jobs:
git tag -a v${{ env.VERSION }} -m "Release v${{ env.VERSION }}"
git push origin v${{ env.VERSION }}
- name: Commit version update
- name: Commit updates
run: |
git pull origin main
git add versions.txt
git add versions.txt pack/pack.mcmeta MineDivinity-Pack.zip
git commit -m "Update to version ${{ env.VERSION }} [skip ci]"
git push origin main

View File

@ -0,0 +1 @@
4c7587735fbad76b0078c9d224fa815b680885ba MineDivinity-Pack.zip

BIN
MineDivinity-Pack.zip Normal file

Binary file not shown.

View File

@ -1,28 +1 @@
# resource-pack
## Ikonok és Rangok
Ez a resource pack egyedi karaktereket ad a játékhoz a [pack/assets/minecraft/font/default.json](pack/assets/minecraft/font/default.json) fájl segítségével.
### GUI Ikonok
| Fájl | Karakter | Leírás |
| --- | --- | --- |
| `gui/auth.png` | `` | Auth GUI ikon |
| `gui/lobby.png` | `` | Lobby GUI ikon |
| `gui/skypvp.png` | `` | SkyPvP GUI ikon |
| `gui/skyblock.png` | `` | SkyBlock GUI ikon |
### Rangok
| Fájl | Karakter | Leírás |
| --- | --- | --- |
| `ranks/admin.png` | `` | Admin rang |
| `ranks/admin+.png` | `` | Admin+ rang |
| `ranks/developer.png` | `` | Developer rang |
| `ranks/helper.png` | `` | Helper rang |
| `ranks/manager.png` | `` | Manager rang |
| `ranks/staff.png` | `` | Staff rang |
| `ranks/tulaj.png` | `` | Tulajdonos rang |
https://thewilley.github.io/Minecraft-Glyph-Database/#accented-U+1F40
# resource-pack

View File

@ -1,102 +1,102 @@
{
"providers": [
{
"type": "bitmap",
"file": "minecraft:gui/auth.png",
"ascent": 16,
"height": 16,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/lobby.png",
"ascent": 16,
"height": 16,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/skypvp.png",
"ascent": 16,
"height": 16,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/skyblock.png",
"ascent": 16,
"height": 16,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/admin.png",
"ascent": 8,
"height": 8,
"ascent": 7,
"height": 7,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/helper.png",
"ascent": 8,
"height": 8,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/tulaj.png",
"ascent": 8,
"height": 8,
"chars": [
""
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/admin+.png",
"ascent": 8,
"height": 8,
"ascent": 7,
"height": 7,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/manager.png",
"ascent": 8,
"height": 8,
"chars": [
""
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/developer.png",
"ascent": 8,
"height": 8,
"ascent": 7,
"height": 7,
"chars": [
""
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/helper.png",
"ascent": 7,
"height": 7,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/manager.png",
"ascent": 7,
"height": 7,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/staff.png",
"ascent": 8,
"height": 8,
"ascent": 7,
"height": 7,
"chars": [
""
""
]
},
{
"type": "bitmap",
"file": "minecraft:ranks/tulaj.png",
"ascent": 7,
"height": 7,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/auth.png",
"ascent": 10,
"height": 11,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/lobby.png",
"ascent": 10,
"height": 11,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/skyblock.png",
"ascent": 10,
"height": 11,
"chars": [
""
]
},
{
"type": "bitmap",
"file": "minecraft:gui/skypvp.png",
"ascent": 10,
"height": 11,
"chars": [
""
]
}
]

View File

@ -0,0 +1,11 @@
{
"parent": "item/generated",
"textures": {
"layer0": "item/gold_nugget"
},
"overrides": [
{"predicate": {"custom_model_data":1000}, "model": "item/spelleffects/volcano"},
{"predicate": {"custom_model_data":1001}, "model": "item/spelleffects/boulder"}
]
}

View File

@ -0,0 +1,335 @@
{
"credit": "Made with Blockbench",
"texture_size": [64, 64],
"textures": {
"1": "items/spelleffects/boulder"
},
"elements": [
{
"from": [5.2, 2.2, 17.8],
"to": [10.8, 7.8, 19.2],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1.008, 10.008, 1.992, 10.992], "texture": "#1"},
"east": {"uv": [7.758, 13.508, 7.992, 14.492], "texture": "#1"},
"south": {"uv": [2.008, 10.008, 2.992, 10.992], "texture": "#1"},
"west": {"uv": [8.008, 13.508, 8.242, 14.492], "texture": "#1"},
"up": {"uv": [14.492, 7.992, 13.508, 7.758], "texture": "#1"},
"down": {"uv": [14.492, 8.008, 13.508, 8.242], "texture": "#1"}
}
},
{
"from": [2.4, -0.6, 16.4],
"to": [13.6, 10.6, 17.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [4.008, 4.008, 5.992, 5.992], "texture": "#1"},
"east": {"uv": [12.508, 11.758, 12.742, 13.742], "texture": "#1"},
"south": {"uv": [0.008, 6.008, 1.992, 7.992], "texture": "#1"},
"west": {"uv": [0.008, 12.758, 0.242, 14.742], "texture": "#1"},
"up": {"uv": [14.742, 0.242, 12.758, 0.008], "texture": "#1"},
"down": {"uv": [14.742, 0.258, 12.758, 0.492], "texture": "#1"}
}
},
{
"from": [-0.4, -0.6, 13.6],
"to": [2.4, 10.6, 16.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9.508, 11.258, 9.992, 13.242], "texture": "#1"},
"east": {"uv": [10.008, 11.258, 10.492, 13.242], "texture": "#1"},
"south": {"uv": [10.508, 11.258, 10.992, 13.242], "texture": "#1"},
"west": {"uv": [11.008, 11.258, 11.492, 13.242], "texture": "#1"},
"up": {"uv": [1.742, 14.742, 1.258, 14.258], "texture": "#1"},
"down": {"uv": [14.742, 4.008, 14.258, 4.492], "texture": "#1"}
}
},
{
"from": [-0.4, 10.6, 2.4],
"to": [2.4, 13.4, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [7.258, 13.758, 7.742, 14.242], "texture": "#1"},
"east": {"uv": [10.758, 0.008, 12.742, 0.492], "texture": "#1"},
"south": {"uv": [8.258, 13.758, 8.742, 14.242], "texture": "#1"},
"west": {"uv": [10.758, 0.508, 12.742, 0.992], "texture": "#1"},
"up": {"uv": [4.992, 12.492, 4.508, 10.508], "texture": "#1"},
"down": {"uv": [5.492, 10.508, 5.008, 12.492], "texture": "#1"}
}
},
{
"from": [2.4, 10.6, 13.6],
"to": [13.6, 13.4, 16.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1.008, 11.008, 2.992, 11.492], "texture": "#1"},
"east": {"uv": [14.008, 1.008, 14.492, 1.492], "texture": "#1"},
"south": {"uv": [11.008, 3.008, 12.992, 3.492], "texture": "#1"},
"west": {"uv": [14.008, 2.508, 14.492, 2.992], "texture": "#1"},
"up": {"uv": [12.992, 3.992, 11.008, 3.508], "texture": "#1"},
"down": {"uv": [12.992, 4.008, 11.008, 4.492], "texture": "#1"}
}
},
{
"from": [2.4, 13.4, 2.4],
"to": [13.6, 14.8, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12.008, 2.508, 13.992, 2.742], "texture": "#1"},
"east": {"uv": [12.008, 2.758, 13.992, 2.992], "texture": "#1"},
"south": {"uv": [12.508, 5.008, 14.492, 5.242], "texture": "#1"},
"west": {"uv": [12.508, 5.258, 14.492, 5.492], "texture": "#1"},
"up": {"uv": [3.992, 1.992, 2.008, 0.008], "texture": "#1"},
"down": {"uv": [3.992, 2.008, 2.008, 3.992], "texture": "#1"}
}
},
{
"from": [5.2, 14.8, 5.2],
"to": [10.8, 16.2, 10.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8.258, 13.508, 9.242, 13.742], "texture": "#1"},
"east": {"uv": [13.508, 9.508, 14.492, 9.742], "texture": "#1"},
"south": {"uv": [9.758, 13.508, 10.742, 13.742], "texture": "#1"},
"west": {"uv": [13.508, 9.758, 14.492, 9.992], "texture": "#1"},
"up": {"uv": [6.742, 10.992, 5.758, 10.008], "texture": "#1"},
"down": {"uv": [7.742, 10.008, 6.758, 10.992], "texture": "#1"}
}
},
{
"from": [2.4, 10.6, -0.4],
"to": [13.6, 13.4, 2.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10.258, 7.758, 12.242, 8.242], "texture": "#1"},
"east": {"uv": [1.258, 13.758, 1.742, 14.242], "texture": "#1"},
"south": {"uv": [10.508, 5.008, 12.492, 5.492], "texture": "#1"},
"west": {"uv": [6.758, 13.758, 7.242, 14.242], "texture": "#1"},
"up": {"uv": [12.492, 5.992, 10.508, 5.508], "texture": "#1"},
"down": {"uv": [12.492, 6.008, 10.508, 6.492], "texture": "#1"}
}
},
{
"from": [2.4, -0.6, -1.8],
"to": [13.6, 10.6, -0.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2.008, 4.008, 3.992, 5.992], "texture": "#1"},
"east": {"uv": [5.008, 12.508, 5.242, 14.492], "texture": "#1"},
"south": {"uv": [4.008, 2.008, 5.992, 3.992], "texture": "#1"},
"west": {"uv": [5.258, 12.508, 5.492, 14.492], "texture": "#1"},
"up": {"uv": [14.492, 11.492, 12.508, 11.258], "texture": "#1"},
"down": {"uv": [14.492, 11.508, 12.508, 11.742], "texture": "#1"}
}
},
{
"from": [-0.4, -0.6, -0.4],
"to": [2.4, 10.6, 2.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [3.008, 10.008, 3.492, 11.992], "texture": "#1"},
"east": {"uv": [10.508, 3.008, 10.992, 4.992], "texture": "#1"},
"south": {"uv": [3.508, 10.508, 3.992, 12.492], "texture": "#1"},
"west": {"uv": [4.008, 10.508, 4.492, 12.492], "texture": "#1"},
"up": {"uv": [9.742, 8.742, 9.258, 8.258], "texture": "#1"},
"down": {"uv": [9.992, 6.758, 9.508, 7.242], "texture": "#1"}
}
},
{
"from": [5.2, 2.2, -3.2],
"to": [10.8, 7.8, -1.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10.258, 6.758, 11.242, 7.742], "texture": "#1"},
"east": {"uv": [12.008, 13.508, 12.242, 14.492], "texture": "#1"},
"south": {"uv": [9.758, 10.258, 10.742, 11.242], "texture": "#1"},
"west": {"uv": [12.758, 13.508, 12.992, 14.492], "texture": "#1"},
"up": {"uv": [14.492, 10.242, 13.508, 10.008], "texture": "#1"},
"down": {"uv": [14.492, 10.258, 13.508, 10.492], "texture": "#1"}
}
},
{
"from": [-3.2, 2.2, 5.2],
"to": [-1.8, 7.8, 10.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9.258, 13.508, 9.492, 14.492], "texture": "#1"},
"east": {"uv": [7.758, 10.008, 8.742, 10.992], "texture": "#1"},
"south": {"uv": [11.258, 13.508, 11.492, 14.492], "texture": "#1"},
"west": {"uv": [8.758, 10.008, 9.742, 10.992], "texture": "#1"},
"up": {"uv": [11.742, 14.492, 11.508, 13.508], "texture": "#1"},
"down": {"uv": [11.992, 13.508, 11.758, 14.492], "texture": "#1"}
}
},
{
"from": [-1.8, -0.6, 2.4],
"to": [-0.4, 10.6, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [2.758, 12.508, 2.992, 14.492], "texture": "#1"},
"east": {"uv": [0.008, 0.008, 1.992, 1.992], "texture": "#1"},
"south": {"uv": [4.258, 12.508, 4.492, 14.492], "texture": "#1"},
"west": {"uv": [0.008, 2.008, 1.992, 3.992], "texture": "#1"},
"up": {"uv": [4.742, 14.492, 4.508, 12.508], "texture": "#1"},
"down": {"uv": [4.992, 12.508, 4.758, 14.492], "texture": "#1"}
}
},
{
"from": [2.4, -3.4, -0.4],
"to": [13.6, -0.6, 2.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10.758, 8.258, 12.742, 8.742], "texture": "#1"},
"east": {"uv": [8.758, 13.758, 9.242, 14.242], "texture": "#1"},
"south": {"uv": [10.758, 8.758, 12.742, 9.242], "texture": "#1"},
"west": {"uv": [9.758, 13.758, 10.242, 14.242], "texture": "#1"},
"up": {"uv": [12.742, 9.742, 10.758, 9.258], "texture": "#1"},
"down": {"uv": [12.742, 9.758, 10.758, 10.242], "texture": "#1"}
}
},
{
"from": [-0.4, -3.4, 2.4],
"to": [2.4, -0.6, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [10.258, 13.758, 10.742, 14.242], "texture": "#1"},
"east": {"uv": [10.758, 10.258, 12.742, 10.742], "texture": "#1"},
"south": {"uv": [13.758, 13.508, 14.242, 13.992], "texture": "#1"},
"west": {"uv": [10.758, 10.758, 12.742, 11.242], "texture": "#1"},
"up": {"uv": [0.492, 12.742, 0.008, 10.758], "texture": "#1"},
"down": {"uv": [0.992, 10.758, 0.508, 12.742], "texture": "#1"}
}
},
{
"from": [2.4, -4.8, 2.4],
"to": [13.6, -3.4, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [12.508, 5.508, 14.492, 5.742], "texture": "#1"},
"east": {"uv": [12.508, 5.758, 14.492, 5.992], "texture": "#1"},
"south": {"uv": [12.508, 6.008, 14.492, 6.242], "texture": "#1"},
"west": {"uv": [12.508, 6.258, 14.492, 6.492], "texture": "#1"},
"up": {"uv": [1.992, 5.992, 0.008, 4.008], "texture": "#1"},
"down": {"uv": [5.992, 0.008, 4.008, 1.992], "texture": "#1"}
}
},
{
"from": [5.2, -6.2, 5.2],
"to": [10.8, -4.8, 10.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [13.508, 6.758, 14.492, 6.992], "texture": "#1"},
"east": {"uv": [13.508, 7.008, 14.492, 7.242], "texture": "#1"},
"south": {"uv": [13.508, 7.258, 14.492, 7.492], "texture": "#1"},
"west": {"uv": [13.508, 7.508, 14.492, 7.742], "texture": "#1"},
"up": {"uv": [10.742, 9.242, 9.758, 8.258], "texture": "#1"},
"down": {"uv": [10.742, 9.258, 9.758, 10.242], "texture": "#1"}
}
},
{
"from": [13.6, -3.4, 2.4],
"to": [16.4, -0.6, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6.758, 14.258, 7.242, 14.742], "texture": "#1"},
"east": {"uv": [11.258, 7.008, 13.242, 7.492], "texture": "#1"},
"south": {"uv": [7.258, 14.258, 7.742, 14.742], "texture": "#1"},
"west": {"uv": [1.008, 11.508, 2.992, 11.992], "texture": "#1"},
"up": {"uv": [11.992, 2.992, 11.508, 1.008], "texture": "#1"},
"down": {"uv": [5.992, 11.508, 5.508, 13.492], "texture": "#1"}
}
},
{
"from": [16.4, -0.6, 2.4],
"to": [17.8, 10.6, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [0.258, 12.758, 0.492, 14.742], "texture": "#1"},
"east": {"uv": [6.008, 0.008, 7.992, 1.992], "texture": "#1"},
"south": {"uv": [0.508, 12.758, 0.742, 14.742], "texture": "#1"},
"west": {"uv": [2.008, 6.008, 3.992, 7.992], "texture": "#1"},
"up": {"uv": [0.992, 14.742, 0.758, 12.758], "texture": "#1"},
"down": {"uv": [12.992, 8.258, 12.758, 10.242], "texture": "#1"}
}
},
{
"from": [13.6, -0.6, -0.4],
"to": [16.4, 10.6, 2.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [6.008, 11.508, 6.492, 13.492], "texture": "#1"},
"east": {"uv": [6.508, 11.508, 6.992, 13.492], "texture": "#1"},
"south": {"uv": [7.008, 11.508, 7.492, 13.492], "texture": "#1"},
"west": {"uv": [7.508, 11.508, 7.992, 13.492], "texture": "#1"},
"up": {"uv": [8.742, 14.742, 8.258, 14.258], "texture": "#1"},
"down": {"uv": [14.742, 8.258, 14.258, 8.742], "texture": "#1"}
}
},
{
"from": [17.8, 2.2, 5.2],
"to": [19.2, 7.8, 10.8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [1.758, 13.758, 1.992, 14.742], "texture": "#1"},
"east": {"uv": [12.008, 1.508, 12.992, 2.492], "texture": "#1"},
"south": {"uv": [12.508, 13.758, 12.742, 14.742], "texture": "#1"},
"west": {"uv": [1.008, 12.508, 1.992, 13.492], "texture": "#1"},
"up": {"uv": [10.742, 15.242, 10.508, 14.258], "texture": "#1"},
"down": {"uv": [10.992, 14.258, 10.758, 15.242], "texture": "#1"}
}
},
{
"from": [13.6, 10.6, 2.4],
"to": [16.4, 13.4, 13.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [9.508, 14.258, 9.992, 14.742], "texture": "#1"},
"east": {"uv": [1.008, 12.008, 2.992, 12.492], "texture": "#1"},
"south": {"uv": [10.008, 14.258, 10.492, 14.742], "texture": "#1"},
"west": {"uv": [12.008, 1.008, 13.992, 1.492], "texture": "#1"},
"up": {"uv": [3.492, 13.992, 3.008, 12.008], "texture": "#1"},
"down": {"uv": [12.492, 11.258, 12.008, 13.242], "texture": "#1"}
}
},
{
"from": [13.6, -0.6, 13.6],
"to": [16.4, 10.6, 16.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [8.008, 11.508, 8.492, 13.492], "texture": "#1"},
"east": {"uv": [8.508, 11.508, 8.992, 13.492], "texture": "#1"},
"south": {"uv": [9.008, 11.508, 9.492, 13.492], "texture": "#1"},
"west": {"uv": [11.508, 11.258, 11.992, 13.242], "texture": "#1"},
"up": {"uv": [9.242, 14.742, 8.758, 14.258], "texture": "#1"},
"down": {"uv": [14.742, 8.758, 14.258, 9.242], "texture": "#1"}
}
},
{
"from": [2.4, -3.4, 13.6],
"to": [13.6, -0.6, 16.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]},
"faces": {
"north": {"uv": [11.008, 4.508, 12.992, 4.992], "texture": "#1"},
"east": {"uv": [3.008, 14.008, 3.492, 14.492], "texture": "#1"},
"south": {"uv": [5.508, 11.008, 7.492, 11.492], "texture": "#1"},
"west": {"uv": [13.758, 14.008, 14.242, 14.492], "texture": "#1"},
"up": {"uv": [9.492, 11.492, 7.508, 11.008], "texture": "#1"},
"down": {"uv": [13.242, 6.508, 11.258, 6.992], "texture": "#1"}
}
}
],
"display": {
"head": {
"translation": [0, -5.5, 3.5],
"scale": [4, 4, 4]
}
},
"groups": [
{
"name": "large",
"origin": [24, -5, 13],
"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]
}
]
}

View File

@ -0,0 +1,744 @@
{
"credit": "Made with Blockbench",
"textures": {
"0": "block/magma",
"1": "block/lava_flow",
"2": "block/lava_still",
"3": "block/blackstone",
"particle": "block/magma"
},
"elements": [
{
"from": [6.4, 13.47517, -4.4207],
"to": [9.6, 19.87517, -1.7007],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 1, 2], "texture": "#1"},
"east": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 1, 2], "texture": "#1"},
"west": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"down": {"uv": [0, 0, 1, 0.85], "rotation": 180, "texture": "#1"}
}
},
{
"from": [16.82509, 9.07312, 5.70666],
"to": [19.54509, 15.47312, 8.90666],
"rotation": {"angle": 22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"east": {"uv": [0, 0, 1, 2], "texture": "#1"},
"south": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"west": {"uv": [0, 0, 1, 2], "texture": "#1"},
"up": {"uv": [0, 0, 1, 0.85], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 1, 0.85], "rotation": 90, "texture": "#1"}
}
},
{
"from": [7.2, 7.07517, -4.4207],
"to": [10.4, 13.47517, -1.7007],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 1, 2], "texture": "#1"},
"east": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 1, 2], "texture": "#1"},
"west": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"down": {"uv": [0, 0, 1, 0.85], "rotation": 180, "texture": "#1"}
}
},
{
"from": [16.82509, 2.67312, 7.22666],
"to": [19.54509, 9.07312, 10.42666],
"rotation": {"angle": 22.5, "axis": "z", "origin": [8, 10.59635, 8.72]},
"faces": {
"north": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"east": {"uv": [0, 0, 1, 2], "texture": "#1"},
"south": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"west": {"uv": [0, 0, 1, 2], "texture": "#1"},
"up": {"uv": [0, 0, 1, 0.85], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 1, 0.85], "rotation": 90, "texture": "#1"}
}
},
{
"from": [9.12, 2.49997, -3.79293],
"to": [11.36, 8.89997, -1.07293],
"rotation": {"angle": 45, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 0.7, 2], "texture": "#1"},
"east": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 0.7, 2], "texture": "#1"},
"west": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0, 0.7, 0.85], "texture": "#1"},
"down": {"uv": [0, 0, 0.7, 0.85], "rotation": 180, "texture": "#1"}
}
},
{
"from": [13.70374, -5.63398, 9.14666],
"to": [16.42374, 0.76602, 11.38666],
"rotation": {"angle": 45, "axis": "z", "origin": [8, 10.59635, 8.72]},
"faces": {
"north": {"uv": [0, 0, 2, 0.85], "rotation": 270, "texture": "#1"},
"east": {"uv": [0, 0, 0.7, 2], "texture": "#1"},
"south": {"uv": [0, 0, 2, 0.85], "rotation": 90, "texture": "#1"},
"west": {"uv": [0, 0, 0.7, 2], "texture": "#1"},
"up": {"uv": [0, 0, 0.7, 0.85], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 0.7, 0.85], "rotation": 90, "texture": "#1"}
}
},
{
"from": [7.52, 4.09997, -3.79293],
"to": [9.12, 8.89997, -1.07293],
"rotation": {"angle": 45, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 0.5, 1.5], "texture": "#1"},
"east": {"uv": [0, 0, 1.5, 0.85], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 0.5, 1.5], "texture": "#1"},
"west": {"uv": [0, 0, 1.5, 0.85], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0, 0.5, 0.85], "texture": "#1"},
"down": {"uv": [0, 0, 0.5, 0.85], "rotation": 180, "texture": "#1"}
}
},
{
"from": [13.70374, -4.03398, 7.54666],
"to": [16.42374, 0.76602, 9.14666],
"rotation": {"angle": 45, "axis": "z", "origin": [8, 10.59635, 8.72]},
"faces": {
"north": {"uv": [0, 0, 1.5, 0.85], "rotation": 270, "texture": "#1"},
"east": {"uv": [0, 0, 0.5, 1.5], "texture": "#1"},
"south": {"uv": [0, 0, 1.5, 0.85], "rotation": 90, "texture": "#1"},
"west": {"uv": [0, 0, 0.5, 1.5], "texture": "#1"},
"up": {"uv": [0, 0, 0.5, 0.85], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 0.5, 0.85], "rotation": 90, "texture": "#1"}
}
},
{
"from": [9.76, -2.30003, -3.79293],
"to": [12, 2.49997, -1.07293],
"rotation": {"angle": 45, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 0.7, 1.5], "texture": "#1"},
"east": {"uv": [0, 0, 1.5, 0.85], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 0.7, 1.5], "texture": "#1"},
"west": {"uv": [0, 0, 1.5, 0.85], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0, 0.7, 0.85], "texture": "#1"},
"down": {"uv": [0, 0, 0.7, 0.85], "rotation": 180, "texture": "#1"}
}
},
{
"from": [13.70374, -10.43398, 9.78666],
"to": [16.42374, -5.63398, 12.02666],
"rotation": {"angle": 45, "axis": "z", "origin": [8, 10.59635, 8.72]},
"faces": {
"north": {"uv": [0, 0, 1.5, 0.85], "rotation": 270, "texture": "#1"},
"east": {"uv": [0, 0, 0.7, 1.5], "texture": "#1"},
"south": {"uv": [0, 0, 1.5, 0.85], "rotation": 90, "texture": "#1"},
"west": {"uv": [0, 0, 0.7, 1.5], "texture": "#1"},
"up": {"uv": [0, 0, 0.7, 0.85], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 0.7, 0.85], "rotation": 90, "texture": "#1"}
}
},
{
"from": [-1.6, -2.21104, -3.50518],
"to": [17.6, 16.98896, 2.09482],
"rotation": {"angle": 45, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
"east": {"uv": [10, 0, 15, 16], "texture": "#3"},
"south": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#3"},
"west": {"uv": [11, 0, 16, 16], "texture": "#3"},
"up": {"uv": [0, 0, 9, 16], "rotation": 90, "texture": "#0"},
"down": {"uv": [0, 12, 16, 16], "texture": "#3"}
}
},
{
"from": [10.536, -10.34499, -1.6],
"to": [16.136, 8.85501, 17.6],
"rotation": {"angle": 45, "axis": "z", "origin": [8, 10.59635, 8.69334]},
"faces": {
"north": {"uv": [11, 0, 16, 16], "texture": "#3"},
"east": {"uv": [0, 0, 16, 16], "texture": "#3"},
"south": {"uv": [0, 0, 5, 16], "texture": "#3"},
"west": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 9, 16], "texture": "#0"},
"down": {"uv": [0, 12, 16, 16], "rotation": 90, "texture": "#3"}
}
},
{
"from": [9.6, 9.0343, -4.11891],
"to": [16, 21.0343, -1.71891],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [8, 3, 16, 16], "texture": "#3"},
"east": {"uv": [0, 0, 3, 13], "texture": "#3"},
"south": {"uv": [0, 0, 9, 16], "texture": "#0"},
"west": {"uv": [0, 0, 3, 9], "texture": "#0"},
"up": {"uv": [0, 0, 3, 9], "rotation": 90, "texture": "#0"}
}
},
{
"from": [16.8433, 4.63226, 8.90666],
"to": [19.2433, 16.63226, 15.30666],
"rotation": {"angle": 22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 9], "texture": "#0"},
"east": {"uv": [3, 3, 11, 16], "texture": "#3"},
"south": {"uv": [0, 0, 3, 13], "texture": "#3"},
"west": {"uv": [0, 0, 9, 16], "texture": "#0"},
"up": {"uv": [0, 0, 3, 9], "texture": "#0"}
}
},
{
"from": [6.4, 16.8, -0.8],
"to": [9.6, 19.52, 2.4],
"rotation": {"angle": 0, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"east": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"south": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"west": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"up": {"uv": [0, 0, 1, 1], "texture": "#1"},
"down": {"uv": [0, 0, 1, 1], "texture": "#1"}
}
},
{
"from": [13.6, 16.8, 5.70666],
"to": [16.8, 19.52, 8.90666],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"east": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"south": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"west": {"uv": [0, 0, 1, 0.85], "texture": "#1"},
"up": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#1"}
}
},
{
"from": [0, 9.0343, -4.11891],
"to": [6.4, 21.0343, -1.71891],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8.69334, 10.59635, -3.50314]},
"faces": {
"north": {"uv": [8, 0, 16, 13], "texture": "#3"},
"east": {"uv": [0, 0, 3, 9], "texture": "#0"},
"south": {"uv": [0, 0, 9, 16], "texture": "#0"},
"west": {"uv": [3, 0, 6, 13], "texture": "#3"},
"up": {"uv": [0, 0, 3, 9], "rotation": 90, "texture": "#0"}
}
},
{
"from": [16.8433, 4.63226, -0.69334],
"to": [19.2433, 16.63226, 5.70666],
"rotation": {"angle": 22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 13], "texture": "#3"},
"east": {"uv": [8, 3, 16, 16], "texture": "#3"},
"south": {"uv": [0, 0, 3, 9], "texture": "#0"},
"west": {"uv": [0, 0, 9, 16], "texture": "#0"},
"up": {"uv": [0, 0, 3, 9], "texture": "#0"}
}
},
{
"from": [16.8433, 4.63226, 5.70666],
"to": [19.2433, 11.03226, 8.90666],
"rotation": {"angle": 22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"east": {"uv": [0, 9, 4, 16], "texture": "#3"}
}
},
{
"from": [6.4, 13.47517, 17.7007],
"to": [9.6, 19.87517, 20.4207],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [1, 0, 0, 2], "texture": "#1"},
"east": {"uv": [0, 0.85, 2, 0], "rotation": 90, "texture": "#1"},
"south": {"uv": [1, 0, 0, 2], "texture": "#1"},
"west": {"uv": [0, 0.85, 2, 0], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0.85, 1, 0], "texture": "#1"},
"down": {"uv": [0, 0.85, 1, 0], "rotation": 180, "texture": "#1"}
}
},
{
"from": [-3.54509, 9.07312, 5.70666],
"to": [-0.82509, 15.47312, 8.90666],
"rotation": {"angle": -22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0.85, 2, 1.7], "rotation": 270, "texture": "#1"},
"east": {"uv": [1, 0, 2, 2], "texture": "#1"},
"south": {"uv": [0, 0.85, 2, 1.7], "rotation": 90, "texture": "#1"},
"west": {"uv": [1, 0, 2, 2], "texture": "#1"},
"up": {"uv": [0, 0.85, 1, 1.7], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0.85, 1, 1.7], "rotation": 90, "texture": "#1"}
}
},
{
"from": [7.2, 7.07517, 17.7007],
"to": [10.4, 13.47517, 20.4207],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [1, 0, 0, 2], "texture": "#1"},
"east": {"uv": [0, 0.85, 2, 0], "rotation": 90, "texture": "#1"},
"south": {"uv": [1, 0, 0, 2], "texture": "#1"},
"west": {"uv": [0, 0.85, 2, 0], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0.85, 1, 0], "texture": "#1"},
"down": {"uv": [0, 0.85, 1, 0], "rotation": 180, "texture": "#1"}
}
},
{
"from": [-3.54509, 2.67312, 6.50666],
"to": [-0.82509, 9.07312, 9.70666],
"rotation": {"angle": -22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0.85, 2, 1.7], "rotation": 270, "texture": "#1"},
"east": {"uv": [1, 0, 2, 2], "texture": "#1"},
"south": {"uv": [0, 0.85, 2, 1.7], "rotation": 90, "texture": "#1"},
"west": {"uv": [1, 0, 2, 2], "texture": "#1"},
"up": {"uv": [0, 0.85, 1, 1.7], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0.85, 1, 1.7], "rotation": 90, "texture": "#1"}
}
},
{
"from": [9.12, 2.49997, 17.07293],
"to": [11.36, 8.89997, 19.79293],
"rotation": {"angle": -45, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0.7, 0, 0, 2], "texture": "#1"},
"east": {"uv": [0, 0.85, 2, 0], "rotation": 90, "texture": "#1"},
"south": {"uv": [0.7, 0, 0, 2], "texture": "#1"},
"west": {"uv": [0, 0.85, 2, 0], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0.85, 0.7, 0], "texture": "#1"},
"down": {"uv": [0, 0.85, 0.7, 0], "rotation": 180, "texture": "#1"}
}
},
{
"from": [-0.42374, -5.63398, 8.42666],
"to": [2.29626, 0.76602, 10.66666],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0.85, 2, 1.7], "rotation": 270, "texture": "#1"},
"east": {"uv": [0.7, 0, 1.4, 2], "texture": "#1"},
"south": {"uv": [0, 0.85, 2, 1.7], "rotation": 90, "texture": "#1"},
"west": {"uv": [0.7, 0, 1.4, 2], "texture": "#1"},
"up": {"uv": [0, 0.85, 0.7, 1.7], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0.85, 0.7, 1.7], "rotation": 90, "texture": "#1"}
}
},
{
"from": [7.52, 4.09997, 17.07293],
"to": [9.12, 8.89997, 19.79293],
"rotation": {"angle": -45, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0.5, 0, 0, 1.5], "texture": "#1"},
"east": {"uv": [0, 0.85, 1.5, 0], "rotation": 90, "texture": "#1"},
"south": {"uv": [0.5, 0, 0, 1.5], "texture": "#1"},
"west": {"uv": [0, 0.85, 1.5, 0], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0.85, 0.5, 0], "texture": "#1"},
"down": {"uv": [0, 0.85, 0.5, 0], "rotation": 180, "texture": "#1"}
}
},
{
"from": [-0.42374, -4.03398, 6.82666],
"to": [2.29626, 0.76602, 8.42666],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0.85, 1.5, 1.7], "rotation": 270, "texture": "#1"},
"east": {"uv": [0.5, 0, 1, 1.5], "texture": "#1"},
"south": {"uv": [0, 0.85, 1.5, 1.7], "rotation": 90, "texture": "#1"},
"west": {"uv": [0.5, 0, 1, 1.5], "texture": "#1"},
"up": {"uv": [0, 0.85, 0.5, 1.7], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0.85, 0.5, 1.7], "rotation": 90, "texture": "#1"}
}
},
{
"from": [9.76, -2.30003, 17.07293],
"to": [12, 2.49997, 19.79293],
"rotation": {"angle": -45, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0.7, 0, 0, 1.5], "texture": "#1"},
"east": {"uv": [0, 0.85, 1.5, 0], "rotation": 90, "texture": "#1"},
"south": {"uv": [0.7, 0, 0, 1.5], "texture": "#1"},
"west": {"uv": [0, 0.85, 1.5, 0], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 0.85, 0.7, 0], "texture": "#1"},
"down": {"uv": [0, 0.85, 0.7, 0], "rotation": 180, "texture": "#1"}
}
},
{
"from": [-0.42374, -10.43398, 9.06666],
"to": [2.29626, -5.63398, 11.30666],
"rotation": {"angle": -45, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0.85, 1.5, 1.7], "rotation": 270, "texture": "#1"},
"east": {"uv": [0.7, 0, 1.4, 1.5], "texture": "#1"},
"south": {"uv": [0, 0.85, 1.5, 1.7], "rotation": 90, "texture": "#1"},
"west": {"uv": [0.7, 0, 1.4, 1.5], "texture": "#1"},
"up": {"uv": [0, 0.85, 0.7, 1.7], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 0.85, 0.7, 1.7], "rotation": 90, "texture": "#1"}
}
},
{
"from": [-1.6, -2.21104, 13.90518],
"to": [17.6, 16.98896, 19.50518],
"rotation": {"angle": -45, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#3"},
"east": {"uv": [7, 0, 12, 16], "texture": "#3"},
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
"west": {"uv": [9, 0, 14, 16], "texture": "#3"},
"up": {"uv": [0, 0, 9, 16], "rotation": 90, "texture": "#0"},
"down": {"uv": [0, 12, 16, 16], "texture": "#3"}
}
},
{
"from": [-6.59267, -3.25008, -1.6],
"to": [-0.99267, 15.94992, 17.6],
"rotation": {"angle": -45, "axis": "z", "origin": [-3.79267, 6.34992, 8]},
"faces": {
"north": {"uv": [11, 0, 16, 16], "texture": "#3"},
"east": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#3"},
"south": {"uv": [11, 0, 16, 16], "texture": "#3"},
"west": {"uv": [0, 0, 16, 16], "texture": "#3"},
"up": {"uv": [0, 0, 9, 16], "texture": "#0"},
"down": {"uv": [0, 12, 16, 16], "rotation": 90, "texture": "#3"}
}
},
{
"from": [9.6, 9.0343, 17.71891],
"to": [16, 21.0343, 20.11891],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0"},
"east": {"uv": [0, 0, 3, 13], "texture": "#3"},
"south": {"uv": [0, 3, 8, 16], "texture": "#3"},
"west": {"uv": [0, 0, 3, 9], "texture": "#0"},
"up": {"uv": [0, 0, 3, 9], "rotation": 90, "texture": "#0"}
}
},
{
"from": [-3.2433, 4.63226, 8.90666],
"to": [-0.8433, 16.63226, 15.30666],
"rotation": {"angle": -22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 9], "texture": "#0"},
"east": {"uv": [0, 0, 9, 16], "texture": "#0"},
"south": {"uv": [9, 0, 12, 13], "texture": "#3"},
"west": {"uv": [8, 1, 16, 14], "texture": "#3"},
"up": {"uv": [0, 0, 3, 9], "texture": "#0"}
}
},
{
"from": [6.4, 16.8, 13.6],
"to": [9.6, 19.52, 16.8],
"rotation": {"angle": 0, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [1, 0, 0, 0.85], "texture": "#1"},
"east": {"uv": [1, 0, 0, 0.85], "texture": "#1"},
"south": {"uv": [1, 0, 0, 0.85], "texture": "#1"},
"west": {"uv": [1, 0, 0, 0.85], "texture": "#1"},
"up": {"uv": [0, 1, 1, 0], "texture": "#1"},
"down": {"uv": [0, 1, 1, 0], "texture": "#1"}
}
},
{
"from": [-0.8, 16.8, 5.70666],
"to": [2.4, 19.52, 8.90666],
"rotation": {"angle": 0, "axis": "x", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [1, 0, 2, 0.85], "texture": "#1"},
"east": {"uv": [1, 0, 2, 0.85], "texture": "#1"},
"south": {"uv": [1, 0, 2, 0.85], "texture": "#1"},
"west": {"uv": [1, 0, 2, 0.85], "texture": "#1"},
"up": {"uv": [0, 1, 1, 2], "rotation": 90, "texture": "#1"},
"down": {"uv": [0, 1, 1, 2], "rotation": 270, "texture": "#1"}
}
},
{
"from": [0, 9.0343, 17.71891],
"to": [6.4, 21.0343, 20.11891],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"north": {"uv": [0, 0, 9, 16], "texture": "#0"},
"east": {"uv": [0, 0, 3, 9], "texture": "#0"},
"south": {"uv": [8, 3, 16, 16], "texture": "#3"},
"west": {"uv": [0, 0, 3, 13], "texture": "#3"},
"up": {"uv": [0, 0, 3, 9], "rotation": 90, "texture": "#0"}
}
},
{
"from": [6.4, 9.0343, 17.71891],
"to": [9.6, 14.6343, 20.11891],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.69334, 10.59635, 19.50314]},
"faces": {
"south": {"uv": [12, 0, 16, 7], "texture": "#3"}
}
},
{
"from": [-3.2433, 4.63226, -0.69334],
"to": [-0.8433, 16.63226, 5.70666],
"rotation": {"angle": -22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"north": {"uv": [13, 0, 16, 13], "texture": "#3"},
"east": {"uv": [0, 0, 9, 16], "texture": "#0"},
"south": {"uv": [0, 0, 3, 9], "texture": "#0"},
"west": {"uv": [0, 0, 8, 13], "texture": "#3"},
"up": {"uv": [0, 0, 3, 9], "texture": "#0"}
}
},
{
"from": [-3.2433, 4.63226, 5.70666],
"to": [-0.8433, 11.03226, 8.90666],
"rotation": {"angle": -22.5, "axis": "z", "origin": [8, 10.59635, 8]},
"faces": {
"west": {"uv": [12, 4, 16, 11], "texture": "#3"}
}
},
{
"from": [6.4, 4.92736, -1.75981],
"to": [9.6, 14.52736, 0.64019],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8, 14.47293, 8]},
"faces": {
"north": {"uv": [9, 8, 13, 15], "texture": "#3"}
}
},
{
"from": [-4.16, -0.8, -4.16],
"to": [-1.6, 9.28, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 12], "texture": "#0"},
"east": {"uv": [0, 0, 3, 12], "texture": "#0"},
"south": {"uv": [0, 0, 3, 12], "texture": "#0"},
"west": {"uv": [0, 0, 3, 12], "texture": "#0"},
"up": {"uv": [0, 0, 3, 3], "texture": "#0"},
"down": {"uv": [0, 0, 3, 3], "texture": "#3"}
}
},
{
"from": [-4.16, -0.8, 17.6],
"to": [-1.6, 9.28, 20.16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 12], "texture": "#0"},
"east": {"uv": [0, 0, 3, 12], "texture": "#0"},
"south": {"uv": [0, 0, 3, 12], "texture": "#0"},
"west": {"uv": [0, 0, 3, 12], "texture": "#0"},
"up": {"uv": [0, 0, 3, 3], "texture": "#0"},
"down": {"uv": [0, 0, 3, 3], "texture": "#3"}
}
},
{
"from": [17.6, -0.8, -4.16],
"to": [20.16, 9.28, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 12], "texture": "#0"},
"east": {"uv": [0, 0, 3, 12], "texture": "#0"},
"south": {"uv": [0, 0, 3, 12], "texture": "#0"},
"west": {"uv": [0, 0, 3, 12], "texture": "#0"},
"up": {"uv": [0, 0, 3, 3], "texture": "#0"},
"down": {"uv": [0, 0, 3, 3], "texture": "#3"}
}
},
{
"from": [17.6, -0.8, 17.6],
"to": [20.16, 9.28, 20.16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 12], "texture": "#0"},
"east": {"uv": [0, 0, 3, 12], "texture": "#0"},
"south": {"uv": [0, 0, 3, 12], "texture": "#0"},
"west": {"uv": [0, 0, 3, 12], "texture": "#0"},
"up": {"uv": [0, 0, 3, 3], "texture": "#0"},
"down": {"uv": [0, 0, 3, 3], "texture": "#3"}
}
},
{
"from": [-7.36, 0.16, -7.36],
"to": [-1.6, 6.88, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 7, 4], "rotation": 90, "texture": "#3"}
}
},
{
"from": [-7.36, 0.16, 17.6],
"to": [-1.6, 6.88, 23.36],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 7, 4], "rotation": 90, "texture": "#3"}
}
},
{
"from": [17.6, 0.16, -7.36],
"to": [23.36, 6.88, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 7, 4], "rotation": 90, "texture": "#3"}
}
},
{
"from": [17.6, 0.16, 17.6],
"to": [23.36, 6.88, 23.36],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 7, 6], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 7, 4], "rotation": 90, "texture": "#3"}
}
},
{
"from": [-10.56, -0.16, -10.56],
"to": [-1.6, 3.68, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 5, 5], "rotation": 90, "texture": "#3"}
}
},
{
"from": [-10.56, -0.16, 17.6],
"to": [-1.6, 3.68, 26.56],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 5, 5], "rotation": 90, "texture": "#3"}
}
},
{
"from": [17.6, -0.16, -10.56],
"to": [26.56, 3.68, -1.6],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 5, 5], "rotation": 90, "texture": "#3"}
}
},
{
"from": [17.6, -0.16, 17.6],
"to": [26.56, 3.68, 26.56],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"east": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"south": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"west": {"uv": [0, 0, 3, 7], "rotation": 90, "texture": "#3"},
"up": {"uv": [0, 0, 5, 5], "rotation": 90, "texture": "#3"}
}
},
{
"from": [-15.36, -0.8, 8],
"to": [8, 1.28, 31.36],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 0.24, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
}
},
{
"from": [-15.36, -0.8, -15.36],
"to": [8, 1.28, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 0.24, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
}
},
{
"from": [8, -0.8, 8],
"to": [31.36, 1.28, 31.36],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 0.24, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
}
},
{
"from": [8, -0.8, -15.36],
"to": [31.36, 1.28, 8],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 0.24, 8]},
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
}
},
{
"from": [1.6, 0, 1.6],
"to": [14.4, 19.44, 14.4],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1.6, 8]},
"faces": {
"north": {"uv": [0, 0, 4, 6.075], "texture": "#2"},
"east": {"uv": [0, 0, 4, 6.075], "texture": "#2"},
"south": {"uv": [0, 0, 4, 6.075], "texture": "#2"},
"west": {"uv": [0, 0, 4, 6.075], "texture": "#2"},
"up": {"uv": [0, 0, 4, 4], "texture": "#2"},
"down": {"uv": [0, 0, 4, 6.075], "texture": "#2"}
}
}
],
"display": {
"head": {
"translation": [0, -71.75, 0],
"scale": [4, 4, 4]
}
},
"groups": [
{
"name": "group",
"origin": [8, 5.14805, 10],
"children": []
},
{
"name": "group",
"origin": [8, 4.02782, 7.52987],
"children": [
{
"name": "group",
"origin": [8, 4.52279, 8],
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
},
{
"name": "group",
"origin": [8, 4.52279, 8],
"children": [19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38]
}, 39]
}, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,8 +1,17 @@
{
"pack": {
"pack_format": 22,
"description": [
{"text": "MineDivinity Pack", "bold": true, "color": "#FF5555"}
]
}
}
"pack": {
"pack_format": 71,
"description": [
{
"text": "MineDivinity Pack ",
"bold": true,
"color": "#FF5555"
},
{
"text": "v1.2.6",
"bold": true,
"color": "#FFAA00"
}
]
}
}

View File

@ -10,3 +10,17 @@ New version: 1.0.9
New version: 1.1.0
New version: 1.1.1
New version: 1.1.2
New version: 1.1.3
New version: 1.1.4
New version: 1.1.5
New version: 1.1.6
New version: 1.1.7
New version: 1.1.8
New version: 1.1.9
New version: 1.2.0
New version: 1.2.1
New version: 1.2.2
New version: 1.2.3
New version: 1.2.4
New version: 1.2.5
New version: 1.2.6