Gen7Data/Scripts/Interfaces/ExecutingMove.as

8 lines
233 B
ActionScript
Raw Normal View History

shared interface ExecutingMove {
HitData@ GetHitData(Pokemon@ target, uint8 hit) const;
bool IsPokemonTarget(Pokemon@ pkmn) const;
Pokemon@ User { get const; }
LearnedMove@ Move { get const; }
2021-05-13 12:32:56 +00:00
MoveData@ UseMove { get const; }
}