import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Vulpix", }, illustrator: "Shibuzoh.", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Fire", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Singe", }, effect: { en: "Your opponent’s Active Pokémon is now Burned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card