Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
mascent edited this page Dec 29, 2014 · 3 revisions

The deck is made ot of 36 cards: 6-10, J, Q, K, Ace of every color (hearts, clubs, spades, diamonds).

the cards are decoded by integer numbers from -1 to 35 (wich means 37 card types which is one more then are actuall cards in the game)

they are decoded by following pattern:

  • -1: empty place in deck/hand

hearts:

  • 0: 6
  • 1: 7
  • 2: 8
  • 3: 9
  • 4: 10
  • 5: J
  • 6: Q
  • 7: K
  • 8: Ace

diamonds:

  • 9: 6
  • 10: 7
  • 11: 8
  • 12: 9
  • 13: 10
  • 14: J
  • 15: Q
  • 16: K
  • 17: Ace

clubs:

  • 18: 6
  • 19: 7
  • 20: 8
  • 21: 9
  • 22: 10
  • 23: J
  • 24: Q
  • 25: K
  • 26: Ace

spades:

  • 27: 6
  • 28: 7
  • 29: 8
  • 30: 9
  • 31: 10
  • 32: J
  • 33: Q
  • 34: K
  • 35: Ace
Clone this wiki locally