2022-08-22 00:34:32 +00:00
using System.Collections.Generic ;
2017-10-26 04:53:55 +00:00
using System.Linq ;
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
namespace PKHeX.Core ;
/// <summary>
/// Generation 3 <see cref="WC3"/> Gifts
/// </summary>
/// <remarks>
/// Generation 3 has a wide range of PIDIV types and other restrictions, and was never consistently stored in raw bytes.
/// Normally we'd just load the data from a binary, but without raw data... hard-code everything by hand.
/// </remarks>
internal static class EncountersWC3
2017-07-25 07:28:43 +00:00
{
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_Event3_Special =
2017-07-25 07:28:43 +00:00
{
2022-06-18 18:04:24 +00:00
new ( ) { Species = 385 , Level = 05 , TID = 20043 , OT_Gender = 0 , Version = GameVersion . R , Method = PIDType . BACD_R , OT_Name = "WISHMKR" , CardTitle = "Wishmaker Jirachi" , Language = ( int ) LanguageID . English } ,
} ;
2018-09-15 05:37:47 +00:00
2022-06-18 18:04:24 +00:00
private static IEnumerable < WC3 > GetIngameCXDData ( )
{
var langs = new [ ] { LanguageID . Japanese , LanguageID . English , LanguageID . French , LanguageID . Italian , LanguageID . German , LanguageID . Spanish } ;
string [ ] p = { string . Empty , "コロシアム" , "COLOS" , "COLOSSEUM" , "ARENA" , "COLOSSEUM" , string . Empty , "CLAUDIO" } ;
string [ ] c = { string . Empty , "アゲト" , "AGATE" , "SAMARAGD" , "SOFO" , "EMERITAE" , string . Empty , "ÁGATA" } ;
string [ ] h = { string . Empty , "ダニー" , "HORDEL" , "VOLKER" , "ODINO" , "HORAZ" , string . Empty , "HORDEL" } ;
string [ ] d = { string . Empty , "ギンザル" , "DUKING" , "DOKING" , "RODRIGO" , "GRAND" , string . Empty , "GERMÁN" } ;
string [ ] m = { string . Empty , "バトルやま" , "MATTLE" , "MT BATAILL" , "MONTE LOTT" , "DUELLBERG" , string . Empty , "ERNESTO" } ; // truncated on ck3->pk3 transfer
string [ ] z = { string . Empty , "コンセント" , "ZAPRONG" , "ZAPRONG" , "ZAPRONG" , "ZAPRONG" , string . Empty , "ZAPRONG" } ;
2017-10-26 04:53:55 +00:00
2022-06-18 18:04:24 +00:00
return langs . SelectMany ( l = > GetIngame ( ( int ) l ) ) ;
IEnumerable < WC3 > GetIngame ( int l )
{
var id = ( LanguageID ) l ;
var nd = id ! = LanguageID . Japanese ;
return new WC3 [ ]
2017-10-26 04:53:55 +00:00
{
2022-06-18 18:04:24 +00:00
// Colosseum
new ( ) { Species = 025 , Level = 10 , Language = l , Location = 255 , TID = 31121 , SID = 0 , OT_Gender = 0 , OT_Name = p [ l ] , Version = GameVersion . R , CardTitle = $"Colosseum Pikachu ({id})" , Method = PIDType . CXD , Shiny = Shiny . Never , NotDistributed = nd } , // Colosseum Pikachu bonus gift
new ( ) { Species = 251 , Level = 10 , Language = l , Location = 255 , TID = 31121 , SID = 0 , OT_Gender = 1 , OT_Name = c [ l ] , Version = GameVersion . R , CardTitle = $"Agate Celebi ({id})" , Method = PIDType . CXD , Shiny = Shiny . Never , NotDistributed = nd } , // Ageto Celebi bonus gift
2022-08-22 00:34:32 +00:00
new ( ) { Species = 311 , Level = 13 , Language = l , Location = 254 , TID = 37149 , SID = 0 , OT_Gender = 0 , OT_Name = d [ l ] , Version = GameVersion . COLO , CardTitle = $"Special Gift ({id})" , Method = PIDType . CXD , Shiny = Shiny . Never , Moves = new ( 045 , 086 , 098 , 270 ) } , // Plusle @ Ingame Trade
new ( ) { Species = 250 , Level = 70 , Language = l , Location = 255 , TID = 10048 , SID = 0 , OT_Gender = 0 , OT_Name = m [ l ] , Version = GameVersion . S , CardTitle = $"Mt. Battle Ho-Oh ({id})" , Method = PIDType . CXD , Shiny = Shiny . Never , Moves = new ( 105 , 126 , 241 , 129 ) } , // Ho-oh @ Mt. Battle
2022-06-18 18:04:24 +00:00
// XD
2022-08-22 00:34:32 +00:00
new ( ) { Species = 239 , Level = 20 , Language = l , Location = 164 , TID = 41400 , SID = - 1 , OT_Gender = 0 , OT_Name = h [ l ] , Version = GameVersion . XD , CardTitle = $"Trade Togepi ({id})" , Method = PIDType . CXD , Moves = new ( 008 , 007 , 009 , 238 ) , Fateful = true , Nickname = z [ l ] } , // Elekid @ Snagem Hideout
new ( ) { Species = 307 , Level = 20 , Language = l , Location = 116 , TID = 37149 , SID = - 1 , OT_Gender = 0 , OT_Name = d [ l ] , Version = GameVersion . XD , CardTitle = $"Trade Trapinch ({id})" , Method = PIDType . CXD , Moves = new ( 223 , 093 , 247 , 197 ) , Fateful = true } , // Meditite @ Pyrite Town
new ( ) { Species = 213 , Level = 20 , Language = l , Location = 116 , TID = 37149 , SID = - 1 , OT_Gender = 0 , OT_Name = d [ l ] , Version = GameVersion . XD , CardTitle = $"Trade Surskit ({id})" , Method = PIDType . CXD , Moves = new ( 092 , 164 , 188 , 227 ) , Fateful = true } , // Shuckle @ Pyrite Town
new ( ) { Species = 246 , Level = 20 , Language = l , Location = 116 , TID = 37149 , SID = - 1 , OT_Gender = 0 , OT_Name = d [ l ] , Version = GameVersion . XD , CardTitle = $"Trade Wooper ({id})" , Method = PIDType . CXD , Moves = new ( 201 , 349 , 044 , 200 ) , Fateful = true } , // Larvitar @ Pyrite Town
2022-06-18 18:04:24 +00:00
} ;
2017-10-26 04:53:55 +00:00
}
2022-06-18 18:04:24 +00:00
}
2018-09-15 05:37:47 +00:00
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_Event3 = Encounter_Event3_Special . Concat ( GetIngameCXDData ( ) ) . ToArray ( ) ;
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_Event3_FRLG =
{
// PCJP - Egg Pokémon Present Eggs (March 21 to April 4, 2004)
2022-09-01 01:55:17 +00:00
new ( ) { Species = 043 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 071 , 073 , 000 , 000 ) , Method = PIDType . Method_2 } , // Oddish with Leech Seed
new ( ) { Species = 052 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 010 , 045 , 080 , 000 ) , Method = PIDType . Method_2 } , // Meowth with Petal Dance
new ( ) { Species = 060 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 145 , 186 , 000 , 000 ) , Method = PIDType . Method_2 } , // Poliwag with Sweet Kiss
new ( ) { Species = 069 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 022 , 298 , 000 , 000 ) , Method = PIDType . Method_2 } , // Bellsprout with Teeter Dance
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// PCNY - Wish Eggs (December 16, 2004, to January 2, 2005)
2022-09-01 01:55:17 +00:00
new ( ) { Species = 083 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 281 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Farfetch'd with Wish & Yawn
new ( ) { Species = 096 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 187 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Drowzee with Wish & Belly Drum
new ( ) { Species = 102 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 230 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Exeggcute with Wish & Sweet Scent
new ( ) { Species = 108 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 215 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Lickitung with Wish & Heal Bell
new ( ) { Species = 113 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 230 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Chansey with Wish & Sweet Scent
new ( ) { Species = 115 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 281 , 273 , 000 , 000 ) , Method = PIDType . Method_2 } , // Kangaskhan with Wish & Yawn
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// PokePark Eggs - Wondercard
2022-09-01 01:55:17 +00:00
new ( ) { Species = 054 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 346 , 010 , 039 , 300 ) , Method = PIDType . Method_2 } , // Psyduck with Mud Sport
new ( ) { Species = 172 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 084 , 204 , 266 , 000 ) , Method = PIDType . Method_2 } , // Pichu with Follow me
new ( ) { Species = 174 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 047 , 204 , 111 , 321 ) , Method = PIDType . Method_2 } , // Igglybuff with Tickle
new ( ) { Species = 222 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 033 , 300 , 000 , 000 ) , Method = PIDType . Method_2 } , // Corsola with Mud Sport
new ( ) { Species = 276 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 064 , 045 , 116 , 297 ) , Method = PIDType . Method_2 } , // Taillow with Feather Dance
new ( ) { Species = 283 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 145 , 300 , 000 , 000 ) , Method = PIDType . Method_2 } , // Surskit with Mud Sport
new ( ) { Species = 293 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 001 , 253 , 298 , 000 ) , Method = PIDType . Method_2 } , // Whismur with Teeter Dance
new ( ) { Species = 300 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 045 , 033 , 039 , 205 ) , Method = PIDType . Method_2 } , // Skitty with Rollout
new ( ) { Species = 311 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 045 , 086 , 346 , 000 ) , Method = PIDType . Method_2 } , // Plusle with Water Sport
new ( ) { Species = 312 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 045 , 086 , 300 , 000 ) , Method = PIDType . Method_2 } , // Minun with Mud Sport
new ( ) { Species = 325 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 150 , 253 , 000 , 000 ) , Method = PIDType . Method_2 } , // Spoink with Uproar
new ( ) { Species = 327 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 033 , 253 , 047 , 000 ) , Method = PIDType . Method_2 } , // Spinda with Sing
new ( ) { Species = 331 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 040 , 043 , 071 , 227 ) , Method = PIDType . Method_2 } , // Cacnea with Encore
new ( ) { Species = 341 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 145 , 346 , 000 , 000 ) , Method = PIDType . Method_2 } , // Corphish with Water Sport
new ( ) { Species = 360 , IsEgg = true , Fateful = true , Level = 05 , TID = - 1 , SID = - 1 , Version = GameVersion . FRLG , Moves = new ( 150 , 204 , 227 , 321 ) , Method = PIDType . Method_2 } , // Wynaut with Tickle
2022-06-18 18:04:24 +00:00
} ;
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_Event3_RS =
{
// PCJP - Pokémon Center 5th Anniversary Eggs (April 25 to May 18, 2003)
2022-09-01 01:55:17 +00:00
new ( ) { Species = 172 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 084 , 204 , 298 , 000 ) , Method = PIDType . BACD_R } , // Pichu with Teeter Dance
new ( ) { Species = 172 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 084 , 204 , 273 , 000 ) , Method = PIDType . BACD_R } , // Pichu with Wish
new ( ) { Species = 172 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 084 , 204 , 298 , 000 ) , Method = PIDType . BACD_R_S } , // Pichu with Teeter Dance
new ( ) { Species = 172 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 084 , 204 , 273 , 000 ) , Method = PIDType . BACD_R_S } , // Pichu with Wish
new ( ) { Species = 280 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 045 , 204 , 000 , 000 ) , Method = PIDType . BACD_R } , // Ralts with Charm
2022-09-02 04:25:48 +00:00
new ( ) { Species = 280 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 045 , 273 , 000 , 000 ) , Method = PIDType . BACD_R } , // Ralts with Wish
2022-09-01 01:55:17 +00:00
new ( ) { Species = 359 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 010 , 043 , 180 , 000 ) , Method = PIDType . BACD_R } , // Absol with Spite
new ( ) { Species = 359 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 010 , 043 , 273 , 000 ) , Method = PIDType . BACD_R } , // Absol with Wish
new ( ) { Species = 371 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 099 , 044 , 334 , 000 ) , Method = PIDType . BACD_R } , // Bagon with Iron Defense
new ( ) { Species = 371 , IsEgg = true , Level = 05 , OT_Name = "オヤNAME" , TID = - 1 , SID = - 1 , Version = GameVersion . R , Moves = new ( 099 , 044 , 273 , 000 ) , Method = PIDType . BACD_R } , // Bagon with Wish
2018-05-12 15:13:39 +00:00
2022-06-18 18:04:24 +00:00
// Negai Boshi Jirachi
new ( ) { Species = 385 , Level = 05 , TID = 30719 , OT_Gender = 0 , OT_Name = "ネガイボシ" , Version = GameVersion . R , Method = PIDType . BACD_R , Language = ( int ) LanguageID . Japanese , Shiny = Shiny . Never } ,
new ( ) { Species = 385 , Level = 05 , TID = 30719 , OT_Name = "ネガイボシ" , Version = GameVersion . RS , Method = PIDType . BACD_U_AX , Language = ( int ) LanguageID . Japanese , Shiny = Shiny . Never } ,
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Berry Glitch Fix
// PCJP - (December 29, 2003 to March 31, 2004)
new ( ) { Species = 263 , Level = 5 , Version = GameVersion . S , Language = ( int ) LanguageID . Japanese , Method = PIDType . BACD_R_S , TID = 21121 , OT_Name = "ルビー" , OT_Gender = 1 , Shiny = Shiny . Always } ,
new ( ) { Species = 263 , Level = 5 , Version = GameVersion . S , Language = ( int ) LanguageID . Japanese , Method = PIDType . BACD_R_S , TID = 21121 , OT_Name = "サファイア" , OT_Gender = 0 , Shiny = Shiny . Always } ,
2018-05-12 15:13:39 +00:00
2022-06-18 18:04:24 +00:00
// EBGames/GameStop (March 1, 2004 to April 22, 2007), also via multi-game discs
new ( ) { Species = 263 , Level = 5 , Version = GameVersion . S , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R_S , TID = 30317 , OT_Name = "RUBY" , OT_Gender = 1 } ,
new ( ) { Species = 263 , Level = 5 , Version = GameVersion . S , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R_S , TID = 30317 , OT_Name = "SAPHIRE" , OT_Gender = 0 } ,
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Channel Jirachi
new ( ) { Species = 385 , Level = 5 , Version = GameVersion . RS , Method = PIDType . Channel , TID = 40122 , OT_Gender = 3 , SID = - 1 , OT_Name = "CHANNEL" , CardTitle = "Channel Jirachi" , Met_Level = 0 } ,
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Aura Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 20078 , OT_Name = "Aura" , Fateful = true , Shiny = Shiny . Never } , // Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 20078 , OT_Name = "Aura" , Fateful = true , Shiny = Shiny . Never } , // Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 20078 , OT_Name = "Aura" , Fateful = true , Shiny = Shiny . Never } , // Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 20078 , OT_Name = "Aura" , Fateful = true , Shiny = Shiny . Never } , // Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 20078 , OT_Name = "Aura" , Fateful = true , Shiny = Shiny . Never } , // Mew
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// English Events
2022-08-22 00:34:32 +00:00
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Pikachu
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 249 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 056 , 240 , 129 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Lugia
new ( ) { Species = 250 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 126 , 241 , 129 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Ho-Oh
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Latios
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// French
2022-08-22 00:34:32 +00:00
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Pikachu
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 249 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 056 , 240 , 129 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Lugia
new ( ) { Species = 250 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 126 , 241 , 129 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Ho-Oh
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . French , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNIV" , Shiny = Shiny . Never } , // Latios
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Italian
2022-08-22 00:34:32 +00:00
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Pikachu
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 249 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 056 , 240 , 129 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Lugia
new ( ) { Species = 250 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 126 , 241 , 129 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Ho-Oh
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . Italian , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANNI" , Shiny = Shiny . Never } , // Latios
2018-05-12 15:13:39 +00:00
2022-06-18 18:04:24 +00:00
// German
2022-08-22 00:34:32 +00:00
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Pikachu
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 249 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 056 , 240 , 129 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Lugia
new ( ) { Species = 250 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 126 , 241 , 129 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Ho-Oh
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . German , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10JAHRE" , Shiny = Shiny . Never } , // Latios
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Spanish
2022-08-22 00:34:32 +00:00
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Pikachu
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 249 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 056 , 240 , 129 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Lugia
new ( ) { Species = 250 , Level = 70 , Version = GameVersion . R , Moves = new ( 105 , 126 , 241 , 129 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Ho-Oh
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . Spanish , Method = PIDType . BACD_R , TID = 06227 , OT_Name = "10ANIV" , Shiny = Shiny . Never } , // Latios
2018-03-17 02:35:55 +00:00
2022-08-22 00:34:32 +00:00
new ( ) { Species = 375 , Level = 30 , Version = GameVersion . R , Moves = new ( 036 , 093 , 232 , 287 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 02005 , OT_Name = "ROCKS" , OT_Gender = 0 , RibbonNational = true , Shiny = Shiny . Never } , // Metang
new ( ) { Species = 386 , Level = 70 , Version = GameVersion . R , Moves = new ( 322 , 105 , 354 , 063 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 28606 , OT_Name = "DOEL" , Fateful = true , Shiny = Shiny . Never } , // Deoxys
new ( ) { Species = 386 , Level = 70 , Version = GameVersion . R , Moves = new ( 322 , 105 , 354 , 063 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "SPACE C" , Fateful = true , Shiny = Shiny . Never } , // Deoxys
2022-06-18 18:04:24 +00:00
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . English , Method = PIDType . BACD_U , TID = 06930 , OT_Name = "MYSTRY" , Fateful = true , Shiny = Shiny . Never } , // Mew
new ( ) { Species = 151 , Level = 10 , Version = GameVersion . R , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06930 , OT_Name = "MYSTRY" , Fateful = true , Shiny = Shiny . Never } , // Mew
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
// Party of the Decade
2022-08-22 00:34:32 +00:00
new ( ) { Species = 001 , Level = 70 , Version = GameVersion . R , Moves = new ( 230 , 074 , 076 , 235 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Bulbasaur
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 009 , Level = 70 , Version = GameVersion . R , Moves = new ( 182 , 240 , 130 , 056 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Blastoise
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 087 , 113 , 019 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , HeldItem = 202 , Shiny = Shiny . Never } , // Pikachu (Fly)
new ( ) { Species = 065 , Level = 70 , Version = GameVersion . R , Moves = new ( 248 , 347 , 094 , 271 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Alakazam
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 145 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 197 , 065 , 268 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Zapdos
new ( ) { Species = 146 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 203 , 053 , 219 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Moltres
new ( ) { Species = 149 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 219 , 017 , 200 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Dragonite
new ( ) { Species = 157 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 172 , 129 , 053 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Typhlosion
new ( ) { Species = 196 , Level = 70 , Version = GameVersion . R , Moves = new ( 060 , 244 , 094 , 234 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Espeon
new ( ) { Species = 197 , Level = 70 , Version = GameVersion . R , Moves = new ( 185 , 212 , 103 , 236 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Umbreon
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 248 , Level = 70 , Version = GameVersion . R , Moves = new ( 037 , 184 , 242 , 089 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Tyranitar
new ( ) { Species = 257 , Level = 70 , Version = GameVersion . R , Moves = new ( 299 , 163 , 119 , 327 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Blaziken
new ( ) { Species = 359 , Level = 70 , Version = GameVersion . R , Moves = new ( 104 , 163 , 248 , 195 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Absol
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , HeldItem = 191 , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 06808 , OT_Name = "10 ANIV" , HeldItem = 191 , Shiny = Shiny . Never } , // Latios
2018-05-12 15:13:39 +00:00
2022-06-18 18:04:24 +00:00
// Journey Across America
2022-08-22 00:34:32 +00:00
new ( ) { Species = 001 , Level = 70 , Version = GameVersion . R , Moves = new ( 230 , 074 , 076 , 235 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Bulbasaur
new ( ) { Species = 006 , Level = 70 , Version = GameVersion . R , Moves = new ( 017 , 163 , 082 , 083 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Charizard
new ( ) { Species = 009 , Level = 70 , Version = GameVersion . R , Moves = new ( 182 , 240 , 130 , 056 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Blastoise
new ( ) { Species = 025 , Level = 70 , Version = GameVersion . R , Moves = new ( 085 , 097 , 087 , 113 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , HeldItem = 202 , Shiny = Shiny . Never } , // Pikachu (No Fly)
new ( ) { Species = 065 , Level = 70 , Version = GameVersion . R , Moves = new ( 248 , 347 , 094 , 271 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Alakazam
new ( ) { Species = 144 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 170 , 058 , 115 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Articuno
new ( ) { Species = 145 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 197 , 065 , 268 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Zapdos
new ( ) { Species = 146 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 203 , 053 , 219 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Moltres
new ( ) { Species = 149 , Level = 70 , Version = GameVersion . R , Moves = new ( 097 , 219 , 017 , 200 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Dragonite
new ( ) { Species = 157 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 172 , 129 , 053 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Typhlosion
new ( ) { Species = 196 , Level = 70 , Version = GameVersion . R , Moves = new ( 060 , 244 , 094 , 234 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Espeon
new ( ) { Species = 197 , Level = 70 , Version = GameVersion . R , Moves = new ( 185 , 212 , 103 , 236 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Umbreon
new ( ) { Species = 243 , Level = 70 , Version = GameVersion . R , Moves = new ( 098 , 209 , 115 , 242 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Raikou
new ( ) { Species = 244 , Level = 70 , Version = GameVersion . R , Moves = new ( 083 , 023 , 053 , 207 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Entei
new ( ) { Species = 245 , Level = 70 , Version = GameVersion . R , Moves = new ( 016 , 062 , 054 , 243 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Suicune
new ( ) { Species = 248 , Level = 70 , Version = GameVersion . R , Moves = new ( 037 , 184 , 242 , 089 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Tyranitar
new ( ) { Species = 251 , Level = 70 , Version = GameVersion . R , Moves = new ( 246 , 248 , 226 , 195 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Celebi
new ( ) { Species = 257 , Level = 70 , Version = GameVersion . R , Moves = new ( 299 , 163 , 119 , 327 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Blaziken
new ( ) { Species = 359 , Level = 70 , Version = GameVersion . R , Moves = new ( 104 , 163 , 248 , 195 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , Shiny = Shiny . Never } , // Absol
new ( ) { Species = 380 , Level = 70 , Version = GameVersion . R , Moves = new ( 296 , 094 , 105 , 204 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , HeldItem = 191 , Shiny = Shiny . Never } , // Latias
new ( ) { Species = 381 , Level = 70 , Version = GameVersion . R , Moves = new ( 295 , 094 , 105 , 349 ) , Language = ( int ) LanguageID . English , Method = PIDType . BACD_R , TID = 00010 , OT_Name = "10 ANIV" , HeldItem = 191 , Shiny = Shiny . Never } , // Latios
2022-06-18 18:04:24 +00:00
} ;
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_Event3_Common =
{
// Pokémon Box -- RSE Recipient
2022-09-01 01:55:17 +00:00
new ( ) { Species = 333 , IsEgg = true , Level = 05 , Moves = new ( 064 , 045 , 206 , 000 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . RSE } , // Swablu Egg with False Swipe
new ( ) { Species = 263 , IsEgg = true , Level = 05 , Moves = new ( 033 , 045 , 039 , 245 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . RSE } , // Zigzagoon Egg with Extreme Speed
new ( ) { Species = 300 , IsEgg = true , Level = 05 , Moves = new ( 033 , 045 , 039 , 006 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . RSE } , // Skitty Egg with Pay Day
new ( ) { Species = 172 , IsEgg = true , Level = 05 , Moves = new ( 084 , 204 , 057 , 000 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . RSE } , // Pichu Egg with Surf
2022-06-18 18:04:24 +00:00
// Pokémon Box -- FRLG Recipient
2022-09-01 01:55:17 +00:00
new ( ) { Species = 333 , IsEgg = true , Level = 05 , Moves = new ( 064 , 045 , 206 , 000 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . FRLG } , // Swablu Egg with False Swipe
new ( ) { Species = 263 , IsEgg = true , Level = 05 , Moves = new ( 033 , 045 , 039 , 245 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . FRLG } , // Zigzagoon Egg with Extreme Speed
new ( ) { Species = 300 , IsEgg = true , Level = 05 , Moves = new ( 033 , 045 , 039 , 006 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . FRLG } , // Skitty Egg with Pay Day
new ( ) { Species = 172 , IsEgg = true , Level = 05 , Moves = new ( 084 , 204 , 057 , 000 ) , Method = PIDType . BACD_U , OT_Gender = 1 , OT_Name = "A Z U S A " , Version = GameVersion . FRLG } , // Pichu Egg with Surf
2018-05-12 15:13:39 +00:00
2022-06-18 18:04:24 +00:00
// PokePark Eggs - DS Download Play
2022-08-22 00:34:32 +00:00
new ( ) { Species = 054 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 300 ) , Method = PIDType . BACD_R } , // Psyduck with Mud Sport
2022-09-01 01:55:17 +00:00
new ( ) { Species = 172 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 266 ) , Method = PIDType . BACD_R } , // Pichu with Follow Me
2022-08-22 00:34:32 +00:00
new ( ) { Species = 174 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 321 ) , Method = PIDType . BACD_R } , // Igglybuff with Tickle
new ( ) { Species = 222 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 300 ) , Method = PIDType . BACD_R } , // Corsola with Mud Sport
new ( ) { Species = 276 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 297 ) , Method = PIDType . BACD_R } , // Taillow with Feather Dance
new ( ) { Species = 283 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 300 ) , Method = PIDType . BACD_R } , // Surskit with Mud Sport
new ( ) { Species = 293 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 298 ) , Method = PIDType . BACD_R } , // Whismur with Teeter Dance
new ( ) { Species = 300 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 205 ) , Method = PIDType . BACD_R } , // Skitty with Rollout
new ( ) { Species = 311 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 346 ) , Method = PIDType . BACD_R } , // Plusle with Water Sport
new ( ) { Species = 312 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 300 ) , Method = PIDType . BACD_R } , // Minun with Mud Sport
new ( ) { Species = 325 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 253 ) , Method = PIDType . BACD_R } , // Spoink with Uproar
new ( ) { Species = 327 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 047 ) , Method = PIDType . BACD_R } , // Spinda with Sing
new ( ) { Species = 331 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 227 ) , Method = PIDType . BACD_R } , // Cacnea with Encore
new ( ) { Species = 341 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 346 ) , Method = PIDType . BACD_R } , // Corphish with Water Sport
new ( ) { Species = 360 , IsEgg = true , Level = 05 , Met_Level = 05 , TID = 50318 , OT_Gender = 0 , OT_Name = "ポケパーク" , Version = GameVersion . R , Moves = new ( 321 ) , Method = PIDType . BACD_R } , // Wynaut with Tickle
2022-06-18 18:04:24 +00:00
} ;
2017-07-25 07:28:43 +00:00
2022-06-18 18:04:24 +00:00
internal static readonly WC3 [ ] Encounter_WC3 = ArrayUtil . ConcatAll ( Encounter_Event3 , Encounter_Event3_RS , Encounter_Event3_FRLG , Encounter_Event3_Common ) ;
2017-07-25 07:28:43 +00:00
}