1
0

FightE1.qsrc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # FightE1
  2. $resultUderDinE = {
  3. cls
  4. endur -= 2
  5. if Aktiv > Passiv:
  6. pointE += 1
  7. lustw -= 1
  8. KuE += 1
  9. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
  10. '<<$nameE>> successfully grabs hold of you.'
  11. act '...':gt 'fightE1'
  12. elseif Aktiv < Passiv:
  13. point += 1
  14. Kz += 1
  15. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
  16. '<<$nameE>> can''t do anything as you''re able to reverse.'
  17. act '...':stoper = 0 & gt 'fightE3'
  18. else
  19. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
  20. 'The two of you try to one up each other without being able to gain the superiority.'
  21. act '...':gt $curloc
  22. end
  23. }
  24. !!You are on the bottom of the abdomen -20%
  25. !!Opponent top a hold
  26. koef = 80
  27. koefE = 100
  28. lustw -= 1
  29. rMin -= 1
  30. stoper += 1
  31. gs 'fightStat'
  32. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2.jpg"></center>'
  33. 'You''re lying on your back, while <<$nameE>> has mounted you.'
  34. if endur <= 0 or lustw <= 0:gt 'SubLoss'
  35. if endurE <= 0 or lustwE <= 0:gt 'SubWin'
  36. if stoper < 3:
  37. if rMin > 0:
  38. dynamic $uderdinE
  39. dynamic $resultUderDinE
  40. exit
  41. else
  42. 'The referee blows the whistle and tells you to stand up. End of round.'
  43. act 'up':gt 'RoundEnd'
  44. end
  45. elseif stoper >= 3:
  46. pointE += 3
  47. 'The referee blows the whistle and tells you to stand up. <<nameE>> recives 3 points for successful defence.'
  48. act 'up':gt 'RoundStop'
  49. end
  50. --- FightE1 ---------------------------------