import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Wingull", fr: "Goelise" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 278, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Supersonic", fr: "Ultrason" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus." }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card