import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Purrloin", }, illustrator: "Mizue", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 509, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Captivate", }, effect: { en: "Flip a coin. If heads, switch 1 of your opponent's Benched Pokémon with the Defending Pokémon.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card