mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
56
data/Pokémon TCG Pocket/Eevee Grove/099.ts
Normal file
56
data/Pokémon TCG Pocket/Eevee Grove/099.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Eevee Grove"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gardevoir"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
rarity: "One Shiny",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Kirlia"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "To protect its Trainer, it will expend all its psychic\npower to create a small black hole."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Psy Shadow"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may take a {P} Energy from your Energy Zone and attach it to the {P} Pokémon in the Active Spot."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Psychic", "Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user