mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-16 13:39:54 +00:00
33 lines
542 B
TypeScript
33 lines
542 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Burning Shadows'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Choice Band",
|
|
fr: "Bandeau Choix",
|
|
},
|
|
illustrator: "Eske Yoshinob",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Les attaques du Pokémon auquel cette carte est attachée infligent 30 dégâts supplémentaires au Pokémon-GX Actif ou au Pokémon-EX Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|