mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
24 lines
501 B
TypeScript
24 lines
501 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Boss’s Orders (Giovanni)",
|
||
fr: "Ordres du Boss (Giovanni)"
|
||
},
|
||
|
||
illustrator: "nagimiso",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon.",
|
||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire contre son Pokémon Actif."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card |