1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- # FightE
- $resultUderDinE = {
- *clr & cla
- if Aktiv > Passiv:
- pointE += 1
- KuE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu.jpg"></center>'
- '<<$nameE>> successfully grabs hold of you.'
- act 'Continue':stoper = 0 & gt 'fightE1'
- elseif Aktiv < Passiv:
- point += 1
- Kz += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
- '<<$nameE>> can''t do anything as you''re able to reverse.'
- act 'Continue':stoper = 0 & gt 'fightE3'
- 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
- }
- $resultBrosDinE = {
- *clr & cla
- if Aktiv > Passiv:
- pointE += 2
- lustwE += 1
- KbE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fb.jpg"></center>'
- '<<$nameE>> successfully mounted you.'
- act 'Continue':stoper = 0 & gt 'fightE2'
- elseif Aktiv < Passiv:
- point += 1
- Kz += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/fu1.jpg"></center>'
- '<<$nameE>> can''t do anything as you''re able to reverse.'
- act 'Continue':stoper = 0 & gt 'fightE3'
- 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 are on the bottom of the abdomen -10%
- !!opponent top
- koef = 90
- koefE = 100
- rMin -= 1
- stoper += 1
- !! gs locations/city/citycenter/gym/kickboxing/ ... I do not know what should be here
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f.jpg"></center>'
- 'You''re lying on your back, while <<$nameE>> has 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
- --- FightE ---------------------------------
|