fight1.qsrc 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # fight1
  2. $resultUderDin = {
  3. if Aktiv > Passiv:
  4. point += 1
  5. Ku += 1
  6. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.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/f1u1.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/f1u2.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. !!you top
  22. !!opponent lies on his back after throwing -15%
  23. koef = 100
  24. koefE = 85
  25. rMin -= 1
  26. stoper += 1
  27. gs 'fightStat'
  28. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1.jpg"></center>'
  29. '<<$nameE>> is lying on her back after you''ve successfully mounted her. She''s a bit confused, while you sit on top of her. <<$nameE>> is trying to wriggle out.'
  30. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  31. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  32. if stoper < 3:
  33. if rMin > 0:
  34. act 'Make an attempt to hold':
  35. cls
  36. dynamic $uderdin
  37. dynamic $resultUderDin
  38. end
  39. else
  40. 'The referee blows the whistle and tells you to stand up. End of round.'
  41. act 'up':gt 'RoundEnd'
  42. end
  43. elseif stoper >= 3:
  44. pointE += 1
  45. 'The referee blows the whistle and tells you to stand up. You''ve failed with your offence. <<$nameE>> receives one point.'
  46. act 'Get up':gt 'RoundStop'
  47. end
  48. --- fight1 ---------------------------------