Add some translations
[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 ('Colorbound', 'The colorbound clobberers'),
30 ('Coregal', 'Two royal pieces'),
31 ('Crazyhouse', 'Captures reborn'),
32 ('Cylinder', 'Neverending rows'),
33 ('Doublearmy', '64 pieces on the board'),
34 ('Dynamo', 'Push and pull'),
35 ('Eightpieces', 'Each piece is unique'),
36 ('Enpassant', 'Capture en passant'),
37 ('Extinction', 'Capture all of a kind'),
38 ('Grand', 'Big board'),
39 ('Grasshopper', 'Long jumps over pieces'),
40 ('Horde', 'A pawns cloud'),
41 ('Interweave', 'Interweaved colorbound teams'),
42 ('Knightmate', 'Mate the knight'),
43 ('Knightrelay1', 'Move like a knight (v1)'),
44 ('Knightrelay2', 'Move like a knight (v2)'),
45 ('Losers', 'Get strong at self-mate'),
46 ('Magnetic', 'Laws of attraction'),
47 ('Marseille', 'Double moves'),
48 ('Maxima', 'Occupy the enemy palace'),
49 ('Monster', 'White move twice'),
50 ('Omega', 'A wizard in the corner'),
51 ('Orda', 'Mongolian Horde'),
52 ('Parachute', 'Landing on the board'),
53 ('Perfect', 'Powerful pieces'),
54 ('Racingkings', 'Kings cross the 8x8 board'),
55 ('Rifle', 'Shoot pieces'),
56 ('Recycle', 'Reuse pieces'),
57 ('Rococo', 'Capture on the edge'),
58 ('Royalrace', 'Kings cross the 11x11 board'),
59 ('Rugby', 'Transform an essay'),
60 ('Schess', 'Seirawan-Harper Chess'),
61 ('Shatranj', 'Ancient rules'),
62 ('Suicide', 'Lose all pieces'),
63 ('Suction', 'Attract opposite king'),
64 ('Takenmake', 'Prolongated captures'),
65 ('Tencubed', 'Four new pieces'),
66 ('Threechecks', 'Give three checks'),
67 ('Twokings', 'Two kings'),
68 ('Upsidedown', 'Board upside down'),
69 ('Wildebeest', 'Balanced sliders & leapers'),
70 ('Wormhole', 'Squares disappear'),
71 ('Zen', 'Reverse captures');