mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-09 04:31:08 -05:00
16 lines
359 B
C#
16 lines
359 B
C#
namespace pkNX.Structures
|
|
{
|
|
/// <summary>
|
|
/// Indicates how much a heal item/move heals.
|
|
/// </summary>
|
|
/// <remarks>Any other non-enumerated value will be treated as a fixed value heal equal to the value.</remarks>
|
|
public enum Heal : byte
|
|
{
|
|
None = 0,
|
|
|
|
Quarter = 253,
|
|
Half = 254,
|
|
Full = 255,
|
|
}
|
|
}
|