Attempt to clarify installation instructions a little
[vchess.git] / client / src / variants / Freecapture.js
1 import { ChessRules } from "@/base_rules";
2
3 export 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 };