diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.biome_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.biome_filter.json new file mode 100644 index 00000000..09dbc369 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.biome_filter.json @@ -0,0 +1,9 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.biome_filter", + "title": "Biome Filter 1.17.0", + "description": "TODO", + "oneOf": [ + { "type": "array", "items": { "$ref": "../../../entities/filters/filters.json" } }, + { "type": "object", "$ref": "../../../entities/filters/filters.json" } + ] +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.brightness_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.brightness_filter.json new file mode 100644 index 00000000..d089a7ba --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.brightness_filter.json @@ -0,0 +1,17 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.brightness_filter", + "additionalProperties": false, + "type": "object", + "title": "Brightness Filter 1.17.0", + "description": "TODO", + "properties": { + "min": { "type": "integer", "description": "This is the minimum light level value that allows the mob to spawn", "title": "Min" }, + "max": { "type": "integer", "description": "This is the maximum light level value that allows the mob to spawn", "title": "Max" }, + "adjust_for_weather": { + "type": "boolean", + "description": "This determines if weather can affect the light level conditions that cause the mob to spawn (e.g. Allowing hostile mobs to spawn during the day when it rains.)", + "title": "Adjust For Weather", + "default": true + } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.delay_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.delay_filter.json new file mode 100644 index 00000000..4ad2f9f6 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.delay_filter.json @@ -0,0 +1,13 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.Delay_filter", + "additionalProperties": false, + "type": "object", + "title": "Delay Filter 1.17.0", + "description": "TODO", + "properties": { + "min": { "type": "integer", "description": "TODO", "title": "Min" }, + "max": { "type": "integer", "description": "TODO", "title": "Max" }, + "identifier": { "type": "string", "description": "TODO", "title": "Identifier" }, + "spawn_chance": { "title": "Spawn Chance", "description": "UNDOCUMENTATED", "type": "number" } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.density_limit.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.density_limit.json new file mode 100644 index 00000000..d40314bc --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.density_limit.json @@ -0,0 +1,15 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.density_limit", + "additionalProperties": false, + "type": "object", + "title": "Density Limit 1.17.0", + "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" + } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.difficulty_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.difficulty_filter.json new file mode 100644 index 00000000..ad77be90 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.difficulty_filter.json @@ -0,0 +1,12 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.difficulty_filter", + "additionalProperties": false, + "type": "object", + "title": "Difficulty Filter 1.17.0", + "description": "TODO", + "definitions": { "difficulty": { "type": "string", "enum": ["easy", "normal", "hard", "peaceful"] } }, + "properties": { + "min": { "$ref": "#/definitions/difficulty", "description": "This is the minimum difficulty level that a mob spawns", "title": "Min" }, + "max": { "$ref": "#/definitions/difficulty", "description": "This is the maximum difficulty level that a mob spawns", "title": "Max" } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.distance_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.distance_filter.json new file mode 100644 index 00000000..1311ee7b --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.distance_filter.json @@ -0,0 +1,11 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.distance_filter", + "additionalProperties": false, + "type": "object", + "title": "Distance Filter 1.17.0", + "description": "TODO", + "properties": { + "min": { "type": "integer", "description": "TODO", "title": "Min" }, + "max": { "type": "integer", "description": "TODO", "title": "Max" } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.height_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.height_filter.json new file mode 100644 index 00000000..c371610d --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.height_filter.json @@ -0,0 +1,11 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.height_filter", + "additionalProperties": false, + "type": "object", + "title": "Height Filter 1.17.0", + "description": "TODO", + "properties": { + "min": { "type": "integer", "description": "TODO", "title": "Min" }, + "max": { "type": "integer", "description": "TODO", "title": "Max" } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.herd.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.herd.json new file mode 100644 index 00000000..d378fbe6 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.herd.json @@ -0,0 +1,29 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.height_filter", + "title": "Height Filter 1.17.0", + "description": "TODO", + "definitions": { + "herd": { + "type": "object", + "title": "Herd", + "description": "Herd", + "additionalProperties": false, + "properties": { + "initial_event": { "title": "Initial Event", "description": "UNDOCUMENATED", "type": "string" }, + "initial_event_count": { "title": "Initial Event Count", "description": "UNDOCUMENATED", "type": "integer" }, + "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" + } + } + } + }, + "oneOf": [ + { "type": "object", "$ref": "#/definitions/herd" }, + { "type": "array", "items": { "$ref": "#/definitions/herd" } } + ] +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.mob_event_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.mob_event_filter.json new file mode 100644 index 00000000..c84a3909 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.mob_event_filter.json @@ -0,0 +1,7 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.mob_event_filter", + "title": "Mob Event Filter 1.17.0", + "description": "TODO", + "additionalProperties": false, + "properties": { "event": { "type": "string", "description": "TODO", "title": "Event" } } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.permute_type.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.permute_type.json new file mode 100644 index 00000000..1c91a896 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.permute_type.json @@ -0,0 +1,17 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.permute_type", + "additionalProperties": false, + "type": "array", + "title": "Permute Type 1.17.0", + "description": "TODO", + "items": { + "type": "object", + "additionalProperties": false, + "title": "TODO", + "description": "TODO", + "properties": { + "weight": { "type": "integer", "title": "Weight", "description": "TODO" }, + "entity_type": { "type": "string", "title": "Entity Type", "description": "TODO" } + } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.player_in_village_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.player_in_village_filter.json new file mode 100644 index 00000000..c4fe7327 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.player_in_village_filter.json @@ -0,0 +1,11 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.player_in_village_filter", + "additionalProperties": false, + "type": "object", + "title": "Player In Village Filter 1.17.0", + "description": "TODO", + "properties": { + "distance": { "type": "integer", "title": "Distance", "description": "TODO" }, + "village_border_tolerance": { "type": "integer", "title": "Village Border Tolerance", "description": "TODO" } + } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawn_event.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawn_event.json new file mode 100644 index 00000000..a93122bb --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawn_event.json @@ -0,0 +1,8 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawn_event", + "title": "Spawn Event 1.17.0", + "description": "TODO", + "type": "object", + "additionalProperties": false, + "properties": { "event": { "type": "string", "title": "Event", "description": "TODO" } } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_lava.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_lava.json new file mode 100644 index 00000000..a3812e49 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_lava.json @@ -0,0 +1,8 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_lava", + "additionalProperties": false, + "type": "object", + "title": "Spawns On Lava 1.17.0", + "description": "TODO", + "properties": {} +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_filter.json new file mode 100644 index 00000000..6ba24c6d --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_filter.json @@ -0,0 +1,6 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_on_block_filter", + "title": "Spawns On Block Filter 1.17.0", + "description": "TODO", + "oneOf": [{ "type": "string" }, { "type": "array", "items": { "type": "string" } }] +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_prevented_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_prevented_filter.json new file mode 100644 index 00000000..ed6f9120 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_block_prevented_filter.json @@ -0,0 +1,6 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_on_block_prevented_filter", + "title": "Spawns On Block Prevented Filter 1.17.0", + "description": "TODO", + "oneOf": [{ "type": "string" }, { "type": "array", "items": { "type": "string" } }] +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_surface.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_surface.json new file mode 100644 index 00000000..c485ea6d --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_on_surface.json @@ -0,0 +1,8 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_on_surface", + "additionalProperties": false, + "type": "object", + "title": "Spawns On Surface 1.17.0", + "description": "TODO", + "properties": {} +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underground.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underground.json new file mode 100644 index 00000000..9dfcc451 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underground.json @@ -0,0 +1,8 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_underground", + "additionalProperties": false, + "type": "object", + "title": "Spawns Underground 1.17.0", + "description": "TODO", + "properties": {} +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underwater.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underwater.json new file mode 100644 index 00000000..aac8d561 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.spawns_underwater.json @@ -0,0 +1,7 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.spawns_underwater", + "title": "Spawns Underwater 1.17.0", + "description": "TODO", + "type": "object", + "additionalProperties": false +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.weight.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.weight.json new file mode 100644 index 00000000..cc73297f --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.weight.json @@ -0,0 +1,8 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.weight", + "additionalProperties": false, + "type": "object", + "title": "Weight 1.17.0", + "description": "TODO", + "properties": { "default": { "type": "integer", "description": "TODO", "title": "Default" } } +} diff --git a/source/behavior/spawn_rules/1.17.0/components/minecraft.world_age_filter.json b/source/behavior/spawn_rules/1.17.0/components/minecraft.world_age_filter.json new file mode 100644 index 00000000..7a44f9c0 --- /dev/null +++ b/source/behavior/spawn_rules/1.17.0/components/minecraft.world_age_filter.json @@ -0,0 +1,7 @@ +{ + "$id": "blockception.minecraft.behavior.spawn_rules.1.17.0.minecraft.world_age_filter", + "title": "World Age Filter 1.17.0", + "description": "TODO", + "additionalProperties": false, + "properties": { "min": { "type": "integer", "description": "TODO", "title": "Min" } } +}