Moved to source folder

This commit is contained in:
DaanV2
2021-02-01 18:39:12 +01:00
parent c434801daf
commit ac0f3d12d6
1000 changed files with 1 additions and 1 deletions

View File

@@ -1,56 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.music_definitions.json",
"examples": [
{
"example": {
"event_name": "music.example",
"min_delay": 600,
"max_delay": 1200
}
}
],
"type": "object",
"title": "The minecraft music definition file",
"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",
"required": ["event_name"],
"properties": {
"event_name": {
"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"
],
"title": "Event Name"
},
"min_delay": {
"type": "integer",
"description": "TODO description: min delay",
"title": "Min Delay"
},
"max_delay": {
"type": "integer",
"description": "TODO description: max delay",
"title": "Max Delay"
}
},
"title": "Music"
}
}