12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- # fight3
- $resultUderDin = {
- if Aktiv > Passiv:
- point += 1
- Ku += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
- 'You have successfully commit rival'
- act '...':stoper = 0 & gt 'fight2'
- ! if Aktiv <= Passiv:
- else
- pointE += 1
- KzE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
- 'You can not do anything about my opponent breaks lock.'
- act '...':gt 'RoundStop'
- end
- }
- $resultBrosDin = {
- if Aktiv > Passiv:
- point += 2
- lustw += 1
- Kb += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
- 'You have successfully throw the opponent'
- act '...':stoper = 0 & gt 'fight1'
- ! if Aktiv <= Passiv:
- else
- pointE +=1
- KzE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
- 'You can not do anything about my opponent breaks lock.'
- act '...':gt 'RoundStop'
- end
- }
- !!you top
- !!opponent bottom facing you
- koef = 100
- koefE = 100
- rMin -= 1
- stoper += 1
- gs 'fightStat'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3.jpg"></center>'
- '<<$nameE>> supine, while you sit on top of it. <<$nameE>> trying to throw you off the.'
- if endur <= 0 or lustw <= 0:gt 'SubLoss'
- if endurE <= 0 or lustwE <= 0:gt 'SubWin'
- if stoper < 3:
- if rMin > 0:
- act 'Make an attempt to hold':
- cls
- dynamic $uderdin
- dynamic $resultUderDin
- end
- act 'Make an attempt to throw':
- cls
- dynamic $brosdin
- dynamic $resultBrosDin
- end
- else
- 'The referee blows a whistle and throws you. End of round.'
- act 'up':gt 'RoundEnd'
- end
- elseif stoper >= 3:
- pointE += 1
- 'The referee blows a whistle and throws you. Your time to attack happened. <<$nameE>> receives one point.'
- act 'Get up':gt 'RoundStop'
- end
- --- fight3 ---------------------------------
|