import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Vullaby", fr: "Vostourno", }, illustrator: "Eri Yamaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 629, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collecte", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, { cost: [ "Darkness", ], name: { en: "Corkscrew Punch", fr: "Poing Tire-Bouchon", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card