mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
22 lines
656 B
C#
22 lines
656 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// General interface for describing a Species/Form in general.
|
|
/// </summary>
|
|
public interface IPersonalInfo : IBaseStat, IEffortValueYield, IGenderDetail, IPersonalFormInfo, IPersonalAbility, IPersonalEgg, IPersonalEncounter, IPersonalType, IPersonalMisc
|
|
{
|
|
/// <summary>
|
|
/// Writes entry to raw bytes.
|
|
/// </summary>
|
|
byte[] Write();
|
|
|
|
/// <summary>
|
|
/// Gender Ratio value determining if the entry is a fixed gender or bi-gendered.
|
|
/// </summary>
|
|
int Gender { get; set; }
|
|
|
|
/// <summary>
|
|
/// Experience-Level Growth Rate type
|
|
/// </summary>
|
|
byte EXPGrowth { get; set; }
|
|
}
|