| 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 | ('Atomic1', 'Explosive captures (v1)'), |
| 23 | ('Atomic2', 'Explosive captures (v2)'), |
| 24 | ('Ball', 'Score a goal'), |
| 25 | ('Balaklava', 'Meet the Mammoth'), |
| 26 | ('Baroque', 'Exotic captures'), |
| 27 | ('Benedict', 'Change colors'), |
| 28 | ('Berolina', 'Pawns move diagonally'), |
| 29 | ('Bicolour', 'Harassed kings'), |
| 30 | ('Bishopawns', 'Bishop versus pawns'), |
| 31 | ('Cannibal', 'Capture powers'), |
| 32 | ('Capture', 'Mandatory captures'), |
| 33 | ('Castle', 'Win by castling long'), |
| 34 | ('Checkered1', 'Shared pieces (v1)'), |
| 35 | ('Checkered2', 'Shared pieces (v2)'), |
| 36 | ('Checkless', 'No-check mode'), |
| 37 | ('Chess960', 'Standard rules'), |
| 38 | ('Circular', 'Run forward'), |
| 39 | ('Clorange', 'A Clockwork Orange'), |
| 40 | ('Colorbound', 'The colorbound clobberers'), |
| 41 | ('Coregal', 'Two royal pieces'), |
| 42 | ('Coronation', 'Long live the Queen'), |
| 43 | ('Crazyhouse', 'Captures reborn'), |
| 44 | ('Cylinder', 'Neverending rows'), |
| 45 | ('Diamond', 'Rotating board'), |
| 46 | ('Discoduel', 'Enter the disco'), |
| 47 | ('Doublearmy', '64 pieces on the board'), |
| 48 | ('Doublemove1', 'Double moves (v1)'), |
| 49 | ('Doublemove2', 'Double moves (v2)'), |
| 50 | ('Dynamo', 'Push and pull'), |
| 51 | ('Eightpieces', 'Each piece is unique'), |
| 52 | ('Empire', 'Empire versus Kingdom'), |
| 53 | ('Enpassant', 'Capture en passant'), |
| 54 | ('Evolution', 'Faster development'), |
| 55 | ('Extinction', 'Capture all of a kind'), |
| 56 | ('Football', 'Score a goal'), |
| 57 | ('Forward', 'Moving forward'), |
| 58 | ('Freecapture', 'Capture both colors'), |
| 59 | ('Fullcavalry', 'Lancers everywhere'), |
| 60 | ('Grand', 'Big board'), |
| 61 | ('Grasshopper', 'Long jumps over pieces'), |
| 62 | ('Gridolina', 'Jump the borders'), |
| 63 | ('Hamilton', 'Walk on a graph'), |
| 64 | ('Hoppelpoppel', 'Knibis and Bisknis'), |
| 65 | ('Horde', 'A pawns cloud'), |
| 66 | ('Interweave', 'Interweaved colorbound teams'), |
| 67 | ('Janggi', 'Korean Chess'), |
| 68 | ('Kinglet', 'Protect your pawns'), |
| 69 | ('Knightmate', 'Mate the knight'), |
| 70 | ('Knightpawns', 'Knight versus pawns'), |
| 71 | ('Knightrelay1', 'Move like a knight (v1)'), |
| 72 | ('Knightrelay2', 'Move like a knight (v2)'), |
| 73 | ('Koopa', 'Stun & kick pieces'), |
| 74 | ('Koth', 'King of the Hill'), |
| 75 | ('Losers', 'Get strong at self-mate'), |
| 76 | ('Madhouse', 'Rearrange enemy pieces'), |
| 77 | ('Madrasi', 'Paralyzed pieces'), |
| 78 | ('Magnetic', 'Laws of attraction'), |
| 79 | ('Makpong', 'Thai Chess (v2)'), |
| 80 | ('Makruk', 'Thai Chess (v1)'), |
| 81 | ('Maxima', 'Occupy the enemy palace'), |
| 82 | ('Minishogi', 'Shogi 5 x 5'), |
| 83 | ('Minixiangqi', 'Xiangqi 7 x 7'), |
| 84 | ('Monochrome', 'All of the same color'), |
| 85 | ('Monster', 'White move twice'), |
| 86 | ('Omega', 'A wizard in the corner'), |
| 87 | ('Orda', 'Mongolian Horde (v1)'), |
| 88 | ('Ordamirror', 'Mongolian Horde (v2)'), |
| 89 | ('Pacifist1', 'Convert & support (v1)'), |
| 90 | ('Pacifist2', 'Convert & support (v2)'), |
| 91 | ('Pacosako', 'Dance with the King'), |
| 92 | ('Parachute', 'Landing on the board'), |
| 93 | ('Pawnmassacre', 'Pieces upside down'), |
| 94 | ('Pawns', 'Reach the last rank (v1)'), |
| 95 | ('Pawnsking', 'Reach the last rank (v2)'), |
| 96 | ('Perfect', 'Powerful pieces'), |
| 97 | ('Pocketknight', 'Knight in pocket'), |
| 98 | ('Progressive1', 'Play more and more moves (v1)'), |
| 99 | ('Progressive2', 'Play more and more moves (v2)'), |
| 100 | ('Queenpawns', 'Queen versus pawns'), |
| 101 | ('Racingkings', 'Kings cross the 8x8 board'), |
| 102 | ('Rampage', 'Move under cover'), |
| 103 | ('Rifle', 'Shoot pieces'), |
| 104 | ('Recycle', 'Reuse pieces'), |
| 105 | ('Rococo', 'Capture on the edge'), |
| 106 | ('Rookpawns', 'Rook versus pawns'), |
| 107 | ('Royalrace', 'Kings cross the 11x11 board'), |
| 108 | ('Rugby', 'Transform an essay'), |
| 109 | ('Schess', 'Seirawan-Harper Chess'), |
| 110 | ('Shako', 'Non-conformism and utopia'), |
| 111 | ('Shatranj', 'Ancient rules'), |
| 112 | ('Shogi', 'Japanese Chess'), |
| 113 | ('Sittuyin', 'Burmese Chess'), |
| 114 | ('Suicide', 'Lose all pieces'), |
| 115 | ('Suction', 'Attract opposite king'), |
| 116 | ('Swap', 'Dangerous captures'), |
| 117 | ('Switching', 'Exchange pieces'' positions'), |
| 118 | ('Synochess', 'Dynasty versus Kingdom'), |
| 119 | ('Takenmake', 'Prolongated captures'), |
| 120 | ('Teleport', 'Reposition pieces'), |
| 121 | ('Tencubed', 'Four new pieces'), |
| 122 | ('Threechecks', 'Give three checks'), |
| 123 | ('Titan', 'Extra bishops and knights'), |
| 124 | ('Twokings', 'Two kings'), |
| 125 | ('Upsidedown', 'Board upside down'), |
| 126 | ('Vchess', 'Pawns capture backward'), |
| 127 | ('Wildebeest', 'Balanced sliders & leapers'), |
| 128 | ('Wormhole', 'Squares disappear'), |
| 129 | ('Xiangqi', 'Chinese Chess'), |
| 130 | ('Zen', 'Reverse captures'); |