2020-07-18 20:36:30 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2021-09-16 01:13:17 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 6 Trade Encounter
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
2022-03-06 20:01:47 +00:00
|
|
|
|
public sealed record EncounterTrade6(GameVersion Version, byte OT_Memory, byte OT_Intensity, byte OT_Feeling, ushort OT_TextVar) : EncounterTrade(Version), IMemoryOT
|
2020-07-18 20:36:30 +00:00
|
|
|
|
{
|
2020-08-30 22:35:59 +00:00
|
|
|
|
public override int Generation => 6;
|
2021-05-19 00:14:17 +00:00
|
|
|
|
public override int Location => Locations.LinkTrade6NPC;
|
2022-03-06 20:01:47 +00:00
|
|
|
|
public byte OT_Memory { get; set; } = OT_Memory;
|
|
|
|
|
public byte OT_Intensity { get; set; } = OT_Intensity;
|
|
|
|
|
public byte OT_Feeling { get; set; } = OT_Feeling;
|
|
|
|
|
public ushort OT_TextVar { get; set; } = OT_TextVar;
|
2020-07-18 20:36:30 +00:00
|
|
|
|
|
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDetails(sav, criteria, pk);
|
2020-08-01 00:25:14 +00:00
|
|
|
|
if (pk is IMemoryOT o)
|
|
|
|
|
{
|
|
|
|
|
o.OT_Memory = OT_Memory;
|
|
|
|
|
o.OT_Intensity = OT_Intensity;
|
|
|
|
|
o.OT_Feeling = OT_Feeling;
|
|
|
|
|
o.OT_TextVar = OT_TextVar;
|
|
|
|
|
}
|
2020-07-18 20:36:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|