fight2.qsrc 1.7 KB

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