mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-17 15:34:57 +00:00
Add minecraft bedrock server
This commit is contained in:
125
servers/bedrock/behavior_packs/vanilla_1.16/entities/squid.json
vendored
Normal file
125
servers/bedrock/behavior_packs/vanilla_1.16/entities/squid.json
vendored
Normal file
@ -0,0 +1,125 @@
|
||||
{
|
||||
"format_version": "1.16.0",
|
||||
"minecraft:entity": {
|
||||
"description": {
|
||||
"identifier": "minecraft:squid",
|
||||
"is_spawnable": true,
|
||||
"is_summonable": true,
|
||||
"is_experimental": false
|
||||
},
|
||||
|
||||
"component_groups":{
|
||||
"minecraft:squid_baby": {
|
||||
"minecraft:is_baby": {
|
||||
},
|
||||
"minecraft:scale": {
|
||||
"value": 0.5
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"components":{
|
||||
"minecraft:experience_reward": {
|
||||
"on_death": "!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"
|
||||
},
|
||||
"minecraft:nameable": {
|
||||
},
|
||||
"minecraft:type_family": {
|
||||
"family":["squid", "mob"]
|
||||
},
|
||||
"minecraft:collision_box": {
|
||||
"width": 0.95,
|
||||
"height": 0.95
|
||||
},
|
||||
"minecraft:health": {
|
||||
"value": 10,
|
||||
"max": 10
|
||||
},
|
||||
"minecraft:hurt_on_condition": {
|
||||
"damage_conditions": [
|
||||
{
|
||||
"filters": { "test": "in_lava", "subject": "self", "operator": "==", "value": true },
|
||||
"cause": "lava",
|
||||
"damage_per_tick": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
"minecraft:loot": {
|
||||
"table": "loot_tables/entities/squid.json"
|
||||
},
|
||||
"minecraft:breathable":{
|
||||
"total_supply":15,
|
||||
"suffocate_time":0,
|
||||
"breathes_air": false,
|
||||
"breathes_water": true
|
||||
},
|
||||
"minecraft:movement": {
|
||||
"value": 0.2
|
||||
},
|
||||
"minecraft:navigation.walk": {
|
||||
"can_path_over_water": true,
|
||||
"can_sink": false
|
||||
},
|
||||
"minecraft:movement.basic": {
|
||||
},
|
||||
"minecraft:jump.static": {
|
||||
},
|
||||
"minecraft:can_climb": {
|
||||
},
|
||||
|
||||
"minecraft:leashable": {
|
||||
"soft_distance": 4.0,
|
||||
"hard_distance": 6.0,
|
||||
"max_distance": 10.0
|
||||
},
|
||||
"minecraft:despawn": {
|
||||
"despawn_from_distance": {}
|
||||
},
|
||||
"minecraft:behavior.squid_move_away_from_ground": {
|
||||
"priority": 1
|
||||
},
|
||||
"minecraft:behavior.squid_flee": {
|
||||
"priority": 2
|
||||
},
|
||||
"minecraft:behavior.squid_idle": {
|
||||
"priority": 2
|
||||
},
|
||||
"minecraft:behavior.squid_dive": {
|
||||
"priority": 2
|
||||
},
|
||||
"minecraft:behavior.squid_out_of_water": {
|
||||
"priority": 2
|
||||
},
|
||||
"minecraft:physics": {
|
||||
},
|
||||
"minecraft:pushable": {
|
||||
"is_pushable": true,
|
||||
"is_pushable_by_piston": true
|
||||
}
|
||||
},
|
||||
|
||||
"events":{
|
||||
"minecraft:entity_spawned": {
|
||||
"randomize": [
|
||||
{
|
||||
"weight": 95,
|
||||
"remove": {
|
||||
},
|
||||
"add": {
|
||||
}
|
||||
},
|
||||
{
|
||||
"weight": 5,
|
||||
"remove": {
|
||||
},
|
||||
"add": {
|
||||
"component_groups": [
|
||||
"minecraft:squid_baby"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user