import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Darumaka", fr: "Darumarond de Galar" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Ice Punch", fr: "Poing Glace" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé." }, damage: 30, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, hp: 80, types: ["Water"], regulationMark: "D" } export default card