PKHeX/PKHeX.Core/PKM/Shared/IGigantamax.cs
Kurt 4f40330af9 Add Dynamax Level = 10 to showdownset if legal
Closes #2835 ; zacian/zamazenta/eternatus can't have a DynamaxLevel other than 0.

Co-Authored-By: Mikewando <mikewando@users.noreply.github.com>
2020-05-16 15:15:41 -07:00

7 lines
114 B
C#

namespace PKHeX.Core
{
public interface IGigantamax
{
bool CanGigantamax { get; set; }
}
}