mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
873 B
TypeScript
23 lines
873 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Aquapolis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Traveling Salesman",
|
|
fr: "Représentant de commerce",
|
|
de: "Traveling Salesman*"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une carte Supporter à chaque tour. Quand vous jouez cette carte, placez-la à côté de votre Pokémon Actif. À la fin de votre tour, défaussez-vous de cette carte.\n\nCherchez dans votre deck jusqu'à 2 cartes Machine technique ou Outil Pokémon, montrez-les à votre adversaire et ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
|
de: "Search your deck for up to 2 Technical Machine and/or Pokémon Tool cards, show them to your opponent, and then put then into your hand. Shuffle your deck afterward."
|
|
}
|
|
}
|
|
|
|
export default card
|