2018-08-26 18:15:32 +00:00
|
|
|
namespace PKHeX.Core
|
|
|
|
{
|
2019-04-10 03:57:44 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Ball IDs for the corresponding English ball name.
|
|
|
|
/// </summary>
|
2019-05-30 05:40:07 +00:00
|
|
|
public enum Ball : byte
|
2018-08-26 18:15:32 +00:00
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
Master = 1,
|
|
|
|
Ultra = 2,
|
|
|
|
Great = 3,
|
|
|
|
Poke = 4,
|
|
|
|
|
|
|
|
Safari = 5,
|
|
|
|
|
|
|
|
Net = 6,
|
|
|
|
Dive = 7,
|
|
|
|
Nest = 8,
|
|
|
|
Repeat = 9,
|
|
|
|
Timer = 10,
|
|
|
|
Luxury = 11,
|
|
|
|
Premier = 12,
|
|
|
|
Dusk = 13,
|
|
|
|
Heal = 14,
|
|
|
|
Quick = 15,
|
|
|
|
|
|
|
|
Cherish = 16,
|
|
|
|
|
|
|
|
Fast = 17,
|
|
|
|
Level = 18,
|
|
|
|
Lure = 19,
|
|
|
|
Heavy = 20,
|
|
|
|
Love = 21,
|
|
|
|
Friend = 22,
|
|
|
|
Moon = 23,
|
|
|
|
|
|
|
|
Sport = 24,
|
|
|
|
Dream = 25,
|
|
|
|
Beast = 26,
|
|
|
|
}
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
public static class BallExtensions
|
2018-08-26 18:15:32 +00:00
|
|
|
{
|
2019-04-10 03:57:44 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Checks if the <see cref="ball"/> is an Apricorn Ball (HG/SS)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="ball">Ball ID</param>
|
|
|
|
/// <returns>True if Apricorn, false if not.</returns>
|
2021-05-29 22:31:47 +00:00
|
|
|
public static bool IsApricornBall(this Ball ball) => ball is >= Ball.Fast and <= Ball.Moon;
|
2018-08-26 18:15:32 +00:00
|
|
|
}
|
2020-09-03 21:28:51 +00:00
|
|
|
}
|