A basic React-based implementation of Wall Go, a strategic board game featured in Season 2 of Netflix's The Devil's Plan. This version aims to capture the core mechanics of the game, focusing on territory control through strategic movement and wall placement.
Wall Go is a 2–4 player strategy game played on a 7×7 grid. Players alternate turns, moving their pieces and placing walls to enclose territory. The objective is to control the largest area by the end of the game.
Basic Rules:
- Movement: On your turn, move one of your pieces up to two steps orthogonally (no diagonal moves).
- Wall Placement: After moving, place a wall on an adjacent edge to block opponents or secure territory.
- Territory Control: The game ends when all players' pieces are isolated. Each player's score is the number of cells they control. The player with the highest score wins.
Note: This is a simplified version focusing on core mechanics. Features like AI opponents, advanced scoring, and multiplayer support are planned for future updates.
- Node.js (v14 or later)
- npm or yarn
-
Clone the repository:
git clone https://github.com/your-username/wallgo.git cd wallgo -
Install dependencies:
npm install
-
Start the development server:
npm start
-
Open your browser and navigate to:
http://localhost:3000
- 7×7 game board
- Basic movement and wall placement mechanics
- Real-time score calculation
- Responsive design for desktop and mobile
- Clean and intuitive UI