mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
72
data/Scarlet & Violet/Surging Sparks/088.ts
Normal file
72
data/Scarlet & Violet/Surging Sparks/088.ts
Normal file
@ -0,0 +1,72 @@
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user