mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
61
data/Sword & Shield/Crown Zenith/099.ts
Normal file
61
data/Sword & Shield/Crown Zenith/099.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zamazenta VSTAR",
|
||||
fr: "Zamazenta VSTAR",
|
||||
es: "Zamazenta V-ASTRO",
|
||||
it: "Zamazenta V ASTRO",
|
||||
pt: "Zamazenta V-ASTRO",
|
||||
de: "Zamazenta VSTAR"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Zamazenta V",
|
||||
fr: "Zamazenta-V",
|
||||
es: "Zamazenta V",
|
||||
it: "Zamazenta-V",
|
||||
pt: "Zamazenta V",
|
||||
de: "Zamazenta-V"
|
||||
},
|
||||
|
||||
stage: "VSTAR",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Giga Impact",
|
||||
fr: "Giga Impact",
|
||||
es: "Gigaimpacto",
|
||||
it: "Gigaimpatto",
|
||||
pt: "Gigaimpacto",
|
||||
de: "Gigastoß"
|
||||
},
|
||||
|
||||
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: 220
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user