fight1.qsrc 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # fight1
  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/f1u.jpg"></center>'
  8. 'You''ve successfully mounted your opponent.'
  9. act 'Continue':stoper = 0 & gt 'fight2'
  10. elseif Aktiv < Passiv:
  11. pointE += 1
  12. KzE += 1
  13. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
  14. 'You''re not able to do anything as your opponent counters.'
  15. act 'Continue':stoper = 0 & gt 'fight3'
  16. elseif Aktiv = Passiv:
  17. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
  18. 'The two of you try to one up each other without being able to gain the superiority.'
  19. act 'Finish':gt $curloc
  20. end
  21. }
  22. !!you top
  23. !!opponent lies on his back after throwing -15%
  24. koef = 100
  25. koefE = 85
  26. rMin -= 1
  27. stoper += 1
  28. gs 'fightStat'
  29. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1.jpg"></center>'
  30. '<<$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.'
  31. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  32. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  33. if stoper < 3:
  34. if rMin > 0:
  35. act 'Make an attempt to hold':
  36. cls
  37. dynamic $uderdin
  38. dynamic $resultUderDin
  39. end
  40. else
  41. 'The referee blows the whistle and tells you to stand up. End of round.'
  42. act 'up':gt 'RoundEnd'
  43. end
  44. elseif stoper >= 3:
  45. pointE += 1
  46. 'The referee blows the whistle and tells you to stand up. You''ve failed with your offence. <<$nameE>> receives one point.'
  47. act 'Get up':gt 'RoundStop'
  48. end
  49. --- fight1 ---------------------------------