Adding dots to description
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
],
|
||||
"type": "object",
|
||||
"title": "NPC Dialogue",
|
||||
"description": "Specifies the dialogue scenes",
|
||||
"description": "Specifies the dialogue scenes.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"additionalProperties": false,
|
||||
"required": ["format_version", "minecraft:npc_dialogue"],
|
||||
@@ -26,20 +26,20 @@
|
||||
"format_version": { "$ref": "../../general/format_version.json" },
|
||||
"minecraft:npc_dialogue": {
|
||||
"title": "NPC Dialogue",
|
||||
"description": "Specifies the dialogue of an npc",
|
||||
"description": "Specifies the dialogue of an npc.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"scenes": {
|
||||
"title": "Scenes",
|
||||
"description": "The different scenes",
|
||||
"description": "The different scenes.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"title": "Scene",
|
||||
"description": "A single scene specification",
|
||||
"description": "A single scene specification.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
@@ -48,27 +48,27 @@
|
||||
"properties": {
|
||||
"buttons": {
|
||||
"title": "Buttons",
|
||||
"description": "This is where you can create buttons for your NPC",
|
||||
"description": "This is where you can create buttons for your NPC.",
|
||||
"type": "array",
|
||||
"maxItems": 6,
|
||||
"items": {
|
||||
"title": "Button",
|
||||
"description": "This is where you can create buttons for your NPC",
|
||||
"description": "This is where you can create buttons for your NPC.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"name": {
|
||||
"title": "Name",
|
||||
"description": "Set the text that is going to be displayed on your NPC’s button",
|
||||
"description": "Set the text that is going to be displayed on your NPC’s button.",
|
||||
"oneOf": [{ "type": "string" }, { "$ref": "../../general/rawtext/rawtext.json" }]
|
||||
},
|
||||
"commands": {
|
||||
"type": "array",
|
||||
"description": "allows you to add commands which will be run in-game when the button is pressed",
|
||||
"description": "allows you to add commands which will be run in-game when the button is pressed.",
|
||||
"title": "Commands",
|
||||
"items": {
|
||||
"title": "Minecraft Command",
|
||||
"description": "The commands to execute",
|
||||
"description": "The commands to execute.",
|
||||
"type": "string",
|
||||
"pattern": "^/[a-z].*$"
|
||||
}
|
||||
@@ -83,22 +83,22 @@
|
||||
},
|
||||
"on_close_commands": {
|
||||
"type": "array",
|
||||
"description": "This is where you can define which commands will fire when the NPC dialogue box closes",
|
||||
"description": "This is where you can define which commands will fire when the NPC dialogue box closes.",
|
||||
"title": "On Close Commands",
|
||||
"items": {
|
||||
"title": "Minecraft Command",
|
||||
"description": "A minecraft command to execute",
|
||||
"description": "A minecraft command to execute.",
|
||||
"type": "string",
|
||||
"pattern": "^/[a-z].*$"
|
||||
}
|
||||
},
|
||||
"on_open_commands": {
|
||||
"type": "array",
|
||||
"description": "This is where you can define which commands will fire when the NPC dialogue box opens",
|
||||
"description": "This is where you can define which commands will fire when the NPC dialogue box opens.",
|
||||
"title": "On Close Commands",
|
||||
"items": {
|
||||
"title": "Minecraft Command",
|
||||
"description": "A minecraft command to execute",
|
||||
"description": "A minecraft command to execute.",
|
||||
"type": "string",
|
||||
"pattern": "^/[a-z].*$"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user