045_before 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # before
  2. !Miscalculation of events at the beginning of round.
  3. !Who protection, clones
  4. set knife = 0
  5. set knifeV = 0
  6. set BonusAtak = 0
  7. set BonusDef = 0
  8. set BonusAtakV = 0
  9. set BonusDefV = 0
  10. !set stunner = 0
  11. !set stunnerV = 0
  12. kisamePro = 0
  13. set round += 1
  14. if tuman > 0:'<font color="green">The battlefield covers your fog. Apparently, he still hold <<tuman>> moves.</font>'
  15. if tumanV > 0:'<font color="red">The battlefield fog covers the enemy. Apparently, he still hold <<tumanV>> moves.</font>'
  16. if stun > 0:'<font color="red">Are you still unable to move.</font>'
  17. if stunV > 0:'<font color="green"><<$nameV>> is still unable to move.</font>'
  18. if unmaterialV > 0:
  19. set unmaterialV -= 1
  20. set mannaV -= 20
  21. end
  22. if unmaterial > 0:
  23. set unmaterial -= 1
  24. set manna -= 20
  25. '<font color="green">You do not stand another materiality maximum <<unmaterial>> moves.</font>'
  26. end
  27. if klon > 0:'<font color="green">You <<klon>> clones that will protect you in case of attack.</font>'
  28. if poison > 0:
  29. set healthV -= poison
  30. '<font color="green"><<$nameV>> becomes poisoned and <<poison>> units of life.</font>'
  31. set poison -= 1
  32. end
  33. if poisonV > 0:
  34. set health -= poisonV
  35. '<font color="red">You are poisoned and lose <<poisonV>> units of life.</font>'
  36. set poisonV -= 1
  37. end
  38. if blood > 0:
  39. set healthV -= blood
  40. '<font color="green"><<$nameV>> becomes <<blood>> units of life from bleeding.</font>'
  41. set blood -= 1
  42. if blood < 0:set blood = 0
  43. end
  44. if bloodV > 0:
  45. set health -= bloodV
  46. '<font color="red">You lose <<bloodV>> units of life from bleeding.</font>'
  47. set bloodV -= 1
  48. if bloodV < 0:set bloodV = 0
  49. end
  50. if dospehEnV <= 0 and dospehV > 0:
  51. set dospehEnV = 0
  52. set dospehV = 0
  53. set dospehDefV = 0
  54. set dospehVesV = 0
  55. '<font color="green">Armor enemy destroyed.</font>'
  56. end
  57. if dospehEn <= 0 and dospeh > 0:
  58. set dospehEn = 0
  59. set dospeh = 0
  60. set dospehDef = 0
  61. set dospehVes = 0
  62. '<font color="red">Your armor destroyed.</font>'
  63. end
  64. if initBonusA > 0:set initBonusA = 0
  65. --- before ---------------------------------