+ );
+ };
+
+ return (
+
+
+ Bagchal (Tiger and Goats)
+
+ A strategic game where the tiger tries to capture goats, while goats try to trap the tiger.
+
+
+
+ {gameState.phase === 'setup' ? (
+
+ {gameState.phase === 'tiger-placement' && 'Click on any cell to place the tiger.'}
+ {gameState.phase === 'goat-placement' && gameState.turn === 'goats' && 'Click on an empty cell to place a goat.'}
+ {gameState.phase === 'goat-placement' && gameState.turn === 'tiger' && 'Tiger: Click on an adjacent empty cell to move.'}
+ {gameState.phase === 'playing' && gameState.turn === 'tiger' && 'Tiger: Click on an adjacent cell to move, or jump over a goat to capture.'}
+ {gameState.phase === 'playing' && gameState.turn === 'goats' && 'Click a goat to select it, then click an adjacent empty cell to move.'}
+