mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
0c7d347a29
ROM nest data definitions are already pretty hefty and won't be revised; split out the future content
14 lines
709 B
C#
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
|
|
}
|
|
}
|