Skip to content

Commit 53fd2db

Browse files
committed
Update players.
1 parent e2c9a71 commit 53fd2db

File tree

3 files changed

+16
-45
lines changed

3 files changed

+16
-45
lines changed

src/components/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Board from "./Board.jsx";
22

33
function App() {
44
return (
5-
<div className="p-6 max-w-screen-2xl mx-auto select-none">
5+
<div className="p-6 min-h-screen max-w-screen-2xl mx-auto select-none max-h-screen overflow-hidden">
66
<Board />
77
</div>
88
);

src/components/Board.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function appendPlayerPoolTeams() {
2121
(p) => !playersInTeams.includes(p),
2222
);
2323

24-
_chunk(playerPoolPlayerNames, 4).map((playerNames, index) => {
24+
_chunk(playerPoolPlayerNames, 8).map((playerNames, index) => {
2525
const id = `playerpool-${index}`;
2626
teams[id] = { id, playerNames };
2727
});

src/data.js

Lines changed: 14 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,82 @@
11
export const pickOrder = [
2-
1, 2, 3, 4, 5, 6, 7,
3-
5, 6, 7, 4, 3, 2, 1,
4-
2, 1, 3, 4, 7, 6, 5,
5-
1, 6, 7, 5, 4, 3, 2,
2+
1, 2, 3, 4, 5, 6, 7,
3+
6, 7, 5, 4, 3, 2, 1,
4+
3, 5, 2, 1, 7, 4, 6,
5+
1, 4, 2, 6, 7, 3, 5,
66
].map((n) => n - 1);
77

88
const captains = [
9-
["Creature", "FI"],
10-
["Gosciu", "PL"],
11-
["Andeh", "SE"],
12-
["zero", "HU"],
13-
["ParadokS", "DK"],
14-
["razor", "SE"],
15-
["Milton", "FI"],
9+
["Zepp", "RU"],
10+
["snapcase", "SE"],
11+
["PreMorteM", "NO"],
12+
["Macisum", "NO"],
13+
["paniagua", "FI"],
14+
["HangTime", "GB"],
15+
["nas", "SE"],
1616
];
1717

1818
const player_pool = [
1919
["AHemlocksLie", "US"],
20+
["alice", "SE"],
2021
["Anza", "FI"],
2122
["bass", "SE"],
2223
["biggz", "IS"],
24+
["bjarke", "DK"],
2325
["Calinou", "FR"],
2426
["coj", "US"],
2527
["darko", "DE"],
2628
["diehuman", "PT"],
2729
["Dobezz", "GB"],
2830
["doomie", "PL"],
2931
["duce", "DE"],
30-
["eh", "FI"],
3132
["Ekz", "SE"],
32-
["Elguapo", "SE"],
3333
["Evil", "UA"],
3434
["Flamer", "CZ"],
3535
["Flash", "CA"],
3636
["floc", "DE"],
37-
["Gamer", "FI"],
3837
["gLAd", "RU"],
39-
["gosciu", "PL"],
4038
["Grc", "SE"],
41-
["grisling", "SE"],
42-
["hammer", "PT"],
43-
["HangTime", "GB"],
4439
["HaraldQuake", "DE"],
4540
["himmu", "FI"],
4641
["Hooraytio", "SE"],
47-
["IRN", "PL"],
48-
["Javve", "SE"],
4942
["kip", "FI"],
50-
["kiwi", "SE"],
5143
["kwon", "DE"],
5244
["lethalwiz", "SE"],
5345
["Link", "NO"],
5446
["Locktar", "SE"],
55-
["Macisum", "NO"],
5647
["milamber", "HU"],
57-
["Mille", "SE"],
5848
["musi", "HU"],
59-
["Mutilator", "SE"],
6049
["myca", "PL"],
61-
["nas", "SE"],
6250
["neophyte", "HU"],
6351
["Nexus", "FI"],
6452
["Nico", "US"],
6553
["NinJaA", "HU"],
66-
["niw", "DK"],
6754
["nlk", "RU"],
6855
["ocoini", "NO"],
6956
["Pamppu", "FI"],
70-
["paniagua", "FI"],
71-
["Peppe", "SE"],
7257
["PhenomenA", "SE"],
7358
["Pitbull", "LT"],
74-
["plast", "PL"],
75-
["PreMorteM", "NO"],
7659
["RaggA", "IE"],
7760
["raket", "SE"],
7861
["ratatat", "SE"],
7962
["rghst", "DE"],
8063
["Riki", "PL"],
81-
["RIO", "SE"],
8264
["robin", "NO"],
8365
["rotker", "PL"],
8466
["rusti", "FI"],
85-
["sae", "GB"],
8667
["sailorman", "SE"],
87-
["shazam", "SE"],
8868
["Slaughter", "FI"],
89-
["snapcase", "SE"],
90-
["Splash", "SE"],
9169
["spokz", "PL"],
92-
["Stepcop", "NO"],
9370
["Szturm", "PL"],
94-
["TCO", "NO"],
95-
["TiMMi", "NO"],
96-
["Tom", "PL"],
9771
["tr0ll", "NO"],
9872
["tuhmapoika", "FI"],
9973
["tumult", "SE"],
10074
["Veggie", "US"],
10175
["viag", "CA"],
10276
["wallu", "FI"],
103-
["Xerial", "SE"],
10477
["XuMuK", "RU"],
105-
["Xunito", "BR"],
106-
["Zepp", "RU"],
10778
["ztranger", "PT"],
108-
];
79+
];
10980

11081
// do not edit below
11182
export const teams = captains.reduce((teams, [name, _], index) => {

0 commit comments

Comments
 (0)