spell 18 KB

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