Advertisement
Guest User

Untitled

a guest
Mar 15th, 2018
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. 'use strict';
  2.  
  3. exports.BattlePokedex = {
  4. ribombee: {
  5. inherit: true,
  6. abilities: {0: "Pollination Surge", 1: "Shield Dust", H: "Sweet Veil"},
  7. },
  8. spiritomb: {
  9. inherit: true,
  10. abilities: {0: "Pressure", 1: "Murky Surge", H: "Infiltrator"},
  11. },
  12. druddigon: {
  13. inherit: true,
  14. abilities: {0: "Rough Skin", 1: "Sheer Force", H: "Regal Surge"},
  15. },
  16. magcargo: {
  17. inherit: true,
  18. abilities: {0: "Blaze Surge", 1: "Flame Body", H: "Weak Armor"},
  19. },
  20. mienshao: {
  21. inherit: true,
  22. abilities: {0: "Chakra Surge", 1: "Regenerator", H: "Reckless"},
  23. },
  24. unfezant: {
  25. inherit: true,
  26. abilities: {0: "Elevated Surge", 1: "Super Luck", H: "Rivalry"},
  27. },
  28. dusknoir: {
  29. inherit: true,
  30. abilities: {0: "Pressure", 1: "Ominous Surge", H: "Frisk"},
  31. },
  32. dugtrioalola: {
  33. inherit: true,
  34. abilities: {0: "Sandy Surge", 1: "Tangling Hair", H: "Sand Force"},
  35. },
  36. regice: {
  37. inherit: true,
  38. abilities: {0: "Clear Body", 1: "Frosty Surge", H: "Ice Body"},
  39. },
  40. blissey: {
  41. inherit: true,
  42. abilities: {0: "Natural Cure", 1: "Serene Grace", H: "Cloudy Surge"},
  43. },
  44. regirock: {
  45. inherit: true,
  46. abilities: {0: "Clear Body", 1: "Rocky Surge", H: "Sturdy"},
  47. },
  48. salazzle: {
  49. inherit: true,
  50. abilities: {0: "Corrosion", 1: "Corrosive Surge", H: "Oblivious"},
  51. },
  52. registeel: {
  53. inherit: true,
  54. abilities: {0: "Clear Body", 1: "Metallic Surge", H: "Light Metal"},
  55. },
  56. tentacruel: {
  57. inherit: true,
  58. abilities: {0: "Sea Surge", 1: "Liquid Ooze", H: "Rain Dish"},
  59. },
  60. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement