mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
34 lines
678 B
TypeScript
34 lines
678 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Double Crisis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Team Aqua's Great Ball",
|
|
fr: "Super Ball de la Team Aqua",
|
|
},
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Cherchez un Pokémon de base de la Team Aqua et une carte Énergie Water de base dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
|
en: "Search your deck for a Basic Team Aqua Pokémon and a basic Water Energy card, reveal them, and put them into your hand. Shuffle your deck afterward."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|