import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Vulpix", fr: "Goupix", }, illustrator: "kirisAki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 37, ], hp: 60, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l'un de ses Pokémon de Banc.", }, }, { cost: [ "Fire", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card