diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 30d757c540..181a3b087b 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -488,6 +488,24 @@ export const galaxy: Map = {
 	]
 };
 
+export const triangle: Map = {
+	name: 'Triangle',
+	category: 'special',
+	author: 'syuilo',
+	data: [
+		'    --    ',
+		'    --    ',
+		'   ----   ',
+		'   ----   ',
+		'  --wb--  ',
+		'  --bw--  ',
+		' -------- ',
+		' -------- ',
+		'----------',
+		'----------'
+	]
+};
+
 export const iphonex: Map = {
 	name: 'iPhone X',
 	category: 'special',