1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Lanas Fishing Rod",
fr: "Canne à Pêche de Néphie",
es: "Caña de Nereida",
it: "Amo di Suiren",
pt: "Vara de Pescar da Vitória",
de: "Tracys Angel"
},
illustrator: "Eske Yoshinob",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Mélangez un Pokémon et une carte Outil Pokémon de votre pile de défausse avec votre deck.",
en: "Shuffle a Pokémon and a Pokémon Tool card from your discard pile into your deck.",
es: "Pon 1 Pokémon y 1 carta de Herramienta Pokémon de tu pila de descartes en tu baraja, y baraja todas las cartas.",
it: "Rimischia un Pokémon e una carta Oggetto Pokémon dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe 1 Pokémon e 1 carta de Ferramenta Pokémon da sua pilha de descarte no seu baralho.",
de: "Mische I Pokémon und 1 Pokémon-Ausrüstung aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
}
export default card