- 致编者:请牢记我们的域名wiki.mcbe-dev.net!
- 致编者:欢迎加入本Wiki的官方交流QQ群或Discord服务器!
- 基岩版1.19.31现已发布!(了解更多)
- Inner Core现已支持Xbox模组联机!(了解更多)
- 如果您是第一次来到本Wiki,欢迎注册一个账户
- 点击顶部的“编辑”或“编辑源代码”按钮即可编辑当前页面
- 请知悉:在不登录时也可以编辑和新建页面,但是您当前的IP地址会记录在编辑历史中
手册:minecraft:celebrate_hunt
来自Minecraft基岩版开发Wiki
控制实体在捕猎特定实体后庆祝。
模式[编辑]
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
}
}