Skip to content

mitch-b/typedeck

Folders and files

NameName
Last commit message
Last commit date
Nov 13, 2017
Feb 11, 2018
Apr 9, 2024
Oct 24, 2018
Sep 24, 2017
Sep 24, 2017
May 11, 2020
May 9, 2020
Sep 24, 2017
Feb 11, 2018
May 9, 2020
May 9, 2020
May 9, 2020
Oct 24, 2018

Repository files navigation

TypeDeck TypeDeck

Build Status NPM version codecov dependencies Status devDependencies Status

A TypeScript library for playing cards.

Getting Started

Features

typedeck gives you types and classes to help jumpstart your card-based game.

  • Card
    • Simple card classes (PlayingCard/JokerCard)
  • Chip
    • Provided Chip classes and standard values
      • Values can be overridden, and custom Chip classes
  • Declarative Types
    • CardName: [Ace, Two, Three, ...]
    • Suit: [Clubs, Spades, Diamonds, Hearts]
  • Card collections
    • Classes that represent multiple cards as a logical item.
      • Hand - cards that belong to a player
      • CardPile - cards that are frequently drawn from or added to
      • Deck - extension of CardPile with additional game-time helpers
  • Services
    • Shuffle
      • Shuffle any ICard implementation
    • Poker Hand Scoring
      • Texas Hold Em Hand Detection
      • Winner scoring/determination
    • Chip management
      • Taking specific values
      • Creating chips from value
      • Breaking chips to get specific value
  • And so much more ... see the documentation for a full list.

Customization

Most features support parameters that implement either an interface or a base class. You can create your own type of Card that implements ICard or a Chip with special chip color values which extends Chip base class.

Credits