mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Furious Fists'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Sparkling Robe",
|
|
fr: "Peignoir Scintillant",
|
|
es: "Albornoz Destellante",
|
|
it: "Accappatoio Scintillante",
|
|
pt: "Veste Cintilante",
|
|
de: "Glänzender Mantel"
|
|
},
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Le Pokémon auquel cette carte est attachée ne peut être affecté par aucun État Spécial. (Retirez tous les États Spéciaux affectant le Pokémon concerné.)",
|
|
en: "The Pokémon this card is attached to can't be affected by any Special Conditions. (Remove any Special Conditions affecting that Pokémon.)",
|
|
es: "El Pokémon que tenga esta carta unida a él no se puede ver afectado por ninguna Condición Especial. (Elimina cualquier Condición Especial que afecte a ese Pokémon).",
|
|
it: "Il Pokémon a cui è assegnata questa carta non può essere influenzato da condizioni speciali (rimuovi tutte le condizioni speciali che influenzano tale Pokémon).",
|
|
pt: "O Pokémon ao qual este card está ligado não poderá ser afetado por nenhuma Condição Especial. (Remova todas as Condições Especiais que afetam esse Pokémon.)",
|
|
de: "Das Pokémon, an das diese Karte angelegt ist, kann nicht von Speziellen Zuständen betroffen werden. (Alle Speziellen Zustände auf diesem Pokémon verlieren ihre Wirkung.)"
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|