mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-17 07:25:14 +00:00
Add minecraft bedrock server
This commit is contained in:
66
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/piglin.json
vendored
Normal file
66
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/piglin.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
}
|
56
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/polar_bear.json
vendored
Normal file
56
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/polar_bear.json
vendored
Normal 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"}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
29
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/slime.json
vendored
Normal file
29
servers/bedrock/behavior_packs/vanilla_1.16.100/spawn_rules/slime.json
vendored
Normal 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"}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user