Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * Interface representing a Genshin Impact character's avatar data as recorded in the player's game data. */ export interface IGenshinRecordAvatar { /** * The ID of the avatar. */ id: number /** * The URL for the avatar's image. */ image: string /** * The name of the avatar. */ name: string /** * The element associated with the avatar. */ element: string /** * The number of fetters unlocked for the avatar. */ fetter: number /** * The level of the avatar. */ level: number /** * The rarity of the avatar. */ rarity: number /** * The number of constellations unlocked for the avatar. */ actived_constellation_num: number /** * The URL for the avatar's card image. */ card_image: string /** * Whether the avatar has been chosen as the player's current character. */ is_chosen: boolean } /** * Represents the statistics of a player's Genshin Impact game record. */ export interface IGenshinRecordStat { /** * The number of days the player has been actively playing. */ active_day_number: number /** * The number of achievements the player has unlocked. */ achievement_number: number /** * The number of Anemoculi the player has found. */ anemoculus_number: number /** * The number of Geoculi the player has found. */ geoculus_number: number /** * The number of characters the player has obtained. */ avatar_number: number /** * The number of waypoints the player has unlocked. */ way_point_number: number /** * The number of domains the player has unlocked. */ domain_number: number /** * The player's current Spiral Abyss progress. */ spiral_abyss: string /** * The number of Precious Chests the player has opened. */ precious_chest_number: number /** * The number of Luxurious Chests the player has opened. */ luxurious_chest_number: number /** * The number of Exquisite Chests the player has opened. */ exquisite_chest_number: number /** * The number of Common Chests the player has opened. */ common_chest_number: number /** * The number of Electroculi the player has found. */ electroculus_number: number /** * The number of Magic Chests the player has opened. */ magic_chest_number: number /** * The number of Dendroculi the player has found. */ dendroculus_number: number } /** * Represents the world exploration record of a player in Genshin Impact. * @interface */ export interface IGenshinRecordWorldExploration { /** * The current level of world exploration. */ level: number /** * The percentage of world exploration completion. */ exploration_percentage: number /** * The URL of the icon representing the exploration region. */ icon: string /** * The name of the exploration region. */ name: string /** * The type of the exploration region. */ type: string /** * An array of offerings available in the exploration region. * @property {string} name - The name of the offering. * @property {number} level - The level requirement of the offering. * @property {string} icon - The URL of the icon representing the offering. * */ offerings: { name: string level: number icon: string }[] /** * The ID of the exploration region. */ id: number /** * The parent ID of the exploration region. */ parent_id: number /** * The URL of the map of the exploration region. */ map_url: string /** * The URL of the strategy guide of the exploration region. */ strategy_url: string /** * The URL of the background image of the exploration region. */ background_image: string /** * The URL of the inner icon of the exploration region. */ inner_icon: string /** * The URL of the cover image of the exploration region. */ cover: string } /** * Interface representing Genshin Impact player's home record information. */ export interface IGenshinRecordHome { /** * The level of the player's home. */ level: number /** * The number of times the player has visited their home. */ visit_num: number /** * The comfort level of the player's home. */ comfort_num: number /** * The number of items the player has placed in their home. */ item_num: number /** * The name of the player's home. */ name: string /** * The URL of the icon representing the player's home. */ icon: string /** * The name of the comfort level of the player's home. */ comfort_level_name: string /** * The URL of the icon representing the comfort level of the player's home. */ comfort_level_icon: string } /** * Interface representing a Genshin Impact player record. */ export interface IGenshinRecord { /** * An object containing player role information. */ role: { /** * The URL of the player's avatar image. */ AvatarUrl: string /** * The player's nickname. */ nickname: string /** * The region of the player's game account. */ region: string /** * The player's level. */ level: number } /** * An array of the player's avatars. */ avatars: IGenshinRecordAvatar[] /** * An object containing the player's statistics. */ stats: IGenshinRecordStat /** * An array of the player's world explorations. */ world_explorations: IGenshinRecordWorldExploration[] /** * An array of the player's homes. */ homes: IGenshinRecordHome[] /** * An array of the player's city explorations. * The structure of this array is not specified. */ city_explorations: unknown[] } |