mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 19:09:54 +00:00
33 lines
665 B
TypeScript
33 lines
665 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dusk Stone",
|
||
fr: "Pierre Nuit",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Cherchez dans votre deck, y compris parmi les Pokémon-GX, un Magirêve, Corboss, Lugulabre ou Exagide qui évolue de l’un de vos Pokémon en jeu, puis placez-le sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck. Vous pouvez utiliser cette carte pendant votre premier tour ou sur un Pokémon qui a été joué pendant ce tour.",
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|