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: "Stealthy Hood",
fr: "Capuche Furtive",
es: "Capucha Clandestina",
it: "Cappuccio Furtivo",
pt: "Capuz Furtivo",
de: "Tarnkappe"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Évitez tous les effets des talents de votre adversaire infligés au Pokémon auquel cette carte est attachée. Retirez tous les effets déjà en action.",
en: "Prevent all effects of your opponents Abilities done to the Pokémon this card is attached to. Remove any such existing effects.",
es: "Evita todos los efectos de las habilidades de tu rival infligidos al Pokémon al que esté unida esta carta. Elimina los efectos ya existentes.",
it: "Previeni tutti gli effetti delle abilità del tuo avversario inflitti al Pokémon a cui è assegnata questa carta. Rimuovi anche tutti gli effetti esistenti dello stesso genere.",
pt: "Previne todos os efeitos das Habilidades do seu oponente causados ao Pokémon ao qual esta carta está ligada. Remova todos os efeitos existentes destas Habilidades.",
de: "Verhindere alle Effekte der Fähigkeiten deines Gegners, die dem Pokémon, an das diese Karte angelegt ist, zugefügt werden. Entferne alle solche bestehenden Effekte."
},
trainerType: "Tool",
}
export default card