1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-02 19:54:08 -03:00

Added (incomplete) schemas for 1.9, 1.10 and 1.12

we need these for upgrading itemstacks.
This commit is contained in:
Dylan K. Taylor 2022-02-09 18:59:08 +00:00
parent 42298c194b
commit fe72d9078d
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
11 changed files with 5898 additions and 0 deletions

File diff suppressed because it is too large Load Diff

@ -0,0 +1,147 @@
{
"maxVersionMajor": 1,
"maxVersionMinor": 12,
"maxVersionPatch": 0,
"maxVersionRevision": 1,
"addedProperties": {
"minecraft:barrel": {
"open_bit": {
"type": "byte",
"value": 0
}
},
"minecraft:bell": {
"toggle_bit": {
"type": "byte",
"value": 0
}
},
"minecraft:campfire": {
"direction": {
"type": "int",
"value": 0
},
"extinguished": {
"type": "byte",
"value": 0
}
},
"minecraft:lectern": {
"powered_bit": {
"type": "byte",
"value": 0
}
}
},
"renamedProperties": {
"minecraft:blast_furnace": {
"direction": "facing_direction"
},
"minecraft:composter": {
"fill_level": "composter_fill_level"
},
"minecraft:coral_fan": {
"direction": "coral_fan_direction"
},
"minecraft:coral_fan_dead": {
"direction": "coral_fan_direction"
},
"minecraft:smoker": {
"direction": "facing_direction"
}
},
"remappedPropertyValues": {
"minecraft:barrel": {
"facing_direction": [
{
"old": {
"type": "int",
"value": 7
},
"new": {
"type": "int",
"value": 0
}
},
{
"old": {
"type": "int",
"value": 6
},
"new": {
"type": "int",
"value": 0
}
}
]
},
"minecraft:blast_furnace": {
"direction": [
{
"old": {
"type": "int",
"value": 0
},
"new": {
"type": "int",
"value": 3
}
},
{
"old": {
"type": "int",
"value": 1
},
"new": {
"type": "int",
"value": 4
}
},
{
"old": {
"type": "int",
"value": 3
},
"new": {
"type": "int",
"value": 5
}
}
]
},
"minecraft:smoker": {
"direction": [
{
"old": {
"type": "int",
"value": 1
},
"new": {
"type": "int",
"value": 4
}
},
{
"old": {
"type": "int",
"value": 3
},
"new": {
"type": "int",
"value": 5
}
},
{
"old": {
"type": "int",
"value": 0
},
"new": {
"type": "int",
"value": 3
}
}
]
}
}
}

File diff suppressed because it is too large Load Diff