2022-06-18 11:04:24 -07:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Interface that exposes an indication if the Pokémon can Gigantamax.
|
|
|
|
/// </summary>
|
2022-11-24 17:42:17 -08:00
|
|
|
public interface IGigantamax : IGigantamaxReadOnly
|
2019-11-15 17:34:18 -08:00
|
|
|
{
|
2020-06-21 19:46:06 -05:00
|
|
|
/// <summary>
|
2022-06-18 11:04:24 -07:00
|
|
|
/// Indicates if the Pokémon is capable of Gigantamax as opposed to regular Dynamax.
|
2020-06-21 19:46:06 -05:00
|
|
|
/// </summary>
|
2022-11-24 17:42:17 -08:00
|
|
|
new bool CanGigantamax { get; set; }
|
2020-05-16 15:15:41 -07:00
|
|
|
}
|