import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Growlithe", }, illustrator: "Kyoko Umemoto", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 58, ], hp: 60, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Ember", }, effect: { en: "Discard a Energy card attached to Growlithe.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card