├── .gitignore ├── README.md └── docs ├── .nojekyll ├── css ├── index.css ├── index.css.map └── index.scss ├── index.html └── json ├── alliance_badges.json ├── arenas.json ├── battle_timelines.json ├── buildings_evo.json ├── cards.json ├── cards_evo.json ├── cards_i18n.json ├── cards_i18n_evo.json ├── cards_stats.json ├── cards_stats_building.json ├── cards_stats_character_buff.json ├── cards_stats_characters.json ├── cards_stats_projectile.json ├── cards_stats_spell.json ├── cards_stats_troop.json ├── challenges.json ├── chest_order.json ├── clan_chest.json ├── consumables.json ├── draft_deck.json ├── emote_text.json ├── emotes.json ├── exp_levels.json ├── game_modes.json ├── predefined_decks.json ├── projectiles_evo.json ├── rarities.json ├── regions.json ├── season_pass_pro.json ├── season_pass_pro_summary.json ├── season_pass_rookie.json ├── season_pass_rookie_summary.json ├── spell_sets.json ├── texts.json ├── tournaments.json ├── trophy_road.json └── trophy_road_season.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac 2 | .DS_Store 3 | 4 | # PyCharm 5 | .idea 6 | 7 | # Python 8 | __pycache__ 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | https://royaleapi.github.io/cr-api-data/ 2 | 3 | ## Loading data files from the web 4 | 5 | https://royaleapi.github.io/cr-api-data/json/cards.json 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyaleAPI/cr-api-data/d5461b0a59bff33c4da2fc845b07275b66b2d6ff/docs/.nojekyll -------------------------------------------------------------------------------- /docs/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 2rem 5rem; 3 | font-size: 14px; 4 | line-height: 130%; 5 | } 6 | 7 | ul { 8 | padding-inline-start: 0; 9 | } 10 | 11 | li { 12 | line-height: 150%; 13 | } 14 | 15 | /*# sourceMappingURL=index.css.map */ 16 | -------------------------------------------------------------------------------- /docs/css/index.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sourceRoot":"","sources":["index.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;;;AAGF;EACE;;;AAEF;EACE","file":"index.css"} -------------------------------------------------------------------------------- /docs/css/index.scss: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 2rem 5rem; 3 | font-size: 14px; 4 | line-height: 130%; 5 | } 6 | 7 | ul { 8 | padding-inline-start: 0; 9 | } 10 | li { 11 | line-height: 150%; 12 | } -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | cr-api-data 6 | 7 | 8 | 9 | 10 | RoyaleAPI / 11 | cr-api-data 12 | 46 | RoyaleAPI.com 47 | 48 | -------------------------------------------------------------------------------- /docs/json/battle_timelines.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Default", 4 | "section_length": [ 5 | 180, 6 | 120 7 | ], 8 | "section_type": [ 9 | "Normal", 10 | "Overtime" 11 | ], 12 | "starting_elixir": 6, 13 | "elixir_rate_length": [ 14 | 120, 15 | 120, 16 | 60 17 | ], 18 | "elixir_full_bar_ms": [ 19 | 28000, 20 | 14000, 21 | 9300 22 | ], 23 | "elixir_rate_visible": [ 24 | 10, 25 | 20, 26 | 30 27 | ], 28 | "elixir_notify_change": [ 29 | true, 30 | true, 31 | true 32 | ], 33 | "next_spell_cooldown_length": [ 34 | 120, 35 | 120, 36 | 60 37 | ], 38 | "next_spell_cooldown_ms": [ 39 | 1000, 40 | 500, 41 | 350 42 | ], 43 | "id": 72000000, 44 | "name_en": "Default" 45 | }, 46 | { 47 | "name": "RampUp", 48 | "section_length": [ 49 | 180, 50 | 120 51 | ], 52 | "section_type": [ 53 | "Normal", 54 | "Overtime" 55 | ], 56 | "starting_elixir": 3, 57 | "elixir_rate_length": [ 58 | 60, 59 | 60, 60 | 60, 61 | 60, 62 | 60 63 | ], 64 | "elixir_full_bar_ms": [ 65 | 28000, 66 | 14000, 67 | 9300, 68 | 7000, 69 | 5600 70 | ], 71 | "elixir_rate_visible": [ 72 | 10, 73 | 20, 74 | 30, 75 | 40, 76 | 50 77 | ], 78 | "elixir_notify_change": [ 79 | true, 80 | true, 81 | true, 82 | true, 83 | true 84 | ], 85 | "next_spell_cooldown_length": [ 86 | 60, 87 | 60, 88 | 60, 89 | 60, 90 | 60 91 | ], 92 | "next_spell_cooldown_ms": [ 93 | 1000, 94 | 500, 95 | 350, 96 | 250, 97 | 200 98 | ], 99 | "event_time": [ 100 | 60, 101 | 120, 102 | 180, 103 | 240 104 | ], 105 | "event_type": [ 106 | "PlaySound", 107 | "PlaySound", 108 | "PlaySound", 109 | "PlaySound" 110 | ], 111 | "event_string_parameter1": [ 112 | "60sec_warn_01", 113 | "60sec_warn_01", 114 | "60sec_warn_01", 115 | "60sec_warn_01" 116 | ], 117 | "id": 72000001, 118 | "name_en": "RampUp" 119 | }, 120 | { 121 | "name": "DoubleElixir", 122 | "section_length": [ 123 | 180, 124 | 120 125 | ], 126 | "section_type": [ 127 | "Normal", 128 | "Overtime" 129 | ], 130 | "starting_elixir": 0, 131 | "elixir_rate_length": 300, 132 | "elixir_full_bar_ms": 14000, 133 | "elixir_rate_visible": 20, 134 | "elixir_notify_change": true, 135 | "next_spell_cooldown_length": 300, 136 | "next_spell_cooldown_ms": 500, 137 | "id": 72000002, 138 | "name_en": "DoubleElixir" 139 | }, 140 | { 141 | "name": "TripleElixir", 142 | "section_length": [ 143 | 180, 144 | 120 145 | ], 146 | "section_type": [ 147 | "Normal", 148 | "Overtime" 149 | ], 150 | "starting_elixir": 0, 151 | "elixir_rate_length": 300, 152 | "elixir_full_bar_ms": 9300, 153 | "elixir_rate_visible": 30, 154 | "elixir_notify_change": true, 155 | "next_spell_cooldown_length": 300, 156 | "next_spell_cooldown_ms": 350, 157 | "id": 72000003, 158 | "name_en": "TripleElixir" 159 | }, 160 | { 161 | "name": "TeamVsTeam", 162 | "section_length": [ 163 | 180, 164 | 120 165 | ], 166 | "section_type": [ 167 | "Normal", 168 | "Overtime" 169 | ], 170 | "starting_elixir": 6, 171 | "elixir_rate_length": [ 172 | 120, 173 | 120, 174 | 60 175 | ], 176 | "elixir_full_bar_ms": [ 177 | 40000, 178 | 20000, 179 | 13300 180 | ], 181 | "elixir_rate_visible": [ 182 | 10, 183 | 20, 184 | 30 185 | ], 186 | "elixir_notify_change": [ 187 | true, 188 | true, 189 | true 190 | ], 191 | "next_spell_cooldown_length": [ 192 | 120, 193 | 120, 194 | 60 195 | ], 196 | "next_spell_cooldown_ms": [ 197 | 1000, 198 | 500, 199 | 350 200 | ], 201 | "id": 72000004, 202 | "name_en": "TeamVsTeam" 203 | }, 204 | { 205 | "name": "TeamVsTeam_DoubleElixir", 206 | "section_length": [ 207 | 180, 208 | 120 209 | ], 210 | "section_type": [ 211 | "Normal", 212 | "Overtime" 213 | ], 214 | "starting_elixir": 0, 215 | "elixir_rate_length": 300, 216 | "elixir_full_bar_ms": 20000, 217 | "elixir_rate_visible": 20, 218 | "elixir_notify_change": true, 219 | "next_spell_cooldown_length": 300, 220 | "next_spell_cooldown_ms": 500, 221 | "id": 72000005, 222 | "name_en": "TeamVsTeam_DoubleElixir" 223 | }, 224 | { 225 | "name": "TeamVsTeam_TripleElixir", 226 | "section_length": [ 227 | 180, 228 | 120 229 | ], 230 | "section_type": [ 231 | "Normal", 232 | "Overtime" 233 | ], 234 | "starting_elixir": 0, 235 | "elixir_rate_length": 300, 236 | "elixir_full_bar_ms": 13300, 237 | "elixir_rate_visible": 30, 238 | "elixir_notify_change": true, 239 | "next_spell_cooldown_length": 300, 240 | "next_spell_cooldown_ms": 350, 241 | "id": 72000006, 242 | "name_en": "TeamVsTeam_TripleElixir" 243 | }, 244 | { 245 | "name": "TeamVsTeam_RampUp", 246 | "section_length": [ 247 | 180, 248 | 120 249 | ], 250 | "section_type": [ 251 | "Normal", 252 | "Overtime" 253 | ], 254 | "starting_elixir": 3, 255 | "elixir_rate_length": [ 256 | 60, 257 | 60, 258 | 60, 259 | 60, 260 | 60 261 | ], 262 | "elixir_full_bar_ms": [ 263 | 40000, 264 | 20000, 265 | 13300, 266 | 10000, 267 | 8000 268 | ], 269 | "elixir_rate_visible": [ 270 | 10, 271 | 20, 272 | 30, 273 | 40, 274 | 50 275 | ], 276 | "elixir_notify_change": [ 277 | true, 278 | true, 279 | true, 280 | true, 281 | true 282 | ], 283 | "next_spell_cooldown_length": [ 284 | 60, 285 | 60, 286 | 60, 287 | 60, 288 | 60 289 | ], 290 | "next_spell_cooldown_ms": [ 291 | 1000, 292 | 500, 293 | 350, 294 | 250, 295 | 200 296 | ], 297 | "event_time": [ 298 | 60, 299 | 120, 300 | 180, 301 | 240 302 | ], 303 | "event_type": [ 304 | "PlaySound", 305 | "PlaySound", 306 | "PlaySound", 307 | "PlaySound" 308 | ], 309 | "event_string_parameter1": [ 310 | "60sec_warn_01", 311 | "60sec_warn_01", 312 | "60sec_warn_01", 313 | "60sec_warn_01" 314 | ], 315 | "id": 72000007, 316 | "name_en": "TeamVsTeam_RampUp" 317 | }, 318 | { 319 | "name": "SuddenDeath", 320 | "section_length": 300, 321 | "section_type": "Overtime", 322 | "starting_elixir": 6, 323 | "elixir_rate_length": [ 324 | 120, 325 | 180 326 | ], 327 | "elixir_full_bar_ms": [ 328 | 14000, 329 | 9300 330 | ], 331 | "elixir_rate_visible": [ 332 | 20, 333 | 30 334 | ], 335 | "elixir_notify_change": [ 336 | true, 337 | true 338 | ], 339 | "next_spell_cooldown_length": [ 340 | 120, 341 | 180 342 | ], 343 | "next_spell_cooldown_ms": [ 344 | 500, 345 | 350 346 | ], 347 | "id": 72000008, 348 | "name_en": "SuddenDeath" 349 | }, 350 | { 351 | "name": "RageMode", 352 | "section_length": [ 353 | 180, 354 | 120 355 | ], 356 | "section_type": [ 357 | "Normal", 358 | "Overtime" 359 | ], 360 | "starting_elixir": 6, 361 | "elixir_rate_length": [ 362 | 120, 363 | 120, 364 | 60 365 | ], 366 | "elixir_full_bar_ms": [ 367 | 20750, 368 | 10550, 369 | 7000 370 | ], 371 | "elixir_rate_visible": [ 372 | 13, 373 | 27, 374 | 40 375 | ], 376 | "elixir_notify_change": [ 377 | true, 378 | true, 379 | true 380 | ], 381 | "next_spell_cooldown_length": [ 382 | 120, 383 | 120, 384 | 60 385 | ], 386 | "next_spell_cooldown_ms": [ 387 | 1000, 388 | 500, 389 | 350 390 | ], 391 | "id": 72000009, 392 | "name_en": "RageMode" 393 | }, 394 | { 395 | "name": "Tutorial", 396 | "section_length": 0, 397 | "section_type": "Normal", 398 | "starting_elixir": 6, 399 | "elixir_rate_length": 0, 400 | "elixir_full_bar_ms": 28000, 401 | "elixir_rate_visible": 10, 402 | "elixir_notify_change": true, 403 | "next_spell_cooldown_length": 0, 404 | "next_spell_cooldown_ms": 2000, 405 | "id": 72000010, 406 | "name_en": "Tutorial" 407 | }, 408 | { 409 | "name": "Spawning", 410 | "section_length": [ 411 | 180, 412 | 120 413 | ], 414 | "section_type": [ 415 | "Normal", 416 | "Overtime" 417 | ], 418 | "starting_elixir": 3, 419 | "elixir_rate_length": [ 420 | 60, 421 | 120, 422 | 120 423 | ], 424 | "elixir_full_bar_ms": [ 425 | 28000, 426 | 14000, 427 | 9300 428 | ], 429 | "elixir_rate_visible": [ 430 | 10, 431 | 20, 432 | 30 433 | ], 434 | "elixir_notify_change": [ 435 | true, 436 | true, 437 | true 438 | ], 439 | "next_spell_cooldown_length": [ 440 | 60, 441 | 120, 442 | 120 443 | ], 444 | "next_spell_cooldown_ms": [ 445 | 1000, 446 | 500, 447 | 350 448 | ], 449 | "id": 72000011, 450 | "name_en": "Spawning" 451 | }, 452 | { 453 | "name": "TeamVsTeam_Spawning", 454 | "section_length": [ 455 | 180, 456 | 120 457 | ], 458 | "section_type": [ 459 | "Normal", 460 | "Overtime" 461 | ], 462 | "starting_elixir": 3, 463 | "elixir_rate_length": [ 464 | 60, 465 | 120, 466 | 120 467 | ], 468 | "elixir_full_bar_ms": [ 469 | 40000, 470 | 20000, 471 | 13300 472 | ], 473 | "elixir_rate_visible": [ 474 | 10, 475 | 20, 476 | 30 477 | ], 478 | "elixir_notify_change": [ 479 | true, 480 | true, 481 | true 482 | ], 483 | "next_spell_cooldown_length": [ 484 | 60, 485 | 120, 486 | 120 487 | ], 488 | "next_spell_cooldown_ms": [ 489 | 1000, 490 | 500, 491 | 350 492 | ], 493 | "id": 72000012, 494 | "name_en": "TeamVsTeam_Spawning" 495 | }, 496 | { 497 | "name": "Pve", 498 | "section_length": 0, 499 | "section_type": "Normal", 500 | "starting_elixir": 6, 501 | "elixir_rate_length": 0, 502 | "elixir_full_bar_ms": 14000, 503 | "elixir_rate_visible": 20, 504 | "elixir_notify_change": true, 505 | "next_spell_cooldown_length": 0, 506 | "next_spell_cooldown_ms": 1000, 507 | "id": 72000013, 508 | "name_en": "Pve" 509 | }, 510 | { 511 | "name": "7xElixir", 512 | "section_length": [ 513 | 180, 514 | 120 515 | ], 516 | "section_type": [ 517 | "Normal", 518 | "Overtime" 519 | ], 520 | "starting_elixir": 0, 521 | "elixir_rate_length": 300, 522 | "elixir_full_bar_ms": 4000, 523 | "elixir_rate_visible": 70, 524 | "elixir_notify_change": true, 525 | "next_spell_cooldown_length": 300, 526 | "next_spell_cooldown_ms": 50, 527 | "id": 72000014, 528 | "name_en": "7xElixir" 529 | }, 530 | { 531 | "name": "ClanWar_BoatBattle", 532 | "section_length": [ 533 | 120, 534 | 60 535 | ], 536 | "section_type": [ 537 | "Normal", 538 | "BonusTime" 539 | ], 540 | "starting_elixir": 6, 541 | "elixir_rate_length": [ 542 | 0, 543 | 0, 544 | 0 545 | ], 546 | "elixir_full_bar_ms": [ 547 | 21000, 548 | 10550, 549 | 9300 550 | ], 551 | "elixir_rate_visible": [ 552 | 15, 553 | 27, 554 | 30 555 | ], 556 | "elixir_notify_change": [ 557 | true, 558 | true, 559 | true 560 | ], 561 | "next_spell_cooldown_length": 0, 562 | "next_spell_cooldown_ms": 1000, 563 | "section_flags": "No60sWarning", 564 | "id": 72000015, 565 | "name_en": "ClanWar_BoatBattle" 566 | }, 567 | { 568 | "name": "DoubleToTripleElixir", 569 | "section_length": [ 570 | 180, 571 | 120 572 | ], 573 | "section_type": [ 574 | "Normal", 575 | "Overtime" 576 | ], 577 | "starting_elixir": [ 578 | 3, 579 | 0 580 | ], 581 | "elixir_rate_length": [ 582 | 180, 583 | 120 584 | ], 585 | "elixir_full_bar_ms": [ 586 | 14000, 587 | 9300 588 | ], 589 | "elixir_rate_visible": [ 590 | 20, 591 | 30 592 | ], 593 | "elixir_notify_change": [ 594 | true, 595 | true 596 | ], 597 | "next_spell_cooldown_length": [ 598 | 300, 599 | 300 600 | ], 601 | "next_spell_cooldown_ms": [ 602 | 500, 603 | 350 604 | ], 605 | "id": 72000016, 606 | "name_en": "DoubleToTripleElixir" 607 | } 608 | ] -------------------------------------------------------------------------------- /docs/json/buildings_evo.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildings_evo": [ 3 | { 4 | "sc_key": "Cannon_EV1", 5 | "base": "Cannon" 6 | }, 7 | { 8 | "sc_key": "GoblinHut_EV1", 9 | "base": "Cannon" 10 | }, 11 | { 12 | "sc_key": "Mortar_EV1", 13 | "base": "Mortar", 14 | "hitpoints": [ 15 | "%", 16 | 120 17 | ], 18 | "hitSpeed": [ 19 | "=", 20 | 4000 21 | ], 22 | "projectile": "MortarProjectile_EV1", 23 | "prestigeSWF": "", 24 | "prestigeExportName2": "", 25 | "prestigeExportName3": "", 26 | "healthBar": "_EV1", 27 | "deathEffect": "Death_card_evolution_M", 28 | "spawnEffect": "Deploy_Mortar_Evolution", 29 | "customSpawnFilter": "filter_card_evolution", 30 | "fileName": "sc/building_mortar_evolution.sc", 31 | "blueExportName": "mortar_evolution", 32 | "redExportName": "enemy_mortar_evolution", 33 | "projectileEffect": "evo_mortar_attack" 34 | }, 35 | { 36 | "sc_key": "InfernoTower_EV1", 37 | "base": "Cannon" 38 | }, 39 | { 40 | "sc_key": "BombTower_EV1", 41 | "base": "Cannon" 42 | }, 43 | { 44 | "sc_key": "BarbarianHut_EV1", 45 | "base": "Cannon" 46 | }, 47 | { 48 | "sc_key": "Tesla_EV1", 49 | "base": "Tesla" 50 | }, 51 | { 52 | "sc_key": "Elixir_Collector_EV1", 53 | "base": "Cannon" 54 | }, 55 | { 56 | "sc_key": "Xbow_EV1", 57 | "base": "Cannon" 58 | }, 59 | { 60 | "sc_key": "Tombstone_EV1", 61 | "base": "Cannon" 62 | }, 63 | { 64 | "sc_key": "FirespiritHut_EV1", 65 | "base": "Cannon" 66 | }, 67 | { 68 | "sc_key": "GoblinCage_EV1", 69 | "base": "Cannon" 70 | }, 71 | { 72 | "sc_key": "GoblinDrill_EV1", 73 | "base": "Cannon" 74 | } 75 | ] 76 | } -------------------------------------------------------------------------------- /docs/json/challenges.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Gold", 4 | "icon_swf": "sc/ui.sc", 5 | "icon_export_name": "icon_tournament_gold", 6 | "game_mode": "Challenge_AllCards_EventDeck", 7 | "wins_icon_export_name": "tournament_open_wins_badge_gold", 8 | "enabled": true, 9 | "join_cost": 100, 10 | "join_cost_resource": "Diamonds", 11 | "max_wins": 12, 12 | "max_loss": 3, 13 | "reward_cards": [ 14 | 20, 15 | 30, 16 | 50, 17 | 85, 18 | 130, 19 | 185, 20 | 250, 21 | 330, 22 | 420, 23 | 530, 24 | 670, 25 | 860, 26 | 1100 27 | ], 28 | "reward_gold": [ 29 | 1400, 30 | 1900, 31 | 2500, 32 | 3200, 33 | 4000, 34 | 5000, 35 | 6200, 36 | 7600, 37 | 9300, 38 | 11500, 39 | 14200, 40 | 17500, 41 | 22000 42 | ], 43 | "item_export_name": "tournament_item_open", 44 | "confirm_export_name": "popup_tournament_open_confirm", 45 | "tid": "TID_PUBLIC_TOURNAMENT_GOLD", 46 | "sort_priority": 3, 47 | "num_evo_slots": 1, 48 | "key": "Gold", 49 | "id": 65000000, 50 | "_lang": { 51 | "tid": { 52 | "name": "TID_PUBLIC_TOURNAMENT_GOLD", 53 | "en": "Grand Challenge", 54 | "fr": "Super défi", 55 | "de": "Große Herausforderung", 56 | "es": "Gran desafío", 57 | "it": "Sfida grandiosa", 58 | "nl": "Nobele uitdaging", 59 | "no": "Stor utfordring", 60 | "tr": "Büyük Mücadele", 61 | "jp": "グランドチャレンジ", 62 | "kr": "그랜드 도전", 63 | "ru": "Большое испытание", 64 | "ar": "تحدٍ كبير", 65 | "pt": "Grande desafio", 66 | "cn": "终极挑战", 67 | "cnt": "終極挑戰", 68 | "fa": "چالش اعظم", 69 | "id": "Tantangan Akbar", 70 | "ms": "Cabaran Besar", 71 | "th": "ความท้าทายใหญ่", 72 | "fi": "Suurhaaste", 73 | "vi": "Đại Thử thách", 74 | "sc_key": "TID_PUBLIC_TOURNAMENT_GOLD" 75 | } 76 | }, 77 | "name_en": "Grand Challenge" 78 | }, 79 | { 80 | "name": "Bronze", 81 | "icon_swf": "sc/ui.sc", 82 | "icon_export_name": "icon_tournament_bronze", 83 | "game_mode": "Challenge_AllCards_EventDeck", 84 | "wins_icon_export_name": "tournament_open_wins_badge_bronze", 85 | "enabled": true, 86 | "join_cost": 10, 87 | "join_cost_resource": "Diamonds", 88 | "max_wins": 12, 89 | "max_loss": 3, 90 | "reward_cards": [ 91 | 2, 92 | 3, 93 | 5, 94 | 8, 95 | 12, 96 | 17, 97 | 23, 98 | 30, 99 | 38, 100 | 48, 101 | 61, 102 | 78, 103 | 100 104 | ], 105 | "reward_gold": [ 106 | 130, 107 | 180, 108 | 240, 109 | 310, 110 | 390, 111 | 480, 112 | 590, 113 | 720, 114 | 880, 115 | 1080, 116 | 1330, 117 | 1630, 118 | 2000 119 | ], 120 | "item_export_name": "tournament_item_open", 121 | "confirm_export_name": "popup_tournament_open_confirm", 122 | "tid": "TID_PUBLIC_TOURNAMENT_BRONZE", 123 | "sort_priority": 1, 124 | "num_evo_slots": 1, 125 | "key": "Bronze", 126 | "id": 65000001, 127 | "_lang": { 128 | "tid": { 129 | "name": "TID_PUBLIC_TOURNAMENT_BRONZE", 130 | "en": "Classic Challenge", 131 | "fr": "Défi classique", 132 | "de": "Klassische Herausforderung", 133 | "es": "Desafío clásico", 134 | "it": "Sfida classica", 135 | "nl": "Klassieke uitdaging", 136 | "no": "Klassisk utfordring", 137 | "tr": "Klasik Mücadele", 138 | "jp": "クラシックチャレンジ", 139 | "kr": "클래식 도전", 140 | "ru": "Классическое испытание", 141 | "ar": "التحدي التقليدي", 142 | "pt": "Desafio clássico", 143 | "cn": "经典挑战", 144 | "cnt": "經典挑戰", 145 | "fa": "چالش کلاسیک", 146 | "id": "Tantangan Klasik", 147 | "ms": "Cabaran Klasik", 148 | "th": "ความท้าทายคลาสสิก", 149 | "fi": "Klassinen haaste", 150 | "vi": "Thử thách Cổ điển", 151 | "sc_key": "TID_PUBLIC_TOURNAMENT_BRONZE" 152 | } 153 | }, 154 | "name_en": "Classic Challenge" 155 | }, 156 | { 157 | "name": "KingsCup", 158 | "icon_swf": "sc/ui.sc", 159 | "icon_export_name": "icon_tournament_blind_deck", 160 | "game_mode": "BlindDeck", 161 | "wins_icon_export_name": "tournament_open_wins_badge_blind", 162 | "enabled": false, 163 | "event_only": true, 164 | "join_cost": 5, 165 | "join_cost_resource": "Diamonds", 166 | "free_pass": 1, 167 | "max_wins": 12, 168 | "max_loss": 3, 169 | "reward_cards": [ 170 | 2, 171 | 3, 172 | 5, 173 | 8, 174 | 12, 175 | 17, 176 | 23, 177 | 30, 178 | 38, 179 | 48, 180 | 61, 181 | 78, 182 | 100 183 | ], 184 | "reward_gold": [ 185 | 130, 186 | 180, 187 | 240, 188 | 310, 189 | 390, 190 | 480, 191 | 590, 192 | 720, 193 | 880, 194 | 1080, 195 | 1330, 196 | 1630, 197 | 2000 198 | ], 199 | "item_export_name": "tournament_item_open", 200 | "confirm_export_name": "popup_tournament_blind_challenge_confirm", 201 | "key": "KingsCup", 202 | "id": 65000002 203 | }, 204 | { 205 | "name": "DoubleElixir", 206 | "icon_swf": "sc/ui.sc", 207 | "icon_export_name": "icon_tournament_2x_elixir", 208 | "game_mode": "DoubleElixir", 209 | "wins_icon_export_name": "tournament_open_wins_badge_bronze", 210 | "enabled": false, 211 | "event_only": true, 212 | "join_cost": 50, 213 | "join_cost_resource": "Diamonds", 214 | "max_wins": 12, 215 | "max_loss": 3, 216 | "reward_cards": [ 217 | 10, 218 | 15, 219 | 25, 220 | 42, 221 | 65, 222 | 92, 223 | 125, 224 | 165, 225 | 210, 226 | 265, 227 | 335, 228 | 430, 229 | 550 230 | ], 231 | "reward_gold": [ 232 | 700, 233 | 950, 234 | 1250, 235 | 1600, 236 | 2000, 237 | 2500, 238 | 3100, 239 | 3800, 240 | 4500, 241 | 5600, 242 | 6900, 243 | 8500, 244 | 11000 245 | ], 246 | "item_export_name": "tournament_item_open", 247 | "confirm_export_name": "popup_tournament_2x_elixir_challenge_confirm", 248 | "key": "DoubleElixir", 249 | "id": 65000003 250 | }, 251 | { 252 | "name": "BlindDeck", 253 | "icon_swf": "sc/ui.sc", 254 | "icon_export_name": "icon_tournament_blind_deck", 255 | "game_mode": "BlindDeck", 256 | "wins_icon_export_name": "tournament_open_wins_badge_blind", 257 | "enabled": false, 258 | "event_only": true, 259 | "join_cost": 5, 260 | "join_cost_resource": "Diamonds", 261 | "free_pass": 1, 262 | "max_wins": 12, 263 | "max_loss": 3, 264 | "reward_cards": [ 265 | 2, 266 | 3, 267 | 5, 268 | 8, 269 | 12, 270 | 17, 271 | 23, 272 | 30, 273 | 38, 274 | 48, 275 | 61, 276 | 78, 277 | 100 278 | ], 279 | "reward_gold": [ 280 | 130, 281 | 180, 282 | 240, 283 | 310, 284 | 390, 285 | 480, 286 | 590, 287 | 720, 288 | 880, 289 | 1080, 290 | 1330, 291 | 1630, 292 | 2000 293 | ], 294 | "item_export_name": "tournament_item_open", 295 | "confirm_export_name": "popup_tournament_blind_challenge_confirm", 296 | "key": "BlindDeck", 297 | "id": 65000004 298 | }, 299 | { 300 | "name": "DraftMode", 301 | "icon_swf": "sc/ui.sc", 302 | "icon_export_name": "icon_tournament_draft", 303 | "game_mode": "DraftMode", 304 | "wins_icon_export_name": "tournament_open_wins_badge_draft", 305 | "enabled": false, 306 | "event_only": true, 307 | "join_cost": 50, 308 | "join_cost_resource": "Diamonds", 309 | "max_wins": 12, 310 | "max_loss": 3, 311 | "reward_cards": [ 312 | 10, 313 | 15, 314 | 25, 315 | 42, 316 | 65, 317 | 92, 318 | 125, 319 | 165, 320 | 210, 321 | 265, 322 | 335, 323 | 430, 324 | 550 325 | ], 326 | "reward_gold": [ 327 | 700, 328 | 950, 329 | 1250, 330 | 1600, 331 | 2000, 332 | 2500, 333 | 3100, 334 | 3800, 335 | 4500, 336 | 5600, 337 | 6900, 338 | 8500, 339 | 11000 340 | ], 341 | "item_export_name": "tournament_item_open", 342 | "confirm_export_name": "popup_tournament_open_confirm", 343 | "key": "DraftMode", 344 | "id": 65000005 345 | }, 346 | { 347 | "name": "ThreeBridges", 348 | "icon_swf": "sc/ui.sc", 349 | "icon_export_name": "icon_tournament_blind_deck", 350 | "game_mode": "Challenge", 351 | "wins_icon_export_name": "tournament_open_wins_badge_blind", 352 | "enabled": false, 353 | "event_only": true, 354 | "join_cost": 5, 355 | "join_cost_resource": "Diamonds", 356 | "free_pass": 1, 357 | "max_wins": 12, 358 | "max_loss": 3, 359 | "reward_cards": [ 360 | 2, 361 | 3, 362 | 5, 363 | 8, 364 | 12, 365 | 17, 366 | 23, 367 | 30, 368 | 38, 369 | 48, 370 | 61, 371 | 78, 372 | 100 373 | ], 374 | "reward_gold": [ 375 | 130, 376 | 180, 377 | 240, 378 | 310, 379 | 390, 380 | 480, 381 | 590, 382 | 720, 383 | 880, 384 | 1080, 385 | 1330, 386 | 1630, 387 | 2000 388 | ], 389 | "item_export_name": "tournament_item_open", 390 | "confirm_export_name": "popup_tournament_open_confirm", 391 | "key": "ThreeBridges", 392 | "id": 65000006 393 | }, 394 | { 395 | "name": "HeroChallenge", 396 | "icon_swf": "sc/ui.sc", 397 | "icon_export_name": "icon_tournament_blind_deck", 398 | "game_mode": "Challenge", 399 | "wins_icon_export_name": "tournament_open_wins_badge_blind", 400 | "enabled": false, 401 | "event_only": true, 402 | "join_cost": 100, 403 | "join_cost_resource": "Diamonds", 404 | "max_wins": 12, 405 | "max_loss": 3, 406 | "reward_cards": [ 407 | 20, 408 | 30, 409 | 50, 410 | 85, 411 | 130, 412 | 185, 413 | 250, 414 | 330, 415 | 420, 416 | 530, 417 | 670, 418 | 860, 419 | 1100 420 | ], 421 | "reward_gold": [ 422 | 1400, 423 | 1900, 424 | 2500, 425 | 3200, 426 | 4000, 427 | 5000, 428 | 6200, 429 | 7600, 430 | 9300, 431 | 11500, 432 | 14200, 433 | 17500, 434 | 22000 435 | ], 436 | "item_export_name": "tournament_item_open", 437 | "confirm_export_name": "popup_tournament_open_confirm", 438 | "key": "HeroChallenge", 439 | "id": 65000007 440 | }, 441 | { 442 | "name": "ElectroWiz", 443 | "icon_swf": "sc/ui.sc", 444 | "icon_export_name": "icon_tournament_card_release", 445 | "game_mode": "Challenge", 446 | "wins_icon_export_name": "tournament_open_wins_badge_legendary", 447 | "enabled": false, 448 | "event_only": true, 449 | "join_cost": 100, 450 | "join_cost_resource": "Diamonds", 451 | "free_pass": 1, 452 | "max_wins": 12, 453 | "max_loss": 3, 454 | "reward_cards": [ 455 | 20, 456 | 30, 457 | 50, 458 | 85, 459 | 130, 460 | 185, 461 | 250, 462 | 330, 463 | 420, 464 | 530, 465 | 670, 466 | 860, 467 | 1100 468 | ], 469 | "reward_gold": [ 470 | 1400, 471 | 1900, 472 | 2500, 473 | 3200, 474 | 4000, 475 | 5000, 476 | 6200, 477 | 7600, 478 | 9300, 479 | 11500, 480 | 14200, 481 | 17500, 482 | 22000 483 | ], 484 | "reward_spell_count": [ 485 | 0, 486 | 0, 487 | 0, 488 | 0, 489 | 0, 490 | 0, 491 | 0, 492 | 0, 493 | 0, 494 | 0, 495 | 0, 496 | 0, 497 | 1 498 | ], 499 | "reward_spell": [ 500 | "ElectroWizard", 501 | "ElectroWizard", 502 | "ElectroWizard", 503 | "ElectroWizard", 504 | "ElectroWizard", 505 | "ElectroWizard", 506 | "ElectroWizard", 507 | "ElectroWizard", 508 | "ElectroWizard", 509 | "ElectroWizard", 510 | "ElectroWizard", 511 | "ElectroWizard", 512 | "ElectroWizard" 513 | ], 514 | "reward_spell_max_count": 1, 515 | "item_export_name": "tournament_item_open", 516 | "confirm_export_name": "popup_tournament_legendary_challenge_confirm", 517 | "card_theme": "ElectroWizard", 518 | "key": "ElectroWiz", 519 | "id": 65000008 520 | }, 521 | { 522 | "name": "DraftMode2", 523 | "icon_swf": "sc/ui.sc", 524 | "icon_export_name": "icon_tournament_draft", 525 | "game_mode": "Challenge", 526 | "wins_icon_export_name": "tournament_open_wins_badge_draft", 527 | "enabled": false, 528 | "event_only": true, 529 | "join_cost": 10, 530 | "join_cost_resource": "Diamonds", 531 | "max_wins": 12, 532 | "max_loss": 3, 533 | "reward_cards": [ 534 | 2, 535 | 3, 536 | 5, 537 | 8, 538 | 12, 539 | 17, 540 | 23, 541 | 30, 542 | 38, 543 | 48, 544 | 61, 545 | 78, 546 | 100 547 | ], 548 | "reward_gold": [ 549 | 130, 550 | 180, 551 | 240, 552 | 310, 553 | 390, 554 | 480, 555 | 590, 556 | 720, 557 | 880, 558 | 1080, 559 | 1330, 560 | 1630, 561 | 2000 562 | ], 563 | "item_export_name": "tournament_item_open", 564 | "confirm_export_name": "popup_tournament_open_confirm", 565 | "key": "DraftMode2", 566 | "id": 65000009 567 | }, 568 | { 569 | "name": "BattleRamClassic", 570 | "icon_swf": "sc/ui.sc", 571 | "icon_export_name": "icon_tournament_card_release", 572 | "game_mode": "Challenge", 573 | "wins_icon_export_name": "tournament_open_wins_badge_legendary", 574 | "enabled": false, 575 | "event_only": true, 576 | "join_cost": 10, 577 | "join_cost_resource": "Diamonds", 578 | "free_pass": 1, 579 | "max_wins": 12, 580 | "max_loss": 3, 581 | "reward_cards": [ 582 | 2, 583 | 3, 584 | 5, 585 | 8, 586 | 12, 587 | 17, 588 | 23, 589 | 30, 590 | 38, 591 | 48, 592 | 61, 593 | 78, 594 | 100 595 | ], 596 | "reward_gold": [ 597 | 130, 598 | 180, 599 | 240, 600 | 310, 601 | 390, 602 | 480, 603 | 590, 604 | 720, 605 | 880, 606 | 1080, 607 | 1330, 608 | 1630, 609 | 2000 610 | ], 611 | "reward_spell_count": [ 612 | 0, 613 | 0, 614 | 0, 615 | 0, 616 | 0, 617 | 0, 618 | 1, 619 | 2, 620 | 2, 621 | 3, 622 | 3, 623 | 4, 624 | 5 625 | ], 626 | "reward_spell": [ 627 | "BattleRam", 628 | "BattleRam", 629 | "BattleRam", 630 | "BattleRam", 631 | "BattleRam", 632 | "BattleRam", 633 | "BattleRam", 634 | "BattleRam", 635 | "BattleRam", 636 | "BattleRam", 637 | "BattleRam", 638 | "BattleRam", 639 | "BattleRam" 640 | ], 641 | "item_export_name": "tournament_item_open", 642 | "confirm_export_name": "popup_tournament_legendary_challenge_confirm", 643 | "key": "BattleRamClassic", 644 | "id": 65000010 645 | }, 646 | { 647 | "name": "BattleRamGrand", 648 | "icon_swf": "sc/ui.sc", 649 | "icon_export_name": "icon_tournament_card_release", 650 | "game_mode": "Challenge", 651 | "wins_icon_export_name": "tournament_open_wins_badge_legendary", 652 | "enabled": false, 653 | "event_only": true, 654 | "join_cost": 100, 655 | "join_cost_resource": "Diamonds", 656 | "free_pass": 0, 657 | "max_wins": 12, 658 | "max_loss": 3, 659 | "reward_cards": [ 660 | 20, 661 | 30, 662 | 50, 663 | 85, 664 | 130, 665 | 185, 666 | 250, 667 | 330, 668 | 420, 669 | 530, 670 | 670, 671 | 860, 672 | 1100 673 | ], 674 | "reward_gold": [ 675 | 1400, 676 | 1900, 677 | 2500, 678 | 3200, 679 | 4000, 680 | 5000, 681 | 6200, 682 | 7600, 683 | 9300, 684 | 11500, 685 | 14200, 686 | 17500, 687 | 22000 688 | ], 689 | "reward_spell_count": [ 690 | 0, 691 | 0, 692 | 0, 693 | 0, 694 | 0, 695 | 0, 696 | 10, 697 | 20, 698 | 20, 699 | 30, 700 | 30, 701 | 40, 702 | 50 703 | ], 704 | "reward_spell": [ 705 | "BattleRam", 706 | "BattleRam", 707 | "BattleRam", 708 | "BattleRam", 709 | "BattleRam", 710 | "BattleRam", 711 | "BattleRam", 712 | "BattleRam", 713 | "BattleRam", 714 | "BattleRam", 715 | "BattleRam", 716 | "BattleRam", 717 | "BattleRam" 718 | ], 719 | "item_export_name": "tournament_item_open", 720 | "confirm_export_name": "popup_tournament_legendary_challenge_confirm", 721 | "key": "BattleRamGrand", 722 | "id": 65000011 723 | }, 724 | { 725 | "name": "DraftModeInsane", 726 | "icon_swf": "sc/ui.sc", 727 | "icon_export_name": "icon_tournament_draft", 728 | "game_mode": "DraftModeInsane", 729 | "wins_icon_export_name": "tournament_open_wins_badge_draft", 730 | "enabled": false, 731 | "event_only": true, 732 | "join_cost": 5, 733 | "join_cost_resource": "Diamonds", 734 | "free_pass": 1, 735 | "max_wins": 12, 736 | "max_loss": 3, 737 | "reward_cards": [ 738 | 2, 739 | 3, 740 | 5, 741 | 8, 742 | 12, 743 | 17, 744 | 23, 745 | 30, 746 | 38, 747 | 48, 748 | 61, 749 | 78, 750 | 100 751 | ], 752 | "reward_gold": [ 753 | 130, 754 | 180, 755 | 240, 756 | 310, 757 | 390, 758 | 480, 759 | 590, 760 | 720, 761 | 880, 762 | 1080, 763 | 1330, 764 | 1630, 765 | 2000 766 | ], 767 | "item_export_name": "tournament_item_open", 768 | "confirm_export_name": "popup_tournament_open_confirm", 769 | "key": "DraftModeInsane", 770 | "id": 65000012 771 | }, 772 | { 773 | "name": "Team", 774 | "icon_swf": "sc/ui.sc", 775 | "icon_export_name": "icon_tournament_draft", 776 | "game_mode": "TeamVsTeam", 777 | "wins_icon_export_name": "tournament_open_wins_badge_draft", 778 | "enabled": false, 779 | "event_only": true, 780 | "join_cost": 5, 781 | "join_cost_resource": "Diamonds", 782 | "free_pass": 1, 783 | "max_wins": 12, 784 | "max_loss": 3, 785 | "reward_cards": [ 786 | 2, 787 | 3, 788 | 5, 789 | 8, 790 | 12, 791 | 17, 792 | 23, 793 | 30, 794 | 38, 795 | 48, 796 | 61, 797 | 78, 798 | 100 799 | ], 800 | "reward_gold": [ 801 | 130, 802 | 180, 803 | 240, 804 | 310, 805 | 390, 806 | 480, 807 | 590, 808 | 720, 809 | 880, 810 | 1080, 811 | 1330, 812 | 1630, 813 | 2000 814 | ], 815 | "item_export_name": "tournament_item_open", 816 | "confirm_export_name": "popup_tournament_open_confirm", 817 | "key": "Team", 818 | "id": 65000013 819 | }, 820 | { 821 | "name": "RetroRoyale", 822 | "icon_swf": "sc/ui.sc", 823 | "icon_export_name": "icon_tournament_gold", 824 | "game_mode": "RetroRoyale", 825 | "wins_icon_export_name": "tournament_open_wins_badge_gold", 826 | "enabled": false, 827 | "event_only": true, 828 | "join_cost": 0, 829 | "join_cost_resource": "Diamonds", 830 | "free_pass": 1, 831 | "max_wins": 12, 832 | "max_loss": 3, 833 | "reward_cards": [ 834 | 20, 835 | 30, 836 | 50, 837 | 85, 838 | 130, 839 | 185, 840 | 250, 841 | 330, 842 | 420, 843 | 530, 844 | 670, 845 | 860, 846 | 1100 847 | ], 848 | "reward_gold": [ 849 | 1400, 850 | 1900, 851 | 2500, 852 | 3200, 853 | 4000, 854 | 5000, 855 | 6200, 856 | 7600, 857 | 9300, 858 | 11500, 859 | 14200, 860 | 17500, 861 | 22000 862 | ], 863 | "item_export_name": "tournament_item_open", 864 | "confirm_export_name": "popup_tournament_open_confirm", 865 | "key": "RetroRoyale", 866 | "id": 65000014 867 | }, 868 | { 869 | "name": "TeamVsEnemy", 870 | "icon_swf": "sc/ui.sc", 871 | "icon_export_name": "icon_tournament_draft", 872 | "game_mode": "TvE", 873 | "wins_icon_export_name": "tournament_open_wins_badge_draft", 874 | "enabled": false, 875 | "event_only": true, 876 | "join_cost": 5, 877 | "join_cost_resource": "Diamonds", 878 | "free_pass": 1, 879 | "max_wins": 12, 880 | "max_loss": 3, 881 | "reward_cards": [ 882 | 2, 883 | 3, 884 | 5, 885 | 8, 886 | 12, 887 | 17, 888 | 23, 889 | 30, 890 | 38, 891 | 48, 892 | 61, 893 | 78, 894 | 100 895 | ], 896 | "reward_gold": [ 897 | 130, 898 | 180, 899 | 240, 900 | 310, 901 | 390, 902 | 480, 903 | 590, 904 | 720, 905 | 880, 906 | 1080, 907 | 1330, 908 | 1630, 909 | 2000 910 | ], 911 | "item_export_name": "tournament_item_open", 912 | "confirm_export_name": "popup_tournament_open_confirm", 913 | "key": "TeamVsEnemy", 914 | "id": 65000015 915 | }, 916 | { 917 | "name": "Practice", 918 | "icon_swf": "sc/ui.sc", 919 | "icon_export_name": "icon_tournament_gold", 920 | "game_mode": "Challenge_AllCards_EventDeck", 921 | "wins_icon_export_name": "tournament_open_wins_badge_gold", 922 | "enabled": false, 923 | "join_cost": 0, 924 | "join_cost_resource": "Diamonds", 925 | "max_wins": 1, 926 | "max_loss": 1, 927 | "reward_cards": [ 928 | 0, 929 | 0 930 | ], 931 | "reward_gold": [ 932 | 0, 933 | 0 934 | ], 935 | "item_export_name": "tournament_item_open", 936 | "confirm_export_name": "popup_tournament_open_confirm", 937 | "tid": "TID_PRACTICE_SURVIVAL_MODE", 938 | "sort_priority": 0, 939 | "description_tid": "This is the perfect place to try out new cards and strategies!", 940 | "num_evo_slots": 1, 941 | "key": "Practice", 942 | "id": 65000016, 943 | "_lang": { 944 | "tid": { 945 | "name": "TID_PRACTICE_SURVIVAL_MODE", 946 | "en": "Practice Your Deck", 947 | "fr": "Essayez votre deck", 948 | "de": "Übe dein Deck", 949 | "es": "Practica con tu mazo", 950 | "it": "Esercitati col mazzo", 951 | "nl": "Oefen met je set", 952 | "no": "Tren med kampkortene", 953 | "tr": "Destenle Alıştırma Yap", 954 | "jp": "デッキ練習", 955 | "kr": "덱 연습", 956 | "ru": "Потренируйся играть колодой", 957 | "ar": "تدرب على مجموعة المعركة", 958 | "pt": "Treine com seu deck", 959 | "cn": "卡组练习", 960 | "cnt": "牌組練習", 961 | "fa": "با دسته نبردتون تمرین کنین", 962 | "id": "Berlatih Menggunakan Dek", 963 | "ms": "Berlatih Dek Anda", 964 | "th": "ฝึกซ้อมสำรับของท่าน", 965 | "fi": "Harjoittele pakallasi", 966 | "vi": "Luyện tập sử dụng bộ thẻ", 967 | "sc_key": "TID_PRACTICE_SURVIVAL_MODE" 968 | }, 969 | "description_tid": { 970 | "name": "TID_PRACTICE_SURVIVAL_MODE_DESCRIPTION", 971 | "en": "This is the perfect place to try out new cards and strategies!", 972 | "fr": "L'endroit parfait pour essayer des nouvelles cartes et stratégies !", 973 | "de": "Dies ist der perfekte Ort, um neue Karten und Strategien auszuprobieren!", 974 | "es": "¡Este es el mejor sitio para probar cartas y estrategias nuevas!", 975 | "it": "Questo è il posto ideale per provare nuove carte e strategie!", 976 | "nl": "Dit is de perfecte plek om nieuwe kaarten en strategieën uit te proberen!", 977 | "no": "Dette er et perfekt sted for å prøve nye kort og strategier!", 978 | "tr": "Burası yeni kart ve stratejileri denemek için mükemmel bir yer!", 979 | "jp": "新しいカードや戦術を試すにはピッタリのモードです!", 980 | "kr": "새로운 카드와 전략을 시험해 보기에 가장 적합한 모드입니다!", 981 | "ru": "Это идеальное место, чтобы испытать новые карты и тактики!", 982 | "ar": "هذا المكان المثالي لتجربة البطاقات والإستراتيجيات الجديدة!", 983 | "pt": "É o lugar perfeito para testar cartas e estratégias novas!", 984 | "cn": "这里是练习使用新卡牌和研究新战术的绝佳场地!", 985 | "cnt": "這裡是嘗試新牌組和研究新戰術的完美場地!", 986 | "fa": "اینجا بهترین جاییه که می‌تونین استراتژیا و کارت‌های جدید رو امتحان کنین!", 987 | "id": "Ini adalah tempat yang sempurna untuk mencoba kartu serta strategi baru!", 988 | "ms": "Ini ialah tempat sesuai untuk mencuba kad dan strategi baharu!", 989 | "th": "ที่นี่คือสถานที่ที่เหมาะสมที่สุดสำหรับลองการ์ดและกลยุทธ์ใหม่!", 990 | "fi": "Tämä on täydellinen paikka uusien korttien ja strategioiden kokeiluun!", 991 | "vi": "Đây là nơi hoàn hảo để dùng thử thẻ bài và chiến thuật mới!", 992 | "sc_key": "TID_PRACTICE_SURVIVAL_MODE_DESCRIPTION" 993 | } 994 | }, 995 | "name_en": "Practice Your Deck" 996 | }, 997 | { 998 | "name": "Megadraft", 999 | "icon_swf": "sc/ui.sc", 1000 | "icon_export_name": "icon_mega_draft", 1001 | "game_mode": "PickMode", 1002 | "wins_icon_export_name": "tournament_open_wins_badge_gold", 1003 | "enabled": true, 1004 | "join_cost": 50, 1005 | "join_cost_resource": "Diamonds", 1006 | "max_wins": 12, 1007 | "max_loss": 3, 1008 | "reward_cards": [ 1009 | 10, 1010 | 15, 1011 | 25, 1012 | 42, 1013 | 62, 1014 | 92, 1015 | 125, 1016 | 165, 1017 | 210, 1018 | 265, 1019 | 335, 1020 | 430, 1021 | 550 1022 | ], 1023 | "reward_gold": [ 1024 | 700, 1025 | 950, 1026 | 1250, 1027 | 1600, 1028 | 2000, 1029 | 2500, 1030 | 3100, 1031 | 3800, 1032 | 4650, 1033 | 5750, 1034 | 7100, 1035 | 8750, 1036 | 11000 1037 | ], 1038 | "item_export_name": "tournament_item_open", 1039 | "confirm_export_name": "popup_tournament_open_confirm", 1040 | "tid": "TID_DRAFT_PICK_CHALLENGE", 1041 | "sort_priority": 2, 1042 | "num_evo_slots": 0, 1043 | "key": "Megadraft", 1044 | "id": 65000017, 1045 | "_lang": { 1046 | "tid": { 1047 | "name": "TID_DRAFT_PICK_CHALLENGE", 1048 | "en": "Mega Draft Challenge", 1049 | "fr": "Défi Méga tirage", 1050 | "de": "Mega-Auswahlherausforderung", 1051 | "es": "Desafío de megaelección", 1052 | "it": "Sfida megastrategica", 1053 | "nl": "Megakeuze-uitdaging", 1054 | "no": "Mega-utvalgsutfordring", 1055 | "tr": "Mega Çekilişli Mücadele", 1056 | "jp": "メガドラフトチャレンジ", 1057 | "kr": "메가 드래프트 도전", 1058 | "ru": "Мегаиспытание с выбором карт", 1059 | "ar": "تحدي السحب الهائل", 1060 | "pt": "Megadesafio estratégico", 1061 | "cn": "超级选卡挑战", 1062 | "cnt": "超級選卡挑戰", 1063 | "fa": "مِگا چالش انتخاب کارت", 1064 | "id": "Tantangan Draf Mega", 1065 | "ms": "Cabaran Bertaktik Mega", 1066 | "th": "ความท้าทายดราฟต์เมก้า", 1067 | "fi": "Megavaihtoehtohaaste", 1068 | "vi": "Thử thách Tuyển chọn Siêu cấp", 1069 | "sc_key": "TID_DRAFT_PICK_CHALLENGE" 1070 | } 1071 | }, 1072 | "name_en": "Mega Draft Challenge" 1073 | } 1074 | ] -------------------------------------------------------------------------------- /docs/json/chest_order.json: -------------------------------------------------------------------------------- 1 | { 2 | "MainCycle": [ 3 | "Silver", 4 | "Silver", 5 | "Silver", 6 | "Gold", 7 | "Silver", 8 | "Silver", 9 | "Gold", 10 | "Silver", 11 | "Silver", 12 | "Silver", 13 | "Silver", 14 | "Magic", 15 | "Silver", 16 | "Silver", 17 | "Gold", 18 | "Silver", 19 | "Silver", 20 | "Silver", 21 | "Gold", 22 | "Silver", 23 | "Silver", 24 | "Silver", 25 | "Silver", 26 | "Gold", 27 | "Silver", 28 | "Gold", 29 | "Silver", 30 | "Silver", 31 | "Silver", 32 | "Silver", 33 | "Gold", 34 | "Silver", 35 | "Silver", 36 | "Silver", 37 | "Silver", 38 | "Gold", 39 | "Silver", 40 | "Silver", 41 | "Gold", 42 | "Silver", 43 | "Silver", 44 | "Silver", 45 | "Silver", 46 | "Gold", 47 | "Silver", 48 | "Silver", 49 | "Gold", 50 | "Silver", 51 | "Silver", 52 | "Silver", 53 | "Silver", 54 | "Giant", 55 | "Silver", 56 | "Silver", 57 | "Gold", 58 | "Silver", 59 | "Silver", 60 | "Silver", 61 | "Gold", 62 | "Silver", 63 | "Silver", 64 | "Silver", 65 | "Silver", 66 | "Gold", 67 | "Silver", 68 | "Gold", 69 | "Silver", 70 | "Silver", 71 | "Silver", 72 | "Silver", 73 | "Gold", 74 | "Silver", 75 | "Silver", 76 | "Silver", 77 | "Silver", 78 | "Gold", 79 | "Silver", 80 | "Silver", 81 | "Gold", 82 | "Silver", 83 | "Silver", 84 | "Silver", 85 | "Silver", 86 | "Magic", 87 | "Silver", 88 | "Silver", 89 | "Gold", 90 | "Silver", 91 | "Silver", 92 | "Silver", 93 | "Silver", 94 | "Gold", 95 | "Silver", 96 | "Silver", 97 | "Gold", 98 | "Silver", 99 | "Silver", 100 | "Silver", 101 | "Gold", 102 | "Silver", 103 | "Silver", 104 | "Silver", 105 | "Silver", 106 | "Gold", 107 | "Silver", 108 | "Gold", 109 | "Silver", 110 | "Silver", 111 | "Silver", 112 | "Silver", 113 | "Gold", 114 | "Silver", 115 | "Silver", 116 | "Silver", 117 | "Silver", 118 | "Gold", 119 | "Silver", 120 | "Silver", 121 | "Gold", 122 | "Silver", 123 | "Silver", 124 | "Silver", 125 | "Silver", 126 | "Gold", 127 | "Silver", 128 | "Silver", 129 | "Gold", 130 | "Silver", 131 | "Silver", 132 | "Silver", 133 | "Silver", 134 | "Magic", 135 | "Silver", 136 | "Silver", 137 | "Gold", 138 | "Silver", 139 | "Silver", 140 | "Silver", 141 | "Gold", 142 | "Silver", 143 | "Silver", 144 | "Silver", 145 | "Silver", 146 | "Gold", 147 | "Silver", 148 | "Gold", 149 | "Silver", 150 | "Silver", 151 | "Silver", 152 | "Silver", 153 | "Gold", 154 | "Silver", 155 | "Silver", 156 | "Silver", 157 | "Silver", 158 | "Gold", 159 | "Silver", 160 | "Silver", 161 | "Giant", 162 | "Silver", 163 | "Silver", 164 | "Silver", 165 | "Silver", 166 | "Gold", 167 | "Silver", 168 | "Silver", 169 | "Gold", 170 | "Silver", 171 | "Silver", 172 | "Silver", 173 | "Silver", 174 | "Gold", 175 | "Silver", 176 | "Silver", 177 | "Gold", 178 | "Silver", 179 | "Silver", 180 | "Silver", 181 | "Gold", 182 | "Silver", 183 | "Silver", 184 | "Silver", 185 | "Silver", 186 | "Gold", 187 | "Silver", 188 | "Gold", 189 | "Silver", 190 | "Silver", 191 | "Silver", 192 | "Silver", 193 | "Giant", 194 | "Silver", 195 | "Silver", 196 | "Silver", 197 | "Silver", 198 | "Gold", 199 | "Silver", 200 | "Silver", 201 | "Gold", 202 | "Silver", 203 | "Silver", 204 | "Silver", 205 | "Silver", 206 | "Magic", 207 | "Silver", 208 | "Silver", 209 | "Gold", 210 | "Silver", 211 | "Silver", 212 | "Silver", 213 | "Silver", 214 | "Gold", 215 | "Silver", 216 | "Silver", 217 | "Gold", 218 | "Silver", 219 | "Silver", 220 | "Silver", 221 | "Gold", 222 | "Silver", 223 | "Silver", 224 | "Silver", 225 | "Silver", 226 | "Gold", 227 | "Silver", 228 | "Gold", 229 | "Silver", 230 | "Silver", 231 | "Silver", 232 | "Silver", 233 | "Giant", 234 | "Silver", 235 | "Silver", 236 | "Silver", 237 | "Silver", 238 | "Gold", 239 | "Silver", 240 | "Silver", 241 | "Gold", 242 | "Silver" 243 | ], 244 | "Quest_earlygame_1": [ 245 | "Gold", 246 | "Magic", 247 | "Gold", 248 | "Giant" 249 | ], 250 | "Quest_earlygame_2": [ 251 | "Gold", 252 | "Giant", 253 | "Gold", 254 | "Magic" 255 | ], 256 | "Quest_lategame_1": [ 257 | "Gold", 258 | "Magic", 259 | "Gold", 260 | "Giant", 261 | "Legendary", 262 | "Gold", 263 | "Giant", 264 | "Gold", 265 | "SuperLightning", 266 | "Magic", 267 | "Gold", 268 | "Epic" 269 | ], 270 | "Quest_lategame_2": [ 271 | "Gold", 272 | "Magic", 273 | "Gold", 274 | "Legendary", 275 | "Giant", 276 | "Gold", 277 | "SuperLightning", 278 | "Gold", 279 | "Giant", 280 | "Gold", 281 | "Epic", 282 | "Magic" 283 | ], 284 | "Quest_lategame_3": [ 285 | "Gold", 286 | "Magic", 287 | "Gold", 288 | "Giant", 289 | "Gold", 290 | "SuperLightning", 291 | "Gold", 292 | "Magic", 293 | "Epic", 294 | "Gold", 295 | "Legendary", 296 | "Giant" 297 | ], 298 | "Quest_lategame_4": [ 299 | "Gold", 300 | "Magic", 301 | "Gold", 302 | "Giant", 303 | "Legendary", 304 | "Gold", 305 | "Epic", 306 | "Gold", 307 | "SuperLightning", 308 | "Gold", 309 | "Magic", 310 | "Giant" 311 | ], 312 | "Quest_lategame_5": [ 313 | "Gold", 314 | "Giant", 315 | "Legendary", 316 | "Gold", 317 | "Magic", 318 | "Gold", 319 | "SuperLightning", 320 | "Gold", 321 | "Epic", 322 | "Magic", 323 | "Gold", 324 | "Giant" 325 | ], 326 | "Quest_lategame_6": [ 327 | "Gold", 328 | "Giant", 329 | "Gold", 330 | "Magic", 331 | "Legendary", 332 | "Gold", 333 | "Magic", 334 | "Gold", 335 | "SuperLightning", 336 | "Gold", 337 | "Epic", 338 | "Giant" 339 | ], 340 | "Quest_lategame_7": [ 341 | "Gold", 342 | "Giant", 343 | "SuperLightning", 344 | "Gold", 345 | "Giant", 346 | "Gold", 347 | "Magic", 348 | "Gold", 349 | "Epic", 350 | "Magic", 351 | "Gold", 352 | "Legendary" 353 | ], 354 | "Quest_lategame_8": [ 355 | "Gold", 356 | "Giant", 357 | "Epic", 358 | "Gold", 359 | "SuperLightning", 360 | "Gold", 361 | "Giant", 362 | "Gold", 363 | "Magic", 364 | "Legendary", 365 | "Gold", 366 | "Magic" 367 | ], 368 | "Quest_lategame_9": [ 369 | "Gold", 370 | "SuperLightning", 371 | "Gold", 372 | "Giant", 373 | "Gold", 374 | "Magic", 375 | "Legendary", 376 | "Gold", 377 | "Epic", 378 | "Gold", 379 | "Giant", 380 | "Magic" 381 | ], 382 | "Quest_lategame_10": [ 383 | "Gold", 384 | "Legendary", 385 | "Gold", 386 | "Magic", 387 | "Giant", 388 | "Gold", 389 | "SuperLightning", 390 | "Gold", 391 | "Epic", 392 | "Gold", 393 | "Magic", 394 | "Giant" 395 | ], 396 | "Quest_arena3_UNUSED": [ 397 | "SuperLightning" 398 | ], 399 | "MainCycleKL13": [ 400 | "Gold", 401 | "Giant", 402 | "Gold", 403 | "GoldCage_Small", 404 | "Gold", 405 | "Gold", 406 | "Gold", 407 | "GoldCage_Medium", 408 | "Gold", 409 | "Gold", 410 | "GoldCage_Small", 411 | "GoldCage_Large", 412 | "Gold", 413 | "Silver", 414 | "Gold", 415 | "Gold", 416 | "GoldCage_Small", 417 | "Gold", 418 | "Gold", 419 | "Gold", 420 | "Magic", 421 | "Gold", 422 | "Gold", 423 | "Silver", 424 | "GoldCage_Medium", 425 | "Gold", 426 | "Gold", 427 | "GoldCage_Small", 428 | "GoldCage_Medium", 429 | "Gold", 430 | "Gold", 431 | "GoldCage_Medium", 432 | "Gold", 433 | "Gold", 434 | "Gold", 435 | "Silver", 436 | "Gold", 437 | "Silver", 438 | "GoldCage_Large", 439 | "Silver", 440 | "Magic", 441 | "Gold", 442 | "GoldCage_Small", 443 | "GoldCage_Small", 444 | "Gold", 445 | "Gold", 446 | "Gold", 447 | "GoldCage_Medium", 448 | "Gold", 449 | "GoldCage_Small", 450 | "Gold", 451 | "Gold", 452 | "Giant", 453 | "Gold", 454 | "Gold", 455 | "Gold", 456 | "GoldCage_Small", 457 | "GoldCage_Medium", 458 | "Gold", 459 | "Giant", 460 | "GoldCage_Small", 461 | "Gold", 462 | "Gold", 463 | "Gold", 464 | "Silver", 465 | "Silver", 466 | "GoldCage_Small", 467 | "Gold", 468 | "Gold", 469 | "Silver", 470 | "Gold", 471 | "Silver", 472 | "Gold", 473 | "GoldCage_Medium", 474 | "Gold", 475 | "Silver", 476 | "Silver", 477 | "Gold", 478 | "Silver", 479 | "Gold", 480 | "Gold", 481 | "Gold", 482 | "Silver", 483 | "Silver", 484 | "Gold", 485 | "Gold", 486 | "Gold", 487 | "Silver", 488 | "GoldCage_Small", 489 | "Silver", 490 | "Gold", 491 | "Gold", 492 | "Giant", 493 | "Gold", 494 | "Gold", 495 | "Gold", 496 | "GoldCage_Small", 497 | "Gold", 498 | "Gold", 499 | "Gold", 500 | "GoldCage_Medium", 501 | "Gold", 502 | "GoldCage_Medium", 503 | "Gold", 504 | "Silver", 505 | "Gold", 506 | "GoldCage_Large", 507 | "GoldCage_Small", 508 | "GoldCage_Medium", 509 | "Silver", 510 | "Magic", 511 | "Gold", 512 | "Magic", 513 | "Silver", 514 | "Gold", 515 | "Gold", 516 | "Gold", 517 | "Giant", 518 | "Gold", 519 | "Gold", 520 | "Silver", 521 | "Gold", 522 | "GoldCage_Medium", 523 | "Gold", 524 | "Gold", 525 | "GoldCage_Small", 526 | "Gold", 527 | "Silver", 528 | "Giant", 529 | "Magic", 530 | "Gold", 531 | "GoldCage_Small", 532 | "Gold", 533 | "Gold", 534 | "Silver", 535 | "Gold", 536 | "GoldCage_Small", 537 | "Gold", 538 | "GoldCage_Large", 539 | "WildChampion", 540 | "Gold", 541 | "Gold", 542 | "Gold", 543 | "Silver", 544 | "GoldCage_Medium", 545 | "GoldCage_Medium", 546 | "Gold", 547 | "Gold", 548 | "Gold", 549 | "GoldCage_Medium", 550 | "Silver", 551 | "Silver", 552 | "GoldCage_Small", 553 | "Silver", 554 | "Magic", 555 | "Gold", 556 | "GoldCage_Small", 557 | "GoldCage_Large", 558 | "GoldCage_Small", 559 | "Silver", 560 | "Giant", 561 | "Gold", 562 | "GoldCage_Small", 563 | "Gold", 564 | "Magic", 565 | "Silver", 566 | "Silver", 567 | "Silver", 568 | "GoldCage_Medium", 569 | "Gold", 570 | "GoldCage_Small", 571 | "Gold", 572 | "Gold", 573 | "Gold", 574 | "Magic", 575 | "Gold", 576 | "Giant", 577 | "Gold", 578 | "Gold", 579 | "Magic", 580 | "GoldCage_Large", 581 | "Gold", 582 | "Gold", 583 | "Silver", 584 | "GoldCage_Large", 585 | "Gold", 586 | "WildChampion", 587 | "Gold", 588 | "GoldCage_Small", 589 | "Gold", 590 | "Gold", 591 | "GoldCage_Small", 592 | "Gold", 593 | "Gold", 594 | "Giant", 595 | "Gold" 596 | ], 597 | "MainCycleKL12": [ 598 | "Gold", 599 | "Gold", 600 | "Silver", 601 | "Gold", 602 | "GoldCage_Medium", 603 | "Silver", 604 | "GoldCage_Medium", 605 | "Gold", 606 | "Silver", 607 | "Gold", 608 | "GoldCage_Medium", 609 | "Gold", 610 | "Silver", 611 | "Silver", 612 | "Silver", 613 | "Gold", 614 | "Gold", 615 | "Silver", 616 | "Silver", 617 | "Gold", 618 | "GoldCage_Small", 619 | "GoldCage_Large", 620 | "Gold", 621 | "Gold", 622 | "Giant", 623 | "Silver", 624 | "Gold", 625 | "Silver", 626 | "Gold", 627 | "GoldCage_Small", 628 | "Gold", 629 | "Gold", 630 | "GoldCage_Small", 631 | "Gold", 632 | "Silver", 633 | "GoldCage_Small", 634 | "Gold", 635 | "Silver", 636 | "Gold", 637 | "Silver", 638 | "Silver", 639 | "Giant", 640 | "Magic", 641 | "Silver", 642 | "Silver", 643 | "Gold", 644 | "GoldCage_Large", 645 | "Gold", 646 | "Gold", 647 | "GoldCage_Medium", 648 | "Silver", 649 | "Gold", 650 | "Gold", 651 | "Gold", 652 | "GoldCage_Small", 653 | "Gold", 654 | "WildChampion", 655 | "Gold", 656 | "Silver", 657 | "Gold", 658 | "Gold", 659 | "Silver", 660 | "Gold", 661 | "Silver", 662 | "Silver", 663 | "Gold", 664 | "Gold", 665 | "GoldCage_Small", 666 | "Silver", 667 | "Gold", 668 | "Gold", 669 | "Silver", 670 | "Gold", 671 | "Silver", 672 | "Silver", 673 | "GoldCage_Large", 674 | "Silver", 675 | "Gold", 676 | "Silver", 677 | "Gold", 678 | "Gold", 679 | "Magic", 680 | "GoldCage_Small", 681 | "GoldCage_Medium", 682 | "Gold", 683 | "Silver", 684 | "Silver", 685 | "GoldCage_Medium", 686 | "Silver", 687 | "Magic", 688 | "Gold", 689 | "Gold", 690 | "Gold", 691 | "Silver", 692 | "Giant", 693 | "Gold", 694 | "Silver", 695 | "Gold", 696 | "Magic", 697 | "Gold", 698 | "Silver", 699 | "Silver", 700 | "Gold", 701 | "Gold", 702 | "Gold", 703 | "Silver", 704 | "Silver", 705 | "Gold", 706 | "Silver", 707 | "Gold", 708 | "Silver", 709 | "Gold", 710 | "Silver", 711 | "Gold", 712 | "Silver", 713 | "Silver", 714 | "Gold", 715 | "Gold", 716 | "GoldCage_Small", 717 | "GoldCage_Small", 718 | "Silver", 719 | "GoldCage_Large", 720 | "Gold", 721 | "Gold", 722 | "GoldCage_Medium", 723 | "Silver", 724 | "Gold", 725 | "Silver", 726 | "Silver", 727 | "GoldCage_Small", 728 | "Gold", 729 | "Gold", 730 | "Gold", 731 | "Giant", 732 | "GoldCage_Small", 733 | "Gold", 734 | "Gold", 735 | "Gold", 736 | "Silver", 737 | "Magic", 738 | "Gold", 739 | "Gold", 740 | "GoldCage_Medium", 741 | "Giant", 742 | "GoldCage_Small", 743 | "Gold", 744 | "Gold", 745 | "Gold", 746 | "Silver", 747 | "Gold", 748 | "Silver", 749 | "GoldCage_Small", 750 | "Silver", 751 | "Gold", 752 | "Giant", 753 | "Gold", 754 | "Gold", 755 | "Silver", 756 | "Silver", 757 | "Giant", 758 | "Gold", 759 | "Gold", 760 | "Gold", 761 | "GoldCage_Medium", 762 | "Gold", 763 | "Silver", 764 | "Gold", 765 | "Gold", 766 | "Silver", 767 | "Gold", 768 | "Silver", 769 | "Gold", 770 | "Silver", 771 | "Gold", 772 | "GoldCage_Large", 773 | "Gold", 774 | "Gold", 775 | "Silver", 776 | "Silver", 777 | "Silver", 778 | "Gold", 779 | "Gold", 780 | "Magic", 781 | "Gold", 782 | "Gold", 783 | "WildChampion", 784 | "Gold", 785 | "Silver", 786 | "Gold", 787 | "Silver", 788 | "Gold", 789 | "Silver", 790 | "Gold", 791 | "Silver", 792 | "GoldCage_Medium", 793 | "Gold", 794 | "Gold", 795 | "GoldCage_Small", 796 | "Gold", 797 | "Gold", 798 | "Gold", 799 | "GoldCage_Small", 800 | "Gold", 801 | "Silver", 802 | "Gold", 803 | "Gold", 804 | "Gold", 805 | "Magic", 806 | "Gold" 807 | ], 808 | "MainCycleKL11": [ 809 | "Gold", 810 | "Silver", 811 | "Silver", 812 | "Gold", 813 | "Silver", 814 | "GoldCage_Medium", 815 | "Gold", 816 | "Silver", 817 | "Silver", 818 | "Gold", 819 | "Silver", 820 | "GoldCage_Small", 821 | "Gold", 822 | "Gold", 823 | "Gold", 824 | "Silver", 825 | "Gold", 826 | "Silver", 827 | "Gold", 828 | "Magic", 829 | "Silver", 830 | "GoldCage_Small", 831 | "Gold", 832 | "Gold", 833 | "Silver", 834 | "Gold", 835 | "Silver", 836 | "Gold", 837 | "Silver", 838 | "Gold", 839 | "Silver", 840 | "Silver", 841 | "Silver", 842 | "Magic", 843 | "Silver", 844 | "Gold", 845 | "Silver", 846 | "Gold", 847 | "Gold", 848 | "Silver", 849 | "Silver", 850 | "GoldCage_Small", 851 | "Silver", 852 | "Gold", 853 | "Gold", 854 | "GoldCage_Small", 855 | "Gold", 856 | "Silver", 857 | "Silver", 858 | "Silver", 859 | "Gold", 860 | "Silver", 861 | "Silver", 862 | "Gold", 863 | "Gold", 864 | "Silver", 865 | "Gold", 866 | "Gold", 867 | "Gold", 868 | "Silver", 869 | "Gold", 870 | "Silver", 871 | "Gold", 872 | "Silver", 873 | "Giant", 874 | "Silver", 875 | "Magic", 876 | "Silver", 877 | "Gold", 878 | "Giant", 879 | "Gold", 880 | "Silver", 881 | "Gold", 882 | "Silver", 883 | "Silver", 884 | "Silver", 885 | "Gold", 886 | "Gold", 887 | "Gold", 888 | "Silver", 889 | "Gold", 890 | "Silver", 891 | "Silver", 892 | "Silver", 893 | "GoldCage_Medium", 894 | "Silver", 895 | "Silver", 896 | "Silver", 897 | "GoldCage_Small", 898 | "Gold", 899 | "Silver", 900 | "Silver", 901 | "Silver", 902 | "GoldCage_Small", 903 | "Gold", 904 | "Silver", 905 | "Silver", 906 | "Gold", 907 | "Gold", 908 | "Gold", 909 | "Silver", 910 | "Silver", 911 | "Silver", 912 | "Gold", 913 | "Silver", 914 | "Gold", 915 | "GoldCage_Large", 916 | "GoldCage_Large", 917 | "Silver", 918 | "Gold", 919 | "Silver", 920 | "WildChampion", 921 | "Silver", 922 | "Silver", 923 | "Silver", 924 | "Gold", 925 | "Silver", 926 | "Silver", 927 | "Gold", 928 | "Gold", 929 | "Gold", 930 | "Silver", 931 | "GoldCage_Medium", 932 | "Silver", 933 | "Magic", 934 | "Gold", 935 | "Gold", 936 | "Silver", 937 | "Silver", 938 | "Silver", 939 | "Gold", 940 | "Gold", 941 | "Silver", 942 | "Gold", 943 | "Gold", 944 | "Giant", 945 | "Gold", 946 | "Gold", 947 | "Gold", 948 | "Silver", 949 | "Silver", 950 | "Gold", 951 | "Gold", 952 | "Silver", 953 | "Gold", 954 | "Silver", 955 | "Silver", 956 | "Gold", 957 | "GoldCage_Small", 958 | "Silver", 959 | "Silver", 960 | "Silver", 961 | "Gold", 962 | "Gold", 963 | "Gold", 964 | "Silver", 965 | "Gold", 966 | "Silver", 967 | "Silver", 968 | "Gold", 969 | "Magic", 970 | "Silver", 971 | "GoldCage_Medium", 972 | "Silver", 973 | "Silver", 974 | "WildChampion", 975 | "Gold", 976 | "Gold", 977 | "Silver", 978 | "Gold", 979 | "Gold", 980 | "Silver", 981 | "Silver", 982 | "GoldCage_Medium", 983 | "Gold", 984 | "Silver", 985 | "Gold", 986 | "Silver", 987 | "Gold", 988 | "Gold", 989 | "Silver", 990 | "Silver", 991 | "Silver", 992 | "Gold", 993 | "Gold", 994 | "Gold", 995 | "Silver", 996 | "Gold", 997 | "Silver", 998 | "Silver", 999 | "Silver", 1000 | "Gold", 1001 | "Gold", 1002 | "Gold", 1003 | "Silver", 1004 | "GoldCage_Large", 1005 | "Silver", 1006 | "Gold", 1007 | "Gold", 1008 | "Gold", 1009 | "Silver", 1010 | "Gold", 1011 | "Silver", 1012 | "Gold", 1013 | "Gold", 1014 | "Gold", 1015 | "Silver", 1016 | "Giant", 1017 | "Gold", 1018 | "Gold", 1019 | "Gold", 1020 | "Giant", 1021 | "Gold", 1022 | "Gold" 1023 | ], 1024 | "MainCycleKL10": [ 1025 | "Silver", 1026 | "Gold", 1027 | "Gold", 1028 | "Silver", 1029 | "Silver", 1030 | "Silver", 1031 | "Gold", 1032 | "Gold", 1033 | "Gold", 1034 | "Silver", 1035 | "Silver", 1036 | "Silver", 1037 | "GoldCage_Small", 1038 | "Silver", 1039 | "Silver", 1040 | "Gold", 1041 | "Silver", 1042 | "Silver", 1043 | "Silver", 1044 | "Gold", 1045 | "Silver", 1046 | "Gold", 1047 | "Silver", 1048 | "Silver", 1049 | "Silver", 1050 | "Gold", 1051 | "Gold", 1052 | "Gold", 1053 | "Silver", 1054 | "Magic", 1055 | "Gold", 1056 | "Silver", 1057 | "Silver", 1058 | "Gold", 1059 | "Giant", 1060 | "Gold", 1061 | "Gold", 1062 | "Silver", 1063 | "Gold", 1064 | "Silver", 1065 | "Silver", 1066 | "Silver", 1067 | "GoldCage_Medium", 1068 | "Silver", 1069 | "Gold", 1070 | "Gold", 1071 | "Gold", 1072 | "Silver", 1073 | "Silver", 1074 | "Gold", 1075 | "Silver", 1076 | "Silver", 1077 | "Silver", 1078 | "Gold", 1079 | "Silver", 1080 | "Silver", 1081 | "Silver", 1082 | "Gold", 1083 | "Gold", 1084 | "Silver", 1085 | "Gold", 1086 | "GoldCage_Medium", 1087 | "Silver", 1088 | "Gold", 1089 | "Silver", 1090 | "GoldCage_Small", 1091 | "Silver", 1092 | "Giant", 1093 | "Silver", 1094 | "GoldCage_Small", 1095 | "Silver", 1096 | "Gold", 1097 | "Silver", 1098 | "Silver", 1099 | "Silver", 1100 | "Gold", 1101 | "Silver", 1102 | "Silver", 1103 | "Gold", 1104 | "Silver", 1105 | "Gold", 1106 | "Gold", 1107 | "Silver", 1108 | "Gold", 1109 | "Silver", 1110 | "Silver", 1111 | "GoldCage_Small", 1112 | "Silver", 1113 | "Silver", 1114 | "Silver", 1115 | "Gold", 1116 | "Silver", 1117 | "Silver", 1118 | "Silver", 1119 | "Gold", 1120 | "Gold", 1121 | "Gold", 1122 | "Silver", 1123 | "Silver", 1124 | "Silver", 1125 | "Giant", 1126 | "Silver", 1127 | "Silver", 1128 | "Silver", 1129 | "Gold", 1130 | "Gold", 1131 | "Gold", 1132 | "Silver", 1133 | "Silver", 1134 | "Silver", 1135 | "Magic", 1136 | "Gold", 1137 | "Silver", 1138 | "Gold", 1139 | "Silver", 1140 | "Silver", 1141 | "Gold", 1142 | "Silver", 1143 | "Silver", 1144 | "Silver", 1145 | "GoldCage_Small", 1146 | "Silver", 1147 | "GoldCage_Medium", 1148 | "Silver", 1149 | "Silver", 1150 | "GoldCage_Large", 1151 | "Silver", 1152 | "Silver", 1153 | "Gold", 1154 | "Silver", 1155 | "Gold", 1156 | "Silver", 1157 | "Silver", 1158 | "WildChampion", 1159 | "Gold", 1160 | "Silver", 1161 | "Gold", 1162 | "Silver", 1163 | "Silver", 1164 | "Silver", 1165 | "Gold", 1166 | "Gold", 1167 | "Silver", 1168 | "Silver", 1169 | "Silver", 1170 | "Gold", 1171 | "Silver", 1172 | "Silver", 1173 | "Giant", 1174 | "Silver", 1175 | "Silver", 1176 | "Silver", 1177 | "Gold", 1178 | "Silver", 1179 | "Silver", 1180 | "Silver", 1181 | "Gold", 1182 | "Silver", 1183 | "Silver", 1184 | "Silver", 1185 | "Gold", 1186 | "Silver", 1187 | "Gold", 1188 | "Silver", 1189 | "Silver", 1190 | "Silver", 1191 | "Gold", 1192 | "Magic", 1193 | "Silver", 1194 | "Silver", 1195 | "GoldCage_Small", 1196 | "Silver", 1197 | "Silver", 1198 | "Silver", 1199 | "Gold", 1200 | "Silver", 1201 | "Silver", 1202 | "Gold", 1203 | "Magic", 1204 | "Gold", 1205 | "Silver", 1206 | "Silver", 1207 | "Silver", 1208 | "Gold", 1209 | "Silver", 1210 | "Gold", 1211 | "Silver", 1212 | "Silver", 1213 | "Silver", 1214 | "Gold", 1215 | "Silver", 1216 | "Gold", 1217 | "Silver", 1218 | "Silver", 1219 | "Silver", 1220 | "Gold", 1221 | "Silver", 1222 | "Silver", 1223 | "Gold", 1224 | "Silver", 1225 | "Silver", 1226 | "Gold", 1227 | "Silver", 1228 | "Silver", 1229 | "Gold", 1230 | "Silver", 1231 | "Gold", 1232 | "Silver", 1233 | "Silver", 1234 | "Silver", 1235 | "Gold", 1236 | "Silver", 1237 | "WildChampion", 1238 | "Gold", 1239 | "Silver", 1240 | "Silver", 1241 | "Silver", 1242 | "GoldCage_Medium", 1243 | "Silver", 1244 | "Silver", 1245 | "Silver", 1246 | "Silver", 1247 | "Silver" 1248 | ], 1249 | "MainCycleKL14": [ 1250 | "GoldCage_Medium", 1251 | "Gold", 1252 | "Gold", 1253 | "Gold", 1254 | "GoldCage_Medium", 1255 | "Gold", 1256 | "Gold", 1257 | "GoldCage_Large", 1258 | "Gold", 1259 | "WildChampion", 1260 | "GoldCage_Medium", 1261 | "GoldCage_Large", 1262 | "GoldCage_Medium", 1263 | "Gold", 1264 | "Gold", 1265 | "Gold", 1266 | "GoldCage_Small", 1267 | "Gold", 1268 | "Gold", 1269 | "GoldCage_Small", 1270 | "Gold", 1271 | "Gold", 1272 | "Gold", 1273 | "Giant", 1274 | "GoldCage_Medium", 1275 | "GoldCage_Small", 1276 | "Gold", 1277 | "Gold", 1278 | "GoldCage_Small", 1279 | "GoldCage_Medium", 1280 | "GoldCage_Small", 1281 | "Gold", 1282 | "Gold", 1283 | "Gold", 1284 | "GoldCage_Medium", 1285 | "GoldCage_Small", 1286 | "Gold", 1287 | "Giant", 1288 | "Gold", 1289 | "Magic", 1290 | "Gold", 1291 | "GoldCage_Large", 1292 | "Gold", 1293 | "Gold", 1294 | "GoldCage_Medium", 1295 | "Gold", 1296 | "GoldCage_Small", 1297 | "GoldCage_Medium", 1298 | "Gold", 1299 | "Gold", 1300 | "Magic", 1301 | "GoldCage_Small", 1302 | "Gold", 1303 | "GoldCage_Large", 1304 | "GoldCage_Medium", 1305 | "GoldCage_Small", 1306 | "Gold", 1307 | "GoldCage_Medium", 1308 | "Gold", 1309 | "Gold", 1310 | "Gold", 1311 | "Magic", 1312 | "Gold", 1313 | "GoldCage_Small", 1314 | "Gold", 1315 | "Gold", 1316 | "Gold", 1317 | "GoldCage_Small", 1318 | "Gold", 1319 | "Gold", 1320 | "GoldCage_Medium", 1321 | "Magic", 1322 | "GoldCage_Small", 1323 | "Giant", 1324 | "Gold", 1325 | "Gold", 1326 | "Gold", 1327 | "GoldCage_Large", 1328 | "Gold", 1329 | "Giant", 1330 | "Gold", 1331 | "Gold", 1332 | "GoldCage_Small", 1333 | "Magic", 1334 | "Gold", 1335 | "Gold", 1336 | "Giant", 1337 | "Gold", 1338 | "Magic", 1339 | "Gold", 1340 | "Gold", 1341 | "Gold", 1342 | "Giant", 1343 | "Gold", 1344 | "Gold", 1345 | "Gold", 1346 | "Gold", 1347 | "GoldCage_Small", 1348 | "GoldCage_Small", 1349 | "Gold", 1350 | "Gold", 1351 | "Gold", 1352 | "Magic", 1353 | "Gold", 1354 | "Gold", 1355 | "Gold", 1356 | "GoldCage_Small", 1357 | "Gold", 1358 | "Gold", 1359 | "Gold", 1360 | "GoldCage_Medium", 1361 | "Gold", 1362 | "GoldCage_Medium", 1363 | "Gold", 1364 | "Magic", 1365 | "Gold", 1366 | "GoldCage_Small", 1367 | "GoldCage_Large", 1368 | "Gold", 1369 | "Giant", 1370 | "WildChampion", 1371 | "Gold", 1372 | "GoldCage_Small", 1373 | "GoldCage_Small", 1374 | "Gold", 1375 | "Gold", 1376 | "Gold", 1377 | "Giant", 1378 | "Gold", 1379 | "GoldCage_Small", 1380 | "Gold", 1381 | "Gold", 1382 | "Gold", 1383 | "GoldCage_Small", 1384 | "GoldCage_Small", 1385 | "Gold", 1386 | "GoldCage_Medium", 1387 | "Gold", 1388 | "Gold", 1389 | "Gold", 1390 | "Magic", 1391 | "Gold", 1392 | "Gold", 1393 | "Gold", 1394 | "Magic", 1395 | "Gold", 1396 | "Giant", 1397 | "Gold", 1398 | "Giant", 1399 | "GoldCage_Small", 1400 | "Gold", 1401 | "GoldCage_Medium", 1402 | "Gold", 1403 | "Magic", 1404 | "Gold", 1405 | "GoldCage_Small", 1406 | "Gold", 1407 | "GoldCage_Small", 1408 | "Gold", 1409 | "Gold", 1410 | "GoldCage_Small", 1411 | "GoldCage_Medium", 1412 | "Gold", 1413 | "Gold", 1414 | "GoldCage_Small", 1415 | "Gold", 1416 | "Gold", 1417 | "GoldCage_Large", 1418 | "GoldCage_Small", 1419 | "GoldCage_Medium", 1420 | "Gold", 1421 | "GoldCage_Medium", 1422 | "Gold", 1423 | "Giant", 1424 | "Gold", 1425 | "GoldCage_Small", 1426 | "GoldCage_Small", 1427 | "Gold", 1428 | "GoldCage_Large", 1429 | "Gold", 1430 | "GoldCage_Small", 1431 | "GoldCage_Medium", 1432 | "Gold", 1433 | "GoldCage_Large" 1434 | ] 1435 | } -------------------------------------------------------------------------------- /docs/json/clan_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "1v1": { 3 | "thresholds": [ 4 | 0 5 | ], 6 | "gold": [ 7 | 0 8 | ], 9 | "cards": [ 10 | 0 11 | ] 12 | }, 13 | "2v2": { 14 | "thresholds": [ 15 | 0 16 | ], 17 | "gold": [ 18 | 0 19 | ], 20 | "cards": [ 21 | 0 22 | ] 23 | } 24 | } -------------------------------------------------------------------------------- /docs/json/draft_deck.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Draft_old", 4 | "required_sets": [ 5 | "Draft_AllRandom", 6 | "Draft_DamageSpell", 7 | "Draft_AntiAir", 8 | "Draft_AntiAir2", 9 | "Draft_MainAttack" 10 | ], 11 | "optional_sets": [ 12 | "Draft_TankUnit", 13 | "Draft_3costUnit", 14 | "Draft_4costUnit", 15 | "Draft_5costUnit", 16 | "Draft_Aggressive", 17 | "Draft_Buildings", 18 | "Draft_CheapDudes", 19 | "Draft_CoolStuff", 20 | "Draft_Legendary", 21 | "Draft_CheapCards" 22 | ] 23 | }, 24 | { 25 | "name": "TEST_Draft_balance_test", 26 | "required_sets": [ 27 | "TEST_Draft_All_live_cards", 28 | "Draft_DamageSpell", 29 | "Draft_AntiAir", 30 | "Draft_AntiAir2", 31 | "Draft_MainAttack" 32 | ], 33 | "optional_sets": [ 34 | "Draft_TankUnit", 35 | "Draft_3costUnit", 36 | "Draft_4costUnit", 37 | "Draft_5costUnit", 38 | "Draft_Aggressive", 39 | "Draft_Buildings", 40 | "Draft_CheapDudes", 41 | "Draft_CoolStuff", 42 | "Draft_Legendary", 43 | "Draft_CheapCards" 44 | ] 45 | }, 46 | { 47 | "name": "TEST_Draft_new_cards_test", 48 | "required_sets": [ 49 | "TEST_Draft_New_cards", 50 | "Draft_DamageSpell", 51 | "Draft_AntiAir", 52 | "Draft_AntiAir2", 53 | "Draft_MainAttack" 54 | ], 55 | "optional_sets": [ 56 | "Draft_TankUnit", 57 | "Draft_3costUnit", 58 | "Draft_4costUnit", 59 | "Draft_5costUnit", 60 | "Draft_Aggressive", 61 | "Draft_Buildings", 62 | "Draft_CheapDudes", 63 | "Draft_CoolStuff", 64 | "Draft_Legendary", 65 | "Draft_CheapCards" 66 | ] 67 | }, 68 | { 69 | "name": "TEST_Draft_new_cards_daily_test", 70 | "required_sets": [ 71 | "TEST_Draft_New_cards_daily", 72 | "Draft_DamageSpell", 73 | "Draft_AntiAir", 74 | "Draft_AntiAir2", 75 | "Draft_MainAttack" 76 | ], 77 | "optional_sets": [ 78 | "Draft_TankUnit", 79 | "Draft_3costUnit", 80 | "Draft_4costUnit", 81 | "Draft_5costUnit", 82 | "Draft_Aggressive", 83 | "Draft_Buildings", 84 | "Draft_CheapDudes", 85 | "Draft_CoolStuff", 86 | "Draft_Legendary", 87 | "Draft_CheapCards" 88 | ] 89 | }, 90 | { 91 | "name": "Draft_Touchdown_v1", 92 | "required_sets": [ 93 | "Draft_TD_FastRunners", 94 | "Draft_TD_BigRunners", 95 | "Draft_TD_AntiAir", 96 | "Draft_TD_Melee", 97 | "Draft_TD_Buildings", 98 | "Draft_TD_DamageSpells" 99 | ], 100 | "optional_sets": [ 101 | "Draft_TD_Buildings", 102 | "Draft_TD_DamageSpells", 103 | "Draft_TD_AntiAir", 104 | "Draft_TD_CheapDudes", 105 | "Draft_TD_Champions" 106 | ] 107 | }, 108 | { 109 | "name": "Draft_H_v1", 110 | "required_sets": [ 111 | "Draft_H_any", 112 | "Draft_H_any", 113 | "Draft_H_any", 114 | "Draft_H_any", 115 | "Draft_H_any", 116 | "Draft_H_any", 117 | "Draft_H_any", 118 | "Draft_H_any" 119 | ] 120 | }, 121 | { 122 | "name": "Draft_v1_dec_card_release", 123 | "required_sets": [ 124 | "Draft_DecNewCards", 125 | "Draft_AllRandom", 126 | "Draft_DamageSpell", 127 | "Draft_AntiAir", 128 | "Draft_AntiAir2", 129 | "Draft_MainAttack" 130 | ], 131 | "optional_sets": [ 132 | "Draft_TankUnit", 133 | "Draft_3costUnit", 134 | "Draft_4costUnit", 135 | "Draft_5costUnit", 136 | "Draft_Aggressive", 137 | "Draft_Buildings", 138 | "Draft_CheapDudes", 139 | "Draft_CoolStuff", 140 | "Draft_Legendary", 141 | "Draft_CheapCards" 142 | ] 143 | }, 144 | { 145 | "name": "Draft_v1", 146 | "required_sets": [ 147 | "Draft_RH_TankUnit", 148 | "Draft_RH_AntiAir", 149 | "Draft_RH_Distractions", 150 | "Draft_RH_DirectDamage", 151 | "Draft_RH_WinCons" 152 | ], 153 | "optional_sets": [ 154 | "Draft_RH_Investment", 155 | "Draft_RH_Punish", 156 | "Draft_RH_HitTower", 157 | "Draft_RH_VersatileLegs", 158 | "Draft_RH_TankSupport", 159 | "Draft_RH_AntiTank", 160 | "Draft_RH_2ndSpell", 161 | "Draft_RH_Splash", 162 | "Draft_RH_MiniTank", 163 | "Draft_RH_Basic3s", 164 | "Draft_RH_CycleUnder3", 165 | "Draft_RH_CheapAntiAir" 166 | ] 167 | }, 168 | { 169 | "name": "Draft_SnowHogs", 170 | "required_sets": [ 171 | "Draft_RH_TankUnit", 172 | "Draft_RH_AntiAir", 173 | "Draft_RH_CycleUnder3", 174 | "Draft_RH_DirectDamage", 175 | "Draft_RH_Punish" 176 | ], 177 | "optional_sets": [ 178 | "Draft_RH_Investment", 179 | "Draft_RH_HitTower", 180 | "Draft_RH_CombatTricks", 181 | "Draft_RH_VersatileLegs", 182 | "Draft_RH_TankSupport", 183 | "Draft_RH_AntiTank", 184 | "Draft_RH_Distractions", 185 | "Draft_RH_Splash", 186 | "Draft_RH_MiniTank", 187 | "Draft_RH_WinCons", 188 | "Draft_RH_Basic3s", 189 | "Draft_RH_2ndSpell" 190 | ] 191 | }, 192 | { 193 | "name": "Draft_Level5to8", 194 | "required_sets": [ 195 | "Draft_58_Tank", 196 | "Draft_58_Spell", 197 | "Draft_58_AntiAir", 198 | "Draft_58_Distractions", 199 | "Draft_58_AntiTank", 200 | "Draft_58_Buildings", 201 | "Draft_58_WinCons", 202 | "Draft_58_Splash" 203 | ] 204 | }, 205 | { 206 | "name": "Draft_NewCardsTest", 207 | "required_sets": [ 208 | "Draft_TEST_TankUnit", 209 | "Draft_TEST_AntiAir", 210 | "Draft_TEST_Distractions", 211 | "Draft_TEST_DirectDamage", 212 | "Draft_TEST_WinCons" 213 | ], 214 | "optional_sets": [ 215 | "Draft_TEST_Investment", 216 | "Draft_TEST_Punish", 217 | "Draft_TEST_HitTower", 218 | "Draft_TEST_CombatTricks", 219 | "Draft_TEST_VersatileLegs", 220 | "Draft_TEST_TankSupport", 221 | "Draft_TEST_AntiTank", 222 | "Draft_TEST_2ndSpell", 223 | "Draft_TEST_Splash", 224 | "Draft_TEST_MiniTank", 225 | "Draft_TEST_Basic3s", 226 | "Draft_TEST_CycleUnder3", 227 | "Draft_TEST_CheapAntiAir" 228 | ] 229 | }, 230 | { 231 | "name": "Draft_Promo", 232 | "required_sets": [ 233 | "Draft_RH_TankUnit", 234 | "Draft_Promo", 235 | "Draft_RH_Distractions", 236 | "Draft_RH_DirectDamage", 237 | "Draft_RH_WinCons" 238 | ], 239 | "optional_sets": [ 240 | "Draft_RH_Punish", 241 | "Draft_Promo_HitTower", 242 | "Draft_RH_CombatTricks", 243 | "Draft_Promo_VersatileLegs", 244 | "Draft_Promo_TankSupport", 245 | "Draft_Promo_AntiTank", 246 | "Draft_RH_2ndSpell", 247 | "Draft_Promo_Splash", 248 | "Draft_RH_MiniTank", 249 | "Draft_RH_Basic3s", 250 | "Draft_RH_CycleUnder3", 251 | "Draft_Promo_CheapAntiAir" 252 | ] 253 | }, 254 | { 255 | "name": "Draft_2017", 256 | "required_sets": [ 257 | "Draft_2017_TankUnit", 258 | "Draft_2017_AntiAir", 259 | "Draft_2017_Distractions", 260 | "Draft_2017_DirectDamage", 261 | "Draft_2017_AntiTank", 262 | "Draft_2017_WinCons" 263 | ], 264 | "optional_sets": [ 265 | "Draft_2017_Investment", 266 | "Draft_2017_Punish", 267 | "Draft_2017_VersatileLegs", 268 | "Draft_2017_TankSupport", 269 | "Draft_2017_2ndSpell", 270 | "Draft_2017_Splash", 271 | "Draft_2017_MiniTank", 272 | "Draft_2017_Basic3s", 273 | "Draft_2017_CycleUnder3", 274 | "Draft_2017_CheapAntiAir" 275 | ] 276 | }, 277 | { 278 | "name": "Draft_TestSpellSupport" 279 | }, 280 | { 281 | "name": "Draft_Competitive", 282 | "required_sets": [ 283 | "Draft_Comp_WinCon", 284 | "Draft_Comp_SmallSpell", 285 | "Draft_Comp_BigSpell", 286 | "Draft_Comp_AntiAir", 287 | "Draft_Comp_CheapAntiAir" 288 | ], 289 | "optional_sets": [ 290 | "Draft_Comp_TankSupport", 291 | "Draft_Comp_AntiTank", 292 | "Draft_Comp_MiniTank", 293 | "Draft_Comp_Distractions" 294 | ] 295 | }, 296 | { 297 | "name": "Build_A_Deck", 298 | "required_sets": [ 299 | "BAD_WinCon", 300 | "BAD_AntiTank", 301 | "BAD_AntiAir", 302 | "BAD_MiniTank", 303 | "BAD_Distraction", 304 | "BAD_SmallSpell", 305 | "BAD_BigSpell" 306 | ], 307 | "optional_sets": "Draft_AllRandom" 308 | }, 309 | { 310 | "name": "Build_A_Defense", 311 | "required_sets": [ 312 | "BoatDefense_Attackers", 313 | "BoatDefense_Defenders", 314 | "BoatDefense_Spells", 315 | "BoatDefense_Range" 316 | ] 317 | }, 318 | { 319 | "name": "Draft_ValentinesDay", 320 | "required_sets": [ 321 | "Draft_RH_Valentines_TankUnit", 322 | "Draft_RH_Valentines_AntiAir", 323 | "Draft_RH_Valentines_Distractions", 324 | "Draft_RH_Valentines_DirectDamage", 325 | "Draft_RH_Valentines_WinCons", 326 | "Draft_RH_Valentines_MagicArcher_and_Princess" 327 | ], 328 | "optional_sets": [ 329 | "Draft_RH_Valentines_Investment", 330 | "Draft_RH_Valentines_Punish", 331 | "Draft_RH_Valentines_HitTower", 332 | "Draft_RH_Valentines_VersatileLegs", 333 | "Draft_RH_Valentines_TankSupport", 334 | "Draft_RH_Valentines_AntiTank", 335 | "Draft_RH_Valentines_2ndSpell", 336 | "Draft_RH_Valentines_Splash", 337 | "Draft_RH_Valentines_MiniTank", 338 | "Draft_RH_Valentines_Basic3s", 339 | "Draft_RH_Valentines_CycleUnder3", 340 | "Draft_RH_Valentines_CheapAntiAir", 341 | "Draft_RH_Valentines_Champions" 342 | ] 343 | }, 344 | { 345 | "name": "Draft_v1_Champions", 346 | "required_sets": [ 347 | "Draft_RH_TankUnit", 348 | "Draft_RH_AntiAir", 349 | "Draft_RH_Distractions", 350 | "Draft_RH_DirectDamage", 351 | "Draft_RH_WinCons" 352 | ], 353 | "optional_sets": [ 354 | "Draft_RH_Investment", 355 | "Draft_RH_Punish", 356 | "Draft_RH_HitTower", 357 | "Draft_RH_VersatileLegs", 358 | "Draft_RH_TankSupport", 359 | "Draft_RH_AntiTank", 360 | "Draft_RH_2ndSpell", 361 | "Draft_RH_Splash", 362 | "Draft_RH_MiniTank", 363 | "Draft_RH_Basic3s", 364 | "Draft_RH_CycleUnder3", 365 | "Draft_RH_CheapAntiAir", 366 | "Draft_RH_Champions" 367 | ] 368 | }, 369 | { 370 | "name": "Draft_WhichWitch", 371 | "required_sets": [ 372 | "Draft_RH_WhichWitch_TankUnit", 373 | "Draft_RH_WhichWitch_AntiAir", 374 | "Draft_RH_WhichWitch_Distractions", 375 | "Draft_RH_WhichWitch_DirectDamage", 376 | "Draft_RH_WhichWitch_WinCons", 377 | "Draft_RH_WhichWitch_Witch_NightWitch" 378 | ], 379 | "optional_sets": [ 380 | "Draft_RH_WhichWitch_Investment", 381 | "Draft_RH_WhichWitch_Punish", 382 | "Draft_RH_WhichWitch_HitTower", 383 | "Draft_RH_WhichWitch_VersatileLegs", 384 | "Draft_RH_WhichWitch_TankSupport", 385 | "Draft_RH_WhichWitch_AntiTank", 386 | "Draft_RH_WhichWitch_2ndSpell", 387 | "Draft_RH_WhichWitch_Splash", 388 | "Draft_RH_WhichWitch_MiniTank", 389 | "Draft_RH_WhichWitch_Basic3s", 390 | "Draft_RH_WhichWitch_CycleUnder3", 391 | "Draft_RH_WhichWitch_CheapAntiAir", 392 | "Draft_RH_Champions" 393 | ] 394 | }, 395 | { 396 | "name": "Draft_Goblins_vs_Skeletons", 397 | "required_sets": [ 398 | "Draft_GvsS_BigSpell", 399 | "Draft_GvsS_SmallSpell", 400 | "Draft_GvsS_GoblinGiant_GiantSkeleton", 401 | "Draft_GvsS_GoblinDrill_SkeletonBalloon", 402 | "Draft_GvsS_GoblinBarrel_Graveyard" 403 | ], 404 | "optional_sets": [ 405 | "Draft_GvsS_Goblins_Skeletons", 406 | "Draft_GvsS_GoblinHut_Tombstone", 407 | "Draft_GvsS_GoblinGang_SkeletonArmy", 408 | "Draft_GvsS_SpearGoblins_Bomber", 409 | "Draft_GvsS_DartGoblin_SkeletonDragons", 410 | "Draft_GvsS_DartGoblin_BattleTricks" 411 | ] 412 | }, 413 | { 414 | "name": "Draft_Competitive_SuperCards", 415 | "required_sets": [ 416 | "Draft_Comp_SuperCards", 417 | "Draft_Comp_WinCon", 418 | "Draft_Comp_SmallSpell", 419 | "Draft_Comp_BigSpell", 420 | "Draft_Comp_AntiAir", 421 | "Draft_Comp_CheapAntiAir" 422 | ], 423 | "optional_sets": [ 424 | "Draft_Comp_TankSupport", 425 | "Draft_Comp_AntiTank", 426 | "Draft_Comp_MiniTank", 427 | "Draft_Comp_Distractions" 428 | ] 429 | }, 430 | { 431 | "name": "Draft_V2_EVO", 432 | "required_sets": [ 433 | "Draft_V2_EVO", 434 | "Draft_V2_TankUnit", 435 | "Draft_V2_AntiAir", 436 | "Draft_V2_Distractions", 437 | "Draft_V2_DirectDamage", 438 | "Draft_V2_WinCons" 439 | ], 440 | "optional_sets": [ 441 | "Draft_V2_Investment", 442 | "Draft_V2_Punish", 443 | "Draft_V2_HitTower", 444 | "Draft_V2_VersatileLegs", 445 | "Draft_V2_TankSupport", 446 | "Draft_V2_AntiTank", 447 | "Draft_V2_2ndSpell", 448 | "Draft_V2_Splash", 449 | "Draft_V2_MiniTank", 450 | "Draft_V2_Basic3s", 451 | "Draft_V2_CycleUnder3", 452 | "Draft_V2_CheapAntiAir" 453 | ] 454 | } 455 | ] -------------------------------------------------------------------------------- /docs/json/emote_text.json: -------------------------------------------------------------------------------- 1 | { 2 | "TID_EMOTE1": { 3 | "en": "Good luck!", 4 | "fr": "Bonne chance !", 5 | "de": "Viel Glück!", 6 | "es": "¡Buena suerte!", 7 | "it": "Buona fortuna!", 8 | "nl": "Veel succes!", 9 | "no": "Lykke til!", 10 | "tr": "Bol şans!", 11 | "jp": "よろしく!", 12 | "kr": "행운을 빌어요!", 13 | "ru": "Удачи!", 14 | "ar": "حظًا موفقًا!", 15 | "pt": "Boa sorte!", 16 | "cn": "祝你好运!", 17 | "cnt": "祝你好運!", 18 | "fa": "موفق باشی!", 19 | "id": "Semoga sukses!", 20 | "ms": "Semoga berjaya!", 21 | "th": "โชคดีนะ!", 22 | "fi": "Onnea taisteluun!", 23 | "vi": "Chúc may mắn!", 24 | "sc_key": "TID_EMOTE1" 25 | }, 26 | "TID_EMOTE2": { 27 | "en": "Well played!", 28 | "fr": "Bien joué !", 29 | "de": "Nicht schlecht!", 30 | "es": "¡Bien jugado!", 31 | "it": "Bella giocata!", 32 | "nl": "Goed gespeeld!", 33 | "no": "Bra spilt!", 34 | "tr": "Bravo!", 35 | "jp": "やるな!", 36 | "kr": "잘했어요!", 37 | "ru": "Отличная игра!", 38 | "ar": "أحسنت!", 39 | "pt": "Muito bem!", 40 | "cn": "厉害!", 41 | "cnt": "厲害!", 42 | "fa": "خوب بازی کردی!", 43 | "id": "Permainan cantik!", 44 | "ms": "Cemerlang!", 45 | "th": "เล่นได้ดี!", 46 | "fi": "Hyvin pelattu!", 47 | "vi": "Chơi hay lắm!", 48 | "sc_key": "TID_EMOTE2" 49 | }, 50 | "TID_EMOTE3": { 51 | "en": "Wow!", 52 | "fr": "Super !", 53 | "de": "Wow!", 54 | "es": "¡Guau!", 55 | "it": "Wow!", 56 | "nl": "Wauw!", 57 | "no": "Wow!", 58 | "tr": "Vay be!", 59 | "jp": "まさか!", 60 | "kr": "와우!", 61 | "ru": "Ух ты!", 62 | "ar": "مذهل!", 63 | "pt": "Uau!", 64 | "cn": "Wow!", 65 | "cnt": "Wow!", 66 | "fa": "وای!", 67 | "id": "Wow!", 68 | "ms": "Wah!", 69 | "th": "ว้าว!", 70 | "fi": "Vau!", 71 | "vi": "Ồ!", 72 | "sc_key": "TID_EMOTE3" 73 | }, 74 | "TID_EMOTE4": { 75 | "en": "Thanks!", 76 | "fr": "Merci !", 77 | "de": "Danke!", 78 | "es": "¡Gracias!", 79 | "it": "Grazie!", 80 | "nl": "Bedankt!", 81 | "no": "Takk!", 82 | "tr": "Teşekkürler!", 83 | "jp": "ありがとう!", 84 | "kr": "고마워요!", 85 | "ru": "Спасибо!", 86 | "ar": "شكرًا!", 87 | "pt": "Obrigado!", 88 | "cn": "承让!", 89 | "cnt": "承讓!", 90 | "fa": "ممنون!", 91 | "id": "Terima kasih!", 92 | "ms": "Terima kasih!", 93 | "th": "ขอบคุณ!", 94 | "fi": "Kiitos!", 95 | "vi": "Cám ơn!", 96 | "sc_key": "TID_EMOTE4" 97 | }, 98 | "TID_EMOTE5": { 99 | "en": "Good game!", 100 | "fr": "Super combat !", 101 | "de": "Gutes Spiel!", 102 | "es": "¡Buena partida!", 103 | "it": "Bella partita!", 104 | "nl": "Geweldig spel!", 105 | "no": "Bra gjort!", 106 | "tr": "İyi oyundu!", 107 | "jp": "グッドゲーム!", 108 | "kr": "멋진 한 판이군요!", 109 | "ru": "Хорошая игра!", 110 | "ar": "أداء جيد!", 111 | "pt": "Bom jogo!", 112 | "cn": "Good game!", 113 | "cnt": "Good game!", 114 | "fa": "بازی خوبی بود!", 115 | "id": "Permainan bagus!", 116 | "ms": "Permainan baik!", 117 | "th": "เป็นเกมที่ดี!", 118 | "fi": "Hyvä ottelu!", 119 | "vi": "Trận đấu hay lắm!", 120 | "sc_key": "TID_EMOTE5" 121 | }, 122 | "TID_EMOTE6": { 123 | "en": "Oops", 124 | "fr": "Aïe...", 125 | "de": "Ups!", 126 | "es": "Vaya...", 127 | "it": "Ops", 128 | "nl": "Oeps", 129 | "no": "Ops", 130 | "tr": "Eyvah", 131 | "jp": "おっと!", 132 | "kr": "이런!", 133 | "ru": "Ой...", 134 | "ar": "ويحي", 135 | "pt": "Ops!", 136 | "cn": "Oops", 137 | "cnt": "糟糕", 138 | "fa": "آخ", 139 | "id": "Ups", 140 | "ms": "Alamak", 141 | "th": "โอ๊ะ", 142 | "fi": "Hups...", 143 | "vi": "Ối", 144 | "sc_key": "TID_EMOTE6" 145 | } 146 | } -------------------------------------------------------------------------------- /docs/json/exp_levels.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "1", 4 | "exp_to_next_level": 20, 5 | "summoner_level": 1, 6 | "tower_level": 1, 7 | "troop_level": 1, 8 | "original_exp_to_next_level": 20, 9 | "min_exp": 0 10 | }, 11 | { 12 | "name": "2", 13 | "exp_to_next_level": 50, 14 | "summoner_level": 2, 15 | "tower_level": 2, 16 | "troop_level": 2, 17 | "original_exp_to_next_level": 50, 18 | "level_up_chest": "LevelUpChest_KL2", 19 | "min_exp": 20 20 | }, 21 | { 22 | "name": "3", 23 | "exp_to_next_level": 50, 24 | "summoner_level": 3, 25 | "tower_level": 3, 26 | "troop_level": 3, 27 | "original_exp_to_next_level": 100, 28 | "level_up_chest": "LevelUpChest_KL3", 29 | "min_exp": 70 30 | }, 31 | { 32 | "name": "4", 33 | "exp_to_next_level": 50, 34 | "summoner_level": 3, 35 | "tower_level": 3, 36 | "troop_level": 3, 37 | "original_exp_to_next_level": 200, 38 | "level_up_chest": "LevelUpChest_KL4", 39 | "min_exp": 120 40 | }, 41 | { 42 | "name": "5", 43 | "exp_to_next_level": 80, 44 | "summoner_level": 4, 45 | "tower_level": 4, 46 | "troop_level": 4, 47 | "original_exp_to_next_level": 400, 48 | "level_up_chest": "LevelUpChest_KL5", 49 | "min_exp": 170 50 | }, 51 | { 52 | "name": "6", 53 | "exp_to_next_level": 120, 54 | "summoner_level": 4, 55 | "tower_level": 4, 56 | "troop_level": 4, 57 | "original_exp_to_next_level": 1000, 58 | "level_up_chest": "LevelUpChest_KL6", 59 | "min_exp": 250 60 | }, 61 | { 62 | "name": "7", 63 | "exp_to_next_level": 125, 64 | "summoner_level": 5, 65 | "tower_level": 5, 66 | "troop_level": 5, 67 | "original_exp_to_next_level": 2000, 68 | "level_up_chest": "LevelUpChest_KL7", 69 | "min_exp": 370 70 | }, 71 | { 72 | "name": "8", 73 | "exp_to_next_level": 130, 74 | "summoner_level": 5, 75 | "tower_level": 5, 76 | "troop_level": 5, 77 | "original_exp_to_next_level": 5000, 78 | "level_up_chest": "LevelUpChest_KL8", 79 | "min_exp": 495 80 | }, 81 | { 82 | "name": "9", 83 | "exp_to_next_level": 145, 84 | "summoner_level": 5, 85 | "tower_level": 5, 86 | "troop_level": 5, 87 | "original_exp_to_next_level": 10000, 88 | "level_up_chest": "LevelUpChest_KL9", 89 | "min_exp": 625 90 | }, 91 | { 92 | "name": "10", 93 | "exp_to_next_level": 200, 94 | "summoner_level": 6, 95 | "tower_level": 6, 96 | "troop_level": 6, 97 | "original_exp_to_next_level": 30000, 98 | "level_up_chest": "LevelUpChest_KL10", 99 | "min_exp": 770 100 | }, 101 | { 102 | "name": "11", 103 | "exp_to_next_level": 220, 104 | "summoner_level": 6, 105 | "tower_level": 6, 106 | "troop_level": 6, 107 | "original_exp_to_next_level": 40000, 108 | "level_up_chest": "LevelUpChest_KL11", 109 | "min_exp": 970 110 | }, 111 | { 112 | "name": "12", 113 | "exp_to_next_level": 280, 114 | "summoner_level": 6, 115 | "tower_level": 6, 116 | "troop_level": 6, 117 | "original_exp_to_next_level": 80000, 118 | "level_up_chest": "LevelUpChest_KL12", 119 | "min_exp": 1190 120 | }, 121 | { 122 | "name": "13", 123 | "exp_to_next_level": 300, 124 | "summoner_level": 6, 125 | "tower_level": 6, 126 | "troop_level": 6, 127 | "original_exp_to_next_level": 100000, 128 | "level_up_chest": "LevelUpChest_KL13", 129 | "min_exp": 1470 130 | }, 131 | { 132 | "name": "14", 133 | "exp_to_next_level": 350, 134 | "summoner_level": 7, 135 | "tower_level": 7, 136 | "troop_level": 7, 137 | "original_exp_to_next_level": 0, 138 | "level_up_chest": "LevelUpChest_KL14", 139 | "min_exp": 1770 140 | }, 141 | { 142 | "name": "15", 143 | "exp_to_next_level": 450, 144 | "summoner_level": 7, 145 | "tower_level": 7, 146 | "troop_level": 7, 147 | "original_exp_to_next_level": 0, 148 | "level_up_chest": "LevelUpChest_KL15", 149 | "min_exp": 2120 150 | }, 151 | { 152 | "name": "16", 153 | "exp_to_next_level": 550, 154 | "summoner_level": 7, 155 | "tower_level": 7, 156 | "troop_level": 7, 157 | "original_exp_to_next_level": 0, 158 | "level_up_chest": "LevelUpChest_KL16", 159 | "min_exp": 2570 160 | }, 161 | { 162 | "name": "17", 163 | "exp_to_next_level": 650, 164 | "summoner_level": 7, 165 | "tower_level": 7, 166 | "troop_level": 7, 167 | "original_exp_to_next_level": 0, 168 | "level_up_chest": "LevelUpChest_KL17", 169 | "min_exp": 3120 170 | }, 171 | { 172 | "name": "18", 173 | "exp_to_next_level": 800, 174 | "summoner_level": 8, 175 | "tower_level": 8, 176 | "troop_level": 8, 177 | "original_exp_to_next_level": 0, 178 | "level_up_chest": "LevelUpChest_KL18", 179 | "min_exp": 3770 180 | }, 181 | { 182 | "name": "19", 183 | "exp_to_next_level": 1200, 184 | "summoner_level": 8, 185 | "tower_level": 8, 186 | "troop_level": 8, 187 | "original_exp_to_next_level": 0, 188 | "level_up_chest": "LevelUpChest_KL19", 189 | "min_exp": 4570 190 | }, 191 | { 192 | "name": "20", 193 | "exp_to_next_level": 1400, 194 | "summoner_level": 8, 195 | "tower_level": 8, 196 | "troop_level": 8, 197 | "original_exp_to_next_level": 0, 198 | "level_up_chest": "LevelUpChest_KL20", 199 | "min_exp": 5770 200 | }, 201 | { 202 | "name": "21", 203 | "exp_to_next_level": 1600, 204 | "summoner_level": 8, 205 | "tower_level": 8, 206 | "troop_level": 8, 207 | "original_exp_to_next_level": 0, 208 | "level_up_chest": "LevelUpChest_KL21", 209 | "min_exp": 7170 210 | }, 211 | { 212 | "name": "22", 213 | "exp_to_next_level": 2000, 214 | "summoner_level": 9, 215 | "tower_level": 9, 216 | "troop_level": 9, 217 | "original_exp_to_next_level": 0, 218 | "level_up_chest": "LevelUpChest_KL22", 219 | "min_exp": 8770 220 | }, 221 | { 222 | "name": "23", 223 | "exp_to_next_level": 2300, 224 | "summoner_level": 9, 225 | "tower_level": 9, 226 | "troop_level": 9, 227 | "original_exp_to_next_level": 0, 228 | "level_up_chest": "LevelUpChest_KL23", 229 | "min_exp": 10770 230 | }, 231 | { 232 | "name": "24", 233 | "exp_to_next_level": 2700, 234 | "summoner_level": 9, 235 | "tower_level": 9, 236 | "troop_level": 9, 237 | "original_exp_to_next_level": 0, 238 | "level_up_chest": "LevelUpChest_KL24", 239 | "min_exp": 13070 240 | }, 241 | { 242 | "name": "25", 243 | "exp_to_next_level": 3000, 244 | "summoner_level": 9, 245 | "tower_level": 9, 246 | "troop_level": 9, 247 | "original_exp_to_next_level": 0, 248 | "level_up_chest": "LevelUpChest_KL25", 249 | "min_exp": 15770 250 | }, 251 | { 252 | "name": "26", 253 | "exp_to_next_level": 4000, 254 | "summoner_level": 10, 255 | "tower_level": 10, 256 | "troop_level": 10, 257 | "original_exp_to_next_level": 0, 258 | "level_up_chest": "LevelUpChest_KL26", 259 | "min_exp": 18770 260 | }, 261 | { 262 | "name": "27", 263 | "exp_to_next_level": 4600, 264 | "summoner_level": 10, 265 | "tower_level": 10, 266 | "troop_level": 10, 267 | "original_exp_to_next_level": 0, 268 | "level_up_chest": "LevelUpChest_KL27", 269 | "min_exp": 22770 270 | }, 271 | { 272 | "name": "28", 273 | "exp_to_next_level": 5400, 274 | "summoner_level": 10, 275 | "tower_level": 10, 276 | "troop_level": 10, 277 | "original_exp_to_next_level": 0, 278 | "level_up_chest": "LevelUpChest_KL28", 279 | "min_exp": 27370 280 | }, 281 | { 282 | "name": "29", 283 | "exp_to_next_level": 6000, 284 | "summoner_level": 10, 285 | "tower_level": 10, 286 | "troop_level": 10, 287 | "original_exp_to_next_level": 0, 288 | "level_up_chest": "LevelUpChest_KL29", 289 | "min_exp": 32770 290 | }, 291 | { 292 | "name": "30", 293 | "exp_to_next_level": 7000, 294 | "summoner_level": 11, 295 | "tower_level": 11, 296 | "troop_level": 11, 297 | "original_exp_to_next_level": 0, 298 | "level_up_chest": "LevelUpChest_KL30", 299 | "min_exp": 38770 300 | }, 301 | { 302 | "name": "31", 303 | "exp_to_next_level": 8000, 304 | "summoner_level": 11, 305 | "tower_level": 11, 306 | "troop_level": 11, 307 | "original_exp_to_next_level": 0, 308 | "level_up_chest": "LevelUpChest_KL31", 309 | "min_exp": 45770 310 | }, 311 | { 312 | "name": "32", 313 | "exp_to_next_level": 9000, 314 | "summoner_level": 11, 315 | "tower_level": 11, 316 | "troop_level": 11, 317 | "original_exp_to_next_level": 0, 318 | "level_up_chest": "LevelUpChest_KL32", 319 | "min_exp": 53770 320 | }, 321 | { 322 | "name": "33", 323 | "exp_to_next_level": 11000, 324 | "summoner_level": 11, 325 | "tower_level": 11, 326 | "troop_level": 11, 327 | "original_exp_to_next_level": 0, 328 | "level_up_chest": "LevelUpChest_KL33", 329 | "min_exp": 62770 330 | }, 331 | { 332 | "name": "34", 333 | "exp_to_next_level": 12500, 334 | "summoner_level": 12, 335 | "tower_level": 12, 336 | "troop_level": 12, 337 | "original_exp_to_next_level": 0, 338 | "level_up_chest": "LevelUpChest_KL34", 339 | "min_exp": 73770 340 | }, 341 | { 342 | "name": "35", 343 | "exp_to_next_level": 12500, 344 | "summoner_level": 12, 345 | "tower_level": 12, 346 | "troop_level": 12, 347 | "original_exp_to_next_level": 0, 348 | "level_up_chest": "LevelUpChest_KL35", 349 | "min_exp": 86270 350 | }, 351 | { 352 | "name": "36", 353 | "exp_to_next_level": 12500, 354 | "summoner_level": 12, 355 | "tower_level": 12, 356 | "troop_level": 12, 357 | "original_exp_to_next_level": 0, 358 | "level_up_chest": "LevelUpChest_KL36", 359 | "min_exp": 98770 360 | }, 361 | { 362 | "name": "37", 363 | "exp_to_next_level": 12500, 364 | "summoner_level": 12, 365 | "tower_level": 12, 366 | "troop_level": 12, 367 | "original_exp_to_next_level": 0, 368 | "level_up_chest": "LevelUpChest_KL37", 369 | "min_exp": 111270 370 | }, 371 | { 372 | "name": "38", 373 | "exp_to_next_level": 15000, 374 | "summoner_level": 13, 375 | "tower_level": 13, 376 | "troop_level": 13, 377 | "original_exp_to_next_level": 0, 378 | "level_up_chest": "LevelUpChest_KL38", 379 | "min_exp": 123770 380 | }, 381 | { 382 | "name": "39", 383 | "exp_to_next_level": 18000, 384 | "summoner_level": 13, 385 | "tower_level": 13, 386 | "troop_level": 13, 387 | "original_exp_to_next_level": 0, 388 | "level_up_chest": "LevelUpChest_KL39", 389 | "min_exp": 138770 390 | }, 391 | { 392 | "name": "40", 393 | "exp_to_next_level": 22000, 394 | "summoner_level": 13, 395 | "tower_level": 13, 396 | "troop_level": 13, 397 | "original_exp_to_next_level": 0, 398 | "level_up_chest": "LevelUpChest_KL40", 399 | "min_exp": 156770 400 | }, 401 | { 402 | "name": "41", 403 | "exp_to_next_level": 25000, 404 | "summoner_level": 13, 405 | "tower_level": 13, 406 | "troop_level": 13, 407 | "original_exp_to_next_level": 0, 408 | "level_up_chest": "LevelUpChest_KL41", 409 | "min_exp": 178770 410 | }, 411 | { 412 | "name": "42", 413 | "exp_to_next_level": 25000, 414 | "summoner_level": 14, 415 | "tower_level": 14, 416 | "troop_level": 14, 417 | "original_exp_to_next_level": 0, 418 | "level_up_chest": "LevelUpChest_KL42", 419 | "min_exp": 203770 420 | }, 421 | { 422 | "name": "43", 423 | "exp_to_next_level": 25000, 424 | "summoner_level": 14, 425 | "tower_level": 14, 426 | "troop_level": 14, 427 | "original_exp_to_next_level": 0, 428 | "level_up_chest": "LevelUpChest_KL43", 429 | "min_exp": 228770 430 | }, 431 | { 432 | "name": "44", 433 | "exp_to_next_level": 25000, 434 | "summoner_level": 14, 435 | "tower_level": 14, 436 | "troop_level": 14, 437 | "original_exp_to_next_level": 0, 438 | "level_up_chest": "LevelUpChest_KL44", 439 | "min_exp": 253770 440 | }, 441 | { 442 | "name": "45", 443 | "exp_to_next_level": 25000, 444 | "summoner_level": 14, 445 | "tower_level": 14, 446 | "troop_level": 14, 447 | "original_exp_to_next_level": 0, 448 | "level_up_chest": "LevelUpChest_KL45", 449 | "min_exp": 278770 450 | }, 451 | { 452 | "name": "46", 453 | "exp_to_next_level": 25000, 454 | "summoner_level": 14, 455 | "tower_level": 14, 456 | "troop_level": 14, 457 | "original_exp_to_next_level": 0, 458 | "level_up_chest": "LevelUpChest_KL46", 459 | "min_exp": 303770 460 | }, 461 | { 462 | "name": "47", 463 | "exp_to_next_level": 25000, 464 | "summoner_level": 14, 465 | "tower_level": 14, 466 | "troop_level": 14, 467 | "original_exp_to_next_level": 0, 468 | "level_up_chest": "LevelUpChest_KL47", 469 | "min_exp": 328770 470 | }, 471 | { 472 | "name": "48", 473 | "exp_to_next_level": 25000, 474 | "summoner_level": 14, 475 | "tower_level": 14, 476 | "troop_level": 14, 477 | "original_exp_to_next_level": 0, 478 | "level_up_chest": "LevelUpChest_KL48", 479 | "min_exp": 353770 480 | }, 481 | { 482 | "name": "49", 483 | "exp_to_next_level": 25000, 484 | "summoner_level": 14, 485 | "tower_level": 14, 486 | "troop_level": 14, 487 | "original_exp_to_next_level": 0, 488 | "level_up_chest": "LevelUpChest_KL49", 489 | "min_exp": 378770 490 | }, 491 | { 492 | "name": "50", 493 | "exp_to_next_level": 25000, 494 | "summoner_level": 14, 495 | "tower_level": 14, 496 | "troop_level": 14, 497 | "original_exp_to_next_level": 0, 498 | "level_up_chest": "LevelUpChest_KL50", 499 | "min_exp": 403770 500 | }, 501 | { 502 | "name": "51", 503 | "exp_to_next_level": 50000, 504 | "summoner_level": 14, 505 | "tower_level": 14, 506 | "troop_level": 14, 507 | "original_exp_to_next_level": 0, 508 | "level_up_chest": "LevelUpChest_KL51", 509 | "min_exp": 428770 510 | }, 511 | { 512 | "name": "52", 513 | "exp_to_next_level": 75000, 514 | "summoner_level": 14, 515 | "tower_level": 14, 516 | "troop_level": 14, 517 | "original_exp_to_next_level": 0, 518 | "level_up_chest": "LevelUpChest_KL52", 519 | "min_exp": 478770 520 | }, 521 | { 522 | "name": "53", 523 | "exp_to_next_level": 100000, 524 | "summoner_level": 14, 525 | "tower_level": 14, 526 | "troop_level": 14, 527 | "original_exp_to_next_level": 0, 528 | "level_up_chest": "LevelUpChest_KL53", 529 | "min_exp": 553770 530 | }, 531 | { 532 | "name": "54", 533 | "exp_to_next_level": 125000, 534 | "summoner_level": 15, 535 | "tower_level": 15, 536 | "troop_level": 15, 537 | "original_exp_to_next_level": 0, 538 | "level_up_chest": "LevelUpChest_KL54", 539 | "min_exp": 653770 540 | }, 541 | { 542 | "name": "55", 543 | "exp_to_next_level": 150000, 544 | "summoner_level": 15, 545 | "tower_level": 15, 546 | "troop_level": 15, 547 | "original_exp_to_next_level": 0, 548 | "level_up_chest": "LevelUpChest_KL55", 549 | "min_exp": 778770 550 | }, 551 | { 552 | "name": "56", 553 | "exp_to_next_level": 175000, 554 | "summoner_level": 15, 555 | "tower_level": 15, 556 | "troop_level": 15, 557 | "original_exp_to_next_level": 0, 558 | "level_up_chest": "LevelUpChest_KL56", 559 | "min_exp": 928770 560 | }, 561 | { 562 | "name": "57", 563 | "exp_to_next_level": 200000, 564 | "summoner_level": 15, 565 | "tower_level": 15, 566 | "troop_level": 15, 567 | "original_exp_to_next_level": 0, 568 | "level_up_chest": "LevelUpChest_KL57", 569 | "min_exp": 1103770 570 | }, 571 | { 572 | "name": "58", 573 | "exp_to_next_level": 225000, 574 | "summoner_level": 15, 575 | "tower_level": 15, 576 | "troop_level": 15, 577 | "original_exp_to_next_level": 0, 578 | "level_up_chest": "LevelUpChest_KL58", 579 | "min_exp": 1303770 580 | }, 581 | { 582 | "name": "59", 583 | "exp_to_next_level": 250000, 584 | "summoner_level": 15, 585 | "tower_level": 15, 586 | "troop_level": 15, 587 | "original_exp_to_next_level": 0, 588 | "level_up_chest": "LevelUpChest_KL59", 589 | "min_exp": 1528770 590 | }, 591 | { 592 | "name": "60", 593 | "exp_to_next_level": 275000, 594 | "summoner_level": 15, 595 | "tower_level": 15, 596 | "troop_level": 15, 597 | "original_exp_to_next_level": 0, 598 | "level_up_chest": "LevelUpChest_KL60", 599 | "min_exp": 1778770 600 | }, 601 | { 602 | "name": "61", 603 | "exp_to_next_level": 300000, 604 | "summoner_level": 15, 605 | "tower_level": 15, 606 | "troop_level": 15, 607 | "original_exp_to_next_level": 0, 608 | "level_up_chest": "LevelUpChest_KL61", 609 | "min_exp": 2053770 610 | }, 611 | { 612 | "name": "62", 613 | "exp_to_next_level": 325000, 614 | "summoner_level": 15, 615 | "tower_level": 15, 616 | "troop_level": 15, 617 | "original_exp_to_next_level": 0, 618 | "level_up_chest": "LevelUpChest_KL62", 619 | "min_exp": 2353770 620 | }, 621 | { 622 | "name": "63", 623 | "exp_to_next_level": 350000, 624 | "summoner_level": 15, 625 | "tower_level": 15, 626 | "troop_level": 15, 627 | "original_exp_to_next_level": 0, 628 | "level_up_chest": "LevelUpChest_KL63", 629 | "min_exp": 2678770 630 | }, 631 | { 632 | "name": "64", 633 | "exp_to_next_level": 375000, 634 | "summoner_level": 15, 635 | "tower_level": 15, 636 | "troop_level": 15, 637 | "original_exp_to_next_level": 0, 638 | "level_up_chest": "LevelUpChest_KL64", 639 | "min_exp": 3028770 640 | }, 641 | { 642 | "name": "65", 643 | "exp_to_next_level": 400000, 644 | "summoner_level": 15, 645 | "tower_level": 15, 646 | "troop_level": 15, 647 | "original_exp_to_next_level": 0, 648 | "level_up_chest": "LevelUpChest_KL65", 649 | "min_exp": 3403770 650 | }, 651 | { 652 | "name": "66", 653 | "exp_to_next_level": 425000, 654 | "summoner_level": 15, 655 | "tower_level": 15, 656 | "troop_level": 15, 657 | "original_exp_to_next_level": 0, 658 | "level_up_chest": "LevelUpChest_KL66", 659 | "min_exp": 3803770 660 | }, 661 | { 662 | "name": "67", 663 | "exp_to_next_level": 450000, 664 | "summoner_level": 15, 665 | "tower_level": 15, 666 | "troop_level": 15, 667 | "original_exp_to_next_level": 0, 668 | "level_up_chest": "LevelUpChest_KL67", 669 | "min_exp": 4228770 670 | }, 671 | { 672 | "name": "68", 673 | "exp_to_next_level": 475000, 674 | "summoner_level": 15, 675 | "tower_level": 15, 676 | "troop_level": 15, 677 | "original_exp_to_next_level": 0, 678 | "level_up_chest": "LevelUpChest_KL68", 679 | "min_exp": 4678770 680 | }, 681 | { 682 | "name": "69", 683 | "exp_to_next_level": 500000, 684 | "summoner_level": 15, 685 | "tower_level": 15, 686 | "troop_level": 15, 687 | "original_exp_to_next_level": 0, 688 | "level_up_chest": "LevelUpChest_KL69", 689 | "min_exp": 5153770 690 | }, 691 | { 692 | "name": "70", 693 | "exp_to_next_level": 525000, 694 | "summoner_level": 15, 695 | "tower_level": 15, 696 | "troop_level": 15, 697 | "original_exp_to_next_level": 0, 698 | "level_up_chest": "LevelUpChest_KL70", 699 | "min_exp": 5653770 700 | } 701 | ] -------------------------------------------------------------------------------- /docs/json/projectiles_evo.json: -------------------------------------------------------------------------------- 1 | { 2 | "projectiles_evo": [ 3 | { 4 | "sc_key": "RoyalGiantProjectile_EV1", 5 | "rarity": "Common", 6 | "speed": 1000, 7 | "fileName": "sc/chr_royalgiant_evolution.sc", 8 | "exportName": "RoyalGiant_Evolution_projectile", 9 | "shadowExportName": "RoyalGiant_Evolution_projectile_shadow", 10 | "scale": 60, 11 | "homing": true, 12 | "hitEffect": "royal_giant_projectile_hit", 13 | "damage": 120, 14 | "radius": 250, 15 | "aoeToGround": true, 16 | "onlyEnemies": true, 17 | "projectileRadius": 250, 18 | "projectileStartExtraRadius": 400, 19 | "constantHeight": 1500, 20 | "deflectBehaviour": "IgnoreHeight" 21 | }, 22 | { 23 | "sc_key": "FirecrackerProjectile_EV1", 24 | "rarity": "Common", 25 | "speed": 400, 26 | "fileName": "sc/chr_firecracker_evolution.sc", 27 | "exportName": "evofirecracker_projectile", 28 | "shadowExportName": "evofirecracker_projectile_shadow", 29 | "scale": 80, 30 | "hitEffect": "firecracker_hit", 31 | "aoeToAir": true, 32 | "aoeToGround": true, 33 | "onlyEnemies": true, 34 | "gravity": 50, 35 | "trailEffect": "firecracker_projectile_Emitter", 36 | "spawnAreaEffectObject": "FirecrackerFireworksBig_EV1", 37 | "spawnProjectile": "FirecrackerExplosion_EV1", 38 | "scatter": "Line" 39 | }, 40 | { 41 | "sc_key": "FirecrackerExplosion_EV1", 42 | "rarity": "Common", 43 | "speed": 550, 44 | "fileName": "sc/chr_firecracker_dl.sc", 45 | "exportName": "firecracker_projectile2", 46 | "shadowExportName": "firecracker_projectile2_shadow", 47 | "scale": 150, 48 | "hitEffect": "firecracker_hit2", 49 | "damage": 25, 50 | "radius": 400, 51 | "aoeToAir": true, 52 | "aoeToGround": true, 53 | "onlyEnemies": true, 54 | "gravity": 50, 55 | "spawnAreaEffectObject": "FirecrackerFireworksSmall_EV1", 56 | "trailEffect": "firecracker_projectile2_emitter", 57 | "projectileRadius": 400, 58 | "projectileStartExtraRadius": 650, 59 | "projectileRange": 5000, 60 | "spawnCount": 5, 61 | "spawnRadius": 80, 62 | "minDistance": 5000, 63 | "constantHeight": 1000, 64 | "shakesTargets": true, 65 | "shakesShooter": 500, 66 | "scatter": "Circle", 67 | "deflectBehaviour": "InvertDirection" 68 | }, 69 | { 70 | "sc_key": "MortarProjectile_EV1", 71 | "rarity": "Common", 72 | "speed": 300, 73 | "fileName": "sc/effects_evolution.sc", 74 | "exportName": "mortar_evolved_projectile_v2", 75 | "redExportName": "enemy_mortar_evolved_projectile", 76 | "scale": 150, 77 | "hitEffect": "mortar_hit", 78 | "damage": 104, 79 | "radius": 2000, 80 | "aoeToGround": true, 81 | "onlyEnemies": true, 82 | "gravity": 60, 83 | "spawnCharacterDeployTime": 200, 84 | "spawnCharacter": "Goblin", 85 | "spawnConstPriority": true 86 | } 87 | ] 88 | } -------------------------------------------------------------------------------- /docs/json/rarities.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Common", 4 | "level_count": 15, 5 | "relative_level": 0, 6 | "tournament_level_index": 10, 7 | "donate_capacity": 1, 8 | "sort_capacity": 1, 9 | "donate_reward": 5, 10 | "donate_xp": 1, 11 | "overflow_prestige": 1, 12 | "gold_conversion_value": 5, 13 | "elite_wildcards_conversion_value": 1, 14 | "max_level_donation_cost": 5, 15 | "trade_card_amount": 250, 16 | "chance_weight": 1000, 17 | "upgrade_exp": [ 18 | 4, 19 | 5, 20 | 6, 21 | 10, 22 | 25, 23 | 50, 24 | 100, 25 | 200, 26 | 400, 27 | 600, 28 | 800, 29 | 1600, 30 | 2000, 31 | 50000, 32 | 0 33 | ], 34 | "upgrade_material_count": [ 35 | 2, 36 | 4, 37 | 10, 38 | 20, 39 | 50, 40 | 100, 41 | 200, 42 | 400, 43 | 800, 44 | 1000, 45 | 1500, 46 | 3000, 47 | 5000, 48 | 50000, 49 | 0 50 | ], 51 | "original_upgrade_material_count": [ 52 | 2, 53 | 4, 54 | 10, 55 | 20, 56 | 50, 57 | 100, 58 | 200, 59 | 400, 60 | 800, 61 | 1000, 62 | 2000, 63 | 5000, 64 | 0, 65 | 0, 66 | 0 67 | ], 68 | "upgrade_cost": [ 69 | 5, 70 | 20, 71 | 50, 72 | 150, 73 | 400, 74 | 1000, 75 | 2000, 76 | 4000, 77 | 8000, 78 | 15000, 79 | 35000, 80 | 75000, 81 | 100000, 82 | 0, 83 | 0 84 | ], 85 | "power_level_multiplier": [ 86 | 110, 87 | 121, 88 | 133, 89 | 146, 90 | 160, 91 | 176, 92 | 193, 93 | 212, 94 | 233, 95 | 256, 96 | 281, 97 | 309, 98 | 339, 99 | 372, 100 | 409, 101 | 450, 102 | 495, 103 | 545, 104 | 600 105 | ], 106 | "refund_gems": 2, 107 | "tid": "TID_RARITY_COMMON", 108 | "cast_effect": "SpellCasting", 109 | "sort_order": 1, 110 | "red": 153, 111 | "green": 204, 112 | "blue": 255, 113 | "appear_effect": "openChest_get_common", 114 | "buy_sound": "sound_buy_card_common", 115 | "loop_effect": "openChest_loop_common", 116 | "card_txt_bg_frame_idx": 0, 117 | "rotate_export_name": "card_rotate_common_short", 118 | "gold_frame_export_name": "card_frame_gold", 119 | "icon_swf": "sc/ui.sc", 120 | "icon_export_name": "icon_btn_card_common", 121 | "token_swf": "sc/ui_spells.sc", 122 | "token_export_name": "token_common", 123 | "token_flying_icon_swf": "sc/ui.sc", 124 | "token_flying_icon_export_name": "token_common", 125 | "token_gold_value": 250, 126 | "npc_trader_reroll_gem_cost": 10, 127 | "can_be_in_chests": true, 128 | "task_exp_reward": [ 129 | 0, 130 | 25, 131 | 100, 132 | 150 133 | ], 134 | "downgrade_multiplier": 0, 135 | "max_amount_in_chronos_shop_offers": 100000, 136 | "overflow_card_per_shard": 1000, 137 | "evo_level_color": [ 138 | "249-90-255", 139 | "255-255-255", 140 | "249-90-255", 141 | "255-255-255", 142 | "249-90-255" 143 | ] 144 | }, 145 | { 146 | "name": "Rare", 147 | "level_count": 13, 148 | "relative_level": 2, 149 | "tournament_level_index": 8, 150 | "donate_capacity": 10, 151 | "sort_capacity": 7, 152 | "donate_reward": 50, 153 | "donate_xp": 10, 154 | "overflow_prestige": 10, 155 | "gold_conversion_value": 50, 156 | "elite_wildcards_conversion_value": 5, 157 | "max_level_donation_cost": 25, 158 | "trade_card_amount": 50, 159 | "chance_weight": 400, 160 | "upgrade_exp": [ 161 | 6, 162 | 10, 163 | 25, 164 | 50, 165 | 100, 166 | 200, 167 | 400, 168 | 600, 169 | 800, 170 | 1600, 171 | 2000, 172 | 50000, 173 | 0 174 | ], 175 | "upgrade_material_count": [ 176 | 2, 177 | 4, 178 | 10, 179 | 20, 180 | 50, 181 | 100, 182 | 200, 183 | 400, 184 | 500, 185 | 750, 186 | 1250, 187 | 50000, 188 | 0 189 | ], 190 | "original_upgrade_material_count": [ 191 | 2, 192 | 4, 193 | 10, 194 | 20, 195 | 50, 196 | 100, 197 | 200, 198 | 400, 199 | 800, 200 | 1000, 201 | 0, 202 | 0, 203 | 0 204 | ], 205 | "upgrade_cost": [ 206 | 50, 207 | 150, 208 | 400, 209 | 1000, 210 | 2000, 211 | 4000, 212 | 8000, 213 | 15000, 214 | 35000, 215 | 75000, 216 | 100000, 217 | 0, 218 | 0 219 | ], 220 | "power_level_multiplier": [ 221 | 110, 222 | 121, 223 | 133, 224 | 146, 225 | 160, 226 | 176, 227 | 193, 228 | 212, 229 | 233, 230 | 256, 231 | 281, 232 | 309, 233 | 339, 234 | 372, 235 | 409, 236 | 450, 237 | 495 238 | ], 239 | "refund_gems": 15, 240 | "tid": "TID_RARITY_RARE", 241 | "cast_effect": "SpellCasting", 242 | "sort_order": 2, 243 | "red": 255, 244 | "green": 204, 245 | "blue": 102, 246 | "appear_effect": "openChest_get_rare", 247 | "buy_sound": "sound_buy_card_rare", 248 | "loop_effect": "openChest_loop_rare", 249 | "card_txt_bg_frame_idx": 1, 250 | "card_glow_instance_name": "card_glow_rare", 251 | "rotate_export_name": "card_rotate_epic_short", 252 | "gold_frame_export_name": "card_frame_gold", 253 | "icon_swf": "sc/ui.sc", 254 | "icon_export_name": "icon_btn_card_rare", 255 | "token_swf": "sc/ui_spells.sc", 256 | "token_export_name": "token_rare", 257 | "token_flying_icon_swf": "sc/ui.sc", 258 | "token_flying_icon_export_name": "token_rare", 259 | "token_gold_value": 500, 260 | "npc_trader_reroll_gem_cost": 10, 261 | "can_be_in_chests": true, 262 | "task_exp_reward": [ 263 | 0, 264 | 50, 265 | 125, 266 | 175 267 | ], 268 | "downgrade_rarity": "Common", 269 | "downgrade_multiplier": 1, 270 | "max_amount_in_chronos_shop_offers": 10000, 271 | "overflow_card_per_shard": 250, 272 | "evo_level_color": [ 273 | "249-90-255", 274 | "255-255-255", 275 | "249-90-255", 276 | "255-255-255", 277 | "249-90-255" 278 | ] 279 | }, 280 | { 281 | "name": "Epic", 282 | "level_count": 10, 283 | "relative_level": 5, 284 | "tournament_level_index": 5, 285 | "donate_capacity": 10, 286 | "sort_capacity": 80, 287 | "donate_reward": 500, 288 | "donate_xp": 10, 289 | "overflow_prestige": 100, 290 | "gold_conversion_value": 500, 291 | "elite_wildcards_conversion_value": 20, 292 | "max_level_donation_cost": 100, 293 | "trade_card_amount": 10, 294 | "chance_weight": 40, 295 | "upgrade_exp": [ 296 | 25, 297 | 100, 298 | 200, 299 | 400, 300 | 600, 301 | 800, 302 | 1600, 303 | 2000, 304 | 50000, 305 | 0 306 | ], 307 | "upgrade_material_count": [ 308 | 2, 309 | 4, 310 | 10, 311 | 20, 312 | 40, 313 | 50, 314 | 100, 315 | 200, 316 | 50000, 317 | 0 318 | ], 319 | "original_upgrade_material_count": [ 320 | 2, 321 | 4, 322 | 10, 323 | 20, 324 | 50, 325 | 100, 326 | 200, 327 | 0, 328 | 0, 329 | 0 330 | ], 331 | "upgrade_cost": [ 332 | 400, 333 | 2000, 334 | 4000, 335 | 8000, 336 | 15000, 337 | 35000, 338 | 75000, 339 | 100000, 340 | 0, 341 | 0 342 | ], 343 | "power_level_multiplier": [ 344 | 110, 345 | 121, 346 | 133, 347 | 146, 348 | 160, 349 | 176, 350 | 193, 351 | 212, 352 | 233, 353 | 256, 354 | 281, 355 | 309, 356 | 339, 357 | 372 358 | ], 359 | "refund_gems": 300, 360 | "tid": "TID_RARITY_EPIC", 361 | "cast_effect": "SpellCasting", 362 | "sort_order": 3, 363 | "red": 255, 364 | "green": 153, 365 | "blue": 255, 366 | "appear_effect": "openChest_get_epic", 367 | "buy_sound": "sound_buy_card_epic", 368 | "loop_effect": "openChest_loop_epic", 369 | "card_txt_bg_frame_idx": 2, 370 | "card_glow_instance_name": "card_frame_glow_epic", 371 | "rotate_export_name": "card_rotate_rare_short", 372 | "gold_frame_export_name": "card_frame_gold", 373 | "icon_swf": "sc/ui.sc", 374 | "icon_export_name": "icon_btn_card_epic", 375 | "token_swf": "sc/ui_spells.sc", 376 | "token_export_name": "token_epic", 377 | "token_flying_icon_swf": "sc/ui.sc", 378 | "token_flying_icon_export_name": "token_epic", 379 | "token_gold_value": 1000, 380 | "npc_trader_reroll_gem_cost": 10, 381 | "can_be_in_chests": true, 382 | "task_exp_reward": [ 383 | 0, 384 | 75, 385 | 125, 386 | 175 387 | ], 388 | "downgrade_rarity": "Rare", 389 | "downgrade_multiplier": 1, 390 | "max_amount_in_chronos_shop_offers": 2000, 391 | "overflow_card_per_shard": 40, 392 | "evo_level_color": [ 393 | "249-90-255", 394 | "255-255-255", 395 | "249-90-255", 396 | "255-255-255", 397 | "249-90-255" 398 | ] 399 | }, 400 | { 401 | "name": "Legendary", 402 | "level_count": 7, 403 | "relative_level": 8, 404 | "tournament_level_index": 2, 405 | "donate_capacity": 4000, 406 | "sort_capacity": 2000, 407 | "donate_reward": 500, 408 | "donate_xp": 25, 409 | "overflow_prestige": 1000, 410 | "gold_conversion_value": 20000, 411 | "elite_wildcards_conversion_value": 1500, 412 | "max_level_donation_cost": 7500, 413 | "trade_card_amount": 1, 414 | "chance_weight": 10, 415 | "upgrade_exp": [ 416 | 250, 417 | 600, 418 | 800, 419 | 1600, 420 | 2000, 421 | 50000, 422 | 0 423 | ], 424 | "upgrade_material_count": [ 425 | 2, 426 | 4, 427 | 6, 428 | 10, 429 | 20, 430 | 50000, 431 | 0 432 | ], 433 | "original_upgrade_material_count": [ 434 | 2, 435 | 4, 436 | 10, 437 | 20, 438 | 0, 439 | 0, 440 | 0 441 | ], 442 | "upgrade_cost": [ 443 | 5000, 444 | 15000, 445 | 35000, 446 | 75000, 447 | 100000, 448 | 0, 449 | 0 450 | ], 451 | "power_level_multiplier": [ 452 | 110, 453 | 121, 454 | 133, 455 | 146, 456 | 160, 457 | 176, 458 | 193, 459 | 212, 460 | 233, 461 | 256, 462 | 281 463 | ], 464 | "refund_gems": 8000, 465 | "tid": "TID_RARITY_LEGENDARY", 466 | "cast_effect": "SpellCasting", 467 | "sort_order": 4, 468 | "red": [ 469 | 255, 470 | 255, 471 | 255, 472 | 153, 473 | 153 474 | ], 475 | "green": [ 476 | 153, 477 | 153, 478 | 255, 479 | 255, 480 | 255 481 | ], 482 | "blue": [ 483 | 255, 484 | 255, 485 | 153, 486 | 102, 487 | 102 488 | ], 489 | "appear_effect": "openChest_get_legendary", 490 | "buy_sound": "sound_buy_card_legendary", 491 | "loop_effect": "openChest_loop_legendary", 492 | "card_txt_bg_frame_idx": 3, 493 | "card_glow_instance_name": "card_frame_glow_legendary", 494 | "spell_selected_sound": "Select legendary spell", 495 | "spell_available_sound": "Legendary spell available", 496 | "rotate_export_name": "card_rotate_legendary_short", 497 | "gold_frame_export_name": "legendary_card_frame_gold", 498 | "icon_swf": "sc/ui.sc", 499 | "icon_export_name": "icon_btn_card_legendary", 500 | "token_swf": "sc/ui_spells.sc", 501 | "token_export_name": "token_legendary", 502 | "token_flying_icon_swf": "sc/ui.sc", 503 | "token_flying_icon_export_name": "token_legendary", 504 | "token_gold_value": 2000, 505 | "npc_trader_reroll_gem_cost": 10, 506 | "can_be_in_chests": true, 507 | "if_chest_chance_over_x_percent_drop_guaranteed": 75, 508 | "task_exp_reward": [ 509 | 0, 510 | 100, 511 | 150, 512 | 200 513 | ], 514 | "downgrade_rarity": "Epic", 515 | "downgrade_multiplier": 1, 516 | "max_amount_in_chronos_shop_offers": 200, 517 | "overflow_card_per_shard": 4, 518 | "evo_level_color": [ 519 | "249-90-255", 520 | "255-255-255", 521 | "249-90-255", 522 | "255-255-255", 523 | "249-90-255" 524 | ] 525 | }, 526 | { 527 | "name": "Champion", 528 | "level_count": 5, 529 | "relative_level": 10, 530 | "tournament_level_index": 0, 531 | "donate_capacity": 4000, 532 | "sort_capacity": 4000, 533 | "donate_reward": 1000, 534 | "donate_xp": 50, 535 | "overflow_prestige": 2000, 536 | "gold_conversion_value": 40000, 537 | "elite_wildcards_conversion_value": 4000, 538 | "max_level_donation_cost": 40000, 539 | "trade_card_amount": 1, 540 | "chance_weight": 1, 541 | "upgrade_exp": [ 542 | 800, 543 | 1600, 544 | 2000, 545 | 50000, 546 | 0 547 | ], 548 | "upgrade_material_count": [ 549 | 2, 550 | 8, 551 | 20, 552 | 50000, 553 | 0 554 | ], 555 | "original_upgrade_material_count": [ 556 | 0, 557 | 0, 558 | 0, 559 | 0, 560 | 0 561 | ], 562 | "upgrade_cost": [ 563 | 35000, 564 | 75000, 565 | 100000, 566 | 0, 567 | 0 568 | ], 569 | "power_level_multiplier": [ 570 | 110, 571 | 121, 572 | 133, 573 | 146, 574 | 160, 575 | 176, 576 | 193, 577 | 212, 578 | 233 579 | ], 580 | "refund_gems": 8000, 581 | "tid": "TID_RARITY_CHAMPION", 582 | "cast_effect": "SpellCasting", 583 | "sort_order": 5, 584 | "red": [ 585 | 255, 586 | 255, 587 | 253 588 | ], 589 | "green": [ 590 | 222, 591 | 217, 592 | 251 593 | ], 594 | "blue": [ 595 | 0, 596 | 100, 597 | 222 598 | ], 599 | "appear_effect": "openChest_get_champion", 600 | "buy_sound": "sound_buy_card_legendary", 601 | "loop_effect": "openChest_loop_champion", 602 | "card_txt_bg_frame_idx": 8, 603 | "card_glow_instance_name": "card_frame_glow_champion", 604 | "rotate_export_name": "card_rotate_legendary_short", 605 | "gold_frame_export_name": "champion_card_frame_gold", 606 | "icon_swf": "sc/ui.sc", 607 | "icon_export_name": "icon_btn_card_champion", 608 | "token_swf": "sc/ui_spells.sc", 609 | "token_export_name": "token_legendary", 610 | "token_flying_icon_swf": "sc/ui.sc", 611 | "token_flying_icon_export_name": "token_legendary", 612 | "token_gold_value": 4000, 613 | "npc_trader_reroll_gem_cost": 10, 614 | "can_be_in_chests": true, 615 | "if_chest_chance_over_x_percent_drop_guaranteed": 90, 616 | "task_exp_reward": [ 617 | 0, 618 | 150, 619 | 175, 620 | 200 621 | ], 622 | "downgrade_rarity": "Legendary", 623 | "downgrade_multiplier": 1, 624 | "max_amount_in_chronos_shop_offers": 100, 625 | "overflow_card_per_shard": 4, 626 | "evo_level_color": [ 627 | "249-90-255", 628 | "255-255-255", 629 | "249-90-255", 630 | "255-255-255", 631 | "249-90-255" 632 | ] 633 | }, 634 | { 635 | "name": "Experimental", 636 | "level_count": 8, 637 | "relative_level": 8, 638 | "tournament_level_index": 2, 639 | "donate_capacity": 4000, 640 | "sort_capacity": 2000, 641 | "donate_reward": 50, 642 | "donate_xp": 25, 643 | "overflow_prestige": 1000, 644 | "gold_conversion_value": 20000, 645 | "elite_wildcards_conversion_value": 100, 646 | "max_level_donation_cost": 20000, 647 | "trade_card_amount": 1, 648 | "chance_weight": 1, 649 | "upgrade_exp": [ 650 | 250, 651 | 600, 652 | 800, 653 | 1600, 654 | 1600, 655 | 2400, 656 | 2400, 657 | 0 658 | ], 659 | "upgrade_material_count": [ 660 | 2, 661 | 4, 662 | 10, 663 | 20, 664 | 20, 665 | 20, 666 | 50000, 667 | 0 668 | ], 669 | "original_upgrade_material_count": [ 670 | 0, 671 | 0, 672 | 0, 673 | 0, 674 | 0, 675 | 0, 676 | 0, 677 | 0 678 | ], 679 | "upgrade_cost": [ 680 | 5000, 681 | 20000, 682 | 50000, 683 | 100000, 684 | 100000, 685 | 100000, 686 | 0, 687 | 0 688 | ], 689 | "power_level_multiplier": [ 690 | 110, 691 | 121, 692 | 133, 693 | 146, 694 | 160, 695 | 176, 696 | 193 697 | ], 698 | "refund_gems": 8000, 699 | "tid": "TID_RARITY_LEGENDARY", 700 | "cast_effect": "SpellCasting", 701 | "sort_order": 6, 702 | "red": [ 703 | 255, 704 | 255, 705 | 255, 706 | 153, 707 | 153 708 | ], 709 | "green": [ 710 | 153, 711 | 153, 712 | 255, 713 | 255, 714 | 255 715 | ], 716 | "blue": [ 717 | 255, 718 | 255, 719 | 153, 720 | 102, 721 | 102 722 | ], 723 | "appear_effect": "openChest_get_legendary", 724 | "buy_sound": "sound_buy_card_legendary", 725 | "loop_effect": "openChest_loop_legendary", 726 | "card_txt_bg_frame_idx": 3, 727 | "card_glow_instance_name": "card_frame_glow_legendary", 728 | "spell_selected_sound": "Select legendary spell", 729 | "spell_available_sound": "Legendary spell available", 730 | "rotate_export_name": "card_rotate_legendary_short", 731 | "gold_frame_export_name": "card_frame_gold", 732 | "icon_swf": "sc/ui.sc", 733 | "icon_export_name": "icon_btn_card_legendary", 734 | "token_swf": "sc/ui_spells.sc", 735 | "token_export_name": "token_legendary", 736 | "token_flying_icon_swf": "sc/ui.sc", 737 | "token_flying_icon_export_name": "token_legendary", 738 | "token_gold_value": 2000, 739 | "npc_trader_reroll_gem_cost": 10, 740 | "can_be_in_chests": false, 741 | "max_amount_in_chronos_shop_offers": 1, 742 | "overflow_card_per_shard": 0, 743 | "evo_level_color": [ 744 | "249-90-255", 745 | "255-255-255", 746 | "249-90-255", 747 | "255-255-255", 748 | "249-90-255" 749 | ] 750 | } 751 | ] -------------------------------------------------------------------------------- /docs/json/regions.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 57000000, 4 | "key": "_EU", 5 | "name": "Europe", 6 | "isCountry": false 7 | }, 8 | { 9 | "id": 57000001, 10 | "key": "_NA", 11 | "name": "North America", 12 | "isCountry": false 13 | }, 14 | { 15 | "id": 57000002, 16 | "key": "_SA", 17 | "name": "South America", 18 | "isCountry": false 19 | }, 20 | { 21 | "id": 57000003, 22 | "key": "_AS", 23 | "name": "Asia", 24 | "isCountry": false 25 | }, 26 | { 27 | "id": 57000004, 28 | "key": "_AU", 29 | "name": "Oceania", 30 | "isCountry": false 31 | }, 32 | { 33 | "id": 57000005, 34 | "key": "_AF", 35 | "name": "Africa", 36 | "isCountry": false 37 | }, 38 | { 39 | "id": 57000006, 40 | "key": "_INT", 41 | "name": "International", 42 | "isCountry": false 43 | }, 44 | { 45 | "id": 57000007, 46 | "key": "AF", 47 | "name": "Afghanistan", 48 | "isCountry": true 49 | }, 50 | { 51 | "id": 57000008, 52 | "key": "AX", 53 | "name": "Åland Islands", 54 | "isCountry": true 55 | }, 56 | { 57 | "id": 57000009, 58 | "key": "AL", 59 | "name": "Albania", 60 | "isCountry": true 61 | }, 62 | { 63 | "id": 57000010, 64 | "key": "DZ", 65 | "name": "Algeria", 66 | "isCountry": true 67 | }, 68 | { 69 | "id": 57000011, 70 | "key": "AS", 71 | "name": "American Samoa", 72 | "isCountry": true 73 | }, 74 | { 75 | "id": 57000012, 76 | "key": "AD", 77 | "name": "Andorra", 78 | "isCountry": true 79 | }, 80 | { 81 | "id": 57000013, 82 | "key": "AO", 83 | "name": "Angola", 84 | "isCountry": true 85 | }, 86 | { 87 | "id": 57000014, 88 | "key": "AI", 89 | "name": "Anguilla", 90 | "isCountry": true 91 | }, 92 | { 93 | "id": 57000015, 94 | "key": "AQ", 95 | "name": "Antarctica", 96 | "isCountry": true 97 | }, 98 | { 99 | "id": 57000016, 100 | "key": "AG", 101 | "name": "Antigua and Barbuda", 102 | "isCountry": true 103 | }, 104 | { 105 | "id": 57000017, 106 | "key": "AR", 107 | "name": "Argentina", 108 | "isCountry": true 109 | }, 110 | { 111 | "id": 57000018, 112 | "key": "AM", 113 | "name": "Armenia", 114 | "isCountry": true 115 | }, 116 | { 117 | "id": 57000019, 118 | "key": "AW", 119 | "name": "Aruba", 120 | "isCountry": true 121 | }, 122 | { 123 | "id": 57000020, 124 | "key": "AC", 125 | "name": "Ascension Island", 126 | "isCountry": true 127 | }, 128 | { 129 | "id": 57000021, 130 | "key": "AU", 131 | "name": "Australia", 132 | "isCountry": true 133 | }, 134 | { 135 | "id": 57000022, 136 | "key": "AT", 137 | "name": "Austria", 138 | "isCountry": true 139 | }, 140 | { 141 | "id": 57000023, 142 | "key": "AZ", 143 | "name": "Azerbaijan", 144 | "isCountry": true 145 | }, 146 | { 147 | "id": 57000024, 148 | "key": "BS", 149 | "name": "Bahamas", 150 | "isCountry": true 151 | }, 152 | { 153 | "id": 57000025, 154 | "key": "BH", 155 | "name": "Bahrain", 156 | "isCountry": true 157 | }, 158 | { 159 | "id": 57000026, 160 | "key": "BD", 161 | "name": "Bangladesh", 162 | "isCountry": true 163 | }, 164 | { 165 | "id": 57000027, 166 | "key": "BB", 167 | "name": "Barbados", 168 | "isCountry": true 169 | }, 170 | { 171 | "id": 57000028, 172 | "key": "BY", 173 | "name": "Belarus", 174 | "isCountry": true 175 | }, 176 | { 177 | "id": 57000029, 178 | "key": "BE", 179 | "name": "Belgium", 180 | "isCountry": true 181 | }, 182 | { 183 | "id": 57000030, 184 | "key": "BZ", 185 | "name": "Belize", 186 | "isCountry": true 187 | }, 188 | { 189 | "id": 57000031, 190 | "key": "BJ", 191 | "name": "Benin", 192 | "isCountry": true 193 | }, 194 | { 195 | "id": 57000032, 196 | "key": "BM", 197 | "name": "Bermuda", 198 | "isCountry": true 199 | }, 200 | { 201 | "id": 57000033, 202 | "key": "BT", 203 | "name": "Bhutan", 204 | "isCountry": true 205 | }, 206 | { 207 | "id": 57000034, 208 | "key": "BO", 209 | "name": "Bolivia", 210 | "isCountry": true 211 | }, 212 | { 213 | "id": 57000035, 214 | "key": "BA", 215 | "name": "Bosnia and Herzegovina", 216 | "isCountry": true 217 | }, 218 | { 219 | "id": 57000036, 220 | "key": "BW", 221 | "name": "Botswana", 222 | "isCountry": true 223 | }, 224 | { 225 | "id": 57000037, 226 | "key": "BV", 227 | "name": "Bouvet Island", 228 | "isCountry": true 229 | }, 230 | { 231 | "id": 57000038, 232 | "key": "BR", 233 | "name": "Brazil", 234 | "isCountry": true 235 | }, 236 | { 237 | "id": 57000039, 238 | "key": "IO", 239 | "name": "British Indian Ocean Territory", 240 | "isCountry": true 241 | }, 242 | { 243 | "id": 57000040, 244 | "key": "VG", 245 | "name": "British Virgin Islands", 246 | "isCountry": true 247 | }, 248 | { 249 | "id": 57000041, 250 | "key": "BN", 251 | "name": "Brunei", 252 | "isCountry": true 253 | }, 254 | { 255 | "id": 57000042, 256 | "key": "BG", 257 | "name": "Bulgaria", 258 | "isCountry": true 259 | }, 260 | { 261 | "id": 57000043, 262 | "key": "BF", 263 | "name": "Burkina Faso", 264 | "isCountry": true 265 | }, 266 | { 267 | "id": 57000044, 268 | "key": "BI", 269 | "name": "Burundi", 270 | "isCountry": true 271 | }, 272 | { 273 | "id": 57000045, 274 | "key": "KH", 275 | "name": "Cambodia", 276 | "isCountry": true 277 | }, 278 | { 279 | "id": 57000046, 280 | "key": "CM", 281 | "name": "Cameroon", 282 | "isCountry": true 283 | }, 284 | { 285 | "id": 57000047, 286 | "key": "CA", 287 | "name": "Canada", 288 | "isCountry": true 289 | }, 290 | { 291 | "id": 57000048, 292 | "key": "IC", 293 | "name": "Canary Islands", 294 | "isCountry": true 295 | }, 296 | { 297 | "id": 57000049, 298 | "key": "CV", 299 | "name": "Cape Verde", 300 | "isCountry": true 301 | }, 302 | { 303 | "id": 57000050, 304 | "key": "BQ", 305 | "name": "Caribbean Netherlands", 306 | "isCountry": true 307 | }, 308 | { 309 | "id": 57000051, 310 | "key": "KY", 311 | "name": "Cayman Islands", 312 | "isCountry": true 313 | }, 314 | { 315 | "id": 57000052, 316 | "key": "CF", 317 | "name": "Central African Republic", 318 | "isCountry": true 319 | }, 320 | { 321 | "id": 57000053, 322 | "key": "EA", 323 | "name": "Ceuta and Melilla", 324 | "isCountry": true 325 | }, 326 | { 327 | "id": 57000054, 328 | "key": "TD", 329 | "name": "Chad", 330 | "isCountry": true 331 | }, 332 | { 333 | "id": 57000055, 334 | "key": "CL", 335 | "name": "Chile", 336 | "isCountry": true 337 | }, 338 | { 339 | "id": 57000056, 340 | "key": "CN", 341 | "name": "China", 342 | "isCountry": true 343 | }, 344 | { 345 | "id": 57000057, 346 | "key": "CX", 347 | "name": "Christmas Island", 348 | "isCountry": true 349 | }, 350 | { 351 | "id": 57000058, 352 | "key": "CC", 353 | "name": "Cocos (Keeling) Islands", 354 | "isCountry": true 355 | }, 356 | { 357 | "id": 57000059, 358 | "key": "CO", 359 | "name": "Colombia", 360 | "isCountry": true 361 | }, 362 | { 363 | "id": 57000060, 364 | "key": "KM", 365 | "name": "Comoros", 366 | "isCountry": true 367 | }, 368 | { 369 | "id": 57000061, 370 | "key": "CG", 371 | "name": "Congo (DRC)", 372 | "isCountry": true 373 | }, 374 | { 375 | "id": 57000062, 376 | "key": "CD", 377 | "name": "Congo (Republic)", 378 | "isCountry": true 379 | }, 380 | { 381 | "id": 57000063, 382 | "key": "CK", 383 | "name": "Cook Islands", 384 | "isCountry": true 385 | }, 386 | { 387 | "id": 57000064, 388 | "key": "CR", 389 | "name": "Costa Rica", 390 | "isCountry": true 391 | }, 392 | { 393 | "id": 57000065, 394 | "key": "CI", 395 | "name": "Côte d’Ivoire", 396 | "isCountry": true 397 | }, 398 | { 399 | "id": 57000066, 400 | "key": "HR", 401 | "name": "Croatia", 402 | "isCountry": true 403 | }, 404 | { 405 | "id": 57000067, 406 | "key": "CU", 407 | "name": "Cuba", 408 | "isCountry": true 409 | }, 410 | { 411 | "id": 57000068, 412 | "key": "CW", 413 | "name": "Curaçao", 414 | "isCountry": true 415 | }, 416 | { 417 | "id": 57000069, 418 | "key": "CY", 419 | "name": "Cyprus", 420 | "isCountry": true 421 | }, 422 | { 423 | "id": 57000070, 424 | "key": "CZ", 425 | "name": "Czech Republic", 426 | "isCountry": true 427 | }, 428 | { 429 | "id": 57000071, 430 | "key": "DK", 431 | "name": "Denmark", 432 | "isCountry": true 433 | }, 434 | { 435 | "id": 57000072, 436 | "key": "DG", 437 | "name": "Diego Garcia", 438 | "isCountry": true 439 | }, 440 | { 441 | "id": 57000073, 442 | "key": "DJ", 443 | "name": "Djibouti", 444 | "isCountry": true 445 | }, 446 | { 447 | "id": 57000074, 448 | "key": "DM", 449 | "name": "Dominica", 450 | "isCountry": true 451 | }, 452 | { 453 | "id": 57000075, 454 | "key": "DO", 455 | "name": "Dominican Republic", 456 | "isCountry": true 457 | }, 458 | { 459 | "id": 57000076, 460 | "key": "EC", 461 | "name": "Ecuador", 462 | "isCountry": true 463 | }, 464 | { 465 | "id": 57000077, 466 | "key": "EG", 467 | "name": "Egypt", 468 | "isCountry": true 469 | }, 470 | { 471 | "id": 57000078, 472 | "key": "SV", 473 | "name": "El Salvador", 474 | "isCountry": true 475 | }, 476 | { 477 | "id": 57000079, 478 | "key": "GQ", 479 | "name": "Equatorial Guinea", 480 | "isCountry": true 481 | }, 482 | { 483 | "id": 57000080, 484 | "key": "ER", 485 | "name": "Eritrea", 486 | "isCountry": true 487 | }, 488 | { 489 | "id": 57000081, 490 | "key": "EE", 491 | "name": "Estonia", 492 | "isCountry": true 493 | }, 494 | { 495 | "id": 57000082, 496 | "key": "ET", 497 | "name": "Ethiopia", 498 | "isCountry": true 499 | }, 500 | { 501 | "id": 57000083, 502 | "key": "FK", 503 | "name": "Falkland Islands", 504 | "isCountry": true 505 | }, 506 | { 507 | "id": 57000084, 508 | "key": "FO", 509 | "name": "Faroe Islands", 510 | "isCountry": true 511 | }, 512 | { 513 | "id": 57000085, 514 | "key": "FJ", 515 | "name": "Fiji", 516 | "isCountry": true 517 | }, 518 | { 519 | "id": 57000086, 520 | "key": "FI", 521 | "name": "Finland", 522 | "isCountry": true 523 | }, 524 | { 525 | "id": 57000087, 526 | "key": "FR", 527 | "name": "France", 528 | "isCountry": true 529 | }, 530 | { 531 | "id": 57000088, 532 | "key": "GF", 533 | "name": "French Guiana", 534 | "isCountry": true 535 | }, 536 | { 537 | "id": 57000089, 538 | "key": "PF", 539 | "name": "French Polynesia", 540 | "isCountry": true 541 | }, 542 | { 543 | "id": 57000090, 544 | "key": "TF", 545 | "name": "French Southern Territories", 546 | "isCountry": true 547 | }, 548 | { 549 | "id": 57000091, 550 | "key": "GA", 551 | "name": "Gabon", 552 | "isCountry": true 553 | }, 554 | { 555 | "id": 57000092, 556 | "key": "GM", 557 | "name": "Gambia", 558 | "isCountry": true 559 | }, 560 | { 561 | "id": 57000093, 562 | "key": "GE", 563 | "name": "Georgia", 564 | "isCountry": true 565 | }, 566 | { 567 | "id": 57000094, 568 | "key": "DE", 569 | "name": "Germany", 570 | "isCountry": true 571 | }, 572 | { 573 | "id": 57000095, 574 | "key": "GH", 575 | "name": "Ghana", 576 | "isCountry": true 577 | }, 578 | { 579 | "id": 57000096, 580 | "key": "GI", 581 | "name": "Gibraltar", 582 | "isCountry": true 583 | }, 584 | { 585 | "id": 57000097, 586 | "key": "GR", 587 | "name": "Greece", 588 | "isCountry": true 589 | }, 590 | { 591 | "id": 57000098, 592 | "key": "GL", 593 | "name": "Greenland", 594 | "isCountry": true 595 | }, 596 | { 597 | "id": 57000099, 598 | "key": "GD", 599 | "name": "Grenada", 600 | "isCountry": true 601 | }, 602 | { 603 | "id": 57000100, 604 | "key": "GP", 605 | "name": "Guadeloupe", 606 | "isCountry": true 607 | }, 608 | { 609 | "id": 57000101, 610 | "key": "GU", 611 | "name": "Guam", 612 | "isCountry": true 613 | }, 614 | { 615 | "id": 57000102, 616 | "key": "GT", 617 | "name": "Guatemala", 618 | "isCountry": true 619 | }, 620 | { 621 | "id": 57000103, 622 | "key": "GG", 623 | "name": "Guernsey", 624 | "isCountry": true 625 | }, 626 | { 627 | "id": 57000104, 628 | "key": "GN", 629 | "name": "Guinea", 630 | "isCountry": true 631 | }, 632 | { 633 | "id": 57000105, 634 | "key": "GW", 635 | "name": "Guinea-Bissau", 636 | "isCountry": true 637 | }, 638 | { 639 | "id": 57000106, 640 | "key": "GY", 641 | "name": "Guyana", 642 | "isCountry": true 643 | }, 644 | { 645 | "id": 57000107, 646 | "key": "HT", 647 | "name": "Haiti", 648 | "isCountry": true 649 | }, 650 | { 651 | "id": 57000108, 652 | "key": "HM", 653 | "name": "Heard & McDonald Islands", 654 | "isCountry": true 655 | }, 656 | { 657 | "id": 57000109, 658 | "key": "HN", 659 | "name": "Honduras", 660 | "isCountry": true 661 | }, 662 | { 663 | "id": 57000110, 664 | "key": "HK", 665 | "name": "Hong Kong", 666 | "isCountry": true 667 | }, 668 | { 669 | "id": 57000111, 670 | "key": "HU", 671 | "name": "Hungary", 672 | "isCountry": true 673 | }, 674 | { 675 | "id": 57000112, 676 | "key": "IS", 677 | "name": "Iceland", 678 | "isCountry": true 679 | }, 680 | { 681 | "id": 57000113, 682 | "key": "IN", 683 | "name": "India", 684 | "isCountry": true 685 | }, 686 | { 687 | "id": 57000114, 688 | "key": "ID", 689 | "name": "Indonesia", 690 | "isCountry": true 691 | }, 692 | { 693 | "id": 57000115, 694 | "key": "IR", 695 | "name": "Iran", 696 | "isCountry": true 697 | }, 698 | { 699 | "id": 57000116, 700 | "key": "IQ", 701 | "name": "Iraq", 702 | "isCountry": true 703 | }, 704 | { 705 | "id": 57000117, 706 | "key": "IE", 707 | "name": "Ireland", 708 | "isCountry": true 709 | }, 710 | { 711 | "id": 57000118, 712 | "key": "IM", 713 | "name": "Isle of Man", 714 | "isCountry": true 715 | }, 716 | { 717 | "id": 57000119, 718 | "key": "IL", 719 | "name": "Israel", 720 | "isCountry": true 721 | }, 722 | { 723 | "id": 57000120, 724 | "key": "IT", 725 | "name": "Italy", 726 | "isCountry": true 727 | }, 728 | { 729 | "id": 57000121, 730 | "key": "JM", 731 | "name": "Jamaica", 732 | "isCountry": true 733 | }, 734 | { 735 | "id": 57000122, 736 | "key": "JP", 737 | "name": "Japan", 738 | "isCountry": true 739 | }, 740 | { 741 | "id": 57000123, 742 | "key": "JE", 743 | "name": "Jersey", 744 | "isCountry": true 745 | }, 746 | { 747 | "id": 57000124, 748 | "key": "JO", 749 | "name": "Jordan", 750 | "isCountry": true 751 | }, 752 | { 753 | "id": 57000125, 754 | "key": "KZ", 755 | "name": "Kazakhstan", 756 | "isCountry": true 757 | }, 758 | { 759 | "id": 57000126, 760 | "key": "KE", 761 | "name": "Kenya", 762 | "isCountry": true 763 | }, 764 | { 765 | "id": 57000127, 766 | "key": "KI", 767 | "name": "Kiribati", 768 | "isCountry": true 769 | }, 770 | { 771 | "id": 57000128, 772 | "key": "XK", 773 | "name": "Kosovo", 774 | "isCountry": true 775 | }, 776 | { 777 | "id": 57000129, 778 | "key": "KW", 779 | "name": "Kuwait", 780 | "isCountry": true 781 | }, 782 | { 783 | "id": 57000130, 784 | "key": "KG", 785 | "name": "Kyrgyzstan", 786 | "isCountry": true 787 | }, 788 | { 789 | "id": 57000131, 790 | "key": "LA", 791 | "name": "Laos", 792 | "isCountry": true 793 | }, 794 | { 795 | "id": 57000132, 796 | "key": "LV", 797 | "name": "Latvia", 798 | "isCountry": true 799 | }, 800 | { 801 | "id": 57000133, 802 | "key": "LB", 803 | "name": "Lebanon", 804 | "isCountry": true 805 | }, 806 | { 807 | "id": 57000134, 808 | "key": "LS", 809 | "name": "Lesotho", 810 | "isCountry": true 811 | }, 812 | { 813 | "id": 57000135, 814 | "key": "LR", 815 | "name": "Liberia", 816 | "isCountry": true 817 | }, 818 | { 819 | "id": 57000136, 820 | "key": "LY", 821 | "name": "Libya", 822 | "isCountry": true 823 | }, 824 | { 825 | "id": 57000137, 826 | "key": "LI", 827 | "name": "Liechtenstein", 828 | "isCountry": true 829 | }, 830 | { 831 | "id": 57000138, 832 | "key": "LT", 833 | "name": "Lithuania", 834 | "isCountry": true 835 | }, 836 | { 837 | "id": 57000139, 838 | "key": "LU", 839 | "name": "Luxembourg", 840 | "isCountry": true 841 | }, 842 | { 843 | "id": 57000140, 844 | "key": "MO", 845 | "name": "Macau", 846 | "isCountry": true 847 | }, 848 | { 849 | "id": 57000141, 850 | "key": "MK", 851 | "name": "Macedonia (FYROM)", 852 | "isCountry": true 853 | }, 854 | { 855 | "id": 57000142, 856 | "key": "MG", 857 | "name": "Madagascar", 858 | "isCountry": true 859 | }, 860 | { 861 | "id": 57000143, 862 | "key": "MW", 863 | "name": "Malawi", 864 | "isCountry": true 865 | }, 866 | { 867 | "id": 57000144, 868 | "key": "MY", 869 | "name": "Malaysia", 870 | "isCountry": true 871 | }, 872 | { 873 | "id": 57000145, 874 | "key": "MV", 875 | "name": "Maldives", 876 | "isCountry": true 877 | }, 878 | { 879 | "id": 57000146, 880 | "key": "ML", 881 | "name": "Mali", 882 | "isCountry": true 883 | }, 884 | { 885 | "id": 57000147, 886 | "key": "MT", 887 | "name": "Malta", 888 | "isCountry": true 889 | }, 890 | { 891 | "id": 57000148, 892 | "key": "MH", 893 | "name": "Marshall Islands", 894 | "isCountry": true 895 | }, 896 | { 897 | "id": 57000149, 898 | "key": "MQ", 899 | "name": "Martinique", 900 | "isCountry": true 901 | }, 902 | { 903 | "id": 57000150, 904 | "key": "MR", 905 | "name": "Mauritania", 906 | "isCountry": true 907 | }, 908 | { 909 | "id": 57000151, 910 | "key": "MU", 911 | "name": "Mauritius", 912 | "isCountry": true 913 | }, 914 | { 915 | "id": 57000152, 916 | "key": "YT", 917 | "name": "Mayotte", 918 | "isCountry": true 919 | }, 920 | { 921 | "id": 57000153, 922 | "key": "MX", 923 | "name": "Mexico", 924 | "isCountry": true 925 | }, 926 | { 927 | "id": 57000154, 928 | "key": "FM", 929 | "name": "Micronesia", 930 | "isCountry": true 931 | }, 932 | { 933 | "id": 57000155, 934 | "key": "MD", 935 | "name": "Moldova", 936 | "isCountry": true 937 | }, 938 | { 939 | "id": 57000156, 940 | "key": "MC", 941 | "name": "Monaco", 942 | "isCountry": true 943 | }, 944 | { 945 | "id": 57000157, 946 | "key": "MN", 947 | "name": "Mongolia", 948 | "isCountry": true 949 | }, 950 | { 951 | "id": 57000158, 952 | "key": "ME", 953 | "name": "Montenegro", 954 | "isCountry": true 955 | }, 956 | { 957 | "id": 57000159, 958 | "key": "MS", 959 | "name": "Montserrat", 960 | "isCountry": true 961 | }, 962 | { 963 | "id": 57000160, 964 | "key": "MA", 965 | "name": "Morocco", 966 | "isCountry": true 967 | }, 968 | { 969 | "id": 57000161, 970 | "key": "MZ", 971 | "name": "Mozambique", 972 | "isCountry": true 973 | }, 974 | { 975 | "id": 57000162, 976 | "key": "MM", 977 | "name": "Myanmar (Burma)", 978 | "isCountry": true 979 | }, 980 | { 981 | "id": 57000163, 982 | "key": "NA", 983 | "name": "Namibia", 984 | "isCountry": true 985 | }, 986 | { 987 | "id": 57000164, 988 | "key": "NR", 989 | "name": "Nauru", 990 | "isCountry": true 991 | }, 992 | { 993 | "id": 57000165, 994 | "key": "NP", 995 | "name": "Nepal", 996 | "isCountry": true 997 | }, 998 | { 999 | "id": 57000166, 1000 | "key": "NL", 1001 | "name": "Netherlands", 1002 | "isCountry": true 1003 | }, 1004 | { 1005 | "id": 57000167, 1006 | "key": "NC", 1007 | "name": "New Caledonia", 1008 | "isCountry": true 1009 | }, 1010 | { 1011 | "id": 57000168, 1012 | "key": "NZ", 1013 | "name": "New Zealand", 1014 | "isCountry": true 1015 | }, 1016 | { 1017 | "id": 57000169, 1018 | "key": "NI", 1019 | "name": "Nicaragua", 1020 | "isCountry": true 1021 | }, 1022 | { 1023 | "id": 57000170, 1024 | "key": "NE", 1025 | "name": "Niger", 1026 | "isCountry": true 1027 | }, 1028 | { 1029 | "id": 57000171, 1030 | "key": "NG", 1031 | "name": "Nigeria", 1032 | "isCountry": true 1033 | }, 1034 | { 1035 | "id": 57000172, 1036 | "key": "NU", 1037 | "name": "Niue", 1038 | "isCountry": true 1039 | }, 1040 | { 1041 | "id": 57000173, 1042 | "key": "NF", 1043 | "name": "Norfolk Island", 1044 | "isCountry": true 1045 | }, 1046 | { 1047 | "id": 57000174, 1048 | "key": "KP", 1049 | "name": "North Korea", 1050 | "isCountry": true 1051 | }, 1052 | { 1053 | "id": 57000175, 1054 | "key": "MP", 1055 | "name": "Northern Mariana Islands", 1056 | "isCountry": true 1057 | }, 1058 | { 1059 | "id": 57000176, 1060 | "key": "NO", 1061 | "name": "Norway", 1062 | "isCountry": true 1063 | }, 1064 | { 1065 | "id": 57000177, 1066 | "key": "OM", 1067 | "name": "Oman", 1068 | "isCountry": true 1069 | }, 1070 | { 1071 | "id": 57000178, 1072 | "key": "PK", 1073 | "name": "Pakistan", 1074 | "isCountry": true 1075 | }, 1076 | { 1077 | "id": 57000179, 1078 | "key": "PW", 1079 | "name": "Palau", 1080 | "isCountry": true 1081 | }, 1082 | { 1083 | "id": 57000180, 1084 | "key": "PS", 1085 | "name": "Palestine", 1086 | "isCountry": true 1087 | }, 1088 | { 1089 | "id": 57000181, 1090 | "key": "PA", 1091 | "name": "Panama", 1092 | "isCountry": true 1093 | }, 1094 | { 1095 | "id": 57000182, 1096 | "key": "PG", 1097 | "name": "Papua New Guinea", 1098 | "isCountry": true 1099 | }, 1100 | { 1101 | "id": 57000183, 1102 | "key": "PY", 1103 | "name": "Paraguay", 1104 | "isCountry": true 1105 | }, 1106 | { 1107 | "id": 57000184, 1108 | "key": "PE", 1109 | "name": "Peru", 1110 | "isCountry": true 1111 | }, 1112 | { 1113 | "id": 57000185, 1114 | "key": "PH", 1115 | "name": "Philippines", 1116 | "isCountry": true 1117 | }, 1118 | { 1119 | "id": 57000186, 1120 | "key": "PN", 1121 | "name": "Pitcairn Islands", 1122 | "isCountry": true 1123 | }, 1124 | { 1125 | "id": 57000187, 1126 | "key": "PL", 1127 | "name": "Poland", 1128 | "isCountry": true 1129 | }, 1130 | { 1131 | "id": 57000188, 1132 | "key": "PT", 1133 | "name": "Portugal", 1134 | "isCountry": true 1135 | }, 1136 | { 1137 | "id": 57000189, 1138 | "key": "PR", 1139 | "name": "Puerto Rico", 1140 | "isCountry": true 1141 | }, 1142 | { 1143 | "id": 57000190, 1144 | "key": "QA", 1145 | "name": "Qatar", 1146 | "isCountry": true 1147 | }, 1148 | { 1149 | "id": 57000191, 1150 | "key": "RE", 1151 | "name": "Réunion", 1152 | "isCountry": true 1153 | }, 1154 | { 1155 | "id": 57000192, 1156 | "key": "RO", 1157 | "name": "Romania", 1158 | "isCountry": true 1159 | }, 1160 | { 1161 | "id": 57000193, 1162 | "key": "RU", 1163 | "name": "Russia", 1164 | "isCountry": true 1165 | }, 1166 | { 1167 | "id": 57000194, 1168 | "key": "RW", 1169 | "name": "Rwanda", 1170 | "isCountry": true 1171 | }, 1172 | { 1173 | "id": 57000195, 1174 | "key": "BL", 1175 | "name": "Saint Barthélemy", 1176 | "isCountry": true 1177 | }, 1178 | { 1179 | "id": 57000196, 1180 | "key": "SH", 1181 | "name": "Saint Helena", 1182 | "isCountry": true 1183 | }, 1184 | { 1185 | "id": 57000197, 1186 | "key": "KN", 1187 | "name": "Saint Kitts and Nevis", 1188 | "isCountry": true 1189 | }, 1190 | { 1191 | "id": 57000198, 1192 | "key": "LC", 1193 | "name": "Saint Lucia", 1194 | "isCountry": true 1195 | }, 1196 | { 1197 | "id": 57000199, 1198 | "key": "MF", 1199 | "name": "Saint Martin", 1200 | "isCountry": true 1201 | }, 1202 | { 1203 | "id": 57000200, 1204 | "key": "PM", 1205 | "name": "Saint Pierre and Miquelon", 1206 | "isCountry": true 1207 | }, 1208 | { 1209 | "id": 57000201, 1210 | "key": "WS", 1211 | "name": "Samoa", 1212 | "isCountry": true 1213 | }, 1214 | { 1215 | "id": 57000202, 1216 | "key": "SM", 1217 | "name": "San Marino", 1218 | "isCountry": true 1219 | }, 1220 | { 1221 | "id": 57000203, 1222 | "key": "ST", 1223 | "name": "São Tomé and Príncipe", 1224 | "isCountry": true 1225 | }, 1226 | { 1227 | "id": 57000204, 1228 | "key": "SA", 1229 | "name": "Saudi Arabia", 1230 | "isCountry": true 1231 | }, 1232 | { 1233 | "id": 57000205, 1234 | "key": "SN", 1235 | "name": "Senegal", 1236 | "isCountry": true 1237 | }, 1238 | { 1239 | "id": 57000206, 1240 | "key": "RS", 1241 | "name": "Serbia", 1242 | "isCountry": true 1243 | }, 1244 | { 1245 | "id": 57000207, 1246 | "key": "SC", 1247 | "name": "Seychelles", 1248 | "isCountry": true 1249 | }, 1250 | { 1251 | "id": 57000208, 1252 | "key": "SL", 1253 | "name": "Sierra Leone", 1254 | "isCountry": true 1255 | }, 1256 | { 1257 | "id": 57000209, 1258 | "key": "SG", 1259 | "name": "Singapore", 1260 | "isCountry": true 1261 | }, 1262 | { 1263 | "id": 57000210, 1264 | "key": "SX", 1265 | "name": "Sint Maarten", 1266 | "isCountry": true 1267 | }, 1268 | { 1269 | "id": 57000211, 1270 | "key": "SK", 1271 | "name": "Slovakia", 1272 | "isCountry": true 1273 | }, 1274 | { 1275 | "id": 57000212, 1276 | "key": "SI", 1277 | "name": "Slovenia", 1278 | "isCountry": true 1279 | }, 1280 | { 1281 | "id": 57000213, 1282 | "key": "SB", 1283 | "name": "Solomon Islands", 1284 | "isCountry": true 1285 | }, 1286 | { 1287 | "id": 57000214, 1288 | "key": "SO", 1289 | "name": "Somalia", 1290 | "isCountry": true 1291 | }, 1292 | { 1293 | "id": 57000215, 1294 | "key": "ZA", 1295 | "name": "South Africa", 1296 | "isCountry": true 1297 | }, 1298 | { 1299 | "id": 57000216, 1300 | "key": "KR", 1301 | "name": "South Korea", 1302 | "isCountry": true 1303 | }, 1304 | { 1305 | "id": 57000217, 1306 | "key": "SS", 1307 | "name": "South Sudan", 1308 | "isCountry": true 1309 | }, 1310 | { 1311 | "id": 57000218, 1312 | "key": "ES", 1313 | "name": "Spain", 1314 | "isCountry": true 1315 | }, 1316 | { 1317 | "id": 57000219, 1318 | "key": "LK", 1319 | "name": "Sri Lanka", 1320 | "isCountry": true 1321 | }, 1322 | { 1323 | "id": 57000220, 1324 | "key": "VC", 1325 | "name": "St. Vincent & Grenadines", 1326 | "isCountry": true 1327 | }, 1328 | { 1329 | "id": 57000221, 1330 | "key": "SD", 1331 | "name": "Sudan", 1332 | "isCountry": true 1333 | }, 1334 | { 1335 | "id": 57000222, 1336 | "key": "SR", 1337 | "name": "Suriname", 1338 | "isCountry": true 1339 | }, 1340 | { 1341 | "id": 57000223, 1342 | "key": "SJ", 1343 | "name": "Svalbard and Jan Mayen", 1344 | "isCountry": true 1345 | }, 1346 | { 1347 | "id": 57000224, 1348 | "key": "SZ", 1349 | "name": "Swaziland", 1350 | "isCountry": true 1351 | }, 1352 | { 1353 | "id": 57000225, 1354 | "key": "SE", 1355 | "name": "Sweden", 1356 | "isCountry": true 1357 | }, 1358 | { 1359 | "id": 57000226, 1360 | "key": "CH", 1361 | "name": "Switzerland", 1362 | "isCountry": true 1363 | }, 1364 | { 1365 | "id": 57000227, 1366 | "key": "SY", 1367 | "name": "Syria", 1368 | "isCountry": true 1369 | }, 1370 | { 1371 | "id": 57000228, 1372 | "key": "TW", 1373 | "name": "Taiwan", 1374 | "isCountry": true 1375 | }, 1376 | { 1377 | "id": 57000229, 1378 | "key": "TJ", 1379 | "name": "Tajikistan", 1380 | "isCountry": true 1381 | }, 1382 | { 1383 | "id": 57000230, 1384 | "key": "TZ", 1385 | "name": "Tanzania", 1386 | "isCountry": true 1387 | }, 1388 | { 1389 | "id": 57000231, 1390 | "key": "TH", 1391 | "name": "Thailand", 1392 | "isCountry": true 1393 | }, 1394 | { 1395 | "id": 57000232, 1396 | "key": "TL", 1397 | "name": "Timor-Leste", 1398 | "isCountry": true 1399 | }, 1400 | { 1401 | "id": 57000233, 1402 | "key": "TG", 1403 | "name": "Togo", 1404 | "isCountry": true 1405 | }, 1406 | { 1407 | "id": 57000234, 1408 | "key": "TK", 1409 | "name": "Tokelau", 1410 | "isCountry": true 1411 | }, 1412 | { 1413 | "id": 57000235, 1414 | "key": "TO", 1415 | "name": "Tonga", 1416 | "isCountry": true 1417 | }, 1418 | { 1419 | "id": 57000236, 1420 | "key": "TT", 1421 | "name": "Trinidad and Tobago", 1422 | "isCountry": true 1423 | }, 1424 | { 1425 | "id": 57000237, 1426 | "key": "TA", 1427 | "name": "Tristan da Cunha", 1428 | "isCountry": true 1429 | }, 1430 | { 1431 | "id": 57000238, 1432 | "key": "TN", 1433 | "name": "Tunisia", 1434 | "isCountry": true 1435 | }, 1436 | { 1437 | "id": 57000239, 1438 | "key": "TR", 1439 | "name": "Turkey", 1440 | "isCountry": true 1441 | }, 1442 | { 1443 | "id": 57000240, 1444 | "key": "TM", 1445 | "name": "Turkmenistan", 1446 | "isCountry": true 1447 | }, 1448 | { 1449 | "id": 57000241, 1450 | "key": "TC", 1451 | "name": "Turks and Caicos Islands", 1452 | "isCountry": true 1453 | }, 1454 | { 1455 | "id": 57000242, 1456 | "key": "TV", 1457 | "name": "Tuvalu", 1458 | "isCountry": true 1459 | }, 1460 | { 1461 | "id": 57000243, 1462 | "key": "UM", 1463 | "name": "U.S. Outlying Islands", 1464 | "isCountry": true 1465 | }, 1466 | { 1467 | "id": 57000244, 1468 | "key": "VI", 1469 | "name": "U.S. Virgin Islands", 1470 | "isCountry": true 1471 | }, 1472 | { 1473 | "id": 57000245, 1474 | "key": "UG", 1475 | "name": "Uganda", 1476 | "isCountry": true 1477 | }, 1478 | { 1479 | "id": 57000246, 1480 | "key": "UA", 1481 | "name": "Ukraine", 1482 | "isCountry": true 1483 | }, 1484 | { 1485 | "id": 57000247, 1486 | "key": "AE", 1487 | "name": "United Arab Emirates", 1488 | "isCountry": true 1489 | }, 1490 | { 1491 | "id": 57000248, 1492 | "key": "GB", 1493 | "name": "United Kingdom", 1494 | "isCountry": true 1495 | }, 1496 | { 1497 | "id": 57000249, 1498 | "key": "US", 1499 | "name": "United States", 1500 | "isCountry": true 1501 | }, 1502 | { 1503 | "id": 57000250, 1504 | "key": "UY", 1505 | "name": "Uruguay", 1506 | "isCountry": true 1507 | }, 1508 | { 1509 | "id": 57000251, 1510 | "key": "UZ", 1511 | "name": "Uzbekistan", 1512 | "isCountry": true 1513 | }, 1514 | { 1515 | "id": 57000252, 1516 | "key": "VU", 1517 | "name": "Vanuatu", 1518 | "isCountry": true 1519 | }, 1520 | { 1521 | "id": 57000253, 1522 | "key": "VA", 1523 | "name": "Vatican City", 1524 | "isCountry": true 1525 | }, 1526 | { 1527 | "id": 57000254, 1528 | "key": "VE", 1529 | "name": "Venezuela", 1530 | "isCountry": true 1531 | }, 1532 | { 1533 | "id": 57000255, 1534 | "key": "VN", 1535 | "name": "Vietnam", 1536 | "isCountry": true 1537 | }, 1538 | { 1539 | "id": 57000256, 1540 | "key": "WF", 1541 | "name": "Wallis and Futuna", 1542 | "isCountry": true 1543 | }, 1544 | { 1545 | "id": 57000257, 1546 | "key": "EH", 1547 | "name": "Western Sahara", 1548 | "isCountry": true 1549 | }, 1550 | { 1551 | "id": 57000258, 1552 | "key": "YE", 1553 | "name": "Yemen", 1554 | "isCountry": true 1555 | }, 1556 | { 1557 | "id": 57000259, 1558 | "key": "ZM", 1559 | "name": "Zambia", 1560 | "isCountry": true 1561 | }, 1562 | { 1563 | "id": 57000260, 1564 | "key": "ZW", 1565 | "name": "Zimbabwe", 1566 | "isCountry": true 1567 | } 1568 | ] -------------------------------------------------------------------------------- /docs/json/season_pass_rookie_summary.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Rookie_Basic", 4 | "summary": { 5 | "chest_SeasonPass_Rookie_T1": 8, 6 | "chest_SeasonPass_Rookie_T2": 6, 7 | "chest_SeasonPass_Rookie_T3": 3, 8 | "chest_SeasonPass_Rookie_T4": 1, 9 | "chest_Star_": 34, 10 | "emote": 1, 11 | "resource_Gold": 25500, 12 | "strike": 7 13 | }, 14 | "summary_free": { 15 | "chest_SeasonPass_Rookie_T3": 1, 16 | "chest_Star_": 34, 17 | "resource_Gold": 500 18 | }, 19 | "summary_paid": { 20 | "chest_SeasonPass_Rookie_T1": 8, 21 | "chest_SeasonPass_Rookie_T2": 6, 22 | "chest_SeasonPass_Rookie_T3": 2, 23 | "chest_SeasonPass_Rookie_T4": 1, 24 | "emote": 1, 25 | "resource_Gold": 25000, 26 | "strike": 7 27 | } 28 | }, 29 | { 30 | "name": "Rookie_December", 31 | "summary": { 32 | "chest_SeasonPass_Rookie_T1": 8, 33 | "chest_SeasonPass_Rookie_T2": 6, 34 | "chest_SeasonPass_Rookie_T3": 3, 35 | "chest_SeasonPass_Rookie_T4": 1, 36 | "chest_Star_": 34, 37 | "emote": 1, 38 | "resource_Gold": 25500, 39 | "strike": 7 40 | }, 41 | "summary_free": { 42 | "chest_SeasonPass_Rookie_T3": 1, 43 | "chest_Star_": 34, 44 | "resource_Gold": 500 45 | }, 46 | "summary_paid": { 47 | "chest_SeasonPass_Rookie_T1": 8, 48 | "chest_SeasonPass_Rookie_T2": 6, 49 | "chest_SeasonPass_Rookie_T3": 2, 50 | "chest_SeasonPass_Rookie_T4": 1, 51 | "emote": 1, 52 | "resource_Gold": 25000, 53 | "strike": 7 54 | } 55 | }, 56 | { 57 | "name": "Rookie_CW2_Launch", 58 | "summary": { 59 | "chest_SeasonPass_Rookie_T1": 8, 60 | "chest_SeasonPass_Rookie_T2": 6, 61 | "chest_SeasonPass_Rookie_T3": 3, 62 | "chest_SeasonPass_Rookie_T4": 1, 63 | "chest_Star_": 34, 64 | "emote": 1, 65 | "resource_Gold": 25500, 66 | "strike": 7 67 | }, 68 | "summary_free": { 69 | "chest_SeasonPass_Rookie_T3": 1, 70 | "chest_Star_": 34, 71 | "resource_Gold": 500 72 | }, 73 | "summary_paid": { 74 | "chest_SeasonPass_Rookie_T1": 8, 75 | "chest_SeasonPass_Rookie_T2": 6, 76 | "chest_SeasonPass_Rookie_T3": 2, 77 | "chest_SeasonPass_Rookie_T4": 1, 78 | "emote": 1, 79 | "resource_Gold": 25000, 80 | "strike": 7 81 | } 82 | }, 83 | { 84 | "name": "Rookie_FreeEmote", 85 | "summary": { 86 | "bonus_emote": 1, 87 | "chest_SeasonPass_Rookie_T1": 8, 88 | "chest_SeasonPass_Rookie_T2": 6, 89 | "chest_SeasonPass_Rookie_T3": 3, 90 | "chest_SeasonPass_Rookie_T4": 1, 91 | "chest_Star_": 33, 92 | "emote": 1, 93 | "resource_Gold": 25500, 94 | "strike": 7 95 | }, 96 | "summary_free": { 97 | "bonus_emote": 1, 98 | "chest_SeasonPass_Rookie_T3": 1, 99 | "chest_Star_": 33, 100 | "resource_Gold": 500 101 | }, 102 | "summary_paid": { 103 | "chest_SeasonPass_Rookie_T1": 8, 104 | "chest_SeasonPass_Rookie_T2": 6, 105 | "chest_SeasonPass_Rookie_T3": 2, 106 | "chest_SeasonPass_Rookie_T4": 1, 107 | "emote": 1, 108 | "resource_Gold": 25000, 109 | "strike": 7 110 | } 111 | }, 112 | { 113 | "name": "Rookie_WildCards_Common", 114 | "summary": { 115 | "bonus_consumable_ChestKey": 2, 116 | "bonus_consumable_WildcardCommon": 50, 117 | "bonus_consumable_WildcardEpic": 4, 118 | "bonus_consumable_WildcardRare": 10, 119 | "chest_Star_": 26, 120 | "consumable_BookCardAll": 1, 121 | "consumable_BookCardCommon": 1, 122 | "consumable_WildcardCommon": 500, 123 | "consumable_WildcardEpic": 14, 124 | "consumable_WildcardLegendary": 1, 125 | "consumable_WildcardRare": 200, 126 | "emote": 1, 127 | "resource_Gold": 25500 128 | }, 129 | "summary_free": { 130 | "bonus_consumable_ChestKey": 2, 131 | "bonus_consumable_WildcardCommon": 50, 132 | "bonus_consumable_WildcardEpic": 4, 133 | "bonus_consumable_WildcardRare": 10, 134 | "chest_Star_": 26, 135 | "consumable_BookCardCommon": 1, 136 | "resource_Gold": 500 137 | }, 138 | "summary_paid": { 139 | "consumable_BookCardAll": 1, 140 | "consumable_WildcardCommon": 500, 141 | "consumable_WildcardEpic": 14, 142 | "consumable_WildcardLegendary": 1, 143 | "consumable_WildcardRare": 200, 144 | "emote": 1, 145 | "resource_Gold": 25000 146 | } 147 | }, 148 | { 149 | "name": "Rookie_WildCards_Rare", 150 | "summary": { 151 | "bonus_consumable_ChestKey": 2, 152 | "bonus_consumable_WildcardCommon": 50, 153 | "bonus_consumable_WildcardEpic": 4, 154 | "bonus_consumable_WildcardRare": 10, 155 | "chest_Star_": 26, 156 | "consumable_BookCardAll": 1, 157 | "consumable_BookCardRare": 1, 158 | "consumable_WildcardCommon": 500, 159 | "consumable_WildcardEpic": 14, 160 | "consumable_WildcardLegendary": 1, 161 | "consumable_WildcardRare": 200, 162 | "emote": 1, 163 | "resource_Gold": 25500 164 | }, 165 | "summary_free": { 166 | "bonus_consumable_ChestKey": 2, 167 | "bonus_consumable_WildcardCommon": 50, 168 | "bonus_consumable_WildcardEpic": 4, 169 | "bonus_consumable_WildcardRare": 10, 170 | "chest_Star_": 26, 171 | "consumable_BookCardRare": 1, 172 | "resource_Gold": 500 173 | }, 174 | "summary_paid": { 175 | "consumable_BookCardAll": 1, 176 | "consumable_WildcardCommon": 500, 177 | "consumable_WildcardEpic": 14, 178 | "consumable_WildcardLegendary": 1, 179 | "consumable_WildcardRare": 200, 180 | "emote": 1, 181 | "resource_Gold": 25000 182 | } 183 | }, 184 | { 185 | "name": "Rookie_WildCards_Epic", 186 | "summary": { 187 | "bonus_consumable_ChestKey": 2, 188 | "bonus_consumable_WildcardCommon": 50, 189 | "bonus_consumable_WildcardEpic": 4, 190 | "bonus_consumable_WildcardRare": 10, 191 | "chest_Star_": 26, 192 | "consumable_BookCardAll": 1, 193 | "consumable_BookCardEpic": 1, 194 | "consumable_WildcardCommon": 500, 195 | "consumable_WildcardEpic": 14, 196 | "consumable_WildcardLegendary": 1, 197 | "consumable_WildcardRare": 200, 198 | "emote": 1, 199 | "resource_Gold": 25500 200 | }, 201 | "summary_free": { 202 | "bonus_consumable_ChestKey": 2, 203 | "bonus_consumable_WildcardCommon": 50, 204 | "bonus_consumable_WildcardEpic": 4, 205 | "bonus_consumable_WildcardRare": 10, 206 | "chest_Star_": 26, 207 | "consumable_BookCardEpic": 1, 208 | "resource_Gold": 500 209 | }, 210 | "summary_paid": { 211 | "consumable_BookCardAll": 1, 212 | "consumable_WildcardCommon": 500, 213 | "consumable_WildcardEpic": 14, 214 | "consumable_WildcardLegendary": 1, 215 | "consumable_WildcardRare": 200, 216 | "emote": 1, 217 | "resource_Gold": 25000 218 | } 219 | }, 220 | { 221 | "name": "Rookie_Offline", 222 | "summary": { 223 | "bonus_consumable_ChestKey": 2, 224 | "bonus_consumable_WildcardCommon": 50, 225 | "bonus_consumable_WildcardEpic": 2, 226 | "bonus_consumable_WildcardRare": 10, 227 | "chest_Star_": 26, 228 | "chest_WildChampion_": 1, 229 | "consumable_BookCardAll": 1, 230 | "consumable_BookCardLegendary": 1, 231 | "consumable_WildcardCommon": 500, 232 | "consumable_WildcardEpic": 14, 233 | "consumable_WildcardLegendary": 1, 234 | "consumable_WildcardRare": 200, 235 | "emote": 1, 236 | "resource_Gold": 25500 237 | }, 238 | "summary_free": { 239 | "bonus_consumable_ChestKey": 2, 240 | "bonus_consumable_WildcardCommon": 50, 241 | "bonus_consumable_WildcardEpic": 2, 242 | "bonus_consumable_WildcardRare": 10, 243 | "chest_Star_": 26, 244 | "chest_WildChampion_": 1, 245 | "consumable_BookCardLegendary": 1, 246 | "resource_Gold": 500 247 | }, 248 | "summary_paid": { 249 | "consumable_BookCardAll": 1, 250 | "consumable_WildcardCommon": 500, 251 | "consumable_WildcardEpic": 14, 252 | "consumable_WildcardLegendary": 1, 253 | "consumable_WildcardRare": 200, 254 | "emote": 1, 255 | "resource_Gold": 25000 256 | } 257 | }, 258 | { 259 | "name": "NewTiers_Rookie_WildCards_Common", 260 | "summary": { 261 | "bonus_consumable_ChestKey": 2, 262 | "bonus_consumable_WildcardCommon": 50, 263 | "bonus_consumable_WildcardEpic": 4, 264 | "bonus_consumable_WildcardRare": 10, 265 | "chest_Star_": 26, 266 | "consumable_BookCardAll": 1, 267 | "consumable_BookCardCommon": 1, 268 | "consumable_WildcardCommon": 500, 269 | "consumable_WildcardEpic": 14, 270 | "consumable_WildcardLegendary": 1, 271 | "consumable_WildcardRare": 200, 272 | "emote": 1, 273 | "resource_Gold": 25500 274 | }, 275 | "summary_free": { 276 | "bonus_consumable_ChestKey": 2, 277 | "bonus_consumable_WildcardCommon": 50, 278 | "bonus_consumable_WildcardEpic": 4, 279 | "bonus_consumable_WildcardRare": 10, 280 | "chest_Star_": 26, 281 | "consumable_BookCardCommon": 1, 282 | "resource_Gold": 500 283 | }, 284 | "summary_paid": { 285 | "consumable_BookCardAll": 1, 286 | "consumable_WildcardCommon": 500, 287 | "consumable_WildcardEpic": 14, 288 | "consumable_WildcardLegendary": 1, 289 | "consumable_WildcardRare": 200, 290 | "emote": 1, 291 | "resource_Gold": 25000 292 | } 293 | }, 294 | { 295 | "name": "NewTiers_Rookie_WildCards_Rare", 296 | "summary": { 297 | "bonus_consumable_ChestKey": 2, 298 | "bonus_consumable_WildcardCommon": 50, 299 | "bonus_consumable_WildcardEpic": 4, 300 | "bonus_consumable_WildcardRare": 10, 301 | "chest_Star_": 26, 302 | "consumable_BookCardAll": 1, 303 | "consumable_BookCardRare": 1, 304 | "consumable_WildcardCommon": 500, 305 | "consumable_WildcardEpic": 14, 306 | "consumable_WildcardLegendary": 1, 307 | "consumable_WildcardRare": 200, 308 | "emote": 1, 309 | "resource_Gold": 25500 310 | }, 311 | "summary_free": { 312 | "bonus_consumable_ChestKey": 2, 313 | "bonus_consumable_WildcardCommon": 50, 314 | "bonus_consumable_WildcardEpic": 4, 315 | "bonus_consumable_WildcardRare": 10, 316 | "chest_Star_": 26, 317 | "consumable_BookCardRare": 1, 318 | "resource_Gold": 500 319 | }, 320 | "summary_paid": { 321 | "consumable_BookCardAll": 1, 322 | "consumable_WildcardCommon": 500, 323 | "consumable_WildcardEpic": 14, 324 | "consumable_WildcardLegendary": 1, 325 | "consumable_WildcardRare": 200, 326 | "emote": 1, 327 | "resource_Gold": 25000 328 | } 329 | }, 330 | { 331 | "name": "NewTiers_Rookie_WildCards_Epic", 332 | "summary": { 333 | "bonus_consumable_ChestKey": 2, 334 | "bonus_consumable_WildcardCommon": 50, 335 | "bonus_consumable_WildcardEpic": 4, 336 | "bonus_consumable_WildcardRare": 10, 337 | "chest_Star_": 26, 338 | "consumable_BookCardAll": 1, 339 | "consumable_BookCardEpic": 1, 340 | "consumable_WildcardCommon": 500, 341 | "consumable_WildcardEpic": 14, 342 | "consumable_WildcardLegendary": 1, 343 | "consumable_WildcardRare": 200, 344 | "emote": 1, 345 | "resource_Gold": 25500 346 | }, 347 | "summary_free": { 348 | "bonus_consumable_ChestKey": 2, 349 | "bonus_consumable_WildcardCommon": 50, 350 | "bonus_consumable_WildcardEpic": 4, 351 | "bonus_consumable_WildcardRare": 10, 352 | "chest_Star_": 26, 353 | "consumable_BookCardEpic": 1, 354 | "resource_Gold": 500 355 | }, 356 | "summary_paid": { 357 | "consumable_BookCardAll": 1, 358 | "consumable_WildcardCommon": 500, 359 | "consumable_WildcardEpic": 14, 360 | "consumable_WildcardLegendary": 1, 361 | "consumable_WildcardRare": 200, 362 | "emote": 1, 363 | "resource_Gold": 25000 364 | } 365 | }, 366 | { 367 | "name": "NewTiers_Rookie_WildCards_Legendary", 368 | "summary": { 369 | "bonus_consumable_ChestKey": 2, 370 | "bonus_consumable_WildcardCommon": 50, 371 | "bonus_consumable_WildcardEpic": 4, 372 | "bonus_consumable_WildcardRare": 10, 373 | "chest_Star_": 26, 374 | "consumable_BookCardAll": 1, 375 | "consumable_BookCardLegendary": 1, 376 | "consumable_WildcardCommon": 500, 377 | "consumable_WildcardEpic": 14, 378 | "consumable_WildcardLegendary": 1, 379 | "consumable_WildcardRare": 200, 380 | "emote": 1, 381 | "resource_Gold": 25500 382 | }, 383 | "summary_free": { 384 | "bonus_consumable_ChestKey": 2, 385 | "bonus_consumable_WildcardCommon": 50, 386 | "bonus_consumable_WildcardEpic": 4, 387 | "bonus_consumable_WildcardRare": 10, 388 | "chest_Star_": 26, 389 | "consumable_BookCardLegendary": 1, 390 | "resource_Gold": 500 391 | }, 392 | "summary_paid": { 393 | "consumable_BookCardAll": 1, 394 | "consumable_WildcardCommon": 500, 395 | "consumable_WildcardEpic": 14, 396 | "consumable_WildcardLegendary": 1, 397 | "consumable_WildcardRare": 200, 398 | "emote": 1, 399 | "resource_Gold": 25000 400 | } 401 | }, 402 | { 403 | "name": "NewTiers_Rookie_WildCards_Coin", 404 | "summary": { 405 | "bonus_consumable_ChestKey": 2, 406 | "bonus_consumable_WildcardCommon": 50, 407 | "bonus_consumable_WildcardEpic": 4, 408 | "bonus_consumable_WildcardRare": 10, 409 | "chest_Star_": 26, 410 | "consumable_BookCardAll": 1, 411 | "consumable_GoldCoin": 1, 412 | "consumable_WildcardCommon": 500, 413 | "consumable_WildcardEpic": 14, 414 | "consumable_WildcardLegendary": 1, 415 | "consumable_WildcardRare": 200, 416 | "emote": 1, 417 | "resource_Gold": 25500 418 | }, 419 | "summary_free": { 420 | "bonus_consumable_ChestKey": 2, 421 | "bonus_consumable_WildcardCommon": 50, 422 | "bonus_consumable_WildcardEpic": 4, 423 | "bonus_consumable_WildcardRare": 10, 424 | "chest_Star_": 26, 425 | "consumable_GoldCoin": 1, 426 | "resource_Gold": 500 427 | }, 428 | "summary_paid": { 429 | "consumable_BookCardAll": 1, 430 | "consumable_WildcardCommon": 500, 431 | "consumable_WildcardEpic": 14, 432 | "consumable_WildcardLegendary": 1, 433 | "consumable_WildcardRare": 200, 434 | "emote": 1, 435 | "resource_Gold": 25000 436 | } 437 | }, 438 | { 439 | "name": "WildChampion_Rookie_Common", 440 | "summary": { 441 | "bonus_consumable_ChestKey": 2, 442 | "bonus_consumable_WildcardCommon": 50, 443 | "bonus_consumable_WildcardEpic": 2, 444 | "bonus_consumable_WildcardRare": 10, 445 | "chest_Star_": 26, 446 | "chest_WildChampion_": 1, 447 | "consumable_BookCardAll": 1, 448 | "consumable_BookCardCommon": 1, 449 | "consumable_WildcardCommon": 500, 450 | "consumable_WildcardEpic": 14, 451 | "consumable_WildcardLegendary": 1, 452 | "consumable_WildcardRare": 200, 453 | "emote": 1, 454 | "resource_Gold": 25500 455 | }, 456 | "summary_free": { 457 | "bonus_consumable_ChestKey": 2, 458 | "bonus_consumable_WildcardCommon": 50, 459 | "bonus_consumable_WildcardEpic": 2, 460 | "bonus_consumable_WildcardRare": 10, 461 | "chest_Star_": 26, 462 | "chest_WildChampion_": 1, 463 | "consumable_BookCardCommon": 1, 464 | "resource_Gold": 500 465 | }, 466 | "summary_paid": { 467 | "consumable_BookCardAll": 1, 468 | "consumable_WildcardCommon": 500, 469 | "consumable_WildcardEpic": 14, 470 | "consumable_WildcardLegendary": 1, 471 | "consumable_WildcardRare": 200, 472 | "emote": 1, 473 | "resource_Gold": 25000 474 | } 475 | }, 476 | { 477 | "name": "WildChampion_Rookie_Rare", 478 | "summary": { 479 | "bonus_consumable_ChestKey": 2, 480 | "bonus_consumable_WildcardCommon": 50, 481 | "bonus_consumable_WildcardEpic": 2, 482 | "bonus_consumable_WildcardRare": 10, 483 | "chest_Star_": 26, 484 | "chest_WildChampion_": 1, 485 | "consumable_BookCardAll": 1, 486 | "consumable_BookCardRare": 1, 487 | "consumable_WildcardCommon": 500, 488 | "consumable_WildcardEpic": 14, 489 | "consumable_WildcardLegendary": 1, 490 | "consumable_WildcardRare": 200, 491 | "emote": 1, 492 | "resource_Gold": 25500 493 | }, 494 | "summary_free": { 495 | "bonus_consumable_ChestKey": 2, 496 | "bonus_consumable_WildcardCommon": 50, 497 | "bonus_consumable_WildcardEpic": 2, 498 | "bonus_consumable_WildcardRare": 10, 499 | "chest_Star_": 26, 500 | "chest_WildChampion_": 1, 501 | "consumable_BookCardRare": 1, 502 | "resource_Gold": 500 503 | }, 504 | "summary_paid": { 505 | "consumable_BookCardAll": 1, 506 | "consumable_WildcardCommon": 500, 507 | "consumable_WildcardEpic": 14, 508 | "consumable_WildcardLegendary": 1, 509 | "consumable_WildcardRare": 200, 510 | "emote": 1, 511 | "resource_Gold": 25000 512 | } 513 | }, 514 | { 515 | "name": "WildChampion_Rookie_Epic", 516 | "summary": { 517 | "bonus_consumable_ChestKey": 2, 518 | "bonus_consumable_WildcardCommon": 50, 519 | "bonus_consumable_WildcardEpic": 2, 520 | "bonus_consumable_WildcardRare": 10, 521 | "chest_Star_": 26, 522 | "chest_WildChampion_": 1, 523 | "consumable_BookCardAll": 1, 524 | "consumable_BookCardEpic": 1, 525 | "consumable_WildcardCommon": 500, 526 | "consumable_WildcardEpic": 14, 527 | "consumable_WildcardLegendary": 1, 528 | "consumable_WildcardRare": 200, 529 | "emote": 1, 530 | "resource_Gold": 25500 531 | }, 532 | "summary_free": { 533 | "bonus_consumable_ChestKey": 2, 534 | "bonus_consumable_WildcardCommon": 50, 535 | "bonus_consumable_WildcardEpic": 2, 536 | "bonus_consumable_WildcardRare": 10, 537 | "chest_Star_": 26, 538 | "chest_WildChampion_": 1, 539 | "consumable_BookCardEpic": 1, 540 | "resource_Gold": 500 541 | }, 542 | "summary_paid": { 543 | "consumable_BookCardAll": 1, 544 | "consumable_WildcardCommon": 500, 545 | "consumable_WildcardEpic": 14, 546 | "consumable_WildcardLegendary": 1, 547 | "consumable_WildcardRare": 200, 548 | "emote": 1, 549 | "resource_Gold": 25000 550 | } 551 | }, 552 | { 553 | "name": "WildChampion_Rookie_Legendary", 554 | "summary": { 555 | "bonus_consumable_ChestKey": 2, 556 | "bonus_consumable_WildcardCommon": 50, 557 | "bonus_consumable_WildcardEpic": 2, 558 | "bonus_consumable_WildcardRare": 10, 559 | "chest_Star_": 26, 560 | "chest_WildChampion_": 1, 561 | "consumable_BookCardAll": 1, 562 | "consumable_BookCardLegendary": 1, 563 | "consumable_WildcardCommon": 500, 564 | "consumable_WildcardEpic": 14, 565 | "consumable_WildcardLegendary": 1, 566 | "consumable_WildcardRare": 200, 567 | "emote": 1, 568 | "resource_Gold": 25500 569 | }, 570 | "summary_free": { 571 | "bonus_consumable_ChestKey": 2, 572 | "bonus_consumable_WildcardCommon": 50, 573 | "bonus_consumable_WildcardEpic": 2, 574 | "bonus_consumable_WildcardRare": 10, 575 | "chest_Star_": 26, 576 | "chest_WildChampion_": 1, 577 | "consumable_BookCardLegendary": 1, 578 | "resource_Gold": 500 579 | }, 580 | "summary_paid": { 581 | "consumable_BookCardAll": 1, 582 | "consumable_WildcardCommon": 500, 583 | "consumable_WildcardEpic": 14, 584 | "consumable_WildcardLegendary": 1, 585 | "consumable_WildcardRare": 200, 586 | "emote": 1, 587 | "resource_Gold": 25000 588 | } 589 | }, 590 | { 591 | "name": "WildChampion_Rookie_Coin", 592 | "summary": { 593 | "bonus_consumable_ChestKey": 2, 594 | "bonus_consumable_WildcardCommon": 50, 595 | "bonus_consumable_WildcardEpic": 2, 596 | "bonus_consumable_WildcardRare": 10, 597 | "chest_Star_": 26, 598 | "chest_WildChampion_": 1, 599 | "consumable_BookCardAll": 1, 600 | "consumable_GoldCoin": 1, 601 | "consumable_WildcardCommon": 500, 602 | "consumable_WildcardEpic": 14, 603 | "consumable_WildcardLegendary": 1, 604 | "consumable_WildcardRare": 200, 605 | "emote": 1, 606 | "resource_Gold": 25500 607 | }, 608 | "summary_free": { 609 | "bonus_consumable_ChestKey": 2, 610 | "bonus_consumable_WildcardCommon": 50, 611 | "bonus_consumable_WildcardEpic": 2, 612 | "bonus_consumable_WildcardRare": 10, 613 | "chest_Star_": 26, 614 | "chest_WildChampion_": 1, 615 | "consumable_GoldCoin": 1, 616 | "resource_Gold": 500 617 | }, 618 | "summary_paid": { 619 | "consumable_BookCardAll": 1, 620 | "consumable_WildcardCommon": 500, 621 | "consumable_WildcardEpic": 14, 622 | "consumable_WildcardLegendary": 1, 623 | "consumable_WildcardRare": 200, 624 | "emote": 1, 625 | "resource_Gold": 25000 626 | } 627 | }, 628 | { 629 | "name": "NoTower_WildChampion_Rookie_Rare", 630 | "summary": { 631 | "bonus_consumable_ChestKey": 2, 632 | "bonus_consumable_WildcardCommon": 50, 633 | "bonus_consumable_WildcardEpic": 2, 634 | "bonus_consumable_WildcardRare": 10, 635 | "chest_Star_": 26, 636 | "chest_WildChampion_": 1, 637 | "consumable_BookCardAll": 1, 638 | "consumable_BookCardRare": 1, 639 | "consumable_WildcardCommon": 500, 640 | "consumable_WildcardEpic": 14, 641 | "consumable_WildcardLegendary": 3, 642 | "consumable_WildcardRare": 200, 643 | "resource_Gold": 25500 644 | }, 645 | "summary_free": { 646 | "bonus_consumable_ChestKey": 2, 647 | "bonus_consumable_WildcardCommon": 50, 648 | "bonus_consumable_WildcardEpic": 2, 649 | "bonus_consumable_WildcardRare": 10, 650 | "chest_Star_": 26, 651 | "chest_WildChampion_": 1, 652 | "consumable_BookCardRare": 1, 653 | "resource_Gold": 500 654 | }, 655 | "summary_paid": { 656 | "consumable_BookCardAll": 1, 657 | "consumable_WildcardCommon": 500, 658 | "consumable_WildcardEpic": 14, 659 | "consumable_WildcardLegendary": 3, 660 | "consumable_WildcardRare": 200, 661 | "resource_Gold": 25000 662 | } 663 | }, 664 | { 665 | "name": "Xmas_2022_Special_Rookie", 666 | "summary": { 667 | "bonus_consumable_ChestKey": 2, 668 | "bonus_consumable_WildcardCommon": 50, 669 | "bonus_consumable_WildcardEpic": 2, 670 | "bonus_consumable_WildcardRare": 10, 671 | "chest_Star_": 26, 672 | "chest_WildChampion_": 1, 673 | "consumable_BookCardAll": 1, 674 | "consumable_BookCardLegendary": 1, 675 | "consumable_WildcardCommon": 500, 676 | "consumable_WildcardEpic": 14, 677 | "consumable_WildcardLegendary": 1, 678 | "consumable_WildcardRare": 200, 679 | "emote": 1, 680 | "resource_Gold": 25500 681 | }, 682 | "summary_free": { 683 | "bonus_consumable_ChestKey": 2, 684 | "bonus_consumable_WildcardCommon": 50, 685 | "bonus_consumable_WildcardEpic": 2, 686 | "bonus_consumable_WildcardRare": 10, 687 | "chest_Star_": 26, 688 | "chest_WildChampion_": 1, 689 | "consumable_BookCardLegendary": 1, 690 | "resource_Gold": 500 691 | }, 692 | "summary_paid": { 693 | "consumable_BookCardAll": 1, 694 | "consumable_WildcardCommon": 500, 695 | "consumable_WildcardEpic": 14, 696 | "consumable_WildcardLegendary": 1, 697 | "consumable_WildcardRare": 200, 698 | "emote": 1, 699 | "resource_Gold": 25000 700 | } 701 | } 702 | ] --------------------------------------------------------------------------------