1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 19:39:53 +00:00

37 lines
695 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Professor's Research",
fr: "Recherches Professorales",
es: "Investigación de Profesores",
it: "Ricerca Accademica",
de: "Forschung des Professors",
'pt-br': "Pesquisa de Professores",
ko: "박사의 연구"
},
illustrator: "Naoki Saito",
rarity: "None",
category: "Trainer",
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca 2 carte.",
de: "Ziehe 2 Karten.",
ko: "자신의 덱을 2장 뽑는다.",
'pt-br': "Compre 2 cartas."
},
trainerType: "Supporter",
boosters: []
}
export default card