056_spell 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848
  1. # spell
  2. if $ARGS[0] = 'reset':
  3. cla
  4. !Создание тумана
  5. 'Accumulated manna <<mannaReset>> units.'
  6. act 'Absorb accumulated manna':
  7. cla
  8. *clr
  9. set manna += mannaReset
  10. set mannaReset = 0
  11. xgt 'fight', 'sta'
  12. end
  13. act 'Physical attacks':gt 'boxing'
  14. if magik > 0:
  15. act 'Magical attacks':gt 'magik'
  16. end
  17. end
  18. if $ARGS[0] = 'unmat':
  19. cla
  20. !Создание тумана
  21. 'You can become incorporeal for 30 moves, in exchange for 3,000 units Rikudo forces. This part of the force will be lost to you forever after using spells.'
  22. 'Not materiality allows you to skip through your body without getting any impact damage, while slightly reduced longevity spells.'
  23. if rikudo >= 3000:
  24. act 'Become a disembodied':
  25. cla
  26. *clr
  27. set unmaterial = 31
  28. set rikudo += 3000
  29. set mannaReset = 0
  30. xgt 'fight', 'sta'
  31. end
  32. end
  33. if rikudo < 3000:'You have too little strength Rikudo for this spell.'
  34. act 'Physical attacks':gt 'boxing'
  35. if magik > 0:
  36. act 'Magical attacks':gt 'magik'
  37. end
  38. end
  39. if $ARGS[0] = 'tuman':
  40. cla
  41. !Создание тумана
  42. if tumanV > 0:'It is not possible to impose your fog on the existing fog enemy.'
  43. if tumanV <= 0:
  44. 'Create a fog on the battlefield, the enemy closing review. Cost 10 mana.'
  45. act 'Create a fog (10 mana)':
  46. cla
  47. *clr
  48. set manna -= 10
  49. set tuman += 10
  50. gt 'fight', 'sta'
  51. end
  52. end
  53. act 'Physical attacks':gt 'boxing'
  54. if magik > 0:
  55. act 'Magical attacks':gt 'magik'
  56. end
  57. end
  58. if $ARGS[0] = 'klon':
  59. cla
  60. 'You can create a clone exactly copying you, and themselves to escape from the enemy. 15 mana cost 1 clone.'
  61. act 'Create a clone':
  62. cla
  63. *clr
  64. set manna -= 15
  65. set klon += 1
  66. gt 'fight', 'sta'
  67. end
  68. act 'Physical attacks':gt 'boxing'
  69. if magik > 0:
  70. act 'Magical attacks':gt 'magik'
  71. end
  72. end
  73. if $ARGS[0] = 'stun':
  74. cla
  75. 'You need to touch up the enemy, then he will be paralyzed. Cost 20 mana.'
  76. act 'Paralytic stroke':
  77. cla
  78. *clr
  79. set manna -= 20
  80. set stunner = 1
  81. xgt 'atak', 'player'
  82. end
  83. act 'Physical attacks':gt 'boxing'
  84. if magik > 0:
  85. act 'Magical attacks':gt 'magik'
  86. end
  87. end
  88. if $ARGS[0] = 'weap':
  89. cla
  90. 'You can invest in the magical power of the weapon increasing its damage. Cost 20 mana.'
  91. act 'Invest energy':
  92. cla
  93. *clr
  94. set manna -= 20
  95. set magweapbonus = weapbonus * 4
  96. xgt 'atak', 'player'
  97. end
  98. act 'Physical attacks':gt 'boxing'
  99. if magik > 0:
  100. act 'Magical attacks':gt 'magik'
  101. end
  102. end
  103. if $ARGS[0] = 'wind':
  104. cla
  105. 'Corrupts wind that would blow away the fog. Cost 40 mana.'
  106. act 'Apply':
  107. cla
  108. *clr
  109. set manna -= 40
  110. set tumanV = 0
  111. set tuman = 0
  112. '<b><font color="green">You sent against the wind on the battlefield and destroyed fog.</font></b>'
  113. xgt 'fight', 'sta'
  114. end
  115. act 'Physical attacks':gt 'boxing'
  116. if magik > 0:
  117. act 'Magical attacks':gt 'magik'
  118. end
  119. end
  120. if $ARGS[0] = 'klon2':
  121. cla
  122. 'You can create three clones exactly copying you, and themselves to escape from the enemy. 45 mana cost 3 clone.'
  123. act 'Create clones':
  124. cla
  125. *clr
  126. set manna -= 45
  127. set klon += 3
  128. gt 'fight', 'sta'
  129. end
  130. act 'Physical attacks':gt 'boxing'
  131. if magik > 0:
  132. act 'Magical attacks':gt 'magik'
  133. end
  134. end
  135. if $ARGS[0] = 'energo':
  136. cla
  137. 'You can create an energy shield to protect against attacks on health. 100 units of protection costs 50 mana.'
  138. act 'Create energy shield':
  139. cla
  140. *clr
  141. set manna -= 50
  142. set defence += 100
  143. '<b><font color="green">You have imposed energy shield, you now have <<defence>> protection units.</font></b>'
  144. xgt 'fight', 'sta'
  145. end
  146. act 'Physical attacks':gt 'boxing'
  147. if magik > 0:
  148. act 'Magical attacks':gt 'magik'
  149. end
  150. end
  151. if $ARGS[0] = 'init':
  152. cla
  153. 'You can create a slight slowing of time to get the advantage in speed of reaction and seize the initiative. Costs 60 mana.'
  154. act 'Create a slowdown':
  155. cla
  156. *clr
  157. set manna -= 60
  158. set initBonus = 120
  159. '<b><font color="green">You put the manna in the amplification reaction.</font></b>'
  160. xgt 'fight', 'sta'
  161. end
  162. act 'Physical attacks':gt 'boxing'
  163. if magik > 0:
  164. act 'Magical attacks':gt 'magik'
  165. end
  166. end
  167. if $ARGS[0] = 'hel':
  168. cla
  169. !Создание тумана
  170. 'Cure yourself or add 400 units of health. 400 mana cost.'
  171. act 'Treated (400 mana)':
  172. cla
  173. *clr
  174. set manna -= 400
  175. set health += 400
  176. '<b><font color="green">You put the manna in the acceleration of regenerative processes in the body.</font></b>'
  177. gt 'fight', 'sta'
  178. end
  179. act 'Physical attacks':gt 'boxing'
  180. if magik > 0:
  181. act 'Magical attacks':gt 'magik'
  182. end
  183. end
  184. if $ARGS[0] = 'hand':
  185. cla
  186. !Создание тумана
  187. 'Striking hand increases damage 10 times per attack. 100 mana cost.'
  188. act 'Striking hand (100 mana)':
  189. cla
  190. *clr
  191. set manna -= 100
  192. set strenK = stren * 20/100
  193. set magweapbonus = rand(stren * 10 - strenK, stren * 10 + strenK)
  194. '<b><font color="green">You put the manna in the palm for applying a devastating blow.</font></b>'
  195. xgt 'atak', 'player'
  196. end
  197. act 'Physical attacks':gt 'boxing'
  198. if magik > 0:
  199. act 'Magical attacks':gt 'magik'
  200. end
  201. end
  202. if $ARGS[0] = 'fire1':
  203. cla
  204. !Создание тумана
  205. 'Flame. Cost 10 mana.'
  206. act 'Flame (10 mana)':
  207. cla
  208. *clr
  209. set manna -= 10
  210. set damTip = 250
  211. '<b><font color="green">You have created a torrent of flames pouring out of your hand.</font></b>'
  212. xgt 'atakA', 'atak'
  213. end
  214. act 'Physical attacks':gt 'boxing'
  215. if magik > 0:
  216. act 'Magical attacks':gt 'magik'
  217. end
  218. end
  219. if $ARGS[0] = 'fire2':
  220. cla
  221. !Создание тумана
  222. 'Release of fire. 100 mana cost.'
  223. act 'Release of fire (100 mana)':
  224. cla
  225. *clr
  226. set manna -= 100
  227. set damTip = 2500
  228. '<b><font color="green">You have created a huge stream of fire pouring out of your hand.</font></b>'
  229. xgt 'atakA', 'atak'
  230. end
  231. act 'Physical attacks':gt 'boxing'
  232. if magik > 0:
  233. act 'Magical attacks':gt 'magik'
  234. end
  235. end
  236. if $ARGS[0] = 'fire3':
  237. cla
  238. !Создание тумана
  239. 'Fire barrier, creates a shield of 750 units. 150 mana cost.'
  240. act 'Fire barrier (150 mana)':
  241. cla
  242. *clr
  243. set manna -= 150
  244. set defence += 750
  245. '<b><font color="green">You have created a fire barrier around him, now you <<defence>> protection units.</font></b>'
  246. xgt 'fight', 'sta'
  247. end
  248. act 'Physical attacks':gt 'boxing'
  249. if magik > 0:
  250. act 'Magical attacks':gt 'magik'
  251. end
  252. end
  253. if $ARGS[0] = 'fire4':
  254. cla
  255. !Создание тумана
  256. 'Firestorm. Cost 250 mana.'
  257. act 'Firestorm (250 mana)':
  258. cla
  259. *clr
  260. set manna -= 250
  261. set damTip = 6250
  262. set bonusSh = 100
  263. '<b><font color="green">The air around you is red-hot and inflamed, a sea of ​​fire fell upon the enemy.</font></b>'
  264. xgt 'atakA', 'atak'
  265. end
  266. act 'Physical attacks':gt 'boxing'
  267. if magik > 0:
  268. act 'Magical attacks':gt 'magik'
  269. end
  270. end
  271. if $ARGS[0] = 'fire5':
  272. cla
  273. !Создание тумана
  274. 'Flame Shield creates a shield of 2,500 units. 500 mana cost.'
  275. act 'Flame Shield (500 mana)':
  276. cla
  277. *clr
  278. set manna -= 500
  279. set defence += 2500
  280. '<b><font color="green">You have created a wall of fire around it absorbs damage, you now have <<defence>> protection units.</font></b>'
  281. xgt 'fight', 'sta'
  282. end
  283. act 'Physical attacks':gt 'boxing'
  284. if magik > 0:
  285. act 'Magical attacks':gt 'magik'
  286. end
  287. end
  288. if $ARGS[0] = 'ele1':
  289. cla
  290. !Создание тумана
  291. 'Discharge. Cost 10 mana.'
  292. act 'Discharge (10 mana)':
  293. cla
  294. *clr
  295. set manna -= 10
  296. set damTip = 150
  297. set eleSh = 1
  298. '<b><font color="green">You have created an electrical discharge pouring out of your hand.</font></b>'
  299. xgt 'atakA', 'atak'
  300. end
  301. act 'Physical attacks':gt 'boxing'
  302. if magik > 0:
  303. act 'Magical attacks':gt 'magik'
  304. end
  305. end
  306. if $ARGS[0] = 'ele2':
  307. cla
  308. !Создание тумана
  309. 'Lightning. 100 mana cost.'
  310. act 'Lightning (100 mana)':
  311. cla
  312. *clr
  313. set manna -= 100
  314. set damTip = 1500
  315. set eleSh = 1
  316. '<b><font color="green">You have created a lightning rattled vystrelevshuyu from your hand.</font></b>'
  317. xgt 'atakA', 'atak'
  318. end
  319. act 'Physical attacks':gt 'boxing'
  320. if magik > 0:
  321. act 'Magical attacks':gt 'magik'
  322. end
  323. end
  324. if $ARGS[0] = 'ele3':
  325. cla
  326. !Создание тумана
  327. 'Electrical barrier creates a shield of 1,500. 150 mana cost.'
  328. act 'Electric barrier (150 mana)':
  329. cla
  330. *clr
  331. set manna -= 150
  332. set defence += 1500
  333. '<b><font color="green">You have created a wall around himself dancing lightning, you now have <<defence>> protection units.</font></b>'
  334. xgt 'fight', 'sta'
  335. end
  336. act 'Physical attacks':gt 'boxing'
  337. if magik > 0:
  338. act 'Magical attacks':gt 'magik'
  339. end
  340. end
  341. if $ARGS[0] = 'ele4':
  342. cla
  343. !Создание тумана
  344. 'Dance of thousands of birds. Cost 250 mana.'
  345. act 'Dance of thousands of birds (250 mana)':
  346. cla
  347. *clr
  348. set manna -= 250
  349. set damTip = 3750
  350. set bonusSh = 30
  351. set eleSh = 1
  352. '<b><font color="green">you have gathered the manna in the hand and danced around the palm of your hand lightning leaping through the air with shrieks.</font></b>'
  353. xgt 'atakA', 'atak'
  354. end
  355. act 'Physical attacks':gt 'boxing'
  356. if magik > 0:
  357. act 'Magical attacks':gt 'magik'
  358. end
  359. end
  360. if $ARGS[0] = 'ele5':
  361. cla
  362. !Создание тумана
  363. 'Plyaschuschaya sphere creates a shield of 5,000 units. 500 mana cost.'
  364. act 'Plyaschuschaya sphere (500 mana)':
  365. cla
  366. *clr
  367. set manna -= 500
  368. set defence += 5000
  369. '<b><font color="green">you have created around him a large sphere of lightning dancing, you now have <<defence>> protection units.</font></b>'
  370. xgt 'fight', 'sta'
  371. end
  372. act 'Physical attacks':gt 'boxing'
  373. if magik > 0:
  374. act 'Magical attacks':gt 'magik'
  375. end
  376. end
  377. if $ARGS[0] = 'ert1':
  378. cla
  379. !Создание тумана
  380. 'Quicksand trap catches the enemy in quicksand and inflicts 100 units. Cost 10 mana.'
  381. act 'Quicksand (10 mana)':
  382. cla
  383. *clr
  384. set manna -= 10
  385. set damTip = 100
  386. set eleSh = 5
  387. '<b><font color="green">you have created under enemy addictive quicksand.</font></b>'
  388. xgt 'atakA', 'atak'
  389. end
  390. act 'Physical attacks':gt 'boxing'
  391. if magik > 0:
  392. act 'Magical attacks':gt 'magik'
  393. end
  394. end
  395. if $ARGS[0] = 'ert2':
  396. cla
  397. !Создание тумана
  398. 'Active protection, creates a protective sphere of earth, stone and sand 2,500 mana and health protection, this protection is self-healing in 10 moves absorbing units 20 mana per turn. 100 mana cost.'
  399. act 'Active Protection (100 mana)':
  400. cla
  401. *clr
  402. set manna -= 100
  403. set defence += 2500
  404. set defenceM += 2500
  405. set defenceActPar = 1000
  406. set defenceActParM = 1000
  407. set defenceAct = 10
  408. set defenceActM = 10
  409. '<b><font color="green">Land surrounded you, giving you protection.</font></b>'
  410. xgt 'fight', 'sta'
  411. end
  412. act 'Physical attacks':gt 'boxing'
  413. if magik > 0:
  414. act 'Magical attacks':gt 'magik'
  415. end
  416. end
  417. if $ARGS[0] = 'ert3':
  418. cla
  419. !Создание тумана
  420. 'Abyss earth asunder underfoot enemy inflicting damage 1,500 and depriving him of the ability to move. 150 mana cost.'
  421. act 'Quicksand (150 mana)':
  422. cla
  423. *clr
  424. set manna -= 150
  425. set damTip = 1500
  426. set eleSh = 5
  427. '<b><font color="green">You are the earth underfoot opponents.</font></b>'
  428. xgt 'atakA', 'atak'
  429. end
  430. act 'Physical attacks':gt 'boxing'
  431. if magik > 0:
  432. act 'Magical attacks':gt 'magik'
  433. end
  434. end
  435. if $ARGS[0] = 'ert4':
  436. cla
  437. !Создание тумана
  438. 'Absolute protection, creates a huge protective sphere of the earth, which regenerates itself every move and attack the enemy. Cost 250 mana.'
  439. act 'Absolute protection (250 mana)':
  440. cla
  441. *clr
  442. set manna -= 250
  443. set defence += 6250
  444. set defenceM += 6250
  445. set defenceW += 6250
  446. set defenceActPar = 1000
  447. set defenceActParM = 1000
  448. set defenceActParW = 1000
  449. set defenceAct = 15
  450. set defenceActM = 15
  451. set defenceActW = 15
  452. set defAtk = 15
  453. '<b><font color="green">Land surrounded you, giving you protection.</font></b>'
  454. xgt 'fight', 'sta'
  455. end
  456. act 'Physical attacks':gt 'boxing'
  457. if magik > 0:
  458. act 'Magical attacks':gt 'magik'
  459. end
  460. end
  461. if $ARGS[0] = 'ert5':
  462. cla
  463. !Создание тумана
  464. 'Sando, two huge plates come out of the ground and collapse crushing the enemy inflicting damage to 5,000 units and depriving him of the ability to move. 500 mana cost.'
  465. act 'Sando (500 mana)':
  466. cla
  467. *clr
  468. set manna -= 500
  469. set damTip = 5000
  470. set bonusSh = 50
  471. set eleSh = 5
  472. '<b><font color="green">Two huge plate with a roar came from the earth and imploded.</font></b>'
  473. xgt 'atakA', 'atak'
  474. end
  475. act 'Physical attacks':gt 'boxing'
  476. if magik > 0:
  477. act 'Magical attacks':gt 'magik'
  478. end
  479. end
  480. if $ARGS[0] = 'wind1':
  481. cla
  482. !Создание тумана
  483. 'A gust of wind, inflicts 100 units destroys clones and fog, it is very difficult to dodge. Cost 10 mana.'
  484. act 'Wind gusts (10 mana)':
  485. cla
  486. *clr
  487. set manna -= 10
  488. set damTip = 100
  489. set bonusSh = 50
  490. '<b><font color="green">You have created a gust of wind.</font></b>'
  491. if klonV > 0:set klonV = 0 & '<b><font color="green">Clone opponent turned into steam.</font></b>'
  492. if tumanV > 0:set tumanV = 0 & '<b><font color="green">Fog enemy torn to shreds by the wind.</font></b>'
  493. xgt 'atakA', 'atak'
  494. end
  495. act 'Physical attacks':gt 'boxing'
  496. if magik > 0:
  497. act 'Magical attacks':gt 'magik'
  498. end
  499. end
  500. if $ARGS[0] = 'wind2':
  501. cla
  502. !Создание тумана
  503. 'Horrendous pressure inflicts 1,000 clones and destroys the fog is very difficult to dodge. 100 mana cost.'
  504. act 'Horrendous pressure (100 mana)':
  505. cla
  506. *clr
  507. set manna -= 100
  508. set damTip = 1000
  509. set bonusSh = 100
  510. '<b><font color="green">You are sharply raised air pressure.</font></b>'
  511. if klonV > 0:set klonV = 0 & '<b><font color="green">Clone the enemy broke and turned into steam.</font></b>'
  512. if tumanV > 0:set tumanV = 0 & '<b><font color="green">Fog enemy torn apart pressure.</font></b>'
  513. xgt 'atakA', 'atak'
  514. end
  515. act 'Physical attacks':gt 'boxing'
  516. if magik > 0:
  517. act 'Magical attacks':gt 'magik'
  518. end
  519. end
  520. if $ARGS[0] = 'wind3':
  521. cla
  522. !Создание тумана
  523. 'Vacuum sphere, creates a shield of 1,500. 150 mana cost.'
  524. act 'Vacuum sphere (150 mana)':
  525. cla
  526. *clr
  527. set manna -= 150
  528. set defence += 1500
  529. '<b><font color="green">you have created around themselves the vacuum, you now have <<defence>> protection units.</font></b>'
  530. xgt 'fight', 'sta'
  531. end
  532. act 'Physical attacks':gt 'boxing'
  533. if magik > 0:
  534. act 'Magical attacks':gt 'magik'
  535. end
  536. end
  537. if $ARGS[0] = 'wind4':
  538. cla
  539. !Создание тумана
  540. 'Vacuum shells cause damage destroys 2,500 clones and fog, it is very difficult to dodge. Cost 250 mana.'
  541. act 'Vacuum Rockets (250 mana)':
  542. cla
  543. *clr
  544. set manna -= 250
  545. set damTip = 2500
  546. set bonusSh = 100
  547. '<b><font color="green">you have created around themselves many areas and they vacuum at high speed with a whistle flew over the battlefield.</font></b>'
  548. if klonV > 0:set klonV = 0 & '<b><font color="green">Clone the enemy broke and turned into steam.</font></b>'
  549. if tumanV > 0:set tumanV = 0 & '<b><font color="green">Fog enemy torn apart pressure.</font></b>'
  550. xgt 'atakA', 'atak'
  551. end
  552. act 'Physical attacks':gt 'boxing'
  553. if magik > 0:
  554. act 'Magical attacks':gt 'magik'
  555. end
  556. end
  557. if $ARGS[0] = 'wind5':
  558. cla
  559. !Создание тумана
  560. 'Devouring vacuum sucks shield enemy destroying it whatever strength he was not. 500 mana cost.'
  561. if defenceV > 0:
  562. act 'Devouring vacuum (500 mana)':
  563. cla
  564. *clr
  565. set manna -= 500
  566. set defenceV = 0
  567. set defenceMV = 0
  568. set defenceWV = 0
  569. set defenceActParV = 0
  570. set defenceActParMV = 0
  571. set defenceActV = 0
  572. set defenceActMV = 0
  573. set defAtkMV = 0
  574. '<b><font color="green">you have created around themselves the vacuum that sucked in the defense of the enemy to destroy it.</font></b>'
  575. xgt 'fight', 'sta'
  576. end
  577. end
  578. if defenceV <= 0:'The enemy is no shield that can destroy this spell.'
  579. act 'Physical attacks':gt 'boxing'
  580. if magik > 0:
  581. act 'Magical attacks':gt 'magik'
  582. end
  583. end
  584. if $ARGS[0] = 'water1':
  585. cla
  586. !Создание тумана
  587. 'Creek manna, inflicts 100 units and 1,000 units absorbs manna. Cost 10 mana.'
  588. act 'Creek mana (10 mana)':
  589. cla
  590. *clr
  591. set manna -= 10
  592. set damTip = 100
  593. set damTipM = 1000
  594. '<b><font color="green">you have created in his hand a small stream of water which was shot at the enemy.</font></b>'
  595. xgt 'atakA', 'atak'
  596. end
  597. act 'Physical attacks':gt 'boxing'
  598. if magik > 0:
  599. act 'Magical attacks':gt 'magik'
  600. end
  601. end
  602. if $ARGS[0] = 'water2':
  603. cla
  604. !Создание тумана
  605. 'Flooding, inflicts 1,000 units and absorbs 500 units of manna. 100 mana cost.'
  606. act 'Flooding (100 mana)':
  607. cla
  608. *clr
  609. set manna -= 100
  610. set damTip = 1000
  611. set damTipM = 500
  612. '<b><font color="green">From your mouth a flood of water flooded the countryside.</font></b>'
  613. xgt 'atakA', 'atak'
  614. end
  615. act 'Physical attacks':gt 'boxing'
  616. if magik > 0:
  617. act 'Magical attacks':gt 'magik'
  618. end
  619. end
  620. if $ARGS[0] = 'water3':
  621. cla
  622. !Создание тумана
  623. 'Water bubble creates a protective sphere of water 1,500 protection from all influences, this protection is self-healing in 10 moves absorbing units 20 mana per turn. 150 mana cost.'
  624. act 'Blister (150 mana)':
  625. cla
  626. *clr
  627. set manna -= 150
  628. set defence += 1500
  629. set defenceM += 1500
  630. set defenceW += 1500
  631. set defenceActPar = 500
  632. set defenceActParM = 500
  633. set defenceAct = 10
  634. set defenceActM = 10
  635. '<b><font color="green">Water has created around you the scope of protection.</font></b>'
  636. xgt 'fight', 'sta'
  637. end
  638. act 'Physical attacks':gt 'boxing'
  639. if magik > 0:
  640. act 'Magical attacks':gt 'magik'
  641. end
  642. end
  643. if $ARGS[0] = 'water4':
  644. cla
  645. !Создание тумана
  646. 'Water shark missile inflicts 1,500 units and 2,500 units consumes mana. Cost 250 mana.'
  647. act 'Water shark missile (250 mana)':
  648. cla
  649. *clr
  650. set manna -= 250
  651. set damTip = 1500
  652. set damTipM = 2500
  653. set bonusSh = 50
  654. '<b><font color="green">You released a pack of sharks consist of water flying towards the enemy like a torpedo.</font></b>'
  655. if klonV > 0:set klonV = 0 & '<b><font color="green">Clones enemy disappeared.</font></b>'
  656. xgt 'atakA', 'atak'
  657. end
  658. act 'Physical attacks':gt 'boxing'
  659. if magik > 0:
  660. act 'Magical attacks':gt 'magik'
  661. end
  662. end
  663. if $ARGS[0] = 'water5':
  664. cla
  665. !Создание тумана
  666. 'Great flood, the water creates a huge sphere that absorbs enemy and deflating manna from it and handing it to provide increased protection. 500 mana cost.'
  667. act 'Great Flood (500 mana)':
  668. cla
  669. *clr
  670. set manna -= 500
  671. set defence += 5000
  672. set defenceM += 5000
  673. set defenceW += 5000
  674. set defenceActPar = 500
  675. set defenceActParM = 500
  676. set defenceAct = 10
  677. set defenceActM = 10
  678. set defAtkM = 10
  679. '<b><font color="green">you have filled out all the water district that protects you and devour enemy mana.</font></b>'
  680. if klonV > 0:set klonV = 0 & '<b><font color="green">Clones enemy disappeared.</font></b>'
  681. xgt 'fight', 'sta'
  682. end
  683. act 'Physical attacks':gt 'boxing'
  684. if magik > 0:
  685. act 'Magical attacks':gt 'magik'
  686. end
  687. end
  688. --- spell ---------------------------------