1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

32 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Méga Canne",
en: "Super Rod",
es: "Supercaña",
it: "Canna da pesca super",
pt: "Supervara",
de: "Superangel"
},
rarity: "Hyper rare",
category: "Trainer",
effect: {
fr: "Mélangez avec votre deck une combinaison d'un maximum de 3 Pokémon et cartes Énergie de base de votre pile de défausse.",
en: "Shuffle up to 3 in any combination of Pokémon and Basic Energy cards from your discard pile into your deck.",
es: "Pon, en cualquier combinación, hasta 3 cartas de Pokémon y de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia fino a tre Pokémon e carte Energia base in qualsiasi combinazione dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe até 3 cartas de Pokémon e de Energia Básica da sua pilha de descarte no seu baralho em qualquer combinação.",
de: "Mische eine beliebige Kombination aus bis zu 3 Pokémon und Basis-Energiekarten aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
regulationMark: "G"
}
export default card