import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Vullaby", }, illustrator: "Shibuzoh.", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Pluck", }, effect: { en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card