Fix variable name
parent
aef1cd16a0
commit
e55367a67d
|
|
@ -2818,11 +2818,11 @@ export class PokemonBattleSummonData {
|
||||||
|
|
||||||
export class PokemonTurnData {
|
export class PokemonTurnData {
|
||||||
public flinched: boolean;
|
public flinched: boolean;
|
||||||
|
public acted: boolean;
|
||||||
public hitCount: integer;
|
public hitCount: integer;
|
||||||
public hitsLeft: integer;
|
public hitsLeft: integer;
|
||||||
public damageDealt: integer = 0;
|
public damageDealt: integer = 0;
|
||||||
public attacksReceived: AttackMoveResult[] = [];
|
public attacksReceived: AttackMoveResult[] = [];
|
||||||
public successfullyActed: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum AiType {
|
export enum AiType {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue