1
0

FightE2.qsrc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # FightE2
  2. $resultUderDinE = {
  3. cls
  4. if Aktiv > Passiv:
  5. pointE += 1
  6. KuE += 1
  7. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
  8. '<<$nameE>> successfully locks you in a hold.'
  9. act '...':stoper = 0 & gt 'fightE1'
  10. elseif Aktiv < Passiv:
  11. point += 1
  12. Kz += 1
  13. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
  14. '<<$nameE>> can''t do anything as you''re able to reverse.'
  15. act '...':stoper = 0 & gt 'fightE3'
  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 '...':gt $curloc
  20. end
  21. }
  22. !!You from the bottom on the back after throwing -15%
  23. !!opponent top
  24. koef = 85
  25. koefE = 100
  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. 'You lie on your back a bit thrown off by the lock as <<$nameE>> mounts you.'
  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. dynamic $uderdinE
  36. dynamic $resultUderDinE
  37. exit
  38. else
  39. 'The referee blows the whistle and tells you to stand up. End of round.'
  40. act 'up':gt 'RoundEnd'
  41. end
  42. elseif stoper >= 3:
  43. point += 1
  44. 'The referee blows the whistle and tells you to stand up. <<nameE>>''s failed with her offence. You receive a point.'
  45. act 'up':gt 'RoundStop'
  46. end
  47. --- FightE2 ---------------------------------