fight3 1.7 KB

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