mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-24 11:14:16 -05:00
More xmldoc
This commit is contained in:
@@ -71,4 +71,4 @@ public static void SetAttackIVFromGender(this PKM pk, int gender)
|
||||
pk.IV_ATK = rnd.Next(16);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,4 +21,4 @@ public static void SetHiddenPower(this PKM pk, int hiddenPowerType)
|
||||
/// <param name="hiddenPowerType">Desired Hidden Power typing.</param>
|
||||
public static void SetHiddenPower(this PKM pk, MoveType hiddenPowerType) => pk.SetHiddenPower((int)hiddenPowerType);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the <see cref="PKM.Markings"/>.
|
||||
/// </summary>
|
||||
public static class MarkingApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the Memory parameters of a <see cref="PKM"/>.
|
||||
/// </summary>
|
||||
public static class MemoryApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for applying a moveset to a <see cref="PKM"/>.
|
||||
/// </summary>
|
||||
public static class MoveApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for getting valid movesets.
|
||||
/// </summary>
|
||||
public static class MoveSetApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the Technical Record flags of a <see cref="PK8"/>.
|
||||
/// </summary>
|
||||
public static class TechnicalRecordApplicator
|
||||
{
|
||||
/// <summary>
|
||||
@@ -61,4 +64,4 @@ public static void SetRecordFlags(this PKM pk)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorting methods for <see cref="IEnumerable{PKM}"></see> lists.
|
||||
/// </summary>
|
||||
public static class PKMSorting
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user