1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-05 10:43:45 +00:00
Files
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

89 lines
2.7 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2499855414",
"x-format-version": "1.20.50",
"x-minecraft-version": "1.21.90-beta.3",
"definitions": {
"517105782": {
"title": "compound_proxy",
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
},
{
"type": "boolean"
}
]
},
"1899103179": {
"title": "struct SharedTypes::v1_20_50::DiggerItemComponent::BlockInfo",
"type": "object",
"properties": {
"block": {
"description": "Block to be dug.",
"$ref": "#/definitions/2794205495"
},
"speed": {
"description": "Digging speed for the correlating block(s).",
"type": "integer"
}
},
"required": [
"block",
"speed"
]
},
"2794205495": {
"title": "struct SharedTypes::Legacy::BlockDescriptor",
"oneOf": [
{
"$ref": "#/definitions/2770948419"
},
{
"type": "string",
"minLength": 1
},
{
"$ref": "#/definitions/2770948419"
}
]
},
"2770948419": {
"title": "struct SharedTypes::Legacy::BlockDescriptorSerializer::BlockDescriptorProxy",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"states": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/517105782"
}
},
"tags": {
"type": "string"
}
}
}
},
"title": "minecraft:digger",
"description": "Digger item component specifies how quickly this item can dig specific blocks.",
"type": "object",
"properties": {
"destroy_speeds": {
"description": "A list of blocks to dig with correlating speeds of digging.",
"type": "array",
"items": {
"$ref": "#/definitions/1899103179"
}
},
"use_efficiency": {
"description": "Determines whether this item should be impacted if the efficiency enchantment is applied to it.",
"type": "boolean"
}
}
}