Files
minecraft-bedrock-json-schemas/source/resource/sounds/sound_definitions.json
Xterionix 4778547e37 Update can fly (#218)
* - Add min to health

* - Update timer flag to match sniffer.json

* - Update can_fly

* - Remove load on low memory
2024-02-21 19:17:56 +01:00

113 lines
4.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.sound_definition",
"type": "object",
"additionalProperties": false,
"title": "Sound Definitions",
"description": "The collection of sound definitions this resourcepack has defined.",
"$comment": "UNDOCUMENTED",
"definitions": {
"SoundPath": {
"$id": "SoundFilepath",
"type": "string",
"title": "Sound Filepath Schema",
"description": "The filepath to the sound, starts with `sounds/'.",
"pattern": "(^sounds/.*$|^$)",
"additionalItems": true,
"examples": ["sounds/"]
},
"SoundSpec": {
"additionalProperties": false,
"type": "object",
"$id": "#/Sound",
"title": "Sound",
"required": ["sounds"],
"properties": {
"__use_legacy_max_distance": {
"type": "boolean",
"title": "Use Legacy Max Distance",
"description": "Whenever or not use legacy distance checking."
},
"category": {
"type": "string",
"title": "Sound Category",
"enum": ["ambient", "block", "music", "weather", "ui", "bucket", "neutral", "player", "hostile", "record", "bottle"],
"description": "The category this sound belongs to, for the user to control the volume on."
},
"sounds": {
"title": "Sounds",
"description": "The collection of sounds minecraft can choice from.",
"items": {
"title": "Sounds",
"description": "UNDOCUMENTED: sounds.",
"anyOf": [
{ "type": "string", "$ref": "#/definitions/SoundPath" },
{
"title": "Sounds",
"description": "A collection of sounds to choice from.",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"type": "object",
"required": ["name"],
"examples": [{ "name": "sounds/fx/example" }],
"properties": {
"is3D": {
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"title": "Is 3D",
"type": "boolean"
},
"pitch": { "description": "The pitch of the audio, 1 is nomial.", "type": "number", "minimum": 0, "maximum": 2, "title": "Pitch" },
"volume": { "description": "The volume of the audio, 1 is nomial.", "type": "number", "minimum": 0, "title": "Volume" },
"stream": { "description": "If marked true then minecraft will stream the audio.", "type": "boolean", "title": "Stream" },
"name": {
"$id": "#/Sound/sounds/stringItem",
"type": "string",
"$ref": "#/definitions/SoundPath",
"description": "UNDOCUMENTED: name.",
"title": "Name"
},
"weight": {
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"title": "Weight",
"type": "integer",
"minimum": 0
}
}
}
]
}
},
"max_distance": {
"title": "Max Distance",
"description": "UNDOCUMENTED.",
"type": ["number", "null"],
"minimum": 0
},
"min_distance": {
"title": "Min Distance",
"description": "UNDOCUMENTED.",
"type": ["number", "null"],
"minimum": 0
}
}
}
},
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"sound_definitions": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/SoundSpec" },
"description": "UNDOCUMENTED: sound definitions.",
"title": "Sound Definitions"
},
"__use_legacy_max_distance": {
"description": "UNDOCUMENTED: use legacy Maximum distance.",
"title": "Use Legacy Maximum Distance",
"type": "string",
"enum": ["true", "false"]
}
}
}