UNPKG

@firestone-hs/replay-parser

Version:

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

14 lines (13 loc) 620 B
import { Map } from 'immutable'; import { AllCardsService } from '../../services/all-cards.service'; import { Entity } from '../game/entity'; import { Action } from './action'; export declare class FatigueDamageAction extends Action { readonly controller: number; readonly amount: number; constructor(allCards: AllCardsService); static create(newAction: any, allCards: AllCardsService): FatigueDamageAction; update(entities: Map<number, Entity>): FatigueDamageAction; enrichWithText(allEntitiesSoFar: Map<number, Entity>): FatigueDamageAction; protected getInstance(): Action; }