1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

95 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Chilling Reign'
const card: Card = {
name: {
en: "Galarian Zapdos V",
fr: "Électhor de Galar V",
es: "Zapdos de Galar V",
it: "Zapdos di Galar V",
pt: "Zapdos de Galar V",
de: "Galar-Zapdos V"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 200,
dexId: [145],
types: [
"Fighting",
],
stage: 'Basic',
suffix: 'V',
abilities: [{
type: "Ability",
name: {
en: "Fighting Instinct",
fr: "Instinct de Combat",
es: "Instinto de Lucha",
it: "Instinto da Combattente",
pt: "Instinto de Luta",
de: "Kampfinstinkt"
},
effect: {
en: "This Pokémons attacks cost Colorless less for each of your opponents Pokémon V in play.",
fr: "Les attaques de ce Pokémon coûtent Colorless de moins pour chaque Pokémon-V en jeu de votre adversaire.",
es: "Los ataques de este Pokémon cuestan Colorless menos por cada uno de los Pokémon V en juego de tu rival.",
it: "Il costo degli attacchi di questo Pokémon è ridotto di Colorless per ogni Pokémon-V in gioco del tuo avversario.",
pt: "Os ataques deste Pokémon custam Colorless a menos para cada Pokémon V do seu oponente em jogo.",
de: "Die Kosten der Attacken dieses Pokémon verringern sich für jedes Pokémon-V deines Gegners im Spiel um Colorless."
}
}],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
"Colorless"
],
name: {
en: "Thunderous Kick",
fr: "Coup Fulgurant",
es: "Patada Relámpago",
it: "Calcio Tonante",
pt: "Chute Trovejante",
de: "Donnernder Tritt"
},
effect: {
en: "Before doing damage, discard a Special Energy from your opponents Active Pokémon.",
fr: "Avant dinfliger des dégâts, défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
es: "Antes de infligir daño, descarta 1 Energía Especial del Pokémon Activo de tu rival.",
it: "Prima di infliggere danni, scarta unEnergia speciale dal Pokémon attivo del tuo avversario.",
pt: "Antes de causar dano, descarte 1 Energia Especial do Pokémon Ativo do seu oponente.",
de: "Bevor du Schaden zufügst, lege 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 170
}
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card