mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
dexId: [807],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Zeraora",
|
|
fr: "Zeraora",
|
|
es: "Zeraora",
|
|
it: "Zeraora",
|
|
pt: "Zeraora",
|
|
de: "Zeraora"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Shocking Knuckle",
|
|
fr: "Poing Choquant",
|
|
es: "Nudillo Electrizante",
|
|
it: "Pugno Fulminante",
|
|
pt: "Punho Chocante",
|
|
de: "Schockfaust"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
|
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.",
|
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Strong Volt",
|
|
fr: "Décharge Foudroyante",
|
|
es: "Descarga Fulminante",
|
|
it: "Supervolt",
|
|
pt: "Tensão Intensa",
|
|
de: "Voltkraft"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard an Energy from this Pokémon.",
|
|
fr: "Défaussez une Énergie de ce Pokémon.",
|
|
es: "Descarta 1 Energía de este Pokémon.",
|
|
it: "Scarta un'Energia da questo Pokémon.",
|
|
pt: "Descarte uma Energia deste Pokémon.",
|
|
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |