mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
934 B
TypeScript
24 lines
934 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Emerald'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Wally's Training",
|
|
fr: "Timmy au dressage",
|
|
de: "Heikos Training"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous la jouez, placez-la à côté de votre Pokémon Actif. À la fin du tour, défaussez-la.\n\nChoisissez dans votre deck une carte qui évolue de votre Pokémon Actif (choisissez un Pokémon Actif si vous en avez deux) et placez-la sur ce Pokémon. (Vous le faites ainsi évoluer). Ensuite, mélangez votre deck.",
|
|
de: "Search your deck for a card that evolves from your Active Pokémon (choose 1 if there are 2) and put it on your Active Pokémon. (This counts as evolving that Pokémon.) Shuffle your Deck afterward."
|
|
}
|
|
}
|
|
|
|
export default card
|