diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 2f8dc5ff79..02fe4562fb 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -333,3 +333,26 @@ export const iphonex: Map = {
 		'  --------  ' +
 		'   ------   '
 };
+
+export const bigBoard: Map = {
+	name: 'Big board',
+	category: 'special',
+	size: 16,
+	data:
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'-------wb-------' +
+		'-------bw-------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+};