mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
85 lines
2.2 KiB
C#
85 lines
2.2 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IBattleTemplate : IGigantamax
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PKM.Species"/> of the Set entity.
|
|
/// </summary>
|
|
int Species { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.Format"/> of the Set entity it is specific to.
|
|
/// </summary>
|
|
int Format { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.Nickname"/> of the Set entity.
|
|
/// </summary>
|
|
string Nickname { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.Gender"/> name of the Set entity.
|
|
/// </summary>
|
|
string Gender { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.HeldItem"/> of the Set entity.
|
|
/// </summary>
|
|
int HeldItem { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.Ability"/> of the Set entity.
|
|
/// </summary>
|
|
int Ability { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.CurrentLevel"/> of the Set entity.
|
|
/// </summary>
|
|
int Level { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.CurrentLevel"/> of the Set entity.
|
|
/// </summary>
|
|
bool Shiny { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.CurrentFriendship"/> of the Set entity.
|
|
/// </summary>
|
|
int Friendship { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.StatNature"/> of the Set entity.
|
|
/// </summary>
|
|
int Nature { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.AltForm"/> name of the Set entity, stored in PKHeX style (instead of Showdown's)
|
|
/// </summary>
|
|
string Form { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.AltForm"/> of the Set entity.
|
|
/// </summary>
|
|
int FormIndex { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.HPType"/> of the Set entity.
|
|
/// </summary>
|
|
int HiddenPowerType { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.EVs"/> of the Set entity.
|
|
/// </summary>
|
|
int[] EVs { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.IVs"/> of the Set entity.
|
|
/// </summary>
|
|
int[] IVs { get; }
|
|
|
|
/// <summary>
|
|
/// <see cref="PKM.Moves"/> of the Set entity.
|
|
/// </summary>
|
|
int[] Moves { get; }
|
|
}
|
|
}
|