1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00

33 lines
464 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Mallow",
fr: "Barbara",
},
illustrator: "Megumi Mizutani",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Cherchez 2 cartes dans votre deck. Mélangez votre deck, puis placez ces cartes, dans nimporte quel ordre, sur le dessus de votre deck.",
},
trainerType: "Supporter",
}
export default card