import { Card } from '../../../interfaces' import Set from '../Ultra Prism' const card: Card = { name: { en: "Drifloon", fr: "Baudrive", }, illustrator: "Asako Ito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 425, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Creepy Wind", fr: "Vent Perturbant", }, effect: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, }, { cost: [ "Colorless", ], name: { en: "Hang Down", fr: "Suspension", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card