mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Furious Fists'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Tool Retriever",
|
|
fr: "Collecte d'Outils",
|
|
es: "Rescataherramientas",
|
|
it: "Recupera Oggetti",
|
|
pt: "Recuperador de Ferramentas",
|
|
de: "Ausrüstungsgreifer"
|
|
},
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Choisissez jusqu'à 2 cartes Outil Pokémon attachées à vos Pokémon et placez-les dans votre main.",
|
|
en: "Choose up to 2 Pokémon Tool cards attached to your Pokémon and put them into your hand.",
|
|
es: "Elige hasta 2 cartas de Herramienta Pokémon unidas a tus Pokémon y ponlas en tu mano.",
|
|
it: "Scegli fino a due carte Oggetto Pokémon assegnate ai tuoi Pokémon e aggiungile a quelle che hai in mano.",
|
|
pt: "Escolha até 2 cards de Ferramenta Pokémon ligados a seus Pokémon e coloque-os na sua mão.",
|
|
de: "Wähle bis zu 2 Pokémon-Ausrüstungen, die an deine Pokémon angelegt sind, und nimm sie auf deine Hand."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|