mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
89 lines
1.7 KiB
TypeScript
89 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Undaunted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Espeon",
|
||
fr: "Mentali",
|
||
de: "Psiana"
|
||
},
|
||
|
||
illustrator: "Hideaki Hakozaki",
|
||
rarity: "Rare PRIME",
|
||
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",
|
||
de: "Entwicklungserinnerungen"
|
||
},
|
||
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 d’Evoli. (Vous devrez néanmoins avoir les Énergies nécessaires pour utiliser chaque attaque.)",
|
||
de: "Psiana kann die Angriffe aller Pokémon, die du im Spiel hast und die sich aus Evoli entwickeln, wie eigene Angriffe verwenden. (Du benötigst dazu die für jeden der Angriffe erforderlichen Energien.)"
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Solar Ray",
|
||
fr: "Rayonnement solaire",
|
||
de: "Sonnenstrahlen"
|
||
},
|
||
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.",
|
||
de: "Entferne 1 Schadensmarke von jedem deiner 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
|