import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Phanpy", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Flail", }, effect: { en: "Does 10 damage times the number of damage counters on Phanpy.", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Rollout", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card