1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-23 11:44:15 +00:00
Files
bedrock-samples/resource_pack/entity/armor_stand.entity.json
2024-10-17 09:13:53 -07:00

53 lines
1.9 KiB
JSON

{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:armor_stand",
"min_engine_version": "1.8.0",
"materials": {
"default": "armor_stand"
},
"textures": {
"default": "textures/entity/armor_stand"
},
"animations": {
"default_pose": "animation.armor_stand.default_pose",
"no_pose": "animation.armor_stand.no_pose",
"solemn_pose": "animation.armor_stand.solemn_pose",
"athena_pose": "animation.armor_stand.athena_pose",
"brandish_pose": "animation.armor_stand.brandish_pose",
"honor_pose": "animation.armor_stand.honor_pose",
"entertain_pose": "animation.armor_stand.entertain_pose",
"salute_pose": "animation.armor_stand.salute_pose",
"riposte_pose": "animation.armor_stand.riposte_pose",
"zombie_pose": "animation.armor_stand.zombie_pose",
"cancan_a_pose": "animation.armor_stand.cancan_a_pose",
"cancan_b_pose": "animation.armor_stand.cancan_b_pose",
"hero_pose": "animation.armor_stand.hero_pose",
"wiggle": "animation.armor_stand.wiggle",
"controller.pose": "controller.animation.armor_stand.pose",
"controller.wiggling": "controller.animation.armor_stand.wiggle",
"holding_heavy_core": "animation.armor_stand.holding_heavy_core",
"controller.holding_heavy_core": "controller.animation.armor_stand.holding_heavy_core"
},
"scripts": {
"initialize": [
"variable.armor_stand.pose_index = 0;",
"variable.armor_stand.hurt_time = 0;"
],
"animate": [
"controller.pose",
"controller.wiggling",
"controller.holding_heavy_core"
]
},
"geometry": {
"default": "geometry.armor_stand"
},
"render_controllers": [
"controller.render.armor_stand"
],
"enable_attachables": true
}
}
}