fightFW 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # fightFW
  2. $resultUderDin = {
  3. if Aktiv > Passiv:
  4. point += 1
  5. Ku += 1
  6. '<center><img src="images/pic/fight/fu.jpg"></center>'
  7. 'You have successfully commit rival'
  8. act '...':stoper = 0 & gt 'fight2'
  9. end
  10. if Aktiv < Passiv:
  11. pointE += 1
  12. KzE += 1
  13. '<center><img src="images/pic/fight/fu1.jpg"></center>'
  14. 'You can not do anything about my opponent flips.'
  15. act '...':stoper = 0 & gt 'fight3'
  16. end
  17. if Aktiv = Passiv:
  18. '<center><img src="images/pic/fight/f.jpg"></center>'
  19. 'You have two little turns and you are struggling without success.'
  20. act '...':gt $curloc
  21. end
  22. }
  23. $resultBrosDin = {
  24. if Aktiv > Passiv:
  25. point += 2
  26. lustw += 1
  27. Kb += 1
  28. '<center><img src="images/pic/fight/fb.jpg"></center>'
  29. 'You have successfully throw the opponent'
  30. act '...':stoper = 0 & gt 'fight1'
  31. end
  32. if Aktiv < Passiv:
  33. pointE += 1
  34. KzE += 1
  35. '<center><img src="images/pic/fight/fu1.jpg"></center>'
  36. 'You can not do anything about my opponent turned over on his back.'
  37. act '...':stoper = 0 & gt 'fight3'
  38. end
  39. if Aktiv = Passiv:
  40. '<center><img src="images/pic/fight/f.jpg"></center>'
  41. 'You have two little turns and you are struggling without success.'
  42. act '...':gt $curloc
  43. end
  44. }
  45. !!you top
  46. !!opponent lying on his stomach -10%
  47. koef = 100
  48. koefE = 90
  49. rMin -= 1
  50. stoper += 1
  51. gs 'fightStat'
  52. '<center><img src="images/pic/fight/f.jpg"></center>'
  53. '<<$nameE>> lying on his stomach, while you sit on top of it. <<$nameE>> trying to wriggle out.'
  54. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  55. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  56. if stoper < 3:
  57. if rMin > 0:
  58. act 'Make an attempt to hold':
  59. cls
  60. dynamic $uderdin
  61. dynamic $resultUderDin
  62. end
  63. act 'Make an attempt to throw':
  64. cls
  65. dynamic $brosdin
  66. dynamic $resultBrosDin
  67. end
  68. else
  69. 'Refferi blows a whistle and throws you. End of round.'
  70. act 'up':gt 'RoundEnd'
  71. end
  72. end
  73. if stoper >= 3:
  74. pointE += 1
  75. 'Refferi blows a whistle and throws you. Your time to attack happened. <<$nameE>> receives one point.'
  76. act 'up':gt 'RoundStop'
  77. end
  78. --- FightFW ---------------------------------