This is a simple game where you have to roll the dice and try to fill the rows with the numbers you get. It's a simple implementation of Qwinto game.
Play here: https://rows-n-dice-game.pages.dev/
- Offline play (online play in progress)
- Board is tracking your moves, so you can't place the number in the wrong place
- Random dice roll
- However, dice is not connected with the board, so you can also use your physical dice to play
- Roll the dice and choose a row to place your result.
- Pick how many dice to roll – but be careful! You can reroll, but other players can use your new result.
- If you can’t or don’t want to fill a row, take a penalty.
- Take turns rolling the dice, placing one result per turn.
- Numbers in each row must increase, and each column must have unique numbers.
- The game ends when a player fills two rows or gets five penalties.
- Earn points based on completed rows, with penalties deducting 5 points each.
- Bonus cells add extra points when completing columns.
- The player with the most points wins!
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.