atakB1 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # atakB1
  2. if $ARGS[0] = 'atak':
  3. cla
  4. !!payment hit dodge
  5. poSp = speedV * 20 / 100
  6. uvAg = agil * 20 / 100
  7. poBox = reactV * 20 / 100
  8. uvBox = react * 20 / 100
  9. popad = rand(reactV - poBox, reactV + poBox) + rand(speedV - poSp, speedV + poSp) + bonusShV
  10. uvorot = rand(react - uvBox, react + uvBox) + rand(agil - uvAg, agil + uvAg)
  11. uvorKoef = uvorot * 50 / 100
  12. popKoef = popad * 50 / 100
  13. if popad > uvorot:
  14. if popad >= uvorot + uvorKoef:
  15. !!Crete, very direct hit
  16. '<b><font color="green">critical hits</font></b>'
  17. gs 'atakB1', 'uronKrit'
  18. else
  19. !!normal hit
  20. !!attack the enemy
  21. '<b><font color="green">Contact</font></b>'
  22. gs 'atakB1', 'uron'
  23. end
  24. else
  25. '<b><font color="red">is washed</font></b>'
  26. end
  27. end
  28. if $ARGS[0] = 'uronKrit':
  29. cla
  30. damDef = defenceV / 100
  31. damKoef = damDef * 20 / 100
  32. damage = rand(damDef + damKoef, damDef + damKoef * 2)
  33. gs 'atakB1', 'damage'
  34. end
  35. if $ARGS[0] = 'uron':
  36. cla
  37. damDef = defenceV / 100
  38. damKoef = damDef * 20 / 100
  39. damage = rand(damDef - damKoef, damDef + damKoef)
  40. gs 'atakB1', 'damage'
  41. end
  42. if $ARGS[0] = 'damage':
  43. cla
  44. if defence <= 0 and klon <= 0 and unmaterial <= 0 and barier <= 0:
  45. if dospeh > 0:damage -= dospehDefV & dospehEn -= 1
  46. if damage < 0:damage = 0
  47. health -= damage
  48. !!manna -= damageM
  49. if eleShV > 0:
  50. stun = rand(eleShV, eleShV * 3)
  51. '<b><font color="red">Protection of the enemy paralyze you <<stun>> rounds</font></b>'
  52. end
  53. '<b><font color="red">Protection of the enemy caused you damage <<damage>> units</font></b>'
  54. !!'<b><font color="red">caused damage your manna <<damageM>> units</font></b>'
  55. if zerkalo > 0:
  56. zerkalo -= 1
  57. defenceV -= damage
  58. '<b><font color="green">You are reflected damage from the defense and protection of the enemy received <<damage>> points of damage</font></b>'
  59. end
  60. !!xgt 'fight', 'sta'
  61. end
  62. if defence > 0 and klon <= 0 and unmaterial <= 0:
  63. !!damSum = damage + damageM
  64. !!defence -= damSum
  65. defence -= damage
  66. '<b><font color="red">your defense harmed <<damage>> units from the defense</font></b>'
  67. !!xgt 'fight', 'sta'
  68. end
  69. if klon > 0 and unmaterial <= 0:
  70. klon -= 1
  71. '<b><font color="red">destroy your clone</font></b>'
  72. !!xgt 'fight', 'sta'
  73. end
  74. if unmaterial > 0:
  75. unmaterial -= 1
  76. '<b><font color="green">Beat the defense went through you. YOU is not material</font></b>'
  77. !!xgt 'fight', 'sta'
  78. end
  79. if barier > 0:
  80. !!imeniteta barrier for damage
  81. if barier >= damage:
  82. '<b><font color="green">You can easily withstand the impact of the defense</font></b>'
  83. !!xgt 'fight', 'sta'
  84. else
  85. !!manna -= damageM
  86. !!health -= damage
  87. health -= damage
  88. if eleShV > 0:
  89. stun = rand(eleShV, eleShV * 3)
  90. '<b><font color="red">Protection of the enemy paralyze you <<stun>> rounds</font></b>'
  91. end
  92. '<b><font color="red">You have harmed <<damage>> units from the defense</font></b>'
  93. !!'<b><font color="red">caused damage your manna <<damageM>> units</font></b>'
  94. if zerkalo > 0:
  95. zerkalo -= 1
  96. defenceV -= damage
  97. '<b><font color="green">You are repelled enemy damage and protection received <<damage>> points of damage</font></b>'
  98. end
  99. end
  100. !!xgt 'fight', 'sta'
  101. end
  102. end
  103. --- atakB1 ---------------------------------