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

Provide only one default value for added properties

This commit is contained in:
Dylan K. Taylor 2022-02-02 14:33:43 +00:00
parent 46c55d414a
commit d2ccead6d0
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
5 changed files with 56 additions and 83 deletions

@ -1,60 +1,44 @@
{
"addedProperties": {
"minecraft:melon_stem": {
"facing_direction": [
{
"type": "int",
"value": 0
}
]
"facing_direction": {
"type": "int",
"value": 0
}
},
"minecraft:jigsaw": {
"rotation": [
{
"type": "int",
"value": 0
}
]
"rotation": {
"type": "int",
"value": 0
}
},
"minecraft:cobblestone_wall": {
"wall_connection_type_east": [
{
"type": "string",
"value": "none"
}
],
"wall_connection_type_north": [
{
"type": "string",
"value": "none"
}
],
"wall_connection_type_south": [
{
"type": "string",
"value": "none"
}
],
"wall_connection_type_west": [
{
"type": "string",
"value": "none"
}
],
"wall_post_bit": [
{
"type": "byte",
"value": 0
}
]
"wall_connection_type_east": {
"type": "string",
"value": "none"
},
"wall_connection_type_north": {
"type": "string",
"value": "none"
},
"wall_connection_type_south": {
"type": "string",
"value": "none"
},
"wall_connection_type_west": {
"type": "string",
"value": "none"
},
"wall_post_bit": {
"type": "byte",
"value": 0
}
},
"minecraft:pumpkin_stem": {
"facing_direction": [
{
"type": "int",
"value": 0
}
]
"facing_direction": {
"type": "int",
"value": 0
}
}
}
}
}

@ -9,12 +9,10 @@
},
"addedProperties": {
"minecraft:chain": {
"pillar_axis": [
{
"type": "string",
"value": "y"
}
]
"pillar_axis": {
"type": "string",
"value": "y"
}
}
},
"remappedPropertyValues": {

@ -1,20 +1,16 @@
{
"addedProperties": {
"minecraft:frame": {
"item_frame_photo_bit": [
{
"type": "byte",
"value": 0
}
]
"item_frame_photo_bit": {
"type": "byte",
"value": 0
}
},
"minecraft:glow_frame": {
"item_frame_photo_bit": [
{
"type": "byte",
"value": 0
}
]
"item_frame_photo_bit": {
"type": "byte",
"value": 0
}
}
}
}

@ -1,12 +1,10 @@
{
"addedProperties": {
"minecraft:sculk_catalyst": {
"bloom": [
{
"type": "byte",
"value": 0
}
]
"bloom": {
"type": "byte",
"value": 0
}
}
}
}

@ -36,16 +36,13 @@
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": ["string", "integer"]
}
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": ["string", "integer"]
}
}
}