import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Blaine's Growlithe", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 58, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Fire", ], name: { en: "Blaze", }, effect: { en: "Does 10 damage to each Pokémon on your opponent's Bench. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card