Advertisement
Brodaha

Untitled

Oct 6th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.95 KB | None | 0 0
  1. sigilyph: {
  2. num: 561,
  3. species: "Sigilyph",
  4. types: ["Psychic", "Flying"],
  5. baseStats: {hp: 70, atk: 58, def: 77, spa: 117, spd: 108, spe: 63},
  6. abilities: {0: "Wonder Skin", H: "Magic Guard"},
  7. heightm: 1.4,
  8. weightkg: 14,
  9. color: "Black",
  10. eggGroups: ["Flying"],
  11. },
  12.  
  13. vikavolt: {
  14. num: 738,
  15. species: "Vikavolt",
  16. types: ["Rock", "Electric"],
  17. baseStats: {hp: 77, atk: 70, def: 70, spa: 130, spd: 85, spe: 34},
  18. abilities: {0: "Levitate", H: "Technician"},
  19. heightm: 1.5,
  20. weightkg: 45,
  21. color: "Blue",
  22. eggGroups: ["Bug"],
  23. },
  24.  
  25. xurkitree: {
  26. num: 796,
  27. species: "Xurkitree",
  28. types: ["Electric"],
  29. gender: "N",
  30. baseStats: {hp: 103, atk: 89, def: 89, spa: 97, spd: 103, spe: 79},
  31. abilities: {0: "Beast Boost", H: "Electric Surge"},
  32. heightm: 3.8,
  33. weightkg: 100,
  34. color: "Black",
  35. eggGroups: ["Undiscovered"],
  36. },
  37.  
  38. genesect: {
  39. num: 649,
  40. species: "Genesect",
  41. types: ["Steel"],
  42. gender: "N",
  43. baseStats: {hp: 71, atk: 105, def: 95, spa: 105, spd: 95, spe: 99},
  44. abilities: {0: "Overdrive"},
  45. heightm: 1.5,
  46. weightkg: 82.5,
  47. color: "Purple",
  48. eggGroups: ["Undiscovered"],
  49. },
  50.  
  51. musharna: {
  52. num: 518,
  53. species: "Musharna",
  54. types: ["Fairy", "Poison"],
  55. baseStats: {hp: 100, atk: 55, def: 80, spa: 105, spd: 100, spe: 5},
  56. abilities: {0: "White Smoke", 1: "Pink Smoke", H: "Gooey"},
  57. heightm: 1.1,
  58. weightkg: 60.5,
  59. color: "Pink",
  60. eggGroups: ["Field"],
  61. },
  62.  
  63. lycanrocmidnight: {
  64. num: 745,
  65. species: "Lycanroc-Midnight",
  66. baseSpecies: "Lycanroc",
  67. forme: "Midnight",
  68. formeLetter: "M",
  69. types: ["Rock", "Ghost"],
  70. baseStats: {hp: 65, atk: 110, def: 45, spa: 115, spd: 45, spe: 100},
  71. abilities: {0: "No Guard", 1: "Lone Wolf", H: "Moxie"},
  72. heightm: 1.1,
  73. weightkg: 25,
  74. color: "Red",
  75. eggGroups: ["Field"],
  76. },
  77.  
  78. "overdrive": {
  79. desc: "If Electric Terrain is active, this Pokemon's Attacks are multiplied by 1.5 and it loses 1/8 of its maximum HP, rounded down, at the end of each turn.",
  80. shortDesc: "If Electric Terrain is active, this Pokemon's Attacks are 1.5x; loses 1/8 max HP per turn.",
  81. onModifySpAPriority: 5,
  82. onModifySpA: function (spa, pokemon) {
  83. if (this.isTerrain('electricterrain')) return this.chainModify(1.5);
  84. }
  85. },
  86. onModifyAtk: function (atk, pokemon) {
  87. if (this.isTerrain('electricterrain')) return this.chainModify(1.5);
  88. }
  89. },
  90. onTerrain: function (target, source, effect) {
  91. if (effect.id === 'electricterrain') {
  92. this.damage(target.maxhp / 8, target, target);
  93. }
  94. },
  95. id: "overdrive",
  96. name: "Overdrive",
  97. rating: 1.5,
  98. num: 94,
  99. },
  100.  
  101. "pinksmoke": {
  102. shortDesc: "This Pokemon is not affected by the secondary effect of another Pokemon's attack, and cannot be struck by a critical hit.",
  103. onModifySecondaries: function (secondaries) {
  104. this.debug('Shield Dust prevent secondary');
  105. return secondaries.filter(effect => !!(effect.self || effect.dustproof));
  106. },
  107. onCriticalHit: false,
  108. id: "pinksmoke",
  109. name: "Pink Smoke",
  110. rating: 2.5,
  111. num: 19,
  112. },
  113.  
  114. "titaniatears": {
  115. num: 500,
  116. accuracy: 100,
  117. basePower: 20,
  118. basePowerCallback: function (pokemon, target, move) {
  119. return move.basePower + 20 * pokemon.positiveBoosts();
  120. },
  121. category: "Special",
  122. desc: "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.",
  123. shortDesc: " + 20 power for each of the user's stat boosts.",
  124. id: "titaniatears",
  125. name: "Titania Tears",
  126. pp: 10,
  127. priority: 0,
  128. flags: {protect: 1, mirror: 1},
  129. secondary: null,
  130. target: "normal",
  131. type: "Fairy",
  132. zMovePower: 160,
  133. contestType: "Clever",
  134. },
  135.  
  136. "diamonddagger": {
  137. num: 348,
  138. accuracy: 85,
  139. basePower: 95,
  140. category: "Special",
  141. desc: "Has a higher chance for a critical hit.",
  142. shortDesc: "High critical hit ratio.",
  143. id: "diamonddagger",
  144. isViable: true,
  145. name: "Diamond Dagger",
  146. pp: 5,
  147. priority: 0,
  148. flags: {protect: 1, mirror: 1},
  149. critRatio: 2,
  150. secondary: null,
  151. target: "normal",
  152. type: "Rock",
  153. zMovePower: 175,
  154. contestType: "Cool",
  155. },
  156.  
  157. "lonewolf": {
  158. desc: "This Pokemon's Sp. Attack is raised by 1 stage if it attacks and knocks out another Pokemon.",
  159. shortDesc: "This Pokemon's Sp. Attack is raised by 1 stage if it attacks and KOes another Pokemon.",
  160. onSourceFaint: function (target, source, effect) {
  161. if (effect && effect.effectType === 'Move') {
  162. this.boost({spa: 1}, source);
  163. }
  164. },
  165. id: "lonewolf",
  166. name: "Lone Wolf",
  167. rating: 3.5,
  168. num: 153,
  169. },
  170.  
  171. sigilyph: {learnset: {
  172. aerialace: ["7M", "6M", "5M"],
  173. aircutter: ["7L21", "6L21", "5L21"],
  174. airslash: ["7L41", "6L41", "5L41"],
  175. ancientpower: ["7E", "6E", "5E"],
  176. attract: ["7M", "6M", "5M"],
  177. calmmind: ["7M", "6M", "5M"],
  178. chargebeam: ["7M", "6M", "5M"],
  179. confide: ["7M", "6M"],
  180. darkpulse: ["7M", "6M", "5T"],
  181. dazzlinggleam: ["7M", "6M"],
  182. defog: ["7T"],
  183. doubleteam: ["7M", "6M", "5M"],
  184. dreameater: ["7M", "6M", "5M"],
  185. energyball: ["7M", "6M", "5M"],
  186. facade: ["7M", "6M", "5M"],
  187. flash: ["6M", "5M"],
  188. flashcannon: ["7M", "6M", "5M"],
  189. fly: ["7M", "6M", "5M"],
  190. frustration: ["7M", "6M", "5M"],
  191. futuresight: ["7E", "6E"],
  192. gravity: ["7T", "7L38", "6T", "6L38", "5T", "5L38"],
  193. gust: ["7L1", "6L1", "5L1"],
  194. heatwave: ["7T", "6T", "5D", "5T"],
  195. hiddenpower: ["7M", "6M", "5M"],
  196. hyperbeam: ["7M", "6M", "5M"],
  197. hypnosis: ["7L4", "6L4", "5D", "5L4"],
  198. icebeam: ["7M", "6M", "5M"],
  199. icywind: ["7T", "6T", "5T"],
  200. lightscreen: ["7M", "7L24", "6M", "6L24", "5M", "5L24"],
  201. magiccoat: ["7T", "6T", "5T"],
  202. magicroom: ["7T", "6T", "5T"],
  203. miracleeye: ["7L1", "6L1", "5L1"],
  204. mirrormove: ["7L34", "6L34", "5L34"],
  205. pluck: ["5M"],
  206. protect: ["7M", "6M", "5M"],
  207. psybeam: ["7L18", "6L18", "5L18"],
  208. psychic: ["7M", "7L44", "6M", "6L44", "5M", "5L44"],
  209. psychoshift: ["7E", "6E", "5E"],
  210. psychup: ["7M", "6M", "5M"],
  211. psyshock: ["7M", "6M", "5M"],
  212. psywave: ["7L8", "6L8", "5L8"],
  213. raindance: ["7M", "6M", "5M"],
  214. reflect: ["7M", "7L28", "6M", "6L28", "5M", "5L28"],
  215. rest: ["7M", "6M", "5M"],
  216. return: ["7M", "6M", "5M"],
  217. roost: ["7M", "7E", "6M", "6E", "5T", "5E"],
  218. round: ["7M", "6M", "5M"],
  219. safeguard: ["7M", "6M", "5M"],
  220. secretpower: ["6M"],
  221. shadowball: ["7M", "6M", "5M"],
  222. shockwave: ["7T", "6T"],
  223. signalbeam: ["7T", "6T", "5T"],
  224. skillswap: ["7T", "7E", "6T", "6E", "5T", "5E"],
  225. skyattack: ["7T", "7L50", "6T", "6L50", "5T", "5L51"],
  226. sleeptalk: ["7M", "6M", "5T"],
  227. smackdown: ["7M", "6M", "5M"],
  228. snore: ["7T", "6T", "5T"],
  229. solarbeam: ["7M", "6M", "5M"],
  230. steelwing: ["7M", "7E", "6M", "6E", "5E"],
  231. storedpower: ["7E", "6E", "5D", "5E"],
  232. substitute: ["7M", "6M", "5M"],
  233. swagger: ["7M", "6M", "5M"],
  234. synchronoise: ["7L31", "6L31", "5L31"],
  235. tailwind: ["7T", "7L11", "6T", "6L11", "5T", "5L11"],
  236. telekinesis: ["7T", "5M"],
  237. thief: ["7M", "6M", "5M"],
  238. thunderwave: ["7M", "6M", "5M"],
  239. toxic: ["7M", "6M", "5M"],
  240. trick: ["7T", "6T", "5T"],
  241. trickroom: ["7M", "6M", "5M"],
  242. whirlwind: ["7L14", "6L14", "5L14"],
  243. zenheadbutt: ["7T", "6T", "5T"],
  244. }},
  245.  
  246. vikavolt: {learnset: {
  247. acrobatics: ["7M", "7L19"],
  248. airslash: ["7L1"],
  249. attract: ["7M"],
  250. bite: ["7L10", "7L1"],
  251. bugbite: ["7T", "7L13"],
  252. bugbuzz: ["7L31"],
  253. charge: ["7L1"],
  254. chargebeam: ["7M"],
  255. confide: ["7M"],
  256. dig: ["7L37"],
  257. doubleteam: ["7M"],
  258. electroweb: ["7T"],
  259. facade: ["7M"],
  260. flashcannon: ["7M"],
  261. frustration: ["7M"],
  262. gigaimpact: ["7M"],
  263. guillotine: ["7L25"],
  264. hiddenpower: ["7M"],
  265. hyperbeam: ["7M"],
  266. irondefense: ["7T"],
  267. laserfocus: ["7T"],
  268. lightscreen: ["7M"],
  269. magnetrise: ["7T"],
  270. mudslap: ["7L7", "7L1"],
  271. poisonjab: ["7M"],
  272. protect: ["7M"],
  273. raindance: ["7M"],
  274. rest: ["7M"],
  275. return: ["7M"],
  276. roost: ["7M"],
  277. round: ["7M"],
  278. shockwave: ["7T"],
  279. signalbeam: ["7T"],
  280. skydrop: ["7M"],
  281. sleeptalk: ["7M"],
  282. snore: ["7T"],
  283. solarbeam: ["7M"],
  284. spark: ["7L16"],
  285. stringshot: ["7L4", "7L1"],
  286. substitute: ["7M"],
  287. swagger: ["7M"],
  288. thunder: ["7M"],
  289. thunderbolt: ["7M", "7L1"],
  290. thunderwave: ["7M"],
  291. toxic: ["7M"],
  292. vicegrip: ["7L1"],
  293. voltswitch: ["7M"],
  294. wildcharge: ["7M"],
  295. xscissor: ["7M"],
  296. zapcannon: ["7L41"],
  297. ancientpower: ["7L16"],
  298. }},
  299.  
  300. xurkitree: {learnset: {
  301. bind: ["7T"],
  302. brutalswing: ["7M"],
  303. calmmind: ["7M"],
  304. charge: ["7L1"],
  305. chargebeam: ["7M"],
  306. confide: ["7M"],
  307. dazzlinggleam: ["7M"],
  308. discharge: ["7L47", "7S0", "7S1"],
  309. doubleteam: ["7M"],
  310. eerieimpulse: ["7L29"],
  311. electricterrain: ["7L53", "7S0", "7S1"],
  312. electroweb: ["7T"],
  313. energyball: ["7M"],
  314. facade: ["7M"],
  315. fling: ["7M"],
  316. frustration: ["7M"],
  317. gigaimpact: ["7M"],
  318. grassknot: ["7M"],
  319. gravity: ["7T"],
  320. hiddenpower: ["7M"],
  321. hyperbeam: ["7M"],
  322. ingrain: ["7L19"],
  323. iondeluge: ["7L67"],
  324. lightscreen: ["7M"],
  325. magiccoat: ["7T"],
  326. magnetrise: ["7T"],
  327. naturepower: ["7M"],
  328. powerwhip: ["7L59", "7S0", "7S1"],
  329. protect: ["7M"],
  330. raindance: ["7M"],
  331. reflect: ["7M"],
  332. rest: ["7M"],
  333. return: ["7M"],
  334. round: ["7M"],
  335. shockwave: ["7T", "7L13"],
  336. signalbeam: ["7T", "7L31"],
  337. sleeptalk: ["7M"],
  338. snore: ["7T"],
  339. solarbeam: ["7M"],
  340. spark: ["7L1"],
  341. substitute: ["7M"],
  342. sunnyday: ["7M"],
  343. swagger: ["7M"],
  344. thunder: ["7M"],
  345. thunderbolt: ["7M", "7L37"],
  346. thunderpunch: ["7T", "7L23"],
  347. thundershock: ["7L1"],
  348. thunderwave: ["7M", "7L7"],
  349. toxic: ["7M"],
  350. voltswitch: ["7M"],
  351. wildcharge: ["7M"],
  352. wrap: ["7L1"],
  353. zapcannon: ["7L73"],
  354. }},
  355.  
  356. genesect: {learnset: {
  357. aerialace: ["7M", "6M", "5M"],
  358. allyswitch: ["7T"],
  359. blazekick: ["5S2"],
  360. blizzard: ["7M", "6M", "5M"],
  361. bugbite: ["7T", "6T", "5T"],
  362. bugbuzz: ["7L55", "6L55", "5L55"],
  363. chargebeam: ["7M", "6M", "5M"],
  364. confide: ["7M", "6M"],
  365. darkpulse: ["7M", "6M", "5T"],
  366. doubleteam: ["7M", "6M", "5M"],
  367. electroweb: ["7T", "6T", "5T"],
  368. energyball: ["7M", "6M", "5M"],
  369. explosion: ["7M", "6M", "5M"],
  370. extremespeed: ["5S2"],
  371. facade: ["7M", "6M", "5M"],
  372. fellstinger: ["7L1", "6L1"],
  373. flamecharge: ["7M", "7L18", "6M", "6L18", "5M", "5L18"],
  374. flamethrower: ["7M", "6M", "5M"],
  375. flash: ["6M", "5M"],
  376. flashcannon: ["7M", "6M", "5M"],
  377. fly: ["7M", "6M", "5M"],
  378. frustration: ["7M", "6M", "5M"],
  379. furycutter: ["7L7", "6L7", "5L7"],
  380. gigadrain: ["7T", "6T", "5T"],
  381. gigaimpact: ["7M", "6M", "5M"],
  382. gravity: ["7T", "6T", "5T"],
  383. gunkshot: ["7T", "6T", "5T"],
  384. hiddenpower: ["7M", "6M", "5M"],
  385. honeclaws: ["6M", "5M"],
  386. hyperbeam: ["7M", "7L73", "6M", "6L73", "5M", "5L73"],
  387. icebeam: ["7M", "6M", "5M"],
  388. infestation: ["7M", "6M"],
  389. irondefense: ["7T", "6T", "5T"],
  390. ironhead: ["7T", "6T", "5T"],
  391. lastresort: ["7T", "6T", "5T"],
  392. lightscreen: ["7M", "6M", "5M"],
  393. lockon: ["7L11", "6L11", "5L11"],
  394. magiccoat: ["7T", "6T", "5T"],
  395. magnetbomb: ["7L22", "6L22", "6S3", "5L22", "5S1", "5S0"],
  396. magnetrise: ["7T", "7L1", "6T", "6L1", "5T", "5L1"],
  397. metalclaw: ["7L1", "6L1", "5L1"],
  398. metalsound: ["7L33", "6L33", "5L33"],
  399. protect: ["7M", "6M", "5M"],
  400. psychic: ["7M", "6M", "5M"],
  401. quickattack: ["7L1", "6L1", "5L1"],
  402. recycle: ["7T", "6T", "5T"],
  403. reflect: ["7M", "6M", "5M"],
  404. rest: ["7M", "6M", "5M"],
  405. return: ["7M", "6M", "5M"],
  406. rockpolish: ["7M", "6M", "5M"],
  407. round: ["7M", "6M", "5M"],
  408. screech: ["7L1", "6L1", "5L1"],
  409. secretpower: ["6M"],
  410. selfdestruct: ["7L77", "6L77", "5L77"],
  411. shadowclaw: ["7M", "6M", "5M"],
  412. shockwave: ["7T", "6T"],
  413. signalbeam: ["7T", "7L40", "6T", "6L40", "6S3", "5T", "5L40", "5S1", "5S0"],
  414. simplebeam: ["7L62", "6L62", "5L62"],
  415. slash: ["7L29", "6L29", "5L29"],
  416. sleeptalk: ["7M", "6M", "5T"],
  417. snore: ["7T", "6T", "5T"],
  418. solarbeam: ["7M", "6M", "6S3", "5M", "5S1", "5S0"],
  419. strugglebug: ["6M", "5M"],
  420. substitute: ["7M", "6M", "5M"],
  421. swagger: ["7M", "6M", "5M"],
  422. telekinesis: ["7T"],
  423. thunder: ["7M", "6M", "5M"],
  424. thunderbolt: ["7M", "6M", "5M"],
  425. thunderwave: ["7M", "6M", "5M"],
  426. toxic: ["7M", "6M", "5M"],
  427. triattack: ["7L44", "6L44", "5L44"],
  428. uturn: ["7M", "6M", "5M"],
  429. xscissor: ["7M", "7L51", "6M", "6L51", "5M", "5L51"],
  430. zapcannon: ["7L66", "6L66", "5L66"],
  431. zenheadbutt: ["7T", "6T", "5T"],
  432. }},
  433.  
  434. munna: {learnset: {
  435. afteryou: ["7T", "6T", "5T"],
  436. allyswitch: ["7T"],
  437. attract: ["7M", "6M", "5M"],
  438. barrier: ["7E", "6E", "5E"],
  439. calmmind: ["7M", "7L35", "6M", "6L35", "5M", "5L35"],
  440. chargebeam: ["7M", "6M", "5M"],
  441. confide: ["7M", "6M"],
  442. curse: ["7E", "6E", "5E"],
  443. dazzlinggleam: ["7M", "6M"],
  444. defensecurl: ["7L1", "6L1", "5L1"],
  445. doubleteam: ["7M", "6M", "5M"],
  446. dreameater: ["7M", "7L41", "6M", "6L41", "5M", "5L41"],
  447. energyball: ["7M", "6M", "5M"],
  448. facade: ["7M", "6M", "5M"],
  449. flash: ["6M", "5M"],
  450. frustration: ["7M", "6M", "5M"],
  451. gravity: ["7T", "6T", "5T"],
  452. gyroball: ["7M", "6M", "5M"],
  453. healbell: ["7T", "6T", "5T"],
  454. healingwish: ["7E", "6E"],
  455. helpinghand: ["7T", "7E", "6T", "6E", "5T", "5E"],
  456. hiddenpower: ["7M", "6M", "5M"],
  457. hypnosis: ["7L19", "6L19", "5L19"],
  458. imprison: ["7L13", "6L13", "5L13"],
  459. lightscreen: ["7M", "6M", "5M"],
  460. luckychant: ["7L5", "6L5", "5L5"],
  461. magiccoat: ["7T", "7E", "6T", "6E", "5T", "5E"],
  462. moonlight: ["7L17", "6L17", "5L17"],
  463. nightmare: ["7L29", "6L29", "5L29"],
  464. painsplit: ["7T", "6T", "5T"],
  465. protect: ["7M", "6M", "5M"],
  466. psybeam: ["7L11", "6L11", "5L11"],
  467. psychic: ["7M", "7L37", "6M", "6L37", "5M", "5L37"],
  468. psychup: ["7M", "6M", "5M"],
  469. raindance: ["7M", "6M", "5M"],
  470. reflect: ["7M", "6M", "5M"],
  471. rest: ["7M", "6M", "5M"],
  472. return: ["7M", "6M", "5M"],
  473. rockslide: ["7M", "6M", "5M"],
  474. rocktomb: ["7M", "6M", "5M"],
  475. round: ["7M", "6M", "5M"],
  476. safeguard: ["7M", "6M", "5M"],
  477. secretpower: ["7E", "6M", "6E", "5E"],
  478. shadowball: ["7M", "6M", "5M"],
  479. shockwave: ["7T", "6T"],
  480. signalbeam: ["7T", "6T", "5T"],
  481. skillswap: ["7T", "6T", "5T"],
  482. sleeptalk: ["7M", "7E", "6M", "6E", "5T", "5E"],
  483. snore: ["7T", "6T", "5T"],
  484. sonicboom: ["7E", "6E", "5E"],
  485. storedpower: ["7L47", "6L47", "5L47"],
  486. substitute: ["7M", "6M", "5M"],
  487. swagger: ["7M", "6M", "5M"],
  488. swift: ["7E", "6E", "5E"],
  489. telekinesis: ["7T", "7L43", "6L43", "5M", "5L43"],
  490. thunderwave: ["7M", "6M", "5M"],
  491. torment: ["7M", "6M", "5M"],
  492. toxic: ["7M", "6M", "5M"],
  493. trick: ["7T", "6T", "5T"],
  494. trickroom: ["7M", "6M", "5M"],
  495. wonderroom: ["7T", "6T", "5T"],
  496. worryseed: ["7T", "6T", "5T"],
  497. yawn: ["7L7", "6L7", "5L7"],
  498. }},
  499.  
  500. musharna: {learnset: {
  501. afteryou: ["7T", "6T", "5T"],
  502. allyswitch: ["7T"],
  503. attract: ["7M", "6M", "5M"],
  504. calmmind: ["7M", "6M", "5M"],
  505. chargebeam: ["7M", "6M", "5M"],
  506. confide: ["7M", "6M"],
  507. dazzlinggleam: ["7M", "6M"],
  508. defensecurl: ["7L1", "6L1", "5L1", "5S0"],
  509. doubleteam: ["7M", "6M", "5M"],
  510. dreameater: ["7M", "6M", "5M"],
  511. energyball: ["7M", "6M", "5M"],
  512. facade: ["7M", "6M", "5M"],
  513. flash: ["6M", "5M"],
  514. frustration: ["7M", "6M", "5M"],
  515. gigaimpact: ["7M", "6M", "5M"],
  516. gravity: ["7T", "6T", "5T"],
  517. gyroball: ["7M", "6M", "5M"],
  518. healbell: ["7T", "6T", "5T"],
  519. helpinghand: ["7T", "6T", "5T"],
  520. hiddenpower: ["7M", "6M", "5M"],
  521. hyperbeam: ["7M", "6M", "5M"],
  522. hypnosis: ["7L1", "6L1", "5L1", "5S0"],
  523. lightscreen: ["7M", "6M", "5M"],
  524. luckychant: ["7L1", "6L1", "5L1", "5S0"],
  525. magiccoat: ["7T", "6T", "5T"],
  526. painsplit: ["7T", "6T", "5T"],
  527. protect: ["7M", "6M", "5M"],
  528. psybeam: ["7L1", "6L1", "5L1", "5S0"],
  529. psychic: ["7M", "6M", "5M"],
  530. psychup: ["7M", "6M", "5M"],
  531. raindance: ["7M", "6M", "5M"],
  532. reflect: ["7M", "6M", "5M"],
  533. rest: ["7M", "6M", "5M"],
  534. return: ["7M", "6M", "5M"],
  535. rockslide: ["7M", "6M", "5M"],
  536. rocktomb: ["7M", "6M", "5M"],
  537. round: ["7M", "6M", "5M"],
  538. safeguard: ["7M", "6M", "5M"],
  539. secretpower: ["6M"],
  540. shadowball: ["7M", "6M", "5M"],
  541. shockwave: ["7T", "6T"],
  542. signalbeam: ["7T", "6T", "5T"],
  543. skillswap: ["7T", "6T", "5T"],
  544. sleeptalk: ["7M", "6M", "5T"],
  545. snore: ["7T", "6T", "5T"],
  546. substitute: ["7M", "6M", "5M"],
  547. swagger: ["7M", "6M", "5M"],
  548. telekinesis: ["7T", "5M"],
  549. thunderwave: ["7M", "6M", "5M"],
  550. torment: ["7M", "6M", "5M"],
  551. toxic: ["7M", "6M", "5M"],
  552. trick: ["7T", "6T", "5T"],
  553. trickroom: ["7M", "6M", "5M"],
  554. wonderroom: ["7T", "6T", "5T"],
  555. worryseed: ["7T", "6T", "5T"],
  556. titaniatears: ["6M", "5M"],
  557. moonblast: ["6M", "5M"],
  558. fairywind: ["6M", "5M"],
  559. mistyterrain: ["6M", "5M"],
  560. sludgebomb: ["6M", "5M"],
  561. acidspray: ["6M", "5M"],
  562. acidarmor: ["6M", "5M"],
  563. acid: ["6M", "5M"],
  564. gastroacid: ["6M", "5M"],
  565. sludge: ["6M", "5M"],
  566. smog: ["6M", "5M"],
  567. venoshock: ["6M", "5M"],
  568. u-turn: ["6M", "5M"],
  569. }},
  570.  
  571. lycanrocmidnight: {learnset: {
  572. attract: ["7M"],
  573. bite: ["7L7", "7L1"],
  574. brickbreak: ["7M"],
  575. bulkup: ["7M"],
  576. confide: ["7M"],
  577. counter: ["7L1"],
  578. covet: ["7T"],
  579. crunch: ["7L40"],
  580. doubleteam: ["7M"],
  581. dualchop: ["7T"],
  582. echoedvoice: ["7M"],
  583. endeavor: ["7T"],
  584. facade: ["7M"],
  585. firefang: ["7S0"],
  586. firepunch: ["7T"],
  587. focuspunch: ["7T"],
  588. foulplay: ["7T"],
  589. frustration: ["7M"],
  590. hiddenpower: ["7M"],
  591. howl: ["7L12"],
  592. hypervoice: ["7T"],
  593. irondefense: ["7T"],
  594. ironhead: ["7T"],
  595. irontail: ["7T"],
  596. laserfocus: ["7T"],
  597. lastresort: ["7T"],
  598. leer: ["7L1"],
  599. odorsleuth: ["7L18"],
  600. outrage: ["7T"],
  601. protect: ["7M"],
  602. rest: ["7M"],
  603. return: ["7M"],
  604. reversal: ["7L1"],
  605. roar: ["7M", "7L26"],
  606. rockclimb: ["7L45"],
  607. rockpolish: ["7M"],
  608. rockslide: ["7M", "7L34"],
  609. rockthrow: ["7L15"],
  610. rocktomb: ["7M", "7L23"],
  611. round: ["7M"],
  612. sandattack: ["7L4", "7L1"],
  613. scaryface: ["7L37"],
  614. sleeptalk: ["7M"],
  615. snarl: ["7M"],
  616. snore: ["7T"],
  617. stealthrock: ["7T", "7L29"],
  618. stoneedge: ["7M", "7L48", "7S0"],
  619. substitute: ["7M"],
  620. suckerpunch: ["7S0"],
  621. swagger: ["7M"],
  622. swordsdance: ["7M", "7S0"],
  623. tackle: ["7L1"],
  624. taunt: ["7M", "7L1"],
  625. throatchop: ["7T"],
  626. thunderpunch: ["7T"],
  627. toxic: ["7M"],
  628. uproar: ["7T"],
  629. zenheadbutt: ["7T"],
  630. diamonddagger: ["6M", "5M"],
  631. shadowball: ["6M", "5M"],
  632. shadowbone: ["6M", "5M"],
  633. dazzlinggleam: ["6M", "5M"],
  634. }},
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement