2020-08-30 17:23:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2020-11-27 19:51:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 3 Static Encounter
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
2020-12-24 04:40:59 +00:00
|
|
|
|
public sealed record EncounterStatic3 : EncounterStatic
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2020-09-13 21:40:10 +00:00
|
|
|
|
public override int Generation => 3;
|
2020-12-22 07:37:07 +00:00
|
|
|
|
public bool Roaming { get; init; }
|
2020-08-21 23:35:49 +00:00
|
|
|
|
|
2021-01-04 00:49:49 +00:00
|
|
|
|
public EncounterStatic3(int species, int level, GameVersion game) : base(game)
|
2020-09-13 21:40:10 +00:00
|
|
|
|
{
|
|
|
|
|
Species = species;
|
|
|
|
|
Level = level;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
protected override bool IsMatchEggLocation(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.Format == 3)
|
|
|
|
|
return !pkm.IsEgg || EggLocation == 0 || EggLocation == pkm.Met_Location;
|
|
|
|
|
return pkm.Egg_Location == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.Format != 3) // Met Level lost on PK3=>PK4
|
|
|
|
|
return Level <= evo.Level;
|
|
|
|
|
|
|
|
|
|
if (EggEncounter)
|
|
|
|
|
return pkm.Met_Level == 0 && pkm.CurrentLevel >= 5; // met level 0, origin level 5
|
|
|
|
|
|
|
|
|
|
return pkm.Met_Level == Level;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool IsMatchLocation(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (EggEncounter)
|
|
|
|
|
return true;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
if (pkm.Format != 3)
|
|
|
|
|
return true; // transfer location verified later
|
|
|
|
|
|
|
|
|
|
var met = pkm.Met_Location;
|
|
|
|
|
if (!Roaming)
|
|
|
|
|
return Location == met;
|
|
|
|
|
|
|
|
|
|
var table = Version <= GameVersion.E ? Roaming_MetLocation_RSE : Roaming_MetLocation_FRLG;
|
|
|
|
|
return table.Contains(met);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void SetMetData(PKM pk, int level, DateTime today)
|
|
|
|
|
{
|
|
|
|
|
pk.Met_Level = level;
|
|
|
|
|
pk.Met_Location = !Roaming ? Location : (Version <= GameVersion.E ? Roaming_MetLocation_RSE : Roaming_MetLocation_FRLG)[0];
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
2020-08-30 17:23:22 +00:00
|
|
|
|
|
|
|
|
|
private static readonly int[] Roaming_MetLocation_FRLG =
|
|
|
|
|
{
|
|
|
|
|
// Route 1-25 encounter is possible either in grass or on water
|
|
|
|
|
101,102,103,104,105,106,107,108,109,110,
|
|
|
|
|
111,112,113,114,115,116,117,118,119,120,
|
|
|
|
|
121,122,123,124,125
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private static readonly int[] Roaming_MetLocation_RSE =
|
|
|
|
|
{
|
|
|
|
|
// Roaming encounter is possible in tall grass and on water
|
|
|
|
|
// Route 101-138
|
|
|
|
|
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
|
|
|
|
|
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
|
|
|
|
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
|
|
|
|
46, 47, 48, 49,
|
|
|
|
|
};
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|