2020-07-18 20:36:30 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Trade Encounter data with a fixed Catch Rate
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2020-07-19 18:32:40 +00:00
|
|
|
|
/// Generation 1 specific value used in detecting unmodified/un-traded Generation 1 Trade Encounter data.
|
|
|
|
|
/// Species & Minimum level (legal) possible to acquire at.
|
2020-07-18 20:36:30 +00:00
|
|
|
|
/// </remarks>
|
|
|
|
|
public sealed class EncounterTrade1 : EncounterTradeGB
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="PK1.Catch_Rate"/> value the encounter is found with.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Gen1 Pokémon have a Catch Rate value when created by the game; depends on the origin version.
|
|
|
|
|
/// Few encounters use a value not from the game's Personal data.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
private readonly byte Catch_Rate;
|
|
|
|
|
|
|
|
|
|
private bool HasOddCatchRate => Catch_Rate != 0;
|
|
|
|
|
|
2020-07-19 18:32:40 +00:00
|
|
|
|
public EncounterTrade1(int species, int level, GameVersion game, byte rate) : this(species, level, game) => Catch_Rate = rate;
|
|
|
|
|
public EncounterTrade1(int species, int level, GameVersion game) : base(species, level) => Version = game;
|
2020-07-18 20:36:30 +00:00
|
|
|
|
|
|
|
|
|
public byte GetInitialCatchRate()
|
|
|
|
|
{
|
|
|
|
|
if (HasOddCatchRate)
|
|
|
|
|
return Catch_Rate;
|
|
|
|
|
|
|
|
|
|
var pt = Version == GameVersion.YW ? PersonalTable.Y : PersonalTable.RB;
|
|
|
|
|
return (byte)pt[Species].CatchRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
|
|
|
var pk1 = (PK1)pk;
|
|
|
|
|
pk1.Catch_Rate = GetInitialCatchRate();
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-19 18:32:40 +00:00
|
|
|
|
internal bool IsEncounterTrade1Valid(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
string ot = pkm.OT_Name;
|
|
|
|
|
if (pkm.Format <= 2)
|
|
|
|
|
return ot == StringConverter12.G1TradeOTStr;
|
|
|
|
|
// Converted string 1/2->7 to language specific value
|
|
|
|
|
var tr = GetOT(pkm.Language);
|
|
|
|
|
return ot == tr;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-18 20:36:30 +00:00
|
|
|
|
public override bool IsMatch(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (Level > pkm.CurrentLevel) // minimum required level
|
|
|
|
|
return false;
|
|
|
|
|
if (!(pkm is PK1 pk1) || !pkm.Gen1_NotTradeback)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
var req = GetInitialCatchRate();
|
|
|
|
|
return req == pk1.Catch_Rate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|