import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Darumaka", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Ice Punch", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 30, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card