Block_SculkCatalyst: {
    type: "compound";
    value: {
        cursors: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    charge: { type: "short"; value: number };
                    decay: { type: "short"; value: number };
                    facing: { type: "short"; value: number };
                    update: { type: "short"; value: number };
                    x: { type: "int"; value: number };
                    y: { type: "int"; value: number };
                    z: { type: "int"; value: number };
                }[];
            };
        };
    };
}

Additional fields for [sculk catalyst](https://minecraft.wiki/w/sculk catalyst).

Type declaration

  • type: "compound"
  • value: {
        cursors: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    charge: { type: "short"; value: number };
                    decay: { type: "short"; value: number };
                    facing: { type: "short"; value: number };
                    update: { type: "short"; value: number };
                    x: { type: "int"; value: number };
                    y: { type: "int"; value: number };
                    z: { type: "int"; value: number };
                }[];
            };
        };
    }
    • cursors: {
          type: "list";
          value: {
              type: "compound";
              value: {
                  charge: { type: "short"; value: number };
                  decay: { type: "short"; value: number };
                  facing: { type: "short"; value: number };
                  update: { type: "short"; value: number };
                  x: { type: "int"; value: number };
                  y: { type: "int"; value: number };
                  z: { type: "int"; value: number };
              }[];
          };
      }

      List of charges associated with the sculk catalyst.