import { Card } from '../../../interfaces' import Set from '../POP Series 7' const card: Card = { name: { en: "Corsola", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 222, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rally", }, effect: { en: "Search your deck for up to 3 different types of Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Hook", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "+20" }, ], description: { en: "Many live in the clean seas of the south. They apparently can’t live in polluted waters." }, retreat: 1, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card