mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
3138fb20c6
vs -> chain (clarity on what it is; an evolution chain, rather than e.v.o.s - vs) Clamp origin chain for transferred where we can use the max origin level
18 lines
No EOL
615 B
C#
18 lines
No EOL
615 B
C#
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
|
|
{
|
|
protected override IEnumerable<EncounterSlot> GetMatchFromEvoLevel(PKM pkm, IReadOnlyList<DexLevel> chain, int minLevel)
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
|
|
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> slots, int minLevel)
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
}
|
|
} |