mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
33 lines
509 B
TypeScript
33 lines
509 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Undaunted'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Flower Shop Lady",
|
|
fr: "Fleuriste",
|
|
},
|
|
illustrator: "Kanako Eo",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon Actif. Une fois votre tour terminé, défaussez cette carte.",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|