pkNX/pkNX.Structures/Move/MoveTarget.cs
2018-11-13 19:44:43 -08:00

23 lines
398 B
C#

namespace pkNX.Structures
{
public enum MoveTarget : byte
{
// Specific target
AnyExceptSelf,
AllyOrSelf,
Ally,
Opponent,
AllAdjacent,
AllAdjacentOpponents,
AllAllies,
Self,
All,
RandomOpponent,
// No pkm target
SideAll,
SideOpponent,
SideSelf,
Counter,
}
}