23 lines
481 B
C#
23 lines
481 B
C#
// AUTOMATICALLY GENERATED, DO NOT EDIT
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Pkmnlib
|
|
{
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
internal enum EventDataKind : byte
|
|
{
|
|
Damage = 0,
|
|
Heal = 1,
|
|
Faint = 2,
|
|
Switch = 3,
|
|
TurnStart = 4,
|
|
TurnEnd = 5,
|
|
ExperienceGain = 6,
|
|
Miss = 7,
|
|
DisplayText = 8,
|
|
ChangeSpecies = 9,
|
|
ChangeVariant = 10,
|
|
AttackUse = 11,
|
|
}
|
|
}
|