1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-05 00:10:02 -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": { "addedProperties": {
"minecraft:melon_stem": { "minecraft:melon_stem": {
"facing_direction": [ "facing_direction": {
{ "type": "int",
"type": "int", "value": 0
"value": 0 }
}
]
}, },
"minecraft:jigsaw": { "minecraft:jigsaw": {
"rotation": [ "rotation": {
{ "type": "int",
"type": "int", "value": 0
"value": 0 }
}
]
}, },
"minecraft:cobblestone_wall": { "minecraft:cobblestone_wall": {
"wall_connection_type_east": [ "wall_connection_type_east": {
{ "type": "string",
"type": "string", "value": "none"
"value": "none" },
} "wall_connection_type_north": {
], "type": "string",
"wall_connection_type_north": [ "value": "none"
{ },
"type": "string", "wall_connection_type_south": {
"value": "none" "type": "string",
} "value": "none"
], },
"wall_connection_type_south": [ "wall_connection_type_west": {
{ "type": "string",
"type": "string", "value": "none"
"value": "none" },
} "wall_post_bit": {
], "type": "byte",
"wall_connection_type_west": [ "value": 0
{ }
"type": "string",
"value": "none"
}
],
"wall_post_bit": [
{
"type": "byte",
"value": 0
}
]
}, },
"minecraft:pumpkin_stem": { "minecraft:pumpkin_stem": {
"facing_direction": [ "facing_direction": {
{ "type": "int",
"type": "int", "value": 0
"value": 0 }
}
]
} }
} }
} }

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

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

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

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