UNPKG

werewolf-core

Version:

Are you a WEREWOLF?

15 lines (14 loc) 482 B
import * as lib from '../lib'; import { Choice } from './lib/choice'; export interface Effect extends lib.Effect { } export interface EffectOnPlayer extends Effect { on: string; } export declare const EFFECT_CHOICE: string; export interface ChoiceEffect extends EffectOnPlayer { choice_kind: string; options: Array<Choice>; value: string | undefined; } export declare function initChoiceEffect(on: string, choice_kind: string, options: Array<Choice>): ChoiceEffect;