FightCrouch 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # FightCrouch
  2. !!rMin -= 1
  3. gs 'fightStat'
  4. stoper = 0
  5. '<center><img src="images/pic/fight/cro.jpg"></center>'
  6. if crouch = 1:
  7. enrand = rand(0, 1)
  8. if enrand = 0:$text = '<<$nameE>> prizhimetsya to the floor'
  9. if enrand = 1:$text = '<<$nameE>> trying to roll over on his back'
  10. if enrand = 2:$text = '<<$nameE>> tries to counter roll'
  11. '<<$nameE>> is on all fours in front of you.'
  12. act 'produce cast':
  13. cls
  14. endur -= 2
  15. 'You are trying to make a throw. <<$text>>'
  16. if enrand = 0:
  17. pointE += 1
  18. '<center><img src="images/pic/fight/cron.jpg"></center>'
  19. 'Opponent managed pressed to the floor and you can not perform a roll.'
  20. act '...':gt 'fightfw'
  21. end
  22. if enrand = 1:
  23. point += 2
  24. endurE -= 1
  25. '<center><img src="images/pic/fight/crob.jpg"></center>'
  26. 'You have intercepted an attempt to rival roll over and roll performed.'
  27. act '...':gt 'fight1'
  28. end
  29. end
  30. act 'Make an attempt to hold':
  31. cls
  32. endur -= 1
  33. 'You are attempting to hold. <<$text>>'
  34. if enrand = 0:
  35. point += 1
  36. '<center><img src="images/pic/fight/crou.jpg"></center>'
  37. 'Opponent is pressed to the floor and you will easily manage to fix it.'
  38. act '...':gt 'fight2'
  39. end
  40. if enrand = 1:
  41. pointE += 1
  42. endurE -= 1
  43. '<center><img src="images/pic/fight/cronu.jpg"></center>'
  44. 'Opponent flipped onto his back did not hold you to spend dvavaya.'
  45. act '...':gt 'fight3'
  46. end
  47. if enrand = 2:''
  48. end
  49. else
  50. enrand = rand(0, 1)
  51. if enrand = 0:$text = '<<$nameE>> tries to throw'
  52. if enrand = 1:$text = '<<$nameE>> trying to make an attempt to hold'
  53. 'You are standing on all fours in front of rival.'
  54. act 'Pressed to the floor':
  55. cls
  56. 'You pressed to the floor. <<$text>>'
  57. if enrand = 0:
  58. point += 1
  59. endurE -= 2
  60. '<center><img src="images/pic/fight/cron.jpg"></center>'
  61. 'Opponent has no time to attempt a shot.'
  62. act '...':gt 'fightE'
  63. end
  64. if enrand = 1:
  65. pointE += 1
  66. endurE -= 1
  67. '<center><img src="images/pic/fight/crou.jpg"></center>'
  68. 'Opponent successfully a hold.'
  69. act '...':gt 'fightE1'
  70. end
  71. end
  72. act 'Upside down on your back':
  73. cls
  74. endur -= 1
  75. 'You are trying to roll over on his back. <<$text>>'
  76. if enrand = 0:
  77. pointE += 2
  78. endurE -= 2
  79. '<center><img src="images/pic/fight/crob.jpg"></center>'
  80. 'Opponent easily captures and holds you throw.'
  81. act '...':gt 'fightE2'
  82. end
  83. if enrand = 1:
  84. point += 1
  85. endurE -= 1
  86. '<center><img src="images/pic/fight/cronu.jpg"></center>'
  87. 'You pull out of the seizure of the opponent and turn on the back.'
  88. act '...':gt 'fightE3'
  89. end
  90. end
  91. end
  92. --- FightCrouch ---------------------------------