1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # RoundEnd
- round += 1
- rMin = 8
- stoper = 0
- if round = Formula + 1:
- 'The fight has ended and you and your opponent stand next to the referee awaiting the verdict.'
- if point > pointE:
- !win[1] += 1
- !loss[i] += 1
- 'The referee raises your hand as a sign of victory.'
- resultFight = 1
- elseif point < pointE:
- !win[i] += 1
- !loss[1] += 1
- 'The referee raises your opponents hand as a sign their victory.'
- resultFight = 3
- elseif point = pointE:
- !draw[1] += 1
- !draw[i] += 1
- 'The referee raises both of your hands as a sign of a draw.'
- resultFight = 2
- end
- act '...':gt 'EndFight'
- elseif round < Formula + 1:
- endur += lustw * 25 / 100
- endurE += lustwe * 25 / 100
- if crouch = 1 and croonce = 0:crouch = 0 & croonce = 1
- if crouch = 0 and croonce = 0:crouch = 1 & croonce = 1
- croonce = 0
- '<center><b>Break between rounds</b></center>'
- if crouch = 1:$text = 'They point on your opponent to go down on all fours, while you step behind and prepare yourself to grab hold.'
- if crouch = 0:$text = 'You get down on all fours, while your opponent gets ready to grab you from behind.'
- 'You manage to rest up for a while and head back in the ring as the referee blows the whistle announcing the start of the next round.'
- 'The referee blows their whistle. <<$text>>'
- act 'Follow the referee''s instruction':gt 'FightCrouch'
- end
- --- RoundEnd ---------------------------------
|