Skip to content

Commit 7888039

Browse files
committed
PonteDD: Add size-8 board
1 parent 8d19b77 commit 7888039

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/games/pontedd.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ export class PonteDDGame extends GameBase {
4949
},
5050
],
5151
variants: [
52+
{uid: "size-8", group: "board"},
53+
{uid: "#board"},
5254
{uid: "size-12", group: "board"},
5355
],
5456
categories: ["goal>score>eog", "mechanic>place", "board>shape>rect", "board>connect>rect", "components>special"],
@@ -120,6 +122,8 @@ export class PonteDDGame extends GameBase {
120122
public get boardsize(): number {
121123
if (this.variants.includes("size-12")) {
122124
return 12;
125+
} else if (this.variants.includes("size-8")) {
126+
return 8;
123127
}
124128
return 10;
125129
}

0 commit comments

Comments
 (0)