Add Tencubed and Omega variants + some fixes (updateCastleFlags()) + cleaner FEN...
[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 ('Dark', 'In the shadow', true),
6 ('Hidden', 'Unidentified pieces', true),
7 ('Hiddenqueen', 'Queen disguised as a pawn', true),
8 ('Synchrone', 'Play at the same time', true);
9
10 insert or ignore into Variants (name, description) values
11 ('Alice', 'Both sides of the mirror'),
12 ('Allmate1', 'Mate any piece (v1)'),
13 ('Allmate2', 'Mate any piece (v2)'),
14 ('Antiking1', 'Keep antiking in check (v1)'),
15 ('Antiking2', 'Keep antiking in check (v2)'),
16 ('Antimatter', 'Dangerous collisions'),
17 ('Arena', 'Middle battle'),
18 ('Atomic', 'Explosive captures'),
19 ('Ball', 'Score a goal'),
20 ('Baroque', 'Exotic captures'),
21 ('Benedict', 'Change colors'),
22 ('Berolina', 'Pawns move diagonally'),
23 ('Cannibal', 'Capture powers'),
24 ('Capture', 'Mandatory captures'),
25 ('Checkered', 'Shared pieces'),
26 ('Checkless', 'No-check mode'),
27 ('Chess960', 'Standard rules'),
28 ('Circular', 'Run forward'),
29 ('Coregal', 'Two royal pieces'),
30 ('Crazyhouse', 'Captures reborn'),
31 ('Cylinder', 'Neverending rows'),
32 ('Doublearmy', '64 pieces on the board'),
33 ('Dynamo', 'Push and pull'),
34 ('Eightpieces', 'Each piece is unique'),
35 ('Enpassant', 'Capture en passant'),
36 ('Extinction', 'Capture all of a kind'),
37 ('Grand', 'Big board'),
38 ('Grasshopper', 'Long jumps over pieces'),
39 ('Horde', 'A pawns cloud'),
40 ('Knightmate', 'Mate the knight'),
41 ('Knightrelay1', 'Move like a knight (v1)'),
42 ('Knightrelay2', 'Move like a knight (v2)'),
43 ('Losers', 'Get strong at self-mate'),
44 ('Magnetic', 'Laws of attraction'),
45 ('Marseille', 'Double moves'),
46 ('Monster', 'White move twice'),
47 ('Omega', 'A wizard in the corner'),
48 ('Orda', 'Mongolian Horde'),
49 ('Parachute', 'Landing on the board'),
50 ('Perfect', 'Powerful pieces'),
51 ('Racingkings', 'Kings cross the 8x8 board'),
52 ('Rifle', 'Shoot pieces'),
53 ('Recycle', 'Reuse pieces'),
54 ('Royalrace', 'Kings cross the 11x11 board'),
55 ('Rugby', 'Transform an essay'),
56 ('Schess', 'Seirawan-Harper Chess'),
57 ('Shatranj', 'Ancient rules'),
58 ('Suicide', 'Lose all pieces'),
59 ('Suction', 'Attract opposite king'),
60 ('Tencubed', 'Four new pieces'),
61 ('Threechecks', 'Give three checks'),
62 ('Twokings', 'Two kings'),
63 ('Upsidedown', 'Board upside down'),
64 ('Wildebeest', 'Balanced sliders & leapers'),
65 ('Wormhole', 'Squares disappear'),
66 ('Zen', 'Reverse captures');