2020-08-01 00:25:14 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2020-07-18 20:36:30 +00:00
|
|
|
|
{
|
2020-12-24 08:06:40 +00:00
|
|
|
|
public sealed record EncounterTrade7 : EncounterTrade, IMemoryOT
|
2020-07-18 20:36:30 +00:00
|
|
|
|
{
|
2020-08-30 22:35:59 +00:00
|
|
|
|
public override int Generation => 7;
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|