import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Wailmer", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 320, ], hp: 80, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Rollout", }, damage: 20, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Super Hypno Wave", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card