import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Vulpix δ", fr: "Goupix δ ESPÈCES DELTA" }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 37, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnotic Gaze", fr: "Regard hypnotique" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi." }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Will-o'-the-wisp", fr: "Feu follet" }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card