import { Card } from '../../../interfaces' import Set from '../Ultra Prism' const card: Card = { name: { en: "Alolan Vulpix", fr: "Goupix d’Alola", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 37, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, }, { cost: [ "Water", ], name: { en: "Icy Snow", fr: "Verglas", }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, } export default card