Gen7Data/Scripts/Interfaces/DamageHistory.astypedef

10 lines
308 B
Plaintext
Raw Normal View History

2021-10-23 16:29:18 +00:00
type DamageHistory {
const HistoryElement@ Previous { get const; };
HistoryElementKind Kind { get const; };
uint TurnNumber { get const; };
const HistoryElement@ opImplCast() const;
Pokemon@ Target { get const; };
uint Amount { get const; };
DamageSource Source { get const; };
}