import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Growlithe", fr: "Caninos", }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 58, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 10, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Combustion", fr: "Fournaise", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, description: { en: "It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card