import { Card } from '../../../interfaces' import Set from '../Black & White' const card: Card = { name: { en: "Purrloin", fr: "Chacripan", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 509, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 20, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card