mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 12:41:59 +00:00
33 lines
476 B
TypeScript
33 lines
476 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Platinum'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Team Galactic's Invention G-105 Poké Turn",
|
|
fr: "Poké-Tour Invention G-105 de Team Galaxie",
|
|
},
|
|
illustrator: "Makoto Imai",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Reprenez dans votre main 1 de vos Pokémon SP ainsi que toutes les cartes qui lui sont attachées.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|