FightCrouch 2.6 KB

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