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

98 lines
2.4 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Zeraora",
fr: "Zeraora",
es: "Zeraora",
it: "Zeraora",
pt: "Zeraora",
de: "Zeraora"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
807,
],
hp: 120,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Crushing Claw",
fr: "Griffe Écrasante",
es: "Garra Devastadora",
it: "Triturartigli",
pt: "Garra Pulverizadora",
de: "Vernichtende Kralle"
},
effect: {
en: "Discard a Special Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía Especial del Pokémon Activo de tu rival.",
it: "Scarta unEnergia speciale assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia Especial do Pokémon Ativo do seu oponente.",
de: "Lege 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Discharge",
fr: "Coup dJus",
es: "Chispazo",
it: "Scarica",
pt: "Descarga",
de: "Ladungsstoß"
},
effect: {
en: "Discard all Lightning Energy from this Pokémon. This attack does 50 damage for each card you discarded in this way.",
fr: "Défaussez toute lÉnergie Lightning de ce Pokémon. Cette attaque inflige 50 dégâts pour chaque carte défaussée de cette façon.",
es: "Descarta todas las Energías Lightning de este Pokémon. Este ataque hace 50 puntos de daño por cada carta que hayas descartado de esta manera.",
it: "Scarta tutte le Energie Lightning assegnate a questo Pokémon. Questo attacco infligge 50 danni per ogni carta che hai scartato in questo modo.",
pt: "Descarte todas as Energias Lightning deste Pokémon. Este ataque causa 50 pontos de dano para cada carta descartada desta forma.",
de: "Lege alle Lightning-Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt 50 Schadenspunkte mal der Anzahl der auf diese Weise auf deinen Ablagestapel gelegten Karten zu."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card