mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
36 lines
1.7 KiB
TypeScript
36 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Techno Radar",
|
|
fr: "Techno-Radar",
|
|
es: "Tecnorradar",
|
|
it: "Tecnoradar",
|
|
pt: "Radar Tecnológico",
|
|
de: "Techradar"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "You can use this card only if you discard another card from your hand.\n\nSearch your deck for up to 2 Future Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
|
|
fr: "Vous ne pouvez utiliser cette carte que si vous défaussez une autre carte de votre main.\n\nCherchez dans votre deck jusqu'à 2 Pokémon Temps futur, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
|
es: "Puedes usar esta carta solo si descartas otra carta de tu mano.\nBusca en tu baraja hasta 2 Pokémon del futuro, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Puoi usare questa carta solo se scarti un'altra carta che hai in mano.\nCerca nel tuo mazzo fino a due Pokémon Tempo Futuro, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Você só pode usar esta carta se descartar outra carta da sua mão.\nProcure por até 2 Pokémon Futuristas no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Du kannst diese Karte nur einsetzen, wenn du noch 1 andere Karte aus deiner Hand auf deinen Ablagestapel legst.\n\nDurchsuche dein Deck nach bis zu 2 Pokémon aus der Zukunft, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |