This commit is contained in:
gpt-engineer-app[bot] 2026-01-12 09:39:02 +00:00
parent dee3482dfa
commit 55c01cea33
4 changed files with 744 additions and 0 deletions

View file

@ -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',