feat: prettify pack.mcmeta

This makes the `formats` field smaller, and adjusts deprecated fields to go up to the newest version format.
It *should* also be "prepared" for minor versions - having all fields consistently use the [major, minor] system will make it easier to read and base off of when a pack format with a minor version gets added.
This commit is contained in:
blryface 2025-07-29 16:11:42 -03:00 committed by GitHub
parent f789ef2336
commit a87152b1fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,39 +1,29 @@
{
"pack": {
"min_format": 4,
"max_format": 9999,
"pack_format": 4,
"supported_formats": [4, 9999],
"supported_formats": [4, 65],
"min_format": [4, 0],
"max_format": [9999, 0],
"description": "§cPr§6id§eep§2ac§9k 9§5.0 §r| Chase the Rainbows!"
},
"overlays": {
"entries": [
{
"min_format": 16,
"max_format": 9999,
"formats": [
16,
9999
],
"min_format": [16, 0],
"max_format": [9999, 0],
"formats": [16, 65],
"directory": "format16"
},
{
"min_format": 49,
"max_format": 9999,
"formats": [
49,
9999
],
"min_format": [49, 0],
"max_format": [9999, 0],
"formats": [49, 65],
"directory": "format49"
},
{
"min_format": 53,
"max_format": 9999,
"formats": [
53,
9999
],
"min_format": [53, 0],
"max_format": [9999, 0],
"formats": [53, 65],
"directory": "format53"
}
]