FightE.qsrc 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # FightE
  2. $resultUderDinE = {
  3. *clr & cla
  4. if Aktiv > Passiv:
  5. pointE += 1
  6. KuE += 1
  7. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
  8. '<<$nameE>> successfully grabs hold of you.'
  9. act 'Continue':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/fu1.jpg"></center>'
  14. '<<$nameE>> can''t do anything as you''re able to reverse.'
  15. act 'Continue':stoper = 0 & gt 'fightE3'
  16. elseif Aktiv = Passiv:
  17. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.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. $resultBrosDinE = {
  23. *clr & cla
  24. if Aktiv > Passiv:
  25. pointE += 2
  26. lustwE += 1
  27. KbE += 1
  28. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
  29. '<<$nameE>> successfully mounted you.'
  30. act 'Continue':stoper = 0 & gt 'fightE2'
  31. elseif Aktiv < Passiv:
  32. point += 1
  33. Kz += 1
  34. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
  35. '<<$nameE>> can''t do anything as you''re able to reverse.'
  36. act 'Continue':stoper = 0 & gt 'fightE3'
  37. elseif Aktiv = Passiv:
  38. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  39. 'The two of you try to one up each other without being able to gain the superiority.'
  40. act 'Finish':gt $curloc
  41. end
  42. }
  43. !!You are on the bottom of the abdomen -10%
  44. !!opponent top
  45. koef = 90
  46. koefE = 100
  47. rMin -= 1
  48. stoper += 1
  49. !! gs locations/city/citycenter/gym/kickboxing/ ... I do not know what should be here
  50. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  51. 'You''re lying on your back, while <<$nameE>> has mounted you.'
  52. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  53. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  54. if stoper < 3:
  55. if rMin > 0:
  56. deystrand = rand(0, 1)
  57. if deystrand = 0:
  58. dynamic $uderdinE
  59. dynamic $resultUderDinE
  60. exit
  61. elseif deystrand = 1:
  62. dynamic $brosdinE
  63. dynamic $resultBrosDinE
  64. exit
  65. end
  66. else
  67. 'The referee blows the whistle and tells you to stand up. End of round.'
  68. act 'up':gt 'RoundEnd'
  69. end
  70. elseif stoper >= 3:
  71. point += 1
  72. 'The referee blows the whistle and tells you to stand up. <<nameE>>''s failed with her offence. You receive a point.'
  73. act 'up':gt 'RoundStop'
  74. end
  75. --- FightE ---------------------------------