forked from vg-mjg/mjg-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tourneys.html
1142 lines (1092 loc) · 82.7 KB
/
tourneys.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Tourneys</title>
<!-- Bootstrap CSS -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="/css/light.css">
<link rel="stylesheet" href="/css/general.css">
</head>
<body>
<div id="library-header" class="container-fluid border-bottom text-center mt-2">
<h1 class="pt-1">Tourneys</h1>
<small class="font-italic">"I wanna be the very best, that no one ever was."</small>
<p><a href="/index.html">Back to Home</a></p>
<div class="row text-left">
<div class="custom-control custom-switch align-bottom">
<input type="checkbox" class="custom-control-input" id="ThemeSwitch">
<label class="custom-control-label" for="ThemeSwitch">おはよう</label>
</div>
</div>
</div>
<!--
###########################################################################
Tourneys Page not that long
###########################################################################
TABLE OF CONTENTS (ctrl + f to jump to that section)
/v/idya Mahjong Tourneys
VMT 2021
VMT 2020
VMT 2019
/mjg/ League
2chan collabs
Solo Tourneys
Team Tourneys
Doubles Tourney
Others
-->
<div id="library-body" class="container-fluid mt-2 mb-5">
<div class="row">
<div id="side-menu" class="col-3 h-25 shadow-sm sticky-top">
<div class="nav flex-column" id="tourneys" role="tablist" aria-orientation="vertical">
<a class="nav-link" id="tourneys-vidya-tab" data-toggle="pill" href="#tourneys-vidya" role="tab" aria-controls="tourneys-vidya" aria-selected="true">/v/idya Mahjong Tourneys</a>
<a class="nav-link" id="tourneys-mjg-tab" data-toggle="pill" href="#tourneys-mjg" role="tab" aria-controls="tourneys-mjg" aria-selected="false">/mjg/ League</a>
<a class="nav-link" id="tourneys-2chan-tab" data-toggle="pill" href="#tourneys-2chan" role="tab" aria-controls="tourneys-2chan" aria-selected="false">2chan collabs</a>
<a class="nav-link" id="tourneys-solo-tab" data-toggle="pill" href="#tourneys-solo" role="tab" aria-controls="tourneys-solo" aria-selected="false">Solo Tourneys</a>
<a class="nav-link" id="tourneys-team-tab" data-toggle="pill" href="#tourneys-team" role="tab" aria-controls="tourneys-team" aria-selected="false">Team Tourneys</a>
<a class="nav-link" id="tourneys-doubles-tab" data-toggle="pill" href="#tourneys-doubles" role="tab" aria-controls="tourneys-doubles" aria-selected="false">Doubles Tourney</a>
<a class="nav-link" id="tourneys-others-tab" data-toggle="pill" href="#tourneys-others" role="tab" aria-controls="tourneys-others" aria-selected="false">Others</a>
</div>
</div>
<div class="col-9">
<div class="tab-content bg-transparent" id="tourneysContent">
<div class="tab-pane fade show" id="tourneys-vidya" role="tabpanel" aria-labelledby="tourneys-vidya-tab">
<h3>/v/idya Mahjong Tourneys</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>Tourney</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>
<tbody class="tbody-light text-white">
<!-- /v/idya Mahjong Tourneys -->
<!-- VMT 2021 -->
<tr id="2021">
<td name="subtitle" colspan="3" class="text-center border-bottom bg-secondary text-white font-weight-bold">
<h4>2021</h4>
</td>
</tr>
<tr>
<th>
<h4>14th /V/idya Riichi Mahjong Tournament </h4>
<p>WE ARE LEGION EDITION</p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><strong>Qualifiers</strong><br>
<small>‣ </small>20th March, 2021<br>
<strong>Semifinals</strong><br>
<small>‣ </small>26th-27th March, 2021 <br>
<strong>Grand Finals</strong> <br>
<small>‣ </small>3rd April, 2021</p>
<p><a href="https://www.youtube.com/watch?v=H6ldbTxIBYI&list=PLFTCycYVFIwys6szGoS4xE5vcECcqHb1U"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://docs.google.com/document/d/1cVCPRWdcfTS5GkKNiPkX87XzP9cIYXTGzGOgiczJxY8"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>HustlerOne</p>
</th>
</tr>
<tr>
<th>
<h4>13th /V/idya Riichi Mahjong Tournament </h4>
<p>PEASANT ULTRA INSTINCT EDITION</p>
<!--<p><img src="banners/nofunhag.jpg" alt=""/></p>-->
</th>
<td>
<p><strong>Held On</strong></p>
<p><strong>Qualifiers</strong><br>
<small>‣ </small>15th-18th January, 2021<br>
<strong>Semifinals</strong><br>
<small>‣ </small>16th January, 2021 <br>
<strong>Grand Finals</strong> <br>
<small>‣ </small>17th January, 2021</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwzz8y62uRiVdi2lnmWzEjB3"><strong>WATCH THE FULL ACTION HERE<br>
</strong></a><a href="https://docs.google.com/document/d/1XJC4qFlPhFDoFg6PamxOu09X1qDrTWmZflOy0xgCU0c"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Waifu</p>
</th>
</tr>
<!-- VMT 2020 -->
<tr id="2020">
<td name="subtitle" colspan="3" class="text-center border-bottom bg-secondary text-white font-weight-bold">
<h4>2020</h4>
</td>
</tr>
<tr>
<th>
<h4>12th /V/idya Riichi Mahjong Tournament </h4>
<p>Perfectly normal edition</p>
<!--<p><img src="banners/nofunhag.jpg" alt=""/></p>-->
</th>
<td>
<p><strong>Held On</strong></p>
<p><strong>Qualifiers</strong><br>
<small>‣ </small>16th-18th October, 2020<br>
<strong>Quarterfinals (round of 24)<br>
</strong><small>‣ </small>, 2020<br>
<strong>Semifinals</strong><br>
<small>‣ </small>23rd October, 2020 <br>
<strong>Grand Finals</strong> <br>
<small>‣ </small>24th October, 2020</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwyld9HsBl1n1iQ-aWWuhrOA"><strong>WATCH THE FULL ACTION HERE<br>
</strong></a><a href="https://docs.google.com/document/d/1eZeJc0OM6XYR8MZ3Kxa4PbTuSbXCctR_HmG5g2RJOZg"><strong>Full Details PDF</strong></a></p>
<p><a href="https://docs.google.com/spreadsheets/d/1xvVHCisuFdlxOzRcwMFVxqoBorkfuV4YXwENxv8B9XA">Qualifier/Finals Leaderboards (excel file)</a></p><br>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>生意気な猫</p>
</th>
</tr>
<tr>
<th>
<h4>11th /V/idya Riichi Mahjong Tournament </h4>
<p>NO FUN ALLOWED edition</p>
<p><img src="banners/nofunhag.jpg" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><strong>Qualifiers</strong><br>
<small>‣ </small>29th July-2nd of August, 2020<br>
<strong>Quarterfinals (round of 24)<br>
</strong><small>‣ </small>6th of August, 2020<br>
<strong>Semifinals</strong><br>
<small>‣ </small>15th of August, 2020 <br>
<strong>Grand Finals</strong> <br>
<small>‣ </small>16th of August, 2020</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwwtX8pPoj-Ny4D1rrxrCLVd"><strong>WATCH THE FULL ACTION HERE<br>
</strong></a><a href="https://docs.google.com/document/d/1T8r-ZK7eW54Kio9kltZ_ebwKMizTNe7VPYu0ELP0Zks/edit"><strong>Full Details PDF</strong></a></p>
<p><a href="https://docs.google.com/spreadsheets/d/13C5gq2Duf82M1UUX76cUhAjlyL_ogzNkgQjqMbF6TRs/edit#gid=0">Qualifier/Finals Leaderboards (excel file)</a><br>
<a href="https://docs.google.com/spreadsheets/d/1k_NHh37qPwZiuVylrCECu71hIFMY2xeVYSBQ6njz88E/edit#gid=0">RO24/RO12/FINALS (excel file)</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>guano</p>
</th>
</tr>
<tr>
<th>
<h4>Great 10th /V/idya Riichi Mahjong Tournament </h4>
<p>“Oh Shit it’s Been One Year Already” edition</p>
<p><img src="banners/10tour.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><strong>Qualifiers</strong><br>
<small>‣ </small>10th-19th of April, 2020<br>
<strong>Quarterfinals (round of 16)<br>
</strong><small>‣ </small>24th of April (Friday): 16:00, 19:00 UTC<br>
<small>‣ </small>25th of April (Saturday): 16:00, 19:00 UTC<br>
<strong>Semifinals</strong><br>
<small>‣ </small>Friday, 1st of May 17:00, 20:00 UTC <br>
<strong>Grand Finals</strong> <br>
<small>‣ </small>Saturday, 2nd of May 19:00 UTC</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwz0vyU2C1kMk2CCaMBadZKq"><strong>WATCH THE FULL ACTION HERE<br>
</strong></a><a href="https://files.riichi.moe/mjg/oc/tourneys/great%2010th%20vidya%20riichi%20mahjong%20tournament/details.pdf"><strong>Full Details PDF</strong></a></p>
<p><a href="https://docs.google.com/spreadsheets/d/1xh0_gt6Xoq4JPcOfBuAFGdbFZOM7MevxP4dk98J3UZg/edit#gid=1702123968">Qualifier/Finals Leaderboards (excel file)</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>EIGAMMA</p>
</th>
</tr>
<tr>
<th>
<h4>9th /v/idya Secret Mahjong Tourney</h4>
<p><img src="banners/secret.png" class="img-fluid" alt="" /></p>
<p>The horrors of this day will forever live on in our hearts</p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ April 1, 2020</small>
<p><strong><a href="https://youtu.be/yg224FKBSNs">WATCH THE FULL ACTION HERE<br>
</a></strong><strong><a href="https://files.riichi.moe/mjg/oc/tourneys/9th%20vidya%20secret%20mahjong%20tourney/results.xlsx">Results Spreadsheet</a></strong></p>
<p><a href="https://files.riichi.moe/mjg/oc/tourneys/9th%20vidya%20secret%20mahjong%20tourney/intro.png"><strong>Intro</strong></a><br>
<strong><a href="https://files.riichi.moe/mjg/oc/tourneys/9th%20vidya%20secret%20mahjong%20tourney/round%20one.png">R1,</a></strong> <strong><a href="https://files.riichi.moe/mjg/oc/tourneys/9th%20vidya%20secret%20mahjong%20tourney/round%20two.png">R2, </a></strong>
<strong><a href="https://files.riichi.moe/mjg/oc/tourneys/9th%20vidya%20secret%20mahjong%20tourney/final%20round.png">R3 <br>
Final Round </a></strong><br>
</p>
<p><a href="https://mega.nz/#!IVZS2AiK!UTkIM_RfvlfgTXuHQKmompdlNMFdMrWnVpn1SFjIGNU"><strong>Cursed Majsoul+ Setup <small>(dead link)</small><br>
</strong></a><small>(Need <a href="guides/Majsoul-Plus-Guide.html">Majsoul+</a>. in options, set the region to America. Launch the game. After launching the client, go into %appdata% and replace "static" folder in MJS+ directory )</small><br>
</p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Nuxoz</p>
</th>
</tr>
<tr>
<th>
<h4>8th /v/idya Mahjong Tourney</h4>
<p>Second Gear Edition</p>
<p><img src="sections/tourney banner/8th_vdya_maajan.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ 7th of February, 0:01 UTC - 9th of February 2020, 23:59 UTC (Friday-Sunday)<br>
‣ February 16th <strong>15:00 UTC</strong> on Sunday</small>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwz4oZweQZPPb57ofDrmqaII&disable_polymer=1"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/8th%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
<p><a href="https://docs.google.com/spreadsheets/d/1uorRm25RtWUtYDJL0xI7Rnu8rksB9Pa5a1BzlRwxLoI/edit#gid=0">Qualifier/Finals Leaderboards (excel file)</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Doraneko</p>
</th>
</tr>
<!-- VMT 2019 -->
<tr id="2019">
<td name="subtitle" colspan="3" class="text-center border-bottom bg-secondary text-white font-weight-bold">
<h4>2019</h4>
</td>
</tr>
<tr>
<th>
<h4>7th /v/idya Mahjong Tourney</h4>
<p>咲さんかわいい Edition</p>
<p><img src="sections/tourney banner/7th_vdya_maajan.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ Friday 13th 0:01 UTC - Sunday 15th 23:59 UTC December<br>
‣ 12:00 UTC 21st of December 2019</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwy0LDliGoawVmzUXFEapUOO"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/7th%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
<p><a href="https://files.riichi.moe/mjg/oc/tourneys/7th%20vidya%20mahjong%20tourney/preliminaries%20score%20table.pdf">Preliminaries score table</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>UNIVERSE</p>
</th>
</tr>
<tr>
<th>
<h4>6th /v/idya Mysterious Riichi Mahjong Tournament</h4>
<p>Secretly Omnious Riddle Edition</p>
<p><img src="sections/tourney banner/6th_vdya_maajan.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ Saturday, 26th of October 2019</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwzB3TtYCrw5bANpRxL4nLvK"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/6th%20vidya%20mysterious%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>ZZZ</p>
</th>
</tr>
<tr>
<th>
<h4>5th /v/idya Mahjong Tourney</h4>
<p>SOA EDITION</p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ 28th of September (Saturday), 16:00 UTC<br>
‣ 29th of September 2019 (Sunday), 15:00 UTC</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwx_Wi4f8ybb0_mWzFUGUY_m"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/5th%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Sjaalman</p>
</th>
</tr>
<tr>
<th>
<h4>4th /v/idya Mahjong Tourney</h4>
<p>Pinfu is the foundation of mahjong Edition</p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ 23rd of August 2019, at 8 PM GMT<br>
‣ 24th of August at 8 PM GMT</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwynWwR4WWs9MoTxk8r3wGRS"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/4th%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>CrazyWafel</p>
</th>
</tr>
<tr>
<th>
<h4>3rd /v/idya Mahjong Tourney</h4>
<p>Magical Sands Edition</p>
</th>
<td>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwxE2FZSbbVttPgou7XEQbeY"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Nuxoz</p>
</th>
</tr>
<tr>
<th>
<h4>2nd /v/idya Mahjong Tourney</h4>
<p>Intermediate Player's Hole Edition</p>
</th>
<td>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwyCe43pQS7WH7DgauwU4s57"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/2nd%20vidya%20mahjong%20tourney/details.pdf"><strong>Full Details PDF</strong></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Skor</p>
</th>
</tr>
<tr>
<th>
<h4>1st /v/idya Mahjong Tourney</h4>
<p>Yakuman /v/irgins edition</p>
</th>
<td><strong><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwxItuyfBmy6C7E9GkhnsaPn&disable_polymer=1">WATCH THE FULL ACTION HERE</a></strong></td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Sjaalman</p>
</th>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="tourneys-mjg" role="tabpanel" aria-labelledby="tourneys-mjg-tab">
<h3>/mjg/ League</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>League</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>
<tbody class="tbody-light text-white">
<!-- /mjg/ League -->
<tr>
<th>
<h4>3rd /mjg/ League</h4>
<p><img src="banners/hatreg.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ April 30 - June 5, 2022</small>
<p> <a href="https://docs.google.com/document/d/1ZAeb7smXpz8xiEcW3BeJ4V9peCtVWg66WWyhCNu9zRU/edit?usp=sharing"><b>Rules</b></a><br>
<a href="https://docs.google.com/spreadsheets/d/1mWDNwtlywy3QhEjqqKwYgsGszp9HMrLVr-lJB-J5110/edit?usp=sharing"><b>League Spreadsheet</b></a>
<br>
<a href="https://riichi.moe/contests/62673a77c5a066c2b8592a23"><b>League Standing Site</b></a></p>
<p>
<a href="https://drive.google.com/drive/folders/1ktMbiHHMCSQQG3n7MoSPs7H9AeY_yzG_?usp=sharing">OC Folder</a><br>
<a href="https://www.youtube.com/playlist?list=PLG0rI7wy5Ub9ZyiaA4vhdUBEciy146-Pl">Youtube OC Playlist</a><br>
<a href="https://www.youtube.com/playlist?list=PLG0rI7wy5Ub8dy5Dk_pBwHYFBmcUoBrKL">VODS Playlist</a><br>
<a href="https://docs.google.com/spreadsheets/d/1M1L-WDo62l8PA5YjVNxBOH5t3g34yG7kU6TtH_eOtks">Fantasy League with all the good stats</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Tippers<br>
<small>Kress, socculta, UNIVERSE, dorksport, S496, Wapelo, Chihiro</small></p>
</th>
</tr>
<tr>
<th>
<h4>2.5 /mjg/ Fall League</h4>
<p><img src="banners/hatreg.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ October 8 - October 31, 2021</small>
<p> <a href="https://docs.google.com/document/d/1rBb0-lABK89ukN-tYtOzTinP0dOPYZ6yqGjvgXhYMg0/edit"><b>Rules</b></a><br>
<a href="https://docs.google.com/spreadsheets/d/1ddUTBMaw3-xZtg1pTYwwanvz6cokRiKLklq2UuTjMkI/edit#gid=0"><b>League Spreadsheet</b></a>
<br>
<a href="https://riichi.moe/contests/616059ee2669277be7a33b59"><b>League Standing Site</b></a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Paid Actors<br>
<small>(さとりん, michaelao, No1HarunaFan, Obskiur, Dokku)</small></p>
</th>
</tr>
<tr>
<th>
<h4>2nd /mjg/ League</h4>
<p><img src="banners/hatreg.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ May 1 - June 6, 2021</small>
<p> <a href="https://docs.google.com/document/d/16iTbXk1QBRMPSz9D9UCRjNJ0bcUuFSuu9UD23VkMwwE/edit"><b>Rules</b></a><br>
<a href="https://docs.google.com/spreadsheets/d/19qi3-jjEpCYstdg08NFi2bEDnE5z0oBZYzKUyuW2d5w/edit?usp=sharing"><b>League Spreadsheet</b></a>
<br>
<a href="https://riichi.moe/contests/60871d17b5d300559b24998d"><b>League Standing Site</b></a></p>
<p>
<a href="https://files.riichi.moe/mjg/oc/tourneys/mjg%20league%202/">OC Folder</a><br>
<a href="https://www.youtube.com/playlist?list=PLG0rI7wy5Ub8JDQssNulrFs3ihhVfSEKi">Youtube OC Playlist</a><a href="https://files.riichi.moe/mjg/oc/tourneys/mjg%20league%202/videos/"><small> (backup)</small></a><br>
<a href="/others/mjgl-2-ocs.html" title="">/mjg/ OC Gallery</a><br>
<a href="https://youtube.com/playlist?list=PLG0rI7wy5Ub_JaE9SdU26YcawqfQSDH08">VODS Playlist</a><br>
<a href="https://docs.google.com/spreadsheets/d/1_V7RiliN69FZNVeAa0CiWXPLEjojigorlm8VhOJxptA/edit?usp=sharing">Fantasy League with all the good stats</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>CoolDogz<br>
<small>(Kingdomfreak, XSA, mottwww, ワハハ, UncleMoton, 6k5e, SirL)</small></p>
</th>
</tr>
<tr>
<th>
<h4>1st /mjg/ League</h4>
<p><img src="banners/hatreg.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small>‣ May 26 - June 28, 2020</small>
<p><a href="https://docs.google.com/spreadsheets/d/1F8aIK0EnliSrV3ME_DNtTzfHi488THMx-m5vhO2lPSk/edit#gid=118530533"><strong>League Spreadsheet</strong></a><br>
<a href="https://riichi.moe/contests/5ee8b1d9fdff80ad38c2834d"><strong>League Standing Site</strong></a></p>
<p><a href="https://www.youtube.com/playlist?list=PLG0rI7wy5Ub-4DoNaa9cw8FgJvkA-QwKV&feature=share">League Intro and OC videos</a><a href="https://files.riichi.moe/mjg/oc/tourneys/mjg%20league%201/"><small> (backup)</small></a><br>
<a href="https://docs.google.com/spreadsheets/d/1JBWQcUfNnBgv1ZCv_e-2MU-QSb1JQBeIhrAJ5z2l2Vk/edit#gid=1957981765">Individual Ranking</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Fate/Stay Noten<br>
<small>(ZZZ, astolfodck, Sticky, trash, Bodoque, Nasu)</small></p>
</th>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="tourneys-2chan" role="tabpanel" aria-labelledby="tourneys-2chan-tab">
<h3>2chan collabs</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>League</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>
<tbody class="tbody-light text-white">
<!-- 2chan collabs -->
<tr>
<th>
<h4>may vs 5ch vs img vs /mjg/</h4>
<p>Five anons based on their kanning skills were selected.</p>
<p><img src="banners/events/may_vs_5ch_vs_img_vs_mjg.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ January 2022</small>
<p><a href="https://docs.google.com/spreadsheets/d/1PWWSFJvNurjxdrtEwVJrcQ1FnTfsW8iMb7hZHXbzgVo/edit#gid=120367331"><strong>Full Details</strong></a></p>
<p><a href="https://www.youtube.com/watch?v=NJaN7Osq8x8"><b>Final's VOD</b></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>may</strong></p>
</td>
</tr>
<tr>
<th>
<h4>World championship</h4>
<p>a.k.a. reddit tourney</p>
<p><img src="banners/banar.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ Novemeber 2021</small>
<p><a href="https://docs.google.com/spreadsheets/d/1h1aXl4NjwAUaPzmdqIToK9-qvmW8F7HXslfFF0UAJYk/edit"><strong>Full Details</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>(may) げるげっげ</strong></p>
</td>
</tr>
<tr>
<th>
<h4>4chan-2chan joint tourney</h4>
<p>a.k.a. /mjg/ vs <strike>img</strike>may tourney</p>
<p><img src="banners/worldwide.jpg" class="img-fluid" alt=""></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ July 2021</small>
<p><a href="https://docs.google.com/spreadsheets/d/1bImNVBmWsI0cuobsRTmsH0qeryIjzqp6E-RvnurW3ec/edit?usp=sharing"><strong>Full Details</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>(/mjg/) mottwww</strong></p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="tourneys-solo" role="tabpanel" aria-labelledby="tourneys-solo-tab">
<h3>Solo Tourneys</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>Tourney</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>
<tbody class="tbody-light text-white">
<!-- Solo Tourneys -->
<tr>
<th>
<h4>ROLEPLAY TOURNAMENT</h4>
<!-- <p><img src="banners/events/3rdoctourneyheader.png" class="img-fluid" alt=""></p>-->
</th>
<td>
<p><strong>Held In</strong></p>
<small> ‣ February 2023</small>
<p><a href="https://docs.google.com/document/d/1fiR8PLp1w9vY4CjV_PGTT3sgdQwoqTDi9EnduSqQMEU/edit?usp=sharing"><strong>Full Details</strong></a><br>
<a href="https://docs.google.com/spreadsheets/d/10f072Ny0uOkWmf5Di6wkvHs3JID6Yz1TE5wwOAlHA0g/edit?usp=sharing"><strong>Results Spreadsheet</strong></a><br>
<a href="https://www.youtube.com/@rpto1196"><strong>VODS</strong></a><br>
</p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>guano</strong></p>
</td>
</tr>
<tr>
<th>
<h4>Third /mjg/ riichi arts and crafts tournament</h4>
<p><img src="banners/events/3rdoctourneyheader.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><strong>Held In</strong></p>
<small> ‣ November 2022</small>
<p><a href="https://docs.google.com/document/d/10_t73XC3fXc0IOXNq6yoItJMEqXyvX5zaMBwuy50TSI/edit?usp=sharing"><strong>Full Details</strong></a><br>
<a href="https://docs.google.com/spreadsheets/d/1E7viqxTqDd1lK32pcSBrYUG-ZTv3OSKlb7J0yEKA9W4/edit#gid=0"><strong>Results Spreadsheet</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/arts%20and%20crafts%203/"><strong>Tournament Gallery</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>Maria33</strong></p>
</td>
</tr>
<tr>
<th>
<h4>Initial Chi Blitz Tourney</h4>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>30 of September till 9 of October, 2022<br>
<b>Quarter-Semi-Grand Finals</b> <br>
<small>‣ </small>8 of October, 2022</p>
<p><strong><a href="https://docs.google.com/document/d/1lFfaZkmMpsBLKi0RzXk53V3QfDGK4YkyQyAlD22E87A">Info</a></strong><br>
<strong><a href="https://docs.google.com/spreadsheets/d/11UHQnmAZ5XjszGeWHaUl_-gksqi_ALDM_E2RDzXvayQ/edit">Spreadsheet</a></strong><br></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Tilemagician</p>
</th>
</tr>
<tr>
<th>
<h4>Smoking Sick Styling Tourney</h4>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>16-18 of September, 2022<br>
<b>Quarter-Semi-Grand Finals</b> <br>
<small>‣ </small>24-25 of September, 2022</p>
<p><strong><a href="https://docs.google.com/spreadsheets/d/1VOFY7D8egdR9fyfa2xTuvxuPmbVuIZL9_Jw3wnAt5uk">Info</a></strong><br>
<strong><a href="https://www.youtube.com/watch?v=2fYVED0P0qg">R16-R08 VOD</a></strong><br>
<strong><a href="https://www.youtube.com/watch?v=Z-inbt7lqVY">Finals VOD</a></strong><br></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Plein</p>
</th>
</tr>
<tr>
<th>
<h4>Bread and Butter Tourney </h4>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>20-24 of June, 2022<br>
<b>Quarter-Semi-Grand Finals</b> <br>
<small>‣ </small>25-26 of June, 2022</p>
<p><strong><a href="https://docs.google.com/document/d/1I9vjf7Rr5kDB4JjxVauhBx5zcpnWqPKaPVa5wBMoZ9M/edit?usp=sharing">Full PDF</a></strong><br>
<strong><a href="https://docs.google.com/spreadsheets/d/1MhypmmorW6QUhYuONDEK5FDxHwpGWBieMBATRhclwt0/edit?usp=sharing">Spreadsheet</a></strong><br><strong><a href="https://www.youtube.com/watch?v=AL9iBh_515s">VOD</a></strong><br></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Nybi</p>
</th>
</tr>
<tr>
<th>
<h4>Digital vs Occult</h4>
<p><img src="banners/events/digital_vs_occult.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>25-27 of March, 2022<br>
<b>Grand Finals</b> <br>
<small>‣ </small>2nd of April, 2022</p>
<p><a href="https://docs.google.com/document/d/18T1YY-vVGYAcwyLTkOexdv9xc7GgLKih6qN_vEnSKvg/edit"><b>Information</b></a><br>
<a href="https://docs.google.com/spreadsheets/d/191fSH4Jss5YGjiR8r1487Cv-1t06ZDnGzZu-0IcpUac/edit?usp=sharing"><b>Results Spreadsheet</b></a>
</p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><b>Juphie</b></p>(Occult)
</td>
</tr>
<tr>
<th>
<h4>Team Miko Talent Scouting Grounds</h4>
<p><img src="banners/events/miko.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>11-15 of February, 2022<br>
<b>Grand Finals</b> <br>
<small>‣ </small>27th of February, 2022</p>
<p><a href="https://www.youtube.com/watch?v=mKS_mLkF1EA"><b>Information</b></a><br>
<a href="https://docs.google.com/spreadsheets/d/1iETY4WAk6TJg_uDJlWUlhXf2unFCTcfGx8jWXNHoz0c"><b>Results Spreadsheet</b></a>
</p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><b>Ippatsu_Johnny</b></p>
</td>
</tr>
<tr>
<th>
<h4>JERT aka Just A Regular Tourney</h4>
</th>
<td>
<p><b>Held On</b></p>
<p><b>Qualifiers</b><br>
<small>‣ </small>27-29 of December, 2021<br>
<b>Grand Finals</b> <br>
<small>‣ </small>1st of January, 2022</p>
<p><a href="https://docs.google.com/spreadsheets/d/1QRfVxcbwo6_d3nJaoye9Pl1BT4UzY2GO8QmEzbJKry0/edit#gid=0"><strong>Tourney Details</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>生意気な猫</strong></p>
</td>
</tr>
<tr>
<th>
<h4>Second /mjg/ riichi arts and crafts tournament</h4>
<p><img src="banners/events/2ndoctourneyheader.png" class="img-fluid" alt=""></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ Dec 2021</small>
<p><a href="https://docs.google.com/document/d/13XNMv8HL3mzBZD7nZZKYe-3Aix78BIQJQuNa1C3HHUk/edit?usp=sharing"><strong>Full Details</strong></a><br>
<a href="https://docs.google.com/spreadsheets/d/1TAHmLOAgiYv8Xi-G1jrBci1xk9BJ1mFe0_wHn7X3SLY/edit?usp=sharing"><strong>Results Spreadsheet</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/arts%20and%20crafts%202/"><strong>Tournament Gallery</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>ohheck</strong></p>
</td>
</tr>
<tr>
<th>
<h4>Kaavi's Fortune Telling Tournament</h4>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ April 2021</small>
<p><a href="https://docs.google.com/document/d/1slIRVhRQEkSdkyfPvt1FfLujuDvNrJ7V4uGsZDSNWn8/edit"><strong>Full Details</strong></a><br>
<a href="https://docs.google.com/spreadsheets/d/18S5fg-2JxZr3oNP81rcckE50WlNGqjt9GUmJ3uuiv3U/edit"><strong>Results Spreadsheet</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/Kaavis%20fortune%20tourney/"><strong>Downloadable Content</strong></a><br>
<a href="https://github.com/NicoleIsDead/Fortune-Tourney-Tool"><strong>Repo of the Fortune Tourney Tool</strong></a><br>
</p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>bob1444<br>
</strong></p>
</td>
</tr>
<tr>
<th>
<h4>/mjg/ Riichi Arts and Crafts Tournament</h4>
<p><img src="banners/events/1stoctourneyheader.png" width="350" height="88" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ 21st and 22nd of November 2020</small>
<p><a href="https://docs.google.com/document/d/1JBhKbX1T6lagoWqs_xDOLzpjbNgkYFTukHIBX1p4F88/edit?usp=sharing"><strong>Full Details</strong></a><br>
<a href="https://docs.google.com/spreadsheets/d/1Lia9cpSvlUXNSOxdQZekhWg3gh5yaDp-U7xwNR1cPlM/edit?usp=sharing"><strong>Results Spreadsheet</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/arts%20and%20crafts%201/"><strong>Tournament Gallery</strong></a></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>dojyan<br>
</strong></p>
</td>
</tr>
<tr>
<th>
<!-- >>>>sanma -->
<h4>Sanma Tourney</h4>
<p>
<!--<img src="banners/unofftourney.jpg" width="350" height="88" alt=""/>-->
</p>
</th>
<td>
<p><strong>Held On</strong></p>
<small> ‣ 31th of October 2020, 22 UTC</small>
<p>
<b><a href="https://docs.google.com/spreadsheets/d/1-QBv_Ckfz6abGlLFi7mCxq_3Ofkj_8wEmQE9usrJDYo/preview">Results Spreadsheet</a></b></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>可愛い_Agro<br>
</strong></p>
</td>
</tr>
<tr>
<th>
<h4>Unofficial /mjg/ Tourney</h4>
<p><img src="banners/unofftourney.jpg" width="350" height="88" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller"> ‣ 22th of August 2020, 18 UTC</p>
<p>
<a href="banners/events/unofficial.jpg"><strong>Full Details</strong></a><br>
<b><a href="https://i.imgur.com/bs3B8Fu.png">Results Spreadsheet</a></b></p>
</td>
<td class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p><strong>Sprout#2<br>
</strong></p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="tourneys-team" role="tabpanel" aria-labelledby="tourneys-team-tab">
<h3>Team Tourneys</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>Tourney</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>
<tbody class="tbody-light text-white">
<!-- Team Tourneys -->
<tr>
<th>
<h4>3rd /mjg/ Saki tourney </h4>
<p><img src="banners/events/lesbian.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><small>‣ 10th of December, 2022</small></p>
<p><strong>WATCH THE FULL ACTION HERE</strong><br>
- <a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20mjg%20Saki%20tourney/3rd%20_mjg_%20Saki%20team%20tourney%20day%201%20Match%201%20to%206.mp4" target="_blank">Day 1: Match 1 to 6</a><br>
- <a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20mjg%20Saki%20tourney/3rd%20%E2%A7%B8mjg%E2%A7%B8%20Saki%20team%20tourney%20final%20day%20Match%207%20to%2010%20%5BfKsTsdZ3rL4%5D.mp4" target="_blank">Day 2: Match 7 to 10</a> | <a href="https://youtu.be/fKsTsdZ3rL4" target="_blank">YouTube</a><br>
</p>
<p><strong><a href="https://docs.google.com/document/d/11GLerjqv8Xwq0nTskgzW6O2k4ahsDQx4sIzmgQRop8A/edit">Full Details</a></strong><br>
</p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Kazekoshi High School</p>
<p><small>(Pints, dorksport, Daiyan, Floats, ワハハ)</small></p>
</th>
</tr>
<tr>
<th>
<h4>2nd /mjg/ Saki tourney </h4>
<p><img src="banners/events/lesbian.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><small>‣ 27th of February, 2021</small></p>
<p><strong>WATCH THE FULL ACTION HERE</strong><br>
- <a href="https://www.youtube.com/watch?v=WthlHxbj_S0?t=9426">Semifinals Day 1</a><br>
- <a href="https://www.youtube.com/watch?v=lFwrVcYJzEo">Semifinals Day 2 Part 1</a><br>
- <a href="https://www.youtube.com/watch?v=5zpg66MLtcw">Semifinals Day 2 Part 2</a><small> (dead link)</small><br>
- <a href="https://www.youtube.com/watch?v=KR7EFh7ct78">Semifinals Day 2 Part 3</a><br>
- <a href="https://www.youtube.com/watch?v=PNDlCYaFIrQ">Finals</a><br>
</p>
<p><strong><a href="https://docs.google.com/spreadsheets/d/1HWQ04My4s48JYI36-UtsL15YvAbfeuNbodZEInMBZVo/edit#gid=0">Full Details PDF</a></strong><br>
</p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Kiyosumi High School</p>
<p><small>(Patriarkatet, snacks, rigged, ExelionBuster, sand_witch)</small></p>
</th>
</tr>
<tr>
<th>
<h4>Saki collab celebration tourney </h4>
<p><img src="banners/events/lesbian.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p><small>‣ 11th-13th of December, 2020<br>
‣ 18th-20th December, 2020</small></p>
<p><strong>WATCH THE FULL ACTION HERE</strong><br>
- <a href="https://www.youtube.com/watch?v=QRCDyaD8eoM">Qualifiers Part 1</a><br>
- <a href="https://www.youtube.com/watch?v=7DoCyh6-UGI">Qualifiers Part 2</a><br>
- <a href="https://www.youtube.com/watch?v=eMmd6WN0y1c">Day 1</a><br>
- there's supposed to be more videos but the TO is a faggot<br>
</p>
<a href="https://docs.google.com/document/d/1w1KJnFN_TZXnKHb0mwo6OWqC57wHlhUz12H7n-T2CZg/edit"><strong>Full Details PDF</strong></a>
<p><a href="https://docs.google.com/spreadsheets/d/1lI3bAa6J02sL4UGSf570IzaNgVSqMW9GsCzxF-TLqoE/edit#gid=1838723269">Qualifiers/Finals Leaderboard (excel file)</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Kiyosumi High School</p>
<p><small>(amegumo, snacks, meido, Patriarkatet, B_Reveler)</small></p>
</th>
</tr>
<tr>
<th>
<h4>4th Special 4chan Mahjong Soul Team Invitational Showdown</h4>
<p>RETRO-FUTURE PLATFORM RACE EDITION</p>
<p><img src="banners/events/tt4.jpg" class="img-fluid" alt="" /></p>
</th>
<td>
<p> <strong>Held On</strong></p>
<p class="smaller">‣ 19th-20th of September, 2020<br>
‣ Saturday, 26th September, 2020</p>
<p><strong><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwxRTfHl9JVHjMU3v3xMvBLP">WATCH THE FULL ACTION HERE</a></strong><br>
<a href="https://docs.google.com/document/d/1bow_1Ir6LanzqGjO4QwCsec1MwdTYDJJK6Ahvlg9_z8/edit"><strong>Full Details PDF</strong></a>
</p>
<p><a href="https://docs.google.com/spreadsheets/d/1Kd_RGDpkCR1JOFvtonY6kLM2BHC-_UX88M48oHbrbA0">Qualifiers/Finals Leaderboard (excel file)</a></p>
<p><a href="https://mega.nz/file/0MxCzDAL#_xt8zQG9SEgUMYO0BuaFN4VSDCeqkd6F4KlT84gHDto">Download Assets</a><small> (dead link)</small></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Team Noname</p>
<p><small>(UNIVERSE, crackhead, 真実の魔女, sand_witch, Sjaalman)</small></p>
</th>
</tr>
<tr>
<th>
<h4>3rd Special 4chan Mahjong Soul Team Invitational Showdown</h4>
<p>SECOND COLD WAR EDITION</p>
<p><img src="banners/team tourney 3rd.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p> <strong>Held On</strong></p>
<p class="smaller">‣ 6th-8th of March, 1980 <span class="spoiler">2019</span> - 12:00 UTC<br>
‣ Sunday, 15th March, 1980 Tourney Lobby: 965440 </p>
<p><strong><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwwF7eRLCN2zd_OAaw3ucvOK">WATCH THE FULL ACTION HERE</a></strong><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/details.pdf"><strong>Full Details PDF</strong></a><a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/details.pdf"><strong><br>
</strong></a></p>
<p><a href="https://docs.google.com/spreadsheets/d/1frqVfltsKgI1qGLa7YSJ4en8RoL4WKtXr9_-xyJQoh8/edit#gid=2076882235">Qualifiers/Finals Leaderboard (excel file)</a></p>
<p><a href="https://files.riichi.moe/mjg/oc/tourneys/3rd%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/">Download Assets</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Team TROPIC THUNDER</p>
<p><small>(Akari~, bob1444, sand_witch, ZZZ, Meido)</small></p>
</th>
</tr>
<tr>
<th>
<h4>2nd Special 4chan Mahjong Soul Team Invitational Showdown</h4>
<p><strong>Hags vs Cats vs Hats vs Whales<br>
</strong>Best Waifu Edition</p>
<p><img src="sections/tourney banner/2nd_team_maajan.png" class="img-fluid" alt="" /></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ Sunday, 17th of November 2019 at 16:00 UTC</p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwxYWlAGHzmpvVb9lUHqiAR2"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/2nd%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/details.pdf"><strong>Full Details PDF</strong></a></p>
<p><a href="https://files.riichi.moe/mjg/oc/tourneys/2nd%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/">Download Assets</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Team Hats<br>
<small>(Ktecismo, Fire, Guano, Marisa, Resko)</small></p>
</th>
</tr>
<tr>
<th>
<h4>Special 4chan Mahjong Soul Team Invitational Showdown</h4>
<p><strong>/v/ vs /jp/ vs /a/ vs /u/</strong></p>
</th>
<td>
<p><strong>Held On</strong></p>
<p class="smaller">‣ August 31, 2019 3:00 PM GMT </p>
<p><a href="https://www.youtube.com/playlist?list=PLFTCycYVFIwxEE4a3VNtgvLv3IbYUvGp2"><strong>WATCH THE FULL ACTION HERE</strong></a><br>
<a href="https://files.riichi.moe/mjg/oc/tourneys/1st%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/details.pdf"><strong>Full Details PDF</strong></a></p>
<p><a href="https://files.riichi.moe/mjg/oc/tourneys/1st%20Special%204chan%20Mahjong%20Soul%20Team%20Invitational%20Showdown/">Download Assets</a></p>
</td>
<th class="text-center">
<p><img src="others/icons8-trophy-64.png" width="64" height="64" alt="" /></p>
<p>Team /u/<br>
<small>(名無し, Cleopatra, Gal, Kress, Lbstr)</small></p>
</th>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="tourneys-doubles" role="tabpanel" aria-labelledby="tourneys-doubles-tab">
<h3>Doubles Tourneys</h3>
<table data-spy="scroll" class="table table-transparent table-bordered table-striped">
<thead class="thead-dark text-center">
<tr>
<th>Tourney</th>
<th>Info</th>
<th>Winner</th>
</tr>
</thead>