mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
d7042fb19e
nothing passes anything, so swsh is default shared raids yay
33 lines
1,008 B
C#
33 lines
1,008 B
C#
using static PKHeX.Core.Encounters8Nest;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 8 Nest Encounter (Max Raid) Underground
|
|
/// </summary>
|
|
public sealed class EncounterStatic8U : EncounterStatic8Nest<EncounterStatic8U>
|
|
{
|
|
public override int Location { get => MaxLair; set { } }
|
|
|
|
public EncounterStatic8U(int species, int form, int level)
|
|
{
|
|
Species = species;
|
|
Form = form;
|
|
Level = level;
|
|
DynamaxLevel = 8;
|
|
FlawlessIVCount = 4;
|
|
Version = GameVersion.SWSH; // no difference in met location for hosted raids
|
|
}
|
|
|
|
public override bool IsMatch(PKM pkm, DexLevel evo)
|
|
{
|
|
if (pkm.FlawlessIVCount < FlawlessIVCount)
|
|
return false;
|
|
|
|
return base.IsMatch(pkm, evo);
|
|
}
|
|
|
|
// no downleveling, unlike all other raids
|
|
protected override bool IsMatchLevel(PKM pkm, DexLevel evo) => pkm.Met_Level == Level;
|
|
}
|
|
}
|