2020-11-14 20:51:24 +00:00
|
|
|
|
namespace PKHeX.Core
|
2020-11-11 06:10:53 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Encounter data from <see cref="GameVersion.GO"/>, which has multiple generations of origin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal static class EncountersGO
|
|
|
|
|
{
|
2020-11-27 20:14:13 +00:00
|
|
|
|
internal const int MAX_LEVEL = 50;
|
2020-11-13 04:41:01 +00:00
|
|
|
|
|
2020-11-14 20:51:24 +00:00
|
|
|
|
internal static readonly EncounterArea7g[] SlotsGO_GG = EncounterArea7g.GetArea(Get("go_lgpe", "go"));
|
|
|
|
|
internal static readonly EncounterArea8g[] SlotsGO = EncounterArea8g.GetArea(Get("go_home", "go"));
|
2020-11-13 04:41:01 +00:00
|
|
|
|
|
2020-11-27 20:14:13 +00:00
|
|
|
|
private static byte[][] Get(string resource, string ident)
|
|
|
|
|
{
|
|
|
|
|
var name = $"encounter_{resource}.pkl";
|
|
|
|
|
#if DEBUG
|
|
|
|
|
var data = System.IO.File.Exists(name) ? System.IO.File.ReadAllBytes(name) : Util.GetBinaryResource(name);
|
|
|
|
|
#else
|
|
|
|
|
var data = Util.GetBinaryResource(name);
|
|
|
|
|
#endif
|
|
|
|
|
return BinLinker.Unpack(data, ident);
|
|
|
|
|
}
|
2020-11-11 06:10:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|