mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
72 lines
1.4 KiB
TypeScript
72 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [807],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Zeraora V",
|
|
fr: "Zeraora V",
|
|
es: "Zeraora V",
|
|
it: "Zeraora V",
|
|
pt: "Zeraora V",
|
|
de: "Zeraora V"
|
|
},
|
|
|
|
rarity: "Holo Rare V",
|
|
category: "Pokemon",
|
|
hp: 210,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Claw Slash",
|
|
fr: "Tranch'Griffe",
|
|
es: "Cuchillada Garra",
|
|
it: "Lacerartiglio",
|
|
pt: "Golpe de Garra",
|
|
de: "Klauenschlitzer"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Thunderous Bolt",
|
|
fr: "Éclair du Tonnerre",
|
|
es: "Rayo Atronador",
|
|
it: "Fulmine Tonante",
|
|
pt: "Raio Estrondoso",
|
|
de: "Donnernder Einschlag"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 190
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|