12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- # fightFW
- $resultUderDin = {
- if Aktiv > Passiv:
- point += 1
- Ku += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
- 'You''ve successfully mounted your opponent.'
- act 'Continue':stoper = 0 & gt 'fight2'
- elseif Aktiv < Passiv:
- pointE += 1
- KzE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
- 'You''re not able to do anything as your opponent counters.'
- act 'Continue':stoper = 0 & gt 'fight3'
- elseif Aktiv = Passiv:
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
- 'The two of you try to one up each other without being able to gain the superiority.'
- act 'Finish':gt $curloc
- end
- }
- $resultBrosDin = {
- if Aktiv > Passiv:
- point += 2
- lustw += 1
- Kb += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
- 'You''ve successfully mounted your opponent.'
- act 'Continue':stoper = 0 & gt 'fight1'
- elseif Aktiv < Passiv:
- pointE += 1
- KzE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
- 'You''re not able to counter your opponent.'
- act 'Continue':stoper = 0 & gt 'fight3'
- elseif Aktiv = Passiv:
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
- 'The two of you try to one up each other without being able to gain the superiority.'
- act 'Finish':gt $curloc
- end
- }
- !!you top
- !!opponent lying on his stomach -10%
- koef = 100
- koefE = 90
- rMin -= 1
- stoper += 1
- gs 'fightStat'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
- '<<$nameE>> is lying on her stomach, while you''ve mount 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 choke':
- cls
- dynamic $uderdin
- dynamic $resultUderDin
- end
- act 'Make an attempt to throw':
- cls
- dynamic $brosdin
- dynamic $resultBrosDin
- 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 'up':gt 'RoundStop'
- end
- --- fightFW ---------------------------------
|