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

73 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 '../Team Up'
const card: Card = {
name: {
en: "Zapdos",
fr: "Électhor",
es: "Zapdos",
it: "Zapdos",
pt: "Zapdos",
de: "Zapdos"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
145,
],
hp: 110,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Thunderous Assault",
fr: "Assaut Orageux",
es: "Asalto Atronador",
it: "Assalto Tonante",
pt: "Ofensiva Estrondosa",
de: "Donnerangriff"
},
effect: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 70 more damage. This attacks damage isnt affected by Weakness.",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 70 dégâts supplémentaires. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse.",
es: "Si este Pokémon estaba en la Banca y se ha convertido en tu Pokémon Activo en este turno, este ataque hace 70 puntos de daño más. El daño de este ataque no se ve afectado por Debilidad.",
it: "Se questo Pokémon era in panchina ed è diventato il tuo Pokémon attivo in questo turno, questo attacco infligge 70 danni in più. I danni di questo attacco non sono influenzati dalla debolezza.",
pt: "Se este Pokémon estava no Banco e se tornou o seu Pokémon Ativo nesta rodada, este ataque causará 70 pontos de dano a mais. O dano deste ataque não é afetado por Fraqueza.",
de: "Wenn dieses Pokémon auf der Bank war und in diesem Zug zu deinem Aktiven Pokémon wurde, fügt diese Attacke 70 Schadenspunkte mehr zu. Der Schaden dieser Attacke wird durch Schwäche nicht verändert."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card