mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
22 lines
469 B
TypeScript
22 lines
469 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit 2 (Minun).ts'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Celio's Network"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
en: "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
|