1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

67 lines
2.0 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Zygarde",
fr: "Zygarde",
es: "Zygarde",
it: "Zygarde",
pt: "Zygarde",
de: "Zygarde"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
stage: "Basic",
illustrator: "otumami",
attacks: [{
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Bite",
de: "Biss"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
en: "Judgment Surge",
fr: "Jugement Déferlant",
es: "Oleada Sentenciosa",
it: "Ondata del Giudizio",
pt: "Judgment Surge",
de: "Verurteilung"
},
effect: {
en: "This attack does 40 damage to 1 of your opponents Pokémon for each Prize card your opponent has taken. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 40 dégâts à lun des Pokémon de votre adversaire pour chaque carte Récompense que votre adversaire a récupérée. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 40 puntos de daño a 1 de los Pokémon de tu rival por cada carta de Premio que haya cogido tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 40 danni a uno dei Pokémon del tuo avversario per ogni carta Premio che ha preso. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "This attack does 40 damage to 1 of your opponents Pokémon for each Prize card your opponent has taken. (Dont apply Weakness and Resistance for Benched Pokémon.)",
de: "Diese Attacke fügt 1 Pokémon deines Gegners für jede von deinem Gegner genommene Preiskarte 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
cost: ["Grass", "Fighting", "Colorless"]
}],
retreat: 2
}
export default card