2021-10-23 12:20:18 +00:00
|
|
|
type ExecutingMove {
|
|
|
|
Pokemon@ User { get const; };
|
|
|
|
LearnedMove@ Move { get const; };
|
|
|
|
MoveData@ UseMove { get const; };
|
2022-03-12 12:05:26 +00:00
|
|
|
uint8 NumberOfHits { get const; };
|
2021-10-23 12:20:18 +00:00
|
|
|
HitData@ GetHitData(Pokemon@ target, uint8 hit) const;
|
|
|
|
bool IsPokemonTarget(Pokemon@ pkmn) const;
|
|
|
|
}
|