mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
9b178fefe2
Move form-info logic from FormConverter to AltFormInfo; now FormConverter is entirely form=>string[] Add a bunch of xmldoc Make pogo no-end-date cmp agaisnt UTCnow rather than local now.
70 lines
2.1 KiB
C#
70 lines
2.1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 1 Static Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
public class EncounterStatic1 : EncounterStatic
|
|
{
|
|
public override int Generation => 1;
|
|
|
|
public EncounterStatic1(int species, int level)
|
|
{
|
|
Species = species;
|
|
Level = level;
|
|
}
|
|
|
|
public EncounterStatic1(int species, int level, GameVersion ver)
|
|
{
|
|
Species = species;
|
|
Level = level;
|
|
Version = ver;
|
|
}
|
|
|
|
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
|
|
{
|
|
return Level <= evo.Level;
|
|
}
|
|
|
|
protected override bool IsMatchLocation(PKM pkm)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool IsMatchDeferred(PKM pkm)
|
|
{
|
|
if (!(pkm is PK1 pk1))
|
|
return false;
|
|
if (!pk1.Gen1_NotTradeback)
|
|
return false;
|
|
if (IsCatchRateValid(pk1))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
private bool IsCatchRateValid(PK1 pk1)
|
|
{
|
|
var catch_rate = pk1.Catch_Rate;
|
|
if (Species == (int)Core.Species.Pikachu)
|
|
{
|
|
if (catch_rate == 190) // Red Blue Pikachu is not a static encounter
|
|
return false;
|
|
if (catch_rate == 163 && Level == 5) // Light Ball (Yellow) starter
|
|
return true;
|
|
}
|
|
|
|
if (Version == GameVersion.Stadium)
|
|
{
|
|
// Amnesia Psyduck has different catch rates depending on language
|
|
if (Species == (int)Core.Species.Psyduck)
|
|
return catch_rate == (pk1.Japanese ? 167 : 168);
|
|
return catch_rate == 167 || catch_rate == 168;
|
|
}
|
|
|
|
// Encounters can have different Catch Rates (RBG vs Y)
|
|
var table = Version == GameVersion.Y ? PersonalTable.Y : PersonalTable.RB;
|
|
var rate = table[Species].CatchRate;
|
|
return catch_rate == rate;
|
|
}
|
|
}
|
|
}
|