1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

88 lines
2.8 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 '../Unified Minds'
const card: Card = {
name: {
en: "Zygarde",
fr: "Zygarde",
es: "Zygarde",
it: "Zygarde",
pt: "Zygarde",
de: "Zygarde"
},
illustrator: "Shigenori Negishi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
718,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Cellular Companions",
fr: "Compères Cellulaires",
es: "Compañeros Celulares",
it: "Sodalizio Cellulare",
pt: "Companheiros Celulares",
de: "Zellenbund"
},
effect: {
en: "As long as this Pokémon is on your Bench, your Zygardes and Zygarde-GXs attacks do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Tant que ce Pokémon est sur votre Banc, les attaques de vos Zygarde et Zygarde-GX infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Mientras este Pokémon esté en tu Banca, los ataques de tus Zygarde y Zygarde-GX hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Fintanto che questo Pokémon è nella tua panchina, gli attacchi dei tuoi Zygarde e dei tuoi Zygarde-GX infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Enquanto este Pokémon estiver no seu Banco, os ataques dos seus Zygarde e Zygarde-GX causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Solang sich dieses Pokémon auf deiner Bank befindet, fügen die Attacken deiner Zygarde und Zygarde-GX dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Boost Fang",
fr: "Croc Boosté",
es: "Impulso Colmillo",
it: "Zanne Potenziate",
pt: "Caninos de Impulso",
de: "Antriebsfänge"
},
effect: {
en: "Attach a Fighting Energy card from your discard pile to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie Fighting de votre pile de défausse à lun de vos Pokémon de Banc.",
es: "Une 1 carta de Energía Fighting de tu pila de descartes a 1 de tus Pokémon en Banca.",
it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia Fighting dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia Fighting da sua pilha de descarte a 1 dos seus Pokémon no Banco.",
de: "Lege 1 Fighting-Energiekarte aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card