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

89 lines
1.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 '../Burning Shadows'
const card: Card = {
name: {
en: "Zygarde",
fr: "Zygarde",
es: "Zygarde",
it: "Zygarde",
pt: "Zygarde",
de: "Zygarde"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
718,
],
hp: 150,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Land Crush",
fr: "ÉcrasTerre",
es: "Aterrizaje",
it: "Schiacciaterra",
pt: "Aperto de Terra",
de: "Schollenbrecher"
},
damage: 80,
},
{
cost: [
"Darkness",
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Core Enforcer",
fr: "Sanction Suprême",
es: "Núcleo Castigo",
it: "Nucleocastigo",
pt: "Núcleo Executor",
de: "Sanktionskern"
},
effect: {
en: "Discard a Darkness Energy and a Fairy Energy from this Pokémon.",
fr: "Défaussez une Énergie Darkness et une Énergie Fairy de ce Pokémon.",
es: "Descarta 1 Energía Darkness y 1 Energía Fairy de este Pokémon.",
it: "Scarta unEnergia Darkness e unEnergia Fairy assegnate a questo Pokémon.",
pt: "Descarte 1 Energia Darkness e 1 Energia Fairy deste Pokémon.",
de: "Lege 1 Darkness-Energie sowie 1 Fairy-Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 150,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 4,
}
export default card