User-defined effect payload type. Define this per game to match your effect structure.
Arbitrary fields defined by the user
type MyEffect = { health?: number; gold?: number; hasKey?: boolean;}; Copy
type MyEffect = { health?: number; gold?: number; hasKey?: boolean;};
User-defined effect payload type. Define this per game to match your effect structure.