PKHeX/PKHeX.Core/Legality/Encounters/Data/Encounters8NestCrystal.cs
Kurt 0c7d347a29 Add Delibird distribution data, split files
ROM nest data definitions are already pretty hefty and won't be revised;
split out the future content
2019-12-25 14:26:49 -08:00

14 lines
709 B
C#

namespace PKHeX.Core
{
// Dynamax Crystal Distribution Nest Encounters (BCAT)
internal static partial class Encounters8Nest
{
#region Dynamax Crystal Distributions
internal static readonly EncounterStatic8NC[] Crystal_SWSH =
{
new EncounterStatic8NC { Species = 782, Level = 16, Ability = A4, Location = 126, IVs = new []{31,31,31,-1,-1,-1}, DynamaxLevel = 2, Moves = new[] {033,029,525,043}, }, // ★And458 Jangmo-o
new EncounterStatic8NC { Species = 246, Level = 16, Ability = A4, Location = 126, IVs = new []{31,31,31,-1,-1,-1}, DynamaxLevel = 2, Moves = new[] {033,157,371,044}, }, // ★And15 Larvitar
};
#endregion
}
}