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>
15 lines
898 B
C#
15 lines
898 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Parameters used to generate data for an encounter.
|
|
/// </summary>
|
|
/// <param name="GenderRatio">Gender ratio byte.</param>
|
|
/// <param name="FlawlessIVs">Count of IVs that are perfect.</param>
|
|
/// <param name="RollCount">Count of shiny rolls allowed for the PID calculation.</param>
|
|
/// <param name="Height">Height value to generate. If zero, full random.</param>
|
|
/// <param name="Weight">Weight value to generate. If zero, full random.</param>
|
|
/// <param name="Scale">Scale value to generate. If zero, full random.</param>
|
|
/// <param name="Ability">Ability type to generate.</param>
|
|
/// <param name="Shiny">PID generation type.</param>
|
|
public readonly record struct GenerateParam9(byte GenderRatio, byte FlawlessIVs, byte RollCount, byte Height, byte Weight, byte Scale,
|
|
AbilityPermission Ability = AbilityPermission.Any12, Shiny Shiny = Shiny.Random);
|