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