506_RoundEnd 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # RoundEnd
  2. round+=1
  3. rMin=8
  4. stoper=0
  5. if round=Formula+1:
  6. 'The duel ended with an opponent and you call for verdict'
  7. if point>pointE:
  8. !win[1]+=1
  9. !loss[i]+=1
  10. 'The referee raises your hand as a sign of your victory.'
  11. resultFight=1
  12. end
  13. if point<pointE:
  14. !win[i]+=1
  15. !loss[1]+=1
  16. 'The referee raises his hand as a sign of its rival wins.'
  17. resultFight=3
  18. end
  19. if point=pointE:
  20. !draw[1]+=1
  21. !draw[i]+=1
  22. 'The referee raises your hand and arm rival announcing a draw.'
  23. resultFight=2
  24. end
  25. act '...':gt'EndFight'
  26. end
  27. if round<Formula+1:
  28. endur+=lustw*25/100
  29. endurE+=lustwe*25/100
  30. if crouch=1 and croonce=0:crouch=0&croonce=1
  31. if crouch=0 and croonce=0:crouch=1&croonce=1
  32. croonce=0
  33. '<center><b>The break between rounds</b></center>'
  34. if crouch=1:$text='Stand your opponent on all fours, and you catch him from behind.'
  35. if crouch=0:$text='You get up on all fours, and your opponent to catch him from behind.'
  36. 'You rest for a while and hear the whistle refferi announces the beginning of the next round.'
  37. 'referee ordered <<$text>>'
  38. act 'Follow the instructions referees':
  39. gt'FightCrouch'
  40. end
  41. end
  42. --- RoundEnd ---------------------------------