1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00
Files
cards-database/data/Diamond & Pearl/Diamond & Pearl/112.ts
Florian Bouillon d4be6fa84f fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

33 lines
532 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Professor Rowan",
fr: "Prof. Sorbier",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez 1 carte de votre main et mélangez le reste de vos cartes à votre deck. Ensuite, piochez 4 cartes. (Si c'est la seule carte que vous ayez en main, vous ne pouvez pas jouer cette carte.)",
},
trainerType: "Supporter",
}
export default card