import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Wingull", }, illustrator: "0313", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", }, effect: { en: "Draw a card.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Wave Splash", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card