1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00

feat: Add Prismatic Evolutions (#637)

This commit is contained in:
2025-01-18 01:56:17 +01:00
committed by GitHub
parent 33232f1b65
commit a33629e883
184 changed files with 10120 additions and 9 deletions

View File

@ -0,0 +1,36 @@
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