mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 07:50:32 +00:00
88830e0d00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
99 lines
2.9 KiB
C#
99 lines
2.9 KiB
C#
using static PKHeX.Core.Species;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Generation 2 Trade Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterTradeGB"/>
|
|
public sealed record EncounterTrade2 : EncounterTradeGB
|
|
{
|
|
public override int Generation => 2;
|
|
public override EntityContext Context => EntityContext.Gen2;
|
|
public override int Location => Locations.LinkTrade2NPC;
|
|
|
|
public EncounterTrade2(ushort species, byte level, ushort tid) : base(species, level, GameVersion.GSC)
|
|
{
|
|
TID16 = tid;
|
|
}
|
|
|
|
public override bool IsMatchExact(PKM pk, EvoCriteria evo)
|
|
{
|
|
if (Level > pk.CurrentLevel) // minimum required level
|
|
return false;
|
|
if (TID16 != pk.TID16)
|
|
return false;
|
|
|
|
if (pk.Format <= 2)
|
|
{
|
|
if (Gender >= 0 && Gender != pk.Gender)
|
|
return false;
|
|
if (IVs.IsSpecified && !Legal.GetIsFixedIVSequenceValidNoRand(IVs, pk))
|
|
return false;
|
|
if (pk is { Format: 2, Met_Location: not (0 or 126) })
|
|
return false;
|
|
}
|
|
|
|
if (!IsValidTradeOTGender(pk))
|
|
return false;
|
|
return IsValidTradeOTName(pk);
|
|
}
|
|
|
|
private bool IsValidTradeOTGender(PKM pk)
|
|
{
|
|
if (OTGender == 1)
|
|
{
|
|
// Female, can be cleared if traded to RBY (clears met location)
|
|
if (pk.Format <= 2)
|
|
return pk.OT_Gender == (pk.Met_Location != 0 ? 1 : 0);
|
|
return pk.OT_Gender == 0 || !pk.VC1; // require male except if transferred from GSC
|
|
}
|
|
return pk.OT_Gender == 0;
|
|
}
|
|
|
|
private bool IsValidTradeOTName(PKM pk)
|
|
{
|
|
var OT = pk.OT_Name;
|
|
if (pk.Japanese)
|
|
return GetOT((int)LanguageID.Japanese) == OT;
|
|
if (pk.Korean)
|
|
return GetOT((int)LanguageID.Korean) == OT;
|
|
|
|
var lang = GetInternationalLanguageID(OT);
|
|
if (pk.Format < 7)
|
|
return lang != -1;
|
|
|
|
switch (Species)
|
|
{
|
|
case (int)Voltorb when pk.Language == (int)LanguageID.French:
|
|
if (lang == (int)LanguageID.Spanish)
|
|
return false;
|
|
if (lang != -1)
|
|
return true;
|
|
return OT == "FALCçN"; // FALCÁN
|
|
|
|
case (int)Shuckle when pk.Language == (int)LanguageID.French:
|
|
if (lang == (int)LanguageID.Spanish)
|
|
return false;
|
|
if (lang != -1)
|
|
return true;
|
|
return OT == "MANôA"; // MANÍA
|
|
|
|
default: return lang != -1;
|
|
}
|
|
}
|
|
|
|
private int GetInternationalLanguageID(string OT)
|
|
{
|
|
const int start = (int)LanguageID.English;
|
|
const int end = (int)LanguageID.Spanish;
|
|
|
|
var tr = TrainerNames;
|
|
for (int i = start; i <= end; i++)
|
|
{
|
|
if (tr[i] == OT)
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
}
|