1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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
869 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.

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 '../Shining Legends'
const card: Card = {
name: {
en: "Double Colorless Energy",
fr: "Double Énergie Incolore",
es: "Doble Energía Incolora",
it: "Energia Incolore doppia",
pt: "Energia Incolor Dupla",
de: "Doppel-Farblos-Energie"
},
illustrator: undefined,
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
fr: "Double Énergie Incolore fournit de lÉnergie ColorlessColorless.",
en: "Double Colorless Energy provides ColorlessColorless Energy.",
es: "Esta carta proporciona 2 Energías Colorless.",
it: "UnEnergia Incolore doppia fornisce ColorlessColorless.",
pt: "A Energia Incolor Dupla fornece Energias ColorlessColorless.",
de: "Doppel-Farblos-Energie liefert ColorlessColorless-Energie."
},
energyType: "Special",
}
export default card