Implements ColorChange

This commit is contained in:
2022-03-12 13:05:26 +01:00
parent 262152b81d
commit 617c09b577
4 changed files with 23 additions and 2 deletions

View File

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