FightE3.qsrc 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # FightE3
  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/f3u.jpg"></center>'
  8. '<<$nameE>> manages to get the upper hand against you.'
  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/f3u2.jpg"></center>'
  14. '<<$nameE>> can''t do anything about your wriggling and you slip out of her hold.'
  15. act '...':gt 'RoundStop'
  16. end
  17. }
  18. $resultBrosDinE = {
  19. cls
  20. if Aktiv > Passiv:
  21. pointE += 2
  22. lustwE += 1
  23. KbE += 1
  24. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
  25. '<<$nameE>> successfully manages to throw you on the floor.'
  26. act '...':stoper = 0 & gt 'fightE2'
  27. elseif Aktiv <= Passiv:
  28. point += 1
  29. Kz += 1
  30. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
  31. '<<$nameE>> can''t do anything as you''re able to reverse.'
  32. act '...':gt 'RoundStop'
  33. end
  34. }
  35. !!You from the bottom on the back
  36. !!opponent top
  37. koef = 100
  38. koefE = 100
  39. rMin -= 1
  40. stoper += 1
  41. gs 'fightStat'
  42. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3.jpg"></center>'
  43. 'You lie on your back, as <<$nameE>> mounted you.'
  44. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  45. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  46. if stoper < 3:
  47. if rMin > 0:
  48. deystrand = rand(0, 1)
  49. if deystrand = 0:
  50. dynamic $uderdinE
  51. dynamic $resultUderDinE
  52. exit
  53. elseif deystrand = 1:
  54. dynamic $brosdinE
  55. dynamic $resultBrosDinE
  56. exit
  57. end
  58. else
  59. 'The referee blows the whistle and tells you to stand up. End of round.'
  60. act 'up':gt 'RoundEnd'
  61. end
  62. elseif stoper >= 3:
  63. point += 1
  64. 'The referee blows the whistle and tells you to stand up. <<nameE>>''s failed with her offence. You receive a point.'
  65. act 'up':gt 'RoundStop'
  66. end
  67. --- FightE3 ---------------------------------