import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Galarian Darumaka", fr: "Darumarond de Galar", es: "Darumaka de Galar", it: "Darumaka di Galar", pt: "Darumaka de Galar", de: "Galar-Flampion" }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Water", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Headbutt", fr: "Coup d'Boule", es: "Golpe Cabeza", it: "Bottintesta", pt: "Cabeçada", de: "Kopfnuss" }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Basic", description: { en: "It lived in snowy areas for so long that its fire sac cooled off and atrophied. It now has an organ that generates cold instead." } } export default card