Gen7Data/Scripts/Interfaces/HitData.astypedef

10 lines
244 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
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();
}