Block_BrewingStand: {
    type: "compound";
    value: {
        CookTime: { type: "short"; value: number };
        FuelAmount: { type: "short"; value: number };
        FuelTotal: { type: "short"; value: number };
        Items: {
            type: "list";
            value: {
                type: "compound";
                value: { Slot: { type: "byte"; value: number } }[];
            };
        };
    };
}

Additional fields for [brewing stand](https://minecraft.wiki/w/brewing stand).

Type declaration

  • type: "compound"
  • value: {
        CookTime: { type: "short"; value: number };
        FuelAmount: { type: "short"; value: number };
        FuelTotal: { type: "short"; value: number };
        Items: {
            type: "list";
            value: {
                type: "compound";
                value: { Slot: { type: "byte"; value: number } }[];
            };
        };
    }
    • CookTime: { type: "short"; value: number }

      The number of ticks until the potions are finished.

    • FuelAmount: { type: "short"; value: number }

      Remaining fuel for the brewing stand.

    • FuelTotal: { type: "short"; value: number }

      The max fuel numder for the fuel bar.

    • Items: {
          type: "list";
          value: {
              type: "compound";
              value: { Slot: { type: "byte"; value: number } }[];
          };
      }

      List of items in brewing stand.