Custom Poses 
Armor Stand Poses supports custom poses letting you create your own!
- First, you must create the function tag - data/poses/tags/function/register_poses.jsonin your datapack. This should link to your MCFUNCTION file that will contain all the armor stand poses that should be registered. In this example, we will name it "example:armor_stand_poses"json- { "values": ["example:armor_stand_poses"] }
- Now in the MCFUNCTION file that you just created you can add your armor stand poses. mcfunction- data modify storage poses:poses poses append value {power: 1, id: "example", display_name: '{"text": "Example Pose"}', Pose:{Body:[0f,0f,0f],Head:[0f,0f,0f],LeftArm:[-10f,0f,-10f],LeftLeg:[-1f,0f,-1f],RightArm:[-15f,0f,10f],RightLeg:[1f,0f,1f]}} # Add multiple poses in the save file.snbt- { power: 1, id: "example", display_name: '{"text": "Example Pose"}', Pose: { Body: [0f, 0f, 0f], Head: [0f, 0f, 0f], LeftArm: [-10f, 0f, -10f], LeftLeg: [-1f, 0f, -1f], RightArm: [-15f, 0f, 10f], RightLeg: [1f, 0f, 1f] } }
- After you've added all your poses save the MCFUNCTION file and run - /reloadin-game to update the datapack. Now run- /function armor_stand:reloadto reload all poses.
