cards 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # cards
  2. clr
  3. minut += 10
  4. gs 'stat'
  5. '<right><img src="images/casino/zalcart.jpg"></right>'
  6. 'In the hall a lot of free games tables in Blackjack and Casino Wars.'
  7. act 'To the table game Blackjack':gt 'bldzh'
  8. act 'To the table games in Casino War':gt 'kazvar'
  9. act 'Back in the hall':gt 'hall'
  10. !!SYMBOLS
  11. !! ♥
  12. !! ♠
  13. !! ♦
  14. !! ♣
  15. !!deck of cards
  16. $suit[1] = 'peak'
  17. $symbol[1] = '♠'
  18. $suit[2] = 'Clubs'
  19. $symbol[2] = '♣'
  20. $suit[3] = 'worms'
  21. $symbol[3] = '♥'
  22. $suit[4] = 'tambourine'
  23. $symbol[4] = '♦'
  24. $number[1] = 'Ace'
  25. points[1] = 11
  26. $number[2] = 'Deuce'
  27. points[2] = 2
  28. $number[3] = 'Three'
  29. points[3] = 3
  30. $number[4] = 'Four'
  31. points[4] = 4
  32. $number[5] = 'Five'
  33. points[5] = 5
  34. $number[6] = 'Six'
  35. points[6] = 6
  36. $number[7] = 'Seven'
  37. points[7] = 7
  38. $number[8] = 'Eight'
  39. points[8] = 8
  40. $number[9] = 'Nine'
  41. points[9] = 9
  42. $number[10] = 'Ten'
  43. points[10] = 10
  44. $number[11] = 'Jack'
  45. points[11] = 10
  46. $number[12] = 'Lady'
  47. points[12] = 10
  48. $number[13] = 'King'
  49. points[13] = 10
  50. $number[14] = 'Ace'
  51. points[14] = 11
  52. --- cards ---------------------------------