Gen7Data/Scripts/Interfaces/ExecutingMove.astypedef
Deukhoofd 40dcd8a407
Some checks failed
continuous-integration/drone/push Build is failing
Switch to astypedef, adds unit tests
2021-10-23 14:20:18 +02:00

8 lines
239 B
Plaintext

type ExecutingMove {
Pokemon@ User { get const; };
LearnedMove@ Move { get const; };
MoveData@ UseMove { get const; };
HitData@ GetHitData(Pokemon@ target, uint8 hit) const;
bool IsPokemonTarget(Pokemon@ pkmn) const;
}