2020-08-01 00:25:14 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2020-07-18 20:36:30 +00:00
|
|
|
|
{
|
2021-09-16 01:13:17 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 7 Trade Encounter
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
2021-12-09 09:08:46 +00:00
|
|
|
|
public sealed record EncounterTrade7(GameVersion Version) : EncounterTrade(Version), IMemoryOT
|
2020-07-18 20:36:30 +00:00
|
|
|
|
{
|
2020-08-30 22:35:59 +00:00
|
|
|
|
public override int Generation => 7;
|
2021-05-19 00:14:17 +00:00
|
|
|
|
public override int Location => Locations.LinkTrade6NPC;
|
2020-08-01 00:25:14 +00:00
|
|
|
|
// immutable setters
|
|
|
|
|
public int OT_Memory { get => 1; set => throw new InvalidOperationException(); }
|
|
|
|
|
public int OT_Intensity { get => 3; set => throw new InvalidOperationException(); }
|
|
|
|
|
public int OT_Feeling { get => 5; set => throw new InvalidOperationException(); }
|
|
|
|
|
public int OT_TextVar { get => 40; set => throw new InvalidOperationException(); }
|
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
|
|
|
|
var pk7 = (PK7)pk;
|
|
|
|
|
pk7.OT_Memory = OT_Memory;
|
|
|
|
|
pk7.OT_Intensity = OT_Intensity;
|
|
|
|
|
pk7.OT_Feeling = OT_Feeling;
|
|
|
|
|
pk7.OT_TextVar = OT_TextVar;
|
2020-07-18 20:36:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|