mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
899 B
TypeScript
24 lines
899 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../FireRed & LeafGreen'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Celio's Network",
|
|
fr: "Le réseau de Cileo",
|
|
de: "Celios Netzwerk"
|
|
},
|
|
|
|
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 jouez cette carte, placez-la à côté de votre Pokémon Actif. À la fin de votre tour, défaussez-la.\n\nCherchez dans votre deck un Pokémon de base ou une carte Évolution (sauf les Pokémon-ex), montrez la carte à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
|
de: "Search your deck for a Basic Pokémon or Evolution card (excluding Pokémon-ex ), show it to your opponent, and put it into your hand. Shuffle your deck afterward."
|
|
}
|
|
}
|
|
|
|
export default card
|