Work on Checkered variant
authorBenjamin Auder <benjamin.auder@somewhere>
Fri, 25 Nov 2022 16:57:25 +0000 (17:57 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Fri, 25 Nov 2022 16:57:25 +0000 (17:57 +0100)
variants/Checkered/complete_rules.html [new file with mode: 0644]
variants/Checkered/pieces/cb.svg [new file with mode: 0644]
variants/Checkered/pieces/cn.svg [new file with mode: 0644]
variants/Checkered/pieces/cp.svg [new file with mode: 0644]
variants/Checkered/pieces/cq.svg [new file with mode: 0644]
variants/Checkered/pieces/cr.svg [new file with mode: 0644]
variants/Checkered/rules.html [new file with mode: 0644]
variants/Checkered/style.css [new file with mode: 0644]

diff --git a/variants/Checkered/complete_rules.html b/variants/Checkered/complete_rules.html
new file mode 100644 (file)
index 0000000..5f21663
--- /dev/null
@@ -0,0 +1,152 @@
+<!doctype html>
+<html>
+<head>
+  <title>Checkered Rules</title>
+  <link href="/common.css" rel="stylesheet"/>
+  <link href="/variants/Checkered/style.css" rel="stylesheet"/>
+</head>
+<body>
+
+<div class="full-rules">
+<h1>Checkered Rules</h1>
+
+<div>
+<p class="boxed">
+  The capture of an enemy piece produces a new "checkered" piece belonging
+  to both players.
+</p>
+<figure class="showPieces text-center">
+  <img src="pieces/cp.svg"/>
+  <img src="pieces/cr.svg"/>
+  <img src="pieces/cn.svg"/>
+  <img src="pieces/cb.svg"/>
+  <img src="pieces/cq.svg"/>
+  <figcaption>Checkered pieces, born after captures.</figcaption>
+</figure>
+<p>Note: the initial French name for this variant is "l'Échiqueté".</p>
+<p>The game potentially evolves in two stages.</p>
+</div>
+
+<div>
+<h2 class="stageDelimiter">Stage 1</h2>
+<h3>Basics</h3>
+<ol>
+  <li>
+    Each capture produces a new piece, taking on nature of
+    the capturing or captured one.
+  </li>
+  <li>
+    The new piece arising from a capture has a new color:
+    "checkered", as illustrated above.
+  </li>
+  <li>
+    All checkered pieces belong to the player in turn and can
+    capture the opponents pieces.
+  </li>
+</ol>
+<p>Remarks:</p>
+<ul>
+  <li>
+    A non-capturing checkered move cannot be "undone" right after since
+    this would repeat the same position.
+  </li>
+  <li>Checkered pieces cannot be captured.</li>
+</ul>
+<figure class="diagram-container">
+  <div class="diagram">fen:2kr4/pp6/2p5/4ss1r/1P2ns1P/2Np4/P1P1P1BP/R2o1RK1:</div>
+  <figcaption>
+    Black plays Rxh4=P. (Checkered pawn to) h5 is allowed then,
+    because piece's nature changed.
+    
+  </figcaption>
+</figure>
+<h3>Pawns</h3>
+<ul>
+  <li>
+    Pawns can jump two squares only from their initial rank, and only once in
+    the game. A checkered pawn keeps this right if the starting pawn
+    did not use it.
+  </li>
+  <li>
+    Checkered pawns cannot capture en passant, because while the pawn was
+    "passing" they were of the same color.
+    
+  </li>
+</ul>
+<h3>Stalemate or checkmate?</h3>
+<p>
+  The following diagram seems to show a mating pattern, but the king if
+  "attacked" by a checkered pawn &ndash; which still belongs to white.
+  Therefore, it can be considered that it's not really a check because
+  white is unable to "give back the turn".
+  Without the black bishop on a7 it would be mate (without debate), because
+  the king could virtually go to g1 before being captured by the
+  chameleon pawn.
+  
+</p>
+<figure>
+  <div class="diag"
+       data-fen='7k/b5pp/8/8/8/8/6ss/7K w 4 {"flags":"88880000000000000011"}'>
+  </div>
+  <figcaption>After 1...g2+(#?).</figcaption>
+</figure>
+<p>
+  The interface considers that it's mate in both cases, following the idea
+  "it's checkmate if we cannot move, and the opponent on its turn could
+  take the king" (maybe after an impossible move).
+  
+</p>
+</div>
+
+<div>
+<h2 class="stageDelimiter">Stage 2</h2>
+<p class="italic">
+  This stage can be disabled by unselecting "With switch" at game creation.
+</p>
+<p>
+  During the game one of the two players can decide to take control of the
+  checkered pieces.
+  They thus become autonomous and vulnerable to being captured - stage 2
+  begins. The other player is in charge of both the white and black pieces, and
+  tries to eliminate checkered pieces.
+  The checkered side wins by checkmating either the white or black king.
+</p>
+<p>
+  To take the checkered pieces, play a move that "takes opponent's king" with
+  your king, and then execute a move. This is possible only if no such move
+  can capture a king.
+</p>
+<h4>Variant of stage 2 (unimplemented)</h4>
+<p>
+  An observer could decide to join the game by taking the checkered pieces
+  at any moment.
+  It then becomes a chess game with three players, with some subtelties to be
+  resolved. It was tested in some (real life) games.
+</p>
+<h3>Special moves</h3>
+<p>Checkered pawns can...</p>
+<ul>
+  <li>move and capture in either direction;</li>
+  <li>take en passant,</li>
+  <li>be promoted on either the first or eighth row.</li>
+</ul>
+</div>
+
+<div>
+<h3>Credits</h3>
+<ul>
+  <li>
+    The rules of Checkered Chess were thought up by Patrick Bernier and
+    developed with the help of Benjamin Auder around 2011-2012.
+  </li>
+  <li>
+    Thanks also to Olive Martin, Christian Poisson, Bevis Martin, Laurent
+    Nouhaud and Frédéric Fradet.
+  </li>
+</ul>
+</div>
+
+</body>
+<script src="/utils/drawDiagrams.js"></script>
+<script>fenToDiag("Checkered");</script>
+</html>
diff --git a/variants/Checkered/pieces/cb.svg b/variants/Checkered/pieces/cb.svg
new file mode 100644 (file)
index 0000000..3f32179
--- /dev/null
@@ -0,0 +1,173 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="100%"
+   width="100%"
+   version="1.1"
+   viewBox="0 0 2048 2048"
+   id="svg3451"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="cb.svg">
+  <metadata
+     id="metadata3473">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3471" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1056"
+     id="namedview3469"
+     showgrid="false"
+     inkscape:zoom="0.16296602"
+     inkscape:cx="1024"
+     inkscape:cy="1146.725"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg3451" />
+  <path
+     style="color:black;"
+     d="m1024 1166q97 0 186 15 98-35 142-109 38-64 38-141 0-46-23-101t-75-101q-59-49-129-107t-139-137q-70 78-140 136t-128 108q-53 45-75 100t-23 102q0 77 37 141 43 74 143 109 88-15 186-15z"
+     fill-rule="nonzero"
+     display="block"
+     fill="#fff"
+     id="path3453" />
+  <path
+     style="color:black;"
+     d="m988 1138l-83 1q-34 0-34 34t34 34h83v86q0 35 36 35 35 0 35-35v-86h86q33 0 33-34t-33-34h-86v-82q0-36-35-36-36 0-36 36v81zm36-578q68 0 132 11t125 28q-117 31-257 31-142 0-257-31 58-16 123-27t134-12zm0 1089q68 0 68 68t-68 68-68-68 68-68zm0-949q117 0 225-23l-48 123q-88 14-177 14-91 0-178-14l-48-123q107 23 226 23zm0 182q97 0 186-15 98 35 142 109 38 64 38 141 0 46-23 101t-75 101q-59 49-129 107t-139 137q-70-78-140-136t-128-108q-53-45-75-100t-23-102q0-77 37-141 43-74 143-109 88 15 186 15zm-36-377h-32q-56-90-107-113-24-12-53-22t-67-10q-7 0-107 16-48 7-76 15t-44 10q-57 7-133-6-46-8-86-29l48-78q12 12 31 15t36 8q42 7 80 2 13-3 51-7t101-15q75-11 102-11 105 0 161 40 34 26 64 72t31 113zm36-113q-14-57-34-79t-53-46q-36-25-85-42t-109-9l-281 39q-17 2-30 0t-26-2q-21 0-53-9t-51-28l-97 159q18 20 32 28t33 17q58 27 124 33 28 2 55 1t56 2q54-9 108-16t110-16q60 0 81 12 11 6 35 22t48 47q-53 6-108 20t-97 31l104 258q-78 45-109 72t-49 64q-26 46-33 89t-7 77q1 60 28 132t104 130q63 48 123 99t119 119q-74 38-74 121 0 56 39 96t97 40q56 0 96-40t40-96q0-82-74-121 58-68 117-119t125-99q75-57 102-129t29-133q0-34-7-77t-32-89q-20-36-50-63t-108-73l104-258q-44-16-99-30t-106-21q23-31 47-47t36-22q21-12 81-12 54 8 108 15t110 17q27-3 54-2t57-1q64-6 124-33 18-9 32-17t33-28l-98-159q-18 18-50 27t-53 10q-13 0-26 2t-31 0l-280-39q-60-9-111 8t-85 45q-33 27-52 46t-33 77zm35 113q0-66 30-112t66-73q55-40 161-40 26 0 102 11 62 10 100 14t51 8q38 5 80-2 16-4 35-7t33-16l48 78q-41 21-87 29-76 13-133 6-17-2-44-10t-75-15q-101-16-107-16-39 0-68 10t-52 22q-53 24-108 113h-32z"
+     fill-rule="nonzero"
+     transform="translate(0,2048) scale(1,-1)"
+     display="block"
+     fill="#000"
+     id="path3455" />
+  <g
+     fill-rule="nonzero"
+     fill="#fff"
+     id="g3457">
+    <path
+       style="color:black;"
+       d="m1024 1488q68 0 132-11t125-28q-117-31-257-31-142 0-257 31 58 16 123 27t134 12z"
+       display="block"
+       id="path3459" />
+    <path
+       style="color:black;"
+       d="m1024 399q68 0 68-68t-68-68-68 68 68 68z"
+       display="block"
+       id="path3461" />
+    <path
+       style="color:black;"
+       d="m1024 1348q117 0 225 23l-48-123q-88-14-177-14-91 0-178 14l-48 123q107-23 226-23z"
+       display="block"
+       id="path3463" />
+    <path
+       style="color:black;"
+       d="m988 1543h-32q-56 90-107 113-24 12-53 22t-67 10q-7 0-107-16-48-7-76-15t-44-10q-57-7-133 6-46 8-86 29l48 78q12-12 31-15t36-8q42-7 80-2 13 3 51 7t101 15q75 11 102 11 105 0 161-40 34-26 64-72t31-113z"
+       display="block"
+       id="path3465" />
+    <path
+       style="color:black;"
+       d="m1059 1543q0 66 30 112t66 73q55 40 161 40 26 0 102-11 62-10 100-14t51-8q38-5 80 2 16 4 35 7t33 16l48-78q-41-21-87-29-76-13-133-6-17 2-44 10t-75 15q-101 16-107 16-39 0-68-10t-52-22q-53-24-108-113h-32z"
+       display="block"
+       id="path3467" />
+  </g>
+  <path
+     style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1024,234.30508 8.678,1310.37292"
+     id="path3475"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1111.2136,1167.086 -80.2712,-8.7909 0,-59.3374 c 0,-47.7667 3.3843,-62.7217 17.3559,-76.6933 13.1116,-13.1116 17.3559,-28.92654 17.3559,-64.67065 l 0,-47.31472 54.2373,-2.58359 54.2373,-2.58358 0,-30.37288 0,-30.37288 -54.2373,-2.58358 -54.2373,-2.58358 0,-47.31472 c 0,-35.74411 -4.2443,-51.55905 -17.3559,-64.67066 -15.4106,-15.41063 -17.3559,-28.92655 -17.3559,-120.5884 l 0,-103.23248 50.1326,48.99519 c 27.5729,26.94735 91.6713,83.4419 142.4409,125.54344 97.8599,81.15198 127.0162,116.80329 149.3698,182.64408 35.0159,103.13698 -6.9542,224.29991 -97.7872,282.30091 -51.1869,32.6852 -66.2179,34.9056 -163.8849,24.2097 z"
+     id="path3477"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 810.54913,1348.7828 c 25.18443,-81.219 35.53115,-96.45 69.67182,-102.5607 18.46288,-3.3046 57.97566,-6.2334 87.80617,-6.5084 l 54.23728,-0.5001 0.1185,32.5423 c 0.065,17.8983 2.3452,40.8397 5.0668,50.9808 4.6873,17.4657 0.9041,18.7677 -71.71172,24.68 -42.16303,3.4328 -93.36631,9.296 -113.78506,13.0291 -35.18449,6.4328 -36.82595,5.8231 -31.40383,-11.663 z"
+     id="path3479"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 853.82103,1467.2598 c -43.65686,-8.3868 -64.17424,-15.6905 -56.36083,-20.0631 16.71852,-9.3562 138.13023,-25.7459 190.72027,-25.7459 l 42.76193,0 0,30.3729 0,30.3729 -54.23732,-0.8746 c -29.8305,-0.4811 -85.12833,-6.8091 -122.88405,-14.0622 z"
+     id="path3481"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 709.85763,1764.1017 c -7.15932,-1.6257 -63.19274,-9.5928 -124.51872,-17.7046 -103.84965,-13.7366 -207.58053,-13.7784 -240.71572,-0.097 -9.74741,4.0247 -20.41864,-4.3481 -36.4857,-28.627 l -22.70888,-34.3155 34.88955,-13.96 c 59.75778,-23.9103 148.97064,-26.1903 246.35303,-6.2959 150.71062,30.7888 187.75392,32.2871 247.33925,10.0036 39.60833,-14.8125 62.86387,-31.0865 95.58662,-66.8904 23.78399,-26.0234 43.24362,-50.9057 43.24362,-55.294 0,-4.3882 7.98712,-7.9786 17.74915,-7.9786 15.74906,0 17.09994,3.6671 11.98786,32.5423 -13.71206,77.4517 -75.74507,155.1048 -138.21159,173.0135 -39.3075,11.2693 -114.95189,20.0443 -134.50847,15.6035 z"
+     id="path3483"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#ffffff"
+     d="m 1030.9424,332.3661 c 0,-47.84375 3.0088,-65.08474 11.3583,-65.08474 22.0679,0 41.1676,22.13302 46.2786,53.62822 4.3157,26.59489 1.4726,35.57656 -17.1596,54.20882 -34.7652,34.76519 -40.4773,28.73203 -40.4773,-42.7523 z"
+     id="path3485"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1026.2876,716.43404 3.0681,322.15306"
+     id="path3489"
+     inkscape:connector-curvature="0" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3495"
+     width="127.32716"
+     height="58.294361"
+     x="1029.3557"
+     y="845.29529" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3497"
+     width="26.079058"
+     height="87.441544"
+     x="1029.3557"
+     y="906.65771" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3509"
+     width="24.949152"
+     height="106.84746"
+     x="1029.9661"
+     y="735.45764" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3511"
+     width="24.40678"
+     height="18.440678"
+     x="1029.9661"
+     y="995.79663" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3513"
+     width="18.983051"
+     height="9.2203388"
+     x="1030.5084"
+     y="727.32202" />
+  <rect
+     style="fill:#ffffff"
+     id="rect3515"
+     width="15.18644"
+     height="45.016949"
+     x="1157.4237"
+     y="853.15253" />
+</svg>
diff --git a/variants/Checkered/pieces/cn.svg b/variants/Checkered/pieces/cn.svg
new file mode 100644 (file)
index 0000000..5f7b3bc
--- /dev/null
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="100%"
+   width="100%"
+   version="1.1"
+   viewBox="0 0 2048 2048"
+   id="svg3562"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="cn.svg">
+  <metadata
+     id="metadata3572">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3570" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="905"
+     inkscape:window-height="1028"
+     id="namedview3568"
+     showgrid="false"
+     inkscape:zoom="1.3037281"
+     inkscape:cx="400.29223"
+     inkscape:cy="706.38371"
+     inkscape:window-x="10"
+     inkscape:window-y="24"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg3562" />
+  <path
+     style="color:black;"
+     d="m1756 1774q-1 0 2-54t3-118q1-125 0-258t-36-267q-34-128-75-218t-89-157q-72-108-196-183t-259-98q9 49 8 96-2 36-34 36-37 0-33-36 3-132-94-226-76 80-82 186-2 35-36 31-32-1-32-37 0 0 2-8-41 13-86 37-29 20-47-10t16-47q43-22 65-33-86-88-196-142 12 139 76 263 17 26-8 46-28 22-47-7-7-10-20-36-21 21-28 31-7 9-24 40t-26 51q-9 25-8 40t3 35q-9 59-40 111t-81 127q-47 72-72 108t-38 92q-9 34 0 82t39 76q46 47 89 43 14 0 37-11t37-42q26-57 43-57 25 0 27 28 0 6-16 50-9 20-24 42-19 26-17 22 16 57 53 20 11-11 25-41t44-81q35-59 75-96t71-60q18-13 44-30t70-35q35-14 77-34t76-53q46-45 71-111 13-37 10-91-9-34 34-34 32 0 36 33 0 113-64 206 21 64 11 140-9 61-42 130t-136 155q-207 172-196 354 0 0 170 0t321 0h547z"
+     fill-rule="nonzero"
+     display="block"
+     fill="#fff"
+     id="path3564" />
+  <path
+     style="color:black;"
+     d="m697 1359q13-20 10-42-10-64-71-54-18 3-29 12-4-5-12-22-11-32-42-22-31 12-24 45 45 115 163 158 34 10 45-20 12-32-18-44-6-3-11-5t-11-6zm-297-477q-29-18-35-48 1-33-31-36-35-4-36 30 4 66 59 105 26 21 48-4 22-27-5-47zm679 815q157-10 291-81t228-182q66-78 124-188t94-233q40-143 50-300t11-292v-218t-155 0-404 0h-671q-9 0-9 49t7 79q4 24 19 68t50 107q16 32 76 93t138 143q45 46 70 116t22 127q-37-30-81-49-212-76-307-220-7-9-45-81-20-38-34-52-19-19-55-21-56-3-87 54-42-12-75-10-56 21-81 45-51 51-66 102t-16 110q0 84 104 222 122 159 130 242 0 36 7 81 6 31 25 60 13 20 17 27t17 23q9 12 15 18t15 18q11 13 28 30-53 146-43 301 199-71 334-223 33 113 130 183 80-56 127-148zm677-1423q-1 0 2 54t3 118q1 125 0 258t-36 267q-34 128-75 218t-89 157q-72 108-196 183t-259 98q9-49 8-96-2-36-34-36-37 0-33 36 3 132-94 226-76-80-82-186-2-35-36-31-32 1-32 37 0 0 2 8-41-13-86-37-29-20-47 10t16 47q43 22 65 33-86 88-196 142 12-139 76-263 17-26-8-46-28-22-47 7-7 10-20 36-21-21-28-31-7-9-24-40t-26-51q-9-25-8-40t3-35q-9-59-40-111t-81-127q-47-72-72-108t-38-92q-9-34 0-82t39-76q46-47 89-43 14 0 37 11t37 42q26 57 43 57 25 0 27-28 0-6-16-50-9-20-24-42-19-26-17-22 16-57 53-20 11 11 25 41t44 81q35 59 75 96t71 60q18 13 44 30t70 35q35 14 77 34t76 53q46 45 71 111 13 37 10 91-9 34 34 34 32 0 36-33 0-113-64-206 21-64 11-140-9-61-42-130t-136-155q-207-172-196-354 0 0 170 0t321 0h547z"
+     fill-rule="nonzero"
+     transform="translate(0,2048) scale(1,-1)"
+     display="block"
+     fill="#000"
+     id="path3566" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="M 357.9661,952.40678 1685.6949,945.8983"
+     id="path3574"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1063.0508,1197.5593 685.5594,-4.339"
+     id="path3576"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1080.5682,1191.0908 c 0.6369,-2.7664 3.7679,-15.7688 6.9579,-28.8942 4.732,-19.4704 6.0213,-30.9091 7.0023,-62.1256 1.2626,-40.1787 -0.5958,-60.8221 -8.0223,-89.1089 l -4.0396,-15.38641 11.7428,-19.74039 c 6.4585,-10.85721 12.4947,-21.04786 13.4137,-22.64589 1.3773,-2.39488 52.2526,-3.12149 289.4818,-4.13448 l 287.8109,-1.22896 12.0235,37.76159 c 22.642,71.11094 37.8116,130.22524 46.434,180.94804 l 4.0567,23.8644 -88.0336,1.3509 c -48.4185,0.7431 -198.7229,2.0302 -334.0098,2.8603 l -245.9762,1.5093 1.1579,-5.0297 z"
+     id="path3578"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1106.4407,518.50847 -2.1695,266.84746"
+     id="path3582"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1114.3974,938.19661 c 7.2163,-14.18147 17.0605,-44.48553 23.1361,-71.22143 7.9074,-34.79704 9.8849,-82.73454 3.8796,-94.04809 -5.4523,-10.27165 -13.5414,-15.60995 -25.7366,-16.98452 l -10.3514,-1.16675 1.5199,-107.03008 c 1.224,-86.19349 2.1351,-108.50239 4.6798,-114.59281 5.1044,-12.21644 3.9846,-57.13704 -2.5112,-100.73763 l -1.4169,-9.51013 10.3426,1.55096 c 48.684,7.30062 134.5146,36.30124 189.9928,64.19514 147.1546,73.98786 242.3085,172.54974 323.7881,335.3845 16.8632,33.70069 33.1432,70.93839 44.5388,101.87505 l 6.4626,17.5447 -130.342,1.43835 c -71.6882,0.79109 -200.4926,1.43833 -286.2321,1.43833 l -155.8899,0 4.1398,-8.13559 z"
+     id="path3584"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 476.11726,1432.0156 c -2.19518,-1.2761 -6.74402,-8.141 -10.10853,-15.2552 l -6.11731,-12.9351 12.78498,-17.7635 c 7.03174,-9.7699 16.30273,-24.4136 20.60223,-32.5414 10.20434,-19.2905 22.62862,-56.394 22.61834,-67.5467 -0.0109,-12.4981 -6.50639,-22.0734 -17.13171,-25.2568 -17.66266,-5.2919 -27.92479,4.5705 -50.18259,48.2278 -14.73078,28.8934 -22.16355,38.5018 -36.10366,46.6713 -39.72557,23.2807 -76.36449,16.7134 -120.34947,-21.5718 -23.24785,-20.2353 -37.62943,-44.4324 -45.67966,-76.8562 -3.75967,-15.1428 -4.7163,-25.3004 -4.65548,-49.4321 0.0698,-27.6874 0.69379,-32.4829 7.05738,-54.2373 10.85588,-37.1115 22.02691,-57.7305 71.21017,-131.4366 l 45.72358,-68.52138 329.23781,-1.45877 c 181.0808,-0.80233 329.68846,-1.00811 330.23926,-0.4573 1.8488,1.84878 -21.1889,28.94005 -37.80784,44.46032 -31.00374,28.95413 -57.08787,43.58153 -144.6994,81.14473 -63.69334,27.3083 -105.46308,54.0133 -163.04683,104.2424 -59.44546,51.8531 -88.10817,90.9659 -138.09163,188.4382 -19.73563,38.4863 -31.62153,55.3643 -43.20842,61.3561 -7.18023,3.713 -16.627,4.0221 -22.29122,0.7293 z M 338.14013,1250.0357 c 17.43758,-3.3069 28.00201,-15.7019 28.11769,-32.9897 0.0917,-13.705 7.72069,-25.7935 28.69768,-45.4727 20.06786,-18.8262 20.06823,-18.8268 20.06823,-29.5552 0,-18.2069 -15.27304,-35.0679 -33.31791,-36.782 -8.99003,-0.854 -11.52075,0.012 -23.55984,8.0659 -29.76481,19.911 -51.00299,51.1165 -57.94691,85.1421 -4.26583,20.9028 -4.26256,25.5405 0.0256,36.2576 3.62522,9.0603 9.68075,14.3042 18.41582,15.9475 2.89555,0.5447 5.86359,1.1234 6.59564,1.2859 0.73205,0.1625 6.53887,-0.6923 12.90404,-1.8994 z"
+     id="path3586"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#ffffff"
+     d="m 315.76954,1248.4466 c -16.86984,-5.9023 -21.14247,-23.9399 -13.15718,-55.5454 7.64358,-30.2529 24.83813,-55.2854 51.88812,-75.5408 9.79859,-7.3373 14.72259,-9.8856 21.53561,-11.145 10.59059,-1.9578 22.6263,4.3999 31.05765,16.4057 6.5262,9.2929 8.64153,17.3435 6.49617,24.7233 -2.31861,7.9757 -6.89367,13.3933 -17.56617,20.801 -8.08091,5.6088 -18.44331,16.2219 -22.41378,22.9559 -5.96206,10.1117 -7.85228,16.1997 -9.47096,30.5039 -2.15352,19.0306 -14.15035,28.1862 -36.79907,28.0841 -5.32749,-0.024 -9.3093,-0.4517 -11.57039,-1.2427 z"
+     id="path3590"
+     inkscape:connector-curvature="0" />
+</svg>
diff --git a/variants/Checkered/pieces/cp.svg b/variants/Checkered/pieces/cp.svg
new file mode 100644 (file)
index 0000000..39a8b13
--- /dev/null
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="100%"
+   width="100%"
+   version="1.1"
+   viewBox="0 0 2048 2048"
+   id="svg2"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="cp.svg">
+  <metadata
+     id="metadata12">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs10" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1056"
+     id="namedview8"
+     showgrid="false"
+     inkscape:zoom="0.11523438"
+     inkscape:cx="1024"
+     inkscape:cy="1024"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <path
+     style="color:black;"
+     d="m1024 273h491q21 72 21 141 0 156-86 283t-223 187q-66 5-66 72 0 53 67 78 93 65 93 172 0 77-52 135t-126 67q-60 5-60 68 0 28 22 52 54 42 54 110 0 56-40 96t-95 40q-57 0-96-40t-40-96q0-67 54-110 22-22 22-52 0-63-59-68-75-9-126-67t-52-135q0-107 93-172 67-26 67-78 0-67-67-72-136-60-222-187t-86-283q0-74 21-141h491zm0-68h-540q-40 100-40 209 0 185 105 332t270 210q-71 33-115 99t-45 151q0 105 70 182t172 89q-81 61-81 161 0 84 59 144t145 60q84 0 144-60t60-144q0-100-81-161 102-12 172-89t70-182q0-84-45-150t-116-100q165-63 270-210t105-332q0-108-39-209h-540z"
+     fill-rule="nonzero"
+     transform="translate(0,2048) scale(1,-1)"
+     display="block"
+     fill="#000"
+     id="path4" />
+  <path
+     style="color:black;"
+     d="m1024 1775h491q21-72 21-141 0-156-86-283t-223-187q-66-5-66-72 0-53 67-78 93-65 93-172 0-77-52-135t-126-67q-60-5-60-68 0-28 22-52 54-42 54-110 0-56-40-96t-95-40q-57 0-96 40t-40 96q0 67 54 110 22 22 22 52 0 63-59 68-75 9-126 67t-52 135q0 107 93 172 67 26 67 78 0 67-67 72-136 60-222 187t-86 283q0 74 21 141h491z"
+     fill-rule="nonzero"
+     display="block"
+     fill="#fff"
+     id="path6" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 850.44068,1102.1017 329.76272,0"
+     id="path3340"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1024,242.98305 0,1544.67795"
+     id="path3342"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1030.9424,687.22195 0,-413.14415 23.3351,5.85674 c 60.5135,15.18791 98.1564,65.30088 98.1564,130.67282 0,44.6744 -8.419,64.74371 -44.6625,106.46748 -46.9025,53.99453 -27.483,114.40491 40.9006,127.23374 103.2185,19.36391 168.9829,99.55401 168.4527,205.40332 -0.349,69.65536 -29.6897,112.33403 -129.5206,188.399 -16.6997,12.7241 -26.4922,27.9607 -26.4922,41.2203 0,20.3914 -1.991,21.0349 -65.0848,21.0349 l -65.0847,0 0,-413.14415 z"
+     id="path3344"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 530.51551,1757.722 c -11.73065,-18.6934 -13.91985,-183.3689 -3.12874,-235.3494 27.82654,-134.0398 139.55087,-279.7599 256.54648,-334.6092 33.23807,-15.5826 66.29048,-31.202 73.4498,-34.71 7.15932,-3.508 16.87177,-14.8451 21.58321,-25.1937 7.71721,-16.9507 15.24346,-18.8156 75.93221,-18.8156 l 67.36593,0 0,329.7627 0,329.7627 -242.4709,0 c -184.56097,0 -244.09665,-2.5907 -249.27799,-10.8475 z"
+     id="path3346"
+     inkscape:connector-curvature="0" />
+</svg>
diff --git a/variants/Checkered/pieces/cq.svg b/variants/Checkered/pieces/cq.svg
new file mode 100644 (file)
index 0000000..bf3e849
--- /dev/null
@@ -0,0 +1,189 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="100%"
+   width="100%"
+   version="1.1"
+   viewBox="0 0 2048 2048"
+   id="svg3895"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="cq.svg">
+  <metadata
+     id="metadata3933">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3931" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1056"
+     id="namedview3929"
+     showgrid="false"
+     inkscape:zoom="0.44873047"
+     inkscape:cx="1024"
+     inkscape:cy="1024"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg3895" />
+  <path
+     style="color:black;"
+     d="m1024 1621q-57 0-96 40t-40 97q0 56 39 96t97 40q56 0 96-40t41-96q0-57-40-97t-97-40zm0 70q67 0 67 67 0 66-67 66-66 0-66-66 0-67 66-67zm509-1007q-193 49-505 49-320 0-511-50l15-96q195 46 496 46 299 0 488-45l17 96zm25 60 65 115q-48-19-98-19-134 0-214 109-60-50-134-50-96 0-153 75-64-70-153-70-72 0-132 49-84-107-217-107-51 0-101 19l70-120q194 56 533 56 345 0 534-57zm-448 239-85 489-85-483q3 2 14 10 23 45 70 45 51 0 66-45 6-6 20-16zm277-19v463l-165-454q19 7 32 18 20 25 54 25 40 0 64-35 3-4 7-8t8-9zm-562 14-164 449v-457q3 4 9 10 20 42 66 42 38 0 62-32 27-12 27-12zm-254-56-215 371 55-338q57-40 111-40 21 0 49 7zm903-5q23-7 51-7 61 0 114 38l55 346-220-377zm60-506-30 113q-196 43-480 43-281 0-479-43l-31-114q186 56 511 56 317 0 509-55zm106-128q-49-43-220-72t-394-29q-227 0-399 30t-217 75l63 240-28 157-88 153-85 622 49 19 274-462 6 550 68 12 209-553 112 595h69l112-593 207 551 69-12 6-550 275 463 47-22-83-619-89-153-28-159 65-243zm-81 36q-183 76-531 76-355 0-537-78 175-69 534-69 172 0 314 19t220 52zm-955 1252q-57 0-97 39t-40 97q0 56 40 96t97 40q56 0 96-40t40-96q0-57-40-96t-96-40zm0 70q66 0 66 66t-66 66q-67 0-67-66t67-66zm840 0q67 0 67 66t-67 66q-66 0-66-66t66-66zm0-70q-57 0-96 39t-40 97q0 56 39 96t97 40q57 0 97-40t40-96q0-57-40-96t-97-40zm-1208-110q-57 0-96 39t-40 97q0 56 39 96t97 41q57 0 97-40t40-97-40-96-97-40zm0 70q67 0 67 66 0 67-67 67-66 0-66-67 0-66 66-66zm1578 0q66 0 66 66 0 67-66 67-67 0-67-67 0-66 67-66zm0-70q-57 0-97 39t-40 97q0 56 40 96t97 41q56 0 96-40t40-97-40-96-96-40z"
+     fill-rule="nonzero"
+     transform="translate(0,2048) scale(1,-1)"
+     display="block"
+     fill="#000"
+     id="path3897" />
+  <g
+     fill-rule="nonzero"
+     fill="#fff"
+     id="g3899">
+    <path
+       style="color:black;"
+       d="m1024 357q67 0 67-67 0-66-67-66-66 0-66 66 0 67 66 67z"
+       display="block"
+       id="path3901" />
+    <path
+       style="color:black;"
+       d="m1533 1364q-193-49-505-49-320 0-511 50l15 96q195-46 496-46 299 0 488 45l17-96z"
+       display="block"
+       id="path3903" />
+    <path
+       style="color:black;"
+       d="m1558 1304 65-115q-48 19-98 19-134 0-214-109-60 50-134 50-96 0-153-75-64 70-153 70-72 0-132-49-84 107-217 107-51 0-101-19l70 120q194-56 533-56 345 0 534 57z"
+       display="block"
+       id="path3905" />
+    <path
+       style="color:black;"
+       d="m1110 1065-85-489-85 483q3-2 14-10 23-45 70-45 51 0 66 45 6 6 20 16z"
+       display="block"
+       id="path3907" />
+    <path
+       style="color:black;"
+       d="m1387 1084v-463l-165 454q19-7 32-18 20-25 54-25 40 0 64 35 3 4 7 8t8 9z"
+       display="block"
+       id="path3909" />
+    <path
+       style="color:black;"
+       d="m825 1070-164-449v457q3-4 9-10 20-42 66-42 38 0 62 32 27 12 27 12z"
+       display="block"
+       id="path3911" />
+    <path
+       style="color:black;"
+       d="m571 1126-215-371 55 338q57 40 111 40 21 0 49-7z"
+       display="block"
+       id="path3913" />
+    <path
+       style="color:black;"
+       d="m1474 1131q23 7 51 7 61 0 114-38l55-346-220 377z"
+       display="block"
+       id="path3915" />
+    <path
+       style="color:black;"
+       d="m1534 1637-30-113q-196-43-480-43-281 0-479 43l-31 114q186-56 511-56 317 0 509 55z"
+       display="block"
+       id="path3917" />
+    <path
+       style="color:black;"
+       d="m1559 1729q-183-76-531-76-355 0-537 78 175 69 534 69 172 0 314-19t220-52z"
+       display="block"
+       id="path3919" />
+    <path
+       style="color:black;"
+       d="m604 407q66 0 66-66t-66-66q-67 0-67 66t67 66z"
+       display="block"
+       id="path3921" />
+    <path
+       style="color:black;"
+       d="m1444 407q67 0 67-66t-67-66q-66 0-66 66t66 66z"
+       display="block"
+       id="path3923" />
+    <path
+       style="color:black;"
+       d="m236 517q67 0 67-66 0-67-67-67-66 0-66 67 0 66 66 66z"
+       display="block"
+       id="path3925" />
+    <path
+       style="color:black;"
+       d="m1814 517q66 0 66-66 0-67-66-67-67 0-67 67 0 66 67 66z"
+       display="block"
+       id="path3927" />
+  </g>
+  <path
+     style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1016.2002,176.05223 13.3711,1655.78237"
+     id="path3935"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1097.8927,1055.22 c -3.8512,-3.3208 -8.5172,-9.6877 -10.3689,-14.1486 -8.093,-19.4972 -28.3608,-34.0022 -51.2742,-36.6953 l -11.9935,-1.4096 -1.5837,-200.85733 c -1.3789,-174.88427 -0.9022,-222.32668 2.2024,-219.222 0.6751,0.67508 83.3628,473.92123 83.3628,477.10983 0,2.7798 -3.4043,1.2077 -10.3449,-4.777 z"
+     id="path3937"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1372.8592,1066.7465 c -20.9019,-25.8478 -37.3854,-34.492 -65.8135,-34.5135 -19.7859,-0.016 -35.6621,6.4407 -49.9744,20.3208 -8.9525,8.6822 -30.0487,21.4445 -32.0839,19.4093 -0.5049,-0.5049 35.446,-100.92349 79.8908,-223.15241 l 80.8089,-222.23439 0.5773,113.80565 c 0.3176,62.59311 0.3176,165.20064 0,228.01674 l -0.5773,114.21111 -12.8279,-15.8633 z"
+     id="path3939"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1490.427,1134.1797 c -7.3541,-1.3985 -13.3711,-3.5735 -13.3711,-4.8335 0,-2.6768 213.3541,-368.96743 214.3393,-367.98217 0.9771,0.97706 -52.4803,335.68407 -54.0082,338.15637 -2.8857,4.6691 -36.3949,22.3755 -52.1503,27.5563 -30.6346,10.0735 -65.4667,12.6831 -94.8097,7.103 z"
+     id="path3941"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1416.3239,402.21256 c -26.5048,-9.48337 -37.3288,-27.84542 -37.0253,-62.8106 0.3683,-42.43229 20.8673,-62.90952 63.0394,-62.97256 10.5151,-0.0157 23.2258,1.10694 28.2461,2.49478 13.7003,3.78746 26.3355,14.05333 32.3611,26.29276 4.6611,9.46783 5.3099,13.91701 5.3099,36.41353 0,22.0159 -0.678,26.88419 -4.8101,34.54189 -10.9491,20.29095 -25.5604,28.03652 -55.3597,29.34649 -15.6631,0.68855 -22.6206,-0.0357 -31.7614,-3.30629 z"
+     id="path3943"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1787.9185,513.48948 c -28.6032,-9.30226 -41.811,-32.05405 -39.5438,-68.11799 1.3392,-21.30133 5.6944,-32.81347 16.6783,-44.08566 10.739,-11.02088 25.8689,-16.01654 48.5078,-16.01654 23.8961,0 38.2835,5.03887 49.6755,17.39781 11.8528,12.85874 14.9395,22.80939 14.9395,48.16032 0,24.10057 -2.9811,34.79294 -12.827,46.00687 -11.8462,13.49203 -21.911,17.20649 -48.4452,17.87884 -12.8697,0.3261 -25.9129,-0.22454 -28.9851,-1.22365 z"
+     id="path3945"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1019.0973,291.19595 0,-66.03409 16.1567,1.05502 c 34.4836,2.25176 51.8065,20.28283 54.5682,56.79916 2.2787,30.12953 -8.6072,55.21096 -28.3297,65.27263 -7.1598,3.65266 -30.3084,8.86832 -39.6096,8.92453 -2.1662,0.0131 -2.7856,-14.66668 -2.7856,-66.01725 z"
+     id="path3947"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1549.3362,1301.2288 c -0.5925,-0.5924 -13.0866,-4.114 -27.7647,-7.8256 -109.5271,-27.6961 -246.3712,-42.5912 -425.0335,-46.2638 l -70.7552,-1.4545 0.071,-83.7661 0.071,-83.766 10.5145,11.4826 c 14.3946,15.7201 32.0516,29.3231 50.6276,39.0037 65.4837,34.1256 154.8178,25.4646 213.1433,-20.6646 4.4663,-3.5323 8.9897,-6.4224 10.0521,-6.4224 1.0624,0 6.4336,5.6488 11.9361,12.5529 31.9871,40.1351 81.8151,72.65 131.1269,85.566 48.6622,12.7458 107.8765,11.0794 153.4897,-4.3195 7.0532,-2.3811 13.036,-4.1172 13.2952,-3.858 0.2592,0.2592 -13.3837,25.005 -30.3176,54.9907 -21.7709,38.5509 -32.0469,54.7102 -35.084,55.1706 -2.3624,0.3581 -4.7799,0.1665 -5.3723,-0.426 z"
+     id="path3949"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 532.36078,1457.7877 c -1.34024,-4.2159 -14.66887,-91.798 -14.06035,-92.3902 0.27309,-0.2658 16.54179,-4.051 36.15267,-8.4117 109.03938,-24.2458 232.14544,-36.6379 403.9173,-40.6593 l 65.1839,-1.526 0,49.3715 0,49.3714 -9.4712,0.027 c -78.6505,0.2252 -221.56589,7.8705 -293.60606,15.7067 -62.01255,6.7454 -167.92717,24.1481 -183.62162,30.1706 -2.0127,0.7724 -3.94868,0.057 -4.49464,-1.6601 z"
+     id="path3951"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 516.31245,1632.4945 c 0.63724,-2.145 7.34888,-26.965 14.91477,-55.1557 7.56589,-28.1906 14.09034,-51.632 14.49879,-52.0919 1.3963,-1.5722 51.02762,-11.0517 87.83917,-16.777 103.81553,-16.1466 231.82899,-25.8321 341.51904,-25.8393 l 50.69858,-0 0,49.0272 0,49.0272 -17.2709,0.022 c -75.9668,0.096 -209.93544,7.5533 -281.34933,15.6602 -67.895,7.7075 -155.54896,23.7793 -193.88031,35.549 -17.7017,5.4353 -18.41901,5.4599 -16.96981,0.5819 z"
+     id="path3953"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 892.25341,1796.7004 c -154.01595,-6.6842 -281.32833,-25.8628 -372.20479,-56.0697 l -27.71895,-9.2136 9.89088,-4.2205 c 35.34955,-15.0839 104.82228,-34.5539 160.31525,-44.929 91.31945,-17.0733 216.63526,-27.9304 323.34849,-28.0143 l 39.21361,-0.031 1.4567,27.092 c 0.8012,14.9006 1.4567,47.4925 1.4567,72.4266 l 0,45.3345 -48.47006,-0.3452 c -26.65854,-0.1899 -65.93807,-1.1033 -87.28783,-2.0299 z"
+     id="path3955"
+     inkscape:connector-curvature="0" />
+</svg>
diff --git a/variants/Checkered/pieces/cr.svg b/variants/Checkered/pieces/cr.svg
new file mode 100644 (file)
index 0000000..1923486
--- /dev/null
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="100%"
+   width="100%"
+   version="1.1"
+   viewBox="0 0 2048 2048"
+   id="svg3745"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="cr.svg">
+  <metadata
+     id="metadata3767">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3765" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1056"
+     id="namedview3763"
+     showgrid="false"
+     inkscape:zoom="0.44873047"
+     inkscape:cx="1024"
+     inkscape:cy="1024"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg3745" />
+  <path
+     style="color:black;"
+     d="m1161 1706h170v137h274v-375l-222-171v-478l170-170v-205h153v-239h-1365v239h153v205l171 170v478l-222 171v375h273v-137h171v137h274v-137zm478-1330h-1230v-103h1230v103zm-155 204h-920v-136h920v136zm-170 717h-580v-478h580v478zm222 239v239h-137v-137h-308v137h-135v-137h-307v137h-137v-239h1024zm-77-887l-103 102h-663l-105-102h871zm-110 716l127 103h-904l128-103h649z"
+     fill-rule="nonzero"
+     transform="translate(0,2048) scale(1,-1)"
+     display="block"
+     fill="#000"
+     id="path3747" />
+  <g
+     fill-rule="nonzero"
+     fill="#fff"
+     id="g3749">
+    <path
+       style="color:black;"
+       d="m1639 1672h-1230v103h1230v-103z"
+       display="block"
+       id="path3751" />
+    <path
+       style="color:black;"
+       d="m1484 1468h-920v136h920v-136z"
+       display="block"
+       id="path3753" />
+    <path
+       style="color:black;"
+       d="m1314 751h-580v478h580v-478z"
+       display="block"
+       id="path3755" />
+    <path
+       style="color:black;"
+       d="m1536 512v-239h-137v137h-308v-137h-135v137h-307v-137h-137v239h1024z"
+       display="block"
+       id="path3757" />
+  </g>
+  <path
+     style="color:black;"
+     d="m1459 1399-103-102h-663l-105 102h871z"
+     fill-rule="nonzero"
+     display="block"
+     fill="#fff"
+     id="path3759" />
+  <path
+     style="color:black;"
+     d="m1349 683 127-103h-904l128 103h649z"
+     fill-rule="nonzero"
+     display="block"
+     fill="#fff"
+     id="path3761" />
+  <path
+     style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1020.6572,233.99347 -2.2285,1575.55603"
+     id="path3769"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 1348.2481,998.37214 -664.09576,2.22856"
+     id="path3771"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1021.3258,392.88618 0,-118.11099 34.5419,0 34.5419,0 0,67.96953 0,67.96953 154.8814,0 154.8814,0 0,-67.96953 0,-67.96953 67.9695,0 67.9695,0 0,118.11099 0,118.11099 -257.3928,0 -257.3928,0 0,-118.11099 z"
+     id="path3773"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1021.3258,631.33667 0,-51.25571 226.6394,0 c 134.6244,0 225.7798,0.81545 224.5223,2.00852 -1.1644,1.10469 -29.5228,24.16976 -63.0186,51.25571 l -60.9014,49.24719 -163.6209,0 -163.6208,0 0,-51.25571 z"
+     id="path3775"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 1021.3255,874.80131 3e-4,-123.12514 145.9673,0 145.9674,0 0,122.53631 0,122.53631 -145.9677,0.58881 -145.9677,0.58884 4e-4,-123.12513 z"
+     id="path3777"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 733.8481,1114.9232 0,-113.654 142.97008,0 142.97012,0 -1.4598,30.4372 c -0.8029,16.7405 -1.4597,67.8848 -1.4597,113.654 l 0,83.2167 -141.51037,0 -141.51033,0 0,-113.6539 z"
+     id="path3779"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 641.36496,1347.8598 51.25571,-49.98 162.12405,-0.1094 162.12408,-0.1095 0,50.1415 0,50.1415 -213.37979,-0.052 -213.37976,-0.052 51.25571,-49.98 z"
+     id="path3781"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 564.48139,1536.1114 0,-66.8553 226.19369,0 226.19372,0 0,66.8553 0,66.8553 -226.19372,0 -226.19369,0 0,-66.8553 z"
+     id="path3783"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#000000"
+     d="m 410.71425,1723.3062 0,-51.2557 303.07726,0 303.07729,0 0,51.2557 0,51.2557 -303.07729,0 -303.07726,0 0,-51.2557 z"
+     id="path3785"
+     inkscape:connector-curvature="0" />
+</svg>
diff --git a/variants/Checkered/rules.html b/variants/Checkered/rules.html
new file mode 100644 (file)
index 0000000..892f352
--- /dev/null
@@ -0,0 +1,10 @@
+<p>
+  Each capture produces a new "checkered" piece which both players can use.
+  Checkered moves cannot be undone on next turn.
+</p>
+
+<a target="_blank" href="/variants/Checkered/complete_rules.html">
+  Full rules description.
+</a>
+
+<p class="author">Patrick Bernier (2012).</p>
diff --git a/variants/Checkered/style.css b/variants/Checkered/style.css
new file mode 100644 (file)
index 0000000..a6582e7
--- /dev/null
@@ -0,0 +1,17 @@
+@import url("/base_pieces.css");
+
+piece.checkered-pawn {
+  background-image: url('/variants/Checkered/pieces/cp.svg');
+}
+piece.checkered-rook {
+  background-image: url('/variants/Checkered/pieces/cr.svg');
+}
+piece.checkered-knight {
+  background-image: url('/variants/Checkered/pieces/cn.svg');
+}
+piece.checkered-bishop {
+  background-image: url('/variants/Checkered/pieces/cb.svg');
+}
+piece.checkered-queen {
+  background-image: url('/variants/Checkered/pieces/cq.svg');
+}