import { Card } from '../../../interfaces' import Set from '../POP Series 1' const card: Card = { name: { en: "Pupitar", fr: "Ymphect" }, illustrator: "Hisao Nakamura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 247, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Larvitar", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Rock Smash", fr: "Éclate-roc" }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires." }, damage: "20+", }, ], weaknesses: [ { type: "Water" }, ], retreat: 1 } export default card