Block_ItemFrame: {
    type: "compound";
    value: {
        Item: { type: "compound"; value: object } & Item_ItemStack;
        ItemDropChance?: { type: "float"; value: number };
        ItemRotation?: { type: "float"; value: number };
    };
}

Additional fields for [item frame](https://minecraft.wiki/w/item frame).

Type declaration

  • type: "compound"
  • value: {
        Item: { type: "compound"; value: object } & Item_ItemStack;
        ItemDropChance?: { type: "float"; value: number };
        ItemRotation?: { type: "float"; value: number };
    }
    • Item: { type: "compound"; value: object } & Item_ItemStack

      The items in this item frame.

    • OptionalItemDropChance?: { type: "float"; value: number }

      (May not exist) The chance of item dropping when the item frame is broken.

    • OptionalItemRotation?: { type: "float"; value: number }

      (May not exist) The rotation of the item in the item frame.