1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

70 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
dexId: [644],
set: Set,
name: {
en: "Zekrom",
fr: "Zekrom",
es: "Zekrom",
it: "Zekrom",
pt: "Zekrom",
de: "Zekrom"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 30
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Wild Shock",
fr: "Éclair Sauvage",
es: "Voltio Salvaje",
it: "Shock Feroce",
pt: "Choque Selvagem",
de: "Wilder Schock"
},
effect: {
en: "This Pokémon also does 60 damage to itself. Your opponent's Active Pokémon is now Paralyzed.",
fr: "Ce Pokémon s'inflige aussi 60 dégâts. Le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Este Pokémon también se hace 60 puntos de daño a sí mismo. El Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Questo Pokémon infligge anche 60 danni a se stesso. Il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Este Pokémon também causa 60 pontos de dano a si mesmo. O Pokémon Ativo do seu oponente agora está Paralisado.",
de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu. Das Aktive Pokémon deines Gegners ist jetzt paralysiert."
},
damage: 130
}],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card