12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- # FightE3
- $resultUderDinE = {
- cls
- if Aktiv > Passiv:
- pointE += 1
- KuE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u.jpg"></center>'
- '<<$nameE>> manages to get the upper hand against you.'
- act '...':stoper = 0 & gt 'fightE1'
- elseif Aktiv <= Passiv:
- point += 1
- Kz += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
- '<<$nameE>> can''t do anything about your wriggling and you slip out of her hold.'
- act '...':gt 'RoundStop'
- end
- }
- $resultBrosDinE = {
- cls
- if Aktiv > Passiv:
- pointE += 2
- lustwE += 1
- KbE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3b.jpg"></center>'
- '<<$nameE>> successfully manages to throw you on the floor.'
- act '...':stoper = 0 & gt 'fightE2'
- elseif Aktiv <= Passiv:
- point += 1
- Kz += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3u2.jpg"></center>'
- '<<$nameE>> can''t do anything as you''re able to reverse.'
- act '...':gt 'RoundStop'
- end
- }
- !!You from the bottom on the back
- !!opponent top
- koef = 100
- koefE = 100
- rMin -= 1
- stoper += 1
- gs 'fightStat'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f3.jpg"></center>'
- 'You lie on your back, as <<$nameE>> mounted you.'
- if endur <= 0 or lustw <= 0:gt 'SubLoss'
- if endurE <= 0 or lustwE <= 0:gt 'SubWin'
- if stoper < 3:
- if rMin > 0:
- deystrand = rand(0, 1)
- if deystrand = 0:
- dynamic $uderdinE
- dynamic $resultUderDinE
- exit
- elseif deystrand = 1:
- dynamic $brosdinE
- dynamic $resultBrosDinE
- exit
- end
- else
- 'The referee blows the whistle and tells you to stand up. End of round.'
- act 'up':gt 'RoundEnd'
- end
- elseif stoper >= 3:
- point += 1
- 'The referee blows the whistle and tells you to stand up. <<nameE>>''s failed with her offence. You receive a point.'
- act 'up':gt 'RoundStop'
- end
- --- FightE3 ---------------------------------
|