1
0

fightFW.qsrc 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # fightFW
  2. $resultUderDin = {
  3. if Aktiv > Passiv:
  4. point += 1
  5. Ku += 1
  6. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
  7. 'You''ve successfully mounted your opponent.'
  8. act '...':stoper = 0 & gt 'fight2'
  9. elseif Aktiv < Passiv:
  10. pointE += 1
  11. KzE += 1
  12. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
  13. 'You''re not able to do anything as your opponent counters.'
  14. act '...':stoper = 0 & gt 'fight3'
  15. elseif Aktiv = Passiv:
  16. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  17. 'The two of you try to one up each other without being able to gain the superiority.'
  18. act '...':gt $curloc
  19. end
  20. }
  21. $resultBrosDin = {
  22. if Aktiv > Passiv:
  23. point += 2
  24. lustw += 1
  25. Kb += 1
  26. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
  27. 'You''ve successfully mounted your opponent.'
  28. act '...':stoper = 0 & gt 'fight1'
  29. elseif Aktiv < Passiv:
  30. pointE += 1
  31. KzE += 1
  32. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
  33. 'You''re not able to counter your opponent.'
  34. act '...':stoper = 0 & gt 'fight3'
  35. elseif Aktiv = Passiv:
  36. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  37. 'The two of you try to one up each other without being able to gain the superiority.'
  38. act '...':gt $curloc
  39. end
  40. }
  41. !!you top
  42. !!opponent lying on his stomach -10%
  43. koef = 100
  44. koefE = 90
  45. rMin -= 1
  46. stoper += 1
  47. gs 'fightStat'
  48. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  49. '<<$nameE>> is lying on her stomach, while you''ve mount her. <<$nameE>> is trying to wriggle out.'
  50. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  51. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  52. if stoper < 3:
  53. if rMin > 0:
  54. act 'Make an attempt to choke':
  55. cls
  56. dynamic $uderdin
  57. dynamic $resultUderDin
  58. end
  59. act 'Make an attempt to throw':
  60. cls
  61. dynamic $brosdin
  62. dynamic $resultBrosDin
  63. end
  64. else
  65. 'The referee blows the whistle and tells you to stand up. End of round.'
  66. act 'up':gt 'RoundEnd'
  67. end
  68. elseif stoper >= 3:
  69. pointE += 1
  70. 'The referee blows the whistle and tells you to stand up. You''ve failed with your offence. <<$nameE>> receives one point.'
  71. act 'up':gt 'RoundStop'
  72. end
  73. --- fightFW ---------------------------------