1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

34 lines
688 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Double Crisis'
const card: Card = {
name: {
en: "Team Magma's Great Ball",
fr: "Super Ball de la Team Magma",
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Cherchez un Pokémon de base de la Team Magma et une carte Énergie Fighting 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 Magma Pokémon and a basic Fighting Energy card, reveal them, and put them into your hand. Shuffle your deck afterward."
},
trainerType: "Item",
}
export default card