05e5579076cab12269a5a930ca2a37e959af90a7
1 import { MakrukRules
} from "@/variants/Makruk";
3 export class KaroukRules
extends MakrukRules
{
6 const color
= this.turn
;
7 if (this.underCheck(color
)) return (color
== 'w' ? "0-1" : "1-0");
8 return super.getCurrentScore();