sora10pls

[GO] Level and IV Requirements

Sep 18th, 2019 (edited)
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.95 KB | None | 0 0
  1. /* Last Edit (November 29, 2020): This list will no longer be maintained.
  2.    Further legality documentation will be done through PoGoEncTool (PGET): https://github.com/projectpokemon/PoGoEncTool/
  3.  
  4. All Pokémon obtained outside of regular Wild Spawns are guaranteed to have at least 10 for each of their IVs.
  5. Pokémon hatched from Eggs will also always be in Poké Balls.
  6.  
  7. However, because of how Trading adjusts IVs, the minimum floor for IV rerolls is 1/1/1. This means it is possible to obtain a Pokémon exclusive to Eggs, Raid Battles and/or Research with at least 1 for each of their IVs.
  8.  
  9. Species that cannot be traded must have 10/10/10 if met with IV requirements.
  10. This includes Shadow, Purified, and Mythical Pokémon.
  11. Meltan and Melmetal are the only Mythical Pokémon exempt from these rules, as they are Wild Spawns that can be Traded. */
  12.  
  13. // Egg
  14. // Minimum Lvl: 1
  15. // Minimum GO IVs: 1/1/1
  16. // Minimum Core Series IVs: 3/3/3/3/3/0
  17. (int)Species.Meowth + (2 << 11), (int)Species.Perrserker,
  18. (int)Species.Ponyta + (1 << 11), (int)Species.Rapidash + (1 << 11),
  19. (int)Species.Pichu,
  20. (int)Species.Cleffa,
  21. (int)Species.Igglybuff,
  22. (int)Species.Togepi,
  23. (int)Species.Tyrogue,
  24. (int)Species.Smoochum,
  25. (int)Species.Elekid,
  26. (int)Species.Magby,
  27. (int)Species.Zigzagoon + (1 << 11), (int)Species.Linoone + (1 << 11), (int)Species.Obstagoon,
  28. (int)Species.Azurill,
  29. (int)Species.Wynaut,
  30. (int)Species.Shinx, (int)Species.Luxio, (int)Species.Luxray,
  31. (int)Species.Budew,
  32. (int)Species.Chingling,
  33. (int)Species.Bonsly,
  34. (int)Species.Happiny,
  35. (int)Species.Munchlax,
  36. (int)Species.Riolu, (int)Species.Lucario,
  37. (int)Species.Mantyke,
  38. (int)Species.Sandile, (int)Species.Krokorok, (int)Species.Krookodile,
  39. (int)Species.Darumaka, (int)Species.Darmanitan,
  40. (int)Species.Darumaka + (1 << 11), (int)Species.Darmanitan + (2 << 11),
  41. (int)Species.Klink, (int)Species.Klang, (int)Species.Klinklang,
  42. (int)Species.Pawniard, (int)Species.Bisharp,
  43. (int)Species.Vullaby, (int)Species.Mandibuzz,
  44.  
  45. // Shiny Baby Evolutions
  46. // Minimum Lvl: 1
  47. // Minimum GO IVs: 1/1/1
  48. // Minimum Core Series IVs: 3/3/3/3/3/0
  49. // The following Species can only be Shiny if hatched from an Egg.
  50. // They can be encountered in the wild, but if they are Shiny, they must abide by Egg requirements.
  51. (int)Species.Togetic, (int)Species.Togekiss,
  52. (int)Species.Jynx,
  53. (int)Species.Electabuzz, (int)Species.Electivire,
  54. (int)Species.Magmar, (int)Species.Magmortar,
  55.  
  56. // Raid Battle / Field Research
  57. // Minimum Lvl: 15
  58. // Minimum GO IVs: 1/1/1
  59. // Minimum Core Series IVs: 3/3/3/3/3/0
  60. // Pokémon from regular Raid Battles (Lv. 20) get moved down to Lv. 15 when Traded to low-level accounts.
  61. (int)Species.Raichu + (1 << 11),
  62. (int)Species.Weezing + (1 << 11),
  63. (int)Species.Articuno,
  64. (int)Species.Zapdos,
  65. (int)Species.Moltres,
  66. (int)Species.Mewtwo,
  67. (int)Species.Raikou,
  68. (int)Species.Entei,
  69. (int)Species.Suicune,
  70. (int)Species.Lugia,
  71. (int)Species.HoOh,
  72. (int)Species.Shedinja,
  73. (int)Species.Spinda,
  74. (int)Species.Regirock,
  75. (int)Species.Regice,
  76. (int)Species.Registeel,
  77. (int)Species.Latias,
  78. (int)Species.Latios,
  79. (int)Species.Kyogre,
  80. (int)Species.Groudon,
  81. (int)Species.Rayquaza,
  82. (int)Species.Spiritomb,
  83. (int)Species.Dialga,
  84. (int)Species.Palkia,
  85. (int)Species.Heatran,
  86. (int)Species.Regigigas,
  87. (int)Species.Giratina,
  88. (int)Species.Cresselia,
  89. (int)Species.Victini,
  90. (int)Species.Yamask + (1 << 11), (int)Species.Runerigus,
  91. (int)Species.Cobalion,
  92. (int)Species.Terrakion,
  93. (int)Species.Virizion,
  94. (int)Species.Tornadus,
  95. (int)Species.Thundurus,
  96. (int)Species.Reshiram,
  97. (int)Species.Zekrom,
  98. (int)Species.Landorus,
  99. (int)Species.Kyurem,
  100.  
  101. // Field Research (Mythical)
  102. // Minimum Lvl: 15
  103. // Minimum GO IVs: 10/10/10
  104. // Minimum Core Series IVs: 21/21/21/21/21/0
  105. (int)Species.Mew,
  106. (int)Species.Celebi,
  107. (int)Species.Jirachi,
  108. (int)Species.Victini,
  109. (int)Species.Genesect,
  110.  
  111. // Raid Battle (Mythical)
  112. // Minimum Lvl: 20
  113. // Minimum GO IVs: 10/10/10
  114. // Minimum Core Series IVs: 21/21/21/21/21/0
  115. (int)Species.Deoxys,
  116. (int)Species.Darkrai,
Advertisement
Add Comment
Please, Sign In to add comment