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

68 lines
1.8 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre",
es: "Sudowoodo",
it: "Sudowoodo",
pt: "Sudowoodo",
de: "Mogelbaum"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
185,
],
hp: 110,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Reply Strongly",
fr: "Puissante Réplique",
es: "Respuesta Decisiva",
it: "Risposta Ferma",
pt: "Resposta Enfática",
de: "Energische Antwort"
},
effect: {
en: "If this Pokémon was damaged by an attack during your opponents last turn while it was your Active Pokémon, this attack does 80 more damage.",
fr: "Si ce Pokémon a subi les dégâts dune attaque pendant le dernier tour de votre adversaire en tant que Pokémon Actif, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si este Pokémon resultó dañado por un ataque durante el último turno de tu rival mientras era tu Pokémon Activo, este ataque hace 80 puntos de daño más.",
it: "Se questo Pokémon è stato danneggiato da un attacco durante lultimo turno del tuo avversario mentre era il tuo Pokémon attivo, questo attacco infligge 80 danni in più.",
pt: "Se este Pokémon foi danificado por um ataque durante a última vez de jogar do seu oponente enquanto era seu Pokémon Ativo, este ataque causará 80 pontos de dano a mais.",
de: "Wenn diesem Pokémon während des letzten Zuges deines Gegners als dein Aktives Pokémon durch eine Attacke Schaden zugefügt wurde, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card