import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Magikarp", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 129, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Flailing Flop", }, effect: { en: "Flip a coin. If tails, this Pokémon does 10 damage to itself.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1 } export default card