projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
'update'
[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
};