BiomeIdsTable: {
    type: "compound";
    value: {
        list: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    id: { type: "short"; value: number };
                    name: { type: "string"; value: string };
                }[];
            };
        };
    };
}

The BiomeIdsTable schema.

Biome numeric ID mappings for custom biomes.

Type declaration

  • type: "compound"
  • value: {
        list: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    id: { type: "short"; value: number };
                    name: { type: "string"; value: string };
                }[];
            };
        };
    }
    • list: {
          type: "list";
          value: {
              type: "compound";
              value: {
                  id: { type: "short"; value: number };
                  name: { type: "string"; value: string };
              }[];
          };
      }

      A list of compound tags representing custom biome types.