Some simplifactions, a few fixes, update TODO
[vchess.git] / client / src / variants / Doublearmy.js
index 0fafe96..8a6c806 100644 (file)
@@ -3,9 +3,10 @@ import { ChessRules } from "@/base_rules";
 // Ideas with 2 kings:
 // Stage 1 {w, b} : 2 kings on board, value 5.
 // Stage 2: only one, get mated and all that, value 1000
-// ...But the middle king will get captured quickly...
+// ...But the middle king will be captured quickly...
 
 export class DoublearmyRules extends ChessRules {
+
   static get COMMONER() {
     return "c";
   }
@@ -78,4 +79,5 @@ export class DoublearmyRules extends ChessRules {
   static get SEARCH_DEPTH() {
     return 2;
   }
+
 };