1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-08-07 20:52:00 +00:00
Files
Mike Ammerlaan c32ab2ac8e v1.21.100.6
2025-08-05 10:30:44 -07:00

48 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "169701669",
"x-format-version": "1.21.20",
"x-minecraft-version": "1.21.100-beta.6",
"definitions": {
"2318795732": {
"title": "WeightedRandomItem",
"description": "Weighted Random Item",
"type": "object",
"properties": {
"data": {
"description": "Item's data",
"type": "string"
},
"weight": {
"description": "Weight of item",
"type": "integer"
}
},
"required": [
"data",
"weight"
]
}
},
"title": "RandomPoolAlias",
"description": "Pool alias for a Random list of targets",
"type": "object",
"properties": {
"alias": {
"description": "Alias of Random Pool",
"type": "string"
},
"targets": {
"description": "List of potential pools",
"type": "array",
"items": {
"description": "Weighted Random Item",
"$ref": "#/definitions/2318795732"
}
}
},
"required": [
"alias",
"targets"
]
}