12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- # FightE
- $resultUderDinE={
- cls
- if Aktiv>Passiv:
- pointE+=1
- KuE+=1
- '<center><img src="pic/fight/fu.jpg" ></center>'
- '<<$nameE>> successfully captures you'
- act '...':stoper=0>'fightE1'
- end
- if Aktiv<Passiv:
- point+=1
- Kz+=1
- '<center><img src="pic/fight/fu1.jpg" ></center>'
- '<<$nameE>> you can not do anything and you turn.'
- act '...':stoper=0>'fightE3'
- end
- if Aktiv=Passiv:
- '<center><img src="pic/fight/f.jpg" ></center>'
- 'You have two little turns and you are struggling without success.'
- act '...':gt $curloc
- end
- }
- $resultBrosDinE={
- cls
- if Aktiv>Passiv:
- pointE+=2
- lustwE+=1
- KbE+=1
- '<center><img src="pic/fight/fb.jpg" ></center>'
- '<<$nameE>> successfully throws you'
- act '...':stoper=0>'fightE2'
- end
- if Aktiv<Passiv:
- point+=1
- Kz+=1
- '<center><img src="pic/fight/fu1.jpg" ></center>'
- '<<$nameE>> you can not do anything and you turn.'
- act '...':stoper=0>'fightE3'
- end
- if Aktiv=Passiv:
- '<center><img src="pic/fight/f.jpg" ></center>'
- 'You have two little turns and you are struggling without success.'
- act '...':gt $curloc
- end
- }
- !You are on the bottom of the abdomen -10%
- !opponent top
- koef=90
- koefE=100
- rMin-=1
- stoper+=1
- gs'fightStat'
- '<center><img src="pic/fight/f.jpg" ></center>'
- 'You lie on your stomach below, and <<$nameE>> sits on 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
- end
- if deystrand=1:
- dynamic $brosdinE
- dynamic $resultBrosDinE
- exit
- end
-
- else
- 'Refferi blows a whistle and throws you. End of round.'
- act 'up':gt'RoundEnd'
- end
- end
- if stoper>=3:
- point+=1
- 'Refferi blows a whistle and throws you. Time rivals to attack happened. You get one point.'
- act 'up':gt'RoundStop'
- end
- --- FightE ---------------------------------
|