2021-10-23 12:20:18 +00:00
|
|
|
type MoveTurnChoice {
|
|
|
|
TurnChoiceKind Kind { get const; };
|
|
|
|
Pokemon@ User { get const; };
|
|
|
|
LearnedMove@ Move { get const; };
|
|
|
|
int8 Priority { get const; };
|
2021-11-12 12:03:18 +00:00
|
|
|
bool HasFailed { get const; };
|
|
|
|
void Fail();
|
2021-10-23 12:20:18 +00:00
|
|
|
BaseTurnChoice@ opImplCast();
|
|
|
|
}
|