1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

84 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Undaunted'
const card: Card = {
name: {
en: "Espeon",
fr: "Mentali",
},
illustrator: "Hideaki Hakozaki",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
196,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Eevee",
fr: "Evoli",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Evolution Memories",
fr: "Souvenirs dÉvolution",
},
effect: {
en: "Espeon can use the attacks of all Pokémon you have in play that evolve from Eevee as its own. (You still need the necessary Energy to use each attack.)",
fr: "Mentali peut réutiliser les attaques de tous les Pokémon que vous avez joués et qui sont une évolution dEvoli. (Vous devrez néanmoins avoir les Énergies nécessaires pour utiliser chaque attaque.)",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Solar Ray",
fr: "Rayonnement solaire",
},
effect: {
en: "Remove 1 damage counter from each of your Pokémon.",
fr: "Retirez 1 marqueur de dégât à chacun de vos Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card