interface AttackMoveResult {
    critical: boolean;
    damage: number;
    move: Moves;
    result: DamageResult;
    sourceBattlerIndex: BattlerIndex;
    sourceId: number;
}

Properties

critical: boolean
damage: number
move: Moves
result: DamageResult
sourceBattlerIndex: BattlerIndex
sourceId: number