auto: Formatted documents

This commit is contained in:
DaanV2
2021-05-18 23:32:44 +02:00
parent 6963d4eaab
commit 5b784a9cfc
400 changed files with 6276 additions and 1125 deletions

View File

@@ -7,6 +7,10 @@
"description": "TODO",
"properties": {
"surface": { "type": "integer", "description": "This is the maximum number of mobs of this type spawnable on the surface", "title": "Surface" },
"underground": { "type": "integer", "description": "This is the maximum number of mobs of this type spawnable underground", "title": "Underground" }
"underground": {
"type": "integer",
"description": "This is the maximum number of mobs of this type spawnable underground",
"title": "Underground"
}
}
}

View File

@@ -5,5 +5,8 @@
"type": "object",
"title": "Distance Filter 1.11.0",
"description": "TODO",
"properties": { "min": { "type": "integer", "description": "TODO", "title": "Min" }, "max": { "type": "integer", "description": "TODO", "title": "Max" } }
"properties": {
"min": { "type": "integer", "description": "TODO", "title": "Min" },
"max": { "type": "integer", "description": "TODO", "title": "Max" }
}
}

View File

@@ -5,5 +5,8 @@
"type": "object",
"title": "Height Filter 1.11.0",
"description": "TODO",
"properties": { "min": { "type": "integer", "description": "TODO", "title": "Min" }, "max": { "type": "integer", "description": "TODO", "title": "Max" } }
"properties": {
"min": { "type": "integer", "description": "TODO", "title": "Min" },
"max": { "type": "integer", "description": "TODO", "title": "Max" }
}
}

View File

@@ -15,7 +15,11 @@
"min_size": { "type": "integer", "description": "This is the minimum number of mobs that spawn in a herd", "title": "Min Size" },
"max_size": { "type": "integer", "description": "This is the maximum number of mobs that spawn in a herd", "title": "Max Size" },
"event": { "type": "string", "description": "This is an event that can be triggered from spawning", "title": "Event" },
"event_skip_count": { "type": "integer", "description": "This is the number of mobs spawned before the specified event is triggered", "title": "Event Skip Count" }
"event_skip_count": {
"type": "integer",
"description": "This is the number of mobs spawned before the specified event is triggered",
"title": "Event Skip Count"
}
}
}
},

View File

@@ -10,6 +10,9 @@
"additionalProperties": false,
"title": "TODO",
"description": "TODO",
"properties": { "weight": { "type": "integer", "title": "Weight", "description": "TODO" }, "entity_type": { "type": "string", "title": "Entity Type", "description": "TODO" } }
"properties": {
"weight": { "type": "integer", "title": "Weight", "description": "TODO" },
"entity_type": { "type": "string", "title": "Entity Type", "description": "TODO" }
}
}
}

View File

@@ -7,6 +7,10 @@
"description": "TODO",
"properties": {
"surface": { "type": "integer", "description": "This is the maximum number of mobs of this type spawnable on the surface", "title": "Surface" },
"underground": { "type": "integer", "description": "This is the maximum number of mobs of this type spawnable underground", "title": "Underground" }
"underground": {
"type": "integer",
"description": "This is the maximum number of mobs of this type spawnable underground",
"title": "Underground"
}
}
}

View File

@@ -5,5 +5,8 @@
"type": "object",
"title": "Distance Filter 1.8.0",
"description": "TODO",
"properties": { "min": { "type": "integer", "description": "TODO", "title": "Min" }, "max": { "type": "integer", "description": "TODO", "title": "Max" } }
"properties": {
"min": { "type": "integer", "description": "TODO", "title": "Min" },
"max": { "type": "integer", "description": "TODO", "title": "Max" }
}
}

View File

@@ -5,5 +5,8 @@
"type": "object",
"title": "Height Filter 1.8.0",
"description": "TODO",
"properties": { "min": { "type": "integer", "description": "TODO", "title": "Min" }, "max": { "type": "integer", "description": "TODO", "title": "Max" } }
"properties": {
"min": { "type": "integer", "description": "TODO", "title": "Min" },
"max": { "type": "integer", "description": "TODO", "title": "Max" }
}
}

View File

@@ -13,7 +13,11 @@
"min_size": { "type": "integer", "description": "This is the minimum number of mobs that spawn in a herd", "title": "Min Size" },
"max_size": { "type": "integer", "description": "This is the maximum number of mobs that spawn in a herd", "title": "Max Size" },
"event": { "type": "string", "description": "This is an event that can be triggered from spawning", "title": "Event" },
"event_skip_count": { "type": "integer", "description": "This is the number of mobs spawned before the specified event is triggered", "title": "Event Skip Count" }
"event_skip_count": {
"type": "integer",
"description": "This is the number of mobs spawned before the specified event is triggered",
"title": "Event Skip Count"
}
}
}
},

View File

@@ -10,6 +10,9 @@
"additionalProperties": false,
"title": "TODO",
"description": "TODO",
"properties": { "weight": { "type": "integer", "title": "Weight", "description": "TODO" }, "entity_type": { "type": "string", "title": "Entity Type", "description": "TODO" } }
"properties": {
"weight": { "type": "integer", "title": "Weight", "description": "TODO" },
"entity_type": { "type": "string", "title": "Entity Type", "description": "TODO" }
}
}
}

View File

@@ -2,7 +2,10 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.spawn_rules",
"examples": [
{ "format_version": "1.10.0", "minecraft:spawn_rules": { "description": { "identifier": "minecraft:entity", "population_control": "ambient" }, "conditions": [{}] } }
{
"format_version": "1.10.0",
"minecraft:spawn_rules": { "description": { "identifier": "minecraft:entity", "population_control": "ambient" }, "conditions": [{}] }
}
],
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } }, "then": { "$ref": "./1.8.0/spawn_rules.json" } },