fight3.qsrc 2.2 KB

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