Skip to content

Pose Format

Parameters

NameTypeDescription
idStringID of the pose. Saved and used to locate the next pose in the list. (Datapack only)
powerInteger 0-15Redstone power level to use this pose.
display_nameTextName of the pose to show the player when they interact with the armor stand.
posePose DataRotation values of the armor stand pose data.

Pose Data

NameTypeDescription
head[ pitch, roll, yaw ]Head rotation
body[ pitch, roll, yaw ]Body rotation
left_arm[ pitch, roll, yaw ]Left arm rotation
right_arm[ pitch, roll, yaw ]Right arm rotation
left_leg[ pitch, roll, yaw ]Left leg rotation
right_leg[ pitch, roll, yaw ]Right leg rotation

Example

json
{
  "power": 1,
  "display_name": { "translate": "pose.poses.default" },
  "pose": {
    "body": [0, 0, 0],
    "head": [0, 0, 0],
    "left_arm": [-10, 0, -10],
    "left_leg": [-1, 0, -1],
    "right_arm": [-15, 0, 10],
    "right_leg": [1, 0, 1]
  }
}
snbt
{
    id: "default",
    power: 1,
    display_name: '{"text": "Default"}',
    pose: {
        body: [0f, 0f, 0f],
        head: [0f, 0f, 0f],
        left_arm: [-10f, 0f, -10f],
        left_leg: [-1f, 0f, -1f],
        right_arm: [-15f,0f, 10f],
        right_leg: [1f, 0f, 1f]
    }
}

Not associated with or approved by Mojang Studios or Microsoft