12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # FightE1
- $resultUderDinE = {
- cls
- endur -= 2
- if Aktiv > Passiv:
- pointE += 1
- lustw -= 1
- KuE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u.jpg"></center>'
- '<<$nameE>> successfully grabs hold of you.'
- act 'Continue':gt 'fightE1'
- elseif Aktiv < Passiv:
- point += 1
- Kz += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2u2.jpg"></center>'
- '<<$nameE>> can''t do anything as you''re able to reverse.'
- act 'Continue':stoper = 0 & gt 'fightE3'
- else
- '<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 -20%
- !!Opponent top a hold
- koef = 80
- koefE = 100
- lustw -= 1
- rMin -= 1
- stoper += 1
- gs 'fightStat'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/f2.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:
- dynamic $uderdinE
- dynamic $resultUderDinE
- exit
- else
- 'The referee blows the whistle and tells you to stand up. End of round.'
- act 'up':gt 'RoundEnd'
- end
- elseif stoper >= 3:
- pointE += 3
- 'The referee blows the whistle and tells you to stand up. <<nameE>> recives 3 points for successful defence.'
- act 'up':gt 'RoundStop'
- end
- --- FightE1 ---------------------------------
|