mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
62018cce1a
AltForm & Form & Forme => Form GenNumber & Generation => Generation Extract out SpeciesForm interface, and re-add IGeneration For those using PKHeX as a dependency, this should be a pretty straightforward manual replacement... GenNumber and AltForm should be quick find-replace`s.
20 lines
No EOL
850 B
C#
20 lines
No EOL
850 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Alternate form data has an associated value.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <see cref="Species.Furfrou"/> How long (days) the form can last before reverting to Form-0 (5 days max)
|
|
/// <see cref="Species.Hoopa"/>: How long (days) the form can last before reverting to Form-0 (3 days max)
|
|
/// <see cref="Species.Alcremie"/>: Topping (Strawberry, Star, etc); [0,7]
|
|
/// <see cref="Species.Yamask"/> How much damage the Pokémon has taken as Yamask-1 [0,9999].
|
|
/// <see cref="Species.Runerigus"/> How much damage the Pokémon has taken as Yamask-1 [0,9999].
|
|
/// </remarks>
|
|
public interface IFormArgument
|
|
{
|
|
/// <summary>
|
|
/// Argument for the associated <see cref="PKM.Form"/>
|
|
/// </summary>
|
|
uint FormArgument { get; set; }
|
|
}
|
|
} |