mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added current set informations Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed incorrect set ID * Updated Chilling Reign current cards Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated informations for Chilling Reign Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added new Entries Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
25 lines
639 B
TypeScript
25 lines
639 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Chilling Reign'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Fog Crystal",
|
|
fr: "Boule de Ctristal Brume"
|
|
},
|
|
|
|
illustrator: "sadaji",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: 'Item',
|
|
|
|
effect: {
|
|
en: 'Search your deck for a Psychic Energy card or a Basic Psychic Pokémon, reaveal it, and put it into your hand. Then, shuffle your deck.',
|
|
fr: 'Cherchez dans votre deck une carte Énergie Psy ou une carte Pokémon Psy de base, montrez-la, puis ajoutez-la à votre main, Mélangez ensuite votre deck.',
|
|
},
|
|
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card
|