2016-03-13 21:56:23 +00:00
|
|
|
|
using System.Collections.Generic;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX
|
|
|
|
|
{
|
|
|
|
|
public static partial class Legal
|
|
|
|
|
{
|
2016-02-29 01:05:38 +00:00
|
|
|
|
internal static WC6[] WC6DB;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
// 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"));
|
2016-02-26 00:19:59 +00:00
|
|
|
|
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"));
|
|
|
|
|
private static readonly EncounterArea[] SlotsX = EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_x, "xy"));
|
|
|
|
|
private static readonly EncounterArea[] SlotsY = EncounterArea.getArray(Util.unpackMini(Properties.Resources.encounter_y, "xy"));
|
|
|
|
|
private static readonly EncounterArea[] DexNavA = getDexNavSlots(SlotsA);
|
|
|
|
|
private static readonly EncounterArea[] DexNavO = getDexNavSlots(SlotsO);
|
|
|
|
|
private static EncounterArea[] getDexNavSlots(EncounterArea[] GameSlots)
|
|
|
|
|
{
|
|
|
|
|
EncounterArea[] eA = new EncounterArea[GameSlots.Length];
|
|
|
|
|
for (int i = 0; i < eA.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
eA[i] = GameSlots[i];
|
|
|
|
|
eA[i].Slots = eA[i].Slots.Take(20).Concat(eA[i].Slots.Skip(25)).ToArray(); // Skip 5 Rock Smash slots.
|
|
|
|
|
}
|
|
|
|
|
return eA;
|
|
|
|
|
}
|
2016-02-25 00:36:26 +00:00
|
|
|
|
|
2016-02-26 15:52:08 +00:00
|
|
|
|
internal static bool getDexNavValid(PK6 pk6)
|
2016-02-25 00:36:26 +00:00
|
|
|
|
{
|
2016-02-26 15:52:08 +00:00
|
|
|
|
bool alpha = pk6.Version == 26;
|
|
|
|
|
if (!alpha && pk6.Version != 27)
|
2016-02-26 00:19:59 +00:00
|
|
|
|
return false;
|
2016-03-04 06:12:22 +00:00
|
|
|
|
IEnumerable<EncounterArea> locs = (alpha ? DexNavA : DexNavO).Where(l => l.Location == pk6.Met_Location);
|
2016-03-07 01:08:04 +00:00
|
|
|
|
return locs.Select(loc => getValidEncounterSlots(pk6, loc, DexNav: true)).Any(slots => slots.Any());
|
2016-02-26 15:52:08 +00:00
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
internal static IEnumerable<int> getValidMoves(PK6 pk6)
|
2016-02-26 15:52:08 +00:00
|
|
|
|
{
|
2016-03-04 06:12:22 +00:00
|
|
|
|
List<int> r = new List<int> {0};
|
2016-03-15 06:46:18 +00:00
|
|
|
|
int species = pk6.Species;
|
|
|
|
|
if (species == 386 || species == 492) // Deoxys & Shaymin
|
|
|
|
|
{
|
|
|
|
|
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));
|
2016-03-04 06:12:22 +00:00
|
|
|
|
IEnumerable<DexLevel> vs = getValidPreEvolutions(pk6);
|
|
|
|
|
foreach (DexLevel evo in vs)
|
2016-02-26 15:52:08 +00:00
|
|
|
|
{
|
2016-03-15 06:46:18 +00:00
|
|
|
|
r.AddRange(getLVLMoves(evo.Species, evo.Level, pk6.AltForm));
|
|
|
|
|
r.AddRange(getTutorMoves(evo.Species, pk6.AltForm));
|
|
|
|
|
r.AddRange(getMachineMoves(evo.Species, pk6.AltForm));
|
2016-02-26 15:52:08 +00:00
|
|
|
|
}
|
2016-03-15 06:46:18 +00:00
|
|
|
|
if (species == 479) // Rotom
|
|
|
|
|
r.Add(RotomMoves[pk6.AltForm]);
|
|
|
|
|
if (species == 25) // Pikachu
|
|
|
|
|
r.Add(PikachuMoves[pk6.AltForm]);
|
|
|
|
|
|
2016-03-04 06:12:22 +00:00
|
|
|
|
return r.Distinct().ToArray();
|
2016-02-25 00:36:26 +00:00
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
internal static IEnumerable<int> getValidRelearn(PK6 pk6, int skipOption)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-03-04 06:12:22 +00:00
|
|
|
|
List<int> r = new List<int> { 0 };
|
|
|
|
|
int species = getBaseSpecies(pk6, skipOption);
|
2016-03-15 06:46:18 +00:00
|
|
|
|
r.AddRange(getLVLMoves(species, 1, pk6.AltForm));
|
|
|
|
|
r.AddRange(getEggMoves(species, pk6.Species == 678 ? pk6.AltForm : 0));
|
|
|
|
|
r.AddRange(getLVLMoves(species, 100, pk6.AltForm));
|
2016-03-12 17:16:41 +00:00
|
|
|
|
return r.Distinct();
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-03-06 19:19:09 +00:00
|
|
|
|
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];
|
|
|
|
|
}
|
2016-03-05 04:43:00 +00:00
|
|
|
|
internal static IEnumerable<WC6> getValidWC6s(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<DexLevel> vs = getValidPreEvolutions(pk6);
|
|
|
|
|
if (pk6.Egg_Location > 0) // Was Egg, can't search TID/SID/OT
|
|
|
|
|
return WC6DB.Where(wc6 => vs.Any(dl => dl.Species == wc6.Species));
|
|
|
|
|
|
|
|
|
|
// Not Egg
|
|
|
|
|
return WC6DB.Where(wc6 =>
|
|
|
|
|
wc6.CardID == pk6.SID &&
|
|
|
|
|
wc6.TID == pk6.TID &&
|
|
|
|
|
vs.Any(dl => dl.Species == wc6.Species) &&
|
|
|
|
|
wc6.OT == pk6.OT_Name);
|
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
internal static bool getWildEncounterValid(PK6 pk6)
|
2016-03-10 05:32:42 +00:00
|
|
|
|
{
|
2016-03-12 17:16:41 +00:00
|
|
|
|
var areas = getEncounterAreas(pk6);
|
|
|
|
|
bool dexNav = pk6.RelearnMove1 != 0;
|
|
|
|
|
return areas.Any(a => getValidEncounterSlots(pk6, a, dexNav).Any());
|
|
|
|
|
}
|
2016-03-13 21:56:23 +00:00
|
|
|
|
internal static int getFriendSafariValid(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
int vers = pk6.Version;
|
|
|
|
|
if (vers != 24 && vers != 25)
|
|
|
|
|
return -1;
|
|
|
|
|
IEnumerable<DexLevel> vs = getValidPreEvolutions(pk6);
|
|
|
|
|
foreach (DexLevel d in vs.Where(d => FriendSafari.Contains(d.Species) && d.Level >= 30))
|
|
|
|
|
return d.Species;
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
internal static IEnumerable<int> getBaseEggMoves(PK6 pk6, int skipOption, int gameSource)
|
|
|
|
|
{
|
|
|
|
|
int species = getBaseSpecies(pk6, skipOption);
|
|
|
|
|
if (gameSource == -1)
|
2016-03-10 05:32:42 +00:00
|
|
|
|
{
|
2016-03-12 17:16:41 +00:00
|
|
|
|
if (pk6.Version == 24 || pk6.Version == 25)
|
|
|
|
|
return LevelUpXY[species].getMoves(1);
|
|
|
|
|
// if (pk6.Version == 26 || pk6.Version == 27)
|
|
|
|
|
return LevelUpAO[species].getMoves(1);
|
2016-03-10 05:32:42 +00:00
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
if (gameSource == 0) // XY
|
|
|
|
|
return LevelUpXY[species].getMoves(1);
|
|
|
|
|
// if (gameSource == 1) // ORAS
|
|
|
|
|
return LevelUpAO[species].getMoves(1);
|
2016-03-10 05:32:42 +00:00
|
|
|
|
}
|
2016-03-13 21:56:23 +00:00
|
|
|
|
internal static EncounterStatic getStaticEncounter(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
// Get possible encounters
|
|
|
|
|
IEnumerable<EncounterStatic> 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;
|
2016-03-14 02:40:47 +00:00
|
|
|
|
if (e.Gift && pk6.Ball != 4) // PokéBall
|
|
|
|
|
continue;
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
// Passes all checks, valid encounter
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static int getBaseSpecies(PK6 pk6, int skipOption)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-02-26 15:52:08 +00:00
|
|
|
|
DexLevel[] evos = Evolves[pk6.Species].Evos;
|
|
|
|
|
switch (skipOption)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-02-26 15:52:08 +00:00
|
|
|
|
case -1: return pk6.Species;
|
2016-03-12 23:05:01 +00:00
|
|
|
|
case 1: return evos.Length <= 1 ? pk6.Species : evos[evos.Length - 2].Species;
|
2016-02-26 15:52:08 +00:00
|
|
|
|
default: return evos.Length <= 0 ? pk6.Species : evos.Last().Species;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-02-26 15:52:08 +00:00
|
|
|
|
}
|
2016-03-15 06:46:18 +00:00
|
|
|
|
private static IEnumerable<int> getLVLMoves(int species, int lvl, int formnum)
|
2016-03-12 03:43:40 +00:00
|
|
|
|
{
|
2016-03-15 06:46:18 +00:00
|
|
|
|
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));
|
2016-03-12 03:43:40 +00:00
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
private static IEnumerable<EncounterArea> 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<EncounterArea>();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-13 21:56:23 +00:00
|
|
|
|
private static IEnumerable<EncounterStatic> 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<EncounterStatic>();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
private static IEnumerable<EncounterArea> getEncounterAreas(PK6 pk6)
|
2016-03-12 03:43:40 +00:00
|
|
|
|
{
|
|
|
|
|
return getEncounterSlots(pk6).Where(l => l.Location == pk6.Met_Location);
|
|
|
|
|
}
|
2016-03-12 17:16:41 +00:00
|
|
|
|
private static IEnumerable<EncounterSlot> getValidEncounterSlots(PK6 pk6, EncounterArea loc, bool DexNav)
|
2016-02-26 15:52:08 +00:00
|
|
|
|
{
|
2016-03-04 06:12:22 +00:00
|
|
|
|
// Get Valid levels
|
|
|
|
|
IEnumerable<DexLevel> vs = getValidPreEvolutions(pk6);
|
|
|
|
|
// Get slots where pokemon can exist
|
2016-03-07 01:08:04 +00:00
|
|
|
|
IEnumerable<EncounterSlot> slots = loc.Slots.Where(slot => vs.Any(evo => evo.Species == slot.Species && evo.Level >= slot.LevelMin));
|
|
|
|
|
|
|
|
|
|
// Filter for Met Level
|
|
|
|
|
slots = DexNav
|
|
|
|
|
? slots.Where(slot => slot.LevelMin <= pk6.Met_Level && pk6.Met_Level <= slot.LevelMin + 10) // DexNav Boost Range
|
|
|
|
|
: slots.Where(slot => slot.LevelMin == pk6.Met_Level); // Non-boosted Level
|
2016-02-26 15:52:08 +00:00
|
|
|
|
|
2016-03-04 06:12:22 +00:00
|
|
|
|
// Filter for Form Specific
|
|
|
|
|
if (WildForms.Contains(pk6.Species))
|
|
|
|
|
slots = slots.Where(slot => slot.Form == pk6.AltForm);
|
|
|
|
|
return slots;
|
2016-02-26 15:52:08 +00:00
|
|
|
|
}
|
2016-03-10 05:32:42 +00:00
|
|
|
|
private static IEnumerable<EncounterArea> getSlots(PK6 pk6, IEnumerable<EncounterArea> tables)
|
|
|
|
|
{
|
|
|
|
|
int species = pk6.Species;
|
|
|
|
|
IEnumerable<DexLevel> vs = getValidPreEvolutions(pk6);
|
|
|
|
|
List<EncounterArea> slotLocations = new List<EncounterArea>();
|
|
|
|
|
foreach (var loc in tables)
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<EncounterSlot> 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;
|
|
|
|
|
}
|
2016-03-04 06:12:22 +00:00
|
|
|
|
private static IEnumerable<DexLevel> getValidPreEvolutions(PK6 pk6)
|
2016-02-26 15:52:08 +00:00
|
|
|
|
{
|
2016-03-04 06:12:22 +00:00
|
|
|
|
var evos = Evolves[pk6.Species].Evos;
|
|
|
|
|
List<DexLevel> dl = new List<DexLevel> { new DexLevel { Species = pk6.Species, Level = pk6.CurrentLevel } };
|
2016-03-14 02:58:23 +00:00
|
|
|
|
int lvl = pk6.CurrentLevel;
|
2016-03-04 06:12:22 +00:00
|
|
|
|
foreach (DexLevel evo in evos)
|
|
|
|
|
{
|
2016-03-14 03:43:29 +00:00
|
|
|
|
if (lvl >= pk6.Met_Level && lvl >= evo.Level)
|
2016-03-04 06:12:22 +00:00
|
|
|
|
dl.Add(new DexLevel { Species = evo.Species, Level = lvl });
|
2016-03-14 02:58:23 +00:00
|
|
|
|
if (evo.Level > 0) // Level Up (from previous level)
|
|
|
|
|
lvl--;
|
2016-03-04 06:12:22 +00:00
|
|
|
|
}
|
|
|
|
|
return dl;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-03-13 21:56:23 +00:00
|
|
|
|
private static IEnumerable<EncounterStatic> getStatic(PK6 pk6, IEnumerable<EncounterStatic> table)
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<DexLevel> dl = getValidPreEvolutions(pk6);
|
|
|
|
|
return table.Where(e => dl.Any(d => d.Species == e.Species));
|
|
|
|
|
}
|
2016-03-15 06:46:18 +00:00
|
|
|
|
private static IEnumerable<int> getEggMoves(int species, int formnum)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-03-15 06:46:18 +00:00
|
|
|
|
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);
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-03-15 06:46:18 +00:00
|
|
|
|
private static IEnumerable<int> getTutorMoves(int species, int formnum)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-03-15 06:46:18 +00:00
|
|
|
|
PersonalInfo pkAO = PersonalAO[PersonalAO[species].FormeIndex(species, formnum)];
|
2016-02-23 06:52:48 +00:00
|
|
|
|
|
|
|
|
|
// Type Tutor
|
|
|
|
|
List<int> 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]);
|
|
|
|
|
|
2016-03-04 06:12:22 +00:00
|
|
|
|
return moves;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-03-15 06:46:18 +00:00
|
|
|
|
private static IEnumerable<int> getMachineMoves(int species, int formnum)
|
2016-02-23 06:52:48 +00:00
|
|
|
|
{
|
2016-03-15 06:46:18 +00:00
|
|
|
|
PersonalInfo pkXY = PersonalXY[PersonalXY[species].FormeIndex(species, formnum)];
|
|
|
|
|
PersonalInfo pkAO = PersonalAO[PersonalAO[species].FormeIndex(species, formnum)];
|
2016-02-23 06:52:48 +00:00
|
|
|
|
List<int> moves = new List<int>();
|
|
|
|
|
moves.AddRange(TMHM_XY.Where((t, i) => pkXY.TMHM[i]));
|
|
|
|
|
moves.AddRange(TMHM_AO.Where((t, i) => pkAO.TMHM[i]));
|
2016-03-04 06:12:22 +00:00
|
|
|
|
return moves;
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
#region Static Encounter/Gift Tables
|
|
|
|
|
private static readonly EncounterStatic[] Encounter_XY =
|
|
|
|
|
{
|
2016-03-14 02:40:47 +00:00
|
|
|
|
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
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
new EncounterStatic { Species = 1, Level = 10, Location = 10, Gift = true }, // Bulbasaur
|
|
|
|
|
new EncounterStatic { Species = 4, Level = 10, Location = 10, Gift = true }, // Charmander
|
|
|
|
|
new EncounterStatic { Species = 7, Level = 10, Location = 10, Gift = true }, // Squirtle
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
new EncounterStatic { Species = 448, Level = 32, Location = 22, Ability = 1, Nature = Nature.Hasty, Gift = true }, // Lucario
|
|
|
|
|
new EncounterStatic { Species = 448, Level = 32, Location = 22, Ability = 1, Nature = Nature.Docile, Gift = true }, // Lapras
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
new EncounterStatic { Species = 143, Level = 15, Location = 38 }, // Snorlax
|
|
|
|
|
|
|
|
|
|
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 =
|
|
|
|
|
{
|
2016-03-14 03:28:40 +00:00
|
|
|
|
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
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 03:55:20 +00:00
|
|
|
|
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
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
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
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
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
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
new EncounterStatic { Species = 25, Level = 20, Location = 186, Gender = 1, Ability = 4, Gift = true }, // Pikachu
|
|
|
|
|
new EncounterStatic { Species = 360, Level = 1, EggLocation = 176, Gift = true }, // Wynaut
|
|
|
|
|
new EncounterStatic { Species = 175, Level = 1, EggLocation = 176, Ability = 1, Gift = true }, // Togepi
|
|
|
|
|
new EncounterStatic { Species = 360, Level = 1, Location = 196, Gift = true }, // Beldum
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
2016-03-14 02:40:47 +00:00
|
|
|
|
new EncounterStatic { Species = 319, Level = 40, Location = 318, Gift = true }, // Sharpedo
|
|
|
|
|
new EncounterStatic { Species = 323, Level = 40, Location = 318, Gift = true }, // Camerupt
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
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 = 306, Version = GameVersion.OR }, // Ho-oh
|
|
|
|
|
|
2016-03-14 07:48:24 +00:00
|
|
|
|
new EncounterStatic { Species = 483, Level = 50, Location = 348, Version = GameVersion.AS }, // Dialga
|
|
|
|
|
new EncounterStatic { Species = 484, Level = 50, Location = 348, Version = GameVersion.OR }, // Palia
|
2016-03-13 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
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
|
2016-03-13 23:41:36 +00:00
|
|
|
|
|
|
|
|
|
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
|
2016-03-14 02:40:47 +00:00
|
|
|
|
|
|
|
|
|
new EncounterStatic { Species = 380, Level = 30, Location = 320, Version = GameVersion.AS, Gift = true }, // Latias
|
|
|
|
|
new EncounterStatic { Species = 381, Level = 30, Location = 320, Version = GameVersion.OR, Gift = true }, // Latios
|
|
|
|
|
|
|
|
|
|
new EncounterStatic { Species = 381, Level = 30, Location = 320, Version = GameVersion.AS }, // Latios
|
|
|
|
|
new EncounterStatic { Species = 380, Level = 30, Location = 320, Version = GameVersion.OR }, // Latias
|
2016-03-14 03:20:11 +00:00
|
|
|
|
|
|
|
|
|
new EncounterStatic { Species = 101, Level = 40, Location = 292, Version = GameVersion.AS }, // Electrode
|
|
|
|
|
new EncounterStatic { Species = 101, Level = 40, Location = 314, Version = GameVersion.OR }, // Electrode
|
2016-03-14 03:22:29 +00:00
|
|
|
|
|
|
|
|
|
new EncounterStatic { Species = 100, Level = 20, Location = 302 }, // Voltorb @ Route 119
|
|
|
|
|
new EncounterStatic { Species = 442, Level = 50, Location = 304 }, // Spiritomb @ Route 120
|
2016-03-13 21:56:23 +00:00
|
|
|
|
};
|
|
|
|
|
#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();
|
|
|
|
|
}
|
2016-02-23 06:52:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|