mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
* Localization capability for each language, import & export * Lines with stat names (IVs/EVs) can be configured to many representations (X/X/X/X/X/X, HABCDS, etc). * Add nonstandard localizations * Add token types for Showdown's new set format * Add new program settings for hover & export styles. Allows users to select which presentation format they want for the hover previews, as well as the set export format. * Revises preview hover GUI to use new settings * Revises export events to use new settings * Moves no longer indicate end of set * Enhance robustness of stat parsing * Expand all settings in settings editor on form load * Extract clipboard -> sets operation to api for maintainability & reusability
38 lines
838 B
C#
38 lines
838 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Style to display stat names.
|
|
/// </summary>
|
|
public enum StatDisplayStyle : sbyte
|
|
{
|
|
Custom = -1,
|
|
|
|
/// <summary>
|
|
/// Stat names are displayed in abbreviated (2-3 characters) localized text.
|
|
/// </summary>
|
|
Abbreviated,
|
|
|
|
/// <summary>
|
|
/// Stat names are displayed in full localized text.
|
|
/// </summary>
|
|
Full,
|
|
|
|
/// <summary>
|
|
/// Stat names are displayed as a single character.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is the typical format used by the Japanese community; HABCDS.
|
|
/// </remarks>
|
|
HABCDS,
|
|
|
|
/// <summary>
|
|
/// Stat names are displayed without localization; X/X/X/X/X/X
|
|
/// </summary>
|
|
Raw,
|
|
|
|
/// <summary>
|
|
/// Stat names are displayed without localization; XX/XX/XX/XX/XX/XX
|
|
/// </summary>
|
|
Raw00,
|
|
}
|