fight3 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # fight3
  2. $resultUderDin = {
  3. if Aktiv > Passiv:
  4. point += 1
  5. Ku += 1
  6. '<center><img src="images/pic/fight/f3u.jpg"></center>'
  7. 'You have successfully commit rival'
  8. act '...':stoper = 0 & gt 'fight2'
  9. elseif Aktiv <= Passiv:
  10. pointE += 1
  11. KzE += 1
  12. '<center><img src="images/pic/fight/f3u2.jpg"></center>'
  13. 'You can not do anything about my opponent breaks lock.'
  14. act '...':gt 'RoundStop'
  15. end
  16. }
  17. $resultBrosDin = {
  18. if Aktiv > Passiv:
  19. point += 2
  20. lustw += 1
  21. Kb += 1
  22. '<center><img src="images/pic/fight/f3b.jpg"></center>'
  23. 'You have successfully throw the opponent'
  24. act '...':stoper = 0 & gt 'fight1'
  25. elseif Aktiv <= Passiv:
  26. pointE + =1
  27. KzE += 1
  28. '<center><img src="images/pic/fight/f3u2.jpg"></center>'
  29. 'You can not do anything about my opponent breaks lock.'
  30. act '...':gt 'RoundStop'
  31. end
  32. }
  33. !!you top
  34. !!opponent bottom facing you
  35. koef = 100
  36. koefE = 100
  37. rMin -= 1
  38. stoper += 1
  39. gs 'fightStat'
  40. '<center><img src="images/pic/fight/f3.jpg"></center>'
  41. '<<$nameE>> supine, while you sit on top of it. <<$nameE>> trying to throw you off the.'
  42. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  43. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  44. if stoper < 3:
  45. if rMin > 0:
  46. act 'Make an attempt to hold':
  47. cls
  48. dynamic $uderdin
  49. dynamic $resultUderDin
  50. end
  51. act 'Make an attempt to throw':
  52. cls
  53. dynamic $brosdin
  54. dynamic $resultBrosDin
  55. end
  56. else
  57. 'The referee blows a whistle and throws you. End of round.'
  58. act 'up':gt 'RoundEnd'
  59. end
  60. elseif stoper >= 3:
  61. pointE += 1
  62. 'The referee blows a whistle and throws you. Your time to attack happened. <<$nameE>> receives one point.'
  63. act 'Get up':gt 'RoundStop'
  64. end
  65. --- fight3 ---------------------------------