import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Phanpy", fr: "Phanpy", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Flail", fr: "Fléau", }, effect: { en: "Does 10 damage times the number of damage counters on Phanpy.", fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégâts sur Phanpy.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 2, } export default card