import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Purrloin", fr: "Chacripan", es: "Purrloin", it: "Purrloin", pt: "Purrloin", de: "Felilou" }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 509, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals his or her hand.", fr: "Votre adversaire montre sa main.", }, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Fasten Claws", fr: "Griffes Accrochantes", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card