1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Tool Scrapper",
fr: "Arrache-Outil",
es: "Reciclaherramientas",
it: "Scartaoggetti",
pt: "Sucateador de Ferramentas",
de: "Ausrüstungsentsorger"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez jusquà 2 cartes Outil Pokémon attachées aux Pokémon en jeu (les vôtres ou ceux de votre adversaire) et défaussez-les.",
en: "Choose up to 2 Pokémon Tool cards attached to Pokémon in play (yours or your opponents) and discard them.",
es: "Elige hasta 2 cartas de Herramienta Pokémon unidas a Pokémon en juego (tuyos o de tu rival) y descártalas.",
it: "Scegli fino a due carte Oggetto Pokémon assegnate ai Pokémon in gioco, tuoi o del tuo avversario, e poi scartale.",
pt: "Escolha até 2 cards de Ferramenta Pokémon, que estejam ligados aos Pokémon em jogo (seus ou de seu oponente) e descarte-os.",
de: "Wähle bis zu 2 Pokémon-Ausrüstungen, die an Pokémon im Spiel angelegt sind (an deine oder die deines Gegners),und lege sie auf den entsprechenden Ablagestapel."
},
trainerType: "Item",
}
export default card