1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/045.ts

43 lines
701 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Purrloin"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
en: "Opponents that get drawn in by its adorable\nbehavior come away with stinging scratches from\nits claws and stinging pride from its laughter."
},
stage: "Basic",
attacks: [{
name: {
en: "Playful Knockdown"
},
cost: ["Darkness"],
effect: {
en: "Discard all Pokémon Tools from your opponent's Active Pokémon."
}
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card