mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Xerneas",
|
|
fr: "Xerneas",
|
|
es: "Xerneas",
|
|
it: "Xerneas",
|
|
pt: "Xerneas",
|
|
de: "Xerneas"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aurora Gain",
|
|
fr: "Puissance Boréale",
|
|
es: "Ganar Aurora",
|
|
it: "Prendiaurora",
|
|
pt: "Aurora",
|
|
de: "Aurora-Verstärkung"
|
|
},
|
|
|
|
effect: {
|
|
en: "Heal 30 damage from this Pokémon.",
|
|
fr: "Soignez 30 dégâts de ce Pokémon.",
|
|
es: "Cura 30 puntos de daño a este Pokémon.",
|
|
it: "Cura questo Pokémon da 30 danni.",
|
|
pt: "Cure 30 pontos de dano deste Pokémon.",
|
|
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Psychic", "Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Giga Impact",
|
|
fr: "Giga Impact",
|
|
es: "Gigaimpacto",
|
|
it: "Gigaimpatto",
|
|
pt: "Gigaimpacto",
|
|
de: "Gigastoß"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 130
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|