import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Vullaby", }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 629, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Whirlwind", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card