import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Magikarp", }, illustrator: "kanahei", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Leap Out", }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card