Commit | Line | Data |
---|---|---|
1 | import ChessRules from "/base_rules.js"; | |
2 | ||
3 | export default class CaptureRules extends ChessRules { | |
4 | ||
5 | static get Options() { | |
6 | return { | |
7 | select: C.Options.select, | |
8 | input: C.Options.input, | |
9 | styles: C.Options.styles.filter(s => s != "capture") | |
10 | }; | |
11 | } | |
12 | ||
13 | constructor(o) { | |
14 | o.options["capture"] = true; | |
15 | super(o); | |
16 | } | |
17 | ||
18 | }; |