using System.Collections.Generic; using System.Linq; namespace PKHeX { public static partial class Legal { internal static WC6[] WC6DB; // PKHeX master personal.dat internal static readonly PersonalInfo[] PersonalAO = PersonalInfo.getPersonalArray(Properties.Resources.personal_ao, PersonalInfo.SizeAO); private static readonly PersonalInfo[] PersonalXY = PersonalInfo.getPersonalArray(Properties.Resources.personal_xy, PersonalInfo.SizeXY); private static readonly EggMoves[] EggMoveXY = EggMoves.getArray(Util.unpackMini(Properties.Resources.eggmove_xy, "xy")); private static readonly Learnset[] LevelUpXY = Learnset.getArray(Util.unpackMini(Properties.Resources.lvlmove_xy, "xy")); private static readonly EggMoves[] EggMoveAO = EggMoves.getArray(Util.unpackMini(Properties.Resources.eggmove_ao, "ao")); private static readonly Learnset[] LevelUpAO = Learnset.getArray(Util.unpackMini(Properties.Resources.lvlmove_ao, "ao")); private static readonly Evolutions[] Evolves = Evolutions.getArray(Util.unpackMini(Properties.Resources.evos_ao, "ao")); private static readonly EncounterArea[] SlotsA = EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_a, "ao")); private static readonly EncounterArea[] SlotsO = EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_o, "ao")); #region XY Alt Slots private static readonly EncounterArea[] SlotsXYAlt = { new EncounterArea { Location = 104, // Victory Road Slots = new[] { // Drops new EncounterSlot { Species = 075, LevelMin = 57, LevelMax = 57, Form = 0 }, // Graveler new EncounterSlot { Species = 168, LevelMin = 58, LevelMax = 59, Form = 0 }, // Ariados new EncounterSlot { Species = 714, LevelMin = 57, LevelMax = 59, Form = 0 }, // Noibat // Swoops new EncounterSlot { Species = 022, LevelMin = 57, LevelMax = 59, Form = 0 }, // Fearow new EncounterSlot { Species = 227, LevelMin = 57, LevelMax = 59, Form = 0 }, // Skarmory new EncounterSlot { Species = 635, LevelMin = 59, LevelMax = 59, Form = 0 }, // Hydreigon },}, new EncounterArea { Location = 34, // Route 6 Slots = new[] { // Rustling Bush new EncounterSlot { Species = 543, LevelMin = 10, LevelMax = 12, Form = 0 }, // Venipede new EncounterSlot { Species = 531, LevelMin = 10, LevelMax = 12, Form = 0 }, // Audino },}, new EncounterArea { Location = 88, // Route 18 Slots = new[] { // Rustling Bush new EncounterSlot { Species = 632, LevelMin = 44, LevelMax = 46, Form = 0 }, // Durant new EncounterSlot { Species = 631, LevelMin = 45, LevelMax = 45, Form = 0 }, // Heatmor },}, new EncounterArea { Location = 132, // Glittering Cave Slots = new[] { // Drops new EncounterSlot { Species = 527, LevelMin = 15, LevelMax = 17, Form = 0 }, // Woobat new EncounterSlot { Species = 597, LevelMin = 15, LevelMax = 17, Form = 0 }, // Ferroseed },}, new EncounterArea { Location = 56, // Reflection Cave Slots = new[] { // Drops new EncounterSlot { Species = 527, LevelMin = 21, LevelMax = 23, Form = 0 }, // Woobat new EncounterSlot { Species = 597, LevelMin = 21, LevelMax = 23, Form = 0 }, // Ferroseed },}, }; #endregion private static readonly EncounterArea[] SlotsX = addXYAltTiles(EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_x, "xy")), SlotsXYAlt); private static readonly EncounterArea[] SlotsY = addXYAltTiles(EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_y, "xy")), SlotsXYAlt); private static readonly EncounterArea[] DexNavA = getDexNavSlots(SlotsA, 32); private static readonly EncounterArea[] DexNavO = getDexNavSlots(SlotsO, 32); private static EncounterArea[] addXYAltTiles(EncounterArea[] GameSlots, EncounterArea[] SpecialSlots) { foreach (EncounterArea g in GameSlots) { EncounterArea slots = SpecialSlots.FirstOrDefault(l => l.Location == g.Location); if (slots != null) g.Slots = g.Slots.Concat(slots.Slots).ToArray(); } return GameSlots; } private static EncounterArea[] getDexNavSlots(EncounterArea[] GameSlots, int smashSlot) { EncounterArea[] eA = new EncounterArea[GameSlots.Length]; for (int i = 0; i < eA.Length; i++) { eA[i] = new EncounterArea {Location = GameSlots[i].Location, Slots = GameSlots[i].Slots}; eA[i].Slots = eA[i].Slots.Take(smashSlot).Concat(eA[i].Slots.Skip(smashSlot+5)).ToArray(); // Skip 5 Rock Smash slots. } return eA; } internal static bool getDexNavValid(PK6 pk6) { IEnumerable locs = getDexNavAreas(pk6); return locs.Select(loc => getValidEncounterSlots(pk6, loc, DexNav: true)).Any(slots => slots.Any()); } internal static IEnumerable getValidMoves(PK6 pk6) { List r = new List {0}; int species = pk6.Species; if (FormChange.Contains(species)) // Deoxys & Shaymin & Giratina (others don't have extra but whatever) { int formcount = PersonalAO[species].FormeCount; for (int i = 0; i < formcount; i++) { // Check all Forms r.AddRange(getLVLMoves(species, pk6.CurrentLevel, i)); r.AddRange(getTutorMoves(species, i)); r.AddRange(getMachineMoves(species, i)); } return r.Distinct().ToArray(); } r.AddRange(getLVLMoves(species, pk6.CurrentLevel, pk6.AltForm)); r.AddRange(getTutorMoves(species, pk6.AltForm)); r.AddRange(getMachineMoves(species, pk6.AltForm)); IEnumerable vs = getValidPreEvolutions(pk6); foreach (DexLevel evo in vs) { r.AddRange(getLVLMoves(evo.Species, evo.Level, pk6.AltForm)); r.AddRange(getTutorMoves(evo.Species, pk6.AltForm)); r.AddRange(getMachineMoves(evo.Species, pk6.AltForm)); } if (species == 479) // Rotom r.Add(RotomMoves[pk6.AltForm]); if (species == 25) // Pikachu r.Add(PikachuMoves[pk6.AltForm]); return r.Distinct().ToArray(); } internal static IEnumerable getValidRelearn(PK6 pk6, int skipOption) { List r = new List { 0 }; int species = getBaseSpecies(pk6, skipOption); r.AddRange(getLVLMoves(species, 1, pk6.AltForm)); r.AddRange(getEggMoves(species, pk6.Species == 678 ? pk6.AltForm : 0)); r.AddRange(getLVLMoves(species, 100, pk6.AltForm)); return r.Distinct(); } internal static int[] getLinkMoves(PK6 pk6) { if (pk6.Species == 251 && pk6.Met_Level == 10) // Celebi return new[] {610, 0, 0, 0}; if (pk6.Species == 154 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Meganium Hidden return new[] {0, 0, 0, 0}; if (pk6.Species == 157 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Typhlosion Hidden return new[] {0, 0, 0, 0}; if (pk6.Species == 160 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Feraligatr Hidden return new[] {0, 0, 0, 0}; if (pk6.Species == 377 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Regirock Hidden return new[] {153, 8, 444, 359}; if (pk6.Species == 378 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Regice Hidden return new[] {85, 133, 58, 258}; if (pk6.Species == 379 && pk6.Met_Level == 50 && pk6.AbilityNumber == 4) // Registeel Hidden return new[] {442, 157, 356, 334}; return new int[0]; } internal static IEnumerable getValidWC6s(PK6 pk6) { var vs = getValidPreEvolutions(pk6).ToArray(); List validWC6 = new List(); foreach (WC6 wc in WC6DB.Where(wc => vs.Any(dl => dl.Species == wc.Species))) { if (pk6.Egg_Location == 0) // Not Egg { if (wc.CardID != pk6.SID) continue; if (wc.TID != pk6.TID) continue; if (wc.OT != pk6.OT_Name) continue; if (wc.OTGender != pk6.OT_Gender) continue; if (wc.PIDType == 0 && pk6.PID != wc.PID) continue; if (wc.PIDType == 2 && !pk6.IsShiny) continue; if (wc.PIDType == 3 && pk6.IsShiny) continue; if (wc.OriginGame != 0 && wc.OriginGame != pk6.Version) continue; if (wc.EncryptionConstant != 0 && wc.EncryptionConstant != pk6.EncryptionConstant) continue; if (wc.Language != 0 && wc.Language != pk6.Language) continue; } if (wc.Form != pk6.AltForm && vs.All(dl => !FormChange.Contains(dl.Species))) continue; if (wc.MetLocation != pk6.Met_Location) continue; if (wc.EggLocation != pk6.Egg_Location) continue; if (wc.Level != pk6.Met_Level) continue; if (wc.Pokéball != pk6.Ball) continue; if (wc.OTGender < 3 && wc.OTGender != pk6.OT_Gender) continue; if (wc.Nature != 0xFF && wc.Nature != pk6.Nature) continue; if (wc.Gender != 3 && wc.Gender != pk6.Gender) continue; if (wc.CNT_Cool > pk6.CNT_Cool) continue; if (wc.CNT_Beauty > pk6.CNT_Beauty) continue; if (wc.CNT_Cute > pk6.CNT_Cute) continue; if (wc.CNT_Smart > pk6.CNT_Smart) continue; if (wc.CNT_Tough > pk6.CNT_Tough) continue; if (wc.CNT_Sheen > pk6.CNT_Sheen) continue; // Some checks are best performed separately as they are caused by users screwing up valid data. // if (!wc.RelearnMoves.SequenceEqual(pk6.RelearnMoves)) continue; // Defer to relearn legality // if (wc.OT.Length > 0 && pk6.CurrentHandler != 1) continue; // Defer to ownership legality // if (wc.OT.Length > 0 && pk6.OT_Friendship != PKX.getBaseFriendship(pk6.Species)) continue; // Friendship // if (wc.Level > pk6.CurrentLevel) continue; // Defer to level legality // RIBBONS: Defer to ribbon legality validWC6.Add(wc); } return validWC6; } internal static bool getWildEncounterValid(PK6 pk6) { var areas = getEncounterAreas(pk6); bool slots = areas.Any(a => getValidEncounterSlots(pk6, a, DexNav: false).Any()); if (slots) return true; // Try DexNav -- quickly returns if not AO areas = getDexNavAreas(pk6); slots = areas.Any(a => getValidEncounterSlots(pk6, a, DexNav: true).Any()); return slots; } internal static bool getHasEvolved(PK6 pk6) { return getValidPreEvolutions(pk6).Count() > 1; } internal static bool getIsFossil(PK6 pk6) { if (pk6.Met_Level != 20) return false; if (pk6.Egg_Location != 0) return false; if (pk6.XY && pk6.Met_Location == 44) return Fossils.Contains(getBaseSpecies(pk6)); if (pk6.AO && pk6.Met_Location == 190) return Fossils.Contains(getBaseSpecies(pk6)); return false; } internal static int getFriendSafariValid(PK6 pk6) { if (!pk6.XY) return -1; IEnumerable vs = getValidPreEvolutions(pk6); foreach (DexLevel d in vs.Where(d => FriendSafari.Contains(d.Species) && d.Level >= 30)) return d.Species; return -1; } internal static IEnumerable getBaseEggMoves(PK6 pk6, int skipOption, int gameSource) { int species = getBaseSpecies(pk6, skipOption); if (gameSource == -1) { if (pk6.XY) return LevelUpXY[species].getMoves(1); // if (pk6.Version == 26 || pk6.Version == 27) return LevelUpAO[species].getMoves(1); } if (gameSource == 0) // XY return LevelUpXY[species].getMoves(1); // if (gameSource == 1) // ORAS return LevelUpAO[species].getMoves(1); } internal static EncounterStatic getStaticEncounter(PK6 pk6) { // Get possible encounters IEnumerable poss = getStaticEncounters(pk6); // Back Check against pk6 foreach (EncounterStatic e in poss) { if (e.Nature != Nature.Random && pk6.Nature != (int)e.Nature) continue; if (e.EggLocation != pk6.Egg_Location) continue; if (e.Location != 0 && e.Location != pk6.Met_Location) continue; if (e.Ability == 4 && pk6.AbilityNumber != 4) // Hidden can't be changed by Ability Capsule continue; if (e.Ability != 4 && pk6.AbilityNumber == 4) // Shouldn't be Hidden continue; if (e.Gender != -1 && e.Gender != pk6.Gender) continue; if (e.Level != pk6.Met_Level) continue; if (e.Shiny != null && e.Shiny != pk6.IsShiny) continue; if (e.Gift && pk6.Ball != 4) // PokéBall continue; // Passes all checks, valid encounter return e; } return null; } internal static EncounterTrade getIngameTrade(PK6 pk6) { int lang = pk6.Language; if (lang == 0) return null; // Get valid pre-evolutions IEnumerable p = getValidPreEvolutions(pk6); if (pk6.XY) return lang == 6 ? null : TradeGift_XY.FirstOrDefault(f => p.Any(r => r.Species == f.Species)); if (pk6.AO) return lang == 6 ? null : TradeGift_AO.FirstOrDefault(f => p.Any(r => r.Species == f.Species)); return null; } private static IEnumerable getDexNavAreas(PK6 pk6) { bool alpha = pk6.Version == 26; if (!alpha && pk6.Version != 27) return new EncounterArea[0]; return (alpha ? DexNavA : DexNavO).Where(l => l.Location == pk6.Met_Location); } private static int getBaseSpecies(PK6 pk6, int skipOption = 0) { if (pk6.Species == 292) return 290; DexLevel[] evos = Evolves[pk6.Species].Evos; switch (skipOption) { case -1: return pk6.Species; case 1: return evos.Length <= 1 ? pk6.Species : evos[evos.Length - 2].Species; default: return evos.Length <= 0 ? pk6.Species : evos.Last().Species; } } private static IEnumerable getLVLMoves(int species, int lvl, int formnum) { int ind_XY = PersonalXY[species].FormeIndex(species, formnum); int ind_AO = PersonalAO[species].FormeIndex(species, formnum); return LevelUpXY[ind_XY].getMoves(lvl).Concat(LevelUpAO[ind_AO].getMoves(lvl)); } private static IEnumerable getEncounterSlots(PK6 pk6) { switch (pk6.Version) { case 24: // X return getSlots(pk6, SlotsX); case 25: // Y return getSlots(pk6, SlotsY); case 26: // AS return getSlots(pk6, SlotsA); case 27: // OR return getSlots(pk6, SlotsO); default: return new List(); } } private static IEnumerable getStaticEncounters(PK6 pk6) { switch (pk6.Version) { case 24: // X return getStatic(pk6, StaticX); case 25: // Y return getStatic(pk6, StaticY); case 26: // AS return getStatic(pk6, StaticA); case 27: // OR return getStatic(pk6, StaticO); default: return new List(); } } private static IEnumerable getEncounterAreas(PK6 pk6) { return getEncounterSlots(pk6).Where(l => l.Location == pk6.Met_Location); } private static IEnumerable getValidEncounterSlots(PK6 pk6, EncounterArea loc, bool DexNav) { // Get Valid levels IEnumerable vs = getValidPreEvolutions(pk6); // Get slots where pokemon can exist IEnumerable slots = loc.Slots.Where(slot => vs.Any(evo => evo.Species == slot.Species && evo.Level >= slot.LevelMin)); // Filter for Met Level int lvl = pk6.Met_Level; slots = DexNav ? slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax + 30) // DexNav Boost Range ?? : slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax); // Non-boosted Level // Filter for Form Specific if (WildForms.Contains(pk6.Species)) slots = slots.Where(slot => slot.Form == pk6.AltForm); return slots; } private static IEnumerable getSlots(PK6 pk6, IEnumerable tables) { int species = pk6.Species; IEnumerable vs = getValidPreEvolutions(pk6); List slotLocations = new List(); foreach (var loc in tables) { IEnumerable slots = loc.Slots.Where(slot => vs.Any(evo => evo.Species == slot.Species && evo.Level >= slot.LevelMin)); if (WildForms.Contains(species)) slots = slots.Where(slot => slot.Form == pk6.AltForm); EncounterSlot[] es = slots.ToArray(); if (es.Length > 0) slotLocations.Add(new EncounterArea { Location = loc.Location, Slots = es }); } return slotLocations; } private static IEnumerable getValidPreEvolutions(PK6 pk6) { int lvl = pk6.CurrentLevel; if (pk6.Species == 292 && pk6.Met_Level + 1 <= lvl && lvl >= 20) return new List { new DexLevel { Species = 292, Level = lvl }, new DexLevel { Species = 290, Level = lvl-1 } }; var evos = Evolves[pk6.Species].Evos; List dl = new List { new DexLevel { Species = pk6.Species, Level = lvl } }; foreach (DexLevel evo in evos) { if (lvl >= pk6.Met_Level && lvl >= evo.Level) dl.Add(new DexLevel {Species = evo.Species, Level = lvl}); else break; if (evo.Level > 1) // Level Up (from previous level) lvl--; } return dl; } private static IEnumerable getStatic(PK6 pk6, IEnumerable table) { IEnumerable dl = getValidPreEvolutions(pk6); return table.Where(e => dl.Any(d => d.Species == e.Species)); } private static IEnumerable getEggMoves(int species, int formnum) { int ind_XY = PersonalXY[species].FormeIndex(species, formnum); int ind_AO = PersonalAO[species].FormeIndex(species, formnum); return EggMoveAO[ind_AO].Moves.Concat(EggMoveXY[ind_XY].Moves); } private static IEnumerable getTutorMoves(int species, int formnum) { PersonalInfo pkAO = PersonalAO[PersonalAO[species].FormeIndex(species, formnum)]; // Type Tutor List moves = TypeTutor.Where((t, i) => pkAO.Tutors[i]).ToList(); // Varied Tutors for (int i = 0; i < Tutors_AO.Length; i++) for (int b = 0; b < Tutors_AO[i].Length; b++) if (pkAO.ORASTutors[i][b]) moves.Add(Tutors_AO[i][b]); // Keldeo - Secret Sword if (species == 647) moves.Add(548); return moves; } private static IEnumerable getMachineMoves(int species, int formnum) { PersonalInfo pkXY = PersonalXY[PersonalXY[species].FormeIndex(species, formnum)]; PersonalInfo pkAO = PersonalAO[PersonalAO[species].FormeIndex(species, formnum)]; List moves = new List(); moves.AddRange(TMHM_XY.Where((t, i) => pkXY.TMHM[i])); moves.AddRange(TMHM_AO.Where((t, i) => pkAO.TMHM[i])); return moves; } #region Static Encounter/Gift Tables private static readonly EncounterStatic[] Encounter_XY = { new EncounterStatic { Species = 650, Level = 5, Location = 10, Gift = true }, // Chespin new EncounterStatic { Species = 653, Level = 5, Location = 10, Gift = true }, // Fennekin new EncounterStatic { Species = 656, Level = 5, Location = 10, Gift = true }, // Froakie new EncounterStatic { Species = 1, Level = 10, Location = 22, Gift = true }, // Bulbasaur new EncounterStatic { Species = 4, Level = 10, Location = 22, Gift = true }, // Charmander new EncounterStatic { Species = 7, Level = 10, Location = 22, Gift = true }, // Squirtle new EncounterStatic { Species = 448, Level = 32, Location = 60, Ability = 1, Nature = Nature.Hasty, Gender = 0, IVs = new[] {6, 25, 16, 31, 25, 19}, Gift = true, Shiny = false }, // Lucario new EncounterStatic { Species = 131, Level = 32, Location = 62, Nature = Nature.Docile, IVs = new[] {31, 20, 20, 20, 20, 20}, Gift = true }, // Lapras new EncounterStatic { Species = 143, Level = 15, Location = 38 }, // Snorlax new EncounterStatic { Species = 568, Level = 35, Location = 142 }, // Trubbish new EncounterStatic { Species = 569, Level = 36, Location = 142 }, // Garbodor new EncounterStatic { Species = 569, Level = 37, Location = 142 }, // Garbodor new EncounterStatic { Species = 569, Level = 38, Location = 142 }, // Garbodor new EncounterStatic { Species = 479, Level = 38, Location = 142 }, // Rotom new EncounterStatic { Species = 716, Level = 50, Location = 138, Version = GameVersion.X, Shiny = false }, // Xerneas new EncounterStatic { Species = 717, Level = 50, Location = 138, Version = GameVersion.Y, Shiny = false }, // Yveltal new EncounterStatic { Species = 718, Level = 70, Location = 140, Shiny = false }, // Zygarde new EncounterStatic { Species = 150, Level = 70, Location = 168, Shiny = false }, // Mewtwo new EncounterStatic { Species = 144, Level = 70, Location = 146, Shiny = false }, // Articuno new EncounterStatic { Species = 145, Level = 70, Location = 146, Shiny = false }, // Zapdos new EncounterStatic { Species = 146, Level = 70, Location = 146, Shiny = false }, // Moltres }; private static readonly EncounterStatic[] Encounter_AO = { new EncounterStatic { Species = 252, Level = 5, Location = 204, Gift = true }, // Treeko new EncounterStatic { Species = 255, Level = 5, Location = 204, Gift = true }, // Torchic new EncounterStatic { Species = 258, Level = 5, Location = 204, Gift = true }, // Mudkip new EncounterStatic { Species = 152, Level = 5, Location = 204, Gift = true }, // Chikorita new EncounterStatic { Species = 155, Level = 5, Location = 204, Gift = true }, // Cyndaquil new EncounterStatic { Species = 158, Level = 5, Location = 204, Gift = true }, // Totodile new EncounterStatic { Species = 387, Level = 5, Location = 204, Gift = true }, // Turtwig new EncounterStatic { Species = 390, Level = 5, Location = 204, Gift = true }, // Chimchar new EncounterStatic { Species = 393, Level = 5, Location = 204, Gift = true }, // Piplup new EncounterStatic { Species = 495, Level = 5, Location = 204, Gift = true }, // Snivy new EncounterStatic { Species = 498, Level = 5, Location = 204, Gift = true }, // Tepig new EncounterStatic { Species = 501, Level = 5, Location = 204, Gift = true }, // Oshawott new EncounterStatic { Species = 25, Level = 20, Location = 186, Gender = 1, Ability = 4, Form = 1, IVs = new[] {-1, -1, -1, 31, -1, -1}, Contest = new[] {70,70,70,70,70,0}, Gift = true, Shiny = false }, // Pikachu new EncounterStatic { Species = 25, Level = 20, Location = 186, Gender = 1, Ability = 4, Form = 3, IVs = new[] {-1, -1, -1, 31, -1, -1}, Contest = new[] {70,70,70,70,70,0}, Gift = true, Shiny = false }, // Pikachu new EncounterStatic { Species = 360, Level = 1, EggLocation = 60004, Ability = 1, Gift = true }, // Wynaut new EncounterStatic { Species = 175, Level = 1, EggLocation = 60004, Ability = 1, Gift = true }, // Togepi new EncounterStatic { Species = 374, Level = 1, Location = 196, Ability = 1, IVs = new[] {-1, -1, 31, -1, -1, 31}, Gift = true }, // Beldum new EncounterStatic { Species = 351, Level = 30, Location = 240, Nature = Nature.Lax, Ability = 1, IVs = new[] {-1, -1, -1, -1, 31, -1}, Contest = new[] {0,100,0,0,0,0}, Gift = true }, // Castform new EncounterStatic { Species = 319, Level = 40, Location = 318, Gender = 1, Ability = 1, Nature = Nature.Adamant, Gift = true }, // Sharpedo new EncounterStatic { Species = 323, Level = 40, Location = 318, Gender = 1, Ability = 1, Nature = Nature.Quiet, Gift = true }, // Camerupt new EncounterStatic { Species = 380, Level = 30, Location = 320, Version = GameVersion.AS, Ability = 1, Gift = true }, // Latias new EncounterStatic { Species = 381, Level = 30, Location = 320, Version = GameVersion.OR, Ability = 1, Gift = true }, // Latios new EncounterStatic { Species = 382, Level = 45, Location = 296, Version = GameVersion.AS, Shiny = false }, // Kyogre new EncounterStatic { Species = 383, Level = 45, Location = 296, Version = GameVersion.OR, Shiny = false }, // Groudon new EncounterStatic { Species = 384, Level = 70, Location = 316, Shiny = false }, // Rayquaza new EncounterStatic { Species = 386, Level = 80, Location = 316, Shiny = false }, // Deoxys new EncounterStatic { Species = 377, Level = 40, Location = 278 }, // Regirock new EncounterStatic { Species = 378, Level = 40, Location = 306 }, // Regice new EncounterStatic { Species = 379, Level = 40, Location = 308 }, // Registeel new EncounterStatic { Species = 486, Level = 50, Location = 306 }, // Regigigas new EncounterStatic { Species = 249, Level = 50, Location = 304, Version = GameVersion.AS }, // Lugia new EncounterStatic { Species = 250, Level = 50, Location = 304, Version = GameVersion.OR }, // Ho-oh new EncounterStatic { Species = 483, Level = 50, Location = 348, Version = GameVersion.AS }, // Dialga new EncounterStatic { Species = 484, Level = 50, Location = 348, Version = GameVersion.OR }, // Palia new EncounterStatic { Species = 644, Level = 50, Location = 340, Version = GameVersion.AS }, // Zekrom new EncounterStatic { Species = 643, Level = 50, Location = 340, Version = GameVersion.OR }, // Reshiram new EncounterStatic { Species = 642, Level = 50, Location = 348, Version = GameVersion.AS }, // Thundurus new EncounterStatic { Species = 641, Level = 50, Location = 348, Version = GameVersion.OR }, // Tornadus new EncounterStatic { Species = 485, Level = 50, Location = 312 }, // Heatran new EncounterStatic { Species = 487, Level = 50, Location = 348 }, // Giratina new EncounterStatic { Species = 488, Level = 50, Location = 344 }, // Cresselia new EncounterStatic { Species = 645, Level = 50, Location = 348 }, // Landorus new EncounterStatic { Species = 646, Level = 50, Location = 342 }, // Kyurem new EncounterStatic { Species = 243, Level = 50, Location = 334 }, // Raikou new EncounterStatic { Species = 244, Level = 50, Location = 334 }, // Entei new EncounterStatic { Species = 245, Level = 50, Location = 334 }, // Suicune new EncounterStatic { Species = 480, Level = 50, Location = 338 }, // Uxie new EncounterStatic { Species = 481, Level = 50, Location = 338 }, // Mesprit new EncounterStatic { Species = 482, Level = 50, Location = 338 }, // Azelf new EncounterStatic { Species = 638, Level = 50, Location = 336 }, // Cobalion new EncounterStatic { Species = 639, Level = 50, Location = 336 }, // Terrakion new EncounterStatic { Species = 640, Level = 50, Location = 336 }, // Virizion new EncounterStatic { Species = 352, Level = 30, Location = 240 }, // Kecleon @ Route 119 new EncounterStatic { Species = 352, Level = 30, Location = 242 }, // Kecleon @ Route 120 new EncounterStatic { Species = 352, Level = 40, Location = 176 }, // Kecleon @ Lavaridge new EncounterStatic { Species = 352, Level = 45, Location = 196 }, // Kecleon @ Mossdeep City new EncounterStatic { Species = 381, Level = 30, Location = 320, Version = GameVersion.AS }, // Latios new EncounterStatic { Species = 380, Level = 30, Location = 320, Version = GameVersion.OR }, // Latias new EncounterStatic { Species = 101, Level = 40, Location = 292, Version = GameVersion.AS }, // Electrode new EncounterStatic { Species = 101, Level = 40, Location = 314, Version = GameVersion.OR }, // Electrode new EncounterStatic { Species = 100, Level = 20, Location = 302 }, // Voltorb @ Route 119 new EncounterStatic { Species = 442, Level = 50, Location = 304 }, // Spiritomb @ Route 120 // Soaring in the Sky new EncounterStatic { Species = 198, Level = 45, Location = 348 }, // Murkrow new EncounterStatic { Species = 276, Level = 40, Location = 348 }, // Taillow new EncounterStatic { Species = 278, Level = 40, Location = 348 }, // Wingull new EncounterStatic { Species = 279, Level = 40, Location = 348 }, // Pelipper new EncounterStatic { Species = 333, Level = 40, Location = 348 }, // Swablu new EncounterStatic { Species = 425, Level = 45, Location = 348 }, // Drifloon new EncounterStatic { Species = 628, Level = 45, Location = 348 }, // Braviary }; #endregion private static readonly EncounterStatic[] StaticX = getSpecial(GameVersion.X); private static readonly EncounterStatic[] StaticY = getSpecial(GameVersion.Y); private static readonly EncounterStatic[] StaticA = getSpecial(GameVersion.AS); private static readonly EncounterStatic[] StaticO = getSpecial(GameVersion.OR); private static EncounterStatic[] getSpecial(GameVersion Game) { if (Game == GameVersion.X || Game == GameVersion.Y) return Encounter_XY.Where(s => s.Version == GameVersion.Any || s.Version == Game).ToArray(); // else if (Game == GameVersion.AS || Game == GameVersion.OR) return Encounter_AO.Where(s => s.Version == GameVersion.Any || s.Version == Game).ToArray(); } private static readonly string[][] TradeXY = { new string[0], // 0 - None Util.getStringList("tradexy", "ja"), // 1 Util.getStringList("tradexy", "en"), // 2 Util.getStringList("tradexy", "fr"), // 3 Util.getStringList("tradexy", "it"), // 4 Util.getStringList("tradexy", "de"), // 5 new string[0], // 6 - None Util.getStringList("tradexy", "es"), // 7 Util.getStringList("tradexy", "ko"), // 8 }; private static readonly string[][] TradeAO = { new string[0], // 0 - None Util.getStringList("tradeao", "ja"), // 1 Util.getStringList("tradeao", "en"), // 2 Util.getStringList("tradeao", "fr"), // 3 Util.getStringList("tradeao", "it"), // 4 Util.getStringList("tradeao", "de"), // 5 new string[0], // 6 - None Util.getStringList("tradeao", "es"), // 7 Util.getStringList("tradeao", "ko"), // 8 }; #region Trade Tables private static readonly EncounterTrade[] TradeGift_XY = { new EncounterTrade { Species = 129, Level = 5, Ability = 1, Gender = 0, TID = 44285, Nature = Nature.Adamant, }, // Magikarp new EncounterTrade { Species = 133, Level = 5, Ability = 1, Gender = 1, TID = 29294, Nature = Nature.Docile, }, // Eevee new EncounterTrade { Species = 83, Level = 10, Ability = 1, Gender = 0, TID = 00185, Nature = Nature.Jolly, IVs = new[] {-1, -1, -1, 31, -1, -1}, }, // Farfetch'd new EncounterTrade { Species = 208, Level = 20, Ability = 1, Gender = 1, TID = 19250, Nature = Nature.Impish, IVs = new[] {-1, -1, 31, -1, -1, -1}, }, // Steelix new EncounterTrade { Species = 625, Level = 50, Ability = 1, Gender = 0, TID = 03447, Nature = Nature.Adamant, IVs = new[] {-1, 31, -1, -1, -1, -1}, }, // Bisharp new EncounterTrade { Species = 656, Level = 5, Ability = 1, Gender = 0, TID = 00037, Nature = Nature.Jolly, IVs = new[] {20, 20, 20, 31, 20, 20}, }, // Froakie new EncounterTrade { Species = 650, Level = 5, Ability = 1, Gender = 0, TID = 00037, Nature = Nature.Adamant, IVs = new[] {20, 31, 20, 20, 20, 20}, }, // Chespin new EncounterTrade { Species = 653, Level = 5, Ability = 1, Gender = 0, TID = 00037, Nature = Nature.Modest, IVs = new[] {20, 20, 20, 20, 31, 20}, }, // Fennekin new EncounterTrade { Species = 280, Level = 5, Ability = 1, Gender = 1, TID = 37110, Nature = Nature.Modest, IVs = new[] {20, 20, 20, 31, 31, 20}, }, // Ralts }; private static readonly EncounterTrade[] TradeGift_AO = { new EncounterTrade { Species = 296, Level = 9, Ability = 2, Gender = 0, TID = 30724, Nature = Nature.Brave, IVs = new[] {-1, 31, -1, -1, -1, -1}, }, // Makuhita new EncounterTrade { Species = 300, Level = 25, Ability = 1, Gender = 1, TID = 03239, Nature = Nature.Naughty, IVs = new[] {-1, -1, -1, 31, -1, -1}, }, // Skitty new EncounterTrade { Species = 222, Level = 50, Ability = 4, Gender = 1, TID = 00325, Nature = Nature.Calm, IVs = new[] {31, -1, -1, -1, -1, 31}, }, // Corsola }; #endregion } }