mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Prismatic Evolutions"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Max Rod",
|
|
fr: "Max Canne",
|
|
es: "Maxicaña",
|
|
pt: "Vara de Pescar Max",
|
|
it: "Canna da pesca max",
|
|
de: "Maximale Angel"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put up to 5 in any combination of Pokémon and Basic Energy cards from your discard pile into your hand.",
|
|
fr: "Ajoutez à votre main une combinaison d'un maximum de 5 Pokémon et cartes Énergie de base de votre pile de défausse.",
|
|
es: "Pon, en cualquier combinación, hasta 5 cartas de Energía Básica y Pokémon de tu pila de descartes en tu mano.",
|
|
pt: "Coloque até 5 cartas de Pokémon e de Energia Básica da sua pilha de descarte na sua mão em qualquer combinação.",
|
|
it: "Prendi fino a cinque Pokémon e carte Energia base in qualsiasi combinazione dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
|
|
de: "Nimm eine beliebige Kombination aus bis zu 5 Pokémon und Basis-Energiekarten aus deinem Ablagestapel auf deine Hand."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
variants: {
|
|
holo: true,
|
|
normal: false
|
|
}
|
|
}
|
|
|
|
export default card |