fight3.qsrc 2.2 KB

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