-
Notifications
You must be signed in to change notification settings - Fork 0
/
levels_episode.json
5861 lines (5861 loc) · 220 KB
/
levels_episode.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "casual_show_episode",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.casual_show_roundpool",
"bucket_override_roundpools": [
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_ftue",
"roundpool": "levels_roundpool.casual_show_ftue_collection"
},
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_lowest",
"roundpool": "levels_roundpool.casual_show_roundpool_low_bucket"
},
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_mid",
"roundpool": "levels_roundpool.casual_show_roundpool_mid_bucket"
},
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_high",
"roundpool": "levels_roundpool.casual_show_roundpool"
}
],
"debug_player_count_multiplier": 1,
"fallback_round": "levels_round.round_gauntlet_01_40",
"allow_toms": true,
"mode": "ultimate_party"
},
{
"id": "collectable_test_batch5",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch5",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_tunnel_final_collectables",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.roundpool_collectables_batch01",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_door_dash_collectable",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_01_model1",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch1_model1",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_door_dash_collectable_model1",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_01_model2",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch1_model2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_door_dash_collectable_model2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_02",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_laura_collectable_test_2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_dodge_fall_collectables",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_02_model1",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch2_model1",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_dodge_fall_collectables_model1",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_02_model2",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch2_model2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_dodge_fall_collectables_model2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_03",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectables_batch03",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_gauntlet_06_collectables",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_03_model1",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch3_model1",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_gauntlet_06_collectables_model1",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_03_model2",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch3_model2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_gauntlet_06_collectables_model2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_04",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectables_ss2_batch_04",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_fall_mountain_collectables",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_04_model1",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch4_model1",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_fall_mountain_collectables_model1",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_04_model2",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch4_model2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 4,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_fall_mountain_collectables_model2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_05_model1",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch5_model1",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_tunnel_final_collectables_model1",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "collectables_ss2_batch_05_model2",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_collectable_test_batch5_model2",
"debug_ignore_min_players_on_round_selection": true,
"debug_player_count_multiplier": 3,
"ignore_team_sizes_in_selection": true,
"fallback_round": "levels_round.round_tunnel_final_collectables_model2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp3_08_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp3_08_01",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp3_08_01",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp3_08_02",
"director": "levels_director.director_no_weightings",
"fallback_round": "levels_round.current_wle_fp3_08_02",
"roundpool": "levels_roundpool.current_wle_fp3_08_02",
"debug_player_count_multiplier": 3,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp4_05_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_05_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_05_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_05_01_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_05_01_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_05_01_04",
"mode": "knockout"
},
{
"id": "current_wle_fp4_05_03_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_05_03_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_05_03_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_05_03_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_05_03_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_05_03_02",
"mode": "knockout"
},
{
"id": "current_wle_fp4_06_0_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_06_0_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_06_0_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_06_0_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_06_0_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_06_0_03",
"mode": "knockout"
},
{
"id": "current_wle_fp4_06_0_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_06_0_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_06_0_04",
"mode": "knockout"
},
{
"id": "current_wle_fp4_06_0_10_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_06_0_10_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_06_0_10_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_06_1_06",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_06_1_06",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_06_1_06",
"mode": "knockout"
},
{
"id": "current_wle_fp4_07_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_07_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_07_02",
"mode": "knockout"
},
{
"id": "current_wle_fp4_07_05",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_07_05",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_07_05",
"mode": "knockout"
},
{
"id": "current_wle_fp4_07_0_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_07_0_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_07_0_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_08_0_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_08_0_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_08_0_02",
"mode": "knockout"
},
{
"id": "current_wle_fp4_08_0_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_08_0_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_08_0_04",
"mode": "knockout"
},
{
"id": "current_wle_fp4_08_0_05",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_08_0_05",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_08_0_05",
"mode": "knockout"
},
{
"id": "current_wle_fp4_08_3_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_08_3_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_08_3_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_09_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_09_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_09_02",
"mode": "knockout"
},
{
"id": "current_wle_fp4_09_0_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_09_0_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_09_0_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_04",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_05",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_05",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_05",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_07",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_07",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_07",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_08",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_08",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_08",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_0_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_0_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_0_01",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_0_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp4_10_0_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp4_10_0_02",
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_11",
"director": "levels_director.director_no_weightings",
"fallback_round": "levels_round.current_wle_fp4_10_11",
"roundpool": "levels_roundpool.current_wle_fp4_10_11",
"debug_player_count_multiplier": 3,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_12",
"director": "levels_director.director_no_weightings",
"fallback_round": "levels_round.current_wle_fp4_10_12",
"roundpool": "levels_roundpool.current_wle_fp4_10_12",
"debug_player_count_multiplier": 3,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_20",
"director": "levels_director.director_no_weightings",
"fallback_round": "levels_round.current_wle_fp4_10_20",
"roundpool": "levels_roundpool.current_wle_fp4_10_20",
"debug_player_count_multiplier": 3,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp4_10_22",
"director": "levels_director.director_no_weightings",
"fallback_round": "levels_round.current_wle_fp4_10_21",
"roundpool": "levels_roundpool.current_wle_fp4_10_22",
"debug_player_count_multiplier": 3,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_10_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_10_01",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_10_01",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_10_2_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_10_2_01",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_10_2_01",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_10_2_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_10_2_02",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_10_2_02",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_10_2_11",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_10_2_11",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_10_2_11",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_2_05_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_2_05_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_2_05_01",
"mode": "knockout"
},
{
"id": "current_wle_fp5_2_05_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_2_05_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_2_05_02",
"mode": "knockout"
},
{
"id": "current_wle_fp5_2_05_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_2_05_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_2_05_03",
"mode": "knockout"
},
{
"id": "current_wle_fp5_2_05_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_2_05_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_2_05_04",
"mode": "knockout"
},
{
"id": "current_wle_fp5_3_05_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_3_05_01",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_3_05_01",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_3_05_02_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_3_05_02_01",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_3_05_02_01",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_1_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_1_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_1_04",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_1_08",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_1_08",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_1_08",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_2_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_2_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_2_01",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_2_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_2_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_2_03",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_2_03_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_2_03_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_2_03_02",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_4_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_4_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_4_02",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_4_11",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_4_11",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_4_11",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_4_12",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_4_12",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_4_12",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_4_13",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_4_13",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_4_13",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_4_19",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_4_19",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_4_19",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_6_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_6_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_6_02",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_7_01_07",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_7_01_07",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_7_01_07",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_7_04_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_7_04_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_7_04_04",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_7_05_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_7_05_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_7_05_03",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_7_10_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_7_10_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_7_10_01",
"mode": "knockout"
},
{
"id": "current_wle_fp5_falloween_9_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_falloween_9_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_falloween_9_03",
"mode": "knockout"
},
{
"id": "current_wle_fp5_wk3_2_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_wk3_2_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_wk3_2_03",
"mode": "knockout"
},
{
"id": "current_wle_fp5_wk3_3_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp5_wk3_3_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp5_wk3_3_04",
"mode": "knockout"
},
{
"id": "current_wle_fp6_1_05",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_1_05",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_1_05",
"mode": "knockout"
},
{
"id": "current_wle_fp6_1_09",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_1_09",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_1_09",
"mode": "knockout"
},
{
"id": "current_wle_fp6_2_08",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_2_08",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_2_08",
"mode": "knockout"
},
{
"id": "current_wle_fp6_3_06",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_3_06",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_3_06",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk2_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk2_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk2_04",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk2_09",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk2_09",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk2_09",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk2_11",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk2_11",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk2_11",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk2_1_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk2_1_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk2_1_03",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_01",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_01",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_01",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_03",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_03",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_03",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_06",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_06",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_06",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_07",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_07",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_07",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_09",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_09",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_09",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_10",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_10",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_10",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_2_02",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_2_02",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_2_02",
"mode": "knockout"
},
{
"id": "current_wle_fp6_wk3_2_04",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.current_wle_fp6_wk3_2_04",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.current_wle_fp6_wk3_2_04",
"mode": "knockout"
},
{
"id": "episode_1v1_volleyfall_solos",
"director": "levels_director.director_1v1_volleyfall_ss2_show2",
"roundpool": "levels_roundpool.roundpool_1v1_volleyfall_solos",
"debug_player_count_multiplier": 2,
"fallback_round": "levels_round.round_1v1_volleyfall_final_ss2_show2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_1v1_volleyfall_squads_ss1_or_ss2_show2",
"director": "levels_director.director_no_weightings",
"roundpool": "levels_roundpool.roundpool_1v1_volleyfall_squads_ss1_or_ss2_show2",
"debug_player_count_multiplier": 2,
"fallback_round": "levels_round.round_1v1_volleyfall_final_squads_ss1_or_ss2_show2",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_3_point_5_fan_favourites",
"director": "levels_director.director_event_3_point_5_fan_favourites",
"roundpool": "levels_roundpool.roundpool_3_point_5_fan_favourites",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_floor_fall_3_point_5_fan_favourite",
"mode": "knockout"
},
{
"id": "episode_anniversary_fp12_ltm",
"director": "levels_director.director_anniversary_fp12_ltm",
"roundpool": "levels_roundpool.roundpool_anniversary_fp12_ltm",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_floor_fall_40",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_blast_ball_banger",
"director": "levels_director.director_pelican",
"roundpool": "levels_roundpool.roundpool_blast_ball_banger_8_2",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_blastball_arenasurvival_blast_ball_banger",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_classic_duos_show_s10",
"director": "levels_director.director_classic_duos_show",
"roundpool": "levels_roundpool.roundpool_classic_duos_show_s10",
"debug_player_count_multiplier": 7,
"fallback_round": "levels_round.round_floor_fall_duos",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_classic_duos_show_s11",
"director": "levels_director.director_classic_duos_show",
"roundpool": "levels_roundpool.roundpool_classic_duos_show_s11",
"debug_player_count_multiplier": 7,
"fallback_round": "levels_round.round_floor_fall_duos",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_classic_squads_show_s10",
"director": "levels_director.director_classic_squads_show",
"roundpool": "levels_roundpool.roundpool_classic_squads_show_s10",
"debug_player_count_multiplier": 7,
"fallback_round": "levels_round.round_floor_fall_squads",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_classic_squads_show_s11",
"director": "levels_director.director_classic_squads_show",
"roundpool": "levels_roundpool.roundpool_classic_squads_show_s11",
"debug_player_count_multiplier": 7,
"fallback_round": "levels_round.round_floor_fall_squads",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_content_complete",
"director": "levels_director.director_main_show",
"roundpool": "levels_roundpool.roundpool_content_complete",
"bucket_override_roundpools": [
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_lowest",
"roundpool": "levels_roundpool.roundpool_solo_lowest_elo"
},
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_mid",
"roundpool": "levels_roundpool.roundpool_solo_mid_elo_new"
},
{
"matchmaking_bucket": "matchmaking_buckets.mm_bucket_elo_high",
"roundpool": "levels_roundpool.roundpool_solo_high_elo"
}
],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_floor_fall",
"allow_toms": true,
"mode": "knockout"
},
{
"id": "episode_content_complete_40",
"director": "levels_director.director_solo_show_s10",
"roundpool": "levels_roundpool.roundpool_content_complete_40",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_floor_fall_40",
"allow_toms": true,
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_content_complete_ss2",
"director": "levels_director.director_solos_cc_ss2",
"roundpool": "levels_roundpool.roundpool_content_complete_ss2",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_floor_fall",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_day_at_the_races_ltm",
"director": "levels_director.director_dar_ltm",
"roundpool": "levels_roundpool.roundpool_day_at_the_races_ltm",
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_hexsnake",
"bucket_override_roundpools": [],
"mode": "knockout"
},
{
"id": "episode_deterministic_flow_survival",
"director": "levels_director.director_simple",
"roundpool": "levels_roundpool.roundpool_deterministic_flow_survival",
"bucket_override_roundpools": [],
"debug_player_count_multiplier": 3,
"fallback_round": "levels_round.round_match_fall",
"mode": "knockout"
},
{
"id": "episode_deterministic_squads",
"director": "levels_director.director_squads",