1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

106 lines
2.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 = {
dexId: [889],
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 opponent's 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 can't attack.",
fr: "Lancez une pièce. Si c'est 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 Master's Shield. It was feared and respected by all."
}
}
export default card