VillageDwellers: {
    type: "compound";
    value: {
        Dwellers: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    actors?: {
                        type: "list";
                        value: {
                            type: "compound";
                            value: {
                                ID: { type: ...; value: ... };
                                last_saved_pos: { type: ...; value: ... };
                                last_worked?: { type: ...; value: ... };
                                TS: { type: ...; value: ... };
                            }[];
                        };
                    };
                }[];
            };
        };
    };
}

The VillageDwellers schema.

The village dwellers data.

Type declaration

  • type: "compound"
  • value: {
        Dwellers: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    actors?: {
                        type: "list";
                        value: {
                            type: "compound";
                            value: {
                                ID: { type: ...; value: ... };
                                last_saved_pos: { type: ...; value: ... };
                                last_worked?: { type: ...; value: ... };
                                TS: { type: ...; value: ... };
                            }[];
                        };
                    };
                }[];
            };
        };
    }
    • Dwellers: {
          type: "list";
          value: {
              type: "compound";
              value: {
                  actors?: {
                      type: "list";
                      value: {
                          type: "compound";
                          value: {
                              ID: { type: ...; value: ... };
                              last_saved_pos: { type: ...; value: ... };
                              last_worked?: { type: ...; value: ... };
                              TS: { type: ...; value: ... };
                          }[];
                      };
                  };
              }[];
          };
      }

      UNDOCUMENTED.