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
571 B
TypeScript
25 lines
571 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tool Scrapper",
|
||
fr: "Arrache-Outil"
|
||
},
|
||
|
||
illustrator: "Studio Bora Inc.",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Choose up to 2 Pokémon Tools attached to Pokémon (yours or your opponent’s) and discard them.",
|
||
fr: "Choisissez jusqu’à 2 Outils Pokémon attachés aux Pokémon (les vôtres ou ceux de votre adversaire), puis défaussez-les."
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|