1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/011.ts

40 lines
605 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Litten"
},
illustrator: "0313",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
en: "If you try too hard to get close to it, it won't\nopen up to you. Even if you do grow close,\ngiving it too much affection is still a no-no."
},
stage: "Basic",
attacks: [{
name: {
en: "Flare"
},
damage: 40,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card