import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Shellder", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 90, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Irongrip", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Lick", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card