Fork me on GitHub

CardForest seeds

The STANDARD deck

The most common deck of fifty-two playing cards in use today, usually known as the French deck, includes thirteen ranks of each of the four French suits, clubs (♣), diamonds (♦), hearts (♥) and spades (♠), with reversible Rouennais "court" or face cards.

The Cards

AC 2C 3C 4C 5C 6C 7C 8C 9C TC JC QC KC AD 2D 3D 4D 5D 6D 7D 8D 9D TD JD QD KD AH 2H 3H 4H 5H 6H 7H 8H 9H TH JH QH KH AS 2S 3S 4S 5S 6S 7S 8S 9S TS JS QS KS

Formal Specification edit on github

Each card has a rank

Rank =
  ACE:
    $id: 'A'
  TWO:
    $id: '2'
  THREE:
    $id: '3'
  FOUR:
    $id: '4'
  FIVE:
    $id: '5'
  SIX:
    $id: '6'
  SEVEN:
    $id: '7'
  EIGHT:
    $id: '8'
  NINE:
    $id: '9'
  TEN:
    $id: 'T'
  JACK:
    $id: 'J'
  QUEEN:
    $id: 'Q'
  KING:
    $id: 'K'

and a colored suit

Color = 
  BLACK: {}
  RED:   {}

Suit = 
  CLUBS:
    $id:   'C'
    color: Color.BLACK
  DIAMONDS:
    $id:   'D'
    color: Color.RED
  HEARTS:
    $id:   'H'
    color: Color.RED
  SPADES:
    $id:   'S'
    color: Color.BLACK

that define it.

Card = {}
for suitName, suit of Suit
  for rankName, rank of Rank
    $id = "#{rank.$id}#{suit.$id}"
    Card["#{rankName}_#{suitName}"] = {$id, rank, suit, color: suit.color}

PUBLIC API

module.exports = {Rank, Color, Suit, Card}
h


Some rights reserved - read the license