projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Fix typo
[vchess.git]
/
client
/
src
/
variants
/
Freecapture.js
1
import
{
ChessRules
}
from
"@/base_rules"
;
2
3
export class
FreecaptureRules
extends
ChessRules
{
4
canTake
() {
5
// Can capture both colors:
6
return true
;
7
}
8
9
static get
SEARCH_DEPTH
() {
10
return
2
;
11
}
12
};