mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
9b178fefe2
Move form-info logic from FormConverter to AltFormInfo; now FormConverter is entirely form=>string[] Add a bunch of xmldoc Make pogo no-end-date cmp agaisnt UTCnow rather than local now.
32 lines
1 KiB
C#
32 lines
1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter Slot found in <see cref="GameVersion.Gen2"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Referenced Area object contains Time data which is used for <see cref="GameVersion.C"/> origin data.
|
|
/// </remarks>
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
|
public sealed class EncounterSlot2 : EncounterSlot, INumberedSlot
|
|
{
|
|
public override int Generation => 2;
|
|
public int SlotNumber { get; }
|
|
|
|
public EncounterSlot2(EncounterArea2 area, int species, int min, int max, int slot) : base(area)
|
|
{
|
|
Species = species;
|
|
LevelMin = min;
|
|
LevelMax = max;
|
|
SlotNumber = slot;
|
|
}
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
|
|
var pk2 = (PK2)pk;
|
|
if (Version == GameVersion.C)
|
|
pk2.Met_TimeOfDay = ((EncounterArea2)Area).Time.RandomValidTime();
|
|
}
|
|
}
|
|
}
|