import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Phanpy", fr: "Phanpy", de: "Phanpy" }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 231, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Yawn", fr: "Baillement", de: "Gähnen" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", de: "Das Verteidigende Pokémon schläft jetzt." }, }, { cost: [ "Fighting", ], name: { en: "Mud Slup", fr: "Coud'boue", de: "Lehmschelle" }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card