import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Phanpy", fr: "Phanpy" }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Corkscrew Punch", fr: "Poing en tire-bouchon" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Double Spin", fr: "Double tour" }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces." }, damage: "20×", }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card