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/057.ts
Normal file
72
data/Scarlet & Violet/Surging Sparks/057.ts
Normal file
@ -0,0 +1,72 @@
|
||||
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: "Double 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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user