projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Separate client and server codes. Keep everything in one git repo for simplicity
[vchess.git]
/
server
/
data
/
nbPlayers.js
1
const
NbPlayers
=
2
{
3
"Alice"
: [
2
,
3
,
4
],
4
"Antiking"
: [
2
,
3
,
4
],
5
"Atomic"
: [
2
,
3
,
4
],
6
"Baroque"
: [
2
,
3
,
4
],
7
"Berolina"
: [
2
,
4
],
8
"Checkered"
: [
2
,
3
,
4
],
9
"Chess960"
: [
2
,
3
,
4
],
10
"Crazyhouse"
: [
2
,
3
,
4
],
11
"Dark"
: [
2
,
3
,
4
],
12
"Extinction"
: [
2
,
3
,
4
],
13
"Grand"
: [
2
],
14
"Losers"
: [
2
,
3
,
4
],
15
"Magnetic"
: [
2
],
16
"Marseille"
: [
2
],
17
"Switching"
: [
2
,
3
,
4
],
18
"Upsidedown"
: [
2
],
19
"Wildebeest"
: [
2
],
20
"Zen"
: [
2
,
3
,
4
],
21
};
22
23
module
.
exports
=
NbPlayers
;