mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 05:50:22 +00:00
g9 raid beldum moves, g9 shiny trades, g7 kchart
Beldum: Default moves Gen9 trades were defaulting to Random, not Never KChart: >= instead of >
This commit is contained in:
parent
807b9031b1
commit
572b5e98e0
3 changed files with 7 additions and 3 deletions
|
@ -200,7 +200,11 @@ public sealed record EncounterTera9
|
|||
ID32 = tr.ID32,
|
||||
};
|
||||
SetPINGA(pk, criteria, pi);
|
||||
|
||||
if (Moves.HasMoves)
|
||||
pk.SetMoves(Moves);
|
||||
else // Beldum
|
||||
EncounterUtil1.SetEncounterMoves(pk, Version, LevelMin);
|
||||
|
||||
pk.ResetPartyStats();
|
||||
return pk;
|
||||
|
|
|
@ -11,7 +11,7 @@ public sealed record EncounterTrade9
|
|||
public int Generation => 9;
|
||||
public EntityContext Context => EntityContext.Gen9;
|
||||
public int Location => Locations.LinkTrade6NPC;
|
||||
public Shiny Shiny { get; init; }
|
||||
public Shiny Shiny { get; init; } = Shiny.Never;
|
||||
public bool EggEncounter => false;
|
||||
public Ball FixedBall { get; init; }
|
||||
public bool IsShiny => false;
|
||||
|
|
|
@ -107,7 +107,7 @@ public partial class KChart : Form
|
|||
|
||||
private static bool IsAlolanNative(ushort species)
|
||||
{
|
||||
if (species > 721)
|
||||
if (species >= 721)
|
||||
return true;
|
||||
if (species == 720)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue