2019-09-13 06:20:52 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fake encounter area used to mock data
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed class EncounterAreaFake : EncounterArea
|
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
protected override IEnumerable<EncounterSlot> GetMatchFromEvoLevel(PKM pkm, IEnumerable<EvoCriteria> vs, int minLevel)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> slots, int minLevel)
|
|
|
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
|
|
|
}
|
|
|
|
|
}
|