import { Card } from '../../../interfaces' import Set from '../Fates Collide' const card: Card = { name: { en: "Vullaby", fr: "Vostourno", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 629, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", fr: "Groz'Yeux", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Cutting Wind", fr: "Vent Glacial", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card