mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 00:52:47 +02:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import type { BattlerIndex } from "#app/battle";
|
|
import type { Moves } from "#enums/moves";
|
|
import type { DamageResult } from "#app/field/pokemon";
|
|
|
|
export interface AttackMoveResult {
|
|
move: Moves;
|
|
result: DamageResult;
|
|
damage: number;
|
|
critical: boolean;
|
|
sourceId: number;
|
|
sourceBattlerIndex: BattlerIndex;
|
|
}
|