mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-16 23:15:08 +00:00
Add minecraft bedrock server
This commit is contained in:
96
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/enderman.json
vendored
Normal file
96
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/enderman.json
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:enderman",
|
||||
"population_control": "monster"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_on_surface": {},
|
||||
"minecraft:spawns_underground": {},
|
||||
"minecraft:brightness_filter": {
|
||||
"min": 0,
|
||||
"max": 7,
|
||||
"adjust_for_weather": true
|
||||
},
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
"minecraft:weight": {
|
||||
"default": 10
|
||||
},
|
||||
"minecraft:herd": {
|
||||
"min_size": 1,
|
||||
"max_size": 2
|
||||
},
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag", "operator": "==", "value": "monster"
|
||||
}
|
||||
},
|
||||
{
|
||||
"minecraft:spawns_underground": {},
|
||||
"minecraft:brightness_filter": {
|
||||
"min": 0,
|
||||
"max": 7,
|
||||
"adjust_for_weather": true
|
||||
},
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
"minecraft:weight": {
|
||||
"default": 6
|
||||
},
|
||||
"minecraft:herd": {
|
||||
"min_size": 1,
|
||||
"max_size": 1
|
||||
},
|
||||
"minecraft:biome_filter": {
|
||||
"all_of": [
|
||||
{"test": "has_biome_tag", "operator": "==", "value": "nether"},
|
||||
{"test": "has_biome_tag", "operator": "==", "value": "spawn_endermen"}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 10
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 1,
|
||||
"max_size": 1
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag", "operator": "==", "value": "warped_forest"
|
||||
}
|
||||
},
|
||||
{
|
||||
"minecraft:spawns_on_surface": {},
|
||||
"minecraft:weight": {
|
||||
"default": 10
|
||||
},
|
||||
"minecraft:herd": {
|
||||
"min_size": 4,
|
||||
"max_size": 4
|
||||
},
|
||||
"minecraft:biome_filter": [
|
||||
{
|
||||
"test": "has_biome_tag", "operator": "==", "value": "the_end"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
37
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/ghast.json
vendored
Normal file
37
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/ghast.json
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:ghast",
|
||||
"population_control": "monster"
|
||||
},
|
||||
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 40
|
||||
},
|
||||
|
||||
"minecraft:density_limit": {
|
||||
"surface": 0,
|
||||
"underground": 2
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"all_of": [
|
||||
{"test": "has_biome_tag", "operator":"==", "value": "nether"},
|
||||
{"test": "has_biome_tag", "operator":"==", "value": "spawn_ghast"}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
38
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/hoglin.json
vendored
Normal file
38
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/hoglin.json
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:hoglin",
|
||||
"population_control": "animal"
|
||||
},
|
||||
"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": 20
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 4,
|
||||
"max_size": 4
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "crimson_forest"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
69
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/magma_cube.json
vendored
Normal file
69
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/magma_cube.json
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:magma_cube",
|
||||
"population_control": "monster"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_on_block_prevented_filter": [
|
||||
"minecraft:nether_wart_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 10
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 1,
|
||||
"max_size": 4
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "spawn_magma_cubes"
|
||||
}
|
||||
},
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_on_block_prevented_filter": [
|
||||
"minecraft:nether_wart_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 100
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 2,
|
||||
"max_size": 5
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "spawn_many_magma_cubes"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
66
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/piglin.json
vendored
Normal file
66
servers/bedrock/behavior_packs/vanilla_1.16/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": "easy",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
}
|
67
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/skeleton.json
vendored
Normal file
67
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/skeleton.json
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:skeleton",
|
||||
"population_control": "monster"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_on_surface": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_on_block_prevented_filter": [
|
||||
"minecraft:nether_wart_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
|
||||
"minecraft:brightness_filter": {
|
||||
"min": 0,
|
||||
"max": 7,
|
||||
"adjust_for_weather": true
|
||||
},
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 80
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 1,
|
||||
"max_size": 2
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"any_of": [
|
||||
{
|
||||
"all_of": [
|
||||
{
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "monster"
|
||||
},
|
||||
{
|
||||
"test": "has_biome_tag",
|
||||
"operator": "!=",
|
||||
"value": "frozen"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "soulsand_valley"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
39
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/strider.json
vendored
Normal file
39
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/strider.json
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:strider",
|
||||
"population_control": "animal"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_lava": {},
|
||||
"minecraft:spawns_underground": {},
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "peaceful",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 20
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 2,
|
||||
"max_size": 4
|
||||
},
|
||||
|
||||
"minecraft:density_limit": {
|
||||
"surface": 3
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "nether"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
69
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/zombie_pigman.json
vendored
Normal file
69
servers/bedrock/behavior_packs/vanilla_1.16/spawn_rules/zombie_pigman.json
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"format_version": "1.8.0",
|
||||
"minecraft:spawn_rules": {
|
||||
"description": {
|
||||
"identifier": "minecraft:zombie_pigman",
|
||||
"population_control": "monster"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_on_block_prevented_filter": [
|
||||
"minecraft:nether_wart_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 100
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 2,
|
||||
"max_size": 4
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "spawn_zombified_piglin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"minecraft:spawns_underground": {
|
||||
},
|
||||
|
||||
"minecraft:spawns_on_block_prevented_filter": [
|
||||
"minecraft:nether_wart_block",
|
||||
"minecraft:shroomlight"
|
||||
],
|
||||
|
||||
"minecraft:difficulty_filter": {
|
||||
"min": "easy",
|
||||
"max": "hard"
|
||||
},
|
||||
|
||||
"minecraft:weight": {
|
||||
"default": 1
|
||||
},
|
||||
|
||||
"minecraft:herd": {
|
||||
"min_size": 2,
|
||||
"max_size": 4
|
||||
},
|
||||
|
||||
"minecraft:biome_filter": {
|
||||
"test": "has_biome_tag",
|
||||
"operator": "==",
|
||||
"value": "spawn_few_zombified_piglins"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user