PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/MoveTarget.cs

23 lines
364 B
C#
Raw Normal View History

2018-08-19 03:10:30 +00:00
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,
}
}