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