mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
24 lines
844 B
TypeScript
24 lines
844 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Magma vs Team Aqua'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Team Aqua Schemer",
|
|
fr: "Manipulateur de Team Aqua",
|
|
de: "Team Aqua Intrigant"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la à côté de votre Pokémon Actif. À la fin de votre tour, défaussez-la.\n\nDéfaussez 1 Pokémon de votre main. Ensuite, piochez 3 cartes. Si vous avez défaussé un Pokémon dont le nom comporte Team Aqua, piochez 4 cartes.",
|
|
de: "Discard any 1 Pokémon from your hand. Then draw 3 cards. If you discarded a Pokémon with Team Aqua in its name, draw 4 cards instead."
|
|
}
|
|
}
|
|
|
|
export default card
|