mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
33 lines
523 B
TypeScript
33 lines
523 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Slumbering Forest",
|
||
fr: "Forêt Sommeillante",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Si un Pokémon est Endormi, son propriétaire lance 2 pièces au lieu d’une pour cet État Spécial entre chaque tour. S’il obtient au moins un côté pile, le Pokémon reste Endormi.",
|
||
},
|
||
trainerType: "Stadium",
|
||
|
||
}
|
||
|
||
export default card
|