PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/MoveTarget.cs
2018-08-18 20:10:34 -07:00

23 lines
No EOL
364 B
C#

namespace PKHeX.Core
{
public enum MoveTarget : byte
{
// Specific target
_0 = 0,
_1 = 1,
_2 = 2,
_3 = 3,
_4 = 4,
_5 = 5,
_6 = 6,
Self = 7,
_8 = 8,
_9 = 9,
// No pkm target
_10 = 10,
_11 = 11,
_12 = 12,
Counter = 13,
}
}