mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
33 lines
439 B
TypeScript
33 lines
439 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Call of Legends'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lost Remover",
|
||
fr: "Nettoyeur perdu",
|
||
},
|
||
illustrator: "Wataru Kawahara",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Placez 1 carte Énergie spéciale attachée à l’un des Pokémon de votre adversaire dans la Zone Perdue.",
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|