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.3 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 '../Unified Minds'
const card: Card = {
name: {
en: "Karate Belt",
fr: "Ceinture de Karaté",
es: "Cinturón Negro",
it: "Cintura da Karate",
pt: "Faixa de Caratê",
de: "Karategürtel"
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Sil vous reste plus de cartes Récompense quà votre adversaire, les attaques du Pokémon auquel cette carte est attachée coûtent Fighting de moins.",
en: "If you have more Prize cards remaining than your opponent, the attacks of the Pokémon this card is attached to cost Fighting less.",
es: "Si te quedan más cartas de Premio que a tu rival, los ataques del Pokémon al que esté unida esta carta cuestan Fighting menos.",
it: "Se hai più carte Premio rimanenti del tuo avversario, gli attacchi del Pokémon a cui è assegnata questa carta costano Fighting in meno.",
pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, os ataques do Pokémon ao qual esta carta está ligada custarão Fighting a menos.",
de: "Wenn du mehr verbleibende Preiskarten als dein Gegner hast, verringern sich die Kosten der Attacken des Pokémon, an das diese Karte angelegt ist, um Fighting."
},
trainerType: "Tool",
}
export default card