1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-23 13:36:18 +00:00
bedrock-samples/resource_pack/entity/allay.entity.json
Mike Ammerlaan e304be6ab8 v1.20.80.5
2024-04-23 09:20:49 -07:00

53 lines
1.4 KiB
JSON

{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:allay",
"materials": {
"default": "allay"
},
"textures": {
"default": "textures/entity/allay/allay"
},
"geometry": {
"default": "geometry.allay"
},
"spawn_egg": {
"base_color": "#00daff",
"overlay_color": "#00adff"
},
"scripts": {
"pre_animation": [
"variable.holding_trident = query.is_item_name_any('slot.weapon.mainhand', 'minecraft:trident');"
]
},
"animations": {
"idle": "animation.allay.idle",
"fly": "animation.allay.fly",
"hold_item": "animation.allay.hold_item",
"dance": "animation.allay.dance",
"hold_item_fly": "animation.allay.hold_item_fly",
"look_at_target_default": "animation.allay.look_at_target.default"
},
"animation_controllers": [
{
"general": "controller.animation.allay.general"
},
{
"look_at_target": "controller.animation.allay.look_at_target"
},
{
"holding": "controller.animation.allay.holding"
},
{
"dancing": "controller.animation.allay.dancing"
}
],
"render_controllers": [
"controller.render.allay"
],
"enable_attachables": true,
"held_item_ignores_lighting": true
}
}
}