mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-03 16:12:10 +00:00
33 lines
530 B
TypeScript
33 lines
530 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Yellow A Alternate'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Brooklet Hill",
|
|
fr: "Colline Clapotis",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Une seule fois pendant le tour de chaque joueur, ce joueur peut chercher un Pokémon Water de base ou un Pokémon Fighting de base dans son deck, le placer sur son Banc, puis mélanger son deck.",
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|