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

42 lines
1.4 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Ultra Forest Kartenvoy",
fr: "Kata-Sensei de lUltra-Forêt",
es: "Kartanista del Ultrabosque",
it: "Mastro Karta dellUltraforesta",
pt: "Kartanista da Ultrafloresta",
de: "Ultrawald Katagami-Ass"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Pendant ce tour, les dégâts des attaques de vos Ultra-Chimères ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
en: "During this turn, damage from your Ultra Beasts attacks isnt affected by any effects on your opponents Active Pokémon.",
es: "Durante este turno, el daño de los ataques de tus Ultraentes no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
it: "Durante questo turno, i danni degli attacchi delle tue Ultracreature non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
pt: "Durante esta rodada, o dano dos ataques das suas Ultracriaturas não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
de: "Während dieses Zuges wird der Schaden der Attacken deiner Ultrabestien durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
trainerType: "Supporter",
}
export default card