-
Notifications
You must be signed in to change notification settings - Fork 1
/
variations.js
67 lines (59 loc) · 2.16 KB
/
variations.js
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
//Different Chess Variations
const toiletVariation = [
["e2", "e4", "White moves pawn from e2 to e4"],
["c7", "c5", "Black moves pawn from c7 to c5"],
["f2", "f4", "White moves pawn from f2 to f4"],
["g8", "f6", "Black moves knight from g8 to f6"],
["b1", "c3", "White moves knight from b1 to c3"],
["d7", "d5", "Black moves pawn from d7 to d5"],
];
const monkeysbumVariation = [
["e2", "e4", "White moves pawn from e2 to e4"],
["g7", "g6", "Black moves pawn from g7 to g6"],
["f1", "c4", "White moves bishop from f1 to c4"],
["f8", "g7", "Black moves bishop from f8 to g7"],
["d1", "f3", "White moves queen from d1 to f3"],
["e7", "e6", "Black moves pawn from e7 to e6"],
["d2", "d4", "White moves pawn from d2 to d4"],
["g7", "d4", "Black moves bishop from g7 to d4"],
];
const frankesteindraculaVariation = [
["e2", "e4", "White moves pawn from e2 to e4"],
["e7", "e5", "Black moves pawn from e7 to e5"],
["b1", "c3", "White moves knight from b1 to c3"],
["g8", "f6", "Black moves knight from g8 to f6"],
["f1", "c4", "White moves bishop from f1 to c4"],
["f6", "e4", "Black moves knight from f6 to e4"],
];
const italianGame = [
["e2", "e4", "White moves pawn from e2 to e4"],
["e7", "e5", "Black moves pawn from e7 to e5"],
["g1", "f3", "White moves knight from g1 to f3"],
["b8", "c6", "Black moves knight from b8 to c6"],
["f1", "c4", "White moves bishop from f1 to c4"],
];
const ruyLopezOpening = [
["e2", "e4", "White moves pawn from e2 to e4"],
["e7", "e5", "Black moves pawn from e7 to e5"],
["g1", "f3", "White moves knight from g1 to f3"],
["b8", "c6", "Black moves knight from b8 to c6"],
["f1", "b5", "White moves bishop from f1 to b5"],
];
const sicilianDefense = [
["e2", "e4", "White moves pawn from e2 to e4"],
["c7", "c5", "Black moves pawn from c7 to c5"],
];
const bongcloudAttackVariation = [
["e2", "e4", "White moves pawn from e2 to e4"],
["e7", "e5", "Black moves pawn from e7 to e5"],
["e1", "e2", "White moves king from e1 to e2"],
];
export {
toiletVariation,
monkeysbumVariation,
frankesteindraculaVariation,
italianGame,
ruyLopezOpening,
sicilianDefense,
bongcloudAttackVariation,
};