2020-04-12 20:05:29 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2021-06-06 18:56:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface containing details relevant for battling.
|
|
|
|
|
/// </summary>
|
2020-12-11 04:42:30 +00:00
|
|
|
|
public interface IBattleTemplate : ISpeciesForm, IGigantamax, INature
|
2020-04-12 20:05:29 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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>
|
2021-05-15 06:41:14 +00:00
|
|
|
|
int Gender { get; }
|
2020-04-12 20:05:29 +00:00
|
|
|
|
|
|
|
|
|
/// <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>
|
2020-12-11 04:42:30 +00:00
|
|
|
|
/// <see cref="PKM.Form"/> name of the Set entity, stored in PKHeX style (instead of Showdown's)
|
2020-04-12 20:05:29 +00:00
|
|
|
|
/// </summary>
|
2020-12-11 04:42:30 +00:00
|
|
|
|
string FormName { get; }
|
2020-04-12 20:05:29 +00:00
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
}
|
|
|
|
|
}
|