1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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.1 KiB
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.

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: "Draw Energy",
fr: "Énergie de Pioche",
es: "Energía Robo",
it: "Energia Pesca",
pt: "Energia de Compra",
de: "Zug-Energie"
},
illustrator: undefined,
rarity: "Secret Rare",
category: "Energy",
set: Set,
effect: {
fr: "Cette carte fournit de lÉnergie Colorless. \n\nLorsque vous attachez cette carte de votre main à un Pokémon, piochez une carte.",
en: "This card provides Colorless Energy. \n\nWhen you attach this card from your hand to a Pokémon, draw a card.",
es: "Esta carta proporciona 1 Energía Colorless.\n\nCuando unas esta carta de tu mano a 1 Pokémon, roba 1 carta.",
it: "Questa carta fornisce Energia Colorless.\n\nQuando assegni questa carta dalla tua mano a un Pokémon, pesca una carta.",
pt: "Esta carta fornece Energia Colorless.\n\nQuando você ligar esta carta da sua mão a 1 Pokémon, compre 1 carta.",
de: "Diese Karte liefert Colorless-Energie.\n\nWenn du diese Karte aus deiner Hand an ein Pokémon anlegst, ziehe 1 Karte."
},
energyType: "Special",
}
export default card