427_cards 1.1 KB

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