UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

24 lines (23 loc) 600 B
type CardTypes = string; export type BalanceSlider = { leftStat: string; rightStat: string; value: number; }; export type MassAppealCard = { headName: string; value?: number; multiplier?: number; infoSection?: string; code?: string; color?: string; emoji: string; type: CardTypes; target?: string; tier?: "s" | "a" | "b" | "c" | "d" | "f"; slider?: BalanceSlider; }; export declare const startingCards: MassAppealCard[]; export declare const boxingPunchCards: MassAppealCard[]; export declare const massAppealDeck: MassAppealCard[]; export {};