1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

42 lines
2.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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Martial Arts Dojo",
fr: "Dojo des Arts Martiaux",
es: "Dojo de Artes Marciales",
it: "Dojo di Arti Marziali",
pt: "Dojo de Artes Marciais",
de: "Kampfkunstschule"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Les attaques des Pokémon non Ultra-Chimères auxquels est attachée de lÉnergie Fighting de base (les vôtres et ceux de votre adversaire) infligent 10 dégâts supplémentaires au Pokémon Actif de ladversaire (avant application de la Faiblesse et de la Résistance). Sil reste plus de cartes Récompense au joueur attaquant quà son adversaire, ces attaques infligent 40 dégâts supplémentaires au lieu de 10.",
en: "The attacks of non-Ultra Beast Pokémon that have any basic Fighting Energy attached to them (both yours and your opponents) do 10 more damage to the opponents Active Pokémon (before applying Weakness and Resistance). If the attacking player has more Prize cards remaining than their opponent, those attacks do 40 more damage instead.",
es: "Los ataques de los Pokémon no Ultraentes que tengan alguna Energía Fighting Básica unida a ellos (tanto tuyos como de tu rival) hacen 10 puntos de daño más al Pokémon Activo del rival (antes de aplicar Debilidad y Resistencia). Si al jugador que ataca le quedan más cartas de Premio que a su rival, esos ataques hacen 40 puntos de daño más en vez de 10.",
it: "Gli attacchi dei Pokémon che non sono Ultracreature e hanno delle Energie base Fighting assegnate, sia tuoi che del tuo avversario, infliggono 10 danni in più al Pokémon attivo dellavversario, prima di applicare debolezza e resistenza. Se il giocatore che sta attaccando ha più carte Premio rimanenti del proprio avversario, quegli attacchi infliggono invece 40 danni in più.",
pt: "Os ataques dos Pokémon que não são Ultracriaturas e que tenham alguma Energia Fighting básica ligada a eles (seus e do seu oponente) causam 10 pontos de dano a mais ao Pokémon Ativo do oponente (antes de aplicar Fraqueza e Resistência). Se o jogador atacante tiver mais cartas de Prêmio restantes do que seu oponente, aqueles ataques causarão 40 pontos de dano a mais ao invés de 10.",
de: "Die Attacken der Pokémon (deiner und der deines Gegners), die keine Ultrabestien sind und an die mindestens 1 Fighting-Basis-Energie angelegt ist, fügen dem Aktiven Pokémon des Gegners 10 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden). Wenn der angreifende Spieler mehr verbleibende Preiskarten hat als sein Gegner, fügen jene Attacken stattdessen 40 Schadenspunkte mehr zu."
},
trainerType: "Stadium",
}
export default card