Show first move indication in Hamilton
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 29 Apr 2020 01:00:54 +0000 (03:00 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 29 Apr 2020 01:00:54 +0000 (03:00 +0200)
TODO
client/src/variants/Hamilton.js

diff --git a/TODO b/TODO
index 3f47029..cd69599 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,6 +3,10 @@ Also: if new live game starts in background, "new game" notify OK but not first
 On smartphone for Teleport, Chakart, Weiqi and some others: option "confirm moves on touch screen"
 (=> comme pour corr) + option "confirm moves in corr games"?
 
+https://www.chessvariants.com/winning.dir/kinglet.html
+you need to win all the pawns to win the game
+kings are not royal
+
 https://www.chessvariants.com/diffmove.dir/balaklava.html
 
 Rampage Chess: Any Unit May move to any empty square that is guarded. A King cannot make a special move to get out of check.
@@ -12,10 +16,6 @@ Swap chess: Friendly pieces may swap places
 https://www.chessvariants.com/crossover.dir/koopachess.html
 --> Can a stunned piece capture? Maybe not. ...recover? After 5 moves? Never?
 
-https://www.chessvariants.com/winning.dir/kinglet.html
-you need to win all the pawns to win the game
-kings are not royal
-
 https://www.chessvariants.com/diffmove.dir/checkers.html --> "Forward"
 in 1974 by Hans Multhopp
 
index 08994e3..6794e72 100644 (file)
@@ -10,6 +10,10 @@ export class HamiltonRules extends ChessRules {
     return false;
   }
 
+  get showFirstTurn() {
+    return true;
+  }
+
   static get HOLE() {
     return "xx";
   }