mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-15 22:29:51 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
53
data/Pokémon TCG Pocket/Eevee Grove/034.ts
Normal file
53
data/Pokémon TCG Pocket/Eevee Grove/034.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Eevee Grove"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sylveon ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Happy Ribbon"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fairy Wind"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user