UNPKG

@firestone-hs/replay-parser

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.

15 lines (14 loc) 656 B
import { Map } from 'immutable'; import { AllCardsService } from '../../services/all-cards.service'; import { Entity } from '../game/entity'; import { Action } from './action'; import { HasTarget } from './has-target'; export declare class AttackAction extends Action implements HasTarget { readonly originId: number; readonly targetId: number; constructor(allCards: AllCardsService); static create(newAction: any, allCards: AllCardsService): AttackAction; update(entities: Map<number, Entity>): AttackAction; enrichWithText(allEntitiesSoFar: Map<number, Entity>): AttackAction; protected getInstance(): Action; }