import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Wingull", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Glide", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Slashing Strike", }, effect: { en: "During your next turn, Wingull can't use Slashing Strike.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card