-
Notifications
You must be signed in to change notification settings - Fork 9
/
bot-data.json
1298 lines (1298 loc) · 36.3 KB
/
bot-data.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
{
"bots": {
"ABot": {
"name": "ABot",
"makers": [
"VirxEC"
],
"language": "python",
"notes": [
"This is a boost-hogging ATBA bot."
]
},
"AGC": {
"name": "AGC",
"makers": [
"Eru"
],
"language": "java"
},
"AdversityBot": {
"name": "AdversityBot",
"makers": [
"tarehart"
],
"language": "kotlin",
"statsUrl": "https://braacket.com/league/rlbot/player/2E8B84D3-9C31-4258-B8DC-50B882F95E4A",
"notes": [
"Notorious demolition bot.",
"Shares a codebase with ReliefBot."
]
},
"AirBud": {
"name": "Air Bud",
"makers": [
"tarehart"
],
"language": "kotlin",
"statsUrl": "https://braacket.com/league/rlbot/player/80E9FA90-EEC2-45F6-9F1C-A03C4CAB9E97",
"notes": [
"All aerials all the time!",
"Ain't no rule that says a dog can't play Rocket League.",
"Shares a codebase with ReliefBot."
]
},
"ShereKhan": {
"name": "Shere Khan",
"makers": [
"tarehart"
],
"language": "kotlin",
"notes": [
"Inspired by a friend's awesome Maine Coon cat that parkours around the house."
]
},
"Anarchy": {
"name": "Anarchy",
"makers": [
"Redox",
"r0bbi3",
"Darxeal",
"IamEld3st",
"ThatGuyDed",
"DomNomNom",
"Kipje13",
"jeroen11dijk",
"dtracers",
"Jonas",
"GooseFairy",
"Marvin",
"Face",
"whatisaphone",
"twobackfromtheend",
"alion02",
"VirxEC",
"Will",
"Hytak",
"_DaCoolOne_"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/347A1211-D18D-4B76-A976-493FD1C61D8C",
"notes": [
"The incarnation of chaos",
"The bot with the most contributors",
"The Anarchy project was started by Redox with a few simple rules: (1) Everyone can contribute to Anarchy. (2) Pull requests (code changes) are automatically accepted. (3) You can only change a limited number of lines of code each day.",
"Best features of Anarchy: Drawing an anime girl in the middle of the field; playing a sound every time it jumps; playing music every time it scores."
]
},
"ballerbot": {
"name": "ballerbot",
"makers": [
"gdfrostbite"
],
"language": "scratch"
},
"Beast": {
"name": "Beast from the East",
"makers": [
"Eastvillage"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/64911C3A-D60F-476F-AE0D-D8B78F4E0390",
"notes": [
"Was probably the first bot to use utility AI."
]
},
"BitBot": {
"name": "BitBot",
"makers": [
"WesKal"
],
"language": "python",
"notes": [
"Designed mainly as a 2v2 bot.",
"Based on GoslingUtils."
]
},
"ByteBot": {
"name": "ByteBot",
"makers": [
"WesKal"
],
"language": "rlgym"
},
"BotimusPrime": {
"name": "Botimus Prime",
"makers": [
"Darxeal"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/86503A63-A4CE-4FBE-B03C-FD7C76B8BFD6",
"notes": [
"Botimus made his tournament debut in RLBot 2018 with a 2nd place finish and a beautiful flick!",
"Shares a lot of code with the famous hive-mind bot Bumblebee."
]
},
"BotTaco": {
"name": "BotTaco",
"makers": [
"Bigtaco"
],
"language": "csharp"
},
"Bottleneck": {
"name": "Bottleneck",
"makers": [
"L0laapk3"
],
"language": "cpp",
"notes": [
"Development originally started in python, but all the code has since been ported to cpp.",
"Is a completely multithreaded hivemind, complete with a separate thread for real time ball prediction.",
"Has briefly shown up in one tournament in the first half of 2020, before retreating from further tournaments as this bot was severely unfinished.",
"Theres a rumor that this bot will never get finished."
]
},
"Bowtie": {
"name": "Bowtie",
"makers": [
"_DaCoolOne_"
],
"language": "python",
"notes": [
"Easily identifiable with his yellow and green Fennec, Team Dappur's newest addition, Bowtie, claims to be the snappiest dresser. Tuxedo would disagree.",
"Bowtie was initially the sub on Team Dappur, but had to step up after the team dropped Beetle over attitude issues."
]
},
"Bribblebot": {
"name": "Bribblebot",
"makers": [
"L0laapk3"
],
"language": "python",
"notes": [
"Officially* RLBots most feared ballchaser.",
"Doesn't ever defend, as defending is a sign of being insecure. Instead, goes for demo's like a real alpha male.",
"Some of the code such as kickoffs and recovery code is not present in the botpack and public repo, as this code is stolen code from Bribblebots cousin Bottleneck."
],
"statsUrl": "https://braacket.com/league/rlbot/player/080946D0-D11F-4631-B0F2-CA3410025825"
},
"BroccoliBot": {
"name": "BroccoliBot",
"makers": [
"CodeRed"
],
"language": "python",
"notes": [
"If you say 'Rocket League Bot' kinda fast it sounds like Broccoli Bot.",
"Strong on defense.",
"It was made with GoslingUtils."
],
"statsUrl": "https://braacket.com/league/rlbot/player/AB74B770-D1B7-40EE-B8A7-25BF650AD5EB"
},
"RedBot": {
"name": "RedBot",
"makers": [
"CodeRed"
],
"language": "csharp",
"notes": [
"Showcase for RedUtils, a botmaking library with great mechanics.",
"Super aggressive ball chaser with very little strategy."
],
"statsUrl": "https://braacket.com/league/rlbot/player/2D97AA46-3826-49AE-8944-57B780B72F86"
},
"Bumblebee": {
"name": "Bumblebee",
"makers": [
"Darxeal"
],
"language": "python",
"notes": [
"A hivemind version of Botimus Prime."
]
},
"Bumbler": {
"name": "Bumbler",
"makers": [
"Impossibum"
],
"language": "rlgym",
"notes": [
"A reinforcement learning bot made with RLGym and pytorch."
],
"statsUrl": "https://braacket.com/league/rlbot/player/CE01AD05-DD7C-4D9E-AAC3-2682D465BC70"
},
"BurgundyBot": {
"name": "BurgundyBot",
"makers": [
"CodeRed"
],
"language": "csharp",
"notes": [
"RedUtils with strategy added."
],
"statsUrl": "https://braacket.com/league/rlbot/player/882BEE4C-A82F-4EBD-B021-392653D3213A"
},
"Cheese": {
"name": "Cheese",
"makers": ["JoshyDev"],
"language": "python"
},
"CodenameArktis": {
"name": "Codename Arktis",
"makers": [
"B1ue_F1re"
],
"language": "python",
"notes": [
"A re-skin of Cryo using the Twinzer.",
"Derived from the Greek ἄρκτος, meaning \"bear , the north\". The meaning of “north” derives from Ἄρκτος (Árktos, “Ursa Major”), because the constellation is in the northern part of the sky."
]
},
"CodenameBora": {
"name": "Codename Bora",
"makers": [
"B1ue_F1re"
],
"language": "python",
"notes": [
"A re-skin of Cryo using the Octane.",
"The bora is a cold, northern to north-eastern katabatic wind in the Adriatic Sea"
]
},
"CodenameCryo": {
"name": "Codename Cryo",
"makers": [
"B1ue_F1re"
],
"language": "python",
"notes": [
"Qualfied for UBL at just 3 weeks old.",
"Cryo is derived from the Greek word κρύος (krúos), meaning \"icy cold\".",
"Credits to GooseFairy for GoslingUtils, and jeroen11dijk for aerials."
]
},
"CTAUtils": {
"name": "CTAUtils",
"makers": [
"CTAG07"
],
"language": "scratch"
},
"Diablo": {
"name": "Diablo",
"makers": [
"Impossibum"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/F1CA93A6-34F9-43AE-B4F1-BB4B6FAE3D13"
},
"DisasterBot": {
"name": "DisasterBot",
"makers": [
"Hytak",
"Marvin",
"Impossibum"
],
"language": "python",
"notes": [
"Community bot, looking for contributors.",
"Pathfinding uses boostpads as waypoints."
]
},
"DishBot": {
"name": "DishBot",
"makers": [
"FootlessQuill54"
],
"language": "scratch",
"notes": [
"Its attack strategy is the bot dish, i.e. rolling the ball up the goal post so it goes in on the bounce."
]
},
"DownToEarth": {
"name": "DownToEarth",
"makers": [
"VirxEC"
],
"language": "python",
"notes": [
"Never jumps."
]
},
"Element": {
"name": "Element",
"makers": [
"Rangler"
],
"language": "rlgym",
"notes": [
"Made its debut in East's League Play and rose extremely quickly.",
"A neural network trained with reinforcement learning to play 1v1.",
"Element was trained with RLGym and has played more than 200k hours (22 years) of Rocket League."
],
"statsUrl": "https://braacket.com/league/rlbot/player/2838BA10-1073-46AD-A7FD-C8055539883B"
},
"Engine": {
"name": "Engine",
"makers": [
"CTAG07"
],
"language": "rlgym",
"notes": [
"Uses machine learning."
],
"statsUrl": "https://braacket.com/league/rlbot/player/BDD7FD44-4715-4247-AB8E-2C3349206298"
},
"FastFreeze": {
"name": "FastFreeze",
"makers": [
"Parzival"
],
"language": "python",
"notes": []
},
"FillamentBot": {
"name": "FillamentBot",
"makers": [ "LuminousLamp" ],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/5856D10B-4B2B-4D84-8772-6016575231ED"
},
"Gibbus": {
"name": "Gibbus",
"makers": [
"Enderjed"
],
"language": "scratch",
"statsUrl": "https://braacket.com/league/rlbot/player/E9A0FAEC-CD9E-4A6A-B16B-C00ADB42FFE1"
},
"GratinAI": {
"name": "GratinAI",
"makers": [
"SpudTheFantastic"
],
"language": "python",
"notes": [
"Built on VirxERLU library."
]
},
"Gyser": {
"name": "Gyser",
"makers": [
"QuadBlueShadow"
],
"language": "scratch"
},
"Heart of Gold": {
"name": "Heart of Gold",
"makers": [
"excalo"
]
},
"HellowBot": {
"name": "HellowBot",
"makers": [
"hellow123"
],
"language": "scratch"
},
"JoeyBot": {
"name": "JoeyBot",
"makers": [
"Joey676"
],
"language": "csharp",
"statsUrl": "https://braacket.com/league/rlbot/player/6E7D14E3-11DC-481F-B57B-456EB6B0061A",
"notes": [
"Once won a match against Guzabot while being AFK (crashed)."
]
},
"Kamael": {
"name": "Kamael",
"makers": [
"Impossibum"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/8D13C0E3-8E42-432D-9729-A7424644D129?ranking=1A3DCD4A-CC77-4A53-AE19-B2E2F52C790F",
"notes": [
"Winner of East's League Play season 2.",
"1v1 champion since November 2020.",
"Famous on Rocket Sledge's youtube with over 660K views.",
"Popularized the double jump mechanic."
]
},
"Koramund": {
"name": "Koramund",
"makers": [
"michael"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/A82DFC16-9C81-4980-8E08-4FD7C5CBE517",
"notes": [
"A dribble bot with no team code. (citation needed)"
]
},
"Lanfear": {
"name": "Lanfear",
"makers": [
"jeroen11dijk"
],
"language": "python"
},
"Levi": {
"name": "Levi",
"makers": [
"Hytak"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/961B9D17-9F37-490E-A71E-CC2AFD256334",
"notes": [
"One of the first machine learning bots.",
"Learned from RashBot made by Marvin.",
"Uses hardcoded kick-offs made by Jeroen.",
"Only sees the ball."
]
},
"Malware": {
"name": "Malware",
"makers": [
"ThatGuyDed"
],
"language": "python"
},
"Manticore": {
"name": "Manticore",
"makers": [
"Eastvillage"
],
"language": "python",
"notes": [
"A continuation of Beast from the East with focus on team play."
]
},
"Molten": {
"name": "Molten",
"makers": [
"CodeRed"
],
"language": "python",
"notes": []
},
"Necto": {
"name": "Necto",
"makers": [
"Rolv", "Soren"
],
"language": "rlgym",
"notes": [
"Has trained for over 30 years of in-game time.",
"Famous on Rocket Sledge's youtube, with over 125K views.",
"Necto is the official RLGym community bot, trained using PPO with workers run by people all around the world.",
"Necto uses a network type called attention, commonly used for text understanding, to support any number of players."
],
"statsUrl": "https://braacket.com/league/rlbot/player/43FD3E3F-0A39-4E16-AF03-F6110247D34B"
},
"OmNom": {
"name": "Om Nom",
"makers": [
"FootlessQuill54"
],
"language": "scratch",
"notes": []
},
"Penguin": {
"name": "Penguin",
"makers": [
"_DaCoolOne_"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/B0D19534-3302-4588-B076-E1132BA073A5",
"notes": [
"Penguin is the team captain of Team Dappur.",
"Penguin is an OG bot, grabbing his first title in his rookie year, but has not faired so well in 1v1 tournaments. He forged team Dappur with the hopes of grabbing another title.",
"Some people have alleged that the inspiration for Team Dappur's name was a typo. These accusations are completely false, and the accusers shall be hanged at dawn."
]
},
"Phoenix": {
"name": "Phoenix",
"makers": [
"Eastvillage"
],
"language": "kotlin"
},
"Phoenix CS": {
"name": "Phoenix CS",
"makers": [
"Eastvillage"
],
"language": "csharp",
"notes": [
"Phoenix CS is a rewrite in C# using RedUtils. The original Phoenix was in Kotlin."
],
"statsUrl": "https://braacket.com/league/rlbot/player/BDCEBCD0-52D4-4513-8E19-63D3CE50F1F0"
},
"PotatOS": {
"name": "PotatOS But Better",
"makers": [
"SpudTheFantastic",
"GooseFairy"
],
"language": "python",
"notes": [
"The original PotatOS was a spike rush bot."
]
},
"Propeller": {
"name": "Propeller",
"makers": [
"CTAG07"
],
"language": "rlgym",
"notes": [
"Uses machine learning."
]
},
"Rabbot": {
"name": "Rabbot",
"makers": [
"SavageSnowgoose"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/5BB2201E-63DC-497D-BD2F-75DB05C27C59"
},
"Rapha": {
"name": "Rapha",
"makers": [
"Impossibum"
],
"language": "python"
},
"Raptor": {
"name": "Raptor",
"makers": [
"Impossibum"
],
"language": "rlgym",
"notes": [ "Reinforcement learning agent trained in 2's." ],
"statsUrl": "https://braacket.com/league/rlbot/player/7608E426-F888-4DF6-B1BB-18F06CAFB529"
},
"ReliefBot": {
"name": "ReliefBot",
"makers": [
"tarehart",
"noodlebeard",
"NeverCast"
],
"language": "kotlin",
"statsUrl": "https://braacket.com/league/rlbot/player/7334CCB8-5DD8-451D-95F2-C378E4F6D072",
"notes": [
"Raised $1,190 for disaster relief in its first tournament.",
"Knows how to play spike rush, dropshot, hoops, and zero gravity."
]
},
"RocketNoodles": {
"name": "RocketNoodles",
"makers": [
"Serpentine"
],
"language": "python",
"notes": [
"What is a RocketNoodle?",
"Hi, you are currently looking at the first version of RocketNoodles. This bot is a Python Hivemind that can play in any formation (1vs1, 2vs2, 3vs3). We use a hierarchical strategy model that makes decisions for our bot on different scales. This allows us to subdivide the many tactical decisions that the bot has to make. At the moment RocketNoodles can perform some simple rotations. We aim to release a new version at the start of 2021.",
"Who are its developers?",
"RocketNoodles has been developed by a team that is part of AI e-sports association Serpentine. Our team currently consists of 12 students from all over the Netherlands, from different disciplines and different programming skill levels. Most of our members have played Rocket League for at least some time and there are 4 who actively play Rocket League. Their ranks range from Gold 1 to Grand Champion 1. One thing we have in common is that we are all interested in the programming challenge. Our goal is to beat human pros within a 3 year timespan. The current version of RocketNoodles is just a proof of concept but we are sure that we will see major improvements to its performance in the coming months!",
"A little bit about Serpentine!",
"Serpentine is a student association located at the Technical University of Eindhoven, based in the Netherlands. As an association we participate in various AI competitions. Our latest competition was about automated level generation for Angry Birds, which we managed to win!"
]
},
"SDC": {
"name": "Self-Driving Car",
"makers": [
"whatisaphone"
],
"language": "rust",
"statsUrl": "https://braacket.com/league/rlbot/player/8308DD65-8494-4A04-8A05-FA0718BB7126",
"notes": [
"Held the 1v1 Champion title for two years.",
"Was created in a test driven environment, which meant every change was an improvement."
]
},
"Skybot": {
"name": "Skybot",
"makers": [
"Skyborg"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/54FB8C16-6FA9-4C4A-AAD5-3DB8A6AE169B",
"notes": [
"It's a dribble bot despite the name. Famous for having been fixed by a framework update, instead of by its creator."
]
},
"SpeedyBat": {
"name": "SpeedyBat",
"makers": [
"CTAG07"
],
"language": "scratch",
"notes": [
"Formerly known as CTAUtils."
]
},
"St. Peter": {
"name": "St. Peter",
"makers": [
"Impossibum"
],
"language": "python",
"notes": [
"A goalkeeper-only version of Kamael",
"Guards the gates of heaven when he's not goal keeping"
]
},
"Teammate": {
"name": "Teammate",
"makers": [
"kntndr"
],
"language": "python",
"notes": [
"Made its debut in League Play."
]
},
"TensorBot": {
"name": "TensorBot",
"makers": [
"Soren"
],
"language": "python",
"notes": [
"100% Machine Learning bot trained on Diablo recordings and built using TensorFlow"
]
},
"Tuxedo": {
"name": "Tuxedo",
"makers": [
"_DaCoolOne_"
],
"language": "python",
"statsUrl": "https://braacket.com/league/rlbot/player/48270C6C-ECFD-418C-A861-01404A6F87EF",
"notes": [
"A tested veteran, Tuxedo initially made a name for himself as a ones player, but had a hard time getting picked up by a team. After leaving the scene to focus on his mechanics, Tuxedo joined team Dappur to give himself a shot at a title.",
"Due to his simple yet sleek Dominus, Tuxedo has been nicknamed Mr. Steal yo Shot by the team."
]
},
"VirxEB": {
"name": "VirxEB",
"makers": [
"VirxEC"
],
"language": "python",
"notes": [
"Able to use any car shape because the bot understands hitboxes."
]
},
"Wildfire": {
"name": "Wildfire",
"makers": [
"r0bbi3"
],
"language": "java",
"statsUrl": "https://braacket.com/league/rlbot/player/50EDC413-27BB-4728-BCB5-F1D14FF13846?ranking=1A3DCD4A-CC77-4A53-AE19-B2E2F52C790F",
"notes": [
"A very fast and aggressive bot"
]
},
"YangBot": {
"name": "YangBot",
"makers": [
"GodGamer029"
],
"language": "java",
"notes": [
"Good shooting, terrible positioning",
"Its defining feature is its dodge-optimizer code, which chooses the best parameters on the fly to achieve the best possible result",
"Uses RLU almost everywhere in its code (Most of it was ported to java though)",
"Can aerial, flip-into and chip the ball"
]
},
"ibot": {
"name": "ibot",
"makers": [
"r0bbi3"
],
"language": "java"
}
},
"leagues": {
"Ultimate Battle League": [
{
"name": "Trinity",
"bots": [
"Kamael",
"Kamael",
"Kamael"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/6399B7EB-2C5C-46BD-85B3-6194A27F666F"
},
{
"name": "The Tr-ice Force",
"bots": [
"CodenameArktis",
"CodenameBora",
"CodenameCryo"
],
"notes": [
"A team of Codename Cryo's, made to look more interesting for viewers and casters.",
"Uses loadout generation to have a random color each game, but will all still have matching colors."
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/29AC5B45-29EC-4248-A07E-EB185699660F"
},
{
"name": "Team Dappur",
"bots": [
"Bowtie",
"Penguin",
"Tuxedo"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/9673577F-BB1C-4E39-AAB7-49A0707A9DB8"
},
{
"name": "Python++",
"bots": [
"BotimusPrime",
"Lanfear",
"CodenameCryo"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/0A061692-6866-475E-92B9-07D4FFB68A50"
},
{
"name": "Beehive",
"bots": [
"Bumblebee",
"Bumblebee",
"Bumblebee"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/D6145B07-89D9-4CB4-A0DC-69C4EA88E670"
},
{
"name": "ibot",
"bots": [
"ibot",
"ibot",
"ibot"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/C42B4E6B-D19B-4BC0-83CC-070E5863467C"
},
{
"name": "Team LULW",
"bots": [
"YangBot",
"CodenameCryo",
"Koramund"
],
"notes": [
"Most unexpected qualification",
"Had a ton of luck in the 5-4 win over the Forsaken. Beat The Tripple Threat Champs 2-1",
"Unique playstyle with Koramund leading offense, Cryo and Yang in support",
"Name originates from the submission folder being named \"Team Unnamed LULW\", then becoming just \"Team LULW\""
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/D39A5573-E322-4D72-81BE-46E6CF0D5F9D"
},
{
"name": "Dukes of Disaster",
"bots": [
"DisasterBot",
"Diablo",
"Kamael"
],
"statsUrl": "https://braacket.com/league/rlbot3v3/player/9E079DA9-CB4C-42D8-9EA6-C8DA65C28A43"
}
],
"2v2 RLBot Championship 2020": [
{
"name": "Fangs of Silver",
"bots": [
"Manticore",
"Manticore"
]
},
{
"name": "ReliefBot",
"bots": [
"ReliefBot",
"ReliefBot"
]
},
{
"name": "VirxEB",
"bots": [
"VirxEB",
"VirxEB"
]
},
{
"name": "Anarchists",
"bots": [
"Anarchy",
"Anarchy"
]
},
{
"name": "Wrath",
"bots": [
"Kamael",
"Kamael"
]
},
{
"name": "RocketNoodles",
"bots": [
"RocketNoodles",
"RocketNoodles"
]
},
{
"name": "EaT uR vEgEtAbLeS",
"bots": [
"BroccoliBot",
"BroccoliBot"
]
},
{
"name": "Lanficore",
"bots": [
"Lanfear",
"Manticore"
]
},
{
"name": "Heart of Gold",
"bots": [
"Heart of Gold",
"Heart of Gold"
]
},
{
"name": "Team Imposter",
"bots": [
"Levi",
"TensorBot"
]
},
{
"name": "Double Trouble",
"bots": [
"Diablo",
"St. Peter"
]
},
{
"name": "Team Bribble",
"bots": [
"Bribblebot",
"Bribblebot"
]
},
{
"name": "Prime Time",
"bots": [
"Wildfire",
"BotimusPrime"
]
},
{
"name": "Tw-ice Force",
"bots": [
"CodenameArktis",
"CodenameBora"
]
},
{
"name": "Molten Mayhem",
"bots": [
"Molten",
"Molten"
]
},
{
"name": "Beehive",
"bots": [
"Bumblebee",
"Bumblebee"
]
},
{
"name": "Team Freeze",
"bots": [
"FastFreeze",
"FastFreeze"
]
},
{
"name": "Scratch That!",
"bots": [
"OmNom",
"Gibbus"
]
},
{
"name": "Team W",
"bots": [
"ReliefBot",
"SDC"
]
}
]
},
"botSets": {
"RLBot Championship 2022": [
"Necto",
"Element",
"BotimusPrime",
"RedBot",
"SDC",
"Kamael",
"ReliefBot",
"BroccoliBot"
]
},
"makers": {
"B1ue_F1re": {
"name": "B1ue_F1re",
"notes": "",
"discordId": "B1ue_F1re#9542",
"countryCode": "RU",
"joinDate": "2019-03-12"
},
"Bigtaco": {
"name": "Bigtaco",
"joinDate": "2021-03-06",
"discordId": "bigtaco#4277"
},
"CTAG07": {
"name": "CTAG07",
"joinDate": "2021-04-13",
"notes": "Co-hosted a 1v1 tournament.",
"countryCode": "US"
},
"Darxeal": {
"name": "Darxeal",
"notes": "Led the team which won the Rocket League Air Show with their submission 'Awakening'. Added the appearance editor and many other features to RLBotGUI.",
"discordId": "Darxeal#1784",
"countryCode": "CZ",
"joinDate": "2018-03-18"
},
"DomNomNom": {
"name": "DomNomNom",
"countryCode": "NZ",
"joinDate": "2017-11-12",
"discordId": "DomNomNom#1537",
"notes": "Created RLBot Training system to help people integration test their bot behaviors."
},
"Eastvillage": {
"name": "Eastvillage",
"notes": "Runs East's League Play, a multi-week bot competition with TrueSkill rankings. Maintainer of CleoPetra, the software used to run RLBot's tournaments. Made an RLBot Java tutorial series on YouTube.",
"discordId": "Eastvillage#2628",
"countryCode": "DK",
"joinDate": "2018-02-07"
},
"CodeRed": {