Type Alias GamePackage

GamePackage: {
    checksum: string;
    item_name_to_id: Record<string, number>;
    location_name_to_id: Record<string, number>;
}

Collection of data that contains meta information for a particular game.

Type declaration

  • Readonlychecksum: string

    SHA1 checksum of this game's data.

  • Readonlyitem_name_to_id: Record<string, number>

    Mapping of all item names to their respective id.

  • Readonlylocation_name_to_id: Record<string, number>

    Mapping of all location names to their respective id.