mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
23 lines
678 B
TypeScript
23 lines
678 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Neo Destiny'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magnifier",
|
|
fr: "Loupe",
|
|
de: "Vergrößerungsglas"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Attachez Loupe à un de vos Pokémon. A la fin de votre tour, défaussez-vous de Loupe. Si le Pokémon auquel Loupe est attachée attaque, n'appliquez pas la Résistance pour cette attaque.",
|
|
de: "Attach Magnifier to 1 of your Pokémon. At he end of your turn, discard Magnifier. If the Pokémon Magnifier is attached to attcks, don't apply Resistance for this attack."
|
|
}
|
|
}
|
|
|
|
export default card
|