mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
0de76b57b1
The game uses 0x5E if 0x5A+everstone, otherwise it uses 0x58 For determining the seed species-form, we want to use everstone breeds as that resolves to the correct species-form values. Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com> Co-Authored-By: Marty-D <1645989+Marty-D@users.noreply.github.com>
81 lines
2.3 KiB
C#
81 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Event data for Generation 1
|
|
/// </summary>
|
|
public sealed class EncounterStatic1E : EncounterStatic1
|
|
{
|
|
public EncounterGBLanguage Language { get; set; } = EncounterGBLanguage.Japanese;
|
|
|
|
/// <summary> Trainer name for the event. </summary>
|
|
public string OT_Name { get; set; } = string.Empty;
|
|
|
|
public IReadOnlyList<string> OT_Names { get; set; } = Array.Empty<string>();
|
|
|
|
/// <summary> Trainer ID for the event. </summary>
|
|
public int TID { get; set; } = -1;
|
|
|
|
public EncounterStatic1E(int species, int level, GameVersion ver) : base(species, level, ver)
|
|
{
|
|
}
|
|
|
|
public override bool IsMatch(PKM pkm, DexLevel evo)
|
|
{
|
|
if (!base.IsMatch(pkm, evo))
|
|
return false;
|
|
|
|
if (Language != EncounterGBLanguage.Any && pkm.Japanese != (Language == EncounterGBLanguage.Japanese))
|
|
return false;
|
|
|
|
if (TID != -1 && pkm.TID != TID)
|
|
return false;
|
|
|
|
if (OT_Name.Length != 0)
|
|
{
|
|
if (pkm.OT_Name != OT_Name)
|
|
return false;
|
|
}
|
|
else if (OT_Names.Count != 0)
|
|
{
|
|
if (!OT_Names.Contains(pkm.OT_Name))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public override bool IsMatchDeferred(PKM pkm)
|
|
{
|
|
if (base.IsMatchDeferred(pkm))
|
|
return true;
|
|
return !ParseSettings.AllowGBCartEra;
|
|
}
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
|
|
if (TID != -1)
|
|
pk.TID = TID;
|
|
|
|
if (OT_Name.Length != 0)
|
|
pk.OT_Name = OT_Name;
|
|
else if (OT_Names.Count != 0)
|
|
pk.OT_Name = OT_Names[Util.Rand.Next(OT_Names.Count)];
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Generations 1 & 2 cannot communicate between Japanese & International versions.
|
|
/// </summary>
|
|
public enum EncounterGBLanguage
|
|
{
|
|
Japanese,
|
|
International,
|
|
Any,
|
|
}
|
|
}
|