1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

69 lines
782 B
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 '../Neo Discovery'
const card: Card = {
name: {
en: "Espeon",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
196,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Dodrio",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bite",
},
damage: 20,
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Psychic",
},
effect: {
en: "Does 30 damage plus 10 more for each Energy Card attached to the Defending Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card