FightCrouch 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. end
  45. elseif enrand = 2:
  46. ''
  47. end
  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. elseif enrand = 1:
  64. pointE += 1
  65. endurE -= 1
  66. '<center><img src="images/pic/fight/crou.jpg"></center>'
  67. 'Opponent successfully a hold.'
  68. act '...':gt 'fightE1'
  69. end
  70. end
  71. act 'Upside down on your back':
  72. cls
  73. endur -= 1
  74. 'You are trying to roll over on his back. <<$text>>'
  75. if enrand = 0:
  76. pointE += 2
  77. endurE -= 2
  78. '<center><img src="images/pic/fight/crob.jpg"></center>'
  79. 'Opponent easily captures and holds you throw.'
  80. act '...':gt 'fightE2'
  81. elseif enrand = 1:
  82. point += 1
  83. endurE -= 1
  84. '<center><img src="images/pic/fight/cronu.jpg"></center>'
  85. 'You pull out of the seizure of the opponent and turn on the back.'
  86. act '...':gt 'fightE3'
  87. end
  88. end
  89. end
  90. --- FightCrouch ---------------------------------