LegacyNether: {
    type: "compound";
    value: {
        bridge: {
            type: "compound";
            value: {
                structures?: {
                    type: "list";
                    value: {
                        type: "compound";
                        value: {
                            BB: { type: "intArray"; value: number[] };
                            Children: {
                                type: "list";
                                value: { type: "compound"; value: (...)[] };
                            };
                            ChunkX: { type: "int"; value: number };
                            ChunkZ: { type: "int"; value: number };
                            ID: { type: "int"; value: number };
                        }[];
                    };
                };
            };
        };
    };
}

The structure data of the Nether dimension, this is the data for the dimension1 LevelDB key.

Type declaration

  • type: "compound"
  • value: {
        bridge: {
            type: "compound";
            value: {
                structures?: {
                    type: "list";
                    value: {
                        type: "compound";
                        value: {
                            BB: { type: "intArray"; value: number[] };
                            Children: {
                                type: "list";
                                value: { type: "compound"; value: (...)[] };
                            };
                            ChunkX: { type: "int"; value: number };
                            ChunkZ: { type: "int"; value: number };
                            ID: { type: "int"; value: number };
                        }[];
                    };
                };
            };
        };
    }
    • bridge: {
          type: "compound";
          value: {
              structures?: {
                  type: "list";
                  value: {
                      type: "compound";
                      value: {
                          BB: { type: "intArray"; value: number[] };
                          Children: { type: "list"; value: { type: "compound"; value: (...)[] } };
                          ChunkX: { type: "int"; value: number };
                          ChunkZ: { type: "int"; value: number };
                          ID: { type: "int"; value: number };
                      }[];
                  };
              };
          };
      }

      The list of nether fortresses.