123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- # FightCrouch
- !!rMin -= 1
- gs 'fightStat'
- stoper = 0
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cro.jpg"></center>'
- if crouch = 1:
- enrand = rand(0, 1)
- if enrand = 0:$text = '<<$nameE>> prizhimetsya to the floor'
- if enrand = 1:$text = '<<$nameE>> trying to roll over on his back'
- if enrand = 2:$text = '<<$nameE>> tries to counter roll'
- '<<$nameE>> is on all fours in front of you.'
- act 'produce cast':
- cls
- endur -= 2
- 'You are trying to make a throw. <<$text>>'
- if enrand = 0:
- pointE += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
- 'Opponent managed pressed to the floor and you can not perform a roll.'
- act '...':gt 'fightfw'
- elseif enrand = 1:
- point += 2
- endurE -= 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
- 'You have intercepted an attempt to rival roll over and roll performed.'
- act '...':gt 'fight1'
- end
- end
- act 'Make an attempt to hold':
- cls
- endur -= 1
- 'You are attempting to hold. <<$text>>'
- if enrand = 0:
- point += 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
- 'Opponent is pressed to the floor and you will easily manage to fix it.'
- act '...':gt 'fight2'
- elseif enrand = 1:
- pointE += 1
- endurE -= 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
- 'Opponent flipped onto his back did not hold you to spend dvavaya.'
- act '...':gt 'fight3'
- elseif enrand = 2:
- ''
- end
- end
- else
- enrand = rand(0, 1)
- if enrand = 0:$text = '<<$nameE>> tries to throw'
- if enrand = 1:$text = '<<$nameE>> trying to make an attempt to hold'
- 'You are standing on all fours in front of rival.'
- act 'Pressed to the floor':
- cls
- 'You pressed to the floor. <<$text>>'
- if enrand = 0:
- point += 1
- endurE -= 2
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cron.jpg"></center>'
- 'Opponent has no time to attempt a shot.'
- act '...':gt 'fightE'
- elseif enrand = 1:
- pointE += 1
- endurE -= 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crou.jpg"></center>'
- 'Opponent successfully a hold.'
- act '...':gt 'fightE1'
- end
- end
- act 'Upside down on your back':
- cls
- endur -= 1
- 'You are trying to roll over on his back. <<$text>>'
- if enrand = 0:
- pointE += 2
- endurE -= 2
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/crob.jpg"></center>'
- 'Opponent easily captures and holds you throw.'
- act '...':gt 'fightE2'
- elseif enrand = 1:
- point += 1
- endurE -= 1
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/cronu.jpg"></center>'
- 'You pull out of the seizure of the opponent and turn on the back.'
- act '...':gt 'fightE3'
- end
- end
- end
- --- FightCrouch ---------------------------------
|