Gen7Data/Scripts/Interfaces/MoveData.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

12 lines
367 B
Plaintext

type MoveData {
const constString& Name { get const; };
uint8 Type { get const; };
MoveCategory Category { get const; };
uint8 BasePower { get const; };
uint8 Accuracy { get const; };
uint8 BaseUsages { get const; };
MoveTarget Target { get const; };
int8 Priority { get const; };
bool HasFlag(const constString &in flag) const;
}