1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

105 lines
2.9 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Zamazenta",
fr: "Zamazenta",
es: "Zamazenta",
it: "Zamazenta",
pt: "Zamazenta",
de: "Zamazenta"
},
illustrator: "Hideki Ishikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Guard Press",
fr: "Pression de Garde",
es: "Presión de Guardia",
it: "Pressadifesa",
pt: "Aperto Protetor",
de: "Schutzdruck"
},
effect: {
en: "During your opponents next turn, this Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, los ataques hacen 20 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 20 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 20 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 20 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Power Rush",
fr: "Ruée Puissante",
es: "Envite Poderoso",
it: "Assalto Potente",
pt: "Arremetida Poderosa",
de: "Power-Ansturm"
},
effect: {
en: "Flip a coin. If tails, during your next turn, this Pokémon cant attack.",
fr: "Lancez une pièce. Si cest pile, ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
es: "Lanza 1 moneda. Si sale cruz, este Pokémon no puede atacar durante tu próximo turno.",
it: "Lancia una moneta. Se esce croce, questo Pokémon non può attaccare durante il tuo prossimo turno.",
pt: "Jogue 1 moeda. Se sair coroa, este Pokémon não poderá atacar durante o seu próximo turno.",
de: "Wirf 1 Münze. Bei Zahl kann dieses Pokémon während deines nächsten Zuges nicht angreifen."
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
hp: 120,
types: ["Metal"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Its ability to deflect any attack led to it being known as the Fighting Masters Shield. It was feared and respected by all."
}
}
export default card