Almost added TitanChess + EvolutionChess
[vchess.git] / client / src / variants / Freecapture.js
... / ...
CommitLineData
1import { ChessRules } from "@/base_rules";
2
3export class FreecaptureRules extends ChessRules {
4
5 canTake() {
6 // Can capture both colors:
7 return true;
8 }
9
10 static get SEARCH_DEPTH() {
11 return 2;
12 }
13
14};