Changes
This commit is contained in:
parent
dee3482dfa
commit
55c01cea33
4 changed files with 744 additions and 0 deletions
|
|
@ -13,6 +13,7 @@ import GuessingGame from '@/components/GuessingGame';
|
|||
import SubtractionGame from '@/components/SubtractionGame';
|
||||
import ParityBitsGame from '@/components/ParityBitsGame';
|
||||
import CrapsGame from '@/components/CrapsGame';
|
||||
import BagchalGame from '@/components/BagchalGame';
|
||||
|
||||
interface Game {
|
||||
id: string;
|
||||
|
|
@ -23,6 +24,13 @@ interface Game {
|
|||
}
|
||||
|
||||
const games: Game[] = [
|
||||
{
|
||||
id: 'bagchal',
|
||||
title: 'Bagchal (Tiger and Goats)',
|
||||
description: 'A strategic board game where the tiger tries to capture goats by jumping over them, while goats try to trap the tiger so it cannot move.',
|
||||
tags: ['strategy', 'two-player', 'board-game', 'traditional', 'nepal', 'asymmetric'],
|
||||
component: BagchalGame
|
||||
},
|
||||
{
|
||||
id: 'craps-game',
|
||||
title: 'Craps: An Exploration',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue