手册:minecraft:celebrate_hunt

来自Minecraft基岩版开发Wiki
数据驱动 实体 > minecraft:celebrate_hunt
minecraft:celebrate_hunt
附加包组件
组件所属
组件类型
组件ID
-789611239
加入版本
?

控制实体在捕猎特定实体后庆祝。

模式[编辑]

minecraft:celebrate_hunt:
bool "broadcast": opt
filter_group "celebration_targets": opt
string "celebrate_sound": opt
int "duration": opt
int "radius": opt
range "sound_interval": opt

结构[编辑]

  •  minecraft:celebrate_hunt:根对象。
    •  broadcast: 是否启用广播(默认为是)
    •  celebration_targets: 狩猎目标必须满足的条件列表才能启动庆祝活动。
    •  celebrate_sound: 实体庆祝时播放的声音事件
    •  duration: 庆祝活动的持续时间(以秒为单位)
    •  radius: 如果启用了广播,则指定它将通知其他实体进行庆祝的半径。
    •  sound_interval: 再次播放声音之前等待的时间范围(以秒为单位)

示例[编辑]

字符串型
"minecraft:celebrate_hunt":{
    "broadcast": true,
    "celebration_targets": {
            "all_of": [
              {
                "test": "is_family",
                "value": "cow"
              }
            ]
          },
    "celebrate_sound": "celebrate",
    "duration": 4,
    "radius": 16.0,
    "sound_interval": {
            "range_min": 1.0,
            "range_max": 5.0
    }
}