1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

34 lines
565 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Double Crisis'
const card: Card = {
name: {
en: "Team Aqua's Secret Base",
fr: "Base Secrète de la Team Aqua",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Coût de Retraite de chaque Pokémon en jeu (à part les Pokémon de la Team Aqua) est augmenté de Colorless.",
en: "The Retreat Cost of each Pokémon in play (except for Team Aqua Pokémon) is Colorless more."
},
trainerType: "Stadium",
}
export default card