fight2.qsrc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # fight2
  2. $resultUderDin = {
  3. endurE -= 2
  4. if Aktiv >= Passiv:
  5. point += 1
  6. lustwE -= 1
  7. Ku += 1
  8. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
  9. 'You''re successfully holding your opponent.'
  10. act '...':gt 'fight2'
  11. elseif Aktiv < Passiv:
  12. pointE += 1
  13. KzE += 1
  14. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
  15. 'You''re not able to do anything as your opponent counters.'
  16. act '...':stoper = 0 & gt 'fight3'
  17. elseif Aktiv = Passiv:
  18. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
  19. 'The two of you try to one up each other without being able to gain the superiority.'
  20. act '...':gt $curloc
  21. end
  22. }
  23. !!you have committed opponent
  24. !!you sit on top
  25. !!opponent lying on his stomach under you -20%
  26. koef = 100
  27. koefE = 80
  28. lustwE -= 1
  29. rMin -= 1
  30. stoper += 1
  31. gs 'fightStat'
  32. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2.jpg"></center>'
  33. '<<$nameE>> lies beneath you. <<$nameE>> is desperately trying to slip out of your hold.'
  34. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  35. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  36. if stoper < 3:
  37. if rMin > 0:
  38. act 'hold_On':
  39. cls
  40. dynamic $uderdin
  41. dynamic $resultUderDin
  42. end
  43. else
  44. 'The referee blows the whistle and tells you to stand up. End of round.'
  45. act 'up':gt 'RoundEnd'
  46. end
  47. elseif stoper >= 3:
  48. point += 3
  49. 'The referee blows the whistle and tells you to stand up. You''re successful in your attack. For this you get rewarded 3 points.'
  50. act 'Get up':gt 'RoundStop'
  51. end
  52. --- fight2 ---------------------------------