import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Wingull", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Quick Attack", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card