import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Lapras", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 131, ], hp: 90, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Ferry", }, effect: { en: "Search your discard pile for a Supporter card, show it to your opponent, and put it into your hand.", }, }, { cost: [ "Water", "Water", "Colorless", ], name: { en: "Surf", }, damage: 40, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], } export default card