1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Duncan 2b6d06184d
fix: Add SV08 Surging Sparks card variants (#592)
* fix: Add SV08 Surging Sparks card variants

* fix: Fix validate by adding 'abbreviation' to Set interface
2024-12-01 23:26:45 +01:00

78 lines
2.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Pikachu ex",
fr: "Pikachu-ex",
es: "Pikachu ex",
it: "Pikachu-ex",
pt: "Pikachu ex",
de: "Pikachu-ex"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 200,
types: ["Lightning"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Resolute Heart",
fr: "Cœur Résolu",
es: "Corazón Resuelto",
it: "Cuore Risoluto",
pt: "Coração Obstinado",
de: "Resolutes Herz"
},
effect: {
en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.",
fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.",
es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.",
it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.",
pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.",
de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10."
}
}],
attacks: [{
cost: ["Grass", "Lightning", "Metal"],
name: {
en: "Topaz Bolt",
fr: "Éclair Topaze",
es: "Rayo Topacio",
it: "Fulmine di Topazio",
pt: "Raio Topázio",
de: "Topas-Blitz"
},
effect: {
en: "Discard 3 Energy from this Pokémon.",
fr: "Défaussez 3 Énergies de ce Pokémon.",
es: "Descarta 3 Energías de este Pokémon.",
it: "Scarta tre Energie da questo Pokémon.",
pt: "Descarte 3 Energias deste Pokémon.",
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 300
}],
retreat: 1,
regulationMark: "H",
variants: {
normal: false,
reverse: false
}
}
export default card