mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 14:49:49 +00:00
40 lines
605 B
TypeScript
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 |