diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 67fcb8260..1c9ddc867 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -356,3 +356,27 @@ export const bigBoard: Map = {
 		'----------------' +
 		'----------------'
 };
+
+export const twoBoard: Map = {
+	name: 'Two board',
+	category: 'special',
+	size: 17,
+	data:
+		'-------- --------' +
+		'-------- --------' +
+		'-------- --------' +
+		'---wb--- ---wb---' +
+		'---bw--- ---bw---' +
+		'-------- --------' +
+		'-------- --------' +
+		'-------- --------' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 ' +
+		'                 '
+};