mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-13 13:08:49 +00:00
15 lines
709 B
C#
15 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
|
|||
|
}
|
|||
|
}
|