import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Qwilfish", }, illustrator: "Toshinao Aoki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 211, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Water", ], name: { en: "Stun Needle", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card