Adding dots to description

This commit is contained in:
DaanV2
2022-07-22 19:41:04 +02:00
parent 61327eac6e
commit 8b3778de6d
457 changed files with 2337 additions and 2406 deletions

View File

@@ -4,32 +4,23 @@
"examples": [{ "example": { "event_name": "music.example", "min_delay": 600, "max_delay": 1200 } }],
"type": "object",
"title": "Music File",
"description": "The definition file of music of the resourcepack",
"description": "The definition file of music of the resourcepack.",
"definitions": { "music": {} },
"propertyNames": { "examples": ["creative", "credits", "end", "endboss", "game", "hell", "menu", "nether", "soulsand_valley", "water"] },
"additionalProperties": {
"additionalProperties": false,
"type": "object",
"description": "A music defintion",
"description": "A music defintion.",
"required": ["event_name"],
"properties": {
"event_name": {
"description": "The name of the minecraft music event",
"description": "The name of the minecraft music event.",
"type": "string",
"examples": [
"music.game",
"music.game.creative",
"music.game.end",
"music.game.endboss",
"music.game.nether",
"music.game.credits",
"music.game.nether_wastes",
"music.menu"
],
"examples": ["music.game", "music.game.creative", "music.game.end", "music.game.endboss", "music.game.nether", "music.game.credits", "music.game.nether_wastes", "music.menu"],
"title": "Event Name"
},
"min_delay": { "type": "integer", "description": "UNDOCUMENTED: Minimum delay", "title": "Minimum Delay" },
"max_delay": { "type": "integer", "description": "UNDOCUMENTED: Maximum delay", "title": "Maximum Delay" }
"min_delay": { "type": "integer", "description": "UNDOCUMENTED: Minimum delay.", "title": "Minimum Delay" },
"max_delay": { "type": "integer", "description": "UNDOCUMENTED: Maximum delay.", "title": "Maximum Delay" }
},
"title": "Music"
}

View File

@@ -4,14 +4,14 @@
"type": "object",
"additionalProperties": false,
"title": "Sound Definitions",
"description": "The collection of sound definitions this resourcepack has defined",
"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/'",
"description": "The filepath to the sound, starts with `sounds/'.",
"pattern": "(^sounds/.*$|^$)",
"additionalItems": true,
"examples": ["sounds/"]
@@ -26,25 +26,25 @@
"__use_legacy_max_distance": {
"type": "boolean",
"title": "Use Legacy Max Distance",
"description": "Whenever or not use legacy distance checking"
"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"
"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",
"description": "The collection of sounds minecraft can choice from.",
"items": {
"title": "Sounds",
"description": "UNDOCUMENTED: sounds",
"description": "UNDOCUMENTED: sounds.",
"anyOf": [
{ "type": "string", "$ref": "#/definitions/SoundPath" },
{
"title": "Sounds",
"description": "A collection of sounds to choice from",
"description": "A collection of sounds to choice from.",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"type": "object",
@@ -52,28 +52,28 @@
"examples": [{ "load_on_low_memory": false, "name": "sounds/fx/example" }],
"properties": {
"is3D": {
"description": "UNDOCUMENTED",
"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" },
"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" },
"load_on_low_memory": {
"type": "boolean",
"description": "Marks if this audio should be loaded or not on low memory",
"description": "Marks if this audio should be loaded or not on low memory.",
"title": "Load On Low Memory"
},
"stream": { "description": "If marked true then minecraft will stream the audio", "type": "boolean", "title": "Stream" },
"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",
"description": "UNDOCUMENTED: name.",
"title": "Name"
},
"weight": {
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"title": "Weight",
"type": "integer",
@@ -86,7 +86,7 @@
},
"max_distance": {
"title": "Max Distance",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"type": "number",
"minimum": 0
}
@@ -98,11 +98,11 @@
"sound_definitions": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/SoundSpec" },
"description": "UNDOCUMENTED: sound definitions",
"description": "UNDOCUMENTED: sound definitions.",
"title": "Sound Definitions"
},
"__use_legacy_max_distance": {
"description": "UNDOCUMENTED: use legacy Maximum distance",
"description": "UNDOCUMENTED: use legacy Maximum distance.",
"title": "Use Legacy Maximum Distance",
"type": "string",
"enum": ["true", "false"]