1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

94 lines
2.1 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Zygarde",
fr: "Zygarde",
es: "Zygarde",
it: "Zygarde",
pt: "Zygarde",
de: "Zygarde"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
718,
],
hp: 130,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Glare",
fr: "Regard Médusant",
es: "Deslumbrar",
it: "Sguardo Feroce",
pt: "Olhar Penetrante",
de: "Giftblick"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Calm Strike",
fr: "Frappe Placide",
es: "Golpe Calmado",
it: "Colpo Impassibile",
pt: "Golpe Calmo",
de: "Gelassener Schlag"
},
effect: {
en: "If you have used your GX attack, this attack does 60 more damage.",
fr: "Si vous avez utilisé votre attaque GX, cette attaque inflige 60 dégâts supplémentaires.",
es: "Si has usado tu ataque GX, este ataque hace 60 puntos de daño más.",
it: "Se hai già usato il tuo attacco GX, questo attacco infligge 60 danni in più.",
pt: "Se você usou seu ataque GX, este ataque causará 60 pontos de dano a mais.",
de: "Wenn du deine GX-Attacke eingesetzt hast, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card