1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add Crown Zenith (#416)

This commit is contained in:
2023-01-22 19:11:31 +01:00
committed by GitHub
parent a2db003735
commit 9074fbf511
231 changed files with 13403 additions and 0 deletions

View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
set: Set,
name: {
en: "Zeraora V",
fr: "Zeraora V",
es: "Zeraora V",
it: "Zeraora V",
pt: "Zeraora V",
de: "Zeraora V"
},
rarity: "Ultra Rare",
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"
}
export default card