import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Wingull", fr: "Goélise", es: "Wingull", it: "Wingull", pt: "Wingull", de: "Wingull" }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Water Gun", fr: "Pistolet à O", es: "Pistola Agua", it: "Pistolacqua", pt: "Revólver d'Água", de: "Aquaknarre" }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card