FightE 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # FightE
  2. $resultUderDinE = {
  3. cls
  4. if Aktiv > Passiv:
  5. pointE += 1
  6. KuE += 1
  7. '<center><img src="images/pic/fight/fu.jpg"></center>'
  8. '<<$nameE>> successfully captures you'
  9. act '...':stoper = 0 & gt 'fightE1'
  10. elseif Aktiv < Passiv:
  11. point += 1
  12. Kz += 1
  13. '<center><img src="images/pic/fight/fu1.jpg"></center>'
  14. '<<$nameE>> you can not do anything and you turn.'
  15. act '...':stoper = 0 & gt 'fightE3'
  16. elseif Aktiv = Passiv:
  17. '<center><img src="images/pic/fight/f.jpg"></center>'
  18. 'You have two little turns and you are struggling without success.'
  19. act '...':gt $curloc
  20. end
  21. }
  22. $resultBrosDinE = {
  23. cls
  24. if Aktiv > Passiv:
  25. pointE += 2
  26. lustwE += 1
  27. KbE += 1
  28. '<center><img src="images/pic/fight/fb.jpg"></center>'
  29. '<<$nameE>> successfully throws you'
  30. act '...':stoper = 0 & gt 'fightE2'
  31. elseif Aktiv < Passiv:
  32. point += 1
  33. Kz += 1
  34. '<center><img src="images/pic/fight/fu1.jpg"></center>'
  35. '<<$nameE>> you can not do anything and you turn.'
  36. act '...':stoper = 0 & gt 'fightE3'
  37. elseif Aktiv = Passiv:
  38. '<center><img src="images/pic/fight/f.jpg"></center>'
  39. 'You have two little turns and you are struggling without success.'
  40. act '...':gt $curloc
  41. end
  42. }
  43. !!You are on the bottom of the abdomen -10%
  44. !!opponent top
  45. koef = 90
  46. koefE = 100
  47. rMin -= 1
  48. stoper += 1
  49. gs 'fightStat'
  50. '<center><img src="images/pic/fight/f.jpg"></center>'
  51. 'You lie on your stomach below, and <<$nameE>> sits on you.'
  52. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  53. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  54. if stoper < 3:
  55. if rMin > 0:
  56. deystrand = rand(0, 1)
  57. if deystrand = 0:
  58. dynamic $uderdinE
  59. dynamic $resultUderDinE
  60. exit
  61. elseif deystrand = 1:
  62. dynamic $brosdinE
  63. dynamic $resultBrosDinE
  64. exit
  65. end
  66. else
  67. 'The referee blows a whistle and throws you. End of round.'
  68. act 'up':gt 'RoundEnd'
  69. end
  70. elseif stoper >= 3:
  71. point += 1
  72. 'The referee blows a whistle and throws you. Time rivals to attack happened. You get one point.'
  73. act 'up':gt 'RoundStop'
  74. end
  75. --- FightE ---------------------------------