import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Phanpy", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Stampede", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Trembler", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage to each Defending Pokémon, and each Defending Pokémon is now Paralyzed.", }, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card