import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Magikarp", fr: "Magicarpe", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 129, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Splash", fr: "Trempette", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, description: { en: "For no reason, it jumps and splashes about, making it easy for predators like Pidgeotto to catch it mid-jump." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card