mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 19:09:54 +00:00
33 lines
605 B
TypeScript
33 lines
605 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pokémon Research Lab",
|
||
fr: "Laboratoire Pokémon",
|
||
},
|
||
illustrator: "aky CG Works",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Une seule fois pendant le tour de chaque joueur, ce joueur peut chercher dans son deck jusqu’à 2 Pokémon qui évoluent de Fossile Inconnu, les placer sur son Banc, puis mélanger son deck. Si un joueur cherche son deck de cette façon, son tour se termine.",
|
||
},
|
||
trainerType: "Stadium",
|
||
|
||
}
|
||
|
||
export default card
|