mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
42 lines
756 B
TypeScript
42 lines
756 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Blast'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Professor Juniper",
|
|
fr: "Professeur Keteleeria",
|
|
es: "Prof.ª Encina",
|
|
it: "Prof.ssa Aralia",
|
|
pt: "Professora Juniper",
|
|
de: "Prof. Esche"
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Défaussez votre main et piochez 7 cartes.",
|
|
en: "Discard your hand and draw 7 cards.",
|
|
es: "Descarta las cartas de tu mano y roba 7 cartas.",
|
|
it: "Scarta la tua mano e pesca sette carte.",
|
|
pt: "Descarte sua mão e compre 7 cards.",
|
|
de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 7 neue Karten."
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|