mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-19 14:49:55 +00:00
33 lines
547 B
TypeScript
33 lines
547 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Boundaries Crossed'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Computer Search",
|
|
fr: "Recherche Informatique",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Défaussez 2 cartes de votre main. (Si vous ne pouvez pas défausser 2 cartes, vous ne pouvez pas jouer cette carte.) Cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|