import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Wingull", de: "Wingull" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Rain Splash", de: "Regenplatscher" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card