PkmnLib.NET/PkmnLib.Static/Statistic.cs

32 lines
1010 B
C#
Raw Normal View History

2024-07-20 11:51:52 +00:00
namespace PkmnLib.Static;
/// <summary>
2024-07-20 14:12:39 +00:00
/// Stats are numerical values on Pokémon that are used in battle.
2024-07-20 11:51:52 +00:00
/// </summary>
public enum Statistic : byte
{
/// <summary>
2024-07-20 14:12:39 +00:00
/// Health Points determine how much damage a Pokémon can receive before fainting.
2024-07-20 11:51:52 +00:00
/// </summary>
Hp,
/// <summary>
2024-07-20 14:12:39 +00:00
/// Attack determines how much damage a Pokémon deals when using a physical attack.
2024-07-20 11:51:52 +00:00
/// </summary>
Attack,
/// <summary>
2024-07-20 14:12:39 +00:00
/// Defense determines how much damage a Pokémon receives when it is hit by a physical attack.
2024-07-20 11:51:52 +00:00
/// </summary>
Defense,
/// <summary>
2024-07-20 14:12:39 +00:00
/// Special Attack determines how much damage a Pokémon deals when using a special attack.
2024-07-20 11:51:52 +00:00
/// </summary>
SpecialAttack,
/// <summary>
2024-07-20 14:12:39 +00:00
/// Special Defense determines how much damage a Pokémon receives when it is hit by a special attack.
2024-07-20 11:51:52 +00:00
/// </summary>
SpecialDefense,
/// <summary>
2024-07-20 14:12:39 +00:00
/// Speed determines the order that a Pokémon can act in battle.
2024-07-20 11:51:52 +00:00
/// </summary>
Speed
}