import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Magikarp", fr: "Magicarpe" }, illustrator: "kanahei", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Leap Out", fr: "Bondir" }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon contre l’un de vos Pokémon de Banc." }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, hp: 30, types: ["Water"] } export default card