12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # fight1
- menu_off = 1
- $resultUderDin = {
- if Aktiv > Passiv:
- point += 1
- Ku += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u.jpg"></center>'
- 'You''ve successfully mounted your opponent.'
- act '...':stoper = 0 & gt 'fight2'
- elseif Aktiv < Passiv:
- pointE += 1
- KzE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u1.jpg"></center>'
- 'You''re not able to do anything as your opponent counters.'
- act '...':stoper = 0 & gt 'fight3'
- elseif Aktiv = Passiv:
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1u2.jpg"></center>'
- 'The two of you try to one up each other without being able to gain the superiority.'
- act '...':gt $curloc
- end
- }
- !!you top
- !!opponent lies on his back after throwing -15%
- koef = 100
- koefE = 85
- rMin -= 1
- stoper += 1
- gs 'fightStat'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f1.jpg"></center>'
- '<<$nameE>> is lying on her back after you''ve successfully mounted her. She''s a bit confused, while you sit on top of her. <<$nameE>> is trying to wriggle out.'
- 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
- else
- 'The referee blows the whistle and tells you to stand up. End of round.'
- act 'up':gt 'RoundEnd'
- end
- elseif stoper >= 3:
- pointE += 1
- 'The referee blows the whistle and tells you to stand up. You''ve failed with your offence. <<$nameE>> receives one point.'
- act 'Get up':gt 'RoundStop'
- end
- --- fight1 ---------------------------------
|