import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Purrloin", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Darkness", ], attacks: [ { cost: [ "Darkness", ], name: { en: "Dig Claws", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Fake Out", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card