1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

103 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Zamazenta V",
fr: "Zamazenta V",
es: "Zamazenta V",
it: "Zamazenta V",
pt: "Zamazenta V",
de: "Zamazenta V"
},
illustrator: "aky CG Works",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
hp: 230,
types: [
"Metal",
],
stage: "Basic",
suffix: "V",
abilities: [
{
type: "Ability",
name: {
en: "Dauntless Shield",
fr: "Égide Inflexible",
es: "Escudo Recio",
it: "Scudo Saldo",
pt: "Escudo Destemido",
de: "Wackerer Schild"
},
effect: {
en: "Prevent all damage done to this Pokémon by attacks from your opponents Pokémon VMAX.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-VMAX de votre adversaire.",
es: "Evita todo el daño infligido a este Pokémon por ataques de los Pokémon VMAX de tu rival.",
it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon-VMAX del tuo avversario.",
pt: "Previna todo o dano causado a este Pokémon por ataques dos Pokémon VMAX do seu oponente.",
de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon-VMAX deines Gegners zugefügt wird."
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Assault Tackle",
fr: "Tacle Assaillant",
es: "Placaje Asalto",
it: "Azione dAssalto",
pt: "Investida Ofensiva",
de: "Überfalltackle"
},
effect: {
en: "Discard a Special Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía Especial del Pokémon Activo de tu rival.",
it: "Scarta unEnergia speciale dal Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia Especial do Pokémon Ativo do seu oponente.",
de: "Lege 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 130,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card