mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-22 16:19:54 +00:00
32 lines
365 B
TypeScript
32 lines
365 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Boss’s Orders (Giovanni)",
|
||
},
|
||
illustrator: "nagimiso",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon.",
|
||
},
|
||
|
||
|
||
}
|
||
|
||
export default card
|