1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

38 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Silver Tempest"
const card: Card = {
set: Set,
name: {
en: "Professor Laventon",
fr: "Professeur Lavande",
es: "Profesor Lavender",
it: "Professor Laven",
pt: "Professor Alfazema",
de: "Prof. Laven"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Put up to 3 Pokémon that have \"Hisuian\" in their names from your discard pile into your hand.",
fr: "Ajoutez jusqu'à 3 Pokémon ayant \" de Hisui \" dans leur nom, de votre pile de défausse à votre main.",
es: "Pon hasta 3 Pokémon que tengan \"de Hisui\" en su nombre de tu pila de descartes en tu mano.",
it: "Prendi fino a tre Pokémon che hanno \"di Hisui\" nel nome dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
pt: "Coloque até 3 Pokémon que tenham \"de Hisui\" no seu nome da sua pilha de descarte na sua mão.",
de: "Nimm bis zu 3 Pokémon, bei denen \"Hisui\" zum Namen gehört, aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card