mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
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",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |