1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

42 lines
1.1 KiB
TypeScript

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 opponent's 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",
regulationMark: "E"
}
export default card