import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Drifloon", fr: "Baudrive", }, illustrator: "ryoma uratsuka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 425, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 10, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card