1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
894 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Fisherman",
fr: "Pêcheur",
es: "Pescador",
it: "Pescatore",
pt: "Pescador",
de: "Angler"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Ajoutez 4 cartes Énergie de base de votre pile de défausse à votre main.",
en: "Put 4 basic Energy cards from your discard pile into your hand.",
es: "Pon 4 cartas de Energía Básica de tu pila de descartes en tu mano.",
it: "Prendi quattro carte Energia base dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
pt: "Coloque 4 cartas de Energia básica da sua pilha de descarte na sua mão.",
de: "Nimm 4 Basis-Energiekarten aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Supporter",
}
export default card