1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

40 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Doctor",
fr: "Docteure",
es: "Doctora",
it: "Medico",
pt: "Médica",
de: "Ärztin"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Draw 2 cards. If your opponents Active Pokémon is a Pokémon VMAX, draw 2 more cards.",
fr: "Piochez 2 cartes. Si le Pokémon Actif de votre adversaire est un Pokémon-VMAX, piochez 2 cartes supplémentaires.",
es: "Roba 2 cartas. Si el Pokémon Activo de tu rival es un Pokémon VMAX, roba 2 cartas más.",
it: "Pesca due carte. Se il Pokémon attivo del tuo avversario è un Pokémon-VMAX, pesca altre due carte.",
pt: "Compre 2 cartas. Se o Pokémon Ativo do seu oponente for um Pokémon VMAX, compre 2 cartas a mais.",
de: "Ziehe 2 Karten. Wenn das Aktive Pokémon deines Gegners ein Pokémon-VMAX ist, ziehe 2 Karten mehr."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
illustrator: "Sanosuke Sakuma"
}
export default card