1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-10 02:57:51 +00:00

33 lines
572 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 '../Team Up'
const card: Card = {
name: {
en: "Viridian Forest",
fr: "Forêt de Jade",
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Une seule fois pendant le tour de chaque joueur, ce joueur peut défausser une carte de sa main. Dans ce cas, ce joueur cherche une carte Énergie de base dans son deck, la montre, puis lajoute à sa main. Ce joueur mélange ensuite son deck.",
},
trainerType: "Stadium",
}
export default card