cards.qsrc 1.1 KB

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