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/axolotl.entity.json
Mike Ammerlaan e304be6ab8 v1.20.80.5
2024-04-23 09:20:49 -07:00

54 lines
1.7 KiB
JSON

{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:axolotl",
"materials": {
"default": "axolotl",
"limbs": "axolotl_limbs"
},
"textures": {
"blue": "textures/entity/axolotl/axolotl_blue",
"cyan": "textures/entity/axolotl/axolotl_cyan",
"gold": "textures/entity/axolotl/axolotl_gold",
"lucy": "textures/entity/axolotl/axolotl_lucy",
"wild": "textures/entity/axolotl/axolotl_wild"
},
"geometry": {
"default": "geometry.axolotl"
},
"animations": {
"idle_float": "animation.axolotl.idle_underwater",
"idle_floor": "animation.axolotl.idle_floor",
"idle_floor_water": "animation.axolotl.idle_floor_underwater",
"swim": "animation.axolotl.swim",
"walk_floor": "animation.axolotl.walk_floor",
"walk_floor_water": "animation.axolotl.walk_floor_underwater",
"play_dead": "animation.axolotl.play_dead",
"swim_angle": "animation.axolotl.swim_angle",
"look_at_target": "animation.common.look_at_target"
},
"scripts": {
"pre_animation": [
"variable.moving = query.ground_speed > 0 || query.vertical_speed > 0;",
"variable.pitch = query.body_x_rotation;"
]
},
"animation_controllers": [
{
"general": "controller.animation.axolotl.general"
},
{
"move": "controller.animation.axolotl.move"
}
],
"render_controllers": [
"controller.render.axolotl"
],
"spawn_egg": {
"base_color": "#0xfbc1e3",
"overlay_color": "#0xa62d74"
}
}
}
}