hhaos

Untitled

Apr 5th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.48 KB | None | 0 0
  1. local mobWhitelist = {}
  2. local mobBlacklist = {}
  3. local attackStrategems = {}
  4. local battlerageStrategems = {}
  5.  
  6. if system.hunting.defs ~= nil then
  7. mobWhitelist = system.hunting.defs.mobWhitelist or {}
  8. mobBlacklist = system.hunting.defs.mobBlacklist or {}
  9. attackStrategems = system.hunting.defs.attackStrategems or {}
  10. battlerageStrategems = system.hunting.defs.battlerageStrategems or {}
  11. end
  12.  
  13. system.hunting.defs = {
  14. ["separator"] = "/",
  15.  
  16. ["afflictionDuration"] = {
  17. ["sensitivity"] = 8.5,
  18. ["amnesia"] = 10.5,
  19. ["recklessness"] = 14.5,
  20. ["weakness"] = 6.5,
  21. ["fear"] = 8.5,
  22. ["aeon"] = 6.5,
  23. ["clumsiness"] = 7.5,
  24. ["inhibit"] = 9.5,
  25. ["charm"] = 5.5,
  26. ["stun"] = 4.5
  27. },
  28.  
  29. ["classRage"] = {
  30. ["air elemental"] = {
  31. light = {
  32. name = "bolt",
  33. com = "manifest bolt &tar"
  34. },
  35. heavy = {
  36. name = "pressurewave",
  37. com = "manifest pressurewave &tar"
  38. },
  39. raze = {
  40. name = "drill",
  41. com = "manifest drill &tar"
  42. },
  43. synergy = {
  44. name = "compress",
  45. aff1 = "sensitivity",
  46. aff2 = "stun",
  47. com = "aero compress &tar"
  48. },
  49. aff1 = {
  50. name = "suffocate",
  51. aff = "weakness",
  52. com = "aero suffocate &tar"
  53. },
  54. aff2 = {
  55. name = "vacuum",
  56. aff = "inhibit",
  57. com = "manifest vacuum &tar"
  58. }
  59. },
  60. ["alchemist"] = {
  61. light = {
  62. name = "miasma",
  63. com = "throw miasma at &tar"
  64. },
  65. heavy = {
  66. name = "magnesium",
  67. com = "educe magnesium &tar"
  68. },
  69. raze = {
  70. name = "caustic",
  71. com = "throw caustic at &tar"
  72. },
  73. synergy = {
  74. name = "pathogen",
  75. aff1 = "inhibit",
  76. aff2 = "fear",
  77. com = "throw pathogen at &tar"
  78. },
  79. aff1 = {
  80. name = "cadmium",
  81. aff = "weakness",
  82. com = "educe cadmium &tar"
  83. },
  84. aff2 = {
  85. name = "hypnotic",
  86. aff = "amnesia",
  87. com = "throw hypnotic at &tar"
  88. }
  89. },
  90. ["apostate"] = {
  91. light = {
  92. name = "convulsions",
  93. com = "stare &tar convulsions"
  94. },
  95. heavy = {
  96. name = "burrow",
  97. com = "daegger burrow &tar"
  98. },
  99. raze = {
  100. name = "pierce",
  101. com = "daegger pierce &tar"
  102. },
  103. synergy = {
  104. name = "bloodlet",
  105. aff1 = "sensitivity",
  106. aff2 = "stun",
  107. com = "bloodlet &tar"
  108. },
  109. aff1 = {
  110. name = "horrify",
  111. aff = "fear",
  112. com = "stare &tar horrify"
  113. },
  114. aff2 = {
  115. name = "possess",
  116. aff = "charm",
  117. com = "possess &tar"
  118. }
  119. },
  120. ["bard"] = {
  121. light = {
  122. name = "moulinet",
  123. com = "moulinet &tar"
  124. },
  125. heavy = {
  126. name = "howlslash",
  127. com = "howlslash &tar"
  128. },
  129. raze = {
  130. name = "resonance",
  131. com = "play resonance at &tar"
  132. },
  133. synergy = {
  134. name = "cyclone",
  135. aff1 = "stun",
  136. aff2 = "clumsiness",
  137. com = "cyclone &tar"
  138. },
  139. aff1 = {
  140. name = "trill",
  141. aff = "amnesia",
  142. com = "play trill at &tar"
  143. },
  144. aff2 = {
  145. name = "charm",
  146. aff = "charm",
  147. com = "play charm at &tar"
  148. }
  149.  
  150. system.hunting.defs.attackStrategems["black dragon"] = {
  151. ["dam"] =
  152. function()
  153. if system.hunting.funcs.hasShield() then
  154. return "blast &tar"
  155. else
  156. if gmcp.Char.Vitals.wp and tonumber(gmcp.Char.Vitals.ep) < 1000 then
  157. return "summon acid" .. system.hunting.defs.separator .. "incantation &tar"
  158. else
  159. return "summon acid" .. system.hunting.defs.separator .. "gut &tar"
  160. end
  161. end
  162. end,
  163.  
  164. ["rageblade"] =
  165. function()
  166. if system.hunting.funcs.hasShield() then
  167. return "blast &tar"
  168. else
  169. return "wield 159574" .. system.hunting.defs.separator .. "jab &tar"
  170. end
  171. end
  172. }
  173. ["blue dragon"] = {
  174. light = {
  175. name = "dragonchill",
  176. com = "dragonchill &tar"
  177. },
  178. heavy = {
  179. name = "override",
  180. com = "override &tar"
  181. },
  182. raze = {
  183. name = "frostrive",
  184. com = "frostrive &tar"
  185. },
  186. synergy = {
  187. name = "frostwave",
  188. aff1 = "amnesia",
  189. aff2 = "recklessness",
  190. com = "frostwave &tar"
  191. },
  192. aff1 = {
  193. name = "glaciate",
  194. aff = "stun",
  195. com = "glaciate &tar"
  196. },
  197. aff2 = {
  198. name = "ague",
  199. aff = "clumsiness",
  200. com = "ague &tar"
  201. }
  202. },
  203.  
  204. ["depthswalker"] = {
  205. light = {
  206. name = "drain",
  207. com = "shadow drain &tar"
  208. },
  209. heavy = {
  210. name = "lash",
  211. com = "shadow lash &tar"
  212. },
  213. raze = {
  214. name = "nakail",
  215. com = "intone nakail &tar"
  216. },
  217. synergy = {
  218. name = "erasure",
  219. aff1 = "weakness",
  220. aff2 = "amnesia",
  221. com = "chrono erasure &tar"
  222. },
  223. aff1 = {
  224. name = "curse",
  225. aff = "aeon",
  226. com = "chrono curse &tar"
  227. },
  228. aff2 = {
  229. name = "boinad",
  230. aff = "charm",
  231. com = "intone boinad &tar"
  232. }
  233. },
  234.  
  235. ["druid"] = {
  236. light = {
  237. name = "strangle",
  238. com = "strangle &tar"
  239. },
  240. heavy = {
  241. name = "ravage",
  242. com = "ravage &tar"
  243. },
  244. raze = {
  245. name = "vinecrack",
  246. com = "vinecrack &tar"
  247. },
  248. synergy = {
  249. name = "sear",
  250. aff1 = "recklessness",
  251. aff2 = "stun",
  252. com = "sear &tar"
  253. },
  254. aff1 = {
  255. name = "redeem",
  256. aff = "weakness",
  257. com = "reclamation redeem &tar"
  258. },
  259. aff2 = {
  260. name = "glare",
  261. aff = "clumsiness",
  262. com = "qstaff glare &tar"
  263. }
  264. },
  265.  
  266. ["earth elemental"] = {
  267. light = {
  268. name = "smash",
  269. com = "terran smash &tar"
  270. },
  271. heavy = {
  272. name = "flurry",
  273. com = "terran flurry &tar"
  274. },
  275. raze = {
  276. name = "charge",
  277. com = "terran charge &tar"
  278. },
  279. synergy = {
  280. name = "magmaburst",
  281. aff1 = "clumsiness",
  282. aff2 = "recklessness",
  283. com = "manifest magmaburst &tar"
  284. },
  285. aff1 = {
  286. name = "rockfall",
  287. aff = "stun",
  288. com = "manifest rockfall &tar"
  289. },
  290. special = {
  291. name = "rampart",
  292. com = "terran rampart &tar"
  293. }
  294. },
  295.  
  296. ["fire elemental"] = {
  297. light = {
  298. name = "engulf",
  299. com = "manifest engulf &tar"
  300. },
  301. heavy = {
  302. name = "devastation",
  303. com = "manifest devastation &tar"
  304. },
  305. raze = {
  306. name = "wires",
  307. com = "manifest wires &tar"
  308. },
  309. synergy = {
  310. name = "cataclysm",
  311. aff1 = "stun",
  312. aff2 = "recklessness",
  313. com = "manifest cataclysm &tar"
  314. },
  315. aff1 = {
  316. name = "scourge",
  317. aff = "sensitivity",
  318. com = "manifest scourge &tar"
  319. },
  320. special = {
  321. name = "searingbonds",
  322. com = "manifest bonds &tar"
  323. }
  324. },
  325.  
  326. ["golden dragon"] = {
  327. light = {
  328. name = "overwhelm",
  329. com = "overwhelm &tar"
  330. },
  331. heavy = {
  332. name = "psiblast",
  333. com = "psiblast &tar"
  334. },
  335. raze = {
  336. name = "psishatter",
  337. com = "psishatter &tar"
  338. },
  339. synergy = {
  340. name = "psistorm",
  341. aff1 = "weakness",
  342. aff2 = "stun",
  343. com = "psistorm &tar"
  344. },
  345. aff1 = {
  346. name = "deaden",
  347. aff = "aeon",
  348. com = "deaden &tar"
  349. },
  350. aff2 = {
  351. name = "psidaze",
  352. aff = "amnesia",
  353. com = "psidaze &tar"
  354. }
  355. },
  356. ["green dragon"] = {
  357. light = {
  358. name = "dragonspit",
  359. com = "dragonspit &tar"
  360. },
  361. heavy = {
  362. name = "override",
  363. com = "override &tar"
  364. },
  365. raze = {
  366. name = "deteriorate",
  367. com = "deteriorate &tar"
  368. },
  369. synergy = {
  370. name = "slaver",
  371. aff1 = "sensitivity",
  372. aff2 = "clumsiness",
  373. com = "slaver &tar"
  374. },
  375. aff1 = {
  376. name = "scour",
  377. aff = "inhibit",
  378. com = "scour &tar"
  379. },
  380. aff2 = {
  381. name = "dragonsap",
  382. aff = "weakness",
  383. com = "dragonsap &tar"
  384. }
  385. },
  386. ["infernal"] = {
  387. light = {
  388. name = "ravage",
  389. com = "ravage &tar"
  390. },
  391. heavy = {
  392. name = "spike",
  393. com = "spike &tar"
  394. },
  395. raze = {
  396. name = "shiver",
  397. com = "shiver &tar"
  398. },
  399. synergy = {
  400. name = "hellstrike",
  401. aff1 = "fear",
  402. aff2 = "recklessness",
  403. com = "hellstrike &tar"
  404. },
  405. special = {
  406. name = "soulshield",
  407. com = "soulshield"
  408. },
  409. special2 = {
  410. name = "deathlink",
  411. com = "deathlink &tar"
  412. }
  413. },
  414. ["jester"] = {
  415. light = {
  416. name = "noogie",
  417. com = "noogie &tar"
  418. },
  419. heavy = {
  420. name = "ensconce",
  421. com = "ensconce firecracker on &tar"
  422. },
  423. raze = {
  424. name = "jacks",
  425. com = "throw jacks at &tar"
  426. },
  427. synergy = {
  428. name = "befuddle",
  429. aff1 = "amnesia",
  430. aff2 = "aeon",
  431. com = "befuddle &tar"
  432. },
  433. aff1 = {
  434. name = "dustthrow",
  435. aff = "inhibit",
  436. com = "dustthrow &tar"
  437. },
  438. aff2 = {
  439. name = "rap",
  440. aff = "stun",
  441. com = "rap &tar"
  442. }
  443. },
  444. ["magi"] = {
  445. light = {
  446. name = "windlash",
  447. com = "cast windlash at &tar"
  448. },
  449. heavy = {
  450. name = "squeeze",
  451. com = "golem squeeze &tar"
  452. },
  453. raze = {
  454. name = "disintegrate",
  455. com = "cast disintegrate at &tar"
  456. },
  457. synergy = {
  458. name = "firefall",
  459. aff1 = "recklessness",
  460. aff2 = "clumsiness",
  461. com = "cast firefall at &tar"
  462. },
  463. aff1 = {
  464. name = "dilation",
  465. aff = "aeon",
  466. com = "cast dilation at &tar"
  467. },
  468. aff2 = {
  469. name = "stormbolt",
  470. aff = "sensitivity",
  471. com = "cast stormbolt at &tar"
  472. }
  473. },
  474. ["monk"] = {
  475. light = {
  476. name = "spinningbackfist",
  477. com = "sbp &tar"
  478. },
  479. heavy = {
  480. name = "tornadokick",
  481. com = "tnk &tar"
  482. },
  483. raze = {
  484. name = "splinterkick",
  485. com = "spk &tar"
  486. },
  487. synergy = {
  488. name = "mindblast",
  489. aff1 = "weakness",
  490. aff2 = "sensitivity",
  491. com = "mind blast &tar"
  492. },
  493. aff1 = {
  494. name = "scramble",
  495. aff = "clumsiness",
  496. com = "mind scramble &tar"
  497. },
  498. aff2 = {
  499. name = "ripplestrike",
  500. aff = "inhibit",
  501. com = "rpst &tar"
  502. }
  503. },
  504. ["occultist"] = {
  505. light = {
  506. name = "harry",
  507. com = "harry &tar"
  508. },
  509. heavy = {
  510. name = "chaosgate",
  511. com = "chaosgate &tar"
  512. },
  513. raze = {
  514. name = "ruin",
  515. com = "ruin &tar"
  516. },
  517. synergy = {
  518. name = "fluctuate",
  519. aff1 = "fear",
  520. aff2 = "amnesia",
  521. com = "fluctuate &tar"
  522. },
  523. aff1 = {
  524. name = "temperance",
  525. aff = "charm",
  526. com = "temper &tar"
  527. },
  528. aff2 = {
  529. name = "stagnate",
  530. aff = "aeon",
  531. com = "stagnate &tar"
  532. }
  533. },
  534. ["paladin"] = {
  535. light = {
  536. name = "harrow",
  537. com = "harrow &tar"
  538. },
  539. heavy = {
  540. name = "shock",
  541. com = "perform rite of shock at &tar"
  542. },
  543. raze = {
  544. name = "faithrend",
  545. com = "faithrend &tar"
  546. },
  547. synergy = {
  548. name = "punishment",
  549. aff1 = "weakness",
  550. aff2 = "clumsiness",
  551. com = "perform rite of punishment at &tar"
  552. },
  553. special = {
  554. name = "regeneration",
  555. com = "perform rite of regeneration"
  556. },
  557. special2 = {
  558. name = "recovery",
  559. com = "perform recovery &tar"
  560. }
  561. },
  562. ["priest"] = {
  563. light = {
  564. name = "torment",
  565. com = "angel torment &tar"
  566. },
  567. heavy = {
  568. name = "desolation",
  569. com = "perform rite of desolation on &tar"
  570. },
  571. raze = {
  572. name = "crack",
  573. com = "crack &tar"
  574. },
  575. synergy = {
  576. name = "hammer",
  577. aff1 = "clumsiness",
  578. aff2 = "amnesia",
  579. com = "hammer &tar"
  580. },
  581. aff1 = {
  582. name = "incense",
  583. aff = "recklessness",
  584. com = "angel incense &tar"
  585. },
  586. aff2 = {
  587. name = "horrify",
  588. aff = "fear",
  589. com = "perform rite of horrify on &tar"
  590. }
  591. },
  592. ["psion"] = {
  593. light = {
  594. name = "barbedblade",
  595. com = "weave barbedblade &tar"
  596. },
  597. heavy = {
  598. name = "devastate",
  599. com = "psi devastate &tar"
  600. },
  601. raze = {
  602. name = "pulverise",
  603. com = "weave pulverise &tar"
  604. },
  605. synergy = {
  606. name = "whirlwind",
  607. aff1 = "inhibit",
  608. aff2 = "stun",
  609. com = "weave whirlwind &tar"
  610. },
  611. aff1 = {
  612. name = "regrowth",
  613. aff = "inhibit",
  614. com = "enact regrowth &tar"
  615. },
  616. aff2 = {
  617. name = "terror",
  618. aff = "fear",
  619. com = "psi terror &tar"
  620. }
  621. },
  622. ["red dragon"] = {
  623. light = {
  624. name = "overwhelm",
  625. com = "overwhelm &tar"
  626. },
  627. heavy = {
  628. name = "dragonblaze",
  629. com = "dragonblaze &tar"
  630. },
  631. raze = {
  632. name = "melt",
  633. com = "melt &tar"
  634. },
  635. synergy = {
  636. name = "flamebath",
  637. aff1 = "sensitivity",
  638. aff2 = "clumsiness",
  639. com = "flamebath &tar"
  640. },
  641. aff1 = {
  642. name = "dragontaunt",
  643. aff = "recklessness",
  644. com = "dragontaunt &tar"
  645. },
  646. aff2 = {
  647. name = "scorch",
  648. aff = "inhibit",
  649. com = "scorch &tar"
  650. }
  651. },
  652. ["runewarden"] = {
  653. light = {
  654. name = "collide",
  655. com = "collide &tar"
  656. },
  657. heavy = {
  658. name = "onslaught",
  659. com = "onslaught &tar"
  660. },
  661. raze = {
  662. name = "fragment",
  663. com = "fragment &tar"
  664. },
  665. synergy = {
  666. name = "etch",
  667. aff1 = "aeon",
  668. aff2 = "stun",
  669. com = "etch rune at &tar"
  670. },
  671. special = {
  672. name = "bulwark",
  673. com = "bulwark"
  674. },
  675. special2 = {
  676. name = "safeguard",
  677. com = "safeguard &tar"
  678. }
  679. },
  680. ["sentinel"] = {
  681. light = {
  682. name = "pester",
  683. com = "pester &tar"
  684. },
  685. heavy = {
  686. name = "skewer",
  687. com = "skewer &tar"
  688. },
  689. raze = {
  690. name = "bore",
  691. com = "bore &tar"
  692. },
  693. synergy = {
  694. name = "swarm",
  695. aff1 = "aeon",
  696. aff2 = "inhibit",
  697. com = "swarm &tar"
  698. },
  699. aff1 = {
  700. name = "tame",
  701. aff = "charm",
  702. com = "charm &tar"
  703. },
  704. aff2 = {
  705. name = "goad",
  706. aff = "recklessness",
  707. com = "goad &tar"
  708. }
  709. },
  710. ["serpent"] = {
  711. light = {
  712. name = "thrash",
  713. com = "thrash &tar"
  714. },
  715. heavy = {
  716. name = "throatrip",
  717. com = "throatrip &tar"
  718. },
  719. raze = {
  720. name = "excoriate",
  721. com = "excoriate &tar"
  722. },
  723. synergy = {
  724. name = "snare",
  725. aff1 = "recklessness",
  726. aff2 = "inhibit",
  727. com = "snare &tar"
  728. },
  729. aff1 = {
  730. name = "flagellate",
  731. aff = "sensitivity",
  732. com = "flagellate &tar"
  733. },
  734. aff2 = {
  735. name = "obliviate",
  736. aff = "amnesia",
  737. com = "obliviate &tar"
  738. }
  739. },
  740. ["shaman"] = {
  741. light = {
  742. name = "corruption",
  743. com = "curse &tar corruption"
  744. },
  745. heavy = {
  746. name = "haemorrhage",
  747. com = "curse &tar haemorrhage"
  748. },
  749. raze = {
  750. name = "vulnerability",
  751. com = "curse &tar vulnerability"
  752. },
  753. synergy = {
  754. name = "vurus",
  755. aff1 = "sensitivity",
  756. aff2 = "amnesia",
  757. com = "invoke vurus &tar"
  758. },
  759. aff1 = {
  760. name = "korkma",
  761. aff = "fear",
  762. com = "invoke korkma &tar"
  763. },
  764. aff2 = {
  765. name = "cesaret",
  766. aff = "recklessness",
  767. com = "invoke cesaret &tar"
  768. }
  769. },
  770. ["silver dragon"] = {
  771. light = {
  772. name = "overwhelm",
  773. com = "overwhelm &tar"
  774. },
  775. heavy = {
  776. name = "dragonspark",
  777. com = "dragonspark &tar"
  778. },
  779. raze = {
  780. name = "splinter",
  781. com = "splinter &tar"
  782. },
  783. synergy = {
  784. name = "stormflare",
  785. aff1 = "amnesia",
  786. aff2 = "fear",
  787. com = "stormflare &tar"
  788. },
  789. aff1 = {
  790. name = "sizzle",
  791. aff = "sensitivity",
  792. com = "sizzle &tar"
  793. },
  794. aff2 = {
  795. name = "galvanize",
  796. aff = "recklessness",
  797. com = "galvanize &tar"
  798. }
  799. },
  800. ["sylvan"] = {
  801. light = {
  802. name = "torrent",
  803. com = "cast torrent at &tar"
  804. },
  805. heavy = {
  806. name = "stonevine",
  807. com = "stonevine &tar"
  808. },
  809. raze = {
  810. name = "pierce",
  811. com = "pierce &tar"
  812. },
  813. synergy = {
  814. name = "leechroot",
  815. aff1 = "inhibit",
  816. aff2 = "weakness",
  817. com = "leechroot &tar"
  818. },
  819. aff1 = {
  820. name = "sandstorm",
  821. aff = "fear",
  822. com = "cast sandstorm at &tar"
  823. },
  824. aff2 = {
  825. name = "rockshot",
  826. aff = "amnesia",
  827. com = "cast rockshot at &tar"
  828. }
  829. },
  830. ["water elemental"] = {
  831. light = {
  832. name = "icicles",
  833. com = "manifest icicles &tar"
  834. },
  835. heavy = {
  836. name = "needlerain",
  837. com = "manifest needlerain &tar"
  838. },
  839. raze = {
  840. name = "aquahammer",
  841. com = "manifest aquahammer &tar"
  842. },
  843. synergy = {
  844. name = "waterfall",
  845. aff1 = "weakness",
  846. aff2 = "aeon",
  847. com = "manifest waterfall &tar"
  848. },
  849. aff1 = {
  850. name = "dehydrate",
  851. aff = "clumsiness",
  852. com = "manifest dehydrate &tar"
  853. },
  854. special = {
  855. name = "swell",
  856. com = "manifest swell &tar"
  857. }
  858. }
  859. },
  860.  
  861. ["rageInfo"] = {
  862. ["light"] = {
  863. cost = 14, cooldown = 16
  864. },
  865. ["heavy"] = {
  866. cost = 36, cooldown = 23
  867. },
  868. ["raze"] = {
  869. cost = 17, cooldown = 0
  870. },
  871. ["synergy"] = {
  872. cost = 25, cooldown = 23
  873. },
  874. ["aeon"] = {
  875. cost = 24, cooldown = 35
  876. },
  877. ["amnesia"] = {
  878. cost = 28, cooldown = 41
  879. },
  880. ["charm"] = {
  881. cost = 32, cooldown = 43
  882. },
  883. ["clumsiness"] = {
  884. cost = 14, cooldown = 23
  885. },
  886. ["fear"] = {
  887. cost = 29, cooldown = 34
  888. },
  889. ["inhibit"] = {
  890. cost = 18, cooldown = 25
  891. },
  892. ["recklessness"] = {
  893. cost = 18, cooldown = 19
  894. },
  895. ["sensitivity"] = {
  896. cost = 25, cooldown = 27
  897. },
  898. ["stun"] = {
  899. cost = 26, cooldown = 33
  900. },
  901. ["weakness"] = {
  902. cost = 22, cooldown = 31
  903. },
  904. ["special_earth elemental"] = {
  905. cost = 30, cooldown = 40
  906. },
  907. ["special_fire elemental"] = {
  908. cost = 30, cooldown = 42
  909. },
  910. ["special_infernal"] = {
  911. cost = 20, cooldown = 37
  912. },
  913. ["special2_infernal"] = {
  914. cost = 30, cooldown = 43
  915. },
  916. ["special_paladin"] = {
  917. cost = 33, cooldown = 53
  918. },
  919. ["special2_paladin"] = {
  920. cost = 31, cooldown = 44
  921. },
  922. ["special_runewarden"] = {
  923. cost = 28, cooldown = 45
  924. },
  925. ["special2_runewarden"] = {
  926. cost = 35, cooldown = 57
  927. },
  928. ["special_water elemental"] = {
  929. cost = 30, cooldown = 42
  930. }
  931. },
  932.  
  933. ["globalBlacklist"] = {
  934. "a crystalline golem",
  935. "a fiery efreeti",
  936. "a water weird",
  937. "a mature racing snail",
  938. "an adolescent racing snail",
  939. "a sharp-toothed gremlin",
  940. "a bloodleech",
  941. "a simpering sycophant",
  942. "a chaos hound",
  943. "a chaos storm",
  944. "a humbug",
  945. "a withered crone",
  946. "a doppleganger",
  947. "a green slime",
  948. "an eldritch abomination",
  949. "a bubonis",
  950. "an ethereal firelord",
  951. "a pathfinder"
  952. },
  953.  
  954. ["mobWhitelist"] = mobWhitelist,
  955. ["mobBlacklist"] = mobBlacklist,
  956. ["attackStrategems"] = attackStrategems,
  957. ["battlerageStrategems"] = battlerageStrategems,
  958. }
Add Comment
Please, Sign In to add comment