import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Arcanine", fr: "Arcanin", }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 59, ], hp: 110, types: [ "Fire", ], evolveFrom: { en: "Growlithe", fr: "Caninos", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Flop", fr: "Flop", }, damage: 30, }, { cost: [ "Fire", "Fire", "Colorless", ], name: { en: "Flamethrower", fr: "Lance-Flammes", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 90, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card