Add Vchess variant (draft)
[vchess.git] / server / db / populate.sql
1 -- Re-run this script after variants are added
2
3 insert or ignore into Variants (name, description, noProblems) values
4 ('Apocalypse', 'The end of the world', true),
5 ('Chakart', 'Capture the princess', true),
6 ('Dark', 'In the shadow', true),
7 ('Dice', 'Roll the dice', true),
8 ('Hidden', 'Unidentified pieces', true),
9 ('Hiddenqueen', 'Queen disguised as a pawn', true),
10 ('Synchrone', 'Play at the same time', true);
11
12 insert or ignore into Variants (name, description) values
13 ('Absorption', 'Absorb powers'),
14 ('Alice', 'Both sides of the mirror'),
15 ('Allmate1', 'Mate any piece (v1)'),
16 ('Allmate2', 'Mate any piece (v2)'),
17 ('Ambiguous', 'Play opponent''s pieces'),
18 ('Antiking1', 'Keep antiking in check (v1)'),
19 ('Antiking2', 'Keep antiking in check (v2)'),
20 ('Antimatter', 'Dangerous collisions'),
21 ('Arena', 'Middle battle'),
22 ('Atomic', 'Explosive captures'),
23 ('Ball', 'Score a goal'),
24 ('Balaklava', 'Meet the Mammoth'),
25 ('Baroque', 'Exotic captures'),
26 ('Benedict', 'Change colors'),
27 ('Berolina', 'Pawns move diagonally'),
28 ('Bicolour', 'Harassed kings'),
29 ('Bishopawns', 'Bishop versus pawns'),
30 ('Cannibal', 'Capture powers'),
31 ('Capture', 'Mandatory captures'),
32 ('Checkered1', 'Shared pieces (v1)'),
33 ('Checkered2', 'Shared pieces (v2)'),
34 ('Checkless', 'No-check mode'),
35 ('Chess960', 'Standard rules'),
36 ('Circular', 'Run forward'),
37 ('Clorange', 'A Clockwork Orange'),
38 ('Colorbound', 'The colorbound clobberers'),
39 ('Coregal', 'Two royal pieces'),
40 ('Coronation', 'Long live the Queen'),
41 ('Crazyhouse', 'Captures reborn'),
42 ('Cylinder', 'Neverending rows'),
43 ('Diamond', 'Rotating board'),
44 ('Discoduel', 'Enter the disco'),
45 ('Doublearmy', '64 pieces on the board'),
46 ('Doublemove1', 'Double moves (v1)'),
47 ('Doublemove2', 'Double moves (v2)'),
48 ('Dynamo', 'Push and pull'),
49 ('Eightpieces', 'Each piece is unique'),
50 ('Enpassant', 'Capture en passant'),
51 ('Extinction', 'Capture all of a kind'),
52 ('Football', 'Score a goal'),
53 ('Forward', 'Moving forward'),
54 ('Freecapture', 'Capture both colors'),
55 ('Grand', 'Big board'),
56 ('Grasshopper', 'Long jumps over pieces'),
57 ('Gridolina', 'Jump the borders'),
58 ('Hamilton', 'Walk on a graph'),
59 ('Horde', 'A pawns cloud'),
60 ('Interweave', 'Interweaved colorbound teams'),
61 ('Kinglet', 'Protect your pawns'),
62 ('Knightmate', 'Mate the knight'),
63 ('Knightpawns', 'Knight versus pawns'),
64 ('Knightrelay1', 'Move like a knight (v1)'),
65 ('Knightrelay2', 'Move like a knight (v2)'),
66 ('Koopa', 'Stun & kick pieces'),
67 ('Koth', 'King of the Hill'),
68 ('Losers', 'Get strong at self-mate'),
69 ('Madhouse', 'Rearrange enemy pieces'),
70 ('Madrasi', 'Paralyzed pieces'),
71 ('Magnetic', 'Laws of attraction'),
72 ('Makruk', 'Thai Chess'),
73 ('Maxima', 'Occupy the enemy palace'),
74 ('Minishogi', 'Shogi 5 x 5'),
75 ('Monochrome', 'All of the same color'),
76 ('Monster', 'White move twice'),
77 ('Omega', 'A wizard in the corner'),
78 ('Orda', 'Mongolian Horde (v1)'),
79 ('Ordamirror', 'Mongolian Horde (v2)'),
80 ('Pacifist1', 'Convert & support (v1)'),
81 ('Pacifist2', 'Convert & support (v2)'),
82 ('Parachute', 'Landing on the board'),
83 ('Pawnmassacre', 'Pieces upside down'),
84 ('Pawns', 'Reach the last rank (v1)'),
85 ('Pawnsking', 'Reach the last rank (v2)'),
86 ('Perfect', 'Powerful pieces'),
87 ('Pocketknight', 'Knight in pocket'),
88 ('Progressive1', 'Play more and more moves (v1)'),
89 ('Progressive2', 'Play more and more moves (v2)'),
90 ('Queenpawns', 'Queen versus pawns'),
91 ('Racingkings', 'Kings cross the 8x8 board'),
92 ('Rampage', 'Move under cover'),
93 ('Rifle', 'Shoot pieces'),
94 ('Recycle', 'Reuse pieces'),
95 ('Rococo', 'Capture on the edge'),
96 ('Rookpawns', 'Rook versus pawns'),
97 ('Royalrace', 'Kings cross the 11x11 board'),
98 ('Rugby', 'Transform an essay'),
99 ('Schess', 'Seirawan-Harper Chess'),
100 ('Shako', 'Non-conformism and utopia'),
101 ('Shatranj', 'Ancient rules'),
102 ('Shogi', 'Japanese Chess'),
103 ('Sittuyin', 'Burmese chess'),
104 ('Suicide', 'Lose all pieces'),
105 ('Suction', 'Attract opposite king'),
106 ('Swap', 'Dangerous captures'),
107 ('Switching', 'Exchange pieces'' positions'),
108 ('Takenmake', 'Prolongated captures'),
109 ('Teleport', 'Reposition pieces'),
110 ('Tencubed', 'Four new pieces'),
111 ('Threechecks', 'Give three checks'),
112 ('Twokings', 'Two kings'),
113 ('Upsidedown', 'Board upside down'),
114 ('Vchess', 'Pawns capture backward'),
115 ('Wildebeest', 'Balanced sliders & leapers'),
116 ('Wormhole', 'Squares disappear'),
117 ('Zen', 'Reverse captures');