import type { Effect } from "../common/effect";
import type { FlavorText } from "../common/flavor-text";
export type ContestEffect = {
    id: number;
    appeal: number;
    jam: number;
    effect_entries: Effect[];
    flavor_text_entries: FlavorText[];
};
