Ourolen

Emerald Bingo Goals v0.2

Jul 22nd, 2018
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.00 KB | None | 0 0
  1. Update notes:
  2. - "Evolve a Pokémon with a stone" has been removed until stones are purchasable with the speedchoice.
  3. - "Nidoking or Nidoqueen" and "Shiftry or Ludicolo" have been changed to "Nidorino or Nidorina" and "Nuzleaf and Lombre" until stones are purchasable with the speedchoice.
  4. - "Soot Sack" has been changed to "White Flute" and has been re-weighted appropriately.
  5. - "7 different types of Berry" has been changed to "Kelpsy Berry".
  6. - "3 Lv30+ Pokémon" has been changed to "5 different Lv30+ Pokémon".
  7. - "Defeat 5 Ninja Boys" has been changed to " Defeat 8 Ninja Boys".
  8. - "2 eggs" has been changed to "Hatch an egg".
  9. - "Don't use more than one TM" has been removed.
  10. - "Defeat a Lv40+ Pokémon" has been removed.
  11. - "$50,000" has been removed.
  12. - "Teach 8 moves via Move Tutor" has been added.
  13. - "Complete Trainer Hill" has been added.
  14. - "TM26 (Earthquake)" has been added.
  15. - "TM45 (Attract)" has been added.
  16. - "Complete 3 Battle Tents" has been added.
  17. - "Defeat Gabby & Ty 6 times" has been added.
  18. - "Defeat 6 trainers on Route 113" has been added.
  19. - "Defeat all 6 trainers on Route 125" has been changed to "Defeat all 8 trainers on Route 125".
  20. - "Defeat all 7 trainers on Route 123" has been changed to "Defeat 9 trainers on Route 123".
  21. - Various Pokémon goals have been adjusted.
  22. - Various goals have had their weights adjusted.
  23.  
  24. var bingoGoals = [];
  25.  
  26. bingoGoals[1] = [
  27. { name: "TM05 (Roar)", types: ["114", "tm"] },
  28. { name: "HM01 (Cut)", types: ["rustboro", "hm"] },
  29. { name: "TM45 (Attract)", types: ["verdanturf", "tm"] },
  30. { name: "Quick Claw", types: ["school"] }
  31. ];
  32. bingoGoals[2] = [
  33. { name: "Coin Case", types: ["mail"] },
  34. { name: "7 different types of PokéBall", types: ["balls"] },
  35. { name: "TM36 (Sludge Bomb)", types: ["dewford", "tm"] },
  36. { name: "A Pokémon with 4 moves sharing its type(s)", types: ["move"] }
  37. ];
  38. bingoGoals[3] = [
  39. { name: "Defeat a Legendary Pokémon", types: ["legendary"] },
  40. { name: "Rematch a trainer with Match Call", types: ["pokenav"] },
  41. { name: "A Pokémon with a status-related ability", types: ["ability"] },
  42. { name: "A Pokémon with a stat-related ability", types: ["ability"] }
  43. ];
  44. bingoGoals[4] = [
  45. { name: "Sell a Rare Candy", types: ["candy"] },
  46. { name: "Defeat the Winstrate Family", types: ["trainer"] },
  47. { name: "Defeat 6 trainers on Route 113", types: ["trainer"] },
  48. { name: "A Pokémon with 4 non-TM non-damaging moves", types: ["move"] }
  49. ];
  50. bingoGoals[5] = [
  51. { name: "Clefable, Wigglytuff, or Delcatty", types: ["stone"] },
  52. { name: "Raichu, Arcanine, or Ninetales", types: ["stone"] },
  53. { name: "Vileplume, Victreebel, or Exeggutor", types: ["stone"] },
  54. { name: "Poliwrath, Starmie, or Cloyster", types: ["stone"] }
  55. ];
  56. bingoGoals[6] = [
  57. { name: "Beedrill, Butterfree, Dustox or Beautifly", types: ["bugs"] },
  58. { name: "Nidorino or Nidorina", types: ["nido"] },
  59. { name: "Lombre or Nuzleaf", types: ["leaves"] },
  60. { name: "A Pokémon with a weather-related ability", types: ["ability"] }
  61. ];
  62. bingoGoals[7] = [
  63. { name: "Hatch an egg", types: ["egg"] },
  64. { name: "Defeat both Pokémon Breeders on Route 117", types: ["trainer"] },
  65. { name: "Defeat all 5 Triathletes on Cycling Road", types: ["trainer"] },
  66. { name: "$0 on hand", types: ["money"] }
  67. ];
  68. bingoGoals[8] = [
  69. { name: "Wobbuffet, Flaaffy, or Furret", types: ["15"] },
  70. { name: "Ivysaur, Bayleef, or Grovyle", types: ["starters"] },
  71. { name: "Wartortle, Croconaw, or Marshtomp", types: ["starters"] },
  72. { name: "Charmeleon, Quilava, or Combusken", types: ["starters"] }
  73. ];
  74. bingoGoals[9] = [
  75. { name: "Kelpsy Berry", types: ["berry"] },
  76. { name: "Release starter before Lv11", types: ["release"] },
  77. { name: "TM19 (Giga Drain)", types: ["grass", "tm"] },
  78. { name: "Catch a Pokémon in the Safari Zone", types: ["lilycove"] }
  79. ];
  80. bingoGoals[10] = [
  81. { name: "Mightyena, Linoone, or Raticate", types: ["18/20"] },
  82. { name: "Azumarill, Gyarados, or Quagsire", types: ["18/20"] },
  83. { name: "Kirlia, Loudred, or Kadabra", types: ["20/16"] },
  84. { name: "Masquerain, Ninjask, or Shedinja", types: ["22/20/18"] }
  85. ];
  86. bingoGoals[11] = [
  87. { name: "Burn, Paralyze, or Poison Kecleon", types: ["status"] },
  88. { name: "Revive a fossil", types: ["fossil"] },
  89. { name: "Complete all 3 Battle Tents", types: ["trainer"] },
  90. { name: "Lileep, Anorith, Kabuto, or Omanyte", types: ["fossil"] }
  91. ];
  92. bingoGoals[12] = [
  93. { name: "Evolve 4 different Pokémon", types: ["raise"] },
  94. { name: "Complete Trainer Hill", types: ["trainer"] },
  95. { name: "2 different baby Pokémon", types: ["baby"] },
  96. { name: "2 different Eevee evolutions", types: ["eevee"] }
  97. ];
  98. bingoGoals[13] = [
  99. { name: "TM27 (Return)", types: ["tm"] },
  100. { name: "White Flute", types: ["113"] },
  101. { name: "Exp. Share", types: ["rustboro"] },
  102. { name: "TM44 (Rest)", types: ["lilycove"] }
  103. ];
  104. bingoGoals[14] = [
  105. { name: "Manectric, Houndoom, or Grumpig", types: ["trio"] },
  106. { name: "Swellow, Pelipper, or Pidgeotto", types: ["trio"] },
  107. { name: "Breloom, Hariyama, or Vigoroth", types: ["trio"] },
  108. { name: "Slugma, Numel, or Torkoal", types: ["trio"] },
  109. { name: "Barboach, Corphish, or Luvdisc", types: ["trio"] }
  110. ];
  111. bingoGoals[15] = [
  112. { name: "Trade a Pokémon", types: ["trade"] },
  113. { name: "Don't use Repels", types: ["instant"] },
  114. { name: "TM10 (Hidden Power)", types: ["tm", "fortree"] },
  115. { name: "HM08 (Dive)", types: ["mossdeep", "hm"] }
  116. ];
  117. bingoGoals[16] = [
  118. { name: "Pikachu, Plusle, or Minun", types: ["trio"] },
  119. { name: "Swablu, Zangoose, or Seviper", types: ["trio"] },
  120. { name: "Roselia, Volbeat, or Illumise", types: ["trio"] },
  121. { name: "Flygon, Claydol, or Cacturne", types: ["trio"] },
  122. { name: "Skarmory, Spinda, or Sandshrew", types: ["trio"] }
  123. ];
  124. bingoGoals[17] = [
  125. { name: "Defeat 4 Kecleons", types: ["scope"] },
  126. { name: "20+ Pokémon owned", types: ["pkmn"] },
  127. { name: "All fishing rods", types: ["mossdeep"] },
  128. { name: "Defeat 8 Ninja Boys", types: ["trainer"] }
  129. ];
  130. bingoGoals[18] = [
  131. { name: "Own 5 different Bug type Pokémon", types: ["pkmn"] },
  132. { name: "Own 6 different Flying type Pokémon", types: ["pkmn"] },
  133. { name: "Own 7 different Normal type Pokémon", types: ["pkmn"] },
  134. { name: "Own 8 different Water type Pokémon", types: ["pkmn"] }
  135. ];
  136. bingoGoals[19] = [
  137. { name: "Nosepass, Sableye, or Mawile", types: ["trio"] },
  138. { name: "Glalie, Sharpedo, or Walrein", types: ["trio"] },
  139. { name: "Chimecho, Banette, or Dusclops", types: ["trio"] },
  140. { name: "Aggron, Salamence, or Metagross", types: ["trio"] },
  141. { name: "Regirock, Regice, or Registeel", types: ["trio"] }
  142. ];
  143. bingoGoals[20] = [
  144. { name: "Catch a Pokémon on Mt. Pyre summit", types: ["pyre"] },
  145. { name: "Catch Deoxys at Birth Island", types: ["deoxys"] },
  146. { name: "Catch Latias or Latios at Southern Island", types: ["eon"] },
  147. { name: "Catch a Pokémon on Mirage Island", types: ["50"] }
  148. ];
  149. bingoGoals[21] = [
  150. { name: "Defeat 10 Swimmers", types: ["water", "trainer"] },
  151. { name: "Complete 3 Trick House mazes", types: ["candy", "trainer"] },
  152. { name: "Defeat all 8 trainers on Route 125", types: ["trainer"] },
  153. { name: "Defeat 9 trainers on Route 123", types: ["trainer"] }
  154. ];
  155. bingoGoals[22] = [
  156. { name: "90 Pokémon seen", types: ["pkmn"] },
  157. { name: "Teach 8 moves via Move Tutor", types: ["tutor"] },
  158. { name: "Stop the same Pokémon evolving 4 times", types: ["raise"] },
  159. { name: "Mental Herb", types: ["fortree"] }
  160. ];
  161. bingoGoals[23] = [
  162. { name: "5 different Lv30+ Pokémon", types: ["30"] },
  163. { name: "Kyogre, Groudon, or Rayquaza", types: ["covers"] },
  164. { name: "TM24 (Thunderbolt)", types: ["mauville", "tm"] },
  165. { name: "Defeat Rival 4", types: ["lilycove"] }
  166. ];
  167. bingoGoals[24] = [
  168. { name: "Feather Badge", types: ["feather"] },
  169. { name: "Mind Badge", types: ["mind"] },
  170. { name: "Defeat Gabby & Ty 6 times", types: ["trainer", "tv"] },
  171. { name: "30+ Pokémon owned", types: ["pkmn"] }
  172. ];
  173. bingoGoals[25] = [
  174. { name: "7 badges", types: ["badges"] },
  175. { name: "TM26 (Earthquake)", types: ["tm", "seafloor"] },
  176. { name: "Participate in a Contest", types: ["contest"] }
  177. ];
  178.  
  179. $(function() { srl.bingo(bingoList, 5); });
Add Comment
Please, Sign In to add comment