mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
24 lines
596 B
TypeScript
24 lines
596 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../FireRed & LeafGreen'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Super Scoop Up",
|
|
fr: "Super rappel",
|
|
de: "Super-Anziehungskraft"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Lancez une pièce. Si c'est face, reprenez dans votre main 1 de vos Pokémon ainsi que toutes les cartes qui lui sont attachées.",
|
|
de: "Wirf 1 Münze. Nimm bei \"Kopf\" 1 deiner Pokémon und alle daran angelegten Karten zurück auf die Hand."
|
|
}
|
|
}
|
|
|
|
export default card
|