mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
527 B
TypeScript
25 lines
527 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Ordres du Boss (Lysandre)",
|
||
en: "Boss’s Orders (Lysandre)"
|
||
},
|
||
|
||
illustrator: "Ryuta Fuse",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire contre son Pokémon Actif.",
|
||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |