mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 02:37:50 +00:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Prismatic Evolutions"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu ex",
|
|
fr: "Pikachu-ex",
|
|
es: "Pikachu ex",
|
|
pt: "Pikachu ex",
|
|
it: "Pikachu-ex",
|
|
de: "Pikachu-ex"
|
|
},
|
|
|
|
rarity: "Hyper 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",
|
|
pt: "Coração Obstinado",
|
|
it: "Cuore Risoluto",
|
|
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.",
|
|
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.",
|
|
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.",
|
|
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",
|
|
pt: "Raio Topázio",
|
|
it: "Fulmine di Topazio",
|
|
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.",
|
|
pt: "Descarte 3 Energias deste Pokémon.",
|
|
it: "Scarta tre Energie da questo Pokémon.",
|
|
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
|
|
},
|
|
|
|
damage: 300
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
variants: {
|
|
holo: true,
|
|
normal: false
|
|
}
|
|
}
|
|
|
|
export default card |