import { Card } from '../../../interfaces' import Set from '../Supreme Victors' const card: Card = { name: { en: "Magikarp", fr: "Magicarpe", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 129, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Flail Around", fr: "Fléau bougeant", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], retreat: 1, } export default card