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

10 lines
244 B
Plaintext

type HitData {
bool IsCritical { get const; };
uint8 BasePower { get const; };
float Effectiveness { get const; };
uint Damage { get const; };
uint8 Type { get const; };
bool HasFailed { get const; };
void Fail();
}