Gen7Data/Scripts/Interfaces/MoveTurnChoice.astypedef
Deukhoofd 67762af0e7
Some checks failed
continuous-integration/drone/push Build is failing
Assist: Fail move if no moves have been found
2021-11-12 13:03:18 +01:00

10 lines
256 B
Plaintext

type MoveTurnChoice {
TurnChoiceKind Kind { get const; };
Pokemon@ User { get const; };
LearnedMove@ Move { get const; };
int8 Priority { get const; };
bool HasFailed { get const; };
void Fail();
BaseTurnChoice@ opImplCast();
}