import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Phanpy", fr: "Phanpy", es: "Phanpy", it: "Phanpy", pt: "Phanpy", de: "Phanpy" }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Rollout", fr: "Roulade", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 2, } export default card