import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Wingull", fr: "Goélise", es: "Wingull", it: "Wingull", pt: "Wingull", de: "Wingull" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Glide", fr: "Glissement", es: "Planeo", it: "Aliante", pt: "Planeio", de: "Gleiten" }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card