123456789101112131415161718192021222324252627 |
- gs 'fightStat'
- stoper = 0
- if crouch = 1 and croonce = 0:
- crouch = 0 & croonce = 1
- end
- if crouch = 0 and croonce = 0:
- crouch = 1 & croonce = 1
- end
- croonce = 0
- if crouch = 1:
- $text='Stand your opponent on all fours, and you catch him from behind.'
- end
- if crouch = 0:
- $text='You get up on all fours, and your opponent to catch him from behind.'
- end
- 'The referee raises you with an opponent and commands. <<$text>>'
- act 'Follow the instructions referees':
- gt 'FightCrouch'
- end
|