Backgammon Tutorial

This commit is contained in:
Brian Fertig 2026-05-31 12:22:51 -06:00
parent 99497e19fa
commit 2c5bcbd478
4 changed files with 5 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

View File

@ -25,6 +25,8 @@ Each player has checkers in four places at the start. It looks like a nice littl
The board has **24 points** (those little triangles). You move your checkers around the board in a circle, and your "home" board is where you want to end up. Think of it like coming home for dinner—everyone wants to get to the table! The board has **24 points** (those little triangles). You move your checkers around the board in a circle, and your "home" board is where you want to end up. Think of it like coming home for dinner—everyone wants to get to the table!
![This is a test](/assets/images/tutoral-images/backgammon-01.png)
## How to Play—Step by Step, Now That I've Checked the Cookies ## How to Play—Step by Step, Now That I've Checked the Cookies
### Step 1: Roll the Dice ### Step 1: Roll the Dice

View File

@ -24,7 +24,7 @@ export function getGame(slug) {
} }
// Built-in catalog so the menu has something to show. // Built-in catalog so the menu has something to show.
registerGame({ slug: 'backgammon', name: 'Backgammon', category: 'tabletop', minPlayers: 2, maxPlayers: 2, minOpponents: 1, maxOpponents: 1 }); registerGame({ slug: 'backgammon', name: 'Backgammon', category: 'tabletop', minPlayers: 2, maxPlayers: 2, minOpponents: 1, maxOpponents: 1, hasTutorial: true });
registerGame({ slug: 'parchisi', name: 'Parchisi', category: 'tabletop', minPlayers: 1, maxPlayers: 4, minOpponents: 3, maxOpponents: 3 }); registerGame({ slug: 'parchisi', name: 'Parchisi', category: 'tabletop', minPlayers: 1, maxPlayers: 4, minOpponents: 3, maxOpponents: 3 });
registerGame({ slug: 'blackjack', name: 'Blackjack', category: 'casino', cardGame: true, minPlayers: 1, maxPlayers: 7, minOpponents: 0, maxOpponents: 6 }); registerGame({ slug: 'blackjack', name: 'Blackjack', category: 'casino', cardGame: true, minPlayers: 1, maxPlayers: 7, minOpponents: 0, maxOpponents: 6 });
registerGame({ slug: 'holdem', name: "Texas Hold 'Em", category: 'casino', cardGame: true, minPlayers: 2, maxPlayers: 8, minOpponents: 3, maxOpponents: 7 }); registerGame({ slug: 'holdem', name: "Texas Hold 'Em", category: 'casino', cardGame: true, minPlayers: 2, maxPlayers: 8, minOpponents: 3, maxOpponents: 7 });