Add minecraft bedrock server

This commit is contained in:
2024-09-09 13:28:08 -03:00
parent 54e5f3000c
commit 236b4b2960
4640 changed files with 688839 additions and 66 deletions

View File

@ -0,0 +1,66 @@
{
"format_version": "1.8.0",
"minecraft:spawn_rules": {
"description": {
"identifier": "minecraft:piglin",
"population_control": "monster"
},
"conditions": [
{
"minecraft:spawns_underground": {},
"minecraft:spawns_on_block_prevented_filter": [
"minecraft:nether_wart_block",
"minecraft:shroomlight"
],
"minecraft:difficulty_filter": {
"min": "peaceful",
"max": "hard"
},
"minecraft:weight": {
"default": 5
},
"minecraft:herd": {
"min_size": 2,
"max_size": 4
},
"minecraft:biome_filter": {
"test": "has_biome_tag",
"operator": "==",
"value": "spawn_piglin"
}
},
{
"minecraft:spawns_underground": {},
"minecraft:spawns_on_block_prevented_filter": [
"minecraft:nether_wart_block",
"minecraft:shroomlight"
],
"minecraft:difficulty_filter": {
"min": "peaceful",
"max": "hard"
},
"minecraft:weight": {
"default": 15
},
"minecraft:herd": {
"min_size": 4,
"max_size": 4
},
"minecraft:biome_filter": {
"test": "has_biome_tag",
"operator": "==",
"value": "spawn_few_piglins"
}
}
]
}
}

View File

@ -0,0 +1,56 @@
{
"format_version": "1.8.0",
"minecraft:spawn_rules": {
"description": {
"identifier": "minecraft:polar_bear",
"population_control": "animal"
},
"conditions": [
{
"minecraft:spawns_on_surface": {},
"minecraft:brightness_filter": {
"min": 7,
"max": 15,
"adjust_for_weather": false
},
"minecraft:weight": {
"default": 1
},
"minecraft:herd": {
"min_size": 1,
"max_size": 2,
"event":"minecraft:entity_born",
"event_skip_count": 1
},
"minecraft:biome_filter": [
{"test": "has_biome_tag", "operator":"==", "value": "frozen"},
{"test": "has_biome_tag", "operator":"!=", "value": "ocean"}
]
},
{
"minecraft:spawns_on_surface": {},
"minecraft:spawns_on_block_filter": "minecraft:ice",
"minecraft:brightness_filter": {
"min": 7,
"max": 15,
"adjust_for_weather": false
},
"minecraft:weight": {
"default": 5
},
"minecraft:herd": {
"min_size": 1,
"max_size": 2,
"event":"minecraft:entity_born",
"event_skip_count": 1
},
"minecraft:biome_filter": [
{"test": "has_biome_tag", "operator":"==", "value": "frozen"},
{"test": "has_biome_tag", "operator":"==", "value": "ocean"}
]
}
]
}
}

View File

@ -0,0 +1,29 @@
{
"format_version": "1.8.0",
"minecraft:spawn_rules": {
"description": {
"identifier": "minecraft:slime",
"population_control": "monster"
},
"conditions": [
{
"minecraft:spawns_on_surface": {},
"minecraft:spawns_underground": {},
"minecraft:difficulty_filter": {
"min": "easy",
"max": "hard"
},
"minecraft:weight": {
"default": 100
},
"minecraft:biome_filter": {
"any_of": [
{"test": "has_biome_tag", "operator": "==", "value": "monster"},
{"test": "has_biome_tag", "operator": "==", "value": "swamp"},
{"test": "has_biome_tag", "operator": "==", "value": "frozen"}
]
}
}
]
}
}