mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 16:31:58 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
40
data/Pokémon TCG Pocket/Eevee Grove/011.ts
Normal file
40
data/Pokémon TCG Pocket/Eevee Grove/011.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
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
|
Reference in New Issue
Block a user