mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
21 lines
472 B
TypeScript
21 lines
472 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "The Boss's Way",
|
|
fr: "À la façon du Boss"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Cherchez dans votre deck une carte Évolution dont le nom comporte le mot \"obscur\". Montrez-la à votre adversaire et placez-la dans votre main. Mélangez ensuite votre deck."
|
|
}
|
|
}
|
|
|
|
export default card
|