053_atakB 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # atakB
  2. if $ARGS[0] = 'atak':
  3. cla
  4. !расчет попадания уворота
  5. set poSp = speed * 20 / 100
  6. set uvAg = agilV * 20 / 100
  7. set poBox = react * 20 / 100
  8. set uvBox = reactV * 20 / 100
  9. set popad = rand(react - poBox, react + poBox) + rand(speed - poSp, speed + poSp) + bonusSh
  10. set uvorot = rand(reactV - uvBox, reactV + uvBox) + rand(agilV - uvAg, agilV + uvAg)
  11. set uvorKoef = uvorot * 50 / 100
  12. set popKoef = popad * 50 / 100
  13. if popad > uvorot:
  14. if popad >= uvorot + uvorKoef:
  15. !крит, очень точное попадание
  16. '<b><font color="green">critical hits</font></b>'
  17. gs 'atakB', 'uronKrit'
  18. end
  19. if popad < uvorot + uvorKoef:
  20. !нормальное попадание
  21. !атаковал противник
  22. '<b><font color="green">Contact</font></b>'
  23. gs 'atakB', 'uron'
  24. end
  25. end
  26. if popad <= uvorot:'<b><font color="red">is washed</font></b>'
  27. end
  28. if $ARGS[0] = 'uronKrit':
  29. cla
  30. set damDef = defence/100
  31. set damKoef = damDef * 20/100
  32. set damage = rand(damDef + damKoef, damDef + damKoef * 2)
  33. gs 'atakB', 'damage'
  34. end
  35. if $ARGS[0] = 'uron':
  36. cla
  37. set damDef = defence / 100
  38. set damKoef = damDef * 20 / 100
  39. set damage = rand(damDef - damKoef, damDef + damKoef)
  40. gs 'atakB', 'damage'
  41. end
  42. if $ARGS[0] = 'damage':
  43. cla
  44. if defenceV <= 0 and klonV <= 0 and unmaterialV <= 0 and barierV <= 0:
  45. if dospehV > 0:set damageV -= dospehDefV & set dospehEn -= 1
  46. if damage < 0:set damage = 0
  47. set healthV -= damage
  48. !set manna -= damageM
  49. if eleSh > 0:
  50. set stunV = rand(eleSh, eleSh * 3)
  51. '<b><font color="green"><<$nameV>> paralyzed <<stunV>> rounds</font></b>'
  52. end
  53. '<b><font color="green">You have caused damage <<damage>> units</font></b>'
  54. !'<b><font color="red">caused damage your manna <<damageM>> units</font></b>'
  55. if zerkaloV > 0:
  56. set zerkaloV -= 1
  57. set defence -= damage
  58. '<b><font color="red"><<$nameV>> reflected the damage and your defense has received <<damage>> points of damage</font></b>'
  59. end
  60. !xgt 'fight', 'sta'
  61. end
  62. if defenceV > 0 and klonV <= 0 and unmaterialV <= 0:
  63. !set damSum = damage + damageM
  64. !set defence -= damSum
  65. set defenceV -= damage
  66. '<b><font color="green">caused damage to your defense <<damage>> Protection of the enemy units</font></b>'
  67. !xgt 'fight', 'sta'
  68. end
  69. if klonV > 0 and unmaterialV <= 0:
  70. set klonV -= 1
  71. '<b><font color="green">Destroyed enemy clone</font></b>'
  72. !xgt 'fight', 'sta'
  73. end
  74. if unmaterialV > 0:
  75. set unmaterialV -= 1
  76. '<b><font color="red">Blow your protection passed through the body of the opponent. Opponents do not materials</font></b>'
  77. !xgt 'fight', 'sta'
  78. end
  79. if barierV > 0:
  80. !барьер именитета для урона
  81. if barierV >= damage:
  82. '<b><font color="red"><<$nameV>> easily withstood kick your protection</font></b>'
  83. !xgt 'fight', 'sta'
  84. end
  85. if barierV < damage:
  86. !set manna -= damageM
  87. !set health -= damage
  88. set healthV -= damage
  89. if eleSh > 0:
  90. set stunV = rand(eleSh, eleSh * 3)
  91. '<b><font color="green"><<$nameV>> paralyzed <<stunV>> rounds</font></b>'
  92. end
  93. '<b><font color="green">caused damage to your defense <<damage>> units</font></b>'
  94. !'<b><font color="red">caused damage your manna <<damageM>> units</font></b>'
  95. if zerkaloV > 0:
  96. set zerkaloV -= 1
  97. set defence -= damage
  98. '<b><font color="red">Enemy reflected damage and your defense received <<damage>> points of damage</font></b>'
  99. end
  100. end
  101. !xgt 'fight', 'sta'
  102. end
  103. end
  104. --- atakB ---------------------------------